file
stringlengths
18
26
data
stringlengths
2
1.05M
the_stack_data/225142624.c
#include <stdio.h> #include <stdlib.h> #include <time.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> int main(){ }
the_stack_data/11075526.c
/* crypto/evp/evp_fips.c */ /* Written by Dr Stephen N Henson ([email protected]) for the OpenSSL * project. */ /* ==================================================================== * Copyright (c) 2011 The OpenSSL Project. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. All advertising materials mentioning features or use of this * software must display the following acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" * * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please contact * [email protected]. * * 5. Products derived from this software may not be called "OpenSSL" * nor may "OpenSSL" appear in their names without prior written * permission of the OpenSSL Project. * * 6. Redistributions of any form whatsoever must retain the following * acknowledgment: * "This product includes software developed by the OpenSSL Project * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" * * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. * ==================================================================== */ #include <openssl/evp.h> #ifdef OPENSSL_FIPS #include <openssl/fips.h> const EVP_CIPHER *EVP_aes_128_cbc(void) { return FIPS_evp_aes_128_cbc(); } const EVP_CIPHER *EVP_aes_128_ccm(void) { return FIPS_evp_aes_128_ccm(); } const EVP_CIPHER *EVP_aes_128_cfb1(void) { return FIPS_evp_aes_128_cfb1(); } const EVP_CIPHER *EVP_aes_128_cfb128(void) { return FIPS_evp_aes_128_cfb128(); } const EVP_CIPHER *EVP_aes_128_cfb8(void) { return FIPS_evp_aes_128_cfb8(); } const EVP_CIPHER *EVP_aes_128_ctr(void) { return FIPS_evp_aes_128_ctr(); } const EVP_CIPHER *EVP_aes_128_ecb(void) { return FIPS_evp_aes_128_ecb(); } const EVP_CIPHER *EVP_aes_128_gcm(void) { return FIPS_evp_aes_128_gcm(); } const EVP_CIPHER *EVP_aes_128_ofb(void) { return FIPS_evp_aes_128_ofb(); } const EVP_CIPHER *EVP_aes_128_xts(void) { return FIPS_evp_aes_128_xts(); } const EVP_CIPHER *EVP_aes_192_cbc(void) { return FIPS_evp_aes_192_cbc(); } const EVP_CIPHER *EVP_aes_192_ccm(void) { return FIPS_evp_aes_192_ccm(); } const EVP_CIPHER *EVP_aes_192_cfb1(void) { return FIPS_evp_aes_192_cfb1(); } const EVP_CIPHER *EVP_aes_192_cfb128(void) { return FIPS_evp_aes_192_cfb128(); } const EVP_CIPHER *EVP_aes_192_cfb8(void) { return FIPS_evp_aes_192_cfb8(); } const EVP_CIPHER *EVP_aes_192_ctr(void) { return FIPS_evp_aes_192_ctr(); } const EVP_CIPHER *EVP_aes_192_ecb(void) { return FIPS_evp_aes_192_ecb(); } const EVP_CIPHER *EVP_aes_192_gcm(void) { return FIPS_evp_aes_192_gcm(); } const EVP_CIPHER *EVP_aes_192_ofb(void) { return FIPS_evp_aes_192_ofb(); } const EVP_CIPHER *EVP_aes_256_cbc(void) { return FIPS_evp_aes_256_cbc(); } const EVP_CIPHER *EVP_aes_256_ccm(void) { return FIPS_evp_aes_256_ccm(); } const EVP_CIPHER *EVP_aes_256_cfb1(void) { return FIPS_evp_aes_256_cfb1(); } const EVP_CIPHER *EVP_aes_256_cfb128(void) { return FIPS_evp_aes_256_cfb128(); } const EVP_CIPHER *EVP_aes_256_cfb8(void) { return FIPS_evp_aes_256_cfb8(); } const EVP_CIPHER *EVP_aes_256_ctr(void) { return FIPS_evp_aes_256_ctr(); } const EVP_CIPHER *EVP_aes_256_ecb(void) { return FIPS_evp_aes_256_ecb(); } const EVP_CIPHER *EVP_aes_256_gcm(void) { return FIPS_evp_aes_256_gcm(); } const EVP_CIPHER *EVP_aes_256_ofb(void) { return FIPS_evp_aes_256_ofb(); } const EVP_CIPHER *EVP_aes_256_xts(void) { return FIPS_evp_aes_256_xts(); } const EVP_CIPHER *EVP_des_ede(void) { return FIPS_evp_des_ede(); } const EVP_CIPHER *EVP_des_ede3(void) { return FIPS_evp_des_ede3(); } const EVP_CIPHER *EVP_des_ede3_cbc(void) { return FIPS_evp_des_ede3_cbc(); } const EVP_CIPHER *EVP_des_ede3_cfb1(void) { return FIPS_evp_des_ede3_cfb1(); } const EVP_CIPHER *EVP_des_ede3_cfb64(void) { return FIPS_evp_des_ede3_cfb64(); } const EVP_CIPHER *EVP_des_ede3_cfb8(void) { return FIPS_evp_des_ede3_cfb8(); } const EVP_CIPHER *EVP_des_ede3_ecb(void) { return FIPS_evp_des_ede3_ecb(); } const EVP_CIPHER *EVP_des_ede3_ofb(void) { return FIPS_evp_des_ede3_ofb(); } const EVP_CIPHER *EVP_des_ede_cbc(void) { return FIPS_evp_des_ede_cbc(); } const EVP_CIPHER *EVP_des_ede_cfb64(void) { return FIPS_evp_des_ede_cfb64(); } const EVP_CIPHER *EVP_des_ede_ecb(void) { return FIPS_evp_des_ede_ecb(); } const EVP_CIPHER *EVP_des_ede_ofb(void) { return FIPS_evp_des_ede_ofb(); } const EVP_CIPHER *EVP_enc_null(void) { return FIPS_evp_enc_null(); } const EVP_MD *EVP_sha1(void) { return FIPS_evp_sha1(); } const EVP_MD *EVP_sha224(void) { return FIPS_evp_sha224(); } const EVP_MD *EVP_sha256(void) { return FIPS_evp_sha256(); } const EVP_MD *EVP_sha384(void) { return FIPS_evp_sha384(); } const EVP_MD *EVP_sha512(void) { return FIPS_evp_sha512(); } const EVP_MD *EVP_dss(void) { return FIPS_evp_dss(); } const EVP_MD *EVP_dss1(void) { return FIPS_evp_dss1(); } const EVP_MD *EVP_ecdsa(void) { return FIPS_evp_ecdsa(); } #endif
the_stack_data/15762049.c
#include <stdio.h> #include <string.h> int f2(const char *str, const char *st) { int l, nu=0, i, j, fl, ln; char *st1, *st2; i=nu+1; j=nu; fl=nu; ln=nu; while(strnlen(str,50)>strnlen(st,50)) { l=strnlen(st,50); fl=1; break; } while(fl==0) { l=strnlen(str,50); break; } st1=malloc(l*sizeof(char)); st2=malloc(l*sizeof(char)); while(i<l && ln==0) { while(j==0 || st1[j-1]!=0) { st1[j]=str[j+strnlen(str,50)-l+i]; j++; } strncpy(st2,st,l-i); st2[l-i]=0; while(strcmp(st1,st2)==0) { ln=l-i; break; } i++; } free(st1); free(st2); return ln; } void n1(int **mas, int *xm, int n) { int nu=0, i, j, u, k, b, m; i=nu; j=nu; u=nu; m=nu; while(i<n-1) { while(j<n) { while(u<n) { if(mas[j][u]>m) { m=mas[j][u]; k=j; b=u; } u++; } j++; } j=0; while(j<n) { mas[k][j]=0; mas[j][b]=0; j++; } *xm+=m; m=0; i++; } return; } int main() { int i=0, j=0, xm, n, **mas; char **ki; scanf("%d\n",&n); ki=malloc(n*sizeof(char*)); while(i<n) { ki[i]=malloc(50*sizeof(char)); gets(ki[i]); i++; } mas=malloc(n*sizeof(int*)); while(i>0) { mas[i-1]=malloc(n*sizeof(int)); i--; } while(i<n) { while(j<n) { mas[i][j]=f2(ki[i],ki[j]); if(i==j) mas[i][j]=0; j++; } i++; } xm=0; n1(mas,&xm,n); xm*=-1; i=0; while(i<n) { xm+=strnlen(ki[i],50); i++; } printf("%d\n",xm); while(i>0) { free(ki[i-1]); i--; } free(ki); while(i<n) { free(mas[i]); i++; } free(mas); return 0; }
the_stack_data/1171057.c
#include <panel.h> #include <stdlib.h> #include <string.h> typedef struct _PANEL_DATA { int x, y, w, h; char label[80]; int label_color; PANEL *next; }PANEL_DATA; #define NLINES 10 #define NCOLS 40 void init_wins(WINDOW **wins, int n); void win_show(WINDOW *win, char *label, int label_color); void print_in_middle(WINDOW *win, int starty, int startx, int width, char *string, chtype color); void set_user_ptrs(PANEL **panels, int n); int main() { WINDOW *my_wins[3]; PANEL *my_panels[3]; PANEL_DATA *top; PANEL *stack_top; WINDOW *temp_win, *old_win; int ch; int newx, newy, neww, newh; int size = FALSE, move = FALSE; /* Initialize curses */ initscr(); start_color(); cbreak(); noecho(); keypad(stdscr, TRUE); /* Initialize all the colors */ init_pair(1, COLOR_RED, COLOR_BLACK); init_pair(2, COLOR_GREEN, COLOR_BLACK); init_pair(3, COLOR_BLUE, COLOR_BLACK); init_pair(4, COLOR_CYAN, COLOR_BLACK); init_wins(my_wins, 3); /* Attach a panel to each window */ /* Order is bottom up */ my_panels[0] = new_panel(my_wins[0]); /* Push 0, order: stdscr-0 */ my_panels[1] = new_panel(my_wins[1]); /* Push 1, order: stdscr-0-1 */ my_panels[2] = new_panel(my_wins[2]); /* Push 2, order: stdscr-0-1-2 */ set_user_ptrs(my_panels, 3); /* Update the stacking order. 2nd panel will be on top */ update_panels(); /* Show it on the screen */ attron(COLOR_PAIR(4)); mvprintw(LINES - 3, 0, "Use 'm' for moving, 'r' for resizing"); mvprintw(LINES - 2, 0, "Use tab to browse through the windows (F1 to Exit)"); attroff(COLOR_PAIR(4)); doupdate(); stack_top = my_panels[2]; top = (PANEL_DATA *)panel_userptr(stack_top); newx = top->x; newy = top->y; neww = top->w; newh = top->h; while((ch = getch()) != KEY_F(1)) { switch(ch) { case 9: /* Tab */ top = (PANEL_DATA *)panel_userptr(stack_top); top_panel(top->next); stack_top = top->next; top = (PANEL_DATA *)panel_userptr(stack_top); newx = top->x; newy = top->y; neww = top->w; newh = top->h; break; case 'r': /* Re-Size*/ size = TRUE; attron(COLOR_PAIR(4)); mvprintw(LINES - 4, 0, "Entered Resizing :Use Arrow Keys to resize and press <ENTER> to end resizing"); refresh(); attroff(COLOR_PAIR(4)); break; case 'm': /* Move */ attron(COLOR_PAIR(4)); mvprintw(LINES - 4, 0, "Entered Moving: Use Arrow Keys to Move and press <ENTER> to end moving"); refresh(); attroff(COLOR_PAIR(4)); move = TRUE; break; case KEY_LEFT: if(size == TRUE) { --newx; ++neww; } if(move == TRUE) --newx; break; case KEY_RIGHT: if(size == TRUE) { ++newx; --neww; } if(move == TRUE) ++newx; break; case KEY_UP: if(size == TRUE) { --newy; ++newh; } if(move == TRUE) --newy; break; case KEY_DOWN: if(size == TRUE) { ++newy; --newh; } if(move == TRUE) ++newy; break; case 10: /* Enter */ move(LINES - 4, 0); clrtoeol(); refresh(); if(size == TRUE) { old_win = panel_window(stack_top); temp_win = newwin(newh, neww, newy, newx); replace_panel(stack_top, temp_win); win_show(temp_win, top->label, top->label_color); delwin(old_win); size = FALSE; } if(move == TRUE) { move_panel(stack_top, newy, newx); move = FALSE; } break; } attron(COLOR_PAIR(4)); mvprintw(LINES - 3, 0, "Use 'm' for moving, 'r' for resizing"); mvprintw(LINES - 2, 0, "Use tab to browse through the windows (F1 to Exit)"); attroff(COLOR_PAIR(4)); refresh(); update_panels(); doupdate(); } endwin(); return 0; } /* Put all the windows */ void init_wins(WINDOW **wins, int n) { int x, y, i; char label[80]; y = 2; x = 10; for(i = 0; i < n; ++i) { wins[i] = newwin(NLINES, NCOLS, y, x); sprintf(label, "Window Number %d", i + 1); win_show(wins[i], label, i + 1); y += 3; x += 7; } } /* Set the PANEL_DATA structures for individual panels */ void set_user_ptrs(PANEL **panels, int n) { PANEL_DATA *ptrs; WINDOW *win; int x, y, w, h, i; char temp[80]; ptrs = (PANEL_DATA *)calloc(n, sizeof(PANEL_DATA)); for(i = 0;i < n; ++i) { win = panel_window(panels[i]); getbegyx(win, y, x); getmaxyx(win, h, w); ptrs[i].x = x; ptrs[i].y = y; ptrs[i].w = w; ptrs[i].h = h; sprintf(temp, "Window Number %d", i + 1); strcpy(ptrs[i].label, temp); ptrs[i].label_color = i + 1; if(i + 1 == n) ptrs[i].next = panels[0]; else ptrs[i].next = panels[i + 1]; set_panel_userptr(panels[i], &ptrs[i]); } } /* Show the window with a border and a label */ void win_show(WINDOW *win, char *label, int label_color) { int startx, starty, height, width; getbegyx(win, starty, startx); getmaxyx(win, height, width); box(win, 0, 0); mvwaddch(win, 2, 0, ACS_LTEE); mvwhline(win, 2, 1, ACS_HLINE, width - 2); mvwaddch(win, 2, width - 1, ACS_RTEE); print_in_middle(win, 1, 0, width, label, COLOR_PAIR(label_color)); } void print_in_middle(WINDOW *win, int starty, int startx, int width, char *string, chtype color) { int length, x, y; float temp; if(win == NULL) win = stdscr; getyx(win, y, x); if(startx != 0) x = startx; if(starty != 0) y = starty; if(width == 0) width = 80; length = strlen(string); temp = (width - length)/ 2; x = startx + (int)temp; wattron(win, color); mvwprintw(win, y, x, "%s", string); wattroff(win, color); refresh(); }
the_stack_data/466211.c
/* * count.c - source of count.c * Copyright 2000-2007 MIZI Research, Inc. All rights reserved. * * Author: Yong-iL Joh <[email protected]> * Date : $Date: 2007-07-04 13:01:34 $ * * $Revision: 1.1 $ * Wed Jul 4 2007 Yong-iL Joh <[email protected]> - initial * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <stdio.h> int main(void) { int i, count = 10; for(i=0; i < count; i++) printf("%d ", i); printf("\n"); for(; count > 0; count--) printf("%d ", count); printf("\n"); return 0; } /* | $Id: count.c,v 1.1 2007-07-04 13:01:34 tolkien Exp $ | | Local Variables: | mode: c | mode: font-lock | version-control: t | delete-old-versions: t | End: | | -*- End-Of-File -*- */
the_stack_data/7950604.c
/* * * Exercise 7-6: Write a program to compare two files, printing the first * line where they differ. * */ #include <stdio.h> #include <string.h> #include <stdlib.h> #define MAXLINE 500 void filecmp(FILE *fp1, FILE *fp2) { char s1[MAXLINE], s2[MAXLINE]; // arrays used to store each line int line = 1; // keep track of file lines while ((fgets(s1, MAXLINE, fp1)) != '\0' && (fgets(s2, MAXLINE, fp2)) != '\0') { if (strcmp(s1, s2) != 0) { printf("file 1, line %d: %s\n", line, s1); printf("file 2, line %d: %s\n", line, s2); exit(0); } line++; } } int main(int argc, char **argv) { char *f1, *f2; FILE *fp1, *fp2; // requires two files if (argc != 3){ fprintf(stderr, "error: requires two files for comparison\n"); exit(1); } f1 = argv[1]; // first arg f2 = argv[2]; // ... // open them and check for errors fp1 = fopen(f1, "r"); fp2 = fopen(f2, "r"); if (fp1 == NULL || fp2 == NULL) { fprintf(stderr, "error: problem with file(s)\n"); exit(2); } // compare them filecmp(fp1, fp2); fclose(fp1); fclose(fp2); exit(0); }
the_stack_data/151705136.c
void array_sort2(int *vec, int n) { int i =0 , j=0; while( i < n - 1) { j = i + 1; while( j < n){ if (*(vec + j) < *(vec + i)) { int aux = *(vec + i); *(vec + i) = *(vec + j); *(vec + j) = aux; } j++; } i++; } }
the_stack_data/601705.c
/* This file is part of CMake-easytest. * * Copyright (c) 2017 RWTH Aachen University, Federal Republic of Germany * * See the LICENSE file in the package base directory for details * * Written by Alexander Haase, [email protected] */ #include <stdio.h> #include <omp.h> int main() { #pragma omp parallel { printf("%d of %d\n", omp_get_thread_num() + 1, omp_get_num_threads()); } return 0; } /* CMake-easytest configuration. * * CONFIGS: sort env * * COMPILE_FLAGS: @OpenMP_C_FLAGS@ * LINK: @OpenMP_C_FLAGS@ * * * ENVIRONMENT-sort: OMP_NUM_THREADS=4 * RUN-sort: @BINARY@ | @sort@ * PASS-sort: 1.*2.*3.*4 * * ENVIRONMENT-env: OMP_NUM_THREADS=1 * FAIL-env: 2 */
the_stack_data/626043.c
#include <stdio.h> #include <stdlib.h> #include <assert.h> int main(int argc, char **argv) { char *pc, *pc2; assert(argc == 1); pc = (char *)alloca(4+argc); assert(((int)pc) % 4 == 0); pc2 = (char *)alloca(4+argc); assert(((int)pc2) % 4 == 0); printf("z:%d*%d*%d*\n", (int)pc > 0, (int)pc, (int)pc2); return 0; }
the_stack_data/129748.c
#import <stdio.h> int main(){ for(int i = 0; i < 10000; i++){ printf("This is line %i of response, code.\n",i); } } // :wq :wq :wq :w :wq
the_stack_data/1190699.c
// BUG: spinlock bad magic in rhashtable_walk_enter // https://syzkaller.appspot.com/bug?id=b7e5765f7957f002938296003e361009197ae9c0 // status:fixed // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include <endian.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/syscall.h> #include <sys/types.h> #include <unistd.h> uint64_t r[1] = {0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, 0x20000000, 0x1000000, 3, 0x32, -1, 0); intptr_t res = 0; res = syscall(__NR_socket, 0x10, 0x10000000002, 4); if (res != -1) r[0] = res; *(uint64_t*)0x20000040 = 0; *(uint32_t*)0x20000048 = 0; *(uint64_t*)0x20000050 = 0x20000140; *(uint64_t*)0x20000140 = 0x200001c0; memcpy((void*)0x200001c0, "\x39\x00\x00\x00\x14\x00\x81\xae\x00\x00\xdc\x67" "\x6f\x97\xda\xf0\x1e\x23\x57\x81\x34\x66\x2c\x30" "\x0b\x2c\x00\x05\x00\x01\x87\x01\x54\x6f\xab\xca" "\x1b\x4e\x7d\x06\xa6\x58\x0e\x88\x37\x02\x00\xc5" "\x4c\x19\x60\xb8\x9c\x40\xeb\xb3\x73", 57); *(uint64_t*)0x20000148 = 0x39; *(uint64_t*)0x20000058 = 1; *(uint64_t*)0x20000060 = 0; *(uint64_t*)0x20000068 = 0; *(uint32_t*)0x20000070 = 0; syscall(__NR_sendmsg, r[0], 0x20000040, 0); return 0; }
the_stack_data/22013873.c
/* SO - Tarea #2 - Mr.Meeseeks Tecnológico de Costa Rica, Sede Central Cartago, Primer Semestre 2021 Escuela de Ingeieria en Computación, Principios de Sistemas Operativos Prof.: Esteban Árias Mendez Hecho por: Fabián Ceciliano Ramírez - 2018142999 Jesus Esteban Jiménez Valverde - 2017112650 Fecha de entrega: 24-4-2021 */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/wait.h> #include <time.h> #include <unistd.h> #include <math.h> #include <semaphore.h> #include <pthread.h> int N =1; int numInstance = 0; int randGenerate(int inicio, int fin){ return (rand() % (fin - inicio + 1)) + inicio; } /*FUNCIONES PARA LAS PETICIONES TEXTUALES*/ char* readRequest(){ char* req = malloc(sizeof(char)*1000); printf("Que necesita que haga Mr. Meeseeks? "); scanf(" %[^\n]", req); getchar(); //printf("Mr. Meeseeks hara: %s\n",req); return req; } int readDifficult(){ int difficult; printf("Ingrese la dificultad de su solicitud (100:trivial, 0:imposible, -1:No sabe): "); scanf("%d", &difficult); //getchar(); if(difficult == -1){ //difficult = randGenerate(0, 100); int type = randGenerate(0, 100); if(type >= 0 && type <= 15){ difficult = randGenerate(0, 45); }else if(type > 15 && type <= 85){ difficult = randGenerate(45, 85); }else{ // 86 <= type <= 100 difficult = randGenerate(85, 100); } printf("Mr. Meeseeks hara la tarea con dificultad: %d\n", difficult); }else { //printf("Mr. Meeseeks hara la tarea con dificultad: %d\n", difficult); } return difficult; } int tryRequest(double difficult){ int seg = randGenerate(1, 5); sleep(seg); // Simulando que hace la tarea if(difficult <= 85.01){ return 0; //Necesita ayuda de otros Mr. Meeseeks } else{ return 1; //Logro resolver la tarea facil } } int amountChild(double difficult){ if (difficult >= 0 & difficult <= 45){ return randGenerate(1, 5); }else if(difficult > 45 & difficult <= 85){ return randGenerate(1, 2); }else{ return 0; } } double diluirDificultad(double dificultad, int numHIjos){ if(dificultad == 0){ return dificultad; } else{ double temp = randGenerate(1, (int) dificultad); //Random no mayor a la dificultad double reduc = temp * (dificultad / randGenerate(350,550)); //Se reduce a una milesima dictada por la dificultad double extra = (reduc * (numHIjos)); return dificultad + reduc + extra; } } struct TextReqParams{ double difficult; int amountChild; char * req; }; int terminado; int fdTextualComplete[2]; sem_t finish_sem; struct timespec beginTextual, endTextual; int amountSegToChaosTextual; void * textualTry(void * params){ struct TextReqParams * actualParams = params; clock_gettime(CLOCK_REALTIME, &endTextual); long seconds = endTextual.tv_sec - beginTextual.tv_sec; long nanoseconds = endTextual.tv_nsec - beginTextual.tv_nsec; double elapsed = seconds + nanoseconds*1e-9; if(elapsed > amountSegToChaosTextual){ //printf("\n\n☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢\n\t\tCAOS PLANETARIO\n☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢\n\n"); sem_wait(&finish_sem); terminado = 1; sem_post(&finish_sem); write(fdTextualComplete[1],"caos",sizeof(char)*100); return NULL; } if(terminado == 0){ if (tryRequest(actualParams->difficult) == 1){ if(terminado == 0){ //printf("Lo logre!! Mr Meeseeks(pid: %d, ppid: %d, dif: %f) Bye!!!\n",getpid(),getppid(),actualParams->difficult); write(fdTextualComplete[1],"complete",sizeof(char)*100); } sem_wait(&finish_sem); terminado = 1; sem_post(&finish_sem); }else{ int numChild = amountChild(actualParams->difficult); double difficult = diluirDificultad(actualParams->difficult, numChild); pthread_t thread_id[numChild]; printf("Meeseek (pid: %d) creara: %d hijos\n",getpid(),numChild); for (int i = 0; i < numChild; i++){ printf("Hi, I'm Mr Meeseeks! Look at me. (pid: %d, ppid: %d, i: %d, difficult: %f)\n",getpid(),getppid(), i+1, actualParams->difficult); struct TextReqParams * params = malloc(sizeof *params); params->amountChild = numChild; params->difficult = difficult; strcmp(params->req, actualParams->req); pthread_create(&thread_id[i], NULL, *textualTry, params); } for (int j = 0; j < numChild; j++){ pthread_join( thread_id[j], NULL); } } } } char* textualRequest2(int *stateDone, int amountSegToChaos){ char * req = readRequest(); int difficult = readDifficult(); amountSegToChaosTextual = amountSegToChaos; //Pipe para notificar de terminado pipe(fdTextualComplete); //Semaforo sem_init(&finish_sem, 0, 1); terminado = 0; struct TextReqParams * params = malloc(sizeof *params); params->amountChild = 1; params->difficult = difficult; strcmp(params->req, req); clock_gettime(CLOCK_REALTIME, &beginTextual); printf("Hi, I'm Mr Meeseeks! Look at me. (pid: %d, ppid: %d)\n",getpid(),getppid()); pthread_t firstMeeseek; pthread_create(&firstMeeseek, NULL, *textualTry, params); pthread_join(firstMeeseek,NULL); // Medir el tiempo clock_gettime(CLOCK_REALTIME, &endTextual); long seconds = endTextual.tv_sec - beginTextual.tv_sec; long nanoseconds = endTextual.tv_nsec - beginTextual.tv_nsec; double elapsed = seconds + nanoseconds*1e-9; char buf[100]; read(fdTextualComplete[0],buf,sizeof(buf)); char* log = malloc(sizeof(char)*1000); if(!strcmp(buf,"complete")){ sprintf(log, "- Mr Meeseeks: %d, hizo tarea '%s'(dificultad:%d), tardo : %f seg\n",getpid(),req,difficult,elapsed); *stateDone = 1; }else if(!strcmp(buf,"caos")){ printf("\n\n☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢\n\t\tCAOS PLANETARIO\n☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢ ☢\n\n"); sprintf(log, "- Se declaro CAOS PLANETARIO para la tarea '%s'(dificultad:%d)\n",req,difficult); *stateDone = 0; } return log; } /*FUNCIONES PARA LAS PETICIONES ARITMETICAS*/ char* readOperation(){ char* operation = malloc(sizeof(char)*10000); printf("Los Mr Meeseeks solucionan operaciones de tipo '50 + 5' (+, -, *, /, &, |, ~)\n"); printf("Ingrese la operacion a resolver: "); scanf(" %[^\n]", operation); getchar(); //printf("Mr. Meeseeks hara: %s\n",operation); return operation; } int operate(int num1, char operator, int num2, int *result){ switch (operator){ case '+': *result = num1 + num2; return 1; case '-': *result = num1 - num2; return 1; case '*': *result = num1 * num2; return 1; case '/': if(num2 == 0){ return 0; } *result = num1 / num2; return 1; case '&': *result = num1 && num2; return 1; case '|': *result = num1 || num2; return 1; case '~': if(num1){ *result = 0; }else{ *result = 1; } return 1; default: return -1; } } //-----------------------> CON HILOS int fdAritmeticComplete[2]; void *aritmeticLogicTry(void * params){ int num1 = 0; int num2 = 0; int result = 0; char ope; char * operation = params; printf("\nHi, I'm Mr Meeseeks! Look at me. (pid: %d, ppid: %d)\n",getpid(),getppid()); sscanf(operation,"%d %c %d",&num1,&ope,&num2); int state = operate(num1,ope,num2, &result); char* resOper = malloc(sizeof(char)*100); if(state == 1){ // Todo bien printf("Mr Meeseeks llego al resultado de la operacion %s = %d\n",operation,result); sprintf(resOper,"%s = %d",operation,result); write(fdAritmeticComplete[1],resOper,sizeof(char)*100); }else if(state == 0){ // Division entre 0 printf("Mr Meeseeks no puede resolver divisiones entre O\n"); write(fdAritmeticComplete[1],"div0",5); }else{ // operacion invalida printf("Mr Meeseeks no puede realizar la operacion: '%c'\n",ope); write(fdAritmeticComplete[1],"nan",5); } return NULL; } char* aritmeticLogicRequest(int *stateDone){ char* operation = malloc(sizeof(char)*10000); // Solicitar info operation = readOperation(); // Medicion de tiempo struct timespec begin, end; clock_gettime(CLOCK_REALTIME, &begin); // Piepe para notificar el estado de retorno pipe(fdAritmeticComplete); // Creacion y llamada al hilo pthread_t firstMeeseek; pthread_create(&firstMeeseek, NULL, *aritmeticLogicTry, operation); pthread_join(firstMeeseek,NULL); // Lectura del pipe char buf[100]; read(fdAritmeticComplete[0],buf,sizeof(buf)); // Medir el tiempo clock_gettime(CLOCK_REALTIME, &end); long seconds = end.tv_sec - begin.tv_sec; long nanoseconds = end.tv_nsec - begin.tv_nsec; double elapsed = seconds + nanoseconds*1e-9; char* log = malloc(sizeof(char)*1000); if(!strcmp(buf,"div0")){ sprintf(log,"- Mr Meeseeks: %d, No soluciono la operacion por una division entre 0\n",getpid()); *stateDone = 0; }else if(!strcmp(buf,"nan")){ sprintf(log,"- Mr Meeseeks: %d, No soluciono la operacion por un operador desconocido\n",getpid()); *stateDone = 0; }else{ sprintf(log,"- Mr Meeseeks: %d, soluciono la operacion '%s', tardo : %f seg\n",getpid(),buf, elapsed); *stateDone = 1; } //printf("Mr Meeseeks %d tardo %f\n",pid,tiempoTotal); //printf("%s\n",log); return log; } /*FUNCIONES PARA LAS PETICIONES DE CORRER PROGRAMAS*/ char* readProgram(){ char* program = malloc(sizeof(char)*10000); printf("Ingrese el nombre del programa a ejecutar: "); scanf(" %[^\n]", program); getchar(); //printf("Mr. Meeseeks ejecutara: '%s'\n",program); return program; } //-----------------------> CON HILOS int fdrunProgramComplete[2]; void * runProgramTry(void *params){ char * program = params; printf("\nHi, I'm Mr Meeseeks! Look at me. (pid: %d, ppid: %d)\n",getpid(),getppid()); int state = system(program); if(state == 0){ printf("Mr Meeseeks pudo ejecutar '%s'\n",program); write(fdrunProgramComplete[1],program,sizeof(char)*10000); }else{ printf("Mr Meeseeks NO pudo ejecutar '%s'\n",program); write(fdrunProgramComplete[1],"0",5); } return NULL; } char* runProgram(int *stateDone){ char* program = malloc(sizeof(char)*10000); int state; // Leer info program = readProgram(); // Medicion de tiempo struct timespec begin, end; clock_gettime(CLOCK_REALTIME, &begin); // Piepe para notificar el estado de retorno pipe(fdrunProgramComplete); // Creacion y llamada al hilo pthread_t firstMeeseek; pthread_create(&firstMeeseek, NULL, *runProgramTry, program); pthread_join(firstMeeseek,NULL); // Lectura del pipe char buf[100]; read(fdrunProgramComplete[0],buf,sizeof(buf)); // Medicion de tiempo clock_gettime(CLOCK_REALTIME, &end); long seconds = end.tv_sec - begin.tv_sec; long nanoseconds = end.tv_nsec - begin.tv_nsec; double elapsed = seconds + nanoseconds*1e-9; char* log = malloc(sizeof(char)*1000); printf("BUFER: %s\n",buf); if(!strcmp(buf,"0")){ sprintf(log,"- Mr Meeseeks: %d, No logro ejecutar el programa\n",getpid()); *stateDone = 0; }else{ sprintf(log,"- Mr Meeseeks: %d, ejectuto el programa '%s', tardo : %f seg\n",getpid(),buf, elapsed); *stateDone = 1; } //printf("Mr Meeseeks %d tardo %f\n",pid,tiempoTotal); //printf("%s\n",log); return log; }
the_stack_data/780874.c
/******************************************************************************************** * SIDH: an efficient supersingular isogeny cryptography library * * Abstract: precomputed tables for Pohlig-Hellman when using compression *********************************************************************************************/ // This is for \ell=2 case. Two different cases must be handled: w divides e, and not. #if defined(COMPRESSED_TABLES) #ifdef ELL2_TORUS #if (W_2 == 4) // Texp table for ell=2, W2=4, W2_1=3 const uint64_t ph2_Texp[((1<<(W_2_1-2))-1)*NWORDS64_FIELD] = { 0xC4C747BB43797A73,0x7109BBD6F8A84A02,0x9613C602E4869C7C,0xCF019E7E6794965A,0xF58E1C18639C04E9,0x326F0B99394C7FBD,0xF02EE25B6C66 }; // Log table for ell=2, W2_1=3 const int ph2_Log[(1<<(W_2_1))-1] = { 4, -2, 2, 3, -1, 1, -3, }; // G table for ell=2, W2=W2_1+W2_2=4 const uint64_t ph2_G[(1<<(W_2-2))*NWORDS64_FIELD] = { 0xFFFFFFFFFFFF8BD3,0xFFFFFFFFFFFFFFFF,0xFFFFFFFFFFFFFFFF,0x44B18275E6FFFFFF,0xA3C4B77CDBB901CF,0x83CA0B82224DDF49,0x147307F5A4469,0xC4C747BB43790647,0x7109BBD6F8A84A02,0x9613C602E4869C7C,0x15F1AA796B94965A,0x1D8C771D0DFC5815,0x493CB744D9D53EB1,0x3403A9E3D8B,0x5E31296681E19E92,0xFE6B47AA0389E55,0x3FEB6DE7F12F392E,0x6D8CD5E1A32285EA,0x1164ED2C4A5B9CAD,0x4639CBB2691F8613,0x583D0FD0B9DE,0x9972685E88C3C753,0x76828CB7798F26E2,0x7F0B38D03478E300,0x24DC43AFCED1715,0x31D422CA93C55EFD,0xC6C9936EF3ED3D5A,0x40AAF45C27F9 }; // TORUS + SIGNED W2=4 const uint64_t ph2_CT[DLEN_2*(ELL2_W >> 1)*NWORDS64_FIELD] = { 0xE9503B1B62B781AB,0x2584495189C604C8,0xABCA57E776688301,0x93BF6D939E7A0A4D,0xFC6AFC5732330B6F,0xAA0981A01F0BEBB9,0x1521062ECFCD2,0x9D25566076ABA1E1,0x25FC093C1B6C647C,0x5426A38D46CBB2E1,0x502C1AB24327BB09,0xC02FB1D682F4BFB1,0x9D2BEDF0FD11B7F,0x64F202F65706,0x3D66E290370D3C8C,0xCB7058BB676891AF,0x90BFDF60C8479451,0x8A86DDA0889CA2E7,0xC9C56DAB6207D3E1,0xDCAF253D2914CA12,0x5E42C3069CB9,0xB36CD51E4B56229D,0xBA43A9AE16B2221D,0xEABA75E4B479AD53,0xA548ABE7141BE015,0xB11C81170366830D,0x463365C88B3C52BC,0x4F4FAF97A94A,0x99E9AE92FFE89DC0,0xA18224D7C4A916A,0x5BE94965F6D624F6,0xCAEB795F5917243A,0x9FC852B477571AC1,0x736E14771A5459D3,0x6AE531D311A1,0x88581326F6584F8F,0x977E350D66B48266,0x638839803B7854,0xF7551B524A2902A4,0x690B975049DC5119,0xD93BCEF59488614,0xFC6366CA9D0B,0xD16348CDE6F7E97,0xEC2F21471639D3C3,0x897BB1C805439F8F,0xDB8553D763419535,0x55819BCE2A098979,0xE7A1438C17A99D42,0x10001DA95CA19,0x730BC19E7787D905,0x452FB03E8C8EA4DC,0x5F09C36489BD680B,0xAA9964636CFA6085,0x10F1002EE63C27E,0x7C8501DA1EDAA757,0x16CB016D36738,0xC28EB9AAD06B87F3,0x2360AB2A839407C3,0x7171D33791836587,0x88BA0279A502191F,0xF947A1630946BD29,0x326EBD103A6BBA5E,0x14783FA37A404,0xD75251A555582FE7,0x658A4079122CDE69,0x7EF399938EFA570E,0xE01F6577B0368AD9,0xD7A5B1E48CF8CFA8,0xA693C773233A502,0x222F8E44F638,0xB81369459AE1B8BC,0xF9AD7B7145FEACDE,0xBBD0E11F72896F2,0xE6CFA1D3C9ECFED1,0xB2EBAC60CDBD7438,0xEF7EE41340D91A0A,0x20589456CCA6D,0x811E2C43F0AB6AD7,0x77D652171F66A84D,0xD7AEBC31C31C934,0x7ED3CB88C1B70CD5,0x4A160766AC05A25E,0xDCA45F2B2A735041,0x198699B8D08F1,0x6A0EEC9CA30D9C8F,0xA411F87790EE20B6,0x28065EC27EF7F6FF,0xF80E16530F0825D,0x366DAF53ED894198,0x5751B0BD74D68AB5,0x111CFD20CC969,0xE2B91C853C16AFB2,0xDF8944F28342C790,0x1DCBFE80DABFEF3D,0x2CD22F8038747A1F,0x64B241F02CF0EF63,0x44AD1A433E31CC54,0x22D184B32B104,0x3E8175D999E7F1F7,0x8D7C657913094D17,0x53D62AA4351AC045,0x89A49C400935B2F9,0xB1AA43277C76E3A6,0x743CB2EB731E06,0x18B8BC57DEFDE,0xD48302A369E0B6EE,0xB2379C3EE36AFEA7,0xD8FDCC80010EB503,0xF980ABFF70D01A0,0x53E7259C7ED6F33D,0x6611BFC936BB21D1,0xC91106DEEA56,0xF1DE8F43E189237,0xFD5BFBD1FD9A4B15,0x6D32F75D665DF161,0xD0CE41230DE6D5B4,0x1698EDE544FA61E5,0xE9E8E582B6B8370A,0x1412896A6D325,0x926EB07D09A6A2AE,0xED1C53E42C0C6202,0xA0960BE43AE2E541,0x88C09BAD06F37888,0x7ED888AB48C3ABB5,0x85A21D78BAD9AADD,0x12DDFA8708D81,0x67FA0D9C0BDF33A7,0x5A1C3D0435532EB6,0x7B82033DD09A40DD,0xD2BA0A4B86AE8982,0x85BFC5C8B80AC3FA,0x26814128BE87FC84,0xA1E451267946,0xB578F00FF22AA94F,0xA51ED87F95C11159,0x15CD56D5E85D3079,0xF1AF5815D0ED8E0E,0x4AE15AD82698913F,0xFEB4E871919887DC,0x17418E0C28F09,0x14D07363621B3D6E,0xD0DC60786B10C73E,0xB2940CFB649BDB14,0xBF2FF4F867C9BC4E,0x964CF4286731FC50,0xB203C6A1F6C61B6C,0x1E5D70F33DDB6,0x4B731116E201422A,0xFAD272CD5525729A,0xFD0853D28A243AB2,0xC29F33912C28FBC,0xDB88ABF46E7EB755,0x52100042A06698AD,0x1AE59A362D490,0x59F1DB2D9B051856,0x8147AF3D1B381D74,0xA3E631840E7B68BA,0x48391DA085619C6A,0xF9627342909279F8,0x3601A92EFFCA9312,0x7CD1B51109FF,0x58EA6661DD290A9B,0x5D643FC591192511,0xD31A5B0F1FFDFE3B,0xA24E89FD88607A57,0xE0DAED087B08FB13,0xC1A5040FFF1ACF5D,0x4455E9A52119,0x715349693E321B5,0x1624030F4E38654E,0x14CD15E88ED9A9F5,0xF6D134BB40450BC4,0x22489AE5F690499,0x4A208DDF0C93411C,0x1CF603D9DDC06,0x5FE42FC374ADB1EB,0x927BEEB400C4EE56,0x5E9251271BDE4CBC,0x21DA48B7407D4CE8,0xBC029D17AA6CD556,0x7364A9BF0F209BD3,0xBD69BC280AD5,0xA2428EC4E4E5419E,0x427F0D08ED5C7A6E,0xCCC7D384BE0BD37,0xFF7B14F817A661B3,0x9DAA0FC55D4B1CC0,0xE2FBD1E1ED945B6A,0xB1BB5CDAE454,0x7DDE28590DED3D05,0x568D036391F4175D,0xF18C3F48D9A695E8,0xA5CA316DB4B06FFD,0xC5FC351CE963BFD7,0xA30B379A465BA4C3,0xFA63FD27D80E,0xB8E91AEB1ACA4351,0x972DBCE3E1D33FE9,0xFFF565D3D7340354,0x4E5363313A5F1BEA,0x5BB96AEFDCAD125F,0xFE20C2CD431828AF,0xEB9059FD58AE,0x823B2679077573F,0x14E89356E88EDF01,0xEEE602A10390D71,0x6575707B90A4FF83,0x24FEFEFF0E49ED98,0x31EDEB8737B1A258,0x3583CD3EAAA1,0xA98110F9F9CD0160,0xBAC059D66230AA3E,0x9780F5E28D2494D2,0xE07CD76A0BF92EF7,0xB4B05F535A83E4DB,0xC3458D466DC25E79,0xA33F13F22E40,0x2969CE04F99782FE,0x9FB567A0FF03B065,0xC2D66700F2CB2DEA,0x2B98924B7EE5B338,0x606971614F647EDF,0x6505CE1AD7BAD70D,0x1C7134FA35946,0x870DC3B40322BA2C,0xD85F7D33ED22542,0x99C4ACF9CAF16019,0x16B78CAC738A0170,0x316453A62426C4E8,0xE8FD9B55B7100E1,0x1F62B124EAAD3,0x61A81C100C77C467,0x2F3327E55079CB19,0x63876DFA0DEDF3AB,0x2A30FB5E049FC139,0xADA23240320FC1A,0xB02B041D36F816A4,0xC4D1462FCA21,0xAF7C2F6954DDA65E,0xB8B6101CD3687276,0x54B89E23AFEC0692,0x66757611AF5983C0,0x932B03532F177F27,0xFCED39909B53A94A,0x18C44C21CD0E3,0xF6C38332443C9C27,0x3FDF94B0570E7EF0,0x388FA651C84BAE9E,0x9479EF32E8398D0C,0x8EBBF079100E3CAA,0xCBC51BD366E3E269,0x21CA55175D420,0xCEE5458711D3CF11,0x94CDDE272BB44E24,0x3ED2FF9B586A7818,0x6C686A596B6E4CA2,0xDE6BBD54CC52D2FA,0xC5E9125B3CB2597E,0x42FA565A1F9C,0xD112D5B41E6B59D7,0x5F1D3C6D82B25399,0x27D2EA701D9E08CF,0x38C2262AB8D944DB,0xC1350E0F414FA53B,0xEA35D2ACBD50EBE8,0x172593E8D230E,0x471B0AE21A986A4A,0xCF7FD7D2FE060726,0xF42524AE091F342C,0xD238E12877203BB8,0x9DA3AB14729348DA,0x5D08BCC1620452A1,0x4952CADD7CF,0x89A353FD3C85001,0xD0A29E2C537FE0BA,0xEE4B80422A5EF788,0xC1A975387549E33C,0xD7C8B3059BD2A696,0xDF96CC36F2DCAD7D,0x1107A9E86BBD6,0xF631863860C52EDD,0x5E50F477CE2F9F34,0x36387E0EBEC600A3,0xD4E3A1741E01F609,0x7425F63D66558F04,0xE458D32CD843A55,0xFD64433B9E3,0x134A8782FF731451,0x316CF9BE95210F4E,0xD5A00D2B40665ABD,0x967CA6D258B05A,0x7AFCB59D01434ECA,0x9D0E3830D8526E0C,0xD34B19E71DE0,0x7F8C71E77033040,0xFE0D225D8527CF96,0x2BF28799D8DD90C3,0x54330934056B11FD,0x547796C3337B3072,0x15CA20ECF85822DD,0x3C64726CF8D4,0xBD6FA77EA4AD9C5,0xC0E7D6FEBDE58A25,0x60AC151E39E3849D,0x7E9C474C75462A91,0xBADDC1B3E4D218C5,0xB827BF11F7DDAE60,0x600E9C0574F,0xF3F005AB05B48456,0x29ABF152AD53AD5,0x1978FE893A170A53,0xA3FFE11EBB162CC6,0xFDD138CDCAE32A13,0x3029BA5F361E8921,0x1EB7B1F4FEAEC,0xEBA4A7CE7B6C1A79,0x5151B617AE0E3080,0xB0878E4FA7A5C563,0xE3F51F81901ACD00,0xEF404AD7ED1C040,0xDFE24DA5CECDC503,0x130F68DE5CA42,0x3360AE6DDAD85F8E,0x19625905A4C62597,0xA50BACE9CDC654D3,0x704EE670E2C566C1,0xDC1CBDA02050957,0xB61B3C6699677856,0xB3ED7EED5499,0xD739292502D011CD,0x3EDD004C8C0CD7BB,0x63090029404C4F6,0xB7177FA88E23B3FA,0x579D5A4BF002F260,0xBCFDE2BEF19D3C36,0x4C960C237B8B,0xF8D1458BF19F69C7,0xEBF47DEEC16B5648,0xA7B5508E61A2270E,0xC1437E1B481D2935,0x874C15FA0A277BBD,0xEBF0FAA7CF1D687F,0x15D4B5C5508C3,0xF780101A6DCE50E1,0x595619FF46841D6,0x223F35E38EA1293D,0x121FA7881F6FF537,0x8BB4E37099507793,0xF58F157E6568D84A,0xB7A5604E2FAC,0x3E2B97F9B2018B0,0xE60890AA5564BD2,0x26257DED16F1F794,0xECFA94DB481773FA,0xD3FFEA4B03F83323,0xE9496679546D0A3C,0x20CFC05773A98,0x60C95462852406C4,0x67087CEF9E4A9008,0xD519D72CC698134F,0x9F0E1C4BE0592F82,0x172932B982FF6552,0x900D9CAB8E25E861,0xE864187BCD9D,0xFB12B4FE0B5D9B7E,0xB01EDBCCEA071B7E,0xB3D74B38CAA53C4B,0xBDEAFDC9253A19B1,0xD6A7D7BCB10A53B9,0xC138A37BD8147D43,0x11DDAB50B0F1,0xAA7D825A5DDA5264,0xE5F5DDCFF4B56362,0x23C51DD0FA1FE287,0xFA52B13D488F69D,0x2969FF070DA08CCD,0x54F9833F77DA5D69,0x5FB311567D25,0xFDF368C490DC2DC7,0x6A8E93BFA25108F6,0x58451EC4A45E9DF0,0x976453D0C79C365C,0x8CB52C266BF56BBD,0x286CFF8C55EE87C5,0x1E4A84D74DBE5,0x53450E506A4A041A,0x5B3DFB952EDA758E,0x8B6D2BF58E97A073,0x5C9B3151F55FECBA,0x3F75A6DE8056E3A3,0x3E273F1D4B792BD,0x1231ABC8670E2,0x69FE6AF84EFFE627,0xF93498BFD6B77439,0xFBCAE33D818698E4,0x8E009B3FDB4E73E5,0x89AB6CC070E4178A,0x915A67AFB213855B,0x1AE0280840C01,0x462A41A83FDEB611,0x22896C290C4859BE,0xDDC749F322A3D11E,0x7CEDCA9196469F21,0x5A83FC7483FAC67B,0xB2BD898762657D55,0x19DE49AA99C2D,0xF3B13E773D96088,0x4016A396671A613B,0xC25D2A0CEF21F8E7,0xA93DDCBAEB6546FD,0xE40FBA5F0D795AE7,0xEFCB36E9BB5A7315,0x7ED2AA61D5E,0x28522016DC21032D,0x3732F9B076532365,0x286B6FCD6B4835CC,0xF59DCE6E09F7FAA2,0x2FC9E505697F681F,0xCCD164779C9632CA,0x19E486720C304,0x811FA5D63BAEB549,0x6131DE3914958DB5,0xADA0336F4ABE8B93,0x2068014756426D43,0xC65E76228C220011,0x86AC202860A85BDF,0xA2D9C00AC742,0x6C8A61A0D775C1E5,0x4C20BD1ED4AA3DA6,0xDC27B565B06D8D1B,0x89C8C22C60F64E34,0x5ACD9C9C27ED5A14,0x7896E19EFD503C1D,0xB1F5D8F5FFE1,0x31F3F6A2A25A8C81,0x4A008C33176336F3,0x5D9C432FE1AC769B,0x72E7E31566D902E,0x98F933607A94E5F3,0x25F1E73177AC0570,0x17C4336348DE2,0x8A4D1C8D73D4A84D,0x7090469E85E2748,0x6B873AFCF0F7CBC5,0x30520B2B8905E3B4,0x4FC901E498F9CF1,0x1B22ACFE7B550496,0x15B01DC6BE13D,0x7A34CB552E024F80,0x6D5562FE14265456,0x3CAFAE6610B224D8,0x408C4B12D570DD13,0x8BDEBA2AB8EF88BB,0x73E5D5D0480474E7,0x1D222E2D63118,0xDA98B429D9F49A2C,0xCFE6680EC65F78B2,0xCFD9490F488F8372,0x9234D4B3EB63959A,0x28C052636B762B9E,0xF389847C8C2A4630,0x1EE26142D48C2,0xEE7FE37F545B347,0x53CAD59912C335A3,0xEFB53941BECF40BE,0xC6ED4ED0AA926402,0x41DBB88919D1FB57,0x7C1381F3DDD5AFE7,0x13F0854A4CB59,0xF22D21A62B467955,0x325F39F20CD51A36,0xD38BBEFFFFC637F5,0xE370366D70F1589B,0x9CC812C2AB558C4F,0x7F79217010EE4E40,0x1808149B3F21F,0xC56E7CDB16A9DDFD,0x6E34D208AFD23AB5,0x7BF0FCEF6E95F014,0x404773FF0EA04CB1,0xD9BD230C6DE2DB4B,0x6CE18EEB333CA746,0x130CD6008969,0x60C51F096DFC87C0,0x9FFC22CC8DC97F18,0x70A811C628150DD5,0x1E5900C76BC93D6A,0x9B2C65E7A2B12D29,0x591577A55870E8F1,0x1D4BF4F594549,0xA9711DAFC3FC7D70,0x9EE1D054F4D39DEE,0x7D686689384E4661,0x4E8F784B746EE271,0x447207F171C760AB,0x22FDF9D804DDC347,0x1D5BD716A07D6,0xFCF8ED906712DB84,0x5F04AFBC30534B1F,0x235F7D6C4BEA2C58,0x7B8B9DFA8FF497C6,0x50CAD89DA7DD9119,0xE08BEFF479B10D21,0x1CAAAA747BDE2,0xBA66D4840967E3F8,0x5B77F86C1C20115D,0x515BFBDBA05D8FF8,0xA6A7E27E77BD13E3,0x56DCDDEBA0338E46,0x65032146985E7ED0,0xEB23D391752D,0x72D1298EC94797BC,0xBFC61047D81F13E3,0xD7D11680F2149977,0x22332FC8479936E3,0xB1D0DC7738729C80,0xB72594284D4CCFD1,0xBA3B2E9ABEC6,0x4421C5EA2FB8F20D,0x5BE64B56E86ECEF5,0xCD07FE5111BEB813,0xCBC3B6D6A47F310C,0xAF25C2D7A94418E0,0x1D5A73156512E570,0x212B1DD0858EB,0x8708D8DFDB8FA481,0x89A0C5FEE6E26D03,0xBF93CAE89147A35C,0xF36B950DFD4CC4C7,0x724D670E39AC50E2,0x1CF0F624F6523E31,0x1992440AF25A5,0xF3A4B2BDC281C13C,0xCD099479D3D2B62C,0xAFBEC94945726FD0,0xF865E8816F4C1AFA,0xF66663F44D6F0C2F,0x81A9306801842950,0x4F98F13B585D,0x7E9035C69D468953,0xE1BD085EDDC6359A,0x602D7982EA1A7F32,0x7C6EF20561F6A738,0x45E78BC9112A90A2,0xF13F2013D6F5EE69,0x1A6D53BA47434,0x1C1F43858DA14238,0x6EA464B84343EBCD,0x76EEFD8AA59B668,0xF2F37FC99E361801,0xFE196F190E54EAAC,0xBD3CB671766DB425,0xE5062C91991E,0xCB13033213DA3931,0xBFD5F7C5552476CE,0xF64A925670AC01FB,0xBF43387D02FBB37,0x1D84C0935AD88855,0x5A6130C87C5FA632,0x1FB45A0758C02,0x67445574FA914F9A,0xA286E3114EA2D3DA,0xAE931F9876B537FC,0xEF193C20BB073626,0xBF8B86CF92C04FE8,0x23DC111F9C87F974,0x1D87A1E3B1FA9,0xFD670CBC4C15826A,0x3B480FB3A39CA86B,0xF77C65DCA10C6119,0x960D9ECFF0FC80DD,0x77555B47AE02E314,0x3B9A51EBBC63F100,0x217AFA32712B7,0x82485EA326BC92C1,0x23706F4CFE849229,0x4A1D72E39C63D976,0xB6826F3732D3B07D,0x37DBA91AAE2C1A76,0xBC3DB6A9659D868C,0x19B169FDF9F20,0x6818B2B3FD6AE224,0xECDA8ED9B791F8B3,0x44A71CF1B0A875F0,0x796D5E3FC8F886AA,0x53A9662A6B74990,0x44D923D8F6CE76A6,0x1F699F2C88A2C,0x500E0238EA6724E7,0x5FD65E9918B25F93,0xB7A4378C8F12AEB9,0x95424185A342F828,0xAEC34329D19353FB,0xCF672149FA732D89,0x153D7D90A449C,0xB8525D7E2B4FF9F9,0xDB109CA652E6A115,0x97B80782CAB504C,0xED0AE4D66C2551E9,0xD7FA7966E7BF5484,0x141BBF23524ADEEF,0x1DDD411D853E9,0xCDF01BC07F89D7A4,0x27DDE723C4EB7B94,0x9B923A2D678302EC,0xE99F503677741E9F,0xF5953ED7C0CA8238,0x8A4EDFC1A6AE84F7,0xB9A202A50FEA,0x28C4A5BED721DFF5,0x7437E3C01865264F,0x95E4DF6EDE5589BE,0x382C093AA779FE9D,0xFB87DD73A441548F,0x21629B687A906F1D,0xC50A1AC5BB1B,0xD9087CDA74C99B88,0xCC9A4B5B445B3CE1,0xD96A0486687F4D1C,0x468B64ECA7BE9BDF,0xB8F49888FC1F7050,0xFC29C94F55B6B38B,0x9AED67647E3,0x6A61E2907E96BE48,0x80B5BFCE3281CBD5,0x6005AFD4D4C43C0,0x796E4E89FA0076C5,0x6AC9892941E2A27A,0x5ADC4F797F2EE4DE,0x1B98A79DC7A8A,0x9B84571FFAE415E4,0x69182F4CBAB89F47,0xC4CC7C76D521BDE5,0x9525703CBA33FE6E,0x50EFA6B2A846D21B,0xA931D7971562D247,0x1F64BCC7A280A,0x914DC50CD57BAE3,0x44E5848889941646,0x1973D46A2FCC5E65,0xA0B8967A01E0613A,0x4F83BB1713CE0EF5,0xC90523ACF58A1C20,0x20E4ACD463C8A,0xD0C507E6BF3DAE43,0xEDD6B9AE49751317,0x1128345ACA5FC095,0xE63BF4A9CF8485AB,0x844859A09461A36,0x1E7EEE349C9D9859,0x84250AD7BAA8,0x7029E55671496051,0x23752B9AB8B1528B,0x7081DA7B4C39720C,0xE894F229F169E089,0x883FB87D21992668,0xBF1B05A46E9BD3E2,0x47A07A0DBCAE,0x10B2BE1C4D37987D,0x99132D5300EAC26D,0x4FD9C91F4D5D6DB2,0x5031D5F3AB1EE57C,0x97F0C6A93C819AEC,0x23E82FA00B2CE850,0x11EF0BAC64EB3,0xC8F7B15BD673B5C7,0xAE7CC60881FBDBDC,0xC35B90C1FE47212A,0xAA2C1C8FD4ECD75C,0x56E140E2DD02AB88,0x2C7A72F25E288CFA,0x762418676542,0x3C80DBFCC950197,0xCF4B0548C06D8B,0x9A2DEA594F29ED96,0x5F43C07101E4CDB2,0x2ADA7D027DC39140,0x7D1A30DFC50B9741,0x83BCC8A7ABB1,0xAD2FBDAE951D3A0C,0xB932CF4701165CF5,0xF573810D56097E88,0x64E39A4011AB381A,0xB711383B6FF5A903,0x29B1E25EA83EB71,0x1F67E75127FB9,0x2CA5FEBE7FA3E9A,0x624F053488D73ACA,0xFA92BDE088CE68C1,0x85D0A8DA01EDE1E0,0xF28C053E8ED67E9,0x9E734C9B3CC274C2,0x13E260D188C5A,0xFFFA3C775F4DCBD0,0x1F0182649A6FE88F,0x48CEF60A8A864817,0x19D45800BC2ACC1D,0x206DD2F795943071,0xC697F6E9C86D5596,0x6F59A305D06E,0x7D36E0E792EC3FDB,0x7010CBDE737C0682,0xFEE3587D9F86ABB3,0xA6625D47CD40871C,0x4994BA665B309F8A,0x9E384751DE14CCC0,0xCF42739830C7,0x3BC37AFB52EEB2E3,0x258030816B5BC23F,0x86ABA64E2960CC8B,0xEEE47CD5D647C32,0x34F39F2C6FC1BBAB,0x68466801B5313B9B,0x128407BFAF9B,0x81D069BEA585C825,0x50DA52119625165E,0x964FEE0E43D5D809,0x57DF566310691047,0x1FAB6568060FAE81,0x96E9C7C80B39769E,0x1195B1C94EAF8,0xB62D60F1470CF385,0x1E967C6BCD9E6877,0x8F5421A1DA957492,0x8BEFF1620D7B91C9,0xFACF99B27DE96763,0x14FFF28C638B2383,0x16E2DD13EDD6C,0xAB7048CF494ACF5,0xF55F49CF62F97E84,0xB2DEE9C996AA16BD,0xB4353D50B31883CC,0x64911D7715A240B1,0xE355E49C039DF3B7,0xCC69209D9E30,0x4C19DEC1ED51ED4B,0xF70AB30D80F8132C,0xF2C113C96363291C,0xAA731F505FC9A9F5,0xBD3D334585A47312,0x549DD34BA5D95A19,0xF111E59D2DC6,0x4825BAA0C6C1D801,0x5CA9E4404CA46A97,0x7E05DDFD508DBC45,0xEDA164B00C49F16A,0x466DDE790345820F,0x202496604C5002DB,0x1515F145985A5,0xF114BD58D05093DE,0xFB66930AFF2A7601,0x9E771AEAE9D7827E,0x6C0E1F115FAD38B1,0x9B0C6AA0B25F2FB7,0xAFF64EDAB9F8B3DC,0x114F6407B8326,0x82177257F0C8A6E1,0x1C07FB330457832B,0xFF9DC4690F507689,0x445AE0F3F0877339,0x251BF19DBC62AE17,0x4EC811D90E173439,0x1794FCA845F4B,0x3536D44904E070C8,0x70DB206D44B516A,0xAA18D03C0FF30A61,0x7E899D9D4312CF73,0x3D1CCB473F20BE7B,0x557121FA9EB46685,0x48E29EEEC574,0x300AD1ED9D23F2CD,0x3570AF102337BED6,0x6B98FE2066BE5894,0x82C68CCF7134B052,0x89709EEE56B00DE,0x3D8D0C29C826B7B,0x965E97BE1F38,0x1B6521A69F8CA022,0xFF10F9BFCD615D13,0x18978D88D7665FE0,0x29A2F4DADF534514,0xEC26BAE83E1CD2EB,0x3956FCB6F649D7DB,0xEC9F4750EEAC,0x4F3258A2EFD08E2D,0x47CBF6C428B89EEA,0x8159BDD2AD6D2B60,0x523138C85CEB06CB,0xDA7C7ABF583ECA0C,0x16A7D3E536C60914,0x2BD234698F93,0x7D9F734E01A53E3A,0x93AFB4FDE75BC3AA,0x52372A957F8DBB58,0x4B953963BA18396E,0x76D1345BCABEA1D1,0x845F6DC9C8B64B93,0x720A18F3BD01,0xAC9B25FDC7E1A08E,0xB44859F2051A010B,0x3845BDA8FB61BF60,0x2D2274C2DAB0A1AD,0xBF898635846F71E7,0xACBE47E9BC5F31A8,0xC610619F568E,0xBBF56604AF9D1EE9,0x1EF490728E884A18,0x89C206E24A9FDB89,0xDCCCE71800BFACE4,0xF6EE88F73510C6DB,0x89AA3B11E1459ED,0x89325CAEDE0C,0x3BC6C7F203B7ECA4,0x293DDC591F3877F7,0x19B0884A7A3C303F,0xCF47E021A2F1B5BF,0x5F061536808A4375,0xD186152EF6C0298D,0x1194BC6591431,0x384AC0412F92E501,0xDEF07B6444ACF715,0xBDD68F68E2E966A1,0x26D14BD343AFD0A2,0x2C1C515815EE779,0xAAE66252B5CCC7AB,0x10C900560968E,0x2B36C9FEDA4FBD28,0x37935FBCCE20B88C,0x7EC9EB07F935FE5E,0x2DE280FCC649EC90,0xADDAE96F842EF629,0x91993457C2B9D77B,0xD1A0E62F0431,0xDB821EF7F59DCBB2,0x87A2A0EFE0CFF0C2,0x40EE1A94CED9A1DB,0x45AB50686B197183,0x2E14C237B9FC94D4,0x1B8D0F73C33169C3,0x6BFCA66FD872,0x89C14DBFA20E02AA,0x65A0DD6E5E4B2F31,0x66BBA841B67ADF7B,0xC7A5B8A8DBE57C16,0x307342DAC6037E51,0xB7E7B92F556A9692,0x1311EB5BAAEA,0x478E5B566EAE31F,0x4206C484AAFA04E,0x2574C29A5A8A48D4,0x562E08031818D08F,0x57200B1D5DFAB40E,0x96AB3086C8759528,0x1950C87A90CA5,0xABF7721B5B2E2862,0x5783914DE7EF62D,0x4E4F8F0AF71E6FBB,0x53F4396C7BE3FD11,0x5A7463D5DDFDB886,0xB86157123E20B3E,0x85CC7FCE007A,0xDB6587300C2801C9,0xF99E56F2EDCCC69D,0x6F3EE74517AEE2CF,0x5BB4E587B0ECEAD4,0x764BFFD758FF83DD,0x59255242E22C0A1,0xF8AF7566C4F4,0xEC77AE00B5BDCC9D,0x88D9A5BB23E12963,0x544BDB365EE32DBD,0x18C25A883CC197AF,0x71BD81897D2493A0,0x1604500DA2607D18,0x15BC55CF95551,0x66EA7012A5733FDC,0xF1BA6BF1A7395595,0xB2612160C13B0D55,0xDD4584EB55D1B534,0xCD448F582C1110A2,0x72844F16A549C367,0xA69B88E12064,0xD82377EB46A9FD85,0xC159E7F206F5C18B,0x3FABF805EA1B1C18,0xBFADC39BAD71BD76,0xCABAAFA5A9BAEBB,0x38B7F997D1D0CD23,0xAADF279E4398,0x4C802301B8863B2C,0xA37A0BAE9FDE20A,0x90C11387D0055D2,0x90C48A79DEA8E1B,0x469887845868E39,0xCD8C8FDA3DB00192,0x1D3B1462D4283,0xEC7633369EE2A8DE,0xBC03BC60E7A00DA,0xB84E5E725D85EA94,0x9EA82D43B53E9C0,0x430DCCC38EAFFE29,0xAF4D88F5265AFA43,0xAFEC88BFBC5F,0xB2CE38BE24788251,0x9140206C5AA97925,0x7CCA07578BCB4A75,0x6E4F2C982FFE380C,0x283997B4592C46D3,0xEB402FA841D2975E,0x13A5F0900A4E4,0x85649535F0487DEC,0x8B8243DEC8241E33,0x7C7ED681281749C3,0xD7031B566C81A841,0xDE198ED6A4FEB1D9,0xB517DCD405CD1801,0xA219AFFCA673,0x4D0E3A7B5B7F9DA6,0xFD3AC255B3D82AFC,0xAA937946FDEF79BE,0x8BF54BA2D9F7DEF2,0x38B2DEE0CF6B924D,0x415B7BFA654504CE,0x20863728555F0,0x4AC9ECB29C8D85CE,0xF7A1F0B5FB38D99F,0x3BD0951D535FE06B,0x6BA24F0FEE01A059,0x77F836CC8E7BB92,0x1248BD4D0634424,0x17BEB8CC5B729,0x3BB7E213CFDAE97C,0x8272CD982F96657E,0x4C94EECCBA58377C,0xC86C969337C573C9,0xDF0B6227D50C4E52,0xB24261B33B9C1EF7,0x10249CD082EA7,0x8739382ECE9564B,0xB6C23BCC5B41504F,0x8BC66FCCF39B1A1C,0x1F51DE49F0098658,0x89D2C3D4A9E32C95,0xA263ADF49BC28334,0x1A5A9B9B41016,0x76E6ADB59CF8292E,0xBAC974121C1F0A94,0xD7CDD2F488C9D5F6,0xDD758E502C0C73AD,0xD62B08C3544F35B8,0x8BBA5F1AE2EF997,0x1ACAC122A589C,0xEE33B07BB95F715,0x70698218D87631CD,0xFC705C510AAB2933,0xF1A2149EA4E76A6C,0xD4F33449C2CB6E14,0xF13C1A96204C0F22,0x154710A8EEBFF,0x872151BAC138C038,0x5B708F8077E7A43C,0x81C052719D2F933B,0x9EECC5BEAEB3F743,0x542D43F2C3F2263B,0xC773DB8028A146E1,0x95B561556BEA,0x8C253ECE0AFB54EE,0x8A0D0EB7F61B49CD,0xAD9E76D70106C53D,0xFA60211E6E7EDBC8,0xAC5FB8C4ECDEE19E,0x4E3EF868AC3D43D0,0xB7F491C9AF3F,0x77877C1843CE59DB,0xFB796E7BB9AEC7E1,0xC6D59DB88DDFCB41,0x4063E424FDCAA827,0x13C48F0C95302B6F,0xFAB7D8A82E347A0D,0x134F3FC2B0553,0x8024B1CA2EB5516C,0x73EC47C60B3DC828,0xA95DE0ED9D4399F4,0x5231D1877DF13DD7,0x4593B4ABB32A2759,0x6144BD84D16B507A,0x23EEC9CA70FA,0xFBF3A154C6DA6960,0x454EE55AE259215,0x2C57285C581BA881,0x17B1A08AD5D4E72F,0xF44DDBC4157396BE,0xD6AF531BEC3266C2,0x11004C75F09FC,0xE84A4D0343064658,0x89293D291C96589,0x44D22FB1E5A2C707,0x8BA5F41B0ABFF6CD,0xA8BA470D99420C12,0x4F6A68ED4A96AD3B,0x610C98653A50,0xAA2A15BA833FF72B,0xD760AD8443381F1F,0xE34BA08C8CA088DE,0x74F293C86E89C60B,0x4F96F5E6702889A3,0x38F2A4DF7595777B,0x23026B7BF86AA,0x5E8C04E49685F8E9,0x6953FF0B3143415,0x16771B8D1C7EBDAF,0x675CE00AB0D7485A,0x6AD1071137BE197F,0x623B6BEA7966473F,0xA397D190071D,0xD166DC2E9F26E33,0x74BF6538BC05BD25,0x720B101901F06F32,0x60E6689AA83C7DB2,0x6285B911EEACBD2C,0xE26131028CFEF794,0x1E20A0FD4D01B,0x66E993D84D0CAD70,0xE26C573C0D71A2F4,0x3B8E80A47909173C,0x632E5B6C780BD529,0x89378DC80607055C,0x12EE7F319C3B9515,0x21B1EEA22C07A,0x45A12E4234B8A160,0x3735B15CF1B13C3,0x3CEE11835A600DDB,0xC8E03C580A41417D,0x3B33AF81E13A6A3E,0xDC1CE1719D7B47BB,0xF4A238B18361,0x623886A2F2146B98,0x2D16B9C53E76DBEF,0x3AF2727F29F2DADA,0x984B45C56918B353,0x37C81C5A2209E7D3,0x97016F54DAF398B5,0x3447581D232A,0x3E807867CEB45F47,0xBC0F26EDC054A5A9,0x2214237DCEDD5D2F,0x3BD7AEF4CBAD1824,0x856DAA2D910FFE24,0x24F6E85D7F021745,0x7D311BBD0053,0x7D5065C4F9A50A1A,0x71B21FAC253A664D,0x67450CDA784FCD3A,0x17E1D2BD27F96864,0xC25CF6477E4D7FB,0x9362A790C4B2863F,0x1C3FF3FACB806,0x76CAFABE7CA00D9D,0x16C921A829EBEA16,0xE1C9848B9172A61F,0x3523242F942885B8,0x1459A24944BEAC2A,0x3E18328E121EB194,0x1FB674A2C2864,0xE35367580B08DAE6,0x139C17F150AF234B,0x7D96432428778CD4,0x1BABD5A28E66BC54,0x81D2ED38C7CF0249,0x82128944EA4E4E21,0x930CFA8B3815,0xBCEEA42B46D40010,0x7A9E32155A49B1D2,0xD98481448CA22FCB,0xDB00536FD618070E,0x1CAA9DD6BDDE91AA,0xAA9530C915F5615F,0x22004456DABF6,0x478BE07931781563,0xF92A9226ABD883C5,0xF009B14970FD2D43,0x3D78FD6D51D70566,0x37BA0F6C56A45D67,0xA98CDE230C79A97F,0xC0E7C4001146,0xCBB92EAF50E3270E,0x2C270DC78F5FD150,0xA16D3B520722B1B6,0xBB06A781EB545C32,0x6DF19292F7613249,0x27F7D39E91CA7960,0xACBF3CDC9D18,0x6C24C5B14B715067,0x7338B339A52E1E5C,0xD74D6AF9B3A4196A,0x2507E0718C24516,0x993B19A2AEB404CD,0x319518BEA9CF3AA,0x80CCC7E333CA,0x1D5A311656557DC8,0x50248DF3F8BFAB49,0xBE6DE66CA3627270,0x4E8CCD89D70A2361,0x7E92FBB02CDE605C,0x3D3D928076D1783F,0x65938433BCB9,0x3C169F251C740E24,0x45ED709DACCEBA18,0x14673B549421712F,0x8878848E616E1052,0xC21CC6AA55B7C4A,0x21488470128D7140,0x1EF3067A4A60,0xCD77694EC2A2DC3C,0xC3031B66ABF540C3,0x42E5E6E224AB08A8,0x4BF3782485941333,0x4E8AB58C7BE30A5,0x47CB5BE8433453CF,0x27586F74436A,0x7A72A8CE92345563,0x5C915E31869FFDB8,0xC8BDE8B035E84EF7,0xAC41C89A7E163D91,0xBC64D0E9EF9094B2,0x8F680410546BDC1,0x183699797E09B,0x5E3C7A8202DB27A9,0x5078582FA0C61545,0xF8034C90C2901377,0x225882CBF4379289,0x679F75E824597CE8,0x4207926E24DDDF12,0x8A60995305E5,0x89A57A19B8E4CEC3,0xF1FB9FCE99A5F3E6,0xE7FCDF9B4CC49F4A,0x873E61E291216D35,0x2BCFC2D887847688,0x57659E7711E2F8EA,0x1D45861E18188,0xE7E9449796FECFDD,0xDAFFA9E4A672A0F,0x82FB1EDFEE120A14,0xFB6CC419B9E86256,0x5CDE4AA77F71FE0,0x99B64E8E0E3E62AC,0x1B556BFCFFA87,0x71DCF31E304AF921,0xE777DDA355531DF1,0x91647D4B29C75838,0x350FAA4AEA04AF17,0xA12CFE504FE40AA1,0xEEF7D506B490A50C,0x121CB39F53C61,0xA6792D5A986C56F6,0xCE146AEE753F4ECA,0xDD8470DEF334D31E,0x115568BDC760ADD0,0x5D71678677D8B769,0x326BD721419AC637,0x765C297444B0,0x525807C7193F7304,0x6C25E33983E714E3,0xDA46623DE92C0B81,0xD65E14C5F72BC45B,0x85F248A4F4E29682,0x49F218B552B5CA89,0x18AD8F074BCD7,0x4357F6C0FFF5F3E3,0x948F6585CEE50EC6,0x4337AB801A8E7E8B,0xF978958713E383BB,0x3A25F5056B19CB3E,0xBED0FB2B6B043833,0xAE7343554826,0x2DA10B3C612DDE5E,0xD62DE83EAE25255E,0xF6C1688E6BC9952E,0x89E384011B283A36,0x2C8A8AD10ED5C10F,0x4B8B1E08F085A057,0x73E4108CFA27,0x2A04FD6F2BE91317,0x17553EBCAC5499F,0x2847742E01DAE68E,0xEB5C65C98089FB06,0x3E6934E7DE72C8F9,0x692583C7769B56E,0x2213D5EC2929B,0xD0D728BC0AF74199,0xAAB068E6AE609E4B,0x76D109E8EA4CEC0C,0xEE9CC7673F2E18F8,0x4AFAD33DDB7AA968,0x15B69BDC5A0BD64C,0x1387FC89DF28A,0x74C7BD021F9BBBAE,0x173A8DE0B3733905,0xC2CC683146FFC765,0xDAFEA8B8169FE78E,0x9C4F7A79202923D3,0xF80B65951D228E1B,0x16999ADC3A5D8,0xE10BA2FD2CB60D21,0x5194DB871878015C,0xDFD5A9D0A4F00D19,0xA6BE5343E2C757BE,0xCE91D788C1C018EB,0x13F21D7EA0A2AB5B,0x10F09344B37D1,0x44FB71C89699B435,0x3F89E35B9D1BDB08,0x7C8AA49731BA0BF8,0x5501A7D218CA0127,0xE31EAA82AA9B86BF,0x1D97A4642FF433F0,0x20B2291284773,0x867E224C9A486C46,0xE86CB5A39A4F10C2,0x2E8662AAF7691355,0xE6867E91FCA5FBDB,0x7A2DB70399C587F1,0x7946079D1CA73C9,0x43FE49044D70,0x9494A12CED37EA3E,0x5077BDFD2CA9C4D2,0x759BB16515819FC0,0x6EEEFD51B41A9136,0x7AA2074738E8D852,0xB9D44DC4390EEF8,0x50960B8ADCCB,0xCD4715F66BE3F52F,0xF37F656725DC0084,0x1A27AEDFA32803A6,0x797DD2EF4745A0C7,0x937ED5AB561CB0B1,0x89039E32C0859237,0xE2F9C64B4CE8,0x54DECC262889D9BF,0x74AFE7B02759D454,0x3F9FBCF8F35D186E,0x30ECBDB78EE009C4,0x839391B3B051C8E6,0x3056CFA0147324DE,0x153FE5D6BEA13,0x9637C00981E395EE,0x6BB1FF9458A4D5A1,0xAA1D25978F5CA05D,0x96505D7A3928C85D,0xEDE506D8281BBEDB,0xA92E85292FB240EC,0x1FA150EF990FF,0xD2E6DDC0FB8299E1,0x25439F5EC5A22ADD,0x3B60757C689050AE,0xB7612854BD4D8244,0x736E81A1F1327FFD,0x85669385D4C95187,0xBFBBF0B2BDD4,0x92DCB5574E6BC458,0x470B6D78C6A382F4,0x9F54571320B85D32,0x23896E34FDB3C084,0x305A1F58B77B9AA8,0xDEC1688CAFE3E69,0xD0CC9AD366F2,0xE2D1360BB47FD748,0x2D44674ABAD23B8D,0x2A4B2873FB41EAE3,0x6D4859C7363DD9B8,0xF37F816DF3FCF888,0xE0477D3484FC0456,0x293A8326D945,0xE0D4217A4842C5A8,0x29631C26C2C053FC,0xABFC63D480C37321,0x6DCF467652FAAE99,0xCA028B32CB2671DA,0x6E19D3F87E214E9B,0x18CF55D248B0D,0xB0649CFDDED5F60A,0x46C8B3129A9290C5,0x27CD2883DEABDF74,0x33881051CAE8ABE3,0xFC9CBAFB9820C528,0x75B27A70CFAF518D,0x2CE03E3ED012,0xDA19D075D175E772,0xBDA7225C2EEC66B,0xC00659BBC702D604,0x450234D2720D90D5,0xC4B33483B95C13B5,0xD754E7EBFD32B18C,0x5D1CDC8E19E1,0x475449CAB7F19AC1,0x6123011D52187FDF,0x39A4BC2401A05037,0x69FB97B9ED4D7E18,0xAA3B16B702FCA682,0xBF32E92B272BDB39,0x749F0C0E7381,0xB15FE5069561F658,0x90796EED58FEB224,0xE1598824895F161F,0x5A60A354D92800A4,0x800C0D1F593EE77F,0x7316868A1CC6BA54,0x1B1DCABF99E06,0xC0804F571009D1BB,0x7FC108A121922BDD,0x1EC025084BAD8D2,0x2BA19C87EBDA52FB,0x7918E5679D7DEC35,0xD5CFDBD7C5E36866,0x177C5749C7810,0x451C4C0965D6B189,0xCBCBD8EE0252BCBD,0x1678099265583389,0x440C9E406F762994,0x690474D6301A60C6,0xFF1B7D1879EEE8BE,0xF5593F11FFC6,0xF95E89ECD5719905,0x43807570CA2FDA4A,0xAB20D6D6B3981B1,0xC36B172014C835E6,0xF79CF8D7580341EA,0x5B46CF0F99B4D9FF,0x5C1DB2F17C6E,0x6B05890C27B023B9,0x3C2908CED7A02CE0,0x5B06236DF663B5F9,0x4CF6DD81594A39B7,0xD9A1F4FF499E36A9,0x2FBA855CAEBC2D19,0xA4E7D7BA081D,0xDC2D1E76C19C11C3,0x9693B542577E8C94,0x83531BE399656DE2,0x3EC797184285BCA8,0xFA6E0A0BE882B41E,0xCAEE58F9F7E64E82,0x1DA191FC78A1B,0x7AD28200A53EDDF6,0x758CF4F667DCC812,0xE3D78D5ACE59A3B7,0x1C16FCCABFF89EB5,0xDB45414846334D45,0xBCA41A0848D67EFE,0x1B78BFDFB06D2,0x9C63377217DA7E0B,0x719760FE724A02E,0x5E03B8E9B0C0F0FE,0x5358FB6F808F7D19,0x41C55BDDE587A7F1,0x595766583AD502C7,0x682EF0D91903,0x1A9FAFAE8C7AE9D1,0x4DC9BADDD74E7EB3,0xCB7B906D4DF01017,0x389F37661749D1A7,0x159E17B2E7B9E351,0x11FECBE7F5565ACD,0x1D32A111BDF0,0xDEE8507D7DF168F,0xFB1BEB256880AEC8,0xF3D33A81CA1A103,0x8C9BCBEABD3CD1C,0x815810164999AA31,0xF8C1BB4CC41FB7CD,0x114E5440C85D6,0x10E90FA55705C86B,0xF49C4CDADE740B61,0x166C2851A4A43E14,0x8C64E708282DFB27,0xE3C6C4C9237AF699,0x4320325DC684B438,0x120A916B52968,0x511B88241BD28D62,0x1932520B0CB03F1B,0xACBADF9898D38318,0x4BF6A3CDC691BA04,0xDAA6571EDB30322,0x805EC9D75CFE7FA5,0x2030336D8F852,0x94FF4015F58C5055,0xEB94DB4F47393C32,0x654465FDA06AF8D4,0x843BB8AF4A2ED807,0x60502A23A7ABB7B8,0x79F3CF2E6677F29A,0xCCE506D0F4D0,0xAB6CEA5FDA2818E9,0x447705A86ABC0544,0xF818C2107B20EE82,0xEE39D5CB3C71AEB3,0x59120C1DD150D852,0xA2FD06D17BFE0ED5,0x1C12962052891,0xE6912D582E5DE00C,0xC4ACE0625D12CFD5,0x47B038C7D55FD148,0x5ECE15D49E9A9B9D,0xE99C999F9C7BDF4,0x304B114A013017BE,0x12861199AA0E2,0x45E66C2943B4797,0x6F68F7D684B095F3,0x7A42C2A5F3806851,0x44CFBC45CD58069D,0xB581C7EB31E8CB6A,0x173028EDB12D1F81,0x11A103ECCF3DB,0xDD6A8857884F3F9F,0xA28545F3E9E2998C,0xA8810E7E69ADD2BB,0x8199E044B4BF9AE4,0x277BAF9434225AF,0xBB32C54F7289799E,0x3F9DE55DF24,0x6B3C45B07ACD4C38,0x78045F498E831937,0x1BBBBBCA187552EB,0x19B746F388FFA9C0,0xBB138DAF516D470F,0x2748E742650A81E6,0x1D7F07C8AE161,0x2EBADB714512E3FA,0x52A6DD105A79A62,0x2B20B2B4326F498C,0x6AE2C5A5605C2DED,0xF14DD00233FB0639,0xC267A7288C55DE0E,0x9B96CD0D6D87,0x11F424B523335301,0xCE8A1E400044AAF6,0x75B519C4BCC66336,0x3274DAAEDFA93270,0x9AAB5426D44E2B4A,0x8C00C8E0D2286AC6,0x1E0980868C7A7,0x50EEAA573BEF3EC7,0x5BC202174B5C5576,0x83989E848CBCEA80,0x1C906A23CAE80AC5,0xB8C67F3E88DD57F6,0x5E2937DF8CC74264,0xB8F399292DC0,0xDE90F317F08693A4,0xDB7B34A5C96BD139,0xDC416D33DA44BAB2,0xAAE9CFF565F59707,0x732BEBB72BD90E2,0x20D2EFEE5B6F943,0x21397DF88A03F,0xF8A62156B0368D5F,0xDA87A5120DC14EDE,0x43BA6D5CFC117CD3,0x58F905BB85B611B5,0x18F4E53BE8267601,0x2DC68C73DA725E87,0xA93AB7E555E3,0xC83CC3B8E19705C4,0x17ECD7B60AAAF6C5,0x1E7DEE95F199C725,0xDFFE0EF87D631301,0x5AE7C8B860D4B73F,0x1327A66587F96244,0xB013A0EA7643,0x97197E6DEBE643F4,0x5792BA668EC835FC,0xE3982E77347BB74B,0x5DCAD5BE139627BF,0x1464C160FA82102A,0x760D9084550FDD9E,0x1784AA9B31798,0x8608C16953267C7B,0x4BEDC9AFEAEE6FA,0xA8E715C15A273D8F,0xA524B3323D5023BB,0xCFB7220A8E8A61E1,0x2D4045B242FEEE6A,0xE6AF2D70876A,0x5BEB7A2DB2C17C4B,0xEDF2E7B5CBB40D2E,0x1FD355B4A9BD0272,0x540D587F49B01B1F,0xF5CD1CF08F8BE260,0x58BCF8D42BC092F0,0x1D85DFD580CF3,0xA569798BA2B1289F,0x3D3E575562D7EF40,0x2008A351749FCDBC,0xEC0C9AB88E345BCC,0x8252DF4E120B6F40,0x99F9894FF20EA7D4,0x163F5148B86FA,0x8B5972F80FFBCEE0,0xD8ED9F8DBE1AD7BE,0x466BC7314F8CAD0A,0xD921722CC0DC90F5,0x7CB1385D6D62A732,0xBF496556FD7B6C5B,0x1E3B560350E06,0x42D381BEB44C0C16,0xF309533834F2DED7,0xBCDB0FC5912558B0,0x54ACA00444678595,0x849BEA2D93C0CB08,0x77FB3B48122144BB,0x144A7E2DEF9C6,0xEDDF25E8FA5ABD31,0xAE24252374647083,0x64A75A3A09FB281C,0xF38F9BB656D48F88,0xF4A75E55CB1725B8,0xBD8DA66C8A41AFD6,0x13C546580157A,0x9D5B7F30F99BED5,0x833DBF3993B01E0B,0x447BFF13A7C453E2,0xC732381E2F9F33F0,0xF26636683F495439,0xC89531A136E4BE61,0x15DD9A4E5513,0x1B1D70651CDCC789,0xB332C2BDCED06B39,0x8F54C111C393B743,0x136E1CF8E1DB566B,0xB4D965109498796D,0xE842260CF9EDA2F8,0x168F556831EB7,0xCA683952B5C92A99,0x38B5F0CE5FED1600,0xDAE90F1F1539BED2,0x435E0FABEDA6AE51,0x16F83DFF118591A4,0xCDDA13395966922,0x18A276007553B,0x5B350D96065486FB,0xF4811C2E4AB3EA67,0xA783541898D12EC0,0x826C0E30A6E1D778,0x5E428DF2154C848F,0x905EF7760427F8FB,0x1CE7E92B03CC5,0xBCCB0A872F1E6F1B,0x8273CCB3F79B9481,0x4F22B1CC669E8AE1,0xA47DA449DC3C60CA,0x49A2A43CBE4EC3A6,0x41343F89FE9B7564,0x4E9E51274683,0xFE3951E7E8A06D70,0xD250978885F69392,0x39C94AB48B268956,0x438548020A43D990,0xA4387181A250E5BA,0x590E63F0B36CBCD,0x18EF3BE3D48D9,0xD63D0A350423E0C2,0x737ACAB238F1956C,0xAB5AB648FA4E82C8,0x1BF6B343574F57EE,0x5EDF811E68EC9FC7,0xA7F24263B48A2FE8,0x44D278FEA754,0x1F84DCC56B286883,0xD6746D8170089EB7,0x77263C58330D79F1,0x4245A3195BB0DFC0,0x4AC05927F99E007,0x33200638E6769004,0x3752917E56A7,0x29A226FBAB8B01F1,0x3865F449B72F9847,0xCDD517DA41E90CF3,0xCCD2941EFC805009,0xF425552B5FEDF8BC,0x52A2B1E02BFB0370,0x19D6B3FBDEFB,0xC68C5D1C5E282FAB,0xFDA531C88FFB4F7B,0x5AA2557390E746EA,0x544A1F189D86AD25,0x94461CFAE26D6190,0x20D8C570EF45F4E4,0x92A7A6C27BD6,0x262A48B93D47AFF1,0x292D1E55B0F60CEF,0xB234241984DF3A64,0x218A31F030E90054,0xDAE73BC1C4F98507,0x9F97BED12A64E86F,0x1AB63C38240C4,0x335EDC3CD5F9936,0x98F694E17535D753,0x3870AAEC6F53C8A5,0xA486CB7A1913AE09,0xDBD5FEF6A41E29EA,0x3DADD7BD21E339CE,0x10E7361492D,0x5095977BDEB1B36C,0x357FE8B37579158E,0x385CA177BF816FCB,0x8F08E526E1DC77A5,0x16B7FB99FC6A014B,0xA7264DBD7FA6E58,0x181B3AF74C554,0x5A3607372124190E,0xC1A280D2D109C80D,0x4362F03886804EB5,0x78292D62C6A3CD8E,0xBCB91F20C2ED6BB9,0x4E1064B8492F2D41,0x22C00D97001B0,0x234C74EDC4142408,0x628945864F2E94C3,0xC4C469959854AFC,0xADCD7C36DD1C4E66,0x179D081C1F21D075,0xCFD6D6CC5DD8DD23,0x18B7D04B880ED,0xCFFF90AE4C25171C,0x74F86028A40BB25D,0x3B68BFE499280CAE,0xBFD8625FDC85EC9F,0xE0CB680758145DA0,0xB62D0E45C4C9CF0C,0x3F98100E7AB2,0xF15E1ECBBEA945F4,0xEFAB4EEA5FEDED0F,0xF2CF754ECF898640,0x7F076FEC12D4B55E,0x648342D624F7447E,0x9D97CA409913964,0x1B3FCE1227EC1,0xE575D42A223EA064,0x59FC4D7A5000EC75,0xD507B99DB1979308,0xCA39CAA96AE62B90,0x4079CF243CDA9F5F,0x7C6F41E10C337562,0x18916F5705A05,0xD2B2B5405B409DB8,0xE24430C9946160F6,0xA80A1E0E4F933EF1,0xEE342DBCECECAFFF,0x48D75C2F1025874B,0xE6A399FB36491A7,0x1803600BFD56E,0x335A0B3DEBD77BDE,0xAEBCB4CAA302204D,0x4372C361B5E88093,0x1DFB6A22A735B063,0xC663C469398EB683,0xC36A47FDFE8DA729,0xFA3409DAF087,0xD46E8AF99E0A7507,0xB912510F967B2222,0xFD7514B8ADBF1FFD,0xBF0B38FEDF7C485E,0x34E415C0E1D11F9D,0xC1734B56131B1A0D,0x1164695919A90,0x3D7BDB50F36CC367,0xDC909A6A2062AD6C,0xE9CA98A3C2E5612,0xFAAB136D5459ACCF,0x6AC1FBF6B86F810B,0x12DFAD1C0D971EA1,0x1CEB5EB055D8F,0x7878FDCE9D8D1326,0x6E77B0EF83B6CD74,0x120953B2DA5355B7,0x6C90352F433F8231,0xDA52D620FBEE2E2D,0x1CFAD28C4FB6D282,0x2141C56FCEF2D,0x31C6B070C5AA396A,0x777BEC4CF965FCDA,0x87C9332479689CF2,0xCEF4AB47EA284896,0xA0AA9BD8CAF5B4C,0xAE55F35DD6D0BA49,0x62CEEDB0A074,0x38EA80B7B8816CED,0xAA9F1A4843F8FDE0,0xC1FBA0970CADCDAF,0x6234AA1D594718C,0x575E80581F5197FB,0x837A50BB9163678,0x617D6A3B5189,0x441AEB9ED7B63AA4,0x450FCC1286BDAF19,0xEEC928E70B519D6D,0x244638D26CF6ABB6,0x72BC30E830993CD9,0xEDC5385A21AC61A6,0x19E420F2590C,0x2FEA141E2D0F2CE6,0x6687ECC658352F54,0x3A2776E7A28D327D,0xD7C619C47C053E72,0x88E3521BCAE52EF6,0x4226CAC9EC6A5AD9,0x130BDB9E0CF87,0xE28F6F7A9F333C1F,0xB5C4DBBFDF30DAFB,0xDCCC3CC4F0DE9374,0x6F06C6BAB3BEA310,0x8422E66D7183A750,0x103404DC6C2501CF,0x127AE009A631F,0x5F0019831237C303,0xD8B7C43A933F66D2,0x8D82E5C774EE2E84,0xD86799796B4A0940,0x9D28E1AF4D952061,0xE8BC4028C7F1AF56,0x230DD4A408184,0x2FEE7F36EB0B9677,0xE88058D3094FFAD3,0x3E5C400D29DDC528,0x70194309A36630F7,0xD5136F76FF1965EB,0x74D5BD83226082F9,0x3DAE7C010312,0xCA8EDB0D37D985EA,0x71F65BA6C423D6DE,0xC1B9C2B4F8EF6805,0xE2C6DF92A5910B9,0xB6B97DE36A12162B,0xC42A85E32C00D36E,0x16929E327D7F7,0xC446F608236B2BA3,0x885AB185C618756D,0xBE468E30541D34F0,0x6C0F33DAC7AA4AAA,0x325F5886A7F0F2FB,0x72BE4788C5E42F0A,0x11B122AD8C47A,0x3B5ADE51D0C8E0F3,0xF323EE00980240D3,0x65A15F21471DF7C3,0x3B85651CC1837805,0x4B06C77D18D1C90D,0x10A726E757FF02A0,0x3CCAA8B96F29,0x306DF77D2304820B,0xEBFD8781F18CB8C8,0xB82E97944B2C1A0D,0xFC84555DC206140B,0xE571378E8776F933,0x67C11EC2BC3440D8,0x386ED1902D08,0xFEC0BE7582F61246,0x464328AA03178D37,0xCCAE6196409EBC06,0xDCCE072E286EA86C,0xDC8E292F47D970C6,0xC62E831077BA26F1,0xC89A678E069A,0x29059E708B51A44D,0x9437D0EA6860623,0x87D7311187C47BD2,0xB5A5AC2D339398F6,0xC6197FC769D1D118,0x2274012853D09C82,0x10A217E3FC31,0x793F86A6CF142777,0x1C924FA5245FB9F,0xC29D1F6E479356FA,0x6B1207E06AF63A5C,0x29D60CD1BD4D4D8,0x46BFB6F8D8185C7D,0x19EFD294110D5,0x404D828968A7F1F,0x6DE984E4AC8E2121,0x7BB38DB646B6B612,0xAD1E45D8C97697AD,0xD8C6B5A1A129C061,0xE237C734EDE03AF,0x1A0DA68CB63D1,0x386EA9DEB6A12817,0x28F85B2EC109CFA8,0x4BD50B85412EF6B9,0x61E4B5FDFB4693A7,0xBA93077BD48896B1,0xC4D94C44B758C1E9,0x12D905E078360,0x7757708F1110E38B,0xB15D30AC75B642E8,0x44AB6126EC2752DD,0x2892BAA4777C5F91,0xF4697CE4BBA3DE8B,0x5DBA81FB7346754A,0x173864847C34C,0x6CDB54DDE7F6DC27,0xCAB8F6461FB80473,0x11E56D8ED2C1C47D,0x6C8ADA408290E1D0,0x10A50B18CFD12BC9,0xE884EC25EA8FA2C5,0x18ECF74179DD1,0xC39DDD8B9A6D44A9,0x69985C858A854A35,0x6730A1C478F393A4,0x9049E0490FDD25F9,0x430C13912435751E,0xED913176C7C47ACA,0x179DC264E3430,0xB62F21CAEC27FCF,0xF998D259FAF13AEA,0xBB50271D2847CD5C,0x5BFC6242EF65896B,0xA08CB626DC7A6FC3,0xC49D8F18F1FCAB16,0x1EF16424AF603,0x8648146350391E6C,0x1BE6E175CA8B2A1D,0xE2CABD65209150DE,0x11128F40DD056347,0x54178DCEA475BC2A,0x9DD2F67EBDF8CC21,0xF15C42BE9C53,0xA8336A19A6255BED,0xC88C342BCDDD841A,0x92A4DA6C2D78263F,0xB4528340EF1A315A,0x7ED6E9B8B3E3FC63,0x252B3C5CD1123CE6,0xF9A13241E635,0x7141C7E35F86724E,0x2F2F0CD9F0A07E46,0xE586233D8B55F990,0x922CCFCCD2AE4F60,0x6B8CA701918A378,0x33117B7667318280,0x106EE48F4511F,0xB99BFCAD16AA90F1,0x40C4D5D14931D4EE,0xE79B2C89E1697157,0x85EADFA0ED7FC53A,0xD6CB2244A8EBF831,0xE83976D95713A858,0x19FB582C0B588,0x5B40C855606E793F,0x1D5186594AACC33F,0xA5B7890A822F0ED7,0x4ADADD58B13E5A6,0xFDF7F3D15813B471,0x67D45697556C6251,0x5E66D10BAB15,0x581843781165B731,0xC4D04E3A796DB6B0,0xD466DE1829ED4FA1,0x50B190309747AD0F,0x384193B2628D0488,0xA11B1B0DC65A4A8B,0x2113C9ACA2FA2,0x23D27D978DCDA935,0xD28DAF552E85379C,0x3348D478B4374D9B,0x447DB2FBC0B4F753,0x3229249E31BAB724,0x70F244C7E59B0AC7,0x2988CAB809CC,0x6D65C8999C1C51,0x5D67DFD509522CC1,0xA7E76C93A52A8E63,0x8D9B8048B06D07EB,0x92AF279C120DC0A2,0xC608B65343FEBFF3,0x8BE008912055,0xEEAB7C24AC7B80A,0x8DC0B43B4C0E62D,0x2FAE92A84E3D67F7,0xCC1818AC89DE1362,0x46E5E8AD179EF1FA,0x8EDA28B2DFD6504F,0x1E91AF2D53CF8,0x9B925BA5415CD0B7,0x5A55E24B2AFE521B,0x26D064B479BEC1A4,0x33C88FD416A4E0E2,0x342FE1E66238278,0xF589912D111F2A6D,0x29C7817C5F70,0x39074838E8CD106D,0x24D49791E171F276,0x77476D7A7EDBCCBB,0xED5581F9B091D6D9,0xAB9839F581DAF42A,0x591AED8F18A770CA,0x34F142E891A4,0x9E478A5200E3B1A8,0x53AF3CE3D7E03832,0x1403276224EED7F,0xA0025BECB1780C09,0x2CB3010B43E0DE6E,0x35E1A266F37D0786,0x227783FC0A67A,0x3EE79DE2F5731884,0xA0652B4DF6540AD3,0x5D60739A0801E84C,0x9634D066F67DA69,0xDE46F099F716E6DC,0x1394C77D01422B62,0x14F8174FCD4B4,0x99939C50AA474AEC,0xE45FE5F4C7C316A6,0x57CE98D6506FCD7F,0xE411A61988581617,0x36F85E66BE89FE6A,0x6E0A07EE5A9527C0,0x200FDEC9109F3,0xE12ACE513BA60112,0x8C1C44DD055F5CDC,0x84A4D795A7E60132,0x6641FE5C06A2465A,0x88AD5DF59DBCC772,0x16CAA3BB05AF398A,0x185A58117E9B9,0xAE440E68D7F21145,0xBC8C55A7410A1EE5,0x478571C982DD320E,0x49AF688F35B250BF,0xED922B78F9AFEA43,0x79A3D01CB9E97C93,0xBC5658C1A379,0xB4C731B3C8441561,0x81CA268A00726DA5,0xB5F63352F8946954,0xF00068717EBD898F,0x488D37A19868517,0x839F0A324FCDC63C,0x2160365995965,0x4438DA172F815F7A,0x9A9298A70DDA83E0,0x808DB5F2EA9A713C,0x97BBF594C29DC301,0xCFA43611BEEE73FC,0x3E9719AAF9FCA231,0xB86F6CEE9435,0xC344026AD67BF65,0xE0E76982A139A6F6,0xF9A349B6152147CC,0x1558F511CF9B742B,0xD0DECFAA2295EB22,0xC9F63FBF65D53777,0x15D289D7C39DB,0xE452DFA30435C03C,0x74404AB8CC40F04E,0x9437C391ACE50954,0x83BF94D049887654,0x79136D44787E150,0x6E24E6614D3D88C0,0x1E921FFDD3FB0,0xA1F7993D6D7358C2,0xE5F0EACD4C14CE77,0xA884F1F2184F11BD,0x2DF2A84CF5AFBA3C,0x42C4D2DED216A0B3,0xBFE4B5EE84F27955,0xAA35D9E513AA,0x4E8BF2D44EE2A912,0xCD29A3437B21AB08,0x1A8F02B5FDED0086,0x6CB3C90A4A1A4820,0x7C9A516BC51E76AC,0x9806D151CD47B28D,0x207238D50A001,0xA31B1AB02D7364BD,0x1C50A6D7DD8B5D16,0xAC2E067D5BA5B520,0x30E232E2F4FCC3FC,0xA2C3D6C80D01F4C2,0xAFAFE79BAE663362,0x194483729EFE,0x53F09274C09CE4C1,0x175C011DA6786529,0x370FA6C609ACCFE7,0x650C3AEBE84BCF2D,0xAA2F381CB765BAAA,0xF21750798A196EC5,0x1FBD8E55213A5,0xDF92AC0FF6BAC480,0x99A7E77BB08A4170,0xB7A4E6906032C9C2,0xE00CC936CD926D9F,0x2024E20EA1A45948,0xA7DE05053409558F,0x535138DB51B9,0xC57DC9B1B7EA96BF,0xC24D3F78B0D052F0,0x90BDFD7CE4D22BAB,0x86C2E1AF5E204EE7,0xE3176F4BFA7F3F51,0x5A329556369ECE14,0x20A578DAE9072,0x456067BF588A859D,0xBC1A60D726A9A06F,0x7E9519C94B8AD362,0x734C45A7E3A0A19B,0xB6855342A518DF03,0xD345168EF326BCDC,0x99C518E859B8,0x36C8F5A58558EA7A,0x53991D7B0B8B35CD,0x4D5935A8008DB481,0x3C3535BCE8BAEF76,0x6CF0B22F92982AD1,0x95028DA2B15832A4,0x1D978CA851450,0x78C70B9F5C40FE1B,0x87FEA1B6837FA2CE,0xC1609402682C3148,0xF1B008E538041204,0xD01BD7DBEE2E89CB,0x57741F8769C45525,0x6BBD5BF19149,0x6B311AF32B5F2638,0x7A2D1D8AA8D41B89,0xD7577F45C3C68201,0x7E0994FBF26B2FBE,0x2744ACE52651A57A,0x388CED78F4040D51,0x7DB57A654650,0xB9E6F8D7F49C4753,0xAB1E9E630CD69AC1,0x9452C0481E39C330,0x648AFDF16C80D566,0xAA2C31B00310C8B9,0xAB425FD9933B43DD,0x177E67D9150A1,0x4F07C92C3F88FED4,0x2E6D28DCE21852C3,0xD7D30F2B78F7EE63,0xAD2DA5167A6D12CA,0x9C73191BF346109B,0xBEFAE479B662F262,0x397D9073C12C,0x28E9065CE04A19E0,0xB1B10917C0C5CFBF,0xDBA7F084B0777F1F,0xF6A31A04DA166FCE,0x1F08564D8B70B361,0xD87C7BEAC0E934BB,0x116F26AF8269C,0x90659DAF3C968EC5,0x4A9A6AC04310D479,0xF92DB12D03BF2613,0x144169716C2E5CA6,0x148A35D90E1E02C0,0xC407F85ABCCB6AE7,0x1E5E2F24390D2,0xFAAEEA4B9EBE993A,0x9774E4BA6CE74326,0x6E291FB25A946664,0xD56000FF00D9A443,0x13F018BB96420111,0x522C0271DA7EA156,0x498A28D03A19,0x2824FD2A26001707,0xE163DFE9AE3F1B81,0x6AE1EC7ED96AA01E,0xE885523C6904C5B3,0xE7BF7FC0F7D7E3BA,0x975FA9563D1752B7,0x12F95951FB4BA,0x5B7D898BA4023748,0xF8F761FEA05A6D00,0x8AA748EA32532A42,0x831D59C8A18D40C6,0xDD824A3AD1A66D48,0xC5E2FB862DE035F3,0x1ADBE4506A161,0xCC59580F01374B3A,0x8B9DC7275DF1F06F,0xD3D28CCE201D27D2,0xC3929A0915F4D32B,0x20D34D6D102CCAEF,0x175D6078407F766F,0x192757543A82B,0xA4283B496E06969D,0x686BEBED27A01967,0xFD6EFDA84AA9D9EB,0x8A471641AB3E6AE8,0x66630367388F8DAC,0x6607C1D910814078,0xBC14119BA0DE,0xD0DBB25E190D9F85,0xE08C081B2385D539,0x10A991FCADB4800,0x61E7B01387A1E19F,0xB4683FF4214AF6FA,0x37829CE5155F6B62,0xF8EC03E7A9FF,0x865437BB03531A8F,0xF1507D37A2A75889,0x22CE8B0872393F4F,0x29CCD96871C30F9C,0x94EDCFE3306137A6,0xDB3E9A01C7405BA9,0x215C6985AB039,0xABB82784E49EFAFA,0x8D38BABD54C11993,0x67323BA43E55997A,0x3D74BD7611C11390,0x13AB8309A344D65C,0x9A918AD939D06E00,0x399E6F795B36,0x9F7790031BD2B4E0,0xA64027C2F4CBAC5F,0x7D70AFD3176CD163,0xFB527A9571A89BE5,0xD72011FF8EF7426,0x1EF27367E20D00D9,0x2EC41B54AE9,0x4250C0C66E966276,0x80A9C34AB54673E9,0x684EBDB26C9BD958,0x33DE7202F3E1C374,0x9442113D28D8B5A0,0xE1A4ACC8A40956FD,0x111F543849C49,0x46275E46E466394F,0x451E75DA1168B58B,0x4BC019643A2AFB5F,0xAC10A69F587EB711,0x6A041280FAE40091,0x2241DFAE7D9548A8,0x9013BB6A265F,0x1F3FF329096DD1C1,0xD26E9D80D0418116,0x2D091C6B90BF5751,0x329475075B7D2257,0x29D4D296E2DC4575,0x92CA013C03AE4C25,0x1B45C6EDDBA2,0xBF10CE7722A1AC69,0xB5E11D1E3DBF741D,0xD6F7CC10E711F83A,0x73F0E323AD6D01B7,0xF02B90B47903F211,0x403A4C7FEBBBFC9F,0x1025F65E44D59,0xAC93A2A866514811,0xB38B3D0DA05135E6,0x5E1EE416D89DC1CE,0x3DF3B049721885DF,0xFF8269EF5B29D198,0xC164472D76A6C3BB,0x1EF52B16B0AF7,0x73010501C92C8D4F,0x13E977CDA821A895,0x1534EE4C7C53F76B,0x582121ED15833561,0x3676A4F21A9242B,0xDCBC9027BF85C48F,0x175B02634F8CD,0x58564637464DF314,0x27CEAE73F9836D8A,0xD62C4072B3E9D5A3,0x47CAE822F777E855,0xA58F6C7B5E43AF39,0xC1EBF5899867D24F,0x20184ABF59935,0x1646D0CA4B0B16D7,0xF4FA6B308FFAD224,0xC2D6A15F67C9AE81,0x88E05AD0B038B7C6,0x9878DA01D49AE46F,0xA068AB73BC495E8E,0x6833E0323E96,0xA46EF2C0DF52060B,0xFF70FD801CB800C5,0x6F6A015B58008B4D,0x717336FB0602ACA9,0x36ECE64B7F9E760A,0x3C6BCE38ECDDC2CB,0x1976BBE3C2323,0xD78335274E11901A,0x8EA65248D62F31F2,0x62B86631BA95DF32,0x201DC7FA0960B38,0x20F810D36C847C3B,0xC4606C63FFCE2DD2,0x1F2CD1D3E90FE,0x22E4AC84C301BA36,0x2D244CF1AB757BD7,0x1E8F3D77CE1709B4,0x5B41C4FC85AD1A97,0x267F541BA447509A,0x92A4637BB5A9591E,0x1454D698D1042,0x3A198AE0EC2E88F4,0x8665CABC7B009EF6,0x85C04D5216D11358,0x632C4A7810145F33,0x436C29D66C230B17,0xC0CF85F5DDE51A17,0x16654E3A8193E,0xD7162F3C30A001C6,0xCAC7C4D46E1C479C,0xCB91C1B4682ADF9E,0xCEEA01E6533CB01,0xC5D4F7EF442DC085,0x179C6618526CE3E8,0x8070F4783AC4,0x3192CDD1DA9668F8,0xAA311F4C8D9CDDAB,0x26EE433140CC17C1,0x89C5E712D5284CD,0x5C13DEA2FFB03967,0xABA8C766E2DFC668,0x1FE787134248F,0x8925BCFDBF25BF7E,0x67F1D9F8FB4B9312,0x1EA1CCB09EB538A7,0xE91330D143D33DFA,0xADCAD580ED3A71EB,0x7944054AE551DB7D,0x6F416A28A88A,0xB65462AA9956E85E,0x6132E06D79D5626F,0x394AE20125818D3C,0x5FA82C06AFD3A642,0x3A619194D4217DA1,0x3CBA78883DF2A412,0x15F1AC93C2051,0x31A509DC673855B3,0x9A48C72B31A50FAC,0x206D12668E7A935F,0x158DB8D58587F76A,0x607D651D7F91A9F3,0x14BA3459FB931EB6,0x13873696947AC,0x577B849454CBB4F6,0x3DB8A0A99E0B306E,0xDCF6F8192582DBC4,0x5DC2089915661BD5,0x1B9267A295DC6ADA,0xAA233AA42A9EB6F8,0xD56E9A9DE97E,0xFBA786F17CE3A13C,0xB839EC93107A564C,0x15CBFB34ADB564BF,0xE45E143E0B614912,0xFFC0F9DA37E54277,0xA990BAE8495710F6,0x7CF3D77B8DEE,0xC1304F16528B8467,0xD423F4694BA6F018,0x1AFE849AF2D576BE,0x41EF815C755D2C72,0xAC4F8B38694070B8,0x50D56A2FCD9BA669,0x1BB4237E30060,0x347C0554E44E8392,0xFBFE97E88098EA34,0xEDA0AFC1A5623E72,0xB8FAF31E3C1704C1,0xEF42CAA663DD290E,0xCB3CFC5928058B85,0x389C65F969F8,0xEEC8FCE8023EEE7D,0x5B9029B2E486F9EE,0xB8CE6E6246CD8662,0x2B2BFC7F09DB83FF,0x2FF8674588E5D9C6,0xDB3B44D1E653B173,0x17650922AE262,0xD30168CCDF8D8A1C,0xA95ED190B906F575,0x71E5252322CBC69E,0x3098900141328F2A,0x2303AC755EBE1636,0xFE3D06D0F50740A,0x12B5014EB58D6,0x76B8236FAC4A7E44,0xDDA8C2466247AEBC,0x407E65EB76839605,0x436E7143A8142BAA,0x2E39E56BE2EB57EE,0x34743111B8B37335,0x2250E74EAAF4E,0x9D9ED252A8A6FE5F,0x3AF11AC4CA5FB2,0x48F5687A5F19E7E6,0x72147050EB31B14F,0xC9B6BF533445830E,0x1F5C147903A999A9,0xECB8FEB65A8,0x712DCB7C1124AACB,0x61AF05A80673AEC4,0x73D123A384DEA768,0x1B5B97AFA1659D1,0x1394525963CE7A87,0x67E3B9B2AE6BF4C5,0xB33795491594,0x9E8DBBDE515C3AA9,0xD3C7E5038A867E2E,0x831C97670DE8F05B,0xEC305D6C1E276987,0x4D9B9087E8AD749B,0x4EA2B16C25A128C,0x13CECB1D576,0xE9B8759143C844B4,0x4787724B5D9F2DAE,0x117C739D7D33E551,0xF741C65424EE6FE8,0x9D225AB76137F7FC,0x578A7D5ADFDB6256,0xCE7156EA95D9,0xE907FF8A3EF62B96,0xB910BB8DDFAEB456,0xE4DD23F424C0FC81,0xFC66A00FC84EB749,0x106CF1E35D99F9E6,0x36257454BA9C169C,0x1B444514E6B8C,0x863DA4810C1D6ABC,0xB8FC097D2D4B5512,0xD46402C6B32FB6C8,0xC68D97D86FB2176C,0x7EAD69B1F6199019,0xA44CDAF3728026A5,0xF6B31A2BF270,0x11C2F12B710020AC,0x80AB4034E2F60F4A,0x104829A2D4A52544,0x45891F9E0A65ACF2,0xF955CC567A1A86D2,0x85CC6FFE3D011718,0x8CBF46AC4A49,0x7AEF623491062AAA,0x7AF428601BFA4FE2,0xBF152599AFA6E62F,0xEC3B83B36AC42B72,0x46DFA95019F5F487,0x24B60EE1162205B8,0x20A43DD904A51,0xC592C3C05623CDCC,0x1E815B465076EF14,0xC1171B3751C8DEFF,0xEACF90488E5A9BA3,0x78EB4748039A0BAC,0x5F61D53E5D2A70AD,0xB245790BD8FB,0xDA8FB6A069ABBA0E,0x6AEBB07FE4F716F5,0xDA77072D704EEEA6,0xDD78DAE0A4BBFC33,0xCF9C1E74CFB5B45F,0xACCA07FA439E57D1,0x10584A8D5ECEC,0x80D1A1B9DC8E0C49,0xD4C1425C506A55B1,0xE70594A0A3F4F160,0xC1F5A532354ACA62,0xA71A13C92F59727A,0xDE383FFBBE424F,0x1A7BD4AB0EF18,0xEB67A9B344194695,0xFB188F8881511B42,0x99BB3B872E844587,0x6938B1F6F947602D,0x9667C52622D22548,0x6EF59FAD94B23065,0x9B5298A3F207,0x418220ADF7A87A6B,0x92B55FAFD4D8B057,0x53F3B4DAF32FDA0F,0xC4A03D9099BBF94D,0xD1A43EF55111CC5,0x3633F6AEBE6D89FC,0x192D5127E050E,0x443D58BF31CADFF1,0x50D8F8671F961D96,0x9845F2316078A440,0xDB6CBDED339D6C69,0x1D0B0F302C327741,0xA28D839FB77C3C2B,0x95841E27514B,0xAA3F5E1CEF0B697D,0xB54E055626557407,0xC9EE962BE3B4632E,0x33E49D164FB00427,0x8EA058B1A611FCCB,0xAB587243026DC033,0x195B19A981969,0xD9D15BF9DB80293A,0xE3BC8F2C74C12C6,0xEC76C8F4200CEBC0,0xE1DECE62C2950F47,0x2577DA28AB1AC78B,0x8CAE1CB049E318F2,0x14F64792A01EC,0x20425E02F2F53363,0x67370FFD7DC903CC,0x96C219678C2826FC,0x978FB6DEFA85FB84,0xB83D390F20E04424,0x2D14DC4FC99751CF,0x1331F3414F24C,0x740FA14257345D45,0x9957D0B9D45CD2DC,0x6C282DB4C0C271AE,0x259373F62F714D92,0xD155BB3EB7D27C5D,0x4601B0EA3ECB9FB1,0x1CB2DFFDD49A6,0xB760909FA3916E6E,0xFB21744262386A3,0x113B96CB303BA1A0,0xAE499D36C68931F1,0xE463AA8CF1E8DC1F,0x81251B4C4E340B4,0x2315609F2869D,0xB36F319042F6E814,0x6421B7F4DDAF2079,0xAF781D68F9BF462D,0x2AF04838014895DC,0x8D4B094F0F4DB77A,0xE779E0037D6EF6A8,0x11037337FD0C8,0x85CD378EF948B4B8,0xFCA02F570A4B9047,0xB7A91C6A89BDCB77,0xDA289D013BCBD439,0x9E840713E21F97F2,0x9ED1F96F4CBE746D,0xB5DD1562DCEE,0x277857B9F5F27259,0xA3ABB182FA4590AE,0x86792C42525EC39E,0x563CBE81D855BCD7,0x981894E6F68B43F,0xC5F59C64E5256771,0x1C0DC1D10BF1,0x87D2FD04A9519D76,0xFAB910EC4A1EC482,0xB1DE3F593FC89293,0x8B4ABCC6AB54418D,0xE05E52B5E14C5E08,0x3D3E3BE34B357BFD,0x4DCFBEE0426C,0x4773BC055166759D,0xCBA0F8E305338A22,0x6636C3B588DDAD04,0x4A121AC1FFAD6212,0xC85F608030CD1BAD,0xF9F6FCD1296B289,0x22313AAE157AF,0x552C62667F62DE48,0xD41DC057E49115A,0xB97CFA75F9E38D25,0x1AAD77DE32FFC67A,0xE91AA9BB83F27063,0xD98C9619304EA8C,0x21D6F7066A190,0xA854183F6CBA17E,0xFC21A7A7394A05AD,0x40B75871F11C3846,0xCD28B840B72934B5,0x8B9B780729EA75AE,0x8B893B16D4FCB09A,0x129D66B8D586B,0x4D48E19BB21A4C0B,0x255CFFC9D78E9DDD,0x52E95354B0F87797,0x6983A6F0895CCFCC,0xCA764830D98D6846,0x83764223D5774C30,0x1A90A7582BCAE,0x913117D413CD2E6D,0xAAA61B04BBA78845,0xBAFF79E08A77D6AD,0x9D7457B77E900A2D,0x5A92E2AADC36E92F,0xDA8DDF71AD5E839C,0x12E48D814BF59,0x4CD294DDE764BE3B,0x900DAD3529C3C64A,0x5041DF6210F30E15,0x4C65BF5B20269B2E,0x70F9F0564F830E84,0xDE54D53F042229D9,0x1BB5793F9C856,0xB648B48A4DC0955F,0x67F77308ABA50028,0x2E225ECDB0EAAB6E,0x3320574D1E4D281E,0x420C818AFF0765EC,0xB396F0D5A481F31B,0x835D0EDD552A,0xC90B2F3451266BC1,0x5D0C60364542D92D,0xB9CB80309EF6DD7,0xCD3753A62A9904E5,0xF27744A488E8995B,0x3CD07DB4F260D1FD,0x76DF7F499956,0x428CA25C13E9C311,0xB8F3F150D6E42A00,0x3C3CCF91BF73E25F,0x96D304F3B573E459,0x965B5DAE7EDB64,0xDD62F21AF2CEF962,0x16C51150B147F,0x92454ADEC8A1DD07,0x6DDDDC5C6FEF8914,0xD345A481030F91A5,0xE6E21308A3C2E142,0xBE01B09DA419CA56,0x38DA7C81E9E067EB,0x1722505C61C52,0x67449C46A016331C,0x224C5474B6F8E972,0xAF57EDAF79F073E3,0x2CEE48392904DDD2,0x6B33C0C7E3400D79,0x86CEBE5366B636E3,0x1015CED6E3D96,0xAF3586CF8EDE8AFC,0xA6FEC3DAEA8858DD,0xFB5CD1131375D56D,0x921DD2D8FF873CA8,0x3B98C5F5C2892702,0xD42996623D59C597,0xFEA749A1BEBE,0x3FA59CD4D3A20BE5,0x3F7940B13BC95DCF,0x57CEB2C2C707EBC3,0xE05274FB0DEC5DA0,0x29631725544A4AB,0x428BD889919D6302,0x1D0034A3C6B84,0xCCA1D858CBB6FA47,0x7751FCE30E1AE52E,0xD89C41368F7AE249,0x8A18F5102B3F8973,0x495D9933D4A3B21F,0x8F69A3DBAAA812B9,0x11ABA3F9C8E83,0xCC3131F049B00200,0x13203AC9FD0A2A49,0xA965D73CF9AB76,0x4B24792423172FF4,0x6044536491E5697F,0x453CE5EE76C6B556,0xC517FE0CFE0B,0x869B5492E1B118E5,0x5D99A5B386CD6ECB,0xEA235AB4F9D1CD49,0xBD9C647630654E64,0x2A819F227BC4B45A,0xD62B1FCCF76A993,0xF431B425427,0xE9A31DA13F341C2B,0x6BD02B17CCEEBFF4,0x38491141F0AC3AD4,0xEAA0A80E882A310A,0xFB0C06E1FF3CDD56,0x9D8888B642EDB483,0x9C135300BA92,0x2185C02047751FCF,0x8DEBB18A5DB406FB,0x31425A6DAEB6C4B,0x222A4F80CBFFBDF2,0xF8E7D78540D23416,0x7CC495160E718BD0,0x207908B1E1912,0x694E045EB19A0962,0x993AAEF3FCA8F5B7,0xAADC8B7768C16F3C,0xC35EAD601E0D10B2,0xF9E0CD8A5CAB3E47,0xC1D626AF17A8899A,0xE9F4A0418991,0xB647C7ABAAC8B49E,0x1DFE09978C7F6D97,0x52A3B1448F4A7977,0xD1F7385BD785F28F,0x2E16EEEB893281A1,0x898EBDEE1BDF9936,0x1317BFB10392B,0x3C9137905622C07D,0x674C10210C28E8EB,0x39DC7D3C840A473B,0xCDDE0C65F1FD153C,0xF0B604009FD5F540,0xF12F7967DCD8B32E,0xE1E0B26AAA54,0xE3971738F3F543BD,0xF66B58A78C2F84CE,0xCEA27500018FB501,0x96AF6DC88BE595A3,0x1F665AD45EAAA598,0x2E442426F22C3465,0xF6447D10E692,0xCFAC850B88F2EE6B,0xE5149943A94B6D86,0x5F161FCAED3D68F3,0xA4B8437A2C59B019,0x9CD5076385FF36D5,0x382AB02F21F32D9E,0x105F294B8B1EB,0xE3716E262F25B84B,0x610AE02D0437B63,0x6A9F4549668B7682,0x751E9D1723AD8D06,0x9ECF9442C1C3F2F6,0xCE6B82C9A1784B7B,0x1071D2991F0FD,0xFC52C76FF2E37753,0x7BB3DE9C57FAF10F,0xA72DE46DA2DC8075,0xBE5C789D014000DF,0x774A978B9F2A13B1,0x2A69DA1DF98D485B,0x137F01B0AB8E0,0x8B0CF4D812C1D7E0,0xBC658AD5D8356473,0x1C6D7E562456569C,0x128989A252C3956B,0xD17ED1255B113B10,0x80F7C0186D6B765C,0x1FDB866B1BAFB,0xA190593B4EE9182A,0x245A33F8A1E3D97E,0x209CAE71A7424CAB,0xCE8F72220E4CB52,0xB88859A309648D3F,0xBE0CFAE14975507F,0x1E46936B19009,0xBDCBA527CE6B8413,0x5B1D23B9AD0F44F4,0xCB54A742841405C7,0x98006C059320B118,0x75D8491111CDEBDA,0x4FEA0F57E5D7D97E,0x11FD00B648E54,0xE7D4809079565757,0x23DC253E0911A698,0x1437E22AB6A3E7B1,0x6DF1C259B20C7637,0x4C03904AE34B3D69,0xD7DD4C03E321DBB5,0xF16BF181C8B1,0xC884A57FBE9ADFC8,0xCB5874F3418874A1,0xFA5FF16489EA9FD7,0xE9AB315040CD40D9,0x99C3D6487099E9F3,0xBD50404CA678DC56,0x4C7BC778D26D,0x74DD972AF3E6DC8E,0x4E0D4E0DD0900E82,0xA70C400743BA5C82,0xE3A398CD794ECC06,0xC01D5C2BBAB7CCCC,0x41CAB3D1CFC1F17F,0x1BF9D20BE8DA8,0x966696094743BB9C,0xDD486486099A8AAD,0x742BAE9E6BFCC5B7,0x39A3FE82E19F8A52,0xE59212BC67F163C8,0x6A33DA5236B841A6,0x5B455D4C57B4,0xE546E4477EB9878A,0x43A8D6B631BA776B,0x6ED8BC769375F0C9,0x1C99454B5B7122CD,0xFC17BAE82A002161,0x8C11BFEEAF73B2A7,0x180A993129DA6,0xAA4E3F8B8AB80F4B,0x445DD58738644348,0xDF93E2F1164760CE,0x57F5D539862E5210,0xDFCC200704A3E4EB,0x1DAD8D019BEABECC,0x1B7A804C3F2E0,0x8C18CC1D904DC445,0x3FE21169F37F3EC8,0x711F1E5E5E303A1F,0x203D5F13ED96EF57,0x20396CFDAD6DF82B,0xFE9BE047EE9001D6,0x212AB3D848CB9,0x5F3768C526A87085,0xF8F198E509C57474,0xB5F0A57E9D0D7FAA,0x3C6096ACE60E7EA4,0xEB1B73D4296DD246,0xBC025A0DEFA13AA2,0x6CF96BBC5B1E,0x1C8D08F6C98071FB,0x34DEFCCBD835BDD9,0x9B9A90D4754B45B1,0x234552EE248E795,0x30F2E4BCDF275A57,0x6A8CF82FDFAFEBD9,0x2035CB20FC178,0x3F3E18C03B26E0E7,0xF4F2E77BD78633B3,0x181DF7C49426E87A,0xFCE5135CA0289A9A,0x87427B8C76ECF4AB,0xF28DB6926AB2A3E7,0xC5CD6976B23B,0xD8118E6ACE18D4B0,0xDAC080643AB50196,0x615E30AFBC4BC2C,0xB5F2A8D589020481,0x142B9595BF689B17,0x4607C67F1F3A1B8D,0x16C6440B4AB39,0xCDBBAE2AA8831CA9,0xABE1F0C11ED47671,0xA337F8DD2D900D07,0xABFBB98B1D69D7D0,0x35D23945C5EFBD59,0xA2714EA242E013DD,0x1FA68D419A07C,0xD622CD7D81CD8101,0xFC1EB8478FCA0425,0x3E782B95286051F5,0x434CDCD147C0D343,0x95622D3291CDF047,0x72EE497F1E713EA0,0x215B42A1F8C66,0x20838C756C04A60B,0xD8C7906FAD7278A7,0x2DEE65F4267D5F21,0x5DFF0B7EC706E682,0x1BCB77F2E21D7CA1,0xEEA67E8C8FFF675C,0x85445654D95A,0x708C97B35DC0B30E,0x856F27F0C7B02698,0xED9E9993E679A27C,0x56D39ABE70BE6DC2,0x8D5038314B6A6E6,0x78A652E0E4ACB558,0xBEBD767678D3,0x4BB952A9DCD0B41B,0x1B2DFC9E144DECEC,0xD6EA616D4D89F413,0x4C14FE95B41CE7F2,0xFA237EB1783714CF,0xC73AFAD601ED1FFB,0x205652ABE3E04,0x7EF73A2A48665575,0xDB30EBC666E2E20E,0xF54439761F83D8FC,0x9FEC87C2BE559840,0x3AAE150F120EAEE3,0x1309C3708A93A125,0x1633B491C46DF,0x1359FBD9486B3D15,0xEFC5C9516810418,0x9AEF3CD0BE31BF0B,0x333B9E1F0E2F771E,0xF3F506802AAE748A,0x706DA13191D6C76D,0x636D58C25E2,0x41CDFBBE8A65F209,0x574D1449657D21A9,0x81C59647116457B0,0x110E38CD7E6386BF,0xFF8E0D93125AF60B,0xAE30186BF3D1FA32,0x8CD500951EB1,0xB32936A2BF9BE1AD,0xE5D1716EE811D7C5,0xAB15964DABB82F2E,0x52D2F98C449059BD,0x242EC45FD44ABECD,0xA0AFE7520548DAF8,0x165AFA3BE7B7D,0xD3776F1D0209FE64,0x2B925D03A9482AB7,0x4662D2F42BB1812E,0xBAA5E56593AB3055,0x7545D79D2D7C473B,0xE98AA8D2892D582A,0x15333406F9F87,0xF7E7C2613FCE2B49,0xE9F1B696F3584C98,0xFFB295E75AAFBBF5,0xD4E6ED907BBE9A0F,0xF9A0DD71ADDA4D2C,0x1BD249C63E36AF6C,0x19EEA131BE37C,0x8480BCB226B6FFE,0x63DDB72DCFC65ED,0x6BCC5AD62D988E1D,0x2FEBF0F62AA509AE,0x2C15433EAA5F6972,0x951AE6A141062506,0xE231460E90F3,0x2E0856A52B22486D,0xC2D4B1072B186F9E,0x2A3EF5DCA9E33E56,0x53372BB1C0AD7BCC,0x5BDB230FF5311D7A,0xE6D6CDF5F0C56372,0x220ADF7DA2E5F,0x40AB3A624F7DACFD,0x6DB27BDF03B178BF,0x2AAA0792EFA4801B,0x4583CF951804F804,0xBAFB1F415C38B671,0xD53A4D262C5547C1,0xE5661DFE34CA,0x563391139C76871A,0xD2586D57ABB8CB25,0xFB963C05513A78FC,0x7326072AD1EE1836,0xA131647BFDADD34B,0x9670E7DFEB921A9D,0x1D9D7AA5A931,0x10B9397CB85B31A2,0xD8A4D7CB51F3099E,0x83B1874B75CC4D91,0x2A1CF139B441D72,0x9F0CC6517F8EFA71,0xAB6F6185C7264E9C,0xF1CC75A08E6D,0xEBBE92ACDF3E7833,0x9B3378D13DF17792,0xD7AA0C8943EE19AA,0xDED5787631BA9C7D,0x7026083FE5E3276D,0xD6217768EBE676EA,0x1A6C299D76D85,0xE065EC83C74E16C,0x2F41AFDF4E22CC43,0x43DEDB3658BB85C8,0x5EE1E9C8644A8E5E,0x217C7917C7624860,0xCB6A7F1A786BDBAD,0x701DF96AE336,0x75FD2ABF6F932376,0xA22F061CA117762A,0xEB9DFA4FB50F0BD9,0xC5008D646FC03D3E,0xA9EE540A32ABCF78,0xC2BAAAE47BB1FC52,0x377002CA63D7,0xC160A75F28BA4EBD,0x3774CB7265DAB49B,0x6F80D514AFE8372,0xE8266B085164CC14,0x743F1A43F381492E,0xB78B2A176BAF8D34,0x1BD9DA7F0191,0xF74D083A33C05210,0x5E735A23499B2D1E,0xA7A3093FB20EEC4A,0xD9EECB2669E367C1,0xCC257E05DAFBE0FC,0xB48E2F6643E60440,0xB517FE161728,0x5352D687D2510AB7,0x300AD3D04C8E512F,0x8FA84C8E19C739A9,0xEE94FED2A789848D,0xA2A9A351FD54B74B,0x6F41241AEFB06501,0x20EEEE38ABF8D,0x85F04CC4C3DDAFFE,0xE779E846BA97030,0xEF30088BBD7B736F,0xF61C162727C3A0D,0xD5C4F2BBB32502F8,0x47A51EB186423207,0x13CB6DC7A4A92,0xA9990B1F8E785ECB,0xF417D9B72F52BD63,0x6F52309FCA8F7FFA,0xA07C760077BB010F,0xD0AE526AB7E4CB8A,0x4B69624C4046813A,0xCCA19F8A33DE,0x6FEF289703DB3567,0x2E32B7D31DC712BD,0xF334BBF7FB47AC30,0x3E5A2A7CA4175191,0xC748BFC1E8A65069,0x1B2F4D376F84070,0x1780FE5F39E8E,0x9F364488A1A492C1,0x2AC455DD2E82A729,0xDA71DCF3B9FEC76C,0x147586E8DD870127,0x6FD5F5BC988AD56B,0x211DAA57A535A155,0x35EB2666B71C,0xEAD4B628B1EABDE0,0x2A524207E671E5F0,0xA79D67AD76873C3B,0xAEC934BD282DB79A,0x5217D197504F56D8,0x8E9222DC1AB2BF90,0x195F02B111320,0x6B1D3DF21FEE0632,0xB9E857421D11D0A7,0x5D713FCCF68FF85A,0x793D265E2A8C8E1,0x8FB7E7F11B8E01E9,0x9F6E444C6D276AA7,0x17EFE9E8649E8,0xF0BA71AAE2B489A4,0x21C1EB478277DAAB,0xE34C90CBF6069D96,0x4BF72DBE0DCFE7B0,0x4F03208BE71DF98D,0x4DC356E22E98D230,0x1CD4425C8F592,0x17A12AB328661F1C,0x7524C1B2FE8E041B,0xE5DF0C1E4A03A46E,0xE203536BB31E7F12,0x4F7D0C6F6762CEBF,0xB02DFFF2480A0915,0x16E4E24E1126A,0x3E0AB6ED4DBB93CF,0xDF215197477509C7,0x1BD87127AA60EAE9,0x71632196C386A436,0x679800CD6928F3C,0xDF0BD050AB99014E,0x55052B731B61,0x428FDABF22A4140C,0x72D7C5E0BFAE62FB,0x58AA6CDC7BB7259D,0x9BCB9CD069CC97D3,0x91E15CB7CBCA26D4,0xF3734067A644BDE7,0x1199F5FC7154D,0x8CADC685B14C9CB8,0xBBF6AA8E7C08D2C1,0xAC44559034D27E52,0x2961A3197B5356BD,0xFA7EBE75B306D670,0x4773929CE348DB78,0x13AB6F6565F0F,0x41C77BA1635BA62,0x66906ECBB79F1D69,0x2A2FAC37C37665E5,0x4C7424CBBCB37C59,0x90759CF374112CF6,0x68C03241FBDAAD94,0x11B413D0370D5,0xEA7E00851C1420C,0x92A26D03190ECF62,0x3D644DE05B33F8AD,0xA4B55631C7367EF4,0x8B874C7AD90FF68F,0x82B3AD9C85EEC970,0x51F160A5904C,0xA1CED6997E1E616D,0xF0194B855FC761AA,0xC01492180ED0C6D1,0x9034A0993FDD7A15,0x6A616F4BE6FD11F6,0x26C2942418A59A43,0x1DBE21746B966,0x3B38B844BC86F9B8,0x8EF644290757B5FD,0x69EC39FD1B796383,0xE7CFCC01776B69A5,0x5E39E55B235C568E,0x23BFA891A7EFE1A5,0x230DEEC7935B9,0xDCFF082AF0485B6D,0xA769FB9A95204517,0x54CD3B2A0279E406,0xE91203B401E9BC35,0x2A9913FE5C749ACD,0xDBEC6C62DE1581BD,0x6D5845A1880C,0x742C,0x0,0x0,0xB90FF404FC000000,0xD801A4FB559FACD4,0xE93254545F77410C,0xECEEA7BD2EDA,0x668D97A1773C38AC,0x897D73488670D91D,0x80F4C72FCB871CFF,0xFB73B23FE612E8EA,0x49F239AD9D934FA6,0xA632CC678DD7E2FC,0x1F37432BB4B4A,0x3B38B844BC861160,0x8EF644290757B5FD,0x69EC39FD1B796383,0x75AFE3F77F6B69A5,0xAE369B64781CFCE5,0x515AFFE8E9015F8B,0x57019CFED803,0x2B5D661005106DFB,0xD22CC3335117F5B0,0xEC3C1E1DD7DDFFCA,0xBC17F58C1706A6CA,0xA57A5D8602F5C220,0xB93C02ADCC5017A5,0x1E2628C83347C,0x0,0x0,0x0,0x0,0x0,0x0,0x0 }; #endif #endif #endif // This is for \ell=3 case. Note: Two different cases must be handled: w divides e, and not. #if defined(COMPRESSED_TABLES) #if defined(ELL3_FULL_SIGNED) #if (W_3 == 3) const uint64_t *ph3_T = {0}; const uint64_t ph3_T1[DLEN_3*(ELL3_W>>1)*2*NWORDS64_FIELD] = { 0x37ED7978F7323982,0x4936C76D51F21F5,0x16050C18A973EE88,0x72F7BF23AB9375D3,0x47C989C9C28BA7B6,0xDF611D74933C983D,0x1BC0CBF2A04F4,0x8A0EAC4B85F5303,0xB686A96CB86BBC16,0x8F36EBD4A443E09C,0x948222B2B2D156F6,0x8A66ACFAE2CCD48B,0x98DEEDA161F27B50,0x103F846A96DB5,0x694F92DFDA192A6A,0x53DB650F045FBB94,0x914D7DD5D24B8A7D,0x332A4681B4537855,0x77B22ED3C97AA0A8,0x29F51E43F01EEBF0,0x2BE99CC2EA3F,0x50AADD31483272BD,0xEF71AFF18F5CD2A7,0x2718B25973322EE9,0x4AA70233D7135E34,0x18E840E9D3D8137D,0xCC10E80D37099E81,0x611A286EE0D1,0xA9354A35B269FF9F,0x6FD04B074DF96AF6,0xC3106A5031DDC3E7,0x96D97DB085DE52CB,0x52E69CD3E0656B33,0x413B47B6FD5C630A,0x99B4D7906FA4,0x4773AACD7C006827,0x6E0D9C18E227CEB2,0x970AA29DDA4FC705,0x7DB2A73DC99EB,0x503DA274C8A57B9C,0x456519435726C6BD,0x1269589CECCC9,0xF03E85B4AA764A,0xD6A2D3F58CFCB874,0x92DA0409FD01266B,0xADCC6564A5D4F6F7,0xC02F15A74EC243E8,0x7730B32C01DE2F53,0x7E846A2516F7,0xE133F07C2ED3E1D8,0xB4326C2931139F04,0x6A51505413E95C84,0x736ACF58BEEF524F,0x538B2008AF8272BD,0x4BA606901671E978,0x177FF06B895C4,0xFDC3EBCDD657CD6E,0xA247E9F561464943,0x3C1009CB51346175,0xF002A2B6FA005AEF,0xEDDF64F46D2A177C,0x83518EC200172743,0xCCB04068DD44,0x45C5EF8ED846E9A1,0xC594E2935A404A15,0xF1FA86D9065998F9,0x3177F334A98AB972,0x683137B06187B6C5,0x763E818699AF9A82,0x25CDBC8D6DE3,0x27AE2A62883696B6,0x591D09EF41B582E3,0xAA5B4530E1582194,0x99CCB2BCAD4E2F47,0xAF7B2BBC1BFAEF2A,0xD2D3BCB820C00A6B,0x184CF997B843D,0xD149B9FF09F549CC,0xE7CFAEAB0F338F18,0x9EA6958AE87055F5,0x408E4C22C8263BC8,0x17E57438EEDDC7DB,0xD58BB12D4423F92F,0x1D7D0C433AD30,0xC7DCBE1AEC6D7C2D,0x8F6FB8EDACEED8A3,0xA92B7BA065B357F1,0xF6A92D93E4F369B4,0xD0B517306D4B0BAF,0xF53ABA5B52BEFB27,0xC56412AA646B,0x4B826A4831175010,0x67D08097812EF865,0x1950DA79789DA00D,0xED0B99011BB1215C,0x5E5B32AC7AE8C701,0x561D7DE509792047,0x1C21010F2BCCF,0xF057F3BC88DF9B21,0x8B8EE060C16EE48F,0x2FDAC5C9B23B3ECB,0x6AAEE97E18D02869,0x5EF58C8866A37082,0x9D42D0D7D776AAF7,0x9106AA9E5BF6,0x7F7F72CA5B66613B,0x49FF121C8796E2,0x446921D8A9193C4D,0xC46710A67EF0094C,0xEFEA22E111B76E16,0x2132DDE3208096C8,0x158537695C848,0xC9B7E0C49271E5E6,0x9232D78410486561,0x15CB972066F892E8,0xA221C57C5BC43FDF,0x3CD91966B44E4005,0x4313785071F6AAD4,0xCC4419E3E98C,0x83EF71190034677F,0xB73C0DA961FBF58C,0x2D2FA4D06846EF77,0x249169E3A3B98786,0xBC1076683BEB81A4,0x45D0E9EB5D1324FE,0x627AFD457D2E,0xA2D211FD38E81A4E,0xE74DF34D9BDAAD83,0xFA9276E47ABCF316,0xE306ACDDA72C24FA,0x5B68BF41E7F5BF84,0x322D98FD53020106,0x8902F84E1521,0x8C44089102E680E8,0x4CE3AD9309B0D800,0xE2AFBFE63C21F2F6,0x51D7493A7E0E5F24,0x5F4EBD5D1CCA229E,0x6B49826312FF74D8,0x91AB97F84071,0xC363D921AA5766B4,0x5F78F0E41B0F5359,0x4A43F68C67C5BCE2,0xFEAC89F6BF98C204,0x9D7AC06DBF4FC7B4,0x26989B3B2D44C774,0x1B6C805550CB5,0xD253F7739CCDB075,0x8318538FAD5D33A2,0xDBF3CCADFDE3674E,0xC6773568F794E12D,0xD6A71F2C69C17A5B,0x53FD7701967BFE2A,0x5CB62ADF7B66,0xF1876400E4AEBCEC,0xDB7D4068365A6399,0x8D2B3C07E3AA1D93,0xB763B70480DB937E,0x6B209F9E89C1C38E,0x99F233803462481C,0x1703585A8F941,0x53651286AF21B7BD,0xB5DC8DE712CB9D2B,0x8C8653F83462375E,0xA13993C7C4E915F2,0x964055D5E5966731,0x357C020389033773,0xCC534E50DED,0xFF72F3C9C8A650F0,0xCE49F4C2868EF761,0x458103FE62D5D7EC,0x5EDF0259B91D5E5F,0x1D08EB6816BD60E5,0xA946F4C5D79C5C1B,0x223E0CC250BC,0x2B51A049820E158D,0xB0AE40314ADDBCED,0x7ADA8CE98928AE66,0x54CB91E1C6E32237,0xC5BA6BBE489D3E92,0xC61076FBB6204480,0x16725A031428C,0x19CC0BB9E81D0F2D,0xC74613BF54DB4817,0x372D926DB39C3CDF,0x2CE188DAAE451706,0x2E9D1F86190D2D03,0x7AF6FEBA83E7E98,0x1239E39C886C9,0x18016CB681973207,0xFF2EEE394C8FA492,0x7015BF66C6DA1CB8,0x682A804E6C62CDBA,0x9ADB8BA7AC3527D2,0x5CD6BD2C7F57E672,0x1F7FCBBEAF368,0xC9615E77B9A331CD,0x796546F9415693B6,0x49E2874740F92975,0xEEF96C473880186C,0x6BED96B40F3F4146,0x6F0183BCE2AC1B17,0x22050F405E829,0x65707E635ECB4E9D,0x8B6CB4F957CB894B,0xA548A3A39C9F6A88,0x4FBE409960FB15CB,0x2122ACF1EF2316A0,0xF5A6FB61350D3FD4,0x133795A80A6D8,0x4CB72711CA850294,0xC211F90452DE238A,0x80E6D14309CB28FA,0xA30C6A97C9FF1E8A,0x2430A4CF8D66F69C,0x80AFE7DB642FD042,0x6868939979C,0x459FD7E2EF627373,0xBCE705FA699DA4ED,0x361BA49E03059B10,0xBA3AE86694E7AFC9,0xAECCF50BB95E2BD4,0xBD9B1FD6D6AFC93C,0x144E505989609,0xE8C5A33992BDE5A,0x1E43F6F8ADC4687B,0xCEB1842C9087709B,0xEDB68CD7E5AD47E,0x6EE1502AB55169CE,0xA8AB5BF4CF196E9F,0xB16B329F570B,0xBBD392B020E491FD,0x94E0A3821045F058,0x4507C63B48F72909,0x7F06CB6D6E81C97D,0x8F1BC7547C099C62,0xA9EE5E02C3A26F1B,0x17005DFFDF107,0xDDE3DB271B9A4338,0xA5FD982FD0B4AF0,0xE31686BEC642E12E,0x7A80DB5D4B32EC9,0xC5151C20FB123F75,0x8252EA8E4768B901,0x1ACFDC9EBFDAC,0xF9F03DC5A7959190,0xE5758D844E7AE926,0x8407306CBE092609,0xB6FF0103DFC5E9E9,0xA4B827DEE62D3AF0,0xC358FDC46FE676A2,0x31ACEF775F8B,0x3AEE9AFA0A75690F,0xF727CFAF23834AF1,0x4D60704B124B5887,0x8F2C54DCA0B62387,0xC199B08D1BF36133,0xC8497DF8D26F0A3A,0x6EDF8A6FF561,0xE3DC50CC98B2DB44,0xEE6D280D20D7AF8A,0xAB02DF10F3EB2C6,0xF45C684A268969C6,0x64609DE2083F62A7,0xD5F322894E61F36F,0x163A65A090CEF,0xBE1D168EAF5630DA,0xDBE8169263A15123,0xB93503EF4F1EA8C3,0x52200F4FD9684DFE,0x133D324EF92F3352,0xBA8FCD8662861855,0x1F6D78A773767,0x9C82B7C999E240A4,0x1220E79AAC60F412,0x2F696A5BE3B50E85,0xB35D254F7941B586,0xC98A7E825C600FF4,0x2984553C9C9C35E7,0x70D98ABB8FF9,0x3BF03B0B965023B1,0x19516B395D8DA1F2,0x7464C1F243A64333,0x42B77F8AA757596B,0xF4DEA8A5A296386F,0x907D14439E00BC3A,0x1FE7146A8996B,0xD7A71267F37A1505,0x2AF0E82C15DF8276,0x52B00A1A190E239A,0xF6046122222A2E85,0xABCF14323CBA69CB,0x9D196AF9DC177905,0x50E3901669FC,0xCF6D9E37ACA7FC41,0xE3BB6F4674DA80C7,0xDAAC5E9A0A44C2ED,0x7D5307AB1434786E,0x622342575645CD0F,0xE28C64BD43BFED4,0xB39968FC5CFB,0x938BBBEF5B9D2EDC,0x364AD80C20AFC700,0xEE2A7B39C1AC7E9A,0x66A182254E550751,0xD29EA3C001982C8B,0xBB51E4F503A3C906,0x1958524411AFC,0xE8428B7A729110B9,0x2E8097378786016D,0x2F0328778BBE0ADE,0xB14FC0435B4DB89A,0x772113481A7CC660,0x986D7F22ACF37EF6,0x11737B1BC4D2D,0x355E1DF04317F5A6,0x5CD277CA467DD1BF,0x4F6EC2BDBFDB407F,0x15CCF1A664666C48,0x5CCBA353639CB77C,0x91ACF89E2581873F,0x4580EE384271,0x41E94A2CCE86F736,0x4C8C15CF21972171,0xE8E30CEEA70D832F,0x3568E1E0B9408B85,0x6137CC06ECFA3C39,0xF1874FAC5763CA25,0x6B28FE92E335,0x4079F2E96D4C37A,0xADEFBF0D4E81AA76,0x73C93F65C7AC3C1A,0xC413FEA1F936A2DC,0x898653899E3635C6,0x86CFE3C4D9012325,0x52C45C688B16,0xA463DE01D72C1A70,0x29A864C11EBC266,0xFDF2F62E382A27C8,0xCADBE05B2D3FC1D2,0x7BCADE04573915AD,0x9B4C5206CD9A7A56,0x13CAF24B79DA6,0x7A4F90F0CDF4AA5C,0x60213E8E82C6A788,0x4C6A474E2FC805FC,0xB976FD938065427E,0x4EF436FF608A0849,0x51833803AEA9329,0x654F30F79524,0x96EFB0DF2DFE2C8E,0x3A06FBB27B9EF0A5,0x14E37AC90144C0C7,0x464DD0DA0ABBD703,0xAE734F2423D4926A,0x1422C19B36EA6180,0x1098DC36CC91D,0x3700F973B254499A,0xBB004B4BF0D3B116,0x90B567FE1A266551,0xA2FBF99C37634018,0xF758C30D975543F6,0xD0D48AC9501A4C71,0xB9AD678DBDD9,0x99718695CF56D1F3,0xFA0CF4A65E2853B,0x6BFC00CE66341DB5,0x9A1FD3D8BDE2168E,0xA66312AB6D1D1429,0xC4F6C545D87F3AB7,0x684ED280FF51,0xBB4C6122596AAFB4,0x9975728556A3FC4,0xF737FEBEFB08A1B9,0xE2179CF8F34CA308,0x1F733D8647D99B33,0x8F161334971B8D14,0x302DCAACE7F5,0xE4E770D3A1998E55,0xE50F7A43CB8F3B7,0xCC0EE4F49DEE0608,0x696621C1C702829,0xEAAF7372E46AD1B1,0x6A697C9793AE126C,0xDCD786C808DD,0x62BC51904C27EC96,0x98659E35ED3CA154,0xCBEE68DBA5AEF1A9,0x84A6828DBE8486AD,0xB62C8CEBDA58823E,0xC0505E7F1EF6C439,0x3E7290CF7FA3,0x259120C9EABD2A04,0x296350D8CC35E881,0x86F68443CA640C6F,0xA973BF6907A3D5D2,0x14037612F335A0E5,0xD8D2268298E642DF,0xD8266EEAE590,0x5249141997855FB9,0x9AC7EE090E433A1,0xED35F7C7E9A6E973,0x436D4670CC885A0C,0xEAE89063A007DE81,0x60485A975654EE3E,0x8A62063C2F5C,0x20D3CA8D414DAB5E,0xF0258C41FC6BBB86,0x43433C374F87A54E,0x4774088F8B175EE5,0x213EA6CCF17658C1,0x227216743DCDE7C,0x155CE7D303C44,0xFD853D5D19CF4854,0x392508A64BDD3A54,0x894B13B458027F1D,0x8CA48D136C13B85B,0x5731520BD0C4AA8A,0x52CAA13C82DBE553,0x68EB8E1B6529,0xF2CD11D60502840C,0x2F2239288190E77E,0xC54FB6F43DDEE33,0x8432E6AB6C48DD03,0xBC1C5C175CC8B07C,0xBA9377935A979713,0xAD160C55FE9E,0xE5D9A636DB5A8277,0x3B299FD3A9E82550,0x3F160DC2C89EC1F3,0x423C8BE2392F9BC5,0x3367279C42919FF,0x4ADF68450E4ACBCC,0x12346785644F9,0xD68C754289408DC,0x51DAAB92F41618D0,0x64D36752180AB1C3,0x8B5ED8FBD1A334CF,0x40F949620608B5AD,0x58C02DDCF3E3CCD4,0x16309E490B72,0xB9174D2B0DA5B62E,0x29BF6AA15EF6BA92,0x5547D71A78FF4258,0xDABA5F729726FC62,0xD48DF9C370793FAB,0x244C37BE2D9550A8,0x1608063A660F3,0x2454EB43EAEDD43F,0x3C7F0615382A914D,0x1D3B977EE568FE40,0x2433C72B68D09881,0x5D90C300127B5FF8,0x35B5BFA968DFA206,0x16B62FBFB5093,0x1C28CD2BEBC85AAD,0x1EA92D8C711B11F9,0xF1441C840CFEDDDA,0x91F3632F3411D040,0x82CDC128C068940E,0x3ED528A97689B92,0x103D7C12C5935,0x9F4122BEA9516475,0x38FDEC71E35AC118,0x5637F04F82B9D34A,0x618C456E7AFF7415,0xD228B1403859497A,0x972F88F825FFFF45,0x3599BD2EBDE7,0x451721B7E01921AF,0x1324771B92077467,0x7987B70AFA46143A,0x207658160847F295,0x45AAE41A8EF23AB5,0xA3404D8312AAC63A,0x22DE6B7333E2B,0x8ADDEE86131054D7,0xE97A6178E6D79720,0x8EA7ABCFD67A1D62,0x2D22A45E719681C0,0x72AFBB8AE11C6C0A,0x3CA2C1D95465587A,0x1E3C708CF09EF,0xA2A1EAEF86053BA1,0xFD69E28F3A2E9CA8,0xFD6031FC1739E60C,0xBEDF49AE806DE468,0x506A2982151B920C,0x5BC815D2DD99C568,0x2DB77C0FCB84,0x670B253E6A9CAC62,0xC65C04F49DCDFBF7,0xBC23E4CB94E6E9A,0xA9CB01141278AAC9,0x1A523BEEF1D3AD67,0x47700A8558454256,0xFF2A84448B0,0x5AAA8BD39B7CB73E,0xDDEBED4AE2361213,0x30B66468B222DC24,0x605D92C7BC8BB2DB,0x8835E0F870F0AFFA,0x2A778A5FA977EF15,0x20050B6EE9C8,0x25CEED71C603C446,0x98486A1D16B12A09,0xECBC943445FAE29D,0x819990A109E73276,0x4EF0DE8C559A5DF3,0x3C7F22A2234AA455,0x496F3FC1AA49,0x8927A98470215420,0x6EC8A85311A84229,0x247F01F36031D3BF,0x354AE03DDB636697,0xF2D8C34BA94295B7,0xBCC65F1B5CC8D5A4,0x94F581B780BF,0x45DD1EF3E0779BEE,0xBA84378054966FD9,0x81D263C16CCECBC9,0xA77B15A2F2171E68,0xC46434F71B72F2E7,0x77AB7265E70D339E,0x56978FE3DA58,0x5179D2522980E2E9,0x2391C1952821720A,0x37BBA3B0E6699D9F,0x3D4937335A8E7160,0xE3C4F8CDDD171F4B,0xE1F519FC408928A4,0x597AEA1A835E,0x3E1E36EB2B476825,0xC0AD39C5CA941EF4,0xDC84844D2A04A14F,0x1630CA91B9EA7F6E,0xA408CD429FD64C5E,0xAAF1E240CA528C20,0xD81C2DEACC48,0x91E1900B00E86936,0x7BE0E846D5CE97FF,0x721E690F017839F,0x3B4039E977C30C12,0xA3971F3A83BA6BC5,0xDF15512A4D70A592,0x19E62F93D4F22,0xE43EC119B8E89DFB,0x4DEB15DD1B9A0AB2,0x64829D8F572AD605,0x940936CCC608F92C,0x51F47E94B0861D24,0x492F7EBEAD3CCE12,0x1FC3876F37613,0x25C4A6F996DC1323,0x680A8A80AB9132FE,0x8E3C791DEB467E64,0x428699677462FC06,0x2D843757B703FADA,0x51B28D04B3643CFD,0x1850339234F22,0x17A3112EF9C267C8,0x5BEF4AEC399A35F2,0xD9D791D66F35CD4B,0x4BFE5DA02ADD348B,0xC235D0C6A8BAB24B,0xFF93B782B6B7B3FA,0x156430C23B60D,0xB6C4FCDE05363EFB,0x332D1402A997931B,0x580795E607F457DB,0x37483F148577486A,0x9EBCBF2A142B5717,0x1FB805332A8E4DA7,0x1DAAE25FF7308,0xD1D273C0403DE823,0x781B73D97BB67E1,0x51F4D81C1E0AC129,0x9F339FE1A254FC7,0xB2996EE412AC0B92,0x1760A8A6E2FE0990,0xFBFC00C9B60D,0x4C91E4B4B33A0C23,0xFC39A597CC1E04FD,0xA7F7658285DB1A43,0x2A2B5772E3B3162D,0x1E4A550641B5E3FE,0x33C3B321B9B99780,0x17D6DE7225983,0xECA480ACB43BCC1E,0xDD01AD6A9ED2785,0x92828D3EEABD6021,0x11DB3994B9A081A5,0x3984BA2D4AC653DF,0x44335D2844147169,0x9B7D558EC564,0x1F838D429EA62CC4,0x4A0D87DEEFC95AE6,0x4F8B5D39F65C7140,0x6AF51F2CF4EB68FB,0x4798FE25308722C4,0x3677CEA9F214ADF7,0x4A559E293A03,0x97E9229297FA5A1A,0x87CE5DF0DA35988F,0xD09A7A325EF512CD,0x97FB235B1CC676D,0x65DD05A89495B0BE,0x20677EF46C7104B2,0x24B8A8A7B794,0x3E8B19B1784E40DC,0xC77EE84ED7CD2798,0x129A212EDE8B5FCF,0xDC03C11C78A5FC0,0xC0F0742520A5FFE2,0x80CE2428457EA6C6,0x1ECF7ECCD9512,0x20A948B07F395A6B,0x83D3D210248DCE7E,0x70179AB1B0C9818D,0x4381BCE5DD6D7DD0,0x520356837E06C429,0xC5BE680016032F02,0x10F187A80F430,0xEB8F79468A4C59DA,0xA18525DB1CF634E4,0x789C47A5ED8622FD,0xCBC952513A63262E,0x5AB4C39DF2DB191B,0x94817CCD0F5F6D2B,0x65826F8F95B5,0xD42FA3AAC3418712,0x124B5D5AC5D6531E,0x3619D10136E3E4C8,0x665ED1D7B581123F,0xCB56E76A6C76094,0x42757942896F00BA,0xEE77BD90E0D4,0x89B316FBCF89B2F4,0x551950A7C90336BE,0x73F3639F5F84540A,0x383A92452C6FA028,0x7BA3ECBD34060959,0x9678C50D21B17FE,0x5717FC46BEE,0x6BBB9E10FBEB1058,0x8646FE3C8B810DE8,0x40FE97C5432F17E7,0x9CCA279822B33A8F,0x2E7005316443BD05,0x4DF6C576A4D283B1,0x2258D129F20CF,0x3ED4B4E97F8EEFD,0xD200955A58549DE8,0xF383C4814573B1E1,0xE035730952374D99,0xE69C22AE2E87D840,0xA998D0A4F7842ED3,0x1ADBECAA65361,0x1E90562B19A2C767,0x90916D779EC73093,0xBDC75EFA2077D0A,0xDBB814AC43FA58B1,0x25C788853A25949F,0x5696D094A05F13B6,0x23EE47B42381,0x2896837F061E5C95,0x18E00DFE453167BA,0x2187CAEB2813E16E,0x2CD5DD9E3855305F,0x8B53B210903EC228,0x40FCC08C8E186CDB,0x196AB10027441,0xDC0A94B96A6B56B,0xD9D9057B0CE59143,0x3B488D345718AB36,0x2EB6C75F6022472B,0x58799F84F8270C65,0x396208EDA10B86A,0xF4A31E58A5D6,0xCFE883E4454B525B,0xB01B46BC9B92AEA,0x15C9F9B353D8A7DF,0x7CB934FB3F7E377F,0x5A624D1FBE9D50D,0x4AE48CE6866E6C11,0x9D77893330C7,0xC2229E88BA598531,0xFA7888F566F6AA32,0xF1D88C2022B21A54,0x1C992666343F1DA,0x320FFE3076C76244,0xEEC1C3215138A03D,0xAA6538747325,0x613DFED2CA10388C,0xC2CEB089A68F20AF,0x3CE79BC8488D3C97,0xDF5609301E603558,0x3EA599D90048596E,0x90ABB280F8BF1ED2,0x10A0C816EA3C4,0x7B76D2528746143F,0x91734621CD60A92C,0x9AE08AC37D292EDA,0x632B3469BDECD530,0x9347186D2B907B16,0x48B3607A705F3171,0x11E69A0D1E233,0xCFF102CAC6A9BC25,0xE7F88CFD6E795F59,0xBF66AA5A23854B27,0x4816668703F43242,0x20C296E0791828BF,0x2758CC11FA1C07BA,0x1681CE0B76110,0x597DC92287F3F03D,0xB851067F414A56DF,0x53DCE090BEE9E880,0xE817868EE914C688,0x137D938724BDC4C0,0x36488FC78115D859,0x1187641368CDC,0x57F41714259A0FD7,0x9AAA59713B7D7377,0x2243E12268D3FC69,0xC6EA6C147D363FFF,0xF43706D18618A2B6,0x2D980F2F037DA8DD,0x168B1B42BBC20,0x55E7DF5904F12E85,0x4819B3ABE47DA6F8,0xC8E940549D5B8CF5,0xDC83DDCCE72D9B52,0xB49A25AD17733066,0x5FBF9F9E3CC8A1F8,0x1A9D39A30116F,0x84D90559C8E97FC8,0x938FA91412A2D817,0xE2315CF1C1E69A96,0x69DFC18EEBB3511D,0xA409D353FD784C84,0x819AE43CB2377373,0x1DF9845A995E4,0xB606B23D1A86DB65,0x8D5539CDBC6A4B05,0x5725B9F80B025881,0x374D5B24F660E747,0x75868CD69C75EE8B,0xE7D8DE35FA168C4E,0x1AC4AA828122B,0x48CE050DF7D161B5,0xD5E1F6ACBA619A11,0x244E813E118FA869,0x28003E5D99A3A441,0x3B68B7D319069EA1,0x983688F4C9C84166,0x168125925D30E,0xB13947C39CF64B19,0x28674DEF15D919BA,0x5EDEAA1540F3E427,0xD6F262E411B3D89,0xBA7A2674093131FE,0x2BDE12EB794F83DB,0x118AD6EA8806,0x3CEF3CD3D46DD518,0x1EAE2B7C77E22AB4,0xD82F3F0CE40D71E,0x19FF46EE106BB60A,0x3097D41585C6E4AE,0x39E6556A40136136,0x1D1774685C42D,0x5C89902264D1CFF9,0xC98B69C47844418,0xC0635FD0E1A62316,0x95A8D4D2B332F943,0xC81D1D5859CD2276,0xD93A88F8F0690296,0x449124833F5E,0x3397CCC0C112AABD,0x8C6F06C424A734EE,0xA622809EC0EDF21E,0x552E40F79EC3F856,0x9FA096D2631D94B2,0xB272AF9DCB59F80F,0x17855976ACFA3,0x1D862A062339F457,0xC5D1B98E02E88616,0xF5459B8185444631,0x504EAD6371C25CF6,0xB29D04BC820695,0x5794C4FB95A7F311,0x82801BAC29F9,0x9D4F6C6F41845388,0x5E348455073CD766,0x6E21BCB1C8EA53E5,0x25D211AB4F104D00,0x7EA2248DBB70B2A1,0x89880CFCDD0A7E93,0x1646CBBA9AE48,0xD3DA92D4101A2AF7,0x4F1D8E3A1E1E7BC8,0x13D4142B1419779E,0x6E437CB6563AF5A1,0xB0568DE6A3EF073,0x8088ED7AE3DF1CA9,0x754BD3A02819,0x50E7764AC0F64C,0xFC3C9F27856DCD42,0xFC8E1436B052F2D7,0x6FE5E4A462BE5FCB,0x602A7EBD505C9D00,0xE9147A4887A5D929,0x68FD9755A3FE,0x617D377B1A9BBB33,0x1F85942061080213,0xE8F463C000B0DD2E,0xAF3356113AD75BEB,0xDAB7A3C7CEF996D2,0xDA81F226E1956921,0x195C1D56FEE23,0x82A7DD5BCC269CF0,0xCD80708AFAF58D3D,0x479AABE4B45B6561,0xA7BAE7550B9055C3,0x86ED14C80C55F460,0xB5B50238884E44D,0x164BB65DC3439,0xE0B05FB9DE4F451,0x9EDC42096981875A,0x3CF17A6D14332878,0xBF6DD99555893F63,0xAD7E442476DA6E00,0xBE8425BF5BD75214,0x16AF9FDB9F4E2,0xC3787CECDE613015,0x4C14CAB66A68A17,0x450D11B9FE410E37,0xD5D3ED15557BFC96,0xDCDE6EFE5D90481E,0x559B33FA0FBB3F9,0x58305F213789,0x89C1297040D3A474,0xFF71C4A765B4B4E7,0xCE64AA377C9CD1BF,0x639DBE419BE2C45F,0x4F98329F7FCA5FC8,0x665157168B2E4BC,0x210B727EBAA37,0x4E2EA413C071AC7,0xC9D6FC0B84D652CB,0xE7DF5DD3B5C472A5,0x17D11EB4637491BA,0xA95AA02F7E9B40EA,0xBCC421D0B684C06B,0x12A14E8F4040A,0xFC2DE4B969CE1150,0xD9C7FAD15E714C8D,0x19DE7663B89A7E46,0xBB462108A114ED6E,0x1D45364BCEE30A86,0xC3044F5F24B1CBA5,0x1C4C5F668A933,0x29965AB0B440852D,0x81411C622890FD31,0x1DA061B9880278C7,0xEFE99ACD902E1828,0xF2533DEF24CC6E17,0xF9BE61936AED9F4A,0x1EF2CAE490C7E,0xBB244C3DF0B84B59,0x8453C34FFF6E0DDA,0x90BAEBF94D38BDA8,0x1C5ED74AF26D103D,0x97F75C348B9CDCC4,0xA648A4AE830475C,0x5FB38D4F1B80,0xFBF59A236A6141DF,0x6F63ED2E63B0C79C,0x19E851A7899F601C,0x9AA728BD5EEBD222,0x61DDEFAB4B9E0B54,0xAA86F9B844C0443D,0x11211185AAAE1,0x971218D2939FB319,0xA5FDF0D7D36A2D58,0x917CC7C553F8E12B,0x1F1A460486DEDF97,0x2079D4BB740F9668,0xFCC675EE444D44E,0x1CAFD996F01C8,0x23632D87580CE030,0x2DBD4286178EB228,0x77B34FA5D1FE4719,0xFDA468D28A460BC4,0x86C0BBDE29AB9BF,0x6CC22E4CD2A2A44A,0x11C8160486014,0x3325F6FD96F566B2,0x48CC62C72370D834,0x205628177B556618,0xDDB990ACD89DE18,0x9F690C91970B4C8E,0x6FF323BA69EDBA0D,0x775C14E1E99B,0xD5C4E990EC943659,0xABEAA9368F1FBFA2,0x90A500ED99759515,0x773999243294A74B,0x338DEC509B073E66,0x37DE0EE14866D62,0xA5D875D8C502,0x610DC00581A673FF,0x7A2252C9C9C59EC1,0x68F4CAB28B0BDEA0,0xF09470EB9591CBFF,0xD613524F623913A1,0x392EAE8EE930C83A,0x2301ED4962761,0xDAC1D5074C7FAC11,0x1201094EA3567DBA,0x6035395B9EF45314,0x448EC3463D66D1BE,0xF87A2045402F682B,0xF1DA3881061A01A6,0x103C46E7BA7D4,0xFFB1C7745471413D,0x82814E0EA40A1DB2,0x6894EA66A68AA1AF,0x8208154BB53BC1FA,0x8F04BB227BBB6A2D,0x6A4F34802D71546B,0xCB6543ACEC72,0x3257407C69EAE7B8,0xCC142AF9C4F9ED2E,0x795AF9CF87455853,0x50B2ECCE460CC358,0xB4A3A4DD5B7116B,0x2A90E327E0A13F6D,0x105559901176,0x993B0EBEFB56A8C4,0xC08562C18402597C,0x591E067D5C6FB9DD,0xA28E4AE7A5E491F8,0x41F2D1732A9F9D8E,0x89567F6E064E8F56,0x160EDDB96DB62,0x95F031DEAB939ED3,0x68BDBB684EA98320,0x827CB6B6BF2C9C58,0xB7FC54DEBC89C71D,0xB51E046855C44A5B,0x938ECE19F1A2DAC6,0xBC7E6DFAF66A,0x6DAF1543650FE939,0x56E3F5B5A2FB1756,0x7EDE9FEAE3701221,0x11E76CD322EA40B5,0xA1654212EA5451B3,0x626666D3D8DE14C1,0x96CAAF3C17D8,0x615E38D241FD05FC,0x3C0062D34EB7DE11,0x7D2F5F0FB354BBAE,0x85E2C91EC41BCD3F,0x9952EC9522F453E0,0x3A72483C32D12963,0x973ECBC9FA6F,0x809EC00ECF39DE1B,0xFF5F3A35E04124AA,0xE968E96D29CD7AA0,0x491ABA6854EA6425,0x2BCE677F4F7D197E,0x14B2B9E382ABDB4F,0xC9AFE7DF6771,0xA45B92839DF3F1AD,0xC373F0DDA9F8B386,0x59112C7216E69A30,0xC5AFE58EA0734181,0x665E85979C5F0B59,0x7E856B620359BFFF,0x18BFCC3BCC553,0x47E98CB9F11B756,0x90E1F82E53F51078,0x2E428ED4D50F5C15,0x71B359D96627CA39,0x2C7A36D50507AF03,0x57C01F032A8B493B,0x167580C80140F,0x9C6989438DC6B8F1,0x3ED036CE665A34A0,0x96E1CA7F38265B72,0x4D25A8A4FE908242,0xE5DC97CD31A61CB8,0xBA1F39AF3C58DBA7,0x199895DB72E62,0x19F28BB8F8803F53,0x7E9231E9AB7FD718,0x45CB9ACC479BC93A,0xD3547EAE190152F0,0x86837DECBACC9A0F,0xEB6E221561EC393,0x1EF169CA564BE,0x6C32A6342FEFD3AC,0x2C2FF5277ABA1650,0xF12E3C56F074F51B,0xE55D6B3AF77E4335,0xEC227BB8310EB596,0x2C2DDBD0C0AAD614,0x202CD6DF23EA,0x18ED542129F57537,0x1A0915DC0B1022A,0xABF7DC242D16E6B2,0xEC4DD12DE1262D06,0x10B9483ADCFCAEDC,0x44824E123E29B7A9,0x8EE0734F08BF,0xCD09735185E3B3E3,0xE222A1F2B3E86541,0x6A847937235CCB2E,0x410080FA880548C3,0x97F0543C2C8ADEB,0xF39260F113B1ED70,0xA0C713636AE1,0xAC5DB3F8A9DDEC46,0x9244396D61E5957A,0xE0EE324364425AF8,0xBE71B718B4692F0B,0xDB0BCDCB37795CE9,0x1FF9B333707DA3FC,0xA507737ED80,0xBC2F4DEF28503752,0xDBCB89B2D7CF897,0x66451D05753258FA,0x7D285958C7A09C70,0x5617C75F685D49D3,0xC812CF22C0564F82,0x1C735413CB2EB,0xDB08D5E1A19E3C31,0x431350D75CE35AE3,0x1230A01410558003,0xE056964F7537108C,0x9F480DEC8F44D3AB,0x80AB18CB3DC14F71,0xFB93C00AB4CE,0xA4DA93C29946146C,0x167F004A73405FA2,0xDEC708A7EC726135,0x3B0F3CC805BAE24C,0x801B84A811A14545,0xB2C65CF2DB0245F,0x1781B2CFDF0C9,0x21E7AFAD2369B5CA,0xD0B6EE6F5A6B206C,0x5959BB0563A18B7B,0xAF861CD2988CDD3B,0x8F12C543169352CD,0xD0372DF1DBBABC45,0x19706C59D2A61,0xE45AAB7BA40DDA80,0xFED9168291C6620F,0x80FFB8F004B0D0E9,0x4D9A92884ED930C1,0x27CB1BD879FEED90,0xA9C77814A3E3C2FD,0x219FAF6FD07A1,0xB6EC30D266920532,0x8CB29A1369E7FFF6,0x7D5808C355431989,0x788A390BFD47B3B8,0xFA716A6AADB1D448,0xA3154330FF5EEF6F,0x4B9DFA5CF38E,0xD603415471971675,0x105436BA268C0F11,0x2A2F580A31A6F644,0x3481734388B1E918,0x2C622457F2D99B28,0xC8F255807F1B71FE,0x183F9510A06EC,0xFDB24066CE968C82,0xA6C866A07A877453,0xB6E7BD82B015C816,0x62E112927722DACF,0xFB7D539133CFDDEF,0x414DE44E3A26E950,0x169C9691B344A,0xF6719926CB461426,0x876E28158BCC1ECA,0x3E18904712CD6739,0xA6EABDFB4F49CA53,0xE831912E525E0B4A,0x7B21681082748C2D,0x14CE489ABA0F8,0xEC2DE2829A236D76,0xA89B5061BC31D514,0x4D30FEB3F4B046D8,0xEFC79370701D6D99,0xF6B38D4F70A430EF,0x88A3C8920DD3DD17,0x1AACB7AD6D963,0x108FC2682F8B1309,0xF0EBFA41C1CF1296,0xD47CB36AD7B53903,0xD5DE9B9AED7EF00B,0xB9BA0155897C6D43,0x1A56AE3261D669AC,0x11DB629347049,0x49FD8CDB826492BB,0xE7FEE9E8A1A31984,0x5FA80EA5ADCA30F0,0x6BB0607E3B5445D8,0x59460FBA1C339609,0xDBB9FDAA8D1886F2,0x2253D19B47F6F,0x9C2D01F96C71C0EE,0x986698E464F17F4B,0xA2377AE4588DFA3F,0xCA1A99EAA06D4452,0xC094406AF2F7D088,0xF852B42D12C2E0,0x455ABFC4A688,0x8CC232D0029FAE41,0x1FF0EE8967F2B586,0x89A2096A166B9876,0xE51E7BC5430ADD25,0x14E96D994B63501B,0x5A13BAB060EB7E1D,0x1526C87977071,0x18CDCDB0CA56A7F3,0x19B29E0E63247456,0x1072F30249E8642D,0xB27BDBDD8458B19F,0xE2BB359016E681CD,0xF7349DC8464DA410,0x122530AF1B8C2,0xD4DB80B99E71F195,0x1FD6C73CEC487A44,0xCB8EC53D4D98D038,0x8F9599E7AF896C9D,0x9DE70E37D7D3404F,0x25918F1C61F2E8A3,0x2EE4FA576F89,0x6C3404ACA8916BED,0xB3C0CC23AD3DD17,0xB147775302AD42D7,0xC830CAD9EE1DE07,0xF74B80B2AD672AB7,0xF21C66A894C741D2,0x169F44056AACE,0xF5A07BDB3E01FAF6,0x49B7C9537B05DB06,0xD21B12C2060C99DA,0x41A3540698821CD5,0x26C54378DDD7F95F,0x20898686440A01D1,0x6EA345275737,0xB235CA9C5AF7606C,0xEFF72146ECC8B508,0x50634D2D69AD9BE0,0xB9848AFC80BC6477,0xF46113E8EEC7D3F3,0xE753C3F5FA03EA7F,0x1E5229C55FE1D,0xFB743DFA8B66FEAD,0xACD236F2AD5CC4B0,0xEA6E365C8BB2CEA2,0x173FE0D096FBE5ED,0xCF2C70C39B949170,0x3BB345C521819CDA,0x1BAF42688ACE6,0x4E86B73ED656AA5D,0x37E91829C4A0C577,0x86ADBDA10FE51D3E,0x6E8FB8254861C352,0xB55ED210FE373B92,0x57834442773BFEB8,0x232B5A5CE84F1,0xECE750A6D35A3CBB,0xE58307B01454B86C,0x6A06F8016C4E9BAC,0x809461E1A9ACFD1E,0xFF5238035FAC462A,0xD05720F7747F325A,0x2469F6C5F0CF,0x47E969466F0ED526,0x24C3896E3E2B8D4,0xCF8A698EF0FED870,0x7760BD23A0353DF2,0x983A71E99B3B872,0x1FC5D0AD83A9FC48,0xCB2111A4556E,0xA66195CD209E1B6B,0x4D67A89DA9917AEF,0x7394D4F03F7EB4BF,0x183F3BD60624A393,0xF6435CB2CB67B30E,0xDD9ADBA7C44438B2,0xAD10EA2280E3,0xEA0B386349B03B05,0x3ADCB8969D5FB401,0xEDBDBD1AF3BB46D,0xCA1DFBE7074248D9,0xE224390160186622,0x1973576A009DED2,0x7DAF1E640C47,0x9B3F61FEE0ABFB03,0xBF70F2BC3C323D4C,0xC1528598CE32C6BD,0x7DEF265161A307DA,0xF2886238D52CEC15,0xE1E9BB4BDD68A269,0x92588332E5D,0x5CC77FA16AEF2681,0xB67178E6C7513C27,0x225B2E4C08339FDB,0xC29432766F501C05,0x9BF2D9DEC3BF2D80,0x891CCB6F95243C0F,0x1A0D680E7376B,0x75B15F3C1272D5CD,0x4C8BCC658C60B127,0xB989A0CC76F1BC75,0xD29411D2802DDD7,0xC7C40C240248DEC4,0x383D441CCAA4EECD,0x47C493965C78,0xC06EE26FB9D32912,0xCDC32FC1A2276D27,0x723E492881AD3C0A,0x45AE685988E9F088,0x4855FCCB7DDE60D4,0x8015FA22A5A34595,0x39E7B204AAED,0xE5BB13F23A0AE22B,0xB1E46565710307B2,0x1EEF46ACE694C9C,0x84891549DF15261D,0xE2D7CD5499E0E766,0xA668541CBE3359C4,0x27BE122F22F,0x138797F397066281,0xD06BA590B498ED35,0x99BDE9DDA97E22FA,0xA830D66B2161BCD7,0x8D1B45C8C31AB861,0x47D2C92785B22CA2,0x1B4B394100A9,0x64FCECA5BB3232E7,0xA5352B77344F7308,0xD3BA633E275428FB,0xB1A84342DD44742,0xB69C8E78EFD015DC,0xD717E610CE2873C8,0x1009C130CF577,0x1E4E88F673D5DAF0,0x38FDD95E57DB4DA2,0xAAAFB03981004F96,0x8666E4010E1ED8C5,0x97A66F193ADFFF0B,0xB2ABC6ED8AE967FF,0x166DE6B0BD190,0x984F2596723D638C,0xA08A1C9590C07523,0x872DD9B23C61C4E5,0xD038422958E2FB88,0x36F3ACA0FEADAF7B,0x884C0C9BDF225963,0x210D4FD75B710,0xAF194496793F529E,0xCA64AB5739F1473F,0x16F5B776A24F33F2,0xBB6A017596C98D96,0x92E8E631E1DFBC91,0x43CE5C45D4477B2F,0x777F053580E4,0xAE1A278CFD8D503,0x646C05085881F413,0x95AEEC497420FFB7,0x44432EAACF0C5BC,0x6D0C27F428482A7B,0x36BF0F73795AA970,0x19B5D7D1CB06A,0x8CF1AAAA1528F977,0x30E061E79074CB0C,0xA707BCACAF089926,0xC4433A96484B2488,0x3EFC2B893CC11E21,0x3E9C16A82D794CEA,0x1AA78C0619F6,0x6081FF811443FFA9,0x350E77FDCAB2D6FD,0x59AB0E00DCE80940,0xCA3DDE7ED63EE6E9,0xBC6DBA8E805469F4,0x9E00842703BDF5CE,0x12E18815CBAB0,0xDD8EC29C8CA1B3E,0x294FDFB431DF7FF7,0x5161BE8DC4F9B74E,0x2D1DA9FADA3A0D19,0x6F8E5E8E319CDC8D,0x141B4E90AB5C35D7,0x209DCD53ADEC5,0x48BAEDD5FD2B1800,0xF0169DBE8161293E,0xB6552BB0BDD53BDB,0xE65FE0A7DA66E23D,0x1E1131F481DD48A9,0x2D1D20B8601744B0,0x5C6C4116B51D,0xAF3F77272DBFC895,0x5566C60CE4E13FF2,0x6A2F921B830DD150,0x9713F5E579DB2A7B,0xEB5DB9E5173B29D5,0xE149A82C1F4354DD,0x229123D77F20D,0xB67EF8C12A0F95BD,0x7D3E0BDECBDF5615,0x2708B77D19CF90E,0x23E07BCCACF17B47,0x8D47EB82DC6A1F7C,0x10A673E279430B65,0x14CF38522E666,0x1A096E1EEB270528,0x933038843B893F38,0x88B613C19DBB7467,0xFEC6DA1CA0713103,0x240180E56E9B7710,0xBF2E5E38057F4D63,0xAB82D1ADAF55,0x64B0D1361328A2FC,0x9FD323059E7DEC31,0x176507762516522B,0xA298240070E60293,0xC678C08972E3D95,0x6542786D3EF630C6,0xBD131F0FFF97,0x759C2CC404CF2525,0x1F18C42BB1269C0B,0xA93FF49AB4FC2F16,0xACEA1D2F89F846B4,0x55D0B3D1B30B72B9,0xC02DD5194D73EE73,0x1B8051FBB465C,0x21AD4D0C8B3B4E9E,0x1D4938F15687ED62,0xC490E543CDE63812,0x3D6AFEEC9FD48E99,0x404BDCF332999FFE,0xC049F5C227B38EB1,0xD4AF9FA64189,0x4C6F285F6239C182,0xC66EF01936A7320D,0xC4FE328637979F04,0x56D57EDF7CF75EEB,0xBFCB5B4E5547393,0x9B9C7A301E3D6EE5,0x1C1B26ED0C82B,0x4CDBE84D24218BE8,0xB808B0CCACD871FF,0x1145DEB3732F69AE,0x1BDF419C628D4BE0,0xA17C8038D3E66E3B,0xCE1DFB832A44C778,0x1D94BA500B74A,0x76DBC6BF1905DD32,0x2634EF48A254C112,0xD6CA51CAA0EABF78,0xC6328E6DABA4709,0x1A12187881954B43,0xBF62D0F7A9F849C6,0x20A02C731C77D,0xEBD258D94F44FB25,0x4E423AE47CA55F8C,0x593C2E2DAF3904B1,0xA6730BC41DBFB765,0x5ABCBA39E82B35F,0x684486408C99FEA7,0xC0791F43934B,0x7028BCB2B280628B,0xE85E508AA59D338F,0x75D883E5EF7A65DF,0x2703E3E40C7C183A,0xB960C62F477E2EF2,0xED805CF81622C636,0x1F33CE668DA27,0xD24EFCEFACBB4507,0xE859FEA5FF78FD89,0x920BB19909373B75,0x7FFF9DF9C2465F5,0xC307CDC3BC25FC30,0xA63D94EF63913399,0xED7041483B84,0x2A113CD82EF74316,0x25F3CD1F99B6A469,0x91F37212B85EC349,0x41469F7DA76CA706,0x66CC52A81908A5D,0x4E7666AFC4487BA0,0xA6A111E280D7,0x53157DA977573097,0xE2E41727861A0F67,0xC2DBC4398C642C6B,0x52CD3F578EDAE27,0xDC92BAEFDA69BA88,0x3E1170C7A23382C3,0x1220D031995E3,0x48920CFA2960125F,0x3CF3F278AC0415D7,0xAC6612B4FF9DD17C,0x958CF8566E1E0A4F,0xE38F6D00C4CFA722,0x44DD4D60F7A1FE34,0xC3E9D4249E77,0x33F4899BFC7C3EE6,0xC47156BDF2864716,0x728E6FF200D9FA3D,0xB5460A8F51DF05E7,0xF293AF33AFF6951A,0x85A506D7608A1D87,0x10AEA53AAB584,0x888D19D68AF4E1AD,0xD25B0BEB0232714,0x2DD2984B27DF8BB8,0x2DDF53B7AE50CC22,0x1F9EC9C49B76DD65,0xAA1D9F1F17D33215,0xF0917A6C7542,0xFBDA2145C797476F,0x6CD5C403A1CD6D3B,0x89F56C9964461B50,0x23F5B252926D5E3F,0xD4258EAD67277D86,0xD5539A71F8344291,0xE737BB5EFBAC,0x90F367CC36133E88,0xB98A3144A93CC999,0x440C4DAF9E85252B,0x1C5EB877144AE6E8,0xF0DDFC2DF4195E5B,0xAB7A30B97FD198EE,0x1C4B221F528C0,0x4DB27151549BB609,0x54736A4DCC4764B3,0x39B740256064F4AF,0x61CAE44808C102CE,0x7876252A843EAD60,0x289228F92C875623,0x1754EF33BEE8D,0x404EDA8D39F641CE,0xD870F99C9F39FFE1,0x2DE9B0EB596C7B5A,0x22B0EFA0177E2C43,0x27449E7B89A6C38D,0xC7B53FC84AC70FB6,0x1740C1CD62EAE,0xD3F26F1F9527B83D,0x850B832791ACB96A,0xFFBDE8F888140FC,0x3CE0491FA5944FF3,0xFC36A1819BF21EEB,0xC0B781BE5BD3AC3,0xEFA0DB34FD95,0xFF6345E89328BCE0,0x8D79BB07F0AD184E,0x35139A24BD461173,0x1734448FC20A9C8B,0xBF667217CA7A09A1,0xE8EFB503E7196C5B,0x22E314F4872E1,0x6EB8AF1144E66885,0xA0664F384B2C74A1,0xBE5C5B9C67C50569,0x7D763D5E67E0301,0x97D9BB30D21837FE,0x7B8E0AC0EBB6AA84,0x1D3E30FEC320C,0x386503F306755803,0xF57F11BE69F5A7F,0x5AD5D1AF653FC2C1,0xEF66E6557A3CB2B2,0x97E4B94FF03DA531,0x1386737CE662693B,0xF8971469D755,0xF04D0E8F962ECD7,0xB56E44FE43EAA2C2,0x170AFB64F110B4A8,0x7A8306ABE1822C25,0x7CB27D274B8FF21,0xE3FE38F8CE6A7B52,0x172EA02AA50B4,0x643C9B06E08CC66,0x2B87BDAF4E9388DC,0xD71922CF1672D873,0xE28B6BF1D657B51E,0x4EE86292969E26C8,0x774FA57CEFDBEBD3,0x22356CA9281DC,0xCF4DDC5549300A,0xE9413CA6F4CD4100,0xF7A542F8CF3404BA,0x439D8AC2A6FE8751,0x20ED88D8D653E5A6,0x3A1D37F43C306D15,0x19CB3FB40E64E,0x30EF0546FB21C004,0x3B818951DE4FB322,0xC765E13150B1C2D5,0xD678825CF33E22EF,0x32982733B22CB893,0x103D3E24F664B502,0x1C359727DB042,0xDF109C4B080306CE,0x1A578D1CCF3FF3D2,0x55602552343FD214,0x7538DD131E9ABB7C,0xD72C3130CB9A9C17,0xBA59DB23F49F0A09,0xCD2C2968CC5D,0x7414CC5229185524,0xACBFC0F4E77368BC,0xD9E98100179F527D,0x9E769DB09985FE03,0xC782F37B113AFEF5,0xDDF36B5E5F45F31C,0x103405AB2D43C,0x40DE33CAC0717450,0xC3B2E413E3A0F123,0xE53E09E084E1A6DE,0xDE1546CAB7A06ABB,0x7A16FFE13407D29,0x492B4FC12399CF6F,0x1219277B863A,0xFB9A3F094C746CA5,0x81E2E7491C7872E3,0xEE7B2250BD534FCA,0x601224D10EA0C48D,0x2F34BA04B8B07DD8,0x6DCFFB47B6412E5E,0x152AA294A9DB6,0x3DA4FB2FBD3C0BFF,0xF0D755D71384CCA9,0xBA2A155866B5DFDD,0xAF48DAD304B56D63,0x7D3C7D260FA4B19B,0xB06EC96A2148DE61,0x15C585D390AC,0x8EA7A8FB6C35919B,0x7C75E88ADCB355E2,0x2849C06FC41098DE,0xF29D73C749CDCD65,0x8FF0B7A11F3AD0EE,0x729A27BFB0EB9D73,0x1ADE07D8F5DB4,0xCD3F00D2031410DF,0x71A4FB9A0CE0800D,0x2B3BBF9AAED9501,0xCDBED9DD561A6924,0xB4BA31215E9AF8B7,0xE671C61CEE66F24C,0x1360681BB1629,0xC4E35287B435A223,0x5686889DEA700377,0xD887EF0013EA1713,0xFD36C4988796A889,0xDFB874596A4296A8,0xC15C9FABE5C014E2,0x16DC390DADF51,0xEF6420DB718E8CCA,0x22FA53308FA56AB,0x942E1FABB5C82FBC,0x1F024937482AC7B8,0xA13BA11324609DB1,0xEFDB248CA66B462A,0x72F06D79F8E3,0x9A4DB208DB96B3C6,0xF193B9FD64A6E6E0,0x681FA9DC20DB5D3E,0x104B991877536BAA,0x6F1EFDFB41FEDF60,0xDF88781860A4D51B,0x22A463C0BEBCB,0xED6E3F02C7C46FE6,0x4C7AB61159472360,0x96E35359DE718AFA,0xCFDEEDD57314E67A,0x294929D4C604D0E3,0x1F26CED647677727,0x219FC25DB3665,0xCFDC8FE63B395FB2,0x479356ED76587F0,0x7941A8AA36E594C5,0x9DB6379AA5BD5E8C,0xB5EEEE5C3AC553A7,0xCF2C83741C73FEC1,0x21559AC288838,0x3555F7322975B35E,0xD2BB2813B031EDD4,0xD383D98C41C4AC95,0x71E5B04EC5DB2483,0xC1ACE99F40E7C9EE,0xD127B2220B5C328F,0x8EF07D64B36,0x8F9C314CD1EA55DD,0x694392EBF98B8A2,0xB251111C6791930,0x4603DA5542CCF7A3,0xA8C11246DB27A30A,0x1882391142DFF5E5,0x14ACB5655C154,0x89C7E784BA9DFCAC,0x7AC5FD56D285ECF0,0x1EED5838A9744BF7,0x411FAF6DBE63D539,0xA6E7B243074FE4C6,0xB37D3A6746DEFF6,0x69B843253C29,0xCBB6CCDAD699F147,0xE407FD6CD2429B71,0xFFD8F22806765E1B,0x9BAAA7A037FC0C2E,0xF8373E117EDA3D78,0xCEEBFFF90BAF3B03,0x80E00A8A1753,0x1DC7261C69DEA34C,0x2D366AB3AA66E40F,0x8EDFCF071C904EFC,0x60C3E72B5BB70A9C,0x4B56A53C01649C2B,0xDEADE364E0023CA7,0x21D6660A39A3A,0x177D4F641E8C4445,0xE9F8A0EA417FCBB9,0xA39BCBB585D54F6C,0xAD7B9AC3AA5193F4,0xBA8B961E256977BD,0xBA756133BC0CB8B4,0x813871F29AC3,0x5DB62A851952AC1B,0x9B3F62695628E9AE,0x6E6B76578038E04C,0xE21CA7DDBDD5830C,0xA3D21C6FECCFBFD4,0x48CF797C096E0740,0x80A32146236A,0x7CE03DBFEE575E24,0xB5502FA503B9635C,0xF6D7020410A9C247,0xAE731401F0227220,0x626FB4B1155D4A2C,0xD3B4121F356F92B6,0x118FCAED5598B,0x85B3E3F08124B64E,0xF104133C18139ACC,0x28902AADDF6361F3,0xE8DD45B08B900D27,0x9FFDBAB1C0E62AA4,0x264C51B5BE14E180,0x69BDB668EDA8,0x719DE1EDC7D0A421,0x6BC959BD69519685,0xB107B97645155E0A,0xACC868A7936881,0x50F46B9C022275E,0x2C3D1284963EF67A,0x21ACE55D2850A,0x876A9B62899AE70A,0xA597032DBCEE2638,0xF80BDFDD8D6D24D9,0x6E8C7C9277CA1A72,0x9F6B8CF39318805A,0xDFBABD16529CB1A2,0x12CECB1521941,0xE5E32920DCF5C7E2,0x977B6818D9225CF8,0x4C2C1A90AA10045,0x3F6BB1CDAE29B31,0x616EA6FF7C682817,0xF6520D1AFB4CBBB8,0x543E4A838328,0x2D820EDDC0651F7B,0x62013B028741C437,0x1B35E956F9177AEC,0x935EFADB19A405C0,0x12DFDAF2C5348559,0x5279F1FE21C8FBE,0x363BB39BE8AF,0x6CD3519BAFED8441,0xB38340789DEB45BD,0xAED44626481A1A53,0x46B118FCABF566E1,0x29AFBF3B872A027B,0x8E2B400D687BF795,0x146EA999A9953,0x8D8E09D61F8B04BE,0x3BFF5233A5B23972,0x876234D2414CAB73,0x30F22C61DC9E5B6B,0xC9BE7B9418C51E7B,0x669DD4A7F3D7D45C,0x109D73460E8D4,0x87A996347FFB42C3,0x1FDF5D79B2F4160A,0xBEF1646A2FE69D72,0xA8AFEA914DDE982D,0xDDA0F66F8ECCBBFE,0x7142C3A7533328FB,0xFD86470B37CC,0x7BE54C5FBF393E42,0xAD8EEAD71A1B0DF2,0xC7DF639A4B3E6D59,0x5CF51F3FC9BCF254,0x924BF07DEBF89205,0xB1FA9B5DF653DFEB,0x9AA47F4C66E6,0x6B65C09FF1BF37E4,0x8B67A6412C1396DE,0xB1C3DB99CFC79ECE,0x2AF2FEB2FFD763CB,0x8CDA48BEFFC89561,0x7EF4ACB8820EB11E,0xC295B5E3C215,0x4FBFBD071811C44,0x7F9B332378872F9C,0x3122325CD5EFF137,0x890B5D9091E1FA1B,0x1AF7B7698754926D,0xBDEFC6942C1332CD,0x18170143CDD6F,0x37B7B6E086E1259,0x2CDAC4FA9084F90C,0x7395E53E950697D,0xE193731660AB74EB,0xD2D9F2B85BB07E5A,0x9A24A36BED7E7169,0x1D7D39DB0756A,0xC53D6B47AA1A22D9,0x4C31DE2344308D97,0xB5095B8FD03E4AAF,0x47AFFD594571C275,0x44D4DECE6B311FA4,0x6C04202276C75ED6,0x31107804501,0x5C2E02BB72CC67C4,0x199056847A147B95,0x1F5E769F5581E04B,0x2AB2DBC5984A080B,0xE892CB86C4C3332E,0x81D1F64438ACEA48,0x189D5B472319C,0xCE16FD8336A5F12B,0x2D0BD200C05DCF17,0x759D564FCC3D1D5F,0xB050DA5152AC93D2,0x4A05AA3503015256,0xA9C2FC326D770AB7,0x1F88396C8570F,0xFDBF0DA4DDB14AEF,0xE31C97CAAC2B1AE9,0xC1EE53A7AD179B6A,0xEAFBF7A9FAFFAF8B,0xFA0A8C02A4F7B0B3,0xB763F72ECB7E482B,0x1E53148120D31,0x4D4CE2364C6A6F44,0x18F9CD80BDED669A,0xA8BD152FF08103AA,0x3873E8B339B5EF4A,0x18995B6BEF1E37A3,0xA651B0D801AFD341,0x674753C6055B,0x71B25620BA2351E9,0x470B289271A90100,0x5AC9214438915FDD,0x4EC4A230188AB8D6,0x23B64C76C199BC5,0x98DC0D68F585345E,0x1A3AFF392A192,0x51B86B9C5BD849AA,0x86066077994AFBDE,0xBFA165C507A052B3,0xF666F3D99F8DDF0,0x3DB1410FEC0802D3,0xEA21E37FF1B89A72,0x181B3FA7BEDDB,0x7CF9C503C698917F,0x6D29EAC059A3FB6F,0xEC171C079D4F79C,0x3A63EE1ACE6FD938,0x1F7CEE09CB71B0BA,0x735FC8D24266D78F,0x16BD0946D1735,0x9B1F80F7C1A38D1D,0x2B00C41A24736AC,0xFF73205A93F649C0,0xEE455544367650C,0x81B91666845B9B7C,0x65A4B598599C6F28,0x17A4167D393CB,0x5FEA7615E1586961,0xF6CFC55A4E3FF600,0xAD12626592D51E7E,0xE4E9A2F63398AA6B,0x660564A431C03F58,0x80D3F23AB2BC5441,0xBD5D2F62FB42,0x7B8D6C84C1C173BC,0x1F855FBC9D7A2626,0x8A43C1EB4B2A1186,0x7E05D617AE981155,0x8C6BEDB65D55B368,0x8ABEC0F8DA0E19BB,0x179B122228D23,0x74F79E8BC6EBDC73,0xEBBAB125D14022B2,0x2ACFA700BB2E4D24,0x3260C9E2A9346D87,0x12DE20BE9B6EF154,0x9AD472813D28322F,0x1A843F9E12AF5,0x57FDAE3875A8750D,0x6D18736EA187ED61,0x6C8AFDCA13C92443,0xF118921FBBFEE1ED,0x1D5626A7695F376B,0x599DE0B91A589A2A,0x1FBAD61F71587,0x72A9B33F06B83EE7,0x3D791D5E45E1824C,0x2D533C8F6861664D,0xFBF508F845035F20,0x7E4C27072918DBA0,0xEBE602F6C29E73E1,0x22FCC4BDD7B42,0x78CDE4F9D6051327,0xCF10B1620B661D24,0x98D4FB1F5781A67C,0x909C5A7FB50BDDCF,0xFF01BF5791090F1D,0x8DFF2D3118FBCB63,0x7F70C09D2EFD,0xCF2EDABA8295FD20,0xA6F8DF8CC583746,0xFDA751D82BF865CA,0x2FBE1C53DE2C0424,0x4D55ED1A61339F79,0xB34234F2BFE697C7,0x2E5856979B09,0x8816C79C8ADB0ED4,0x9339FF345CA7C8A8,0x535DC632C3F597BB,0x3EF3D718CACCF0AE,0x89B774C401AB4891,0xB5934191E05CB2BC,0xEC1FA11D8B68,0x8AB1A1F70385C52D,0xB94556CF9BF3D0AC,0xB4AA88E6819E5E0A,0x6D319409884BFA33,0xE4189021F087C029,0x15A89A91B12344D8,0x1B2710E8F329D,0x5298F797A27F5150,0x92CA69210336675D,0x5DB8C32FAB48C020,0x1480138C4FC22048,0xE6325C0E69BE2148,0xEE1FDA3493C7CF34,0x197B8AD2FB15,0x287360F85DE134D0,0xF7BF6A242A2034F4,0x9398781FB7AA3F70,0x5B9D567F433BA060,0xC330328C0593C768,0xCE880153ADCDB51E,0x4BBE3955FFAF,0x2BD285A7330F2945,0x9CEF6B1356206C9D,0xEE6C9617BBF264EE,0xB06956627D3BA3BA,0xB94687FADF39CFBF,0x117E6CA9CBD434EA,0xD4FE1A24A740,0xDC514777F5FCEEDC,0x51CB00476BB7B247,0x8D5E114884D6551,0x20A4959B8C8F1761,0x2A43692EC48A6EB4,0xC00EDA522A0E1380,0x6C4DC102325B,0xAF0633E8A9E5527F,0xE2EEA66F7250EC0A,0x6CE7F2C3CECFDA4A,0x7BE5543EFC7E0572,0x1BD3EACAA7CB25FE,0x62B3D7DDAD19EC4B,0xF99063F2F137,0x450DB5A186E9D34B,0x8F37B9F2425D8EE6,0x8893C0DA2AAB45C,0xFF81BFDBA648AE6,0xA40FD5C504D362EF,0xC04BC3C3CC54B8B5,0x1D5C05322BADB,0x1F72B005F6500AF,0x718EFF708D70552F,0x3C8A47DAB7154E8B,0x16434A662EF12A6F,0xC2F96FAF1A3FD0F0,0xB3B3C304A6AD0B20,0x1D6C6319FE55A,0xA09ED6D834081483,0x3D961759E80AACCD,0xB9E183993FAF1B95,0x3ACBA59ADDE57342,0x568DCB21DFF38F13,0x677FBEA6796492A4,0x128AAC311C758,0x308133220F4A5675,0xD672D989540215C6,0x9869F3FBCE75871F,0xB7708AC22FBDB5E4,0x9CCF68316022F1B0,0xDEE2C6A84E2C5D87,0x19878F83A0035,0x9310906A4C863A71,0x7DCABE89A78E922A,0x539E8976A185C160,0x6282B352E69009FE,0xEC000B175141C6E4,0x93E7BDF374F90EF1,0x1628788CA99BE,0xB7F9BB65D8BAF28C,0x4C7BFA14B8D3156E,0x34FA213E1E1075F2,0x1F94CDD1AB61A46B,0x9D63052543E45312,0x2C9AC5A3C4E98741,0x1079E5A2858B0,0x286787778402A292,0x145C63904754316C,0x1FACFCC71C294471,0x14E7B408D394AF92,0x1843A9224D6B7912,0xE88598FF4C7A96BF,0x22F1F3142A93F,0x10174710B4AC3AD0,0x7AA8AAB51CB04D78,0x23C9486761FB2E2,0xF22EA5ACB02192D,0xC47A9ED354B2C950,0x30F44322C9CC2354,0x1D2AEAEFA4BC7,0x46DF8F21E4F31262,0x2222F9F0CFFA1405,0x9E47AC6AA5BDEC06,0xE0FF3ECBDC073EB8,0x4B3C858154C05798,0xC81999835CECA0F1,0x8110F1B23837,0x3920DF6E58D73FFA,0x3770DD18D63F632F,0x5D39D84AFBF42931,0x2B67E29F9E13A52,0x95804445B117CC6B,0xEC4645C1B095E737,0x18C16B829E158,0xB65AF2AA6DF1D920,0x8B26EAD8E215174B,0xB427002CA16FBB0C,0x7E64DB0FD00946E7,0x59A510B5763F161B,0x4094A25A1C2F480F,0x1EA94B1C47662,0xB91425437778E7F7,0x8E2EDB1C49C16B0E,0x7A2785F78BBC5293,0x3E1A368AE6C66246,0x8161D1C4013AC402,0x301D1316C90FB6B6,0x1BE2D2E82E769,0x1016DE3C0F13542F,0x109182BC1B760757,0x14680DF44F5A0C26,0xC8390A3962F895E3,0x9BFD11CAB43F31C8,0xDE7CAC87490CDB0F,0x87163AD58642,0xECE7A259AB7107E3,0x2084E61BA6A31A74,0xF1DB96C020F9434D,0x472BD63069CDFB41,0xB3012F8E23E8CBE6,0x138D20EB3D3F4516,0x140F7C34576DD,0x71D64143FD756C8C,0x737F9C70493DC8C9,0xBFA869BD0077D5AB,0x32F7C76C19C2B3F8,0x185B8DE9CF33138C,0x4146A5ED121604F,0x199DC7DF43EC5,0x1153FFFCCB348CD5,0xCEBEFAEA41DF75C6,0xCA8748480B814868,0x79E2C99FBE9E5880,0x2759ADF9E306DFE7,0x5446CBC43774951B,0x1C2895200D4DC,0xDACECCAAA3C2A7CD,0xE56712DACAB019F6,0x7955D43F30F61063,0x9AC9F05FA4ED2841,0x65B5339DB6048BE2,0x260CC3B4AF77C5A,0x2F347551F8DE,0x8D58D309EEDC486F,0x112C5BD86E9E0FB1,0x858BBAA717F59232,0x658B8AF8E7B62FBF,0x88FB5C91F4AE85EA,0x22A6C230F9C90815,0x11C19CAB72E67,0x1D90480AC175AFAF,0x7FFC8D58B9BC7EB3,0x827BD1874A612D07,0x9908D51007A0EBA5,0x2A5D23B758579A71,0xBDFEFC70358620A0,0x1738C2B2FF3D1,0xC983335328420E5D,0x79C286A5071BF4D2,0xDFBDC55D634338E8,0x697511718C4AA293,0xAF5CF0B482CC875C,0x1EF2E2D292D0C957,0x977C97D9279E,0xC9F66A0683B8C3A,0x54EEE9D8BDE994E5,0x7ED22AFD0860F6AD,0x711346E4E1C858C0,0xA692118CF50453E3,0x3036C4A5D963CA83,0x1A132C155E430,0xE6861A1FADEB275,0x2075B10C5ADE9821,0x46A86544757505B1,0x6BBB476E6583AA41,0x31223859B2B39372,0x19F39E6BEC13D373,0x8C68B695D2AA,0xCC2FED47AE78DC2A,0xBC9A2CA6BD18F4C2,0xCF9E50B65018980A,0xBC6A2DF109C0CA18,0x2D664A7D1B84B2EE,0x25D97DBC2F591D05,0x10EFBE11F08C8,0x4ED30A44A7D583B9,0x6DEA0899A47B6EEC,0x65A7C972D43E26BE,0x1D88B5C2F65B6318,0x7AA7EFB82F1BC251,0x17BA08A2FC3B1B68,0x13F416D8C9998,0x6C6AB7915DC56FA7,0x44A62D6C0DBFDDA9,0x932849230E2C950E,0xF5515D4E0A038407,0xB700FB5318C1C881,0x68D705F045535BC9,0x10C67C833867B,0x614078FE2C65F581,0xD10FC22198596A48,0xC12E3D2A7AF855BE,0x19E0DBF641D0D61A,0x95BE419AE23B904E,0xEAC47BD7C8A0C503,0xCEC5ED309E4B,0xDBCAAD67468C1E3F,0xE3868C7D24892DD8,0x8532C53E9F064304,0x5A84E56B3DB5641B,0x8F7271A31C4328E4,0x1D12EA24F6EB934E,0x13D49DA82F2CF,0x95F6F7D6C4F9A54,0x82CFDA459B67E23,0x71B78784D9AEE8C6,0x537179EAD94CBAC2,0xB259E260ECAC9463,0x776C673D5A369033,0xEF62D95139EC,0x375D907A4DB2A4A5,0x8361B6F14332735B,0x339259421FAC2B08,0xE71E76267B6A20F8,0xE373D3575AB2C700,0xEA061F809BE71774,0x1F8714D51E389,0x9DBF97926CC0CD11,0x7F4D4B16BFFAE26C,0x1A1C19B192F95A1D,0xC24B558E10922174,0x43B91A4D085C41C6,0xD0D9DA2EEB1F8E32,0x17F3E0119DFC5,0x952FDD73F0B5DECC,0x1F510CA832EE938C,0x76D42E3E7895522C,0x654856DD5E83684,0xB1F7480F90591155,0x6E41A748338C099D,0x18D9BD8953D3C,0xDA29A1DD58C7AE34,0x977E44C3210B70B4,0xC51126523427AA05,0xA2B05B44C4803A63,0x378EAE846D0312BD,0xD72C2F48D8745C23,0x613C40A1117A,0x9F9D362976F40D96,0xD99BBE928EFAE86F,0x77C1E91EFA831B,0x7E8A0807C5E5500E,0xFAEF3C566C9D024F,0xB9329BD4D006F227,0x117B661F0BB6A,0x6F9BEFA1F740BD1F,0xFC9D3D553FC31FFF,0xF233FB831A6D605D,0xE35458D0041A4005,0x7EE3214D99F6A4A3,0x4C3FC466835214FB,0xCFA3F7A992E3,0x75225C779135BFC5,0x3AC1A77E6211EEB2,0xAA3E38A29008064B,0xFACEB3724A426F9E,0xE5B617D1110215A2,0xF5AB629A850999E7,0x12263BCDA0259,0x21AB8166177C053D,0xD97C2DE0F5066E60,0x815E0FBEE13FAFAF,0xC8C1A4D7A2F9A10C,0x7700DA6B212FBEAB,0xD2E5C0650D9D2329,0x2A8FDEF774F9,0x6EE28B87068A2E09,0xE1D44A98F93681FB,0x9E9F44B4F47ED0A6,0xAE8834EEBCA4A3C3,0x8E24EBD9DF32342A,0x50F0E7697122BC91,0x839792CF2644,0x297043419A52B7B0,0x6D6105739A378A07,0x423D295874F14F92,0xC3250F49F78A9844,0x3A5A24F25B2AD265,0x42BC8ACC48453D02,0x22C6A5F6A79D9,0xD13E6CA77320AF5E,0x79BE8D435E44B0CE,0x133C68BE90E8DF37,0x568DF78A4A6002E8,0x5ECD671867C665D2,0xE0437E79726F7321,0x13FAF53501647,0xF838BCEDB3D4B830,0xA8855EC221E60485,0x507CE532CDDEBA60,0x757A9CDDCF653E57,0x2E544610E9D02CDE,0x717C3C2A4663E432,0xB304FB9B47E3,0x6A7A2678C565779A,0xA2A8C43404EC85CE,0xDA6C3C4727D8C1BD,0x95C40C06C2D61FC3,0x344D31268A5E09CE,0xC5F675964FF880A5,0x1A6C80FD4975D,0x5A8F68B8B0E78675,0xF92F400CBFCE87DE,0x6D35E78E1BDE0830,0x3C1AB45B5BC2EDF,0xD1E2E249C9988A2,0x420461DEA4EA9A6B,0xABD4794DD096,0x535590A143DB7CEA,0xF61CEA217FC37F9F,0x6DB8E94682A16E04,0x21E012004C8470B1,0x6A070AB20BA37D2C,0x6C9460E143D3AA3A,0xA37222A352A5,0xD86C4BDE8031F281,0x6BF12C0B987168F8,0xA7F557020FE57AF,0x69FB1836B6380366,0xCBE1E7CA931C623D,0x323D1C387A1B4789,0xB0F1296A5E2B,0x7338F8B5C7E9B29D,0x426B5C75DE8C8DCE,0xB67063F4FDC3F23D,0x7C5B6B7971793736,0xCC4208DEEFDE9453,0x25166CFEF257497,0x132B040B9AB59,0x8736318961941A53,0xED6E0E9635E86131,0x7CA40E67B2E9AB36,0xBE606F2AC109A825,0x4F2B1198250D908E,0x3225091C04B09195,0xEC693D0AC3E3,0x4F277C9E73F2A111,0xAB607A5008F2D8C2,0x69A89D6B649D42FB,0x88E482741647DEE0,0x371280C3D5B669C8,0x8DD7727C23D5AFE8,0x5D2544E7489D,0x9754E0126F38BF6A,0xF390592EEBBD8E61,0xA2402F58D7DF42BD,0x1CDC8CAC3014CAAB,0x8A2BA7F2186E0731,0xFF5703BD43832136,0x13E474D088E22,0x34DA9AB4DE5F1482,0x9F66274A5100F430,0x3D1F1DB437CEF4FA,0xD949DCA4ADD35587,0x30B90F9AAF9B6AE3,0xFECE70370DEAC3C7,0x3C9F1FCAEFA2,0x325D970D05B82478,0x6616D62DAF53E39C,0x13EEAAE4BD9A136E,0x7EC1490B48D5EB2A,0xE41006D47269FDD5,0x54ACE7AD07CF749C,0x212DC1E595ADF,0x4F1521AC6710C6B1,0x4A66FC8804A125B5,0xB8A76D2289435294,0xEF9B239F99D9F582,0xEA91B734AB8307D3,0x653A66567FF7747,0x15C168BEF0B77,0x50C01DCF3905A757,0xE1CE4320D521C745,0x53F0757590043A6B,0x1A71A86EB8A6FD2B,0x14E72C72B290D75,0x7630A002EA8B0F0F,0xCB8375A779E0,0x3590ECC749A88583,0x63D247632DBF7A30,0xE841493B52CEB63E,0x165DDE01BF4E7E48,0x166EFEA23F42EB28,0x5E6CA655F80BEB35,0x1AE8F655CCF19,0x59CE81A200D56B02,0x9B309C8DB394666A,0x6CCB522E3C19ABE2,0xAF3CA598140F2A92,0x79E3695A778ED089,0x57B667DAD3903DCD,0x17EE2D370992F,0x7404181C945C5E07,0xC0F768D3F50EBE6C,0xD718798D962EDE01,0xB78D513962391606,0xA4C2DBAF6EC8B84A,0x45174F93F593AA97,0xCC1E32D55183,0x984C581089CE807D,0xA518A730544F9DB4,0x7C5AD283E4A282D5,0x2BF5DA606E8A633C,0x11237320F34C1EBF,0x780EBA8DFEFC73E9,0xDBC1A9E0D852,0x468AFBFB812D248F,0x4AC18AD78729B300,0x4A018CE7BC3039A5,0x4E85B312F13EA169,0x897EF8CC903BD43,0xBF44CBC3ED75C48F,0x17A185433CB1A,0xE1A67052E24D71DB,0x47D6B754C481AC8F,0x30E28090C771C4CB,0x48BFA5E75E58CD12,0xB396C1633BB3D263,0x9265A047DD665B54,0x1F9D27150DEC,0x6A6A33A4EB026227,0x4F502D7EAFFE6205,0x29909B58EA9795CD,0x2E5A376EC650CF1C,0x8481563236BDAE35,0x5D75DB648B1E8C91,0x5B21E1AF5724,0xDC685D0DC3E26B9B,0xDC9FA533B337DFB0,0xFE9946BC9C7C7AD9,0xA179D6F9A6433F8E,0x1ED2A05EB6E2BA47,0x9E7B699B1B65CAF9,0x1215D31C38F6A,0x5BEFF278C7DA88BD,0xC839AD06BE540ED5,0x58B153B8FB3C09C1,0x1D80D8A58B989AB8,0xD16F6E81D3CA2D28,0x113CEDF44C82AFD,0x210BD230441BE,0x120350D86A72504,0xDD751D0B26754680,0xBE37CF40A62027B0,0x565CA751D58D03D2,0x74A4C1E6AB6E70BD,0x300A8360CBE9D081,0xEF6AD7B8693F,0x6370ABC4412F5D23,0x795A34DB98CA5043,0x72A3CA17EA7CBCFF,0x1FDCBA4A976A0E6A,0xBB23AD9481B50D15,0xBC36ACB5975F75FB,0x206ED60C2A89F,0x592E0D514B16C38F,0x767D73365858A10C,0x7055B50F355D6327,0x5AEF8B49E5D98C3F,0x9425F76AC4FDA23F,0x5FEB2CD69843E5CF,0xB7D4BB0CD8D4,0x6C1CD6002AF4A7B0,0x678E5C40558133A3,0x65CDF7E824C8B295,0x1AC3487DDE039037,0xE65C273A7AB63496,0x212DB48306A125A4,0x136B991A79A71,0xF272CBA3CD86A1CA,0xF822B5DF9F50F36A,0xCD8149DE291894F6,0xC216223FEDBB77F4,0x5DBC34EA9A932BB0,0x6C41B441100ED30,0x80A945B1C46D,0x21C81793E09D942D,0x5AB9011B38386BD4,0x4E726ED3AEF00762,0x758C643254DCD59D,0x3245B16C92BD61D0,0x1EE134BFC232D322,0x5EFF9210CFBD,0x1358569E74C3819,0x61701E48C29C038A,0xF15BCE69DCAC9B95,0x2F0CE8A2759C728F,0x70FA1C5C1D3A1D73,0x53A549584551E036,0x2E7F470BCB03,0xA22689292CB603F4,0xA2AB8B080CB6D5CB,0xCC062DFB57B7F088,0x94AD1D973A7E748,0x9A6541E2DB7EE6F1,0x8FCA855F8D648D9F,0x13B33A2C2C92A,0xCF19198A0C367FAC,0x3C90232BBAC99377,0xEB13848694390E2,0x4B85229FEC74DB8,0x21978AAF0E812A2A,0xF249CB7045C3B1E1,0x7B170A4480A6,0x2A14A627C8E7D3A3,0x9592D3608A2D2640,0xCFDC65013201699,0xFFD90242B7637E39,0x216E72B056ED0F5C,0xDDBD4E097A99BEE7,0xF086C3AAF972,0x24F22285DAC19C7E,0xF3777471B8DFB6C9,0x8F7845AEF2416084,0x72D3161A169957CC,0x87EDF60EC7CCDE6A,0x31976374B60FA750,0x290B66B05C0D,0x9120C07565546675,0xCE2891EDEE9A1CA2,0xD5676DA332F6BE73,0x671E4541BCEBFF35,0x242AED038DFF4C5C,0x3A69E28E95A7592D,0x77A380B1599C,0xBB948AC7647F95DB,0x2BC3E282693CFE73,0x39D6DA4D7A206F07,0x845F4C1ED9901CD5,0x630F130A33A6E54E,0x962599D90A70697F,0x1014F0432FBBD,0x9CF0E7C4B8A5465F,0x50350A811AC57590,0x884C66425C9C9259,0x3F1FDCE4565E1A04,0x75FF00229018CFBD,0x429253DBA75C36BA,0xEE660DB6E671,0xA42C5B2FE885B3D3,0xC0C4F6C0CCC3698,0xB9B17104FB1E1DEC,0xCAAAF27A2F8CB69A,0x8CA66EB775641EEA,0xEC6A789BFA6E1503,0x2441FCBA8AA1,0xDCA499773B929C45,0xC3A20FE6438E8B5A,0x45A5AFEDCC29BAF8,0xAB9F24A88C1E411C,0x34EDA03583918C8F,0xF9CC8280894539A1,0xEDCF244632AA,0x228B427F42466077,0x8BF746F0541874BF,0x5522B86B746370A0,0xBF3327C5BD107DE9,0xFCB7CE79B7F2CD69,0x4E17124213832619,0xEC8562F276E8,0x7A437C2D203EBE34,0x684466D2F9E5DB9,0x56035D1EADCA8502,0xA33CC63BF68423A0,0x8D610AD2CC887089,0x7F2BBC9CA0872EE3,0x301FA550FDD1,0x6DC6E08748E8C9C4,0x535413D9D8D41468,0x2CA20531A67DA368,0x600A164B7CCA24DE,0xB8FACED9E033DB54,0x75B945573D382744,0x12EFBCD32F2A8,0xB0EF8889C1E7E333,0xE225C16CFF150372,0x414E8527AEB622EE,0xFFE846B1DBB2EC29,0x7F46867FB4E22F04,0x3E53D47B5FE1D5CD,0x3FA5E1A6A210,0xD0EA73BC61DF2CEA,0xF453129680FAC2AF,0x8BE5081C22CA1130,0x49346C79985BA836,0xC42043D67EF0F7E6,0xD5E436C0F8DF0D4E,0x400FFD3E2529,0x250EB74C7EE09775,0xA8FEEEB668E7F1AB,0x306C611C86A9D870,0xFBB26E1F1A9D12C0,0xCA35EB147792F79F,0x5F6060F64E6770FB,0x14120133F3C09,0xCCAA61E9864982A5,0xF43B9182A0814DB2,0xE819AB728F47ED5,0x7948D9D986F98292,0xF7D58765948EDCA5,0x32CCEEA126B2BE6,0x2052F68023386,0xEEE200809F944896,0x26AA48F4A6AD5970,0xB8026C1A283E771C,0xCE2C17A3453E89EA,0xE137224507DCB55E,0x1C4C29E6F74A5D43,0x171D10B64B3C6,0x96DFD30EFFCF90B0,0x9E25F49D1C9C8D8,0x4DA91F6504292BC4,0x8E19DD5670172626,0x3B7C8C2ABAE79EDB,0x36AC6C6D5D51C864,0x207194D669579,0x95EC8BA3E346CFC,0xC1CBD6AF75C19593,0x488A8A16DFB80C71,0x1608F63CEBF02B48,0x3E8E77FA840F9AE,0x92644EE655F4D242,0x1DFCACAF898BF,0xA3EF5E88A4AF28D,0xC1733034606F3272,0x614E54173F0FF070,0xA5FCFE30F26F1DCE,0xADD2C87C76B4E14,0x94B1C85E8CB2AD91,0x117BB53B682AB,0x2B388F44027F1CAA,0x21029FEA571C7627,0xE58FAD890CC9DC2B,0x8749FA1063E1F2E6,0x44468E8D0CCCAD8A,0x879C0BC0AC9DF4A1,0x13390FCCED3B3,0x7089F618679FD6F1,0x27BE7E43D5F65F4A,0x395B1F2E138815A2,0xF5A8B1FDE031B0AC,0x33704C8B3A534F2F,0x443BB569E914F1FF,0x125BB443493AE,0x1D1973AA826AA5FA,0xAA10043558E12935,0x50368312F6EFBF3A,0x6132A94DFD9B6F7C,0xFA9DCF0023C8AD70,0xFB7E426FD9942777,0x8FBB48069507,0x2BC090C68BD8EE0E,0x764CE58DBC86290C,0x342F2B4087315509,0x6D6C844D366792D7,0xDF4B07FCBA13221,0x2EE780CD2361198E,0x15B362A1BE646,0xE7F17209CB8E1A36,0xDB89851D0CB308DB,0x6F04DFB4ED40D4E3,0xF44ED784565BB9A3,0x9D5C4E1C365D6A00,0x6A0E3B4F7B902C74,0x1BF0885702CA6,0x182935E4F6661A44,0xED1FA57AD444D8B6,0xB2817CFC86EB7B9D,0xF27BA78E19D3F6D,0x8CA6988F25CB8F50,0xA62E1A0F6B46F3B8,0x1D0E7C858F6B6,0x8D1C7818D04382EA,0x19A4DE6D0E912AC3,0x5C7BF61F80264FD3,0xA650F9F54BC86321,0x8F3C6400DFC78293,0x1CFEEC739B8AD6EE,0x80F69214F75C,0xE85D6930BE6FE72C,0xC80B8F443322C878,0xE9C2D55B597F1E69,0x5B9B098E9B057487,0xDDD1A8FD742EE48A,0x2D9C81DB9A3CC4DD,0x2341876BBA9AF,0xA2D713CA4DA69538,0xEFA983630A202D49,0xF58532E4A24C3A1F,0xA07DBA43E5532E40,0xAF7492709CE1A512,0x2A26EEEF9B7C9FC4,0x13E1530C78719,0xE0E26F23FF29A66F,0x8FE04D27039CAE77,0x8E7F0F5F6E1D63BD,0x50A05F46864DCC87,0x5A20616366659FBF,0xF98F63A203063AE,0x2296B7724AE91,0xCDF1E9A176A9FB83,0xD0D821C77909DA59,0xB95C5CC74F1513D9,0x1899086C3FD8A3B9,0xE5B4E4F7862DEDEC,0x72227ADF6DD4E281,0x136FC0FBC098C,0x2E089CF9935A4672,0x7FC8F4556BB1194,0x7AD2837DECC6176,0x1EE96BA08F355F31,0x189FFCD45A5E4ED3,0xE9BC5D7F4E0E3231,0xB675D32F43E7,0x722682B08E26249B,0x625C205CB137373C,0x773850FB6267C440,0x117CAE101635E96F,0x400FA1C9D733496D,0x43CB9098CA3E5E7C,0x23A7CFBCA4A8,0x55F7AC19EC3417B,0xDAE84EFBB5BA989A,0x606A3DE840E41724,0x6113727829E7C873,0x4D60A8D053982161,0x234FF0FE7B22D35A,0x11B714C308B88,0x977EFD821E662F10,0x4ACC6A30C04E0052,0x4699AC4BF5ACBF3C,0xAA51FB8D509B24DD,0xD7067667009B25EC,0x2DE710ECDB091B4E,0xCE727DDFBC0A,0x841BFD1407E4E26E,0x340A234FF09F43C6,0x6BA9B5F55257DC10,0x17D609C8CA9EA848,0x4B0B823418FD637F,0x80862168F9703C21,0x1275AEFF12068,0xFAD6AC9BF8CEDF9F,0x3303560E613096C1,0x10BFB22C07D6BF59,0xBD46013D14408CC5,0x4F95F951D67E12BB,0x23854556E0A53CDB,0xA43C1453AACA,0x4DE8107878D93522,0x4671522019FB4088,0x698A1F6DA7A13F7A,0xFAE56702E5E45235,0x9D7730557B28D017,0x99A66B9119BBE749,0xAEE6C5B38462,0x4FB4DAB428834060,0xE543D0DDF03C2DF1,0xC29FE99C65FB781C,0x2DD5B12060A707FC,0x34569F0A8CA5EC2,0x9E3E88A0B8A07525,0xB0BD165A2610,0xAF3FB7E7716795A5,0x7AD36A2F1935F422,0xB1F82BBE3B41B53D,0x691D602490E09FAD,0xD65651575044CBFB,0xA5812AC05BC3698B,0x23B85A4441E9,0x80D9DE02084A59EF,0x23F12E8C98479A6,0xEB37B64C82DA5A36,0xDF12F6FAF10BDAF8,0x189B10B584B9104E,0xC35E24E6F1AD4D55,0xF0FFDEBD1E60,0x6CDE861409C8C890,0x14FACB12CB84AC04,0xAC4045A116D2BE7D,0xEDB99688BBC3B9D3,0x53C6C6365329DE0E,0x5368F48EC3966CFE,0x39378A557AE,0x2799F97DF597D592,0x49C07A3BB43ACA35,0xADE8D932A952DED5,0xDE1624F6D647D759,0x4DD12913D2175293,0x84239BF5DA2FBC54,0x185717BC7D9CF,0x1D6F5733908AA93D,0xA378028911B50EE1,0xD9A075B956A69DD0,0xE5B9503F40C8BA64,0xAA44787CAF25FA2D,0xD8757CFD85C5AA92,0x9189A25D54E9,0xF7C883444A28CCE7,0x4CCFA6EFEBC19E46,0xF4803BF962B82674,0x39733C4E3D599BC9,0xF6D74E81D87FDC20,0xB3B7229C82E0685A,0x79DE2551A5AC,0xCA683D19CE892DEE,0x8D97C4CE7B878968,0xC5B3CF751B05B6A,0xA92027EBB3339D0F,0x84011C11D8EBC1A9,0x5D6C8BF7A1071EA1,0x93CEDA0D129D,0xD85A0BD98A863DD2,0x71963A806670B5B4,0x3D6639FA66817A9D,0x40119E8675733FBE,0x492297233F38615F,0x6B7F3CD9035A9B56,0x199C23F41964,0xCA0E1F60591CEABD,0x40FDB462A7BFDE71,0x42C032A44663A55B,0x76D408F7E692ADB4,0xB1C39A4E139318A9,0xC5B8FAA418E24952,0x17B161902517D,0xA9477207388956DA,0x1F0B590B9476C90,0xA4FD636879065157,0x727D597D39B692AB,0xE9436DFA169AF61,0x5FD1A0A263D94695,0x1A2D645863983,0x910C7514D7F54929,0xA7C9EB6AFF759BE6,0xB24ECDD9800CD022,0x57FF6ABE68AE3D0E,0xD4A23AB50E0CFB4F,0x357D9A617B66CC73,0xDB843312FB2E,0x309DB7349207FFDE,0x25FB41DFBCAD1316,0x925C0748631137BC,0x6C279324C574D9D0,0xFD3BEF269FA2DC49,0xDEF90D1F10221D9,0x8E6479BDCAC3,0x6C1384F34C25765F,0x98448695EB511E99,0x23E92E9E05006990,0xA3912E8922FC4E24,0xEA4AA2E4CB19C120,0x17232578D35C569C,0x192BB46F70239,0x64CC26D0FA313211,0x9B9BA33A5D033059,0x184062EAB4B72582,0x3679E17D8C6EAD22,0x3591B6809D2D5AE5,0x5BA93B62EFA11615,0xA6EBC90BF042,0x50E4F4B98821D4D1,0xB575CB814F310365,0x2ADC07558EC10159,0xA6A89B5061EE63C5,0xABE4C0C41FFEF67F,0x2AE3D2951337E71C,0xF6050E9D52F4,0x513998B93FB7B8F4,0xF6BF005E2B8A1C25,0xFA82E07DEE27C541,0x887FC0B87FD94250,0xDF1F205D4C14A304,0x54C72C8DEF7202BF,0x12F43D5E5181D,0x3CFB605CE4A17332,0xAAEA040B4B405D5D,0x878034393AB5BFCB,0x58A78023319CB60,0x7A59CBFDF4CBDE89,0xCBF4F757C7001F7A,0x199287F695931,0xE3354273A95E742F,0x72A24FE402EEE0D8,0x5CBFFD0C1E600473,0x46CA38E9B3DAEB14,0xE14C54A93AA29A51,0x25FC090248E113A7,0x116C76B8D8C5A,0xBC31759460FEEC2B,0x34F66F615176310A,0x568703F737BE1B08,0x178950B77374354A,0x1ECD99422103E64B,0x3C3641CABB5FD1F3,0xAD35C5A69ED5,0x4B92C984A3361EA4,0x3BB460616BD402D7,0x83740FCCB35EFB85,0xECE0BF66C6349E56,0x45C583D7E4787BEC,0x93DC001AC9B3041F,0x1FD22E6A24FCB,0xA23DEA0CAD67572D,0x8966D8DE6459FB88,0xCA42D02A039FE5E3,0xAA6532B6D3A687AD,0x5F949B6DECCA82F7,0xDE95845ADE1BF7E,0x1F8DDE7640597,0xAFE2BFC74BC9F271,0xA504017123B59104,0x8A6C96AD0066E3F4,0x60EE8BC87541C843,0x8FE520155C87252F,0x38264C323532C9CB,0x88EC9277AA85,0x85AE1C149882AA10,0x53AC6DAA0AD9DCC9,0x494A49D85759FD3A,0xA65763F99403B901,0x276C02FE797FBCE5,0xFC31EA317B686AD6,0x8D1B52DEDCB0,0x957C53280ECED01E,0x7278BF64F740CE3F,0x992D7106E08BBCDE,0xE913042400567511,0xB99702DD2C75E3E2,0x20EF8C192234B24C,0xA2B8C667DF0C,0x8AC50CA4B2143036,0x1295237A142E7000,0x3204E27D925A8DAE,0x2FE7B760278B2CD5,0xB1882B7B4DD1B04D,0xDE89A5C6629BC2AD,0xB57E7666984C,0xA98D39C823B86B43,0xDEA7852265C9E9AB,0x1EF85EF85888505E,0x867F986D3A44FB75,0xBC5B3116D1C5C5C9,0x81B27862A099ECE5,0xE68313271EE9,0x83033369198620B9,0xEEFC56A3108A80C,0x5D9C10DD74B01223,0xD25B0E6697161B70,0x4477C5EB2E96358A,0x6E4C1324BB16DCB5,0x2ABB5B332528,0x10711A48DA40C4D7,0xB874DD6F38501AC7,0x39913033073E8F61,0xCDACE4665A65DAB7,0x381F9C945A37CDB7,0x74A3708E395D3B59,0xFD205E728FE5,0x450C732825D39F42,0x6DA82924CDDA3398,0x92533B055624D79D,0x97540199CF72E85F,0xC5CFBCCE9E3D8665,0x3741EC05F2B37C8D,0x110AC4C8AC67D,0xA7C03B7A794A2C0,0x3900722857C30881,0xA8C441EF2E641D12,0x753C800DA8B95AAE,0x2E33B7FB49ED6FE2,0xEA829A0C10C83864,0xCFA2133FD629,0x99056B00E46EDA03,0xC7CB58BE96C3CBBE,0xAF9644CBCA7DCCDA,0xDA0CCCD04F8C7042,0x1C0C954C2DC9533D,0xFE8946BD5038C081,0xE7E5B4C3C495,0x8D1E10617AE6018C,0x3B2C930A125E3A88,0x60C44C8EC1B16FEF,0x4F211CFE26163B5A,0xF258F29D9DE7A575,0x6D64EDFC6902E2AA,0x10C573A373BE7,0x8E548774845DB5A5,0x4345637A44BC2699,0xDA037714FA5B8B1C,0xB2C8E6856A6C0F7B,0x38011D2909351F9B,0xF057512080B9ECDB,0x1B53EFEEA2992,0x5C647139F93E8911,0x213C195F24FDE0C7,0x40EC8ED568954FC9,0x39B6C759D4FE0378,0xDBD178BF289668AA,0x1EC3C7E2D8C8E446,0x1A2A40734EA3C,0xB13209BA1A8B4519,0xC9FEAA926625A353,0xE94B61E435D811BF,0x48C20CFDC389AA22,0x2463892FAB4155C7,0x1BF053B27A757810,0x138C6F4BA0B64,0xF659121E9F61C2E6,0x7E8970135AF94330,0x696F8055BA3BE107,0x5A3CFD16826D2976,0xF2DCB66A041236FA,0x8E0A81EE383A4DF3,0x182E1A9EBB67F,0xFC481FFC677E1635,0xC678EBD18FAC00A7,0x97E8679A96B4962,0xCC075D6731B2FE8B,0x394FF1008650CE2,0x8FE6D6037DE4392B,0xBCADE8B2A492,0xA131FE830394236C,0x641A4A6CFC021622,0xAB8145DA582C3F53,0xEDDD7188C5BFBA9D,0x643D219CA38C2A4E,0x758E45E65255DE5D,0xF7E62A420001,0x1ED7C0957C3538E5,0x78BA6FF2201FB760,0x481BC0C01367CCF9,0xB865DAECCC43959C,0x77F1F7806DC8C70F,0x1C2EC92AE51CEAED,0xA5C02B6C10BA,0xF31CC9E6FD0813E8,0x2344462F5EAF3A07,0x751319931D916906,0xAA885BC474B9245F,0x1C9C806D7D7DE4A2,0xAAA760C170A5B67F,0x58178A7C5D25,0xD6BBD20CE1C81E15,0xEC53B43C0463B2FC,0x9C4E4E29E2EE4238,0xC58788FD508558E3,0x793D47E589D42F02,0xF17E896FE3E8B436,0x211B7687797D8,0x62845FBFDD3605D6,0x9F9AB96CB199CEA0,0xFF027B962B5355EF,0xDFE590443F995C37,0x48A2C8C8C081BDB6,0x576E85E1A9492922,0x4485D2DE7492,0x441AAF50A7765ADC,0xC85FFB9509936729,0x1B483388F704517D,0xD9B3181A1C1604CC,0xF77B1FA22F46E894,0x9F9DD17A3BB7C5E4,0x2227E953EC04C,0xDA9A4A4A683A9E56,0xD65D4EFA9745D31C,0x18C3B0D12319785,0xA52A2F09E88C3E12,0x7921B8F458A4AD9C,0xD2FBBE08F54B445C,0xECEFD08658B2,0x1AF9CCF2CA16A3B,0xC6ACBF40B74B1B79,0x1A1AADC8E4AFD078,0xA73825A7A740B8FA,0x4ECFD80154708C14,0x9A05F2F76E39048B,0x199EDAC6297BF,0xF26CE6B3C9F32FD4,0x30EED38F8D91A2A9,0xA296F524BF913859,0x889ED41B52B989B8,0xF1CFF0B92ED0CB5A,0x30CD703206864ED6,0x190640EDCF66B,0xE5FE2CCF9E20DA1D,0x2FB60FCC57F7F655,0x637083BADE7F8BFE,0xE9427D7D504BEB6A,0x300BEB63D44C6DEE,0xEB2938D89370C908,0x30934DFCB34A,0x9E039137470B,0x6F3DCC21AAF903F,0x6ACB3ABAF5F2ACCB,0xB6BDFDAD68FB4728,0x5DBC896D04CB6362,0xCA64E67B2CA76FCD,0x1AA100509452F,0xF994305EAF53C5BF,0x4E05C37A0CBC0CB5,0x17768346A726A28A,0x11CF6926E3EA4A2,0x649C8BEF51BA9FE,0xA74EC9A5A3C0E08B,0x160FDB48B4304,0x9604E7530B283841,0xDE5D3AEC663A212D,0xB95145F1B99A99C7,0x90EAB5ECD4DE4247,0xD502799FE0311ED6,0x9ED934F7466777,0xBE94220B09DF,0x3A5D790A6FFEC7C9,0x8D9F3DA1C5B82737,0x97E32C881A0D83E8,0xDAA42FDED89BD1C3,0x46C45E92E997E66,0xD8D48CDAE7E7BA79,0x674C440D2866,0xBF5215000F10A15E,0x40E34A1F28B599C6,0xC78D2D89475A068C,0x9D63FAE954EA83FE,0x48DFE44E002499,0x19AF3A7D8043C1A3,0x572446EC8AF2,0xB55AA3B660F15138,0x45B02987EF451A5D,0xB1A72430FEAB6EF2,0x1E61951A0D939C92,0xBF8B87F3F95D64B4,0x4B2E1D626868E114,0x1B9350B4F7E66,0x4BA24D9CE94FAD0A,0x7DDB90E6850D3FF3,0x29D8928C50BD4BDB,0x685D858DC86D03B2,0xCE3495945B200E29,0xE8225B1A6F24DCE7,0x9E342CF87D21,0x213AB48B00E29C07,0xBD99D3B0A4E3D108,0x72D5F5A36C3C1BCA,0xA2160210780DFD0D,0xE5C253444A62C137,0x336BBCBCE3E02F48,0x39976769AC8B,0x70208293363DB27,0xB76E699117DC4B41,0x4C242367D51CB9CB,0x1BFA0A4634F0EC83,0x264055BE553719EC,0xD633ABE9F149B2DA,0x139DE7B163FDD,0xDF015B00E02CAE31,0xA4422233AED1C4DB,0xC17F03068B13698D,0xC351D52F59457464,0x4B0F3DFBFF83AE22,0x9C56345ECF99E3D5,0x43AB6C66819,0x7DC26F4BD1960F45,0x3CBD87ADE9B3C4F1,0xE854B765FBE7BB0D,0x61C91F58FF53D063,0xB3B6B7B9B58D8803,0x518C774AFAF9FF96,0xFE7F74EA5E43,0x963CBF7E03089379,0x1A88FB2FF3BF8507,0x5D84C1ED51F66F3A,0xBA3ADDAAF898E5AA,0x68B961CE95E0FC37,0xC7B9D4C72A83C381,0x6FD8FA0007FF,0xBA58E3C76C574B9C,0xD0D70D0230A00F6B,0x1A48DB416926EB79,0x6C5EF2DD1E2E4BAF,0x66A397BDF4ED066B,0xEF7149A223DBF99D,0xE769A2E98C05,0x973B0EEA2F002CED,0xF2D2A8397C1C5BAF,0xAA6D49F949237D77,0xFF19DE1EB4096DD0,0x56B9A92BAC5E1E59,0x8DFADE056361B410,0x8F74F6AF1FCE,0xF9142769B8A5C09E,0xDC1F2B3A186BB2D5,0xADEA82112DDD1325,0x508C4A72AAE757FD,0x9FF573D72F37F55B,0x2488CA3628A5E53A,0x16E3834942F49,0xBEE741B69BAA3AEC,0x1F8721AE66510DFD,0xF884F9E41240EB21,0x823824184AEDA563,0x644B46F6356E3EE7,0x80E4D3D824CC0A62,0x169E9FBA08CB6,0x51EFB82D1D0131BB,0xE477017A6C5DA5DA,0x793626A82B9CEE31,0x4E38D75D33B126BA,0xDA6FD67FE1257D58,0xF103AF20358188C7,0x11D7AD28ED593,0xF27871CD147DCFC,0xD47A2BC5830170C1,0xB3DE6FA5D1632FDD,0xC5FBF22AE9BD163C,0xC3B3CE5E0207A080,0xDA3822D40E59F171,0x1FF4C77FDAB5C,0xEB2CF9E92B4E8E0A,0x39B9A2FCFE6BC6C9,0xD43DD07116F81FE5,0xB109F16D0F0DC03D,0xD305CFE34D8536E,0xFFBC2E2E815671CF,0x77F9B197B6F6,0x54D19C6803630BA8,0xB7AD1C069EF9B99C,0xA63D5752CA05A492,0xBABDC9EFA5CD01AA,0x4AD8BA7B28B04BE4,0x7EA42306B4CCD45B,0x185A8EF6A828,0x1D29779603072BCB,0x98BB0106F3C9D8E3,0xC0D167F257E375E6,0x3181C8BB9914977E,0x1832D37F1EBD500E,0x6602FE3329132F7A,0x21878A5E7D28E,0x9085B7210BE48927,0x3E17F4E03EE5CDD6,0xEB336FC34B4DFE05,0xE2727B1F4E2CB1AC,0xFEC489A704A10B97,0x63EAC340E55BC180,0x2054A25D35218,0x32990C07D5AD90B2,0xAE880262C4886912,0x5256D5C3FDDCA3E4,0x70CE3079DB211A56,0xEC27AFD26BCE1B6,0xA557BAE72F5DA394,0x98470924F022,0xB1EBD5D81A2F4E47,0xE02151561F7C3DAF,0xA59388D3E9C53D9E,0x7DED93F982310990,0x664A13B359E282B5,0x521AE1FA2D19EC7C,0x16E9438796653,0xBFF32C1221077F76,0xDA58DEC4ED98DEFA,0x627E16ECB9686843,0x94B1302E5771C6D1,0xC32C45ED1CCDADB1,0xB9A85FBC7B24C48A,0x168292646FA4B,0x86AB41486EC91E90,0xE58E4D03FC03E313,0x4CA1DC5FDA7A1DAD,0x5DD58A3C8596B0C3,0xCB67E6BDDCF97C6,0x5B72094C52940675,0x12213FE7A62FA,0x3E81990B60A5ACA3,0x9871473A15F8F7C0,0x5C5301D6AFEEFEA2,0xFA4BE332F527D55F,0xA26F8A21ACD9BA4C,0x9F855A6B18F9ED21,0x16C393B4E9CB5,0x4B05CB864F0456EC,0x98753687AE1A8A5B,0xCE765F036910524B,0x4BA2F4A05BB34D61,0xC6B7B22AF514A63E,0xF03D69A9CE6F2ADC,0x148606F00DE52,0x3101895E7B9E6BE7,0x37C69D6CC6897F9B,0xFF59C6354206328F,0x679622D90521BE0E,0x2BF9F1631A50E501,0x56491BA643794F51,0x12030D295213A,0xE8F52AD253191A21,0xF977091C3F2E5E8B,0xBA8018B198231FDC,0xB3B17B160842A288,0x33A6E34665EDEF73,0x1B739B93ACC609EE,0x9CB68EF014D1,0x2A18ACDAE36BF4BC,0x2F76A86A3D34093B,0x55DF43B6B843D61E,0xD5421B5744BA8528,0x362BF42D59A7CD20,0xD66C3F9AE3B7F9AA,0x6D69ABE591D9,0x8EA81473E6FC49AD,0xC34E5EA9F9A2C9F8,0xC450ADE6A14038D6,0x94EACE30DAF7917D,0xE238CA5AE201A54D,0xE244B0584FD63136,0x2033838E34C3B,0x106CBD9B10379484,0x94CDC7028E76F44F,0xDE460838AEC9E102,0x87B47DF1E4B8AA43,0xEE2AE0B906E9A809,0x198E4E7FDA9EC9C5,0xF84FFA1E9C5D,0x2792E12CFA1BDAF9,0x6D6ED1ED0C1166C0,0x3F860C4703C8DCAD,0x7F0467627ADBB954,0x4CB2F34F79B31DE,0x3A39C4F25052F25F,0x8701EDBD7232,0xC36425449FE4C2C,0xC76362E89FDEC027,0x46A425758F1CC8BC,0xCCB740616F7501E7,0x6DB2B232E18E2036,0xD9F27AF67D2FEF97,0x2EC52247DEBA,0x339D5A50C49563A1,0x4F113DBF1F569F36,0x29ACFAFBB6FF86A0,0x48499077B38808F1,0x4971EC79066AFE88,0x706D35C45E802E78,0x9157C002ECBB,0x802A14B1371B3C10,0xD6BD68E2A7072954,0x2A8A66D106B34131,0x1B378F31C2F00A52,0xD49B0EEAB656AD01,0x18D21280D2CD9A62,0x150782C4DA8C2,0x4C185D6CDAD40981,0xBEAF2C501AEC6AF6,0x2C4C794323194622,0x9B59FE6643D330FA,0x2ABA615C945D4302,0x3F93FFEEF2333049,0xF39DDD2CE7EE,0xC7EB97C631AF8F22,0x6DE161DDBC8FFFEA,0x2F604BDCD0CF2CB,0x7911C61A30FAABD7,0x662769E526546559,0xAF480BE487AF2407,0x8ED1939DE3DC,0x54CFC67BBB61113,0x8E0489F8EB20D77C,0x7278995178C64C84,0x7F569007FA69CC7,0x290136D3847345A2,0x8BE7C446AB69B89B,0x119A9D1C82F7C,0xB5DA38569EC56E6C,0x330818C075DA3049,0x834FAC0004757FFA,0x9E5A90BBBF465847,0x58E9F80C959C330E,0x72E2CCDDAFCD42B4,0xE2C47B491B2,0x2FA2C04A577EDE78,0x7C56DC7374D48815,0x2634710DF9332C1E,0xE246F88EC0DF0652,0x89DEC8D42C65770D,0xE43F4DE7E794EE9C,0x1572BA4F41ED,0xAA3004EADFBF43B8,0xAC48EAF6AAF0110F,0xB9894D0D6466E199,0xEFDE5F75DEC3B118,0x8C297E5D7A8B49E8,0x300A01DAB52DF6E7,0x223E71288B735,0x5D7C754D4AD7FFBA,0x29EE9E36557B3E25,0x89A84459244EF533,0xFA934AEA25AB6B03,0xE399D9709FD8A080,0x46B9373F348C9D12,0xFC791149256D,0xE0153A98EAFE1797,0xF0C5F04325829516,0x621B431D1958B148,0xFCFEE863C0B98076,0xEFF294DAC0C81277,0x5A8CF85DE0E74CD1,0x13008692F0DB3,0xDD007EE7296DE436,0xA9534C752958CACE,0x1251D48CD60E03B0,0xC157EA9B658D9461,0xB9638E2BDBF3467F,0xEFCACA4237DA0CDA,0xB5E2CFBE30B2,0x38D36B8053BCC653,0xD85BD7EFE1F32546,0x330B55E91F9A92B2,0x4F322F9BE10520A8,0x41A5EE76D9C45D7C,0x6B520E929A5E5DC3,0x1359C616D0054,0xCF3315DA9DD95176,0x1B353BE82F0ABE81,0xABC2FE39A18B8E7E,0xF6716D520C15B8D4,0xEE8A9AF5D2D66669,0xBB012036DE1E388,0x209090C2618E7,0xFA36260B659122F0,0xAE7C0A3B27334CA8,0x652C139D4C279113,0x7B1487A9062A4DB7,0x7056E71DDEB4CA2A,0x489A0AAF749271D7,0x39ABF87F7379,0xBB271BCE5CFD6A7,0xE99E513F3EE3BCEA,0xD3DDD265C8DAC8D5,0x6E668EF7F5E78B78,0x2661D03D07C7A0B3,0x44E4F91974384EF1,0x14BCBD26B54BA,0xD91A032CBE8C3FC0,0xFB34199A793BFC1C,0x1DD537B266C75081,0x70FEF01D6F992E5D,0x14E8C9EFDBF5EF2,0xD5404CF18A1C8179,0xF9F5F57D3EFF,0x41179C04A9EA15DC,0x1517ADB40AB39A05,0xA23F9C61796608B7,0x7791976BE3DDBBF5,0x4A8C5A70A03950FB,0x8B48BF3288AF2A86,0x84EC52498E01,0x154F7CED5C38297D,0xD1764B3C06C1ED2D,0x8DD7D7988677E62D,0x9AA33B4453385BD4,0xFACCDB4D9F57E93,0x54BE8CD8E7A26B8C,0x192A15F9CA469,0x5FC875D1D2411B07,0xB83467B2CF3C3432,0xB77F174E6D819AAC,0x23E83004F39FBB0B,0x4B057A99E52D25A4,0xE2BD8B8AF6AF931,0x1DFBE0BEEA2FB,0x3858EB9CF06AF55B,0x4D17EEFA279D9132,0xA9DA20C76DD0607C,0xD2723289AA5EAAB3,0xBF013F83B4C73E2B,0xFE6F84619C35D29B,0x199BC0C0F1BB2,0x2A43306D5F587AFF,0x643AB0BE50F208CE,0x84CABCB6C7B601AB,0x4B4AE1D4CD76F1DD,0x7CBFCFB445100515,0x889F1FA2BC49F987,0xB6D33770F694,0x7DFE4CC85617BCDA,0xF7A39EE2F0911B39,0x1846A91B99AA3390,0xD261EA7F818E44B8,0x719FAFA1C1F9CF1D,0xB162EDC868F587A2,0x1469FF4B24BD2,0xF9B7B78541FB028A,0x39CEDA9B1402EED3,0x947A14354412EF3,0x3E0A9FAE115D650,0x7317B924C3A53EBA,0xE0ABC9BE9FA74E5E,0x157592107C2D5,0xDF54738CB1EB1B0C,0x64EAE29DCC5DF9B2,0x7A7E70D3D78A124A,0x28C4445D770BA644,0x54CC77A69A56AC16,0x8C0992523F3051DD,0x16474C7BFCB7E,0x111BD3479C2C2F09,0x2C55B065B7AA31C9,0xF0AB63FDD1626773,0x4CCFF5B67E5708FE,0x6212902F3E0D93F5,0x2E5A391470B31C32,0x12AC647C4617A,0xB71A498BAD4FB1A7,0x6371CC037C9031F3,0xA0779521CCB2883E,0xF9C4126D5BDED025,0xDCA010E41B13808D,0x1A123CBBA47D1E7E,0x60374E7BFC13,0xE37046930D00E43F,0xDBA0A0A7D957A6CB,0x227259ED16911B90,0x7D160623DDCAD6D3,0xB124ED3B07581A52,0x7346851C986004DD,0x149CF3EBAABA,0x16794B5EE6CE6FFD,0x704CD6C33A419997,0xCDEBE2298C56376B,0xB8155FE008D4425B,0x34A1CE4B27B6074D,0xAA672F6FBEBE1DE2,0x3CFFF7A4B96B,0x7B06D906FB47A35D,0xADE436A48EBB807,0xF18E57FF265E4EEF,0x60302BBD1BCE78DB,0x19602D936D84E4A6,0xB6AB6D212BD2F9D4,0x1C5B2485F716B,0x9DCF7DB2A5F9E59B,0x8D8A494A926332E0,0x9281B900FB23898F,0x9134D0FB7634F044,0x8224E01B80C52C1F,0xDDA1411D2953900B,0x1CF6555A63B4,0x8A0C817BCC55C76F,0xC4660AA8C95FB91E,0xEA12C10331BA8333,0x2E465887D8F53D06,0xC1A0ADFA219FA9C8,0x68E1352733C6DEF5,0x10D032BED5BAA,0x7B400E3886A892EB,0xD6B2017F8D71C09E,0xF21C23E20A5989C8,0xAD85642A580575A7,0xCA9F5EF57F5CBF7,0x2DE38D73BFDC5896,0x31579B483392,0xC8E31C8408FD62BE,0x615F2A587D326DED,0x35BBE790881B5DB0,0x2474377BE12E4D81,0x1F92991A880FBCE2,0xC3296840AC5197AA,0x1B96DE3BE1277,0xDF31CFAC5CF38240,0x2246F0A68001ECA4,0xC543C5AEFD708B4E,0xA9841130894E515B,0x99E8F869235D4F5,0x567086B4A6E21CD1,0x68C14676D6B4,0xB0F5879F5A6AD51A,0xF882189AAFF010F,0x5EB4753424A2E873,0xD7E96198DC29001F,0xCD267581F4508F61,0xD4A238CA8D676C66,0x61A4488CBEDB,0x6B9BC9FEFDA108AC,0x16A62C4ACCF81540,0xEBB7DB22E95B7231,0x4162EE47EBCDCCAB,0x862D5B347DB2A225,0x1525BD1ECB660771,0x98720EF290A,0x314F30B470FE3F0D,0x338BBFDDE03DF2CD,0x9074C6CAA8B38E31,0xA1D8B24E63884E7A,0x69D0659C12603622,0xF88EE87B9408A359,0x1F07F51F2F0E3,0xD9C8FEC6A3F08986,0xED62FE3466666532,0xD489BC7570CDC0F4,0xB4C576AC1DFC0F12,0xABA97F744BD66893,0x3119EDEF1C555547,0x1AD80E5062B9F,0x407A1EE9CB63E0CD,0x1900ACA836590409,0xE7317182154DF3DE,0x10D13D02A93D0162,0x56869C87AB10A333,0xB6B57F2AA55D730F,0x223EE6CAA09BF,0x74EEF204797A8F9A,0x8BA811290B57D7D1,0x2BC288C7E0F5C1BC,0x553D9E8B56F23812,0x51AD3DC6D32D3F25,0x3DA5AFE68C218CCE,0x16B19BD4C7F90,0x20EB1F6A9F75249D,0x5E51810A76D82731,0xDEE25145CCC2A89B,0xAFC9E1E784078AD2,0x4715EDA1EA8D3046,0xE28B0989292CAA49,0xDAF0C2C394FE,0x66BBB3AEEC191F5A,0x3F577CE42DCC6BD7,0xF9A2555F007884B6,0xFEDCC3441943011B,0x2F4E5C339CA22480,0xBE711B951CAB347D,0x7C7C1EAC4BE6,0x8C3ED2178F61BCCC,0xB794A5D0D7C6D291,0xBC5BA1057256E5E7,0x4DA64479AA25E514,0xBD2880678A18C68F,0xA0B473A650C1C194,0x1BB4148163983,0x7B1CB08592DF5DD3,0x1289EF1DC12EDF63,0x286082817CA374C2,0xEF7F5F2C36446198,0x982F8091DEB2C6DC,0xD5472513D786A5F4,0x6B7CC6C1FCF3,0x9CEE29A194E20A0C,0xA0B3240D4C08EAF,0x65DA4DCF583F51D7,0x8C470F5DD0AA315C,0xEBAB10CD15186110,0x6F4D74E4E4073167,0x1213C3A8DD307,0x22F80C6BC5ECFEBD,0xAB636425D2E5100E,0x2528B82F30776A58,0xFA33F9E6A984628D,0xFD275E4D1DCC2533,0x8894357E48036712,0x13DC115D286CA,0xBF19B2C615BAA99A,0x36E3B9C711C7DFDC,0xF163DE740E4F6A24,0x285BA2CFEC04B7FA,0x6E9C84829BD4DF4F,0xE99833D48C12E37B,0x69421D613DD0,0xB66DF7C2D9BEB4D2,0x4B7EFF6758A66A21,0xD843A5DDE2D52E6E,0xB75253440E1C4844,0xBC78A529F0CC4A34,0x60F427956C1A5689,0x9D080E3C7124,0x68CE2F1039846242,0x4DE75D23853AD253,0xD32887575C6A69EA,0x4200E254443DECA5,0x44C7468F49E52FEE,0x1E5AE802C3E4C873,0x1C0D455EE0DE1,0xC090A9512785F30A,0xAA14387CF93518E4,0x9F41F62F4487BCED,0x853D124AE7A1E73D,0xA0E37851DEFE6C92,0x22611FF4B4655B5E,0x17566E4BE998,0x59D5D937A555132E,0xD4CD7AA1D3137769,0xFDA68F1203A60472,0x615480DB66A3138C,0xE761526C2B2C0802,0xD16997A470399790,0xE6C8FB813794,0x8B00E9A73C402414,0x52B5615CDB18D204,0xC6640AC763205E01,0xDBA6E3CDA161DA0B,0xF2C39B9AC73132BE,0xA6EAD438BA2513AD,0x18644360FDE28,0x766A55D8CED99B89,0xD39193B5800DB7AC,0x4ACA310B4550B75B,0x4DF4659035FD34D4,0x4F5DF3401DAEA9DA,0xF4DEB85808456E14,0xBB186F1B23FE,0x6290B485208D9584,0xDC324FD222CF8E42,0xB006A971AF1241B2,0xED4282834DA4DF95,0xE806D8F8EA89B4FC,0x944D24B41456D684,0x7CBFEEA7B1B9,0x472DFF1CAE75E082,0x2DA2E3A09BF155E,0xFE24D0378807973B,0x9E81F7952D4ADFA9,0x311126DBECA89069,0x532FC04E3E31721,0x1087726122F74,0x639EDFDEF93AC000,0x1A1DB7D2F8979DDA,0x44D860F411C416BD,0xFA52C938DADB0E9B,0xAA3A0DFBB01EFB92,0x21C94644EA9D6C14,0xE87956E25479,0x5B6D860AD125E564,0xCAE3CDA7842831F4,0xC34AADC750309EA5,0xAAB6545C578A139A,0xA09251CA46670049,0xF694790E60356661,0x11D20E5E09DC6,0xEC67FA2CE2E71EC7,0xA55DED0D162B1CA6,0x80A374BAF04BCFB3,0x54BD8018281AB414,0x5443F4B63B2D70D2,0x56B76AD775B6328A,0x1C49E57DCB7D3,0x7FA1CD60F05AEDE4,0xDB6354215F6BC102,0x69C71AA5DE5BD68,0xF4B09313CF5D134C,0xC28B51A7B3311857,0x9DD3B8049EA776E1,0x1FF6B187690B0,0x1FBE8EBC2C2781A5,0x6AB3E87542503B09,0x153C4215B098C95F,0xC097425FA7E250A7,0x2349EE8B1378501E,0x53D880DB41ED5E1D,0x7CFCE600E90D,0xE04BA3A855BF3775,0xAE48D93CC0D78BD1,0xAC9FC2FCC7BB7BB1,0x4474A2D9648C0663,0x8E6BB54CA9608D4,0xA638A5B521CDE7D3,0x15BB61EC1452D,0xF66A2A390432740D,0x24041B587EAAD54D,0xB2ACD7E62A729630,0x4645DF23E43B1A97,0x71A8886D23D5BDA,0x7DCACD2685A0CD99,0x54944A5C471D,0xD14ADFBAB0ADE782,0x6805D009BDF4D45,0x95E66FFC9C36083B,0x451F3597A8DB5BEE,0x79036FFC5D08913D,0x4EC5E1CED6EE5D3C,0x3C9AD96FF78C,0xCFC620C4C77DE808,0xD24AA92E23C4353F,0x720EADA550F5CCA9,0x778569A2A42C8373,0x5EB093E2BD539330,0xD11EC11D95FD2BD1,0x183CAB0BF1833,0x689DE2D325BD90A0,0x82D9462CBB120F0B,0xB8288FCDE5A417BB,0xD01CD9A89D95C49B,0x7230D01B545E0226,0xA771CC006784334C,0x74B54AD065B,0x3676198D6C9EA7E9,0x58F87DFA4D614823,0x2DF809FFDE284D4C,0xB2381EDF3AD632B5,0xA9BA06D0DBFC62C7,0x56058EC51BFD727E,0x10AC7B16AC66,0x68C5D308E692B551,0x3F1028AB40C1E7E3,0xFEDB13CCB50514C,0x5AD9BE12FEA70FF3,0xDD86F592FFB26EFE,0x3CE47FF60E3F66AA,0x105F527B0202,0x978AD4596DED992A,0x222AC0E1A6944BB7,0x91A2FC1F4FEDBB5D,0xB30539561F08A7B3,0xF8DABE0E8F5D9694,0xDF57E3681D3563D4,0x8A19AB5B20A0,0xF15F8A8D2156E89A,0xB98F319AF99CA9FB,0x2BD96964CEAFD5D3,0x4BECA91813CE3AF6,0x9338027D9F8AD664,0xE8E149A477C40812,0xEFE7212E30CE,0xB81BC60D07102D17,0x9BAB3EFC559D1FF2,0xB52806E97F58C857,0xAC37C9BCFAEA5252,0x29C8E4D90CE26A92,0x20EE1827DD97CE25,0x2A14B8BBA097,0xFD425E44482338D4,0x53D2947F6BBB456D,0x64DAA584D1C2AA9C,0x899B8ABDC8ECBEA5,0x324B2477FB55888A,0x4C6332B8D8E4B9D0,0x1CF9612C64174,0x83E072F0CAC436E7,0x405FD8145E960EFB,0x56C3482918687DF1,0xF1A9E74C025B9B33,0x24F63FB54AF7FB9D,0xE331F4A7A6AC4AF1,0x1E767CC4ED924,0x7BF76849CAEB8544,0xE1208E004A400DED,0x1908F1A1FAC2B9A6,0x5E034694609BD7C6,0x2FFFFA47A5E4BF4E,0x33486372FE6536C8,0x14497ED6FB095,0xF154C65B6C275AF9,0x4C534B84618800A9,0x36616CCC466FAD25,0xE07457878250053F,0x9A47EA287DDE080C,0xB17C6DF83B886DD1,0xBD4CD80B690D,0x8E92A9239289BEC5,0xAE9C47A5F3075CE6,0xAAEDC8C44C1C235C,0xDBD93E0F8707BFBD,0x820DDE891C1C9788,0x50462C5BB24B7B51,0x159866821E9D6,0x78AB72A2C6E0D1D1,0x8FDAF5D21C422510,0xF819E1D3C30245BA,0xA8CA110289EEC956,0xFD784AC9440DB1ED,0x96816BD864302962,0x3683B4648B4,0xA16DD045F01598BA,0x1B1C47A3FD7A5AEA,0x7EA0800342314C1F,0x805EDCBC4F7B379F,0x48077F966D0ED447,0x1A1B7123C6AC1F89,0x202D202F47F6A,0xA26D12DACA81ECAF,0x8C42F40677D86BE1,0x934AFEA3E509DAFE,0x98672E134C4CE323,0xBBF354DF0A96D5DC,0x9192634BB41FC7F1,0x1E4D253F11BA2,0xF1C3F9D975E757BB,0x176A3593C8113C08,0x92A0C734D0514F21,0x1D4205DADFA0067F,0x1F4FAE047134EB56,0xE8F9047588B4AD28,0x15AE0E4A5B86F,0x6B13C7330127D5FF,0x1628D39DBCF45B08,0x5061EC8B17C5A44E,0xF2A79EE2D54E1B17,0xDA78C3756398BF86,0xA28BD539340C6994,0x1FC42DD49A70,0x3974CBC17E6A1384,0x267BCACA0B56CBB1,0x88EB53F2F5208A62,0xBC0A673467FDC4D7,0xADE19CDC3B6A0459,0x7A1442313415047C,0x2FF37CA7CBC3,0x289E2ED5F7117CDD,0x99A62FE9B2011CA,0xB064B46988B4025B,0xCBDC2657225FE8A5,0xD15256EB546C6042,0xEC032740C176C556,0x1A124D7FE94B2,0x97DAF7951AA325B2,0xECECD8AAE30CDCEC,0xEC90E896AEFB72C9,0xB2D812D1DA7FF89A,0x25BCCBEDD09159EE,0x5112B516BD10D74,0xE323AD18C05B,0x18B8239D92E6E721,0x8121EB1749B44B95,0x837968F8E27ABD8B,0x3B8E4D4C0D0213E7,0xB3D4090B9814D20F,0xA351D90AA32A56AD,0x61DA8F57A3CE,0xE9C657BAE8C388CE,0x663089B223407364,0x38226E15A2DD1F95,0x594BF04805B697E0,0xC520A86DD322E87C,0xFF286B520F03A367,0xC457B7D5B332,0x7AB47C7DC2D8CAE1,0xACC74560CF99463,0x69AE6898499560A5,0xEC83A014181A4F97,0x2AAF629F250764C7,0x27C5BE99C310AC68,0x1D47A579711BC,0x7F44A99726BCE788,0xF16016A706E11CB7,0x71543F576565BA9B,0x13FF661C5E248E7C,0x28B8CB5A7845F0C8,0x599280A3236C95AD,0x1834B6DB5CA8C,0x92CE6C03263E1AF1,0xB793B45B20B635A,0x5768FFE68A242EB0,0x2E8F6437BB7FE37E,0xE498D0C4FA9B873E,0x71637DDF47B5F7AF,0x155A84114E7B0,0x46B01FE0C12C4439,0xD68CB66F23BC6052,0x62DE66ACE0DBF298,0x9034E2D0B1639E92,0x78D57510EE99AFCE,0x41FF377E391394D,0xAD5569D73086,0x74E5C68FF8D409C,0xA85A44A437338BC9,0xC11205338858DBDB,0x4705292DA0B7AA1E,0x1056B9429E7D21C3,0x3107824D7AE9182F,0x1BCF327FD1D24,0x2335A28843BB0C8C,0xC70FA0D8F35C726A,0xD318CAB7099B3171,0xD4A8C264021CC7AC,0xFFF84BBAAEA931BF,0x1D6CA1FE80C3EE41,0x1F61BEE9B9D3B,0xCA6FC2C9276E6718,0x2533F9B4F77F856F,0x53B0F548E4DE514F,0x2B0F3EF23DEBEFDC,0x782019AC1CF09276,0x840A03434FDB1367,0x7F54FF35A5FE,0x7952158FA4ABC4D,0xE651DE057D882E42,0x31645885A010B122,0x18C0AD07F7AF84ED,0x5598F85A8AF5A79F,0x7FA6A9ED2F7B67E6,0x3B385C69B9B9,0x22792FF02465707C,0xAAA24A5CCA38773B,0x4EED2F07DF1BEBEE,0xAA29EFC0680222C1,0x45D3E8A4CAB935EC,0x749AE2F6D69D5DD9,0x1976700A8DA2,0x8DD65119657873E4,0x49E4381F7897FC77,0x25B994367AB58273,0x13B1178EA9687F2B,0xF076FA8C1BE691D4,0x1A78E438AC095973,0x98AEE39BB700,0x69A7DB68955FE8CB,0xD3DD60E34CF07B5C,0x481F1B1008BBC796,0x11DE3E6E4F5AE4D5,0xCC5511BD54DCB9D7,0xEE83727AD5293D97,0x1C8F16C1C1C54,0xF2FF8E6D5085DAAA,0x679B5E171FB88DB,0x6D4F6531D5DBE81D,0x53205659E63B0E8D,0xFA60342317DC4F09,0xF4CCF522FCF50C94,0x217A6C1B8C13C,0x90E64050D3C794AE,0xEBA2E0DF66EF966F,0xAE46BF87A1DD32F2,0x643033DACB5F04EA,0x1A9975EAFB2A63DD,0x76F8E3F286C319D,0x16BD40FF55A37,0x765144A4B4233677,0xBE38135ED1C72E32,0xB48FE3529EAFCAF,0xECC81562F0C333A,0xCE016868671C26C9,0x6F58324D08911C7F,0x1C388F40B37BF,0x172A4779D40AA171,0xDB2C58A3F056B0DC,0xBF1ECDA696B3441A,0xE83E03D70F68D285,0x162915D3A2721D6A,0xAE5DC64E846A9882,0x70EFCFDA3F5F,0xC0E73D459E6512E8,0x3C4B3F221759926F,0xAB9666963BE9A481,0xA817C06067FC88A4,0x864175C4A020AD76,0x9E84FC3E6F225970,0xD72C109AE143,0x3F48D690F1D98791,0x505A1ED68320502E,0xFDE9D756CCAB5E05,0x1942FECC09E21CF6,0xF41E7647C77CFB46,0xEC31FAEF3E584920,0x191A987B33024,0x780986658F546AF7,0xAC27E5B89E641E82,0xD5F718C4D22B3B61,0xCF55EF2F46804FBD,0x4161753260E0AFAC,0xCBBA21419F318D8,0x7D15494B896E,0x3F8493E7A8F2E8E2,0x5CEA906E421BC420,0x9C579F75B48DAFA5,0x8760E85249544C26,0xD23F02B127322F39,0x7CA6685B2FE74A3E,0xEE302FD78DA0,0xF10FDA99FDDFA2A8,0x6549021F265AF50D,0xB03A864187C721C9,0x840E8AC91806388E,0x1D3E4F40815DE86D,0xFE044D815201B5BA,0x8418AEBC2248,0x8F4A3F4B440AFA7B,0xFC3F673A4470792A,0xC20F4C91672057B6,0xD55C22362CF234E3,0x5BD647B98BBE98F0,0xD6C3C351B4297957,0x5F9A8BCBA49A,0xA93C4E31E251CCAB,0x636B3F23905443D,0x193AB1F72D3E0E84,0x88D66FED9FFAF055,0x65D0A21E72C31434,0xD38BE6116F552071,0x1E0E4CD3FBA25,0xDCEC3A128A1217DE,0xD32335B3C577ABC9,0x2D01FDDB4849734B,0x9063F9F982DF9BB3,0xE2FFD8BFA029F255,0x1FBA6ECC25A10145,0x21E994ABF71BE,0x786C8B22E2C511C0,0x3AFE8A73B058D3B2,0xC915B0840F62C97D,0xD2C3B58934AE3F7E,0x1F13AAAE91E64503,0x386D0CC3BB72EAFD,0x1C3E842C7552,0x972B2674C97E9701,0x3E914D548D2EA6D7,0xB66A4C45BFB17029,0xA5AAF8B8CFF6F42F,0xE8614F5F715F8539,0xAA3078966D7698B6,0xFB7476B1E481,0xE15C6D5BD645CE6B,0xBC752249D24FF5E6,0xF96277795F82D2C1,0x375CB035C8B78D05,0x2766BB982FD7065A,0x1BD4805C5B49C98C,0x215549A0F30B8,0x86BE67255D3E6ECE,0xC990AE7C1012A4E8,0xCCCE9338597472FE,0x415B910E2DA22547,0xDE73E59EF90E8221,0x64F58E5BF95EFF96,0x1D0B9CD8C2AB8,0xB2483AD51EAF1DF6,0x74D0ADACD7F65791,0xCBD4DD5C8B9A5638,0xF9B74BCFAF318B66,0xEB1A7BD7103047B5,0xFB8B2C26EB526468,0x109A878151FBE,0xD5F8930669741E27,0xD42996CA09054D80,0x9EFA220F69426557,0x58413140F716ED1F,0xF7FD166E629E8B14,0x372BB27ADECD9FAF,0x696FBB68C776,0xDF3E4441C7BBD91E,0xAA427987A3C792AB,0x2981789041E39A63,0xABAE04114188C79B,0xBB48FCB317A706A8,0x57AE6CBEA8A98E21,0x45AA45F4C2B2,0x6E9329AE6A18E91A,0xB82A6D227C16B8E1,0xA5C3DDD3C394500C,0xBE5254564619BD76,0xFCDBDC7B060EB03,0xFAAC80075286A1FE,0x7B880066AF7C,0x9850295AAFECF554,0xB42A40D63FAE01B5,0x5F0A866010FC00A3,0x9B714F12E6AC3C2B,0xABD959078C77AA75,0x722DC6351D15EF1A,0x15FAEF15F485A,0xC0F8B1E9D27D5F44,0xE2407DFB93FA9500,0xDB4E11245994F204,0x708AA2C6C4509AC7,0x89E62248CFB5BDB2,0xDAD9780F8C8BE912,0x1B0DC22F57F80,0x635FA45713CC9146,0x8690AE1DF2BC66AC,0x596A298A6C3171EF,0x6F1B60D2D8E52100,0xD464C1B44FAEFD87,0xA13E2FBF7D88DBF9,0xC070B5E5F2F0,0x871AC5E3E2CEC727,0xF883050E5618CDEF,0xC34CE77987193D28,0xC72258569B80A9B7,0x879C1340E51BACD7,0x93EFACCFB1CD79A0,0x139FFADFBE3D9,0xB02E003DA6402F9D,0x136DA31DA4B48480,0xCD808491F24C727B,0x88AA8A314FCE5A8B,0x8CCF093A6B780973,0xB1AEAC8891432D0E,0x40CF978D62EE,0x930B3D73905C7F32,0xD351B5FA8B62DD0A,0xC594F6C3F9E2C9A,0x618D6C0C20DA14A0,0x32F0A6617DD1157D,0x4272EBE676C89A21,0x23211D5C165BC,0x91B0412EDB225148,0x472DF6B993B56792,0x33B301741BBAB3C9,0xB6404D6B5E86DF03,0x75084F8A7E08D2A6,0xF4F7EF658E6B9BCE,0xAC51FE56B22F,0xC7A9A6AC824367C0,0x1C17C05F872FA6E7,0x361ACA6415D0CC78,0xECDAEB01B2E1B768,0x3E3E831FA38F8106,0xA31B47CC69C94F88,0x12DE94FCB4512,0x87D6BAB67937BFB2,0x825CC2E0DBC393FE,0xE0DE95D420FA2F2D,0xAA5C18DB7A51628B,0x1C0FA1A9F10B301E,0xC7754BA989B19845,0x11EABF045EB73,0xA170789EEE685EBE,0xC291D01B9426EFC7,0x513D097082775CC2,0x9D38A0BD9E4E28C9,0x4DA983DD7FF4B63D,0xB494ABFC2E6822E,0x4399B9EF85F9,0x47F2B5A0FA7750D3,0x2816EF2E0BBCE1A1,0x14606C2DE9A94180,0xAB830DFD54EFC156,0x1917982A67005744,0xEA88DFDA3DA7A71F,0x1CAD0BA24371D,0xFE7C0917E5D99FA,0x41A514E8091B8E52,0x675872BE2F5F64E,0xE0C8F0D4E9F29279,0x4A5FA14D6F015856,0xE64208A22CB19110,0x1E5F35C60C233,0x4253B0E89882750,0x18B52DAB37DDCA7C,0x73138C99629DD117,0x34166A5C01FEB3D8,0x66377950B22A2872,0x325E011BB4D01C71,0x127EA378FC78E,0xAA6977B5B9EA730E,0x65304D375FD8D7AE,0x807191B726873FB9,0x8B12F68C809247A6,0xF03DDC4833F2BE30,0xE527F7615178EBD1,0x21E622C1D6090,0xEC1D361C7A890C34,0x5CE698C901CE3FBC,0xE8BC75D40DF61376,0xE7C43A2217820532,0x5E979EDB4668B9CC,0xB9E9F20A2C270929,0x130FFFAD19D25,0x4C894EDD11AD8CA4,0x9966F40801879111,0x47908D99215D47F,0x87CB2812772D1E32,0x3A849D8F454A7C38,0x5C0D0786DCD9608F,0x1126F8816CE4,0x336A23274A27758F,0x1123B20D112257CC,0xCD783FEDE10ED5CB,0x995E8C269863BE7A,0xF53F3EE07883A2A2,0x52F4EF1710EF3301,0x1BF06A53B8455,0x9EF9E61D120D2FD4,0xF4B381F014A7F54,0xA1F309735DC79222,0x742F9598CB2DE5C,0x4DEE0F7571F05488,0x80C287D0A708CEB6,0x1B54FBA6C0D93,0xE8563D6716EA3FAF,0x55A5EB5287936190,0xB3C6574FEA0CF38E,0x98EAEB2B181DCA36,0x82F40CC3C9EB2F99,0x836C38936B8297F2,0x195C3B3FD7696,0x54D500B00814AF95,0xF34A06783C5C77DC,0x40EB5BC84E3B3BC5,0x5799EC2DDBC6BF0E,0x6B4C3F78216A66E6,0xFE156EF85DDFC159,0x1937D6A73A3F,0xDCAACD3393CFF964,0x1C1D0BE65590504A,0x37EAFB91E5F60BD9,0x78E36FB614586402,0x30D11CDCBB6466F5,0xC282A821C4A11F0C,0x2945B30D20C,0xCFA87F5D23DD3DED,0x6F650324E7BB63BE,0xE9E5DF59DCA2F2F1,0x8C71C65D80253DB0,0xD07D5143EC6DD193,0xD21E6003EB03F127,0x203DF40CC6B93,0x54445960FF5AAB75,0x48EB7212BE9CA9E2,0xB3735DE56593D725,0xB9DB0678FAFA6DE7,0xAABDB1564F6CEE7B,0xF3DBC01AE07A9FC5,0x1DAF2C3A89724,0xE86D050B50BC6955,0x8673D6B5A882E00,0x751EBE97359B7F35,0xD83437A5CD119339,0x52A581A3B86CF2A5,0x29F4D58CD410F170,0x49AAA15D26AF,0x63BE3A412B5D12,0x601BB9545DA86433,0xD5307F699D6453F,0x8F97813A4D4E5564,0x88D4B75390B174D3,0x6F2564C2063A89FA,0x8A821FA61FD1,0x683B632153C6C3A7,0xE8F0ABA49115275F,0x595BD1419E2A49C3,0x9719D2E6DC959FF3,0xCB4A3748D3A99745,0x82BDF0347CEFA65B,0x17A4AA693DB19,0xDE6D1170F68D1753,0x62DB796FF24E5A84,0x860500D0FE2C57D5,0x371435874B5E5FC2,0x640E5835580DBDB3,0xEC8EAE76E0F1D9AC,0x141275DB3F6A2,0x20D47A2CF5B59F6F,0x7513D8ED9F485F51,0xB2B71D681339714B,0x4BF615D642C1D7A9,0xE55C671DAFF0D0DC,0xF3D46F1E942F63E1,0x111936874693B,0x277486519BFDFE8A,0x93E0A713168F865,0x212D6E1484C77E5A,0x233750831FBDB32E,0x2A74B93344E0D76F,0xD46B4D5755FB0AA6,0x2D1133C6821,0xFD017B4D00351139,0xEACDA4F8CC8ACBF,0xD63A289F25A0773C,0x8271C326A55E364E,0x9AED312DCACF4139,0xB5688D216CD952D0,0x211178C25787A,0x49B91B69309F0481,0xBD4A973390A0A032,0x4547C9DB90854819,0x66F5B337FF2A3725,0x7E24BF7FCC160DAE,0x26DEADB59FDB6213,0x486C1744E712,0xEAD7EECFC37C70FC,0xC4082617FF141D4F,0x83A1EB82CBC793DD,0x7C8584B20C8CF66A,0x6E6EF8E5FA042228,0x39AB8520FB1705BF,0x199BCBD0F6E8,0xB8B315BDE44F8722,0xD483EFF6B5B578C0,0x7201C0B040B9EB90,0xDA354460E04C33CB,0xCD72A76E042EEFF2,0xA8E0BB76BA6700D2,0x23312E5E86EEE,0xA02624AF5164F7BD,0x44B49B5914B6CF2C,0xAB9BEF84D559FFA1,0xB620E606B33A2E73,0xA0B6FFD44930271F,0x36BAB20180DC548F,0x2CE3AA2EBACD,0x50E20EE7001E2C06,0x2CC2FFFB34FB1A2E,0xC7A29E8B69A6A8EE,0xB4E67D1BD717E1E3,0xA6CF060C0EB9778D,0xA1AABA7E516CCE87,0x18B48809181DA,0xFF39D48809324E6C,0x96495B563E333333,0x497DA74CCB982F45,0x8EBC99C1EBE619BB,0x5D325E6801CF6E6C,0x5125A711ED8940F5,0x1F56C66B3C8B0,0xDE2254DFDD00CF3E,0x52AECE48BBB14221,0xE9D7EF23BD7EB884,0xDF03B7126660549E,0x7E40DB751E40BFB1,0xE3E2DADE2D49C974,0x17141DF9A10D5,0xC3F1903A24A65A30,0xE363F1387C00A879,0x8E27B7D72383DFB8,0xAE20C1524A4A1AE5,0xF85773EE4E313CF3,0xDB34183C31F949C0,0x1C1F2A8968791,0x1B9EDF9B892F7C54,0xF1A289967B629D8,0xD452191BF073252C,0xB6D66863DB9174D6,0x627FE69E99E4325,0xFCC7292E25027917,0x7EC08A5F5DD2,0x8E32F5695FE42B61,0x80DBD0476DB4EF87,0x4DF9C3C88D2E2733,0x34F414C97BE3BD3D,0x352DD8818639CE25,0x9D7FCB8A30F5B895,0x557BEE28E965,0xDB5F411AFF826F7B,0xBD752B641B004218,0x9FB258566D44BA45,0x66E477A33BAE5DF5,0x476DB1E418F98852,0x42ED10283E3B6483,0x18F02656A8EA1,0x71E0B1D5FA5C579C,0x6EE7E3373F725E82,0x1859EF3475678A35,0xE33355F44F55FD08,0xCA401AA86BCD89F0,0x7B37BD03D864925,0x20C9591B36642,0xF328F375B93D94ED,0x64DBC4B37935FBC8,0xA4F35031FF93833E,0xC9994BCE6B9C1C37,0xC1BB424715475B0,0xBEDD0C90CE35B1D6,0xAE75B5271115,0x7DA09F57B67B3B69,0xB048A6A3F7CD4B01,0x4CDA946395D9F2A0,0x15735732CE8CB482,0x894E6CBA4F5A1C9F,0xC454D0F46DAA993C,0x1433088A5E8F5,0x16EDD231121573F1,0x3C7228E46C445E18,0x9395ECA32F79EB9D,0x10DE17B0ABEE9969,0x329E7C7B2579FDAF,0x402D27D40F43D59A,0x21251EB60DAC8,0xCC1D9D208220D11,0xFE776C05BE7B49EA,0x88547A5003CAEB4E,0xD1C81DC64DD018A9,0xD372B9EEF2AF7A3,0x528BA68E73BC2C5E,0x1D8D8F5452A25,0x8B9693D162106637,0x860D40E49FA44B93,0xB45E03FBB0B6880D,0x9D8B7A97620345E7,0x954E77B1EBDF387,0xE6DB7A172A2E10B6,0xDCBD2232C20D,0x98CCD6719AB5522,0x2AB1823D9F773F5A,0x8107D1149B1AADCF,0x817292464845BE91,0x8CB812EE1AA0EF1B,0x5FDE8367B5A321C9,0x10A9EBE7EB1F5,0x998C4416B4CDCE74,0xCC8C7FB1A5BCE072,0xDD02D529159FC3CF,0x79243D97CBF3ED6A,0x5CADDF2C4C48687D,0xCE54ADA1651E9366,0x1702343B19A40,0x7D0260E0AE11DDA3,0x2C06C997E59B4134,0xD194E028CDAF04BF,0x484F5114D18506A8,0x65452147F4C9581F,0xCCBC443EE98BB3D,0x206A41B99E1D0,0x522E2D51AE951DCE,0x8B56D118B43F419F,0x3E37D7E9BB1AD1EB,0xE72D693CA698F2EF,0x72CEC13AD33E6535,0x58688A7B67245523,0x847C33634AE1,0x364000D4D4E7001,0xD1468C7A0336B225,0x269119303C8EDD45,0xE03096075F011BDF,0x89D78CA210D38B4A,0xA4640CC54DD85CE9,0x2232C24CE7099,0x4515E53B1C86875,0xB99D8ED4395F553A,0xF8C1D45FD5BBCB32,0x72B5B3D162B8FF33,0x97EF897AE189AEBA,0xE1B3AC57274F04E4,0x6E373EED4E4C,0xE9C4A032EF0EEDC6,0x2F8556A4BA269A66,0x2DC1202BE73ED028,0xB1AB548ACC01BC2A,0x6B9C9E0CDBA03C06,0x1D41F3016B3C6A94,0x925C716F4096,0xBEB656B25DCA9C22,0x6545BEC3CA212DE6,0x669BA147AD23BD88,0x475FE8FDA073DFC1,0x7BB8001812419FB6,0x6F86C73105A770AB,0x6B94DB6FB92A,0x8526A1A1092AD16,0xEA491C6522B8EF68,0x30FAA7E486EDB08E,0x4B5D2FA02254BA40,0x3CD74AE0A1867200,0x7821567E58968EFD,0x31265A358695,0x99E75DF32CD549FA,0xF89973A411A82AD4,0x61C0A1B4A7B7A5C6,0xE464C9E614545A4A,0x1EEE7F0D7719685,0x9709776EF0D36600,0x1934F7E3B7FB2,0xCCBFA8FEBD42C886,0x53A47C00688D65BB,0x84687B17CF2959A3,0xEC6B7F8E9A3D8C76,0x168415BCF2D2C9EB,0x53E022D143C2CD06,0xBF945126E3F0,0x186672174DF62E12,0x6A0E2520D0222785,0x32E01DD296C33872,0xDE043FBCF8B14D6B,0xEE232061F3DFC6EF,0x801C132B2729C7E5,0x1FB6C9D81931D,0xB30FA9146F9B82F3,0x82CF48A64750FE45,0x6CD678EC616A923C,0xD64FD3D5BFB76EA3,0x382CF64B4838AC16,0x1E0C4C7ED30B777E,0x2166147555E3A,0x446E623C50964A4B,0xDF88BC7AA4AC07F3,0x2FAC55450BE56B25,0xA577A8C300C181FF,0x2DEA04FED471D802,0xDEDB2EEC8B02E025,0x2A0E8B5E1438,0x575CB3A82EA7E973,0x2159D7D597B7C04E,0x72945394923E2E5E,0x54DF63004844A56E,0x1F4ACBD0FF66C76F,0x57F27BA958403D3C,0xAE52B2201BC,0x729FCDB137C072CC,0x183B1C54FA56EEBE,0x8F7F249F0F8840E,0xBA3ACE9577F29E2C,0x1491A104B0243A21,0x81929ECD7043521A,0x1835350FDFF64,0xEABB5B11E578BFD8,0xC3FCD2D4D7754CE7,0x5182E783A2777945,0xBCC93B9AA62A2025,0xE44D39097A14DB44,0x9D6A87332DC4F0FD,0xDEE6C41BA6CC,0x66CD22B5AEB13846,0x2ADD1658BBF4022C,0x473D392F7D88583,0x183E57002020EF05,0x4996D20FB031BAB7,0xDE5B1733D945F430,0xC3767432F1E8,0x6C6FE341ECA81B95,0xFF8D1C8E58CD70E3,0xD745E2289AE73B3F,0x3D1AA99D220FC798,0xF751DCBEC73C4B5A,0x3D23402D90770566,0x19480E46DA256,0xC935ACA301CB26BC,0xC71BBE51FD3403C0,0x8B404D75D67DB6A2,0x73E825B095250BBF,0xD9FEE44CDE0ABBB5,0xE677EB3FFEB2414D,0x1CB6F9A2F8056,0x9B584DCFA6CF4E85,0x55A868C72C852F5F,0x8AEDD96C1AB1E2F2,0x1326AA63922B267F,0x8C2E2720CE784887,0x502C665FB97D0778,0x24E23B0CAC34,0x3E4F7F5E0741C16C,0x5B98C66B0E3BAE1D,0xC68464ECD2A12E9D,0x51D1A7A2B96C5F05,0xE4B2D3E4735BD69D,0x18AE16C4300C1FC3,0xE88B001ED00E,0x6F9F1A6A0893FF6D,0x1ECC5C93CE737F3D,0x3009CB937ABB34BD,0xA3C26E927F981A0C,0x6965A2C204306C1C,0xE35413ED8B550DA0,0x23C8AC1599D3,0x754B6E36893D72CD,0x57603520E302D03B,0x3A436847C9D20CC8,0xA09ACD59E5BCF847,0xDE29947972DFD9FA,0x1830FE12509D5B05,0x2B87C9343083,0xA07F3559D74C3506,0xAB5324FCAA0C37F1,0x1B69EFAC9B386DCE,0x7710772B70183462,0xBB886C7343E2AA65,0x852EAD70F898AE25,0x1649023E22174,0xE5D039AA41AC81E5,0x6C199A9F32E8352F,0xD0EC323CA17C17E9,0xF85C5918F13C8745,0x23F83288D08901CE,0x9B47519758D25FC1,0x1328B8618D156,0xDAE53DB63EA6C876,0xC7B02ED386DBF867,0x2101028A9089C2F4,0xEA4E92E356D097D4,0x9A1A2255F107421C,0x4AFF4F8612F8DB16,0x15F54E06D8659,0x23CAB87569C4A7DE,0xDD464417E560E457,0xE8DFA358CD1182F7,0xE741B0EE9AEB2656,0xEF71EADFF7C71672,0x987902CAA437C6A1,0x1B930088EF38C,0xC19B46143828341D,0xBCA58ABE9B58034D,0x3CAFE3696387BF25,0xFBDFF875824E3E96,0x8FB4FCB050CC464E,0x5EC3AF169BF60EFE,0x54B0A710E1D4,0x66B2D71D412B8B90,0x75FB9B35A96FF364,0x4A41E7D803C1EA70,0xB442FDA50F47464A,0x95CB655B74F4EFC,0xE2762804A48B199C,0xAE8FB19F08BA,0xBBBC57318C40EE38,0x3B2F9ABA67F1715E,0x3350110AF668FEB9,0xCF66D80E08FEF3C0,0x6F75CE363116C8BD,0xA4EE479618C88353,0x2B4A5ED89A7C,0xB7484DC040DA8F83,0xB75ACFE34B3A7AA8,0x1956332485AE28B0,0x2B99A37A425E6421,0xE1DC5F9CF8F7044E,0x74C79C44E6E159BE,0x18C9681AB49E,0x5225BD883BED7D2D,0x20C2679D07DE313D,0x835E350129CEB477,0x297F2045416B3A55,0x29A316EF622C7E02,0x8641CBC3FE6C344B,0x77761E14B923,0xFD7C1004DF5E48D1,0x1E23DAD127BB0502,0x71346BC587CADD07,0x22C67404DEA995C4,0x873A517E769EC5BB,0x4C171F67DCDD078C,0x19147DC1C1227,0x27A80083D14317E1,0x240A41A7E1BD2A37,0x79D1FCD075407399,0x714CAB4801C29F6C,0xC7A6D14174FF641D,0x7D9EC7F8FA86048A,0x140527E30E434,0x29D4B2E1E17D7B84,0x50B5E6F4CE467103,0x80A35480DA7B3064,0x7B386EA9050CCC49,0xCA6CEAD20C69B168,0x7C698DD480EB4F02,0x1179D1D824946,0xB3B4B953B33A6421,0xD3539C35FB007C0B,0x3088628DA9D1C5D1,0xC15801B2F093C909,0x2A69FC067A01D86C,0x831B1D90A3CD6715,0xBB8B7BF2F1C9,0x362415A88CAAF813,0x599C275EBF585EA6,0x566443304B184C2A,0xAACF19AADCDE548E,0x2FC31249E4EFD541,0x4943B9E912D817CF,0x9417F1344643,0x19A20EDDB6F8A372,0x21628BEA52749860,0x512DC1C5069C06F4,0xB0D9A24E2540B14B,0x1F56ABD0A4A9BD4A,0x575C823C12A6A4AD,0x7BFA5A1CB962,0x115BB9306D93CDB9,0xA372BF6450397744,0x6D9707F65E58FB23,0xD6D748A9945488D3,0xE01E24A50A680097,0xD109CA16C90155FD,0x17C3355EB890F,0x49CF425C617200A4,0x901AFA9F50BA8F9,0x1016561509D7D78,0x89B24725DC851889,0x42AA720DD4178155,0xD683E1EAFD7B5C31,0xAE0E9F4983E3,0xF86BE32EBB1F903C,0xCE4DF9F435D4D8C8,0xC172B75FCA838603,0xC99518AC1EBF9AA4,0x222D02C4EBB4D106,0xFC7568A16B6C8FA8,0x13855819F5162,0x1FB7AAD0AE918EC5,0x79307E694D0420C8,0xBFBB5C4AD52D8856,0x76DD5D194A821BB8,0xDBD4D57415DBC2FD,0xDBB86CFB126DD3E8,0x1B90FBE352C47,0x4180170BF187DFD1,0x3D20F7A2E5731F0C,0x2B29B79096A9A245,0x442A49AC773CBC4F,0x8C9CF9859B34BF82,0x501AFEA57BADEA05,0x129D4ACA0106,0x178F98476D8AB26A,0x9DC62E679AA869E3,0xDECD81B5A2FF4287,0x8DD6832E6B6EF36C,0x8533453283620828,0x6A84A82FC6B3D1B5,0x197BAD1C5D477,0x93925BD16ABD042A,0x5B030E05B9063C53,0x824A1249B247A538,0xADFA2CAABAF7C92B,0x2E7A521CF9AFCEAB,0xBCC6B69EDDC323B4,0xCD3AF077FF29,0x53A04F6B25F6A6C8,0xC4A36CBC920C9A2A,0x4537BEC88ACAB5D5,0x4396585634C774FA,0x2388C0567C6C115,0x8960F3C52683471B,0x2159BABBE40A1,0x8E181A54A3EAC58E,0xCC830D29DA4B31C6,0x6031C923DBFAE762,0xB91C3EC32F9D5EF1,0x8A604191C14B20BA,0xE6896FC47296750D,0x721A410246D5,0x3ED39D51DAD842BD,0x4ABBE270659232C6,0x8A7C0E0FFE61205B,0xB8868DC0D026C4ED,0x328265C8CE6C19DC,0xB972C30EA38E6D0,0x122E113BF4DF2,0xD5410541D093064A,0xB70528420E86171,0x33365F520D16096F,0x936F54BA7D586F9C,0x3898A047C9023797,0x28C60F3579AED73F,0x138F0125D5C95,0xDFCBCDFB7C4805AD,0xB43E448B7E3E9DCC,0x60F9ED800A37E9A3,0xA03CEF6F6A56CABF,0x78629FDCE61E92A3,0x96A258EEBF131711,0x17E4757DEEC2F,0xCC10D4313A8135DD,0x75C5007A6B0DB985,0xC7056D9325A4B75B,0x1A1743AFA537A6FB,0x68F9031402CDD77F,0x209AA4971C2F352,0x1959DEB5D742E,0x7C0C76D84C26F44C,0xE1C1E195D3933817,0x14FA1E6C340617D5,0x3F638152E4EFC99A,0xB430912D9A805B00,0x9B9BA4847FFE9604,0x1C0449D2076F6,0xC7275B149DD1A5FE,0x6B24F1CC50DF7972,0xE286B78322F22C81,0x9946C35A7168E865,0xEE8E4BC759E7873F,0x8A64BEFB0A7F9A20,0x1CB18AA039C25,0x6D28336C58F73E30,0x725B50C04460EDC5,0x5CF888D713FCC1ED,0x2E54BE3E35D2DB2C,0x494295D0E946CFB8,0x7210AB8A084C7982,0x42FD9B30D5F6,0xEDA5D34BD1AAE0DA,0xAA56DE87CB3C6ECB,0x44D78A51DD85F9AC,0x807A46E94372867B,0xB81452500ACA79AC,0x9B390708D4F3BBBB,0x21366D30116E5,0x64184C2240999BBF,0x4565AB187EA5B623,0xFE53D23A14B3DC65,0x69C462B66449CB92,0xB55F63716A7F4B66,0xAA313D1E702C47FA,0x20B4B0C6D5E06,0x28213AEDB766D70A,0xBC56B59ECADB8DB6,0x345EAD5E9CB094E0,0x701D53B4419D8B16,0x726F4BA122BDB4F2,0x7F6277F789489550,0x147F55DD5F077,0xB5DABB19882D1CA6,0xD0653EBBA634DE3A,0x680D1248F27389DD,0xDB6C05E99BFA018E,0xBF3F75DB70F8995F,0x95C9F02E20BAE066,0x11D27A38FAC46,0xE5780B696D0047BC,0x7F2326E9BDDDF8A7,0x9603717332134044,0x7D4EBBB5D346896,0x532D2176AE4DC1D5,0x44A1882B27F3F864,0x1884B6C3617F0,0x6869618B986AB9E3,0x6AF03C28713E04B4,0x34E132B80B8B3F37,0x303E4DBD03F8A262,0xF1AC57DB3B80D94B,0xA1593F83270A71F,0x20FD628C05C6,0x195D43C00E0C5A7C,0xCFE78F2E07CED9BF,0x72DF12D5BA3F6638,0xBA30C462C8626994,0xB1EC4DC347193829,0x1D7F028D72B50CF2,0x903AB5EF5106,0x7606F8454C62194,0x46A4C41BE40D7849,0x39CE9CAA07070E7F,0x5C8FB682E872F843,0x56A05C134BAEF6E9,0xE4C90ED6FEC5AD4E,0x18B9769DDECF,0xB500561B57EBA29C,0x4D890A9534362A6A,0x54AEBC2DFFE806E8,0xC7AE4B3426DBCFA0,0x67CB4E28BD96981B,0xD1AEDA4BA1B1FB42,0x2228B040C2C5E,0x67CB873DF8A2C398,0x8B29E9790941BF7E,0xB506676E78C68431,0x76DFA9A848602182,0xB2651498D5519975,0x35771E20E10726F3,0x1135D89F893E1,0x6711E4468F956C38,0x6C66504A6FADBE92,0x620A2748025FE86,0x4351E917E9653395,0x6993BCA968EAEC3,0x4636DC368EEB8338,0x2E4F9A43444E,0x2688274E05EC15E3,0xC30290D7C2FD8F2C,0x9C3B86771EB6ECC6,0x5E42E53351BD3D1D,0xADF69AE1CF78FC3F,0xA75229CBA120E2C3,0xAA81D63AFAC9,0x56FB8635AB73ACBC,0x7B08C4A69B97F485,0x39BCE756FBF1BDA2,0x73C83B07755D36B3,0x883DC07CCBA9C937,0x7637206E603F2362,0x22EEEFFBDBAB4,0xA34FB49D5C921E6C,0x15D9C3506829EFFB,0x8017067261B8E6CA,0xBDE7D62EC1A1B5DA,0x9092286EB292FB89,0x5E1AB75A3CBBDA4F,0x103938A4B5459,0xAAD89605EF6DAF0C,0xFF9BE7486AF576A4,0x49C7767ECD4B434F,0xAB32040DAD7C4CF1,0x1080A5244019ACAE,0xE49CF12D166A85BD,0x36E406F47997,0xF86E6720378A8D76,0xB6C618C98EB2D0FD,0x595B15ECFDE582CD,0x9FCA16F68D4BBEAC,0x205478615AEB07E8,0xE59A63B3A2976B2E,0x2270C4E8162E3,0x9713C6BC945DF6A0,0x6AF51243CBB0BC5A,0x11A4B45CCA01545C,0x17EE1491BFEB3D07,0x954F158CC7A53D17,0xBF90F17673C96F75,0x46C02CEDECBE,0x71646DA3AD066784,0x5FF729C48A433944,0xD5D299F33EB51832,0x5A09CCB6E6729F56,0xD9CBB96E478F9741,0x2F3C87064670CFD8,0x1E98A0BA38AE1,0x6BA17E7A8F4A8960,0xB5D0BB0E76D75154,0x843B4D98327A053B,0x36C0DD431984DF23,0x6CFCAE77C78C641F,0xB0D48FAE4CB04739,0x1B7D921E5D9B3,0xFE2DD134E99A582,0x87478C7119D9C2A,0x73AD49C3B9AA77CA,0xAF88BBAC08974F3B,0xBDC2FA3DDAAC6D91,0xACAC4CE1DB25E4AB,0x20E1626F6CD7B,0xFEF58A08C03A8514,0xAD9C83CEE35C3094,0x63DC7C34740FAF1D,0x497FBB8C2A8F2416,0xA815A25221E4BCC4,0x12B51BBAC77A37CF,0x179009F926B0D,0x9E41417F1A1DA33A,0x973806A75E1DEF4A,0x6CF76B9285092309,0x123A7033869EC304,0x28A6110D1057831D,0xB98FDC2F6E1CF3F6,0xD56A39115A66,0x105D856279443F4A,0xA835B4D4696C59A2,0xCED4F6077405F53D,0x350513C07EB65D75,0x2470E3E8BE5F66F4,0xF432F04AD3DA6939,0x131B20AE96486,0x4490A47DB29FAE6C,0x28B76AAB02C717E7,0x790CC2B39994C5CC,0xE509A1D16AEC19AC,0x982A5787ABF5E521,0x2BA5E86482EAAA27,0x9DC7CFC39B45,0x23976930DF0492DF,0x7212140DAFAF2E04,0xDF00140D54E2F3B4,0x69C129B57C8FF828,0xF6D747AEC2296BE8,0x9E29B46DB988FA8E,0x6DEBE8C3D340,0xD3CB76800E25D461,0x162298699ADE5D6D,0xA6D9603BCD217A46,0x284E370F81BB51C9,0x5D059DCA27177796,0xB0D013EC70CF92A,0x14A875791DC1D,0x32C14C775D1D7F17,0x3A0F1AA1FCF4F7CB,0xF2018CF4B9AA522E,0x12AE8F660B59E7A8,0xA5625F52494198B9,0x3D362EAE0E84B0A3,0x16C708BEF4B2C,0x6F0AD69D242E212,0x9165D0186665A5AF,0x9D3538FCBFD479B0,0x17C924EC609C82D1,0xD48C7937407F3B8B,0xBD041F9AAF1016E1,0x2AF4A06F96CC,0xB9D79BE5D9AFF3A1,0x25B9251C88EB326D,0x83FAFD08B9F46F7E,0xEFF73AAC816458D7,0xC5FE567323AB9CBB,0xE9D215BBF220F7DE,0x119C19DD2A164,0x7BE48B8B2A004A55,0x769A26A3FA3AF6A2,0xDB4DE9C7A1229B78,0x8C8E28593579581D,0xB06837AD5EA3B976,0x9B6B75024B1C0D5C,0x4D2777704721,0xE4D60D23944C84BE,0xF5C54A183138D642,0x5AAE7624775DA793,0x8B36666716372609,0xDD43BFFA76CDACBF,0xCCC2F8DCBB3FB105,0x1CD44A2EE827D,0x4CF7EBE4E9EA3DE3,0x6A050C60C5657BD5,0x632920B8D3BDE5A1,0xF4FDEFE3DBF59A0B,0x13C715641257C5A4,0xB7C2EFA8380250A6,0x231FA490721A1,0xC7FF61DE6BC48ACB,0xE12E0BE469935E5E,0x216A909333808A52,0xAEBFFDDD33B3AB4C,0x74E028367EB7E146,0xF5A6FED7DE7390F9,0xA4F875E30A54,0x2DDB0C4467F3B096,0x4B9C804850027C87,0x3B3E059244E361EE,0xA3D4502A459C29D5,0x603BB792FD548782,0xE51C390EAB618784,0x661A72C3C300,0xA6F5019003F4F264,0xFA6C85AFB86104C5,0x18FCBC71ED0911B4,0x2696769E7AC50892,0x7CB769C44F7D6666,0x223F804B8DD0D5B1,0x222976E52520,0x623876015A08F9A9,0x99AC69724B747BC4,0xBE11143A85B3C619,0xAB9BE8A087DB4CB5,0x7B37D9312205027C,0xDC584993EC9CF80A,0x120488C2D9BD6,0xFDE273B8080D946A,0xDAA30AA10F1559AC,0x6B94BE96A8FAB087,0x543C42D82163D6C9,0x66F3845AC288428,0x6AA1DDEB83C5A2F7,0x12DCFDC0B3953,0xF7F5A78E18E118FF,0xEF6EDB87A851796A,0x4A883DB133BFF88B,0xA47854C72AFC211B,0xE271AADF9E9846A7,0x6BC058274F89287F,0xA85D9B922380,0x24DDA7B31D7B1D10,0xD74E2236DD04D7D7,0x14E80A0CCE4C6CCE,0x5EB981721804DFE4,0x195938B89CB494E6,0x7805883C70376DF8,0x19D235CF7902C,0x4A902CA33CF1D812,0xD18FDFE9CDDF5847,0xA0ECB268B6F6EB6B,0x70A51111AF2C3FA3,0x2F9404DDC202F4C7,0x6B8C4727D32B91EC,0x224CF9FF59193,0x7374681C9FAABAFA,0x2ABFA15FB82B854A,0xE084FBACE5D54483,0x9B88C3D7E7E634F8,0x1904E2F29A7AC1FC,0x7CB89FBC66BCE333,0x17699E62D31CA,0xE560358D51AA99A5,0x5FF39E30255C4DD7,0xFA9CF4CFC4B60F4B,0x9212D22E6F17C6F0,0x8D72E2C99DB0E6EE,0x21ED79954BCDD788,0xF90C6B97F33B,0x95C2E994239394C,0x45C7B5DFC6BD3990,0xF0410789606343E9,0x59F6302F2DAC96C6,0xB563075CA92A90F5,0xC1C6F269005A0A21,0x9C12C9131A90,0x1D58C456C349C408,0x5BCEE2CDD67EB50F,0xB448775323C48CF9,0xA542E8824557BD6D,0x718644FC8B1C7F6D,0xA5AEF86A8F55E260,0xBE3FC3D65CB2,0x9A94A6CF063B0255,0x2710C93FE7D25ADF,0x1A2E92EA2A556BAA,0x98CC2271A6C8C7BD,0x8FC771F85B4FF377,0x7CC5675A6CA3F1AF,0x79058ED91BA8,0x2C9273D40358B31F,0x20CD7753396FFE4F,0x20B42EF675B817A8,0x9CB9D697FD888D9C,0xB81A8B7BC33FE278,0x7D958DC68EC555C0,0x166BE6BC686D3,0x97187E81234D2BAE,0xA45F1A6BA1F05474,0x6F9268E4AFF49203,0x67A4E8C15853061F,0xCB4F8A2BB312CE9C,0xDCC508BD596F3D26,0xFEF3C4F12C59,0x39CA940207A643A8,0x3BEB2552177D48CB,0x7B5E25E7838FFFD7,0xE57119933A0F1713,0xBF6449423A797F6A,0x9FEE983A7AE99938,0xDAB0544DDA75,0x5D4959A63824A340,0x57FF7C86C234EE8C,0x5AFFF6FC812F86CE,0x859CD13884D658BB,0xCE80DDECE4FEEF62,0xEB54C071E32146DE,0xF3A10280F839,0x564C74EE16322B75,0x27321A8039395531,0xE2482625A82D6A62,0x72FC01212235FF14,0x1152054A9DDE66CE,0x51D3A2768B1EBF71,0x20CB7D51DC802,0x625334E81E1EAEC3,0x58E530990AC07825,0xC28A5106F4C72437,0xAF5CE43893912685,0x915686660CBE1A9D,0xA19A35CC6DA3062E,0x1FE7117DEFB04,0x2730062F37218F92,0xFB8B7DD32A666354,0xE6ACA64AB9FD390B,0xF2876F4AC7134EAF,0xA81D2730A964FF18,0x4FA14D823DC16E89,0x133DEB6AC0CE4,0xFDCE38DF5776A74A,0xF36A3A377F7761A4,0x57550DA64F48DDD9,0xFB58AE0583079826,0x758E9BFA748F4F9B,0xF4169799377EEC88,0x283FE4403AF7,0x13FA6DD518C2E57C,0x1C958342AF2332E,0xE94900CEBF4596CB,0x41357DFFA36C0443,0x77B1A85390754E45,0x3174C1456242293E,0x1BBDDA2ED65F4,0x901030CD5BCE363E,0xBBA0CC9C88FDA9D7,0x852756730F9DDC75,0x52DEC1D63C482424,0x3248E1B719F2923B,0x1B9B6C13CEECB776,0x2C5B2998F024,0x7459BD7BB172F50E,0xE6C94D8367A1543,0x9D735221343C331F,0x25EAA4E2E3265D64,0xBD97AD262D650F40,0x882A50EDE7A47237,0xE82B2DB80C28,0x15A9978F10B5F149,0x20E6B8E913DC56A7,0xE2D92AADD06AD899,0x65457E827E4B45F9,0xBEC45EE9002EECAD,0x42A30CFE21E10D12,0xC6EA7BCE5DE,0x80A2247D02D9EDD,0x353BF45A5A7FB676,0xA563551A561FF7ED,0xD2D635E40CFD5E28,0xDDE98AA30866C92B,0x408F81E566D14EFA,0x16D0AC3E59BFF,0xAEEF632F9D6DEDEB,0x34DB9B4AE389626E,0x3A9FE1FB2DDBB442,0x468A7ED382752B62,0xDFA4B3B1852E5EC9,0x5A9034F164F4986F,0x6FD8AA1DC59D,0x7EB84A6F578D6588,0x136AC6ACAFAC2448,0x3BEB2BE425D9CBBE,0xDD3FCE7E3C250143,0x8A477AE935454524,0xAC7429E6ACE4A868,0x110893EB9E1E1,0xAFCC82941858A893,0x89086F2628597463,0x6989ECACB625E20,0x8999E36659ECBAEF,0x40A939CC265E4ED8,0xC233121934122EAA,0x113AF794EA65A,0x538AC3F1E58338BC,0x239A175D00B11,0x5DB2232D115FE7D,0xA80AA129A3884CB0,0xA5AB7A431EF19FDB,0xA8D74FEB720A813,0x165DC276FA45B,0x8F03690FF465FF03,0x5EC5D2C0F887BB2F,0x3094AC0FBBE8FD72,0x83C61D82FBDAD1E4,0xE930110D43723E8C,0xE4BCCB5DF3D9B842,0x147404C913DE0,0xC62A03D77DBE44AA,0xBF8356DD5913C689,0xC3DB2BE3C88F4672,0x7CF5F97C9BE26321,0xF2EB7D587F67F4C8,0x487BEFFC4D46052C,0x1E8DBC62D6CA3,0x819955DC8E62F217,0xA6479CF341E0B79A,0xAA299A64ECAFD15C,0x9A5A07710D29FCF6,0x8CE34DB704A22582,0x3CEF0EC419A1FB03,0x1BEF9B709FFAB,0x6B60DAD219ABED73,0x33565DC6CD08C2AE,0xE41CEF457198E7ED,0x391CF2A0D11AB66D,0x2EA8A8AD13F29D64,0xCEEA64D04720540E,0x5D032645449,0xD8D0F5949F15E11D,0x56D074C7A2E10AF8,0xF16BB9B74A5FA619,0x44B1E6DCF3514B3,0xF6C19500DF474751,0xE864BD3298F2E401,0x1BD106DF50C68,0x8489EBE1F7796E43,0x85BB6AA3CBC6A44D,0xF32FED21684D2E0A,0x57CAB2D8A5A9B50D,0xE0DBB0A7C22A405F,0x31083324A8AD5120,0x1B9911F8219EE,0x31D243759B66193F,0x52812AE2B8AB4010,0x73BFB75372015E4F,0x5351C9B7211119F5,0x7311D4EBF112C8DF,0x25A11CF2E7859169,0x87E97F4BE176,0x6C457AFDB222FA30,0x8BAED55176F5A999,0xDE18E1DE61AC8638,0x76408DD51E3B690B,0x953D166B747A564A,0x27CEC7F2B93C24DD,0xF005FB4A29CE,0x38440B199EA98DCE,0x55782252509A43DB,0xCCF85A7D7F544F64,0x94A009ADE12A8A74,0x764B6A56CF61CE12,0x390B44602679FDD4,0x86922FDD349B,0xAB10C8A67A46DC2,0xCD14DBF6E938334A,0x261A59ABB1001D09,0x2DFC368D51A90772,0x152F59D693BE3AF4,0x6D0CA06267903B9,0x3A04AFCB55DA,0x440DBD2EF66CB98,0x9D0E3F493AAE536E,0x703FB141F017F570,0x6606CA05C45AB8B9,0x5C0E56AE06832260,0xD1CD517AD2BDDEF1,0x1E697CAE18DE2,0x6FCEDE3DCB0E0EBD,0xE0B8509B67A68FC1,0xF46D610F064420A0,0x4ADB1F760441D1B1,0x686126026EF6EB54,0xB3303BBD381C642D,0x134D95A66FB8C,0xD64F00C3A4BF622C,0xEF186CCC1E1CE01,0x1C6AE542C626CB4E,0x1367502D2391E0DB,0xA6BCA4C20980DC04,0x81CE3CCFCEAC0AEB,0x7DD923434123,0x610DFABD99E08D08,0x1F912EF04BBEF35A,0x9333ECB90EBE2278,0xFFFA1A665F9D5A65,0x3041DEEC29CFCCA8,0xCDE93D66A319E9B7,0x170E571177B1C,0x6045DD5D3548E45D,0xB7D85C0C7DCC45F8,0xC22A076DAFAD0818,0x7B5798466C0E7974,0xA3DA450658E672C8,0x5FB0E25C03632FAA,0x7345EA805A1E,0x84C490A48762E734,0xD9D5A2121C4C908D,0xCF569ADB4BD75E55,0x879EF9A86F62A25B,0x94E7D1FAE895D768,0xAAAEF80EF5C7B689,0x156FC4F666604,0xC83AE0309ACF3093,0xE415D4FF802D1981,0x43FC8714E3F2FC5B,0x4B74ACCC931B1DEE,0xB9BA7DFDB44C380,0x7CAB0703F445F953,0x3FAC4B84DE34,0x2AB70DB32CF691EF,0xE32BBC928E671EBF,0x509D4D50CD55D5,0x5AC6A9D0A95BDAA7,0x9F08A1752DBBFD74,0xC1F613F1468E523F,0x13ADEB76D9C76,0x676553185DCDC0C1,0x22144F92C76DEF69,0x1EAD0BC69BE314F,0x163B1483EA1A8412,0xB46D9EF1E23EEFB3,0x507B7F6835DB83FD,0x18F60862C39DC,0xCE6EC5D701FFDA58,0xA1FBA73BEBEFC1CB,0x54ED5ED4B46AFBD4,0x8ED0006D5C62CA92,0x8ECCE74F0206CEBC,0xDCD4B160F0DB294C,0x1FC74A2012289,0x15D7BF7B231B3B2D,0x8C60F596AE154F5F,0x473397219B641094,0x81B224823729B3D1,0x3E80D43D89A8F409,0x95052CCB6B5D278B,0x1CB58CDC1C7F2,0x64B62820CA177D9C,0xFEF641546ECC605D,0xA4782ADCD44E62D1,0xF4E07AD179F6B31F,0xBFA3CEB09208800,0x31469BB0854285EC,0xBBE2AD418D58,0x7BD4BF89B90ABB17,0x90C7D6F10E13D0E8,0x4AB2F5ADB26BB15A,0x316FA139F1811578,0xCD8C663833971F6F,0x912410B4F547BEAE,0x22F242C096F69,0x6AFC7A3956111B19,0xBD7D1F71CAE7DA08,0x3583DE86039E05FD,0xEBCFF53798112B0,0xDA8750490E90581A,0xB7D72138E308306D,0x1AFAEA7D6614D,0x85E89B97100CACA6,0x3F079D8DB1F4E6B0,0x173D89FD71DA43F3,0xDCEE209C573703A5,0x439A80DEAD55C807,0xB3AB5FA83C1509AE,0xE4D390FCF785,0xB3D007BB61F95CBA,0x9AA02AC203EEC6D6,0x2B62ECA981ED3B8,0xBD1741DE16F81E96,0x5133FCADFB4DC575,0xD8EE353A8A9E9B4A,0x219F432F2F5F1,0x5FD80ED39328EAA8,0x828920084ECC23DF,0xC7B70FC680A7F2F4,0xEDBBA6A2AF49A200,0x2837556E7BF08509,0x53E4939E9D52692F,0xF0E58CA5239A,0x880ECC469A28E883,0x741E40BD3DC27BC0,0x6242402AAF49D26E,0xB5A18BF816F889C9,0x27AC8971622526FB,0x449E6565E90532B5,0xE157A5B76473,0x2306BB9EEBADD94,0xD26CC55165CFF862,0x41C44BC7ECBEF521,0x279D4346A9AB1993,0x5834A05381E1BEC4,0x2FCC6C4D2AB1D6C2,0x115694C58F1FC,0x6893273708C4A99,0xD232DF10F4A6FCF1,0xCC2D8BD7EACF1F70,0xF75ED6C1A3D6E5E1,0x40A0271D4EDC7E8E,0x4B71D6399BB7E2AE,0x20684FC262E40,0xD01432A4E6069D4,0xD60D11DAF31B85EE,0xD3F0AD1E102A1C34,0xA8DD84D4C416915,0xFE15117696E4981,0x42F72041C83F654C,0x2304BDD439E69,0x72662CEE64944479,0xF51E4F59A076BC5D,0xA0E602CC617E13AD,0x20F525A8B8A2C177,0x7933A561F0225A78,0xE6D005B1525F0B75,0x16DA8348AAD0A,0xE17AA90E00F70D2,0x7C15C3102F907C77,0x3DFAB9326DF7267A,0x33C42F6CE6242D9F,0x4DB831C9F96B7F3D,0xF3DC012B1F45E9B2,0xB11C1AA79B2F,0x289E661949E50691,0xD783D5218400554F,0xD8D1C7071139D008,0xB8CBB0A809863858,0xD6F3E477E7EE63FA,0x84EB39ED482FDFC2,0x1D246FD07C84A,0x578B8322E3CC0AA8,0x40410D7EF9F37817,0xAE7383A6DD303821,0x2E378A4C14EF4859,0x55CCAA7FE6D4D5E8,0x54055055C8576F54,0x15442AA041818,0xEACEC6CFF1C13ECA,0xB33655B512557A74,0x785D6DF1EEDE19F,0x1C913285D217BE5F,0x5735C985BE91F88E,0xB209F1F1E74EC68E,0xE1BDD7D413C3,0x570481FB846B980,0xF88EB9E1CA6DBB65,0x9DE300573F03D9A4,0x691E9F0E95168822,0xF0FB7DE81B06DF9E,0xE7661D6A4DE3F6FA,0x1CE53A864B95E,0xC6CE50ADAC5F170A,0xC364D01ADF6CE67F,0x8808F3DF1A25542C,0xB50B445A931C4987,0x9BBE8B8398B266A2,0xAC73C0803C142EEC,0x50BA992F0E32,0x8C11C50CAC736F42,0xCA537214127CC969,0x9AC1381033D1E943,0xDC24EB7E8A24F988,0xF93E03E8E08CC4D1,0xF8ABA5716632E713,0x73BBD6997DDC,0xFE6F115917AF34E9,0x5E3C5CEB184220B5,0xB1C6657F42B99A3B,0x4E1ADAFF82DC3EC5,0x3E5E17A360AC849B,0xD06F7CE78B221AE4,0x738C71CD26FC,0x13605F0D867AEBC4,0xB5E4722A820E69C6,0x4360B7C0EE57D6ED,0x54A4D496BB748945,0x6C9051904827FAFB,0x89716C501BAFF2F2,0x1695EB6E43924,0x88DFC9E90259DB96,0x42D8ADE7F7ACBD2A,0xC641B5C706DE335C,0xA765A3F9D394D21E,0xF9076071A17E9CAF,0xACC75CD2BB073EBE,0x9EBBD417B6D1,0xBE0208C2816090C5,0x736EAC9AC72EA6A6,0x5E7D8895CC27B4E3,0xCADE7023A852DCD7,0xA027D4349DDADDF8,0xC78E7F141A9A5125,0x1E8F8D54BEF69,0xAEFFA99039E3911,0x8E085448BA7D8CF5,0xBE39F08833915C11,0x38D866119C5994BC,0xBD9CAD479BC4DE47,0x180C57C0011F1819,0x8F6154EBF6AD,0xABE356D428FF310F,0x3988BD8702A707D3,0xC7EF9B6138ED5C9D,0xCD7A1648ED63ABCF,0xEFAF0583343C7778,0x671873C9B670AEF1,0x2208C5AAA93DD,0xFAAE88E2908CAF83,0xEF9AB2BAE520824E,0x23B48A6042786DC8,0x3BFEAC78C7EFC697,0xF5BD779194FB2ABA,0x571F237144F88DB5,0x25A4869AC2BF,0xFCD331AF76248C8A,0xB5044EF1980DCA8,0x49AE3F3D66054348,0x3B3D576B6BC56634,0xD40B81DFC46CE3EF,0xE2E62163843C1FD4,0xCDC812C9FC46,0x9C86F8083CA481E0,0x79BC93A2853B21F9,0xBAF30392A81C50ED,0xB0ED84D591CB7D37,0x286007BF4479BD8C,0x2F57F6B56C74CAA6,0x1132F3DAE3C25,0xEAD9F6E76EED3405,0xD806830360716941,0x64024A4A5EA727EC,0x963B175433910641,0x3EA6A8496022192E,0x2B11DED50E582DB5,0x1C0E45727CB83,0x2C4D388900ED53EC,0x48706010BE84FB9D,0x3C2E31F01E5F0267,0x239428A6D2E164D2,0x53C378662DFA62C6,0xD74A5492C6917262,0x9E7E4F17124E,0x79FC1BB171F37F07,0x93C45C166CF5BE95,0x4D628DA3D54B8C75,0xD8F8803729FB535C,0x8F48A1E10C398D73,0x4A844C47C23BB090,0x1226BE0D1C402,0x7D5DA786568B8C54,0xA3DF804AB8BFA7BB,0xFEBF0CC1968A15CB,0xC95C9CA63FEDDEB2,0x87AAB35DC3231324,0xF035ADCD6174209C,0xA281E654CC9,0x37E9EDE31E5B9921,0xA8930C5C9B7E98D1,0x8F7269CFAF3B78C1,0x5314C97F9E4B943A,0x9719C6D314F944AD,0xB4509BB881C22951,0xF881E9380193,0x9CB932C367E5C920,0xF87D25FE50E9E8B9,0x5C59EC9BAF4A22C4,0x34F4BCF9E5F4F074,0xC5C2CFFA261D8BB9,0x42961720EF72E71F,0x140D7DE099BD7,0x47E645AE1A90E6A5,0x558353D1E87F3F64,0x91D82EBBAB40FF83,0xBEE46D51D4DF2014,0xEE4326540B67D0C3,0x816E9EE762B31FF0,0xC785773F834,0x33B62BB01BBB35D2,0x2EE05F2CC093A584,0xF2E79524C9FC683B,0x34B4FB05278D1AC,0x6C854E8038050419,0xE9810367FBD8EDE8,0x14ADC2949FBDD,0x7D3C082AE28015D9,0xD2D70DB48D783170,0x1A0F2D0137C96442,0x28CF8971876B910B,0x7C633E18CFE4F438,0x18B31B914F31CCCE,0x7433C89F3CDE,0x9A576139A43C9248,0x237DCD38A5155625,0x35A3A9F5D53214F5,0x29C596B44E33E646,0x826A284CE055154A,0x31F3FCC23A87F5E2,0x1ABB7BB26D494,0x22BD6A506C8DADD2,0xCAB166159D554FC5,0x5F16C89805898F00,0xBA8F4624571750B,0x677B30E150DC0641,0xBC2F91BF79806490,0x942BCE41B0B,0x16A871188DC33A67,0x468C5E9FA530F10B,0xC809F2C680D97F8E,0x9993D9A5F1C931CD,0x770173BF5488E51C,0xFDE9977F2851090D,0xC5283BFD319C,0xADCC685D2245C76B,0x933C9BA25ED19D84,0x317733B7937C2A20,0x5ACAF9638E6BEF73,0x2B9489BCB48633B3,0xC1C6446FC3A027B5,0x8A45A6F7BC32,0xF2C37D3D7F25F2FF,0x19028C677DF5C3FF,0xEBEAD4A3D6A0B2C1,0x69E07B7979344DB0,0xEC3BB7F297D13470,0x8DB0FA23653E12CB,0x1A9CD95B36A53,0xD93BBD37A00B84FE,0x38200A6F625B6702,0x326B07800E93D8D1,0x5D80781D3B8B2C60,0xEDBCE17E61AF76EA,0x4A5EB79FCB569703,0xB2E171217643,0x98E095DD245F8ED6,0x5A1EC3BB9FE8B756,0x9B6D434102891686,0xA6DA0A2229C3E542,0xAD7AA08C791CAB97,0x7B66DCCA5B01DC4F,0xBA9FB757FAC2,0x3E4AA8F04A5514B8,0x9A737743383B7B36,0x83724E3F58ABF0C3,0x8B9B3399124C1636,0x9F413A524B7F0B52,0xEE461CCD7A86FB2C,0x10415E0C01E5C,0xCBE32E8BDC2C5B3C,0x7FB62E643F39B36A,0x64CC72169F77E22,0xB27F30F0FED7CA86,0x8105C1EA608133CA,0xC9E6C6A04A4AF95E,0x2EC08BA9AA,0x4B84EC8A562DBA0D,0xF63BF8AE7D9DBA3D,0xCBF74B580CFF9867,0xE3233438E0F09F23,0x1B43FF93ACE5F27C,0xC76F6DF1846CB38D,0x6E1260243E67,0xDB96F56E6D5FB4DE,0x570DDDEFD01D876D,0xFDD41F669229DD67,0x33FEF9020503394D,0x10F60F3A8641D2D8,0x7A8DFB6305FBCDFC,0xD3C4389F2B34,0xA27981EEEF565A52,0xD6D4BDDE3403FC51,0x591054F45787DC63,0x6FC5DF0E3D752FEB,0xEEA97D066FA191B6,0xAEB40218DB5BF211,0x1F0683E337D2C,0xAAD1A549AF1202D7,0xF1306A05A9DBC9DE,0x9AA52E35515EFF40,0xC6FA6FC47515DC63,0xAAA81152432615BB,0x35666982877BE98E,0x1B25EEBA706AF,0xB3C35CF4027184FE,0xC343CCBE30FCB3A2,0xF5E16A370A229FF8,0x44F98C5AA1FA9BDB,0x72533790501CCA41,0x6E8693BFD3E078AE,0x162CE07764ACC,0x4AFDEF4AC3CC0065,0x95D51EDB15780033,0x6623DC3F037376B1,0xD5E3C524A2587A74,0xAFFD7FBFF398708E,0x3A207C878BD13B7A,0xB5BE4BEB023E,0xC75F3472B1A85173,0xD27CB8C55C01FD38,0x6B4F835618468DF4,0x4527D50D4A6540A7,0x466AECE50E780AB6,0xD54EE55250475210,0x7101341C39AA,0x350613C412A96AED,0x4B16B55D99D679E2,0xCA1512DC14BE8AEB,0x196E20EBEFE2C78D,0x265806727667FE29,0x717701038FEE44D6,0x14EF99956C3F7,0x63289C125127F6E5,0x3BB4FE8C3B45A889,0x95255476CF4AF87E,0x380DE838F25547E5,0xC870904690F5E3CF,0x3824BDA34883D375,0xE3135EE6A891,0xDC8DFB9AB25F1469,0x8FCA484C2EA49758,0x7FB3B8472D7B3736,0x97311D46024C7F8E,0x37D290D09703B0D8,0xCE534F7D754345D4,0x21662261F0882,0x88AF58645E60B132,0xE6362CE10825AA41,0x2B5E6DBFD5714041,0x964DD6315F28537,0x29D13030487433E8,0xBEE600EC88CA3728,0x1ACA2EF050790,0x74F1D69C5B3F4D58,0x8C10C59C61D797BF,0xE5633850DB56379,0xEE2B4F99657977D0,0x95A04AE55B92F9F5,0xA59A80E345573204,0x13D49103656D,0x1C3FFB79B7704A72,0xF63065C052F66998,0x2E2DA761E51E7FBB,0xB323D20294D4FA42,0x15D09718EEF30C49,0xE957F6CBB473DF7,0x214E68586AEF0,0x217386AACE7BBB89,0xCDE5D9710ECD2DF3,0xCD5349B0F8E20028,0x11BDB94C2D4A47A5,0xC4C932BBAC094222,0x43AE58D8662B12C0,0x36041B030FF8,0xA1735163DF2DBDA,0xA5441AF261AA50B,0x56F59115FA6E8503,0xAA94B68B84BAA63C,0x9FFA56A80E5D96F,0x30F6B8AF79106B3,0x1403943EC97FA,0x7D1F5D73F76FF357,0x6EE99E244997982B,0xE67C7786F0C50D2,0xF23B5420B52B53D0,0x5185FA1FD1C55841,0x49B82357EDC754F1,0x11F8A7D1D5F20,0xFB71F5822983BFA,0xF284640AF455C93,0xC494F0386DBE9757,0xD08543D94A0AECE3,0x1203B97CB0140430,0x7546BFE82F30379E,0x3EA06F568F1B,0x223E88FE6F1B4948,0x339B48072BE9C7A3,0x1EA706D1C8859C1B,0x5F831876181D4FD0,0x3F3E2572217AEC45,0x40E0091276BA683D,0x156D1D5F8631,0x2757117B91B4A7C6,0x5B74713C612B441B,0x655C7B3FE61D9918,0x4487AB3D88565A52,0x85B0B61A07F5DB6C,0x536F2BF750A5012F,0xE8C51EE4D880,0x83FBACD3310C1FD3,0x36343A80B72DA40A,0xD1E4262843C2547C,0x5EC1A041A5845F6F,0xCF8118A875686BE,0xB3C78B64C9732CD4,0x15540AD120B54,0x8F9E568C2EAE3564,0xF15224473912BF82,0xD392025F4CCCE263,0xCDC4A99B2D1BF052,0xBD48BCCBBED49568,0xEAC87A2B598291C9,0x1E34F39609869,0x4163A41980E0D379,0x604B4DAAC7CF5B22,0x9B5229AE4141BD1E,0x75B4B0AE3311241A,0xA880DC198B4AFB49,0x34F5D3924B68B4FF,0xD2028A37B19E,0x8BB5F010A26D0B7F,0xE8F7BB82ED4A0386,0x9881999C63CC797B,0x96474B95BC6091C4,0x464BDCEE5A7DE3BD,0x15EE33CD7ECDA385,0x1AF09D15DB217,0xE0EDFB4DAEAD63BA,0x1BF98BBDEFF8343C,0x9D51D945A94625F1,0x4B35A3D57BBA5F57,0xE07A7E80F06234AA,0xB7D8482C6B15B4DB,0x216E3A32EABFC,0xB72744394FC1402A,0x9452AAE9E0BEE368,0x18D278B5B4D8FD36,0x28682E3F6ABCD48,0xBE63E50DE3E550C1,0x1F2FF40381B39E33,0x95F3DE85694E,0x6B1F34DDD83C7961,0xE7BB51C53FF82E02,0x525A91A46DD7158B,0xDB309CB70801EE3B,0xD0E9499089EE02CD,0x5C3303C70475F419,0x156FACA6B70BE,0x336E137AFCB0688D,0xC2A904F54008251B,0x6C6CD3E186B20BB5,0xCC1CA12A596E70CE,0xD5125595C8EB573,0x8366E00C32C4AFA5,0x213B0F3DE25C3,0x12CB11387D0E1247,0x8B948D25DA6FE598,0x902319117F24C1EE,0x4508553946F08A6,0x4BB3717EBEFEE9CB,0xF54E357811E1AF7F,0x329996C7BF35,0x7E7EAB1F276BA202,0xC3973A35C211C8AC,0x6EB2090B5AA2E453,0xF1B87410E7AC7EA,0x60EEB312ED4ADFD6,0x10C8AAA64C32FC1B,0x9CD4B509E3A5,0xB4291A0F2B18B33C,0x1BB875C19FD7532F,0x66DD90D6B31DC899,0xAD1ECC3EDFF340BE,0x9C45FF1C7AF2E834,0xC65DE4096B73AB1F,0x1B8F5919A576F,0x8B04BE81E07153A0,0x88F8253763A9AB33,0x9C80AC40DA37EED5,0x8B87951C2013B2C4,0xB365456906124A4E,0x664CCE52F288162A,0x140335BA62950,0x7CA7727695D9877E,0x58D29315846AFB55,0xD1DBF983C0C3DDCF,0xF2AA13A3712277B5,0x597C56705DC0715F,0x8BF6E1746DA886B7,0x1E9B6C775182B,0x9B16C1BA89326063,0xBE2CD4F72C6A4A92,0x71419173D79FE08E,0xE99E797B397BB936,0x58C8EAF4F701CB25,0x43A2E99BAC8F3840,0x1D22B5ABDC838,0x479190BAD02A12B9,0xB826A9251F1EA32F,0x97C467172279BC97,0xCD198321795F6CB1,0x78D4ECF4DDC0F488,0xD688A43F3ED1837F,0x1410BB4D88E04,0xFF8A95D87E3AB393,0xAA1CEA7664FE34E2,0x2F259063046F10BF,0xB02352110CD1792E,0x6F0FC514C280554E,0x8C36872838D118CA,0x5F87D3D8FC0,0x508E9DD9959D345D,0x885BABF56F8DDB8C,0x43E5F9D7F24E126C,0x50C71FAD1343C1C0,0x739446F0303668DC,0xFB22E70EB764F178,0x14D95276FB744,0x3119AEC1557A2F56,0xB96AE4B28DC8020E,0x1B90776968C1F81,0xD4553930DD5F2AFC,0xB82A0FB3D9F2CD88,0x514BD178B749AB5A,0x1BD9360F4B7B4,0xFB66635521BB0144,0x9041F13044A105EF,0xB27967CB012F2301,0xE170F384569E5A65,0x7EC1F5F5C5D8ACFD,0x123783E4EFD327C3,0x2259D38D814BA,0x391C1AFF5FD14E0B,0xD638725C338178D8,0x24DB3260246DB696,0xBAA152DA021154C,0xB757A346B3BBA6AC,0x9E8776AB55F3D0E5,0x1ECA2D6A8D115,0xD4B9C377FB214ED,0xCAD696F160E5CB3A,0x8D398B7124F73E27,0x71DBC5C18D1D6563,0xFAD3572319F922C4,0x7D685880EEB7F568,0x7F06F4F77281,0x7018BB1BC6AA7371,0x5E815A2D3946FE0E,0x12D3A051AE462D1E,0x4ED345FC86737D8C,0x72D02ADB7ED4111D,0x65EC15639CAE25FC,0x309DD4DEA428,0xB67C28CAE3CBF105,0x35D9CAB0E94BCA90,0x59E51403A91DD0AF,0xF5D72DE70AC748F6,0x455A33A1E6509DB6,0xB58B1CE838A165,0x51F2CA32E819,0x7AD296680D645EDC,0xD81B5E62BC0E753C,0x5CC139220B356699,0xA6E45374731333E9,0xAE2644563893047F,0x5C57E74EE605F27F,0xDDCD68A72734,0xFE662224060714AA,0x43A3FF8740C53EA0,0x7BD45557C0956FF8,0xD36F361DF83B2130,0xBD7B1683D55A8352,0x9E48B079627A1284,0x1A0E2F91579,0x45361EC387127DA2,0x576F1984FCC930F7,0xC048884DE101CAEA,0x8CFA4D7343113100,0xAAB582F06072D5E2,0xAA879B59A19BDF49,0x168A5A15BA655,0x70CC5EABBEB91D86,0x9A6EC13F766325AA,0xA79AADFA7DBBA90C,0xA1F02B6F4F49EDCC,0xC09B45A4AFC0D78B,0x418A28578B188FA9,0x8BCF0DF49D4C,0xB50AC1052CFB2D09,0x95336E4721D5F575,0x3AC6AFA0126A0F51,0x32539F1B533A8A48,0x51209B2EF6A6C2C1,0x92A68753E00D1380,0x1262E5BA53BC0,0xC0EDAE3A2E1842EC,0xFB5390008AF2120A,0x9FB3E88F22750694,0xF70DCE62E8EC5CBD,0xE2D46171537DA5F,0xFACCCCD5DB1AF009,0x10C5190C89F4B,0xA16FE7C85927D588,0xB02E7A32B1763F7B,0xE872A8506D94E5FD,0xB170AC91911EC96A,0xED503A53AAEC667F,0x7AFC6F092F8718D5,0x6229BFF047E2,0x9C2A29520342893E,0xD3F05B617E923E01,0x8EACFFEC860B8ACB,0x5837072FE893DCC2,0x465EE85679AB088E,0xE64CECC56B684648,0x57E74402ED42,0xA50E3FAA673BE7A2,0xB300DFC39A63B637,0xD8D8B989272DBB16,0x7B6CD05BAA6D7B33,0x1182A9B34D0A4A97,0xF838789B88E61435,0xE7AA4074DB99,0xBBDFE20C0A6495B,0x55A4538A114C6F7A,0x51D2848E4FE49CF4,0xDF432149350D85D5,0x38032CF1D9879938,0x9E906C7EDDE99941,0x242F61AB1C73,0x3F599F3A9F26F569,0xED1D367CE7918B27,0x295FF6C96E63D8CA,0x2A367AA4CFF0D914,0x49E6E989142D8709,0xB1FCFB31C583E540,0x128464D679092,0x377587EF22DDF18E,0xDA4E55AD386999D4,0x46189A63F65B8802,0x22A7A43589C5BCB3,0x300C2D6AA0207A51,0x81B1A059B2E5CEBF,0x12418521FB33D,0xBC2B31CC408DE079,0xA536314A802DAAA0,0x42E078683EB512C4,0x95A83A1FF73B58D6,0x1AC1681B238ACAE,0x5FDCDE18C77C0B00,0x20A2A2198C256,0x55279B1AD61AFC13,0x63610837175E54F,0xF6E2C3D401BA1E61,0xB8F286CAAFB89A7B,0x3842AF650AC65E9,0xD0AD5850FEA2145C,0x20876275CBC5B,0xEAE295D9EDD7B326,0x4761292AB1312CE2,0xB4669DCCD6E09A1E,0x6C97B1724D72841A,0x8344E7039DACE577,0x1EA877C468AC3C91,0x1039C6B91B007,0xB9690741FE84ECEF,0x5764539F7F0EF535,0xDF1EE4CAC0E0534,0x74312C89440252FE,0x52804714E143758A,0x407860531A06D516,0xC87E67470986,0x5B80658DC4B343B4,0x38C506607A0E5645,0x78C629B89D18576B,0xAE7A204E0C1669D2,0xCDC4819ECB44D45,0xAB9ABBFE1D62E1E4,0x85B042B3C58,0xF29C84D3A99FC21,0x2788992E22887431,0xDE277C4A3189909,0x8B99E1C5B8B09BB8,0xE7E46B20B52D4234,0x69F1CDB8065C19DC,0x1E91F6E0026C7,0x3E0FC8AE16A75ADA,0xB64BAE4F190BBDEF,0xB1E65D7AE14E2B42,0x1DC36817DE7ADFA,0x2A4512F5F6C13155,0x8EBFA9A51438083A,0x16868589493B7,0x49E319249251885,0xB814374423A8FF4B,0xAA522D17B5C85A57,0xB11A1EA5F4F8D6E1,0xB9CE8A22092F4573,0x24C5F782A3CADB3E,0x289EB97AC61D,0x1E1F25FC05605745,0xFD3ED75E0DE25574,0xDC293B3F27D61AEB,0x9F2C2560420B34DD,0x7B1CF478FA889F39,0xDD115540E4690B35,0x993A5355136A,0x5A83F61CE953C1F6,0x2386B9C82089491A,0x6E30EC2BD969DB5F,0x7C8E21C7840DFA20,0x965C96B669DF17B0,0x6841D50D4E68588B,0x17BE06FC6062C,0x6F9B8A2F6F4AFC0A,0x191647DA8843EC2E,0x36599D639EF20E9E,0x59993A2070A7752D,0x625D0A1DD8375BD9,0x3D8128E5BE2DA1D2,0x2228E20866424,0xB2BEB6EB8179729B,0xE7ED7E5A417A8CFE,0xFEE6355C268AB0C,0x966D38CD87523F6F,0x9972C6B91E582BBB,0xA3B60D06080A7474,0x19699005E6C06,0x3051BE794A89906E,0xAB3047D40A1B9CC6,0x4DE53A4C2AFB3B47,0xB6AF41B110540A36,0xDE493C952C1BBEF2,0x3D14EEE0839E12F6,0xBE7A707766D5,0x30BCB28B309F2D2F,0x10FA08E511AF571B,0x9278D221296BFC4,0x4942C927E87D88EA,0x15D38FB2C60218C1,0x228C350DDFCE9BEA,0xF5D835AFFC3B,0xD1A6D2271819E06A,0x1FC05C9882718AC3,0x7DE8A19AD77CF9CC,0xEA1A106A59578ECA,0xC085F5611E2ED845,0x431A3BCE37B61C18,0xC0F75E4B0025,0x54F4E7A89CF333E5,0x1C12E05B63645AEB,0x7EF99D39E3EFA6E5,0x9F938C187BB9F0AB,0xC2281CC15CAF9ABD,0xC69A07595C632FA4,0x1690F631FAE0E,0x6D14EA997AB75624,0x2E98188D7362FD4,0x5066607C8139DE00,0xFBF13729EC133AF0,0x7E2369D35A95C408,0xF70A0A9EA9CC51EE,0x15BA503E4F717,0x6FF56BA88E348A1A,0x77FB43821C9838DB,0x7F861D698F3685C2,0xDE7134C378741E15,0xE77533961DCFC737,0x6EA8DDB18481F418,0x16837F4B47585,0x4C0EC2608C5F4A5F,0x433E5BF8B97ADE2,0xE1850F84F46C936,0xE7DD27D33372F3BC,0xFBF3F9F964BC8054,0xD0C4F7D399130BD4,0xB979DDD16B8E,0x9A9CD3B1191675E1,0x8F71F767171E7B3D,0x568BD28ACFD8E059,0xADC251A71E600FC,0x764FD3F6D1324DA6,0xA70B8E2090955D87,0x43AD3E69D53B,0x3594B02998B8C0C1,0x47F2AAAFCBCE7E2D,0xA7758E0C82225BF6,0x9117E3DA0A9EDB3C,0x38699684F1119CBE,0x6E61B0299F5303F2,0x10C053F27B826,0xF4BFA3A358BB3AB2,0x6F9E7AC36B0C5D74,0xF13F5346B6347D14,0xCEA80B891E38A90E,0xAAA83C5EDB41C5E8,0xCE223F1B15BA00F7,0x139D853E2C65C,0xABBEBC4BCBD278BC,0x2FC78B567ECF5C86,0x4B388B7E1126C42A,0xD3E73521A003DC2,0x7EDA45285C3B019A,0xCF31AC841D576F8,0x1896EC369779E,0xB0BD30EF357DC3EE,0x603CA34C73B295B3,0xA31A8360F0BAF0C,0x2B98B75544078DEB,0xD6A6CE7FDC067DE5,0xC9F6432B6D286FA7,0x1B59949113D41,0x8E8A73464230C913,0xC9469ECAE61132C4,0xD17981A7670700E5,0x22B911C0467A2B79,0x8865839A3411EEC3,0x9A483AACAD157AD6,0x19BAD161008B,0xE4778CDADAC0F8E9,0x1CB2A8B3D9225823,0xB66C74F14368FB28,0xE8053207EB4C5DE7,0x9AE18770B14A0026,0xBC9C11CE766D8F01,0xC7EE73A44C7A,0xA4DEAAA1E3AC7656,0xC823C0FB8F81DC87,0xF43975F83CA91A3B,0x3BEF213C08810FCC,0x9C838381ED436256,0x10C9EF87F5BF0046,0x5EA72636560F,0xC392349AFFE0A661,0xA301A660210FACC,0xA4374C2C9D70CEBF,0x57EBE97D64CDB70C,0xF979F083AEFCE306,0xFF142A2DF718AC42,0x190BEB881D898,0x1B0F7CAA27FF950B,0xA172B227B25D553A,0x5FA64569610FBC14,0xCB84223162C6CE8B,0xC51847F777ED8F2B,0xC481DBF4990F7E81,0xC46172243941,0xFB5AD75A16E7B16D,0xA00417348BCCDA77,0xE0A9166051AAF54A,0x870B78AB21B87BD9,0x16E3ADD9FEA90968,0x1534F94303958904,0xD480BCBC7273,0xE277F0A312BE2F34,0xA72BDB044B54B89,0xE67FC4F35DFCB723,0x7D7D9924A67BB0C0,0x4BA7080A09DDAAA8,0x94EB2AFBD55988EF,0x9749A7AC0189,0x15B32AC1DB037154,0x653CD0ABCAF7D9D5,0x28F9BDE0EB0E21FD,0x3C1878255832427B,0x99609E99D772064C,0xDE9C19FB263DDD10,0xEE92B0A7DC5A,0xC006547EA8869F3F,0x35CB546F8D1DFF6D,0xC0C48F622870677,0xAC63B3B968ED94ED,0xCED1975A0FDBE185,0x83D00F88061D6E06,0xBEA1FDF1C437,0xCB6DF8251E4C6EBB,0xA0083B2B3E95FC24,0x1D61FDDE199BAF95,0xCE4D37B9F8C65AF8,0x2106D3B669B23A41,0x76F70096DF822BD7,0x18251FAAC077D,0x13F9FF5F6A438A58,0xA1DBBDF9E893350F,0xF2688D9AC328A94D,0xE1244B6A23936329,0x7995E2EC3ED98C37,0x9D2BB3E620A30647,0x191010ED8C9B3,0xD442B7BE61FE45E0,0xF2B98DEDDE4E641A,0x94EE0710455BA129,0x6864D2E4634F6B22,0x778F2EC0C46BD9F,0x140CEFC11B1E74E1,0xA3EA52D43F4,0xBB7A41E68162E227,0xDFFD365A8231B9DB,0xC28391E9F09C2F33,0x69656DC317CEBF2A,0xAEB3E71F934B969,0xC091100AC1A903FB,0x88A76EC676E1,0x184C43C1A3F69E89,0xD6F6498BB920E965,0x4A92095F6D11EE54,0x34000A31B2E7CE65,0x98AA74D98073EA01,0x6C14F79B8A354EB7,0x16446A7A8ECE7,0x943B3BC9AD0BEB63,0x2A77870C5F892B4C,0x3BCD58AC25FD9AD2,0x57F8EA61F5CA4C87,0xCB535850F668141A,0xC76EE046815B8846,0xA2B65A3030B1,0x95FC77C3871844B,0x488F14B8C0DAEFE8,0x935AC1E67F8B0356,0x63A67778AE9FF6EC,0x6E184C908BE60FE3,0xDE4A27179C438444,0xF4311A34472C,0x159F52F71CBC1630,0x49AEBFA0A14DB119,0xCCB02206986B7458,0xE04D71D8CC415CDF,0xFEC92CF4A163148B,0x71B4D20FF24EE036,0x1682E0CE962ED,0xEDE9864477B63455,0x328C34F514592717,0x5F2C203B2A9E36DC,0x5CEBDDF689AE7281,0x48329BFBE000DC52,0x6D7FA8672EBC346A,0x1D7208BD6D5C1,0x2B745BF857E01C8C,0x32A92FC9C438B7BB,0x4691E739A487D9,0x6865CC2C918CAECF,0x6941C4F5AD74DEF,0x38936E9C9F4B123F,0xC9031F6DBEC2,0x627AA2F99975FEBD,0xF14F89D258BCA6BD,0xD546E0EF2BFBEF6C,0xBD1D12D4971A66F4,0x82EC126A2F1C5579,0x111060561067C519,0x67EE2AF50C10,0x81FEEBAC413FD990,0xE027C4C17298E33,0xF1ECC7C51FEDDC9C,0x5FC23F86A6E4F391,0x5B8473F3CBE29F89,0x6DD733CD6A5F9147,0x29810D16B130,0xB01CC21433DCD339,0xCE9407B8E7767CC9,0x2E72555A77D1B817,0x84BAD594E632743F,0xD458B9B491179F44,0x5DFEBD1186F02345,0x18FF7B6F18F7C,0x917CCDC9D8B1A6E,0xD36D02B3AFEF79A8,0x341CC5A2AB9355AB,0xD58A8E05B10A1E1E,0x1B00B79533ADAFFD,0xDCB18E50F93726ED,0x1E55273D50EC7,0x9F39EAEFB7845C63,0xE20443ACF0A40770,0x2984F76A610C5162,0xE5E0B51CDFB9F7D4,0x401F58F59F8A1879,0xDDE9BF76991750AE,0x3769A5304E1C,0xFF48D63D469A851F,0x6A73CBB7FB54A780,0x80AD8C6BB4638576,0x375B0AA5B69BDC3E,0x6DB4047000104B3D,0x8B4AD755EF483E99,0x1B8E8FFBB2812,0xFCE4881E5CB75EC6,0x6DAFE5172B914358,0x8AB0126B5DAB3EBC,0xC9BBD3B78CFD8436,0x8BF85F9D51EB92D2,0x32CD8C70B314498,0x164179BD25311,0x7906FE86FA6F1DD8,0x63ED266B14EE9474,0xCACADDD7E1DA78AA,0x688C2814E53B3121,0x74B214F0306C3AC3,0x46DC44BC9C7F683A,0xC1DF58651C3E,0x4ED9DB62A359D207,0x385282099CE643A2,0xB98DC4A7E527D634,0x94EB65C9BC377DD6,0x922CF69D72562547,0x6E9661EF8D05A2F6,0x5573AE77F24D,0xF2FA13063082C5D3,0xFF133884BD62E0B7,0x15A2B57F99173A32,0xB6BCA691B32850AB,0x22671291C0C69ED4,0xA7EEEA0975EAA822,0x1E5726A483B07,0xCFF91F58544288E8,0x8269FF777422222F,0x767A8D9624D00EC3,0xDA240CA06E6C2FEC,0xA936A9D860FC4AE4,0x431FAF790F0F4466,0x1C6EBF25B515D,0x15FFC9BD84D91AC4,0xEAC607FCCA8B25F3,0x50ADBCB093402A45,0xC6D72B5D9F6E1B86,0x671ABC45D511942E,0x542EB3C5B9DE4E71,0x1F7099C3F2D92,0x678C1B54F100EEFB,0xD0959C1575258109,0x31A512EFDD170157,0x47F82280C34BF51D,0xA439E47576AAA282,0x22F3E0A14D0B441E,0x25E4FF2007EE,0x641097D94411EBD9,0xC26D2BF4049D4386,0xB3CA1FC78D071AB5,0x3D86C3DA06F0F3E0,0x54B3BA7713013FA3,0x3F7C8AA230AFAB0C,0x15A72D5EA1D35,0xE9A27616627A338F,0xE9B0A4AEC6D790DA,0x1D9A51F724497A03,0xEF3772C36273A46,0xF09A6B9F324463CC,0xF6AF696FC4D3A683,0xAD865C3B5CDC,0x91FA89154C102405,0x693C3420965E6D80,0xF98D885133D0D191,0xA06063670B6F6CE5,0x4470F825AD8D0121,0x47D70D4C691BDE11,0x7EE30DEFC9A4,0x42FB9F89E581FA3B,0x4AC16F37C42609A8,0xE776AFAB1E876AC,0xF695D7DE53652F4C,0x2319CB649D05933A,0xD980EEA04DC0CD9A,0x8E09773BE8CE,0xF77E2526A6EB93CB,0xF5C034193D7DBF7A,0x3C78CA91C702E523,0x55E9DC3FDF08D3B5,0x6FB00AD71203960D,0x138B121A2A80803B,0xAE1167494FF3,0x6D50393F59E810EF,0x5F707669B58535A2,0x91148EDBF61602F4,0x1B547195EF496B12,0xA30C9A0CA64235F7,0x56FD145D11066029,0x13990AB37E9C,0x9D310B0B2AA1087A,0x743B46E2F42059D0,0x885B0656509F742B,0xBFB2465647E75F21,0xC5310EA3FBF8DA05,0x314C023AE917D984,0x18F953F37B7AC,0x3BD3649296B06205,0x67B4A6AD422BA116,0xBA311FCF087C6300,0xD0D7A703BECE148E,0xAA6E47F8301C4FE1,0x9321B27251BEFF2F,0x8D8821BFF361,0xE633AF6C2D478F4,0xC49914379D0DBA89,0x7DEB42B72E177036,0xF572530017EEFFC6,0x24750F593090C77C,0x4698FC267FB049BB,0x120C8383C83A4,0xB186FF1DC758A02B,0x63DFC531DD8621FB,0x7CA564E602D7D479,0xEB6C90C85E505F62,0xAA16CDAEDEB7283C,0xA49C857389660B64,0x142A5BC97D8E8,0x56F76C4A14D9B1F6,0xF5B9E1701D74BA16,0x582813FA2E6C9362,0xF3A9BF72B6D83F51,0x6498289CFEA60D88,0x4D949802B7A52E2C,0x157C253B27603,0xB0C78D9422EAC3E3,0x5A996A040DF60EC1,0x2CE38B8C1A68C3B2,0x324019DBC145D35,0x40AECED1D101AF7A,0xDF05F30D986BF31F,0x114F6738AE35A,0x8FBBE43323433F75,0xD9F70B1D48F6E919,0xA5FF95AA57796166,0x694488909C237501,0xECF5CD98D50D4D84,0x42305A893A3A5B89,0x22DB792019D51,0x648438DFD687BF57,0xF61E4C1B74B8835E,0x678F74D7EB0C181C,0xCEDB6CF1EA300B4E,0xDD2F2BC0FE7DF827,0x8BCB92A31D3E1EE,0x21401B6525345,0x7751DCF04B922749,0xE58042F531BDCCA1,0xE1CD1314F0867CD3,0xFC170A8E72428D48,0x34C70445EFCFDD1E,0xB97F8135FF785F85,0x21BD7B7590D51,0xC6567CA6DE8CB162,0xABBBD12F1DA57E3F,0x5D7F25655E080D7A,0x643C34DF6FDD02CF,0x789B7ADF973B2B11,0xDDFE75D018238F05,0x1409895FC3476,0xE5896DADFC183376,0x3A24F0A4EF5DE618,0xC76673AD21BFE5C2,0x741AF7A75EB424BB,0x3106AF6FB5149345,0xBDF38B4CCAF103D8,0x1420615E052BB,0xA555489CA8CF797D,0xDF01A3BECDB1135A,0xB2AB2EBFB8EEC55E,0x2F3CE2AAF36C7E5C,0x415A1876FEE609C6,0xF3F358872A897B1C,0x1D8826120B8FC,0xE88486451C96CBF7,0xE2E2D9A13ECAD72C,0xB1873801EAC5749B,0xF602973BC46AD717,0xAC54358A8E649D67,0xC1DABE98EB0C7531,0xA186651A1AE9,0x232CA3EC1C95A214,0x369D2A54946EB4FD,0xFDABB18D37FC7529,0xF6A30987EBE69942,0xC2C5EB35EED47C44,0x6EF117605909C441,0x21ADCFED14074,0x81E476377C6188A4,0x9342939A6EF03A67,0xD4200752A2BCE12C,0xD19864DC7369E144,0xB371267F42E0537F,0x3D050962A221243F,0x1B48DD7B16663,0xD8E246088769BE5,0xF24894222BECC047,0x89F28B19A3F184EC,0x2684DB124538EC09,0xACE5F2D7646BDA3A,0xC9F51B79DB4BABF2,0x6DB9E6B7BC7C,0x63BEAF31DD2A1A7,0x1B6CB88F1B41C035,0x169FBE6CEA1B5D26,0x84E9720E34938E7,0x90EFDDA4191EF9FE,0x5F846E6686BABA1F,0x203736769E832,0xBE3C06C737AE4D57,0x32EABD8FEEC2B84F,0x8935B6DF6D373D16,0x261665160CDABECC,0x77583FDBA470FE16,0x1EFAAB64FAC0EBE7,0x172B908CFA03D,0xB2495881F978EF98,0x1183B76919B0ACDC,0xE43DCBDA3692ECEE,0x4C397152BF2FC1E2,0xCCD10DC1AECDDE74,0x300E0A2F2DB03B93,0x16591C5A7B426,0xAF1346743AEFDF2,0x120724EED8F511E6,0x18DB81AB7BFE3F2A,0x31F9415AF3FEA6F,0x7241675D0B7813F5,0x4334E574BEF027AB,0x697E946D4273,0x59E13451A9CBFC14,0xF3BC74A0EA7B2899,0x2CA65A43270A7119,0xA903BB8303B36303,0x29799146D8019F6,0xD05A2F5CC427699E,0x366B08B954BB,0x26E173240FF300E3,0x1A529688A392BE7,0x7597ACDFC815832F,0xF8D7C0A9DEB8783A,0xD30C5E96DAE657FF,0xD82B537A1F26F64C,0xC1222A77CCB8,0x58FD170962DC4EE2,0xB84C1C815F4968F8,0x6F521842F9BD4DA1,0x337F6CE88C16A130,0xDBB55DBA14083F16,0x8D6A3E5B2A7127A1,0x36BAFABDE9B4,0xB8D58AC83C1A3F03,0xF087EE13D0076801,0xBE1ADE65A2BF4C35,0xC4B1B8C43C677524,0xD117A872F91B2125,0xE9CACAD7824C69BE,0x187253F46A3C5,0x841C7B4354D2FBDE,0x239C34E560DE5A9A,0x93C34C0010F9D970,0xEA2FECA543D49695,0xA00F362A0041F415,0xAAB308111E1943B9,0x1A9646162DA89,0xDCEC2004CCFF6502,0xE4997297B02EFA2C,0x3A67419596E3A325,0x995BA4FEB92B44DD,0xE3C8B51D8F37EE3B,0xFD82DD96AE77DF49,0x29C6345BABEE,0xFD3955F11FE5D8A1,0x85060110D4BE6B4C,0x515623082B7F5BB8,0xEDC9A26B02DA1613,0xD656F37B1BC0F505,0x53C690F513916B45,0x196F964148511,0xBCC6F9DFBDB2BD4B,0xD9118139A4AD6BE7,0xF181B1269CB8F856,0x7D4EBCE2E29704B9,0xDD66A21817B4673A,0x4D2B02527BA6E01B,0xAF8AB2E28B2F,0xBBE91FE634F92058,0xA64E05D027B8B7AD,0xDC9EB523AAE25ABF,0xCE93B1FA1D3B237,0x9049CA49C092607D,0xDADD5A2515F00B94,0x776E8B9F5FFB,0x7CD350DE75F2CC4C,0x40F7EF34345282E2,0x3232A18BAC233912,0x920B6F8EC6B1AD8F,0xA86E3E90D933DD47,0x4891C3E30951D81A,0x163D4D2E4C28,0x39FC6BB2C214DE28,0x8F1CEDA3A4713405,0xA0EF3116D15988CD,0x7085EB4980EB5A6E,0xB4A6E6633EAA1FEE,0x995153FEC491DC65,0x2B37DF7E4D10,0x24B0D641638BD998,0xE7EAD716E43F6E29,0xFC73EDCD235F61E2,0x4798D4223A44672A,0x95FF2BDBEA70F9DA,0xA534A49D6B082C33,0x160F307759A1F,0x9F412B3B7AF46077,0x34B6A3E08E76B835,0x32D83E43CB315E82,0x4E649DC0516678E4,0x2541188E52C5EE9D,0xD490678CE1CEA3EE,0x1CF8EB5FA889C,0x617F884924DA6938,0xB62C9030DA1649A6,0xAA5080BC30A967E6,0xE8B15B49E1E17B3E,0xD2738282E5DF72BA,0x82E63930CEE02392,0x1CE9CD7FDE3DA,0x1D8B02811A147165,0x12525EE6ED0B05EC,0x5CF6A56E1AD9EA1F,0x9D6A8C8D72CB5E34,0x49CDF00BD50305FD,0x82C622F53FD29248,0x16C1D4ED23A14,0xC9F3D410A1B88CAD,0x39A3AE807AB8BEC3,0xA429145FD730E79D,0x7FFF7DE82BBA3631,0xBDB1FA2E5A7B8155,0x1DE1D5ADA726930D,0xEC52C27DEE60,0x381B382AB2580E02,0x30C947F399D4E455,0x8F65DB13AA377953,0xBC0661E7B3571F67,0xBB862613135D68AA,0xC554A1C9B0FA1468,0x2324CAB533316,0x6E1C9A226AA2B0EA,0xF67D7604245789E5,0xFCA41A36D71C2440,0xAABB1D2F896D2A0C,0x3C21788F2E858023,0xEB6EC8C272269E4E,0xEF40FAB365DC,0x670F177E4E8D2407,0xD2D77112E87BD55C,0xC9134FF451BCCE12,0x56E30A297C86372D,0xB29D5BFFA5C10419,0xE630EFB50C627408,0xF0147452BC9F,0x24FC6D54FBB3D739,0x70D43985970805F6,0x64D9391F9C6E818E,0x4E24422D9CA6AC87,0x9614967652301C0,0xA1A82854AA548D72,0xB3D5F4ABBED9,0x947D3BF12AE4273F,0xB9A3EEF5C875361C,0x284625DB0D2133E1,0x5CC38FB493CDC07A,0x71A9420E8A8F1793,0xE1B260F50F4F6881,0x72B718AE0834,0x9114E93B8519CA92,0xCF05532E12D2E27F,0xE19A72906548F476,0xBE7C1B3A22ED283B,0xECE224A00354ED01,0xFEEDC2BE3885783F,0x2102030FF18CF,0xA7EB468A88159E08,0x7482B379A955232E,0x5089FBE36FCC14AF,0xC1AB095182B74587,0x9B7F40C899436F55,0x177061C6B102C724,0x201F19D2E0D7F,0x96F7D0952CF03BA4,0xBEF471936CDE93,0xAD6699D02C6FDFD0,0x191742F8A44FF8CE,0xD0DD627BE54CFCC6,0x471CFAA2DDB91F0E,0xB23B7B3A6ECB,0xD7E975EFDBC42532,0xBE7EBE32CECDC504,0xAC88BC71193B070A,0xDD1A7CE520B8BA88,0x31E33F5865B636BF,0x428A5F1DE0F7064A,0x1AD05C2ADC23A,0x81F61E90FDEE22D,0x9BDB22D3DBF4E904,0x172B4C424EE7A93B,0x595531CFB6719F51,0x90C3FFE5A860E188,0x766F9C816C34F80F,0xF49A34924046,0x7B997494716701CF,0x41945D900222B074,0x6A6B3BE957DC089C,0x2F81DC94D0DCEDF7,0x3F7E878FFC19D1B3,0xB3E93F0313270A80,0x2269612929807,0x636DE284C66ECE9D,0xB3E91BB39DE0A69C,0xDB02BC6650FAF782,0xC25447AAF53DD803,0xD6E0E79E6ADF998A,0xA7ADA45D03FA5F8,0x116C95797CF45,0xBA288815CBA9BBA3,0x3C159EA9B8C28219,0xB34F4D48BC2C454E,0x6746931AB531C735,0x2189814A657ADBBD,0x482D3A3B70088814,0x14911F072A8D2,0x89D7529D6D11BB2B,0x7453062C6BED4536,0x1D466047019F19C,0xD24C1CC4D21D0FF3,0x6F5D4F5A8D06D41B,0x5F63731C44665442,0xE505556A4F1D,0x15D87F526BBDECBF,0x60184D57E987294E,0x181AD10ED8AA40DC,0xE22B2FB40DDD1BA0,0x98E5140120736A97,0xCC803037F042A002,0x23213ECFF7758,0x27C400E011C82358,0xA47A808C64BDACFE,0xD1AB0D7A09CCDF81,0xD24AB97453F62288,0x2F135D5FB7070495,0xDDB21D053B275546,0x1F6FB2BDD890,0x7F18D6868F98B5B1,0x372D2A30E8045F77,0xED6FF463886180DC,0xDD50AA8122631E35,0xECDC6EC104EC6E4A,0x4110F6F15E3D8311,0x1DCCF1618A400,0x698BAF26E5FA1C58,0xBDB41ACA242CD208,0x16A41B92386B83F1,0xF48FEE4C5CEA43ED,0x13B20BC808DB262F,0xF37EB17A44A8873C,0x15B081629732,0xAE9E269F56D232CB,0xA55B2D25BCB62E9B,0xE72C7AC2F28C2F0A,0x7FABE9DA9F1BF11B,0x1D33F7F5B56A57A2,0x14E78D2817D45BA2,0x4C13BBA4AE0D,0x31988C6689F49DF,0x44BB54685FAD3030,0xFE817A2FA5FA16B1,0x94AE790A2F1EAEA5,0xCEFD375DA4283042,0x2CC375D363C1750F,0x18F6317D9EE23,0x96A7C878BB1EDAB7,0x40DEF16EE88927DC,0x47A11F4B4553DC3C,0x2EB5200C5BD46DCD,0xF11216909AE257ED,0x66F810F7D0FD0EDD,0x86C7EA89C724,0xBDC78AEDC89E1946,0x2507316DAD0A1760,0x92576B5A54C69E0E,0xF9DE8220301A0A2E,0xAB12032BA97BB634,0x8EAF464C50BB5DB2,0x983765B8AACA,0x7050FA6D8FD84449,0x2330EFB0379523FF,0x9B239F90F6B5D9AA,0x298B0BC8941CC5D6,0xA262BD196DCEE4BA,0xC1B2CB1F5A9E24A4,0xB6CE9234BD8D,0x55763A0860350B82,0x903F72F9E27F9EE9,0x92ECAF5A9AB163B0,0x53BE3141F78FE963,0x7FBBF55A04CE6753,0x70CCD8282A1EB302,0xFAB77E935280,0x97A1B799DE95E718,0x6735735B436FB210,0x4E5DF6EC779EC951,0xB11CD030BEF2FC0,0x8CAB7E6D905C43B8,0xDEECC7186BE02683,0xA2E8DE1FD05B,0xB1A5DD4A233B221B,0xA54D692FC443A4CE,0xC3535B32632AC1B8,0xBACDFC2DF8D132BF,0x7453DE996D1B65DC,0xD527370DD198C6CC,0x1372E31FA76C9,0xFC513FF7A1AA8275,0xEBAB567D19E6BD93,0x3E14E09E2AE10EBC,0x7CF23652EF97D46D,0x44EAC7F8D6D21756,0x71BBEF3AF4C514C6,0x1820E9F4C0A90,0xA0F70CD352E65EC6,0x5BA297366D5D06EC,0x172D0496867CA573,0xA974C0E61C1A78A3,0xFCB44912483BA062,0xCF9F033B3184EAF1,0xEC3A1A6FE572,0xBB001731A9241AFE,0xF3F2699215D3026F,0x51777995FAEC1563,0xDA9C83B345BF2D61,0x118DD8C6A754FD7B,0xF13C6A3E602F41A1,0x19431AEC3C434,0x795850F05E5E271F,0xF78498DDE7B4A2F3,0x70186C47C97999C6,0x32A19947F1861E91,0x9D050A4C6F565CB9,0x9987BFC34F526C9A,0x1A8AA2F68DE43,0x897EEA13B54D6AB3,0xBCC1C110541A25D8,0xD2F1D2FF4081C594,0x50B2B6126797689E,0xD6645C1F9E361219,0x192C50AC1D580066,0xE2B8044B69A1,0xD227EE067C9228FF,0x398A95CFA1DF1787,0x8675E243261FA767,0x391999E7E98E2FC1,0x7260A3AAEFC4D38C,0xA30F88EAEBEAFC08,0x16E680BA81CB3,0xD7B84672C191EC5E,0xF0793167F5641EF8,0xAFFB66DF5C034BCF,0x92B537D95D289E03,0xD8B2BD07B8A655A,0xC206A12B3EFADBDB,0x1B4C4A784C2BA,0xF44B63B96369A385,0xCF195BC8DC712FE3,0x76665BA9F80225FA,0x8764B3C5400B5893,0x6A71AEC475B579CE,0x5BD5F48DD10535B4,0x20E09A692ABAB,0x9591C582189350E3,0x5655D921F5E14D99,0x5FE29F23223A2237,0x38DC941C6B005D83,0xE193C91233855D92,0x3605D4392B5E7AD2,0x1FA62E6D34CFB,0xC7DE4DB15CDCB9D,0x44704A69EEA41F31,0x7FC700BF07FA5E28,0x5D61FA6AC409EB22,0x4033734C53B49E4A,0x90F078A1818B99C0,0x16C6F17B7AF83,0x40C880A34B0BAD26,0x847B1C9FD259A3A,0xED39541E937F52CB,0xCACD945B8B5AF23,0xD1C0C703C47553B2,0xCB902D4B90102100,0xD74B2826394F,0x25D73CE741F11368,0x668A44B950A0B31E,0x936D6EC7011D0B71,0xB47CAFF6F94A226E,0x85FB21E9B1524403,0xAA4EB71A1F2414CB,0x93B431756B9D,0x453869FE009B0F8,0x4937DDE2377E3E8,0x6D29E4F40ADCC056,0xB6723D52230A0940,0x761405E0A81BAFC6,0x1D7471F8BBC40EC9,0x166FAB17E2477,0x209E606C1B0B3E3E,0xF49F8DB334DE39BB,0xA9DB3C8C1B17EB94,0x7DC1BC406F22AA5,0x74A71B23C37C0386,0x8EF6AAF2EE75493D,0x3F6EBDBD400D,0x51608F8736C982FF,0x36A8D9B78374832,0xE221AAB047D504D,0x1AC87F47BF9597A8,0xFDF8AE43939A742,0x113A2720A82CBD7E,0x9CBA01A03D95,0xE6C37FD5E6B8619D,0x3F2DF8127C083994,0xF61D2A54A6A79A22,0x2C859508B25BCF71,0x50A09C9FCA27227A,0xB62F6322B85A83BF,0x88882CD1B74E,0x3833DBDDDEA6C29C,0xD9A5B3B2C3F49E0,0x417382E525C9AB20,0xC53E95FAB42B7D14,0x859D3723831EAAE7,0x5D3AC504FC0856E0,0x144A2428FA8F9,0x43CB6830595142A,0xC2E3864106321EA,0xADDA16615917617A,0xC7070F73589DCAE,0xF2D5C4C9B2E17C3C,0x26AFD6D7BAFC8C79,0x10AA03AC2CFCA,0x323DB09DF302E24,0x1ECE188A530F0B67,0x7A76296C95EE8EBD,0xA96774E6FBDEE30,0x3902867308187695,0x9A5D05EB4D17E866,0x580721F4A00,0xFBD6B23A80A6916,0xDBB752775100C19A,0x5FCE6BD6E51164B6,0xE72DBE46E280D41A,0x50DDCD7E786498F9,0x38BAE021D815751C,0x1B10314A0C4B5,0xB6F7260F0D2EC50C,0x8C16C335A0788B5E,0x4187D533017E9F88,0x7A0285C24F2B3EE7,0x4861931A336C69DA,0x40822BDC7AAD9A15,0x1B9316667023A,0x2D0831C265CF01C8,0x8647FF51B9F9B9A8,0xEF9BF6CD31463725,0x1258BDAEED556174,0xE2680C9B573401D0,0xB929BD1D9C5D4D52,0x23117CE03134C,0x6262E02EE28D7059,0x353CFC17FAC1C076,0x921EC6DD5CD7E640,0x8DD5CBA3C4CE8AEF,0x7F03BDD8B01CBD90,0xBD9A115E6E441948,0x21867CA90BD27,0x8EBD906C144421D2,0xB05AB9AC931F87BA,0x77A8C15D66339C85,0xF87BC517E134126C,0x49212AE9F55DEC35,0xE37E65DC8A7C4980,0x1C2C443258926,0x1B8CC19F4AD42E63,0x3E81133E706E2AB,0x8EFA02667FB1F21F,0xAB1C6271A90B1FEF,0x419DFEC03683B645,0x7FCE39E8387D6D7C,0xDCC31F749641,0xBA2D5EA8087C8BF7,0x82AA80517EA5226B,0x5CF30FF2DE0BEA79,0xE62D7E5CE2F6431C,0x1B4602E5103F8C54,0x7C49EFDF854C5073,0x10D19E8929D27,0x932ADF478F92CAE0,0x50146B75B82D7A53,0x6EF72291203F27BC,0x122E249A8A5C52D8,0x9B87B652A089C4A4,0xBD77548351CFFFAB,0xA77250DFAA1D,0xB88A7F23FD12A44C,0xF64162524CE2440B,0x8FAD24535B221134,0x937787FD0DB091EE,0x8A45ED4B551CA87F,0x870BA995B0F09F54,0xEC58B50C27AE,0xCAEFC33770AA6A7F,0xEE55B59C9E3AEECB,0x483AFE2EA15AC92F,0x64C5E54547A1F004,0xFABEBF9EB719C4F9,0xD0EF8BD9477BB451,0x10BD44605A8E8,0x33D4D9C5A00D5C,0xBC8C6598DDE090D8,0x9DEED6E852D1ABA8,0x91E751BFAB805FA1,0xB389BCF8C609318,0x390D7BA07091AF2B,0x13C05BBFD258F,0xD9D901171EDDC6EB,0x76D454CA4EA58188,0x2E1A4B118DBA4B62,0x1F59E15E3435AEFF,0x57C071915292870B,0x2BEBBF71CC803E5E,0x14C6DEAFA9A9B,0x269D2213AFE61828,0xCDE63325D2DB420A,0x3CBC0CD731C93E1D,0x4BB3829613C92480,0xCEA4E3ED7DA29B0B,0x4FB35394B2A137B7,0x196B2FA14D4D0,0xAFE964433BE893FF,0xD4AA932AC981C620,0x6B690FEE1880CC14,0xAEB48FD1248124B2,0xF563A102BED41524,0xD9E0B499D137B880,0x4B45BD575376,0x5BE060E58E3F7DFD,0x607DC5AD258A2103,0x183A33BFFAA7A857,0x8C5475C782644568,0x111FF3CF9AD73713,0xB330D7425903E61B,0x16FAB9DFB80D0,0x606D5E27C884A3C2,0x640BA774AAF57740,0xACCA4CBB219515C2,0x727C74F67E5A9DEC,0x78ED71F2185A349E,0x67BFE0852EB9BACC,0x109BB201E7939,0x621207936A3C01AB,0x76B64CAE9DFF6F2,0x211351B70AA126D4,0x9377C0BF444C945B,0x35ADB51DAD723C69,0x5929E31C8225711,0x1C2812F844174,0xCADEA7F50624BDD6,0xF1511E569AD59D8D,0x9957EB319143C99B,0x76BA8083F5080FAC,0xB8C798E5BEB4A189,0x380FBED1AD9AAAE1,0x1F556FF5337B1,0xB7D4CB9D5EC3A289,0xB6962C9DC550BBAA,0x70FAF7620F4DA69,0x4FC408CBBEFD197D,0x62F3EB31C964B6BA,0x25C15B846848BCE0,0xA794C7B283A8,0x556B4C55A7C45519,0xBBBA511DEDBE4BD4,0x89050314E5D246E0,0xBFF68D99076CD928,0x463F6AF3497D6143,0x1D28F7765EDDD509,0x22C3A44D6E41,0xD2B3288913F99990,0xBFE568477F99F884,0x2AC90C8FDC8C4694,0x3ED680E57EA01737,0x37A8A04181A5CE2A,0x6F91C2C1D6789700,0x19CA325FC9CA0,0x6EF23D9E4E6367E3,0x3E3C463169A8640B,0xD52840654E1F75DA,0xD39C12A1286CED3F,0x66304F5916FFE348,0x420D8054223BCEC0,0x891DA5BF56EE,0x27341CB39CD3BB74,0x96318E9BFDD0F94D,0x7092D288FCCD3D9A,0xB83892F3AF6C0C87,0x27DBF18BB7234B60,0xFD42DFE887D60230,0x78D065F963C7,0xE84B615FB6703AF2,0xE9A1487ABA8BFBEA,0xE82B88C77C222F24,0xBC019BF96F780F09,0xA70ED89964286B05,0x7023C916F74067,0x1920FFF6327C5,0xB3A576C1CAC64B68,0x7EA901C532BAB6,0x9246F9DF36769585,0x93D9C5DDC8D511A5,0x4B843872CB6412E2,0x887EECFC3EE6ED60,0x15CA5D4AC6B53,0x3A7C301AFE25D819,0xA77BCEB45B016D98,0x90FBFFB88B4723EF,0xB8DEF0AB99652012,0x1EA463C13BA2124E,0x229906DFFEBF7011,0x191348CD3B8B0,0x2B3FCF50CFED94B1,0x69956AF12F8A601D,0xC2E638C5F73CD7E5,0xBBC7CEE22D4CC26C,0xB722A4C41EEA74FE,0xD45FED19CC643C7F,0x233F9181761C3,0xD7D949125D41CADF,0xED747666A30CF71F,0xEF37CB05D30B12DA,0xC5DAFFD6681E5E4A,0x5AA73DF2D191A97C,0x6E2492A3BF57B5C,0x1D392A5D8E5CC,0x1E7208FB1A108004,0x4A158F72EA518CD5,0x6E3A0BD925DDC469,0x57DF2F8258BEAAAC,0x6618B5B6B099C81A,0x36ABA934111403F1,0x215765EBAAAC0,0x1777584763E783AA,0x5D0D93EF5FB17D5D,0x4FF28A157F52F31,0xC52F2A1F13CC2305,0x765644F242BC5D4B,0x46BA3099F6DA6B9C,0x9769D49729CC,0xE0B85949F7D999FD,0x31804BBE30DD8C1E,0xA648816639521A74,0xF7FD74F04EA74E0F,0xC91A45B1727D3917,0xD506B5A4F9A58AF4,0x194FF39690551,0x8C54BDD59FFB7D4D,0xB615D9EF09378BB2,0x34548ED338AFE48C,0xBC6BFBA837396E60,0x2A617CCE63A9F780,0x2EF32324407F648,0x232BAB331F562,0x5F0994E7E55D51,0x13A774B9433C1B57,0x8CA2A724F3F2D989,0x6DC499AFF0D60E43,0x12801D90C631EECC,0x5F4B872515C4FCAF,0x1637DBE7B6E23,0x822C45290E73A9A1,0x27EAE72AF51B424B,0x71AC2380A7148ED5,0xC48E1473EC348DAA,0xF8E1AB291C5351D2,0xACD0118D9D3FC9BC,0x1BA91D9C991BB,0xD54CA6F8F700C7EB,0xB3E3B6C798E64917,0x2D7581CF639A938B,0x9A8C153170DD161E,0x373749C58CD131DE,0xCC974A399F97A215,0x126413F19A2B5,0xD20C93FC471CDDDD,0xEA6753E7DB93279A,0xA8FD19573CBB7AEC,0x2BF80E8D33FD4AA3,0xC32C8DB67AAA1F0,0xF750C007C6386A98,0x133E3879FF276,0x506BBCAB910F5650,0x2876EE132A639FB7,0x406A3BC820EE1894,0x325F0986DB658A20,0x68C36C9C89F1D396,0x215DD51949392E34,0x1C9417D1919C7,0x168C7C08FD0638F5,0x512815EF0F09ECE3,0x5FEE261FDF0C4DC8,0x5026C5F538BE32B1,0x661AD44646BD010A,0x1B81A47A9B5BF56C,0x17D6E5AEF73C6,0x2840676EEEA61C84,0x667A23BE8BD05B17,0xE69E96C3E1750863,0x371044929F82D743,0xF71C905B74FB1A26,0xFF661F6D58D0CF30,0xADAB4F930271,0x11689AF0F1F44A6E,0x9182F5FCA5F526C8,0x8B891433ABD380D7,0x7F0642B49B36366C,0x90BFF49A9BC3F0BA,0xC928316D79A5768F,0xB1E02E69101A,0x355BED08FD7BB9FE,0x94000E87C8EAEAF7,0x603223C142FD519,0x1589C4E67E08A2B0,0x60D4C7E8A36E8AB4,0x5EDDCB0DCBAF8E32,0x1E6AA9E72FFF6,0xB659FE9BB927DC4C,0x94F02A04EA1224A4,0x93BE841E411A4305,0xB87A814CED357D9C,0x72F1ADB8758F2FD6,0x34A3EB9D278A7888,0x4CDE0DF95E3A,0x4475D9BB4042E344,0xFD5EA9272A9375E2,0x78E8DF894A22A4AA,0xD93D22995655090E,0x552FF88B55653A69,0x972A15474FA4B6AB,0x8190DD6DA589,0x36066EE3D62C212B,0xFE1EA5D78078EBBA,0x3B7C86DB8D7F7915,0xEEE231ABF631217,0xDBC64825272BD839,0x530741801B3C91A9,0x13A9C167843E7,0xC46BB040620BF5EE,0x9605392771578746,0x55E0FA1FE15E595E,0x775217CDF523B7B5,0xBE35CAF2EAF3EF6,0xFE5710BF1A5E30F6,0x14D066107DB1D,0xCB29E93463D819E2,0xCD7DA128E8798819,0x6E40403F712A7C4D,0x123EA947E85908AA,0xF2701B9895B74A19,0x1F850660F2BEFCDA,0x1C93866F0110F,0x783FFE8AAC2132BE,0x82163F31D3C7ED2,0xEFE04BFE48890763,0x30D0F991D335C231,0xDA0609E4CEB2112,0xC15C67C354C9CA38,0x168555425F115,0x481C9974C474A802,0x8F27F96E3D284951,0x101929E95AB3A412,0x6BE40F393DFA8339,0xDC03ED161BAB49ED,0x605A4810F88A1B1A,0x1FEDCC7D924A3,0xFB6529AE4167A7AC,0x8F497D89AC1ABFA5,0xDCCB096C15DFBF1D,0xB91EECE13086D895,0x802B732593F319E9,0xEE6A0CD350598AB1,0x19CD0F30AD370,0xE7C4EBDBABE37FAA,0x789A39824180D35C,0xE1A33A69BF2E27B3,0x34B7BD8C332620A0,0x181D57FC9EEBFAAA,0xA1F41DD827E9C5B8,0x1BB3CEECBEE97,0x8EAB3264A91ADFDA,0xA08B2B4BAF4FB1F,0xF633627A97C42887,0xBDBC20C1B1542ADA,0xBCB112D2BDB7B810,0x32B31D3378F1270B,0x20837A899DD05,0x8A5AA931D151DFFC,0xB8F13C4F2A7ED728,0x8DB193A1A88BF4C6,0xB1D4D72E6DF9235E,0x410266C817B0054A,0xF91EE8D47B80CE8B,0x57882ECFF68D,0x440072FEF2355474,0x8D938F776C8FA59D,0xED6E689255807F6D,0x652CE0B80CD157F,0x3FFAD39A60408079,0xFB4DF04F5D5CD028,0x1B6348AB1400F,0x10F944D5347C5280,0x998C70B87D759DBF,0x82665F73E54A79B6,0xAE079975FD435FE3,0x974D05010F2A0254,0x4025DCCA0AF3554C,0x11051B7F995B2,0x69A277BE7045C53C,0xE65A54254A92A66,0x2B2D4DC2D8FA051A,0x71399E41D23B328F,0x158839DA8D7E3EA6,0x160208393612030C,0x6260B1D3D771,0xBB5B9CD11C629FD6,0x3D5B571A3B0D3303,0x5A58E53962E6DA79,0xC431D8551FA94437,0xD6AFDB2E27991B6D,0x36B331AAC23DAD8,0x168CDA517C8F9,0xCE63368999CE75C5,0xD6ED29DEC3AD60BA,0x1721D879D55ED9F2,0xC7F8EB63FAC6BEFC,0xE235F27E35130F13,0xDB12254F1B759A0A,0x1F664C54FDA0E,0xD5C44428A5F16146,0x200A226F43032DB7,0x738EB9F65FF66D37,0xC76837F98BF693EF,0xF48F0A49BA62701D,0x50DF3BBC70ACF9C6,0x13D4441F9106,0x9279AA93F3AC7166,0xC0AB550D08F13B2C,0xBD8C3A95FF26FB28,0xD34CD9D9A9529D92,0x39E14EDEBC5B2400,0x5525083508B50D26,0xB372191BD318,0xFDEEB9A21EBEE2F6,0x90D72D214CE9A969,0x1CCCC55D7FBB336C,0xB095772CE0A1E824,0x6F825BD40036133,0x99DB04A28E74AE76,0xF1F943E318DD,0x6CCF0A27DA3D1D3F,0x296A4B6B3F425614,0x81593BA180F95DFD,0xA27CB10D067D93F3,0x84AE80B6CE1836ED,0x1AEDA6CB12A531E0,0xCC6CAA6E908F,0xE702A08630B3A6EA,0xA4A33CF9442B991A,0xB227F74AEEF489EB,0xD4DE729C44A61D15,0x69DDE402EF17A34C,0xC5DCAA05F9C63E77,0x1CF65E17EC9DF,0x23463A5BBC203F2E,0x35DA261E73ED5145,0x864E997F32ECC1F7,0x3CD72773AC77471F,0xB1471C8CBDF1F65B,0xC9CE72D5DB281200,0xB68C9626FB4F,0x6DD153831B23B6DA,0x9205B27A5B86B2B2,0x59C7EFED84131878,0x60A6B0B0BE13E104,0x573AA91138F30A49,0x8D0102053CAE2681,0x10035F7845622,0x1D5A6B5240EAA614,0x8E1382178DAD0CE9,0x8DFB211A42272121,0x773B80357E863913,0xCD54007C11571ACD,0x959B4A7A2FC52B6A,0x204C19E5AC9E6,0x627B4BEF3889BB26,0xD36FDF72F8CF1CE3,0xDE7C5E550CF8D086,0x120E7831A48E59CF,0x4554195EAC5779D6,0x1B18C63E1B30DE1D,0xD34495BFEE3D,0xCF45A904E91BCE09,0x585D386BE3119EF6,0xAEE6292C30FA8B7F,0x698D0A8AA447F6DF,0xA7452E45B26EF81D,0xA01CC28ECF20989F,0x80F3560E5D33,0xB284EA1F67C7BAEA,0x1C5869259894F879,0x62F43BAC11507FDF,0xC0A2CDB6096CFFEB,0xB80C89ADCBF38FE8,0xCF67432187251709,0x2D74ECF00FD7,0xE084247F403EB4B7,0x427785CB80D65A92,0xDCAFFB9401D25C8C,0x5C835695880B361A,0xE95FA77E49CB9988,0x514B97FBBAC3A4C9,0x1E1DE0134B959,0xE5A4C0223A7E2A36,0x2AED26C535019DC3,0x2B9118EB35000BB0,0x2293E9DB0D8777DD,0xCF5CCD0E590261FE,0x18A53BD77BF4BBC7,0x19F450C42843F,0xB3CE243598353115,0xB394420E270A2E92,0x20862B9521AB6389,0x9AF51328EFD30D85,0x726660514664BEFD,0xFAED4162E3ACBBEF,0x1A22272FD322D,0xA887403A9A330B28,0x7094D9DC988C2968,0xB864AC54E54C412A,0xD9A5D5FDECA7528C,0x9440F125E3BD588D,0xD3AFCA2AE06EA133,0x1F771A088BD16,0x727AF0A01A49F86,0x3845D0A2AA03E096,0xC5E263DA139A3EB6,0x40DC10875144EC34,0x59C548343E5B1A77,0x7AC1B156A7056D44,0x133342CE12F72,0xEDF92BF27D93FA26,0x6997773C4DF2533F,0x857B2448B54320D2,0xCBB9FD19F676F8AF,0x96A1F6BA660716FE,0x68AF5A4A666F7E64,0xBF26653067F4,0x8A52DBE2B12B747,0x5A295AA43D051A67,0x86592E633A342559,0xAFD804BC917DC463,0x76C187E4572B40B9,0xA94010D95D4FD5C0,0xF52854A82187,0x83D60C6D587CDCD3,0x37A5D9FAA80E6F97,0xAB9512167694998C,0x4483A204B581A85D,0x5B173C60FF010D19,0xF7501C42C7DA0F61,0x20B3238E75C8B,0xF70F4150B5AEFB91,0xF30CF74595704F72,0xEC22C752EBF5E923,0x8ED53C379B4F2EBB,0xB9601F65EB7B369F,0x801D0D8AE213065C,0x8E7FD4C9EA51,0x17ED201DC672353A,0xEB621473A21E84B8,0x1B056E60200BEA01,0x232B7705E57540FD,0xDC556FA4C3392B7B,0x15FCFC3E11F4E0C8,0x1A4B64BA1F38C,0x3A2D5CD0B2ACBF51,0x57D9AE5D4C8A2810,0x7955D7F34397CB8B,0x11B76E942912BA80,0x545D436E1B392C87,0x7A6693BFF3C5532D,0x953B2A1DEFA4,0x6E64D43A15947672,0x2F2626F68E0C2613,0x555AF0E146EFFABE,0xFD86755FCDE2AFF6,0xF63FAF17A07138FB,0x93A35E894175EF40,0x14ABDD39EEE4B,0x3BF383BF1D3AA573,0x7BB9A79B7AD6314,0x64178F71EA300451,0x1EFBDBFB13D75B1,0xDE1FB519946244D,0xF7BC99F68EB8DA74,0x17299CDC313A9,0xAAD33A7CA636763B,0x83E8C5540E6521DB,0xF4028F6A3EE124A2,0xE9A6F675F0FA7FBB,0x1A6FE37C7338D985,0xF659FB9F219A4198,0x534E592781D8,0x89E9C38AB46818B7,0x2D972C4E68010DF9,0xD01C291DBC832180,0x4F52CD52056C6A4,0x3ED8ED3E7010595B,0x1CE0F6059CECC7B9,0xDB5022F67FE,0x55F2502CDCEA5F08,0xA95BD1A142B1E114,0xF63E2E8DC03227C6,0x8FD3653C28AE276C,0xDD29AFDD6810A2D6,0xD9855498E83661A0,0x212944D76A217,0xF80C31E07636F014,0xD120BE05140A198F,0xA10A649AB8C91994,0x411C32709A19718C,0x356AFB6CC613A39A,0xD80BAF2480FFC662,0x6E8F9741C545,0xED53A4980BE88FF4,0xB16F17D0FFE7DB9A,0xB6A8FDD07AD64664,0x3BFE70CEBCF72019,0x992A915414C2830C,0xDA5D3A3C516BC1D4,0x75EA6E383DB6,0x72A172268BBC366B,0x3BB5A2B7ED4C1E5,0xDB6B151194AD2231,0x6DDBC606A105E9BA,0xE5163A9ACDC08961,0xCD69F7BAD9655383,0xA6ED89C28150,0x505934BF0EE09602,0x3951C25F2DBF55D3,0x25E7969F41F9F43F,0x6F9A98A2141EFF3,0x135B3E2E311BDCEE,0x7AB5114D73E13847,0x1FBE9B1010B85,0xA2A598A41EF32990,0xB158B588842BDFBF,0x65668480F2E5826B,0xA585E2C825CAEDFB,0xAB645FD32C5FBDE1,0xB1944FEC8AB7DCDD,0x717D08383149,0x723556DB4AE3F8D,0x3A061A967FC00EB,0x5F84F34A176EA7C8,0x13E833DA3CC0841,0x627D4459816CA516,0xE8EB5769190C3702,0x83AA284AE112,0x3E6267BC774B923,0x5277030A4A1239D3,0x3A0030370FCF05F3,0xC6621947968A0D6B,0x628FDEB8AB66231A,0x29BE3F5878401799,0x11DF91B775429,0xAE7FE94786A4C494,0xBD149244C10C0148,0xF5F4C3112E7008C0,0xCB4FECDCDD695806,0xE02718E4B9092EB6,0xB14DC9ABBAF84E08,0x1221DE60D111,0x48B2DD458D21C58E,0x4FC2EF2E46305264,0xBA6336E2B50DC468,0x2FB0106F3FA5FB3F,0xE87BAECD597BD335,0xBBB0EDFF19A0C876,0x1EF2ABA4C7340,0x5747CBFA67FB0BF6,0xBDD96F538500B095,0x3B031FDCC2B4667D,0x21614CE2B0A27969,0xA12325167CE5ADD,0xABF08DBED3BBBB2F,0x16610954F9E23,0xA81D391B48F4AED1,0x5B2EB16E4E73831B,0xB75C2465BE239,0x19D38A17F93D40A4,0x62FFA5F216D79968,0xDC8D25F1A4C4AA3,0x21A6C55FA0200,0xC585C31ACDF75F15,0x27AEF5C9140170B6,0xEE19086E5B6D0FC2,0x459FE7A758AEA172,0x464C922A87C7AE8C,0x1AAD2756DE22286A,0x2058561DCF1D7,0x22D33C1827F0FA12,0xA972F7AB4E5E7DAD,0xA18A447BA5560CE,0xFA2846360AE9B3C,0x40162C7D1730E5D8,0xEC87C83040A13683,0x1BD90BC4B5C5C,0xA9FCDE707AFB153D,0x9882EC56FBA1ED0C,0x30B8C93314824E75,0xB711DC79C48EF1E1,0xE7E1648B3C0579D8,0x636976ACF25C3E19,0x127043A177E6E,0xB5D192B3EE9A23E7,0x422BE6B774D4BC76,0xBB89520CC35CBC31,0xCBBE71FFB6BBD82E,0x5C54E6179AE0FCEC,0xFA4BDDCE75F52,0x1522E954633C8,0x33EE7862561A9B8D,0xA321A457A3DFF2BE,0x46F2A888940BCF25,0x2D41739A595AB351,0xF9294C0BE4A61FF0,0x19A2392C4E6AC3A0,0x2131D1926DFB9,0xCCFACA3944C3898A,0xF5B05B42B2DE8F6F,0x89DEBB951289B7D2,0x97528DA7388ED69,0x859690A39F79F237,0xA6B6A34A5B07BC,0x1DAC320D5BFFD,0x689B0C1B565DAD87,0x7064CA2681E3FD44,0xF9A4DCF17B951102,0x62B7979DD66B811A,0x7581E4C4DC1BBB4,0x3BCEDE81351EB32A,0x1F72D2966B8F2,0x26BF49EAC52E6C1,0x6349760EBCFACC98,0xF8BCED60063E8ED9,0x61038B47E6547121,0xE149AD2950B097EF,0xE3FA1422057A7270,0x8877EC664C6F,0x1F1BA7BC87514070,0x43225480FA8C4D6A,0xF00EB6ED8E468648,0x6A228895FA6E76B6,0x762D270715AC01B6,0x6376281A3BB490BD,0x87D038D8678A,0x76558A856D4DA426,0xAC6CC2503E0D7304,0x40952E707A390EF5,0x4D0CF6E3A949727A,0x5A810611C296F26A,0xCFF52FBE90D9FAF1,0x878D97151DCD,0xA94076878F5DC53D,0x37EB828ECE9D23BE,0xAD3F6CBD35639B4C,0xDF32276CF971921,0xD90787E6025C608A,0xF7038C9A82996366,0x102DE083D9254,0x2400E370B7729B1B,0x26ECD7FC92F71C71,0x841993E12C5644A8,0x691D65765393CC28,0x4A0105CEC34EF466,0x65B4B79219DBC296,0xB1C0757CAB50,0xA729F9FE21A2833B,0x8D016C0E66701591,0xBCAFA717E6FD9AC1,0x8BC651D1CBBE6CE9,0xB7B79D5FF0013053,0xDA621C1283A371F5,0xD0583B04F2FC,0xEE5C3CF3A5E454D,0x828F259FC973886A,0x7B2C0449948B1211,0x68160AFF2BDF4661,0x96BFFD773B5FA1BA,0xB9234054E335D4C8,0x13F93081AA31,0x52BE8C2BC0286178,0xC2E1C8B7FFCB7FB9,0xDBDF28BA5F060721,0xF22FE315FC712DE3,0xB3FC2AF310110311,0xAB1DB071336F4772,0x4F2531E9E9E3,0xDBF25825CE5B87DF,0xD0ACAA8D88CD14F8,0x8B44D62533B2EBDB,0xBB260A46BCA33C16,0xE6112ADDF9558226,0xE10024322A8A2948,0x1B9C476B5FABD,0xF56A8955251AEE46,0xAC55D6C5168541B4,0x48F477FEDE57ED19,0x213EA9EDDE4E05C1,0x1AFAAD1BA38CA514,0xB8E19AFC454A1B46,0x1D84E151F318,0xA30316B15BBAA8AF,0xCE50B8C68586AAD2,0xB10B661B82C96FB,0xE4CF1964EF27B9AF,0x253E26DEF62B06E9,0x57236BE50E85F81A,0x1C661090010E2,0x6289B56A0F6D2F27,0xCB2E182072C49989,0xF34A9846A9884331,0x6A21E060A0A6FC6E,0xA372633F46E99F4C,0x9FC4ED35B80068E3,0x1BDA432BF2B7E,0x4130D893109DB90D,0x2A02AB6CD2EB6C63,0x808E691F7059798E,0xF6AF801D71600AB,0x5802F3DD638D2869,0x9ADCBF1612C542EA,0x222FE8BB1ED83,0x2D5075833158727E,0x896551ACB849CE79,0xA681AF617647F788,0x1723B5EDDBE45009,0x9B5854E0EB1640D9,0xD62688D00D7182BA,0x19BA6EEC7E1CC,0x77514AC85F8FE7F,0xB1809AE785EA2C68,0x6C6ED5EABC9A5F7,0x70674BDF0E7404E,0xD56E93EFDDE8CAC9,0x2417F53265519D4C,0x1114DFBEBCAAE,0x5AD2B639D609EDD3,0xCF707AE8328321A0,0xFD0EB9CDBB3E9B67,0x3DCC84DB2747F7E,0x788F99E1AA81E624,0x89285D9EAD58FAF2,0x100EE7BAABF21,0x9ED5BAD1C958A533,0x8ECBEFD2F7E8004,0x2C51E8D9FF1986C,0x28BE4F7E03E8F96E,0x4E31D4A1E2E19C4D,0xE13532B544BFFD85,0x63807C8EBF63,0x4E48DB2718C189,0xF22832BC2DBD319,0x1014B3D4C276F007,0xAE0C8B5E22B206CC,0x94D40F9081FD4286,0x7BC1F98AC603050F,0x22D2C55CC94CA,0xCB6B8F9D520E9D80,0xE539AB381B667F8A,0x249202E9866E1249,0xF527C91DA98D2C27,0xAC19181EB83403FD,0xCC88C5918696F4A6,0x5001A3D48F32,0x3BD9746B54431F3C,0x82A5240D55F89DC4,0x4A1A73BB64F9B140,0x20F82C747F685C92,0xC19FE8486FDED4FE,0x2203D84CB49CC0CE,0x1E880FF73EE6D,0xC0C1055035534E38,0x6BF0F508C87BD876,0xC78F9C503C5EEF6E,0xD7092C550FBE8E50,0x750D9410A1E5619C,0xAACF3B982D1CEABF,0x3F8C7931F23A,0x10C502FB6A788788,0x6CAD8C424FB80F2A,0x281AFA60A1BD881C,0x425E76CB1AF1249A,0x4C7E2F9FA9F48D1F,0x5BBBFA8CAA3895DB,0x1CFD817D564A4,0x46F35660279179CA,0x11EF6F70B27392C0,0x4F590F0007CC38FC,0x9EA48BE3C4E4108D,0x77DABDD786EC26C3,0x6ECEE7012A0C6E3E,0x21D2708C80DE3,0xD028A05F7FBCDF3,0xE23F62E1D51277E7,0xA1049833C2C6D24F,0xF11D6272CF2134D0,0x53BABC624861B4B2,0x15B1DF06BB15C091,0x3A3A945AD4AC,0xDA12F91A68E8F80A,0x89BFB00F6CAEBB43,0x7D6ACCAF46B5503A,0xF968EE4748497AD9,0x8BC751C2CBC912FA,0x398B0B90322A413B,0x129537A34AB95,0x42DEF50ED03E12AC,0x92F10A9635CF4E9B,0x87AF82A7E5CFC7D4,0x605531A601F853C6,0xD406D851F92E5092,0x76D6EDB374B4D4D0,0x1A83105F8A7E7,0x3210B451A6540F70,0x2C4A1D0B5BBE7552,0xA1C9AF1457B75C3C,0xABD09E267401E097,0x395249825AFDF274,0x65011599A8ADB361,0xE23CA61F5963,0x1F06C1B2C8502415,0x97BFA56270C1F684,0x41042BE0EE32CECE,0xAD070A3AF8A7412E,0xB8E7F8ADD3B7AC00,0x8FF699112963E227,0x225C95920F085,0xE2DCD17133CAD0A6,0x2B9DD50EF829E74D,0xBAB9A951BBD39FD7,0x7B72851AF45FEE07,0x6437B201E68D797D,0x4E088B2032DD6F5B,0xCBDA2083597E,0xB7FA854786AF5AC0,0x7A5DC8209E7291C,0x1169AA6E93471504,0x6F86598C111C882A,0x632AB04739CE3699,0xDE9876A7284C1D84,0x84269C032152,0x5F8B038957660A8C,0x2845430517B568F7,0x8ECFC5848B09126D,0x7FA5CC4B07ADF64,0x8C729000AD353D9E,0x5C32F17F662D27AF,0x8BE8097F6AD6,0xAC776325C734F611,0x2FE2385BBBB71BA0,0x5CF4E1ED77737755,0x25FF01B2206AF6B7,0xC64C29BA5F5BE5CE,0x5D7325AD16951F5E,0xDBD3D98F45C4,0x38851C2247DC008E,0x5C2035037022E1B8,0x35331A89EBDDDB41,0x67AA9D69D5DA7510,0x2A0D1E22A301C79D,0x202B960831A9338C,0xF15BD902ACFC,0x1D5F98F9C510139,0x9699286F37571E35,0xC3654879975CF966,0x7F219D3601188814,0x4629FF37BB221CF3,0x42478C2A978FE177,0x196B840A07260,0x433ADA22100BD55B,0x56782481A63FA05E,0xBD70CCB1EC794FA4,0x34588790D6958E96,0x9404208C1DDD0B08,0x2904DF0945CE569,0x98D2D93ADD49,0x690C2682E502678C,0x4FF44A13A6B575AA,0x7BE7076FC43FCABD,0x2EB25C4B0E627C21,0xB79B9B03FC8AB4A3,0x801EB8F992107560,0x795E147F91FF,0x7C0429B65FDBABA1,0xD42E2FD3B0E69488,0x1D5F8DC0BCF43FC7,0x6BE9B306B508F1C9,0x6191F1A1C7994AAE,0xD701D04E58D22380,0x2081420012AB1,0x6464DFFF602399BD,0x2B4A8E2A574A8566,0x8A178A50375B0E47,0xBBEFA4479784FB5,0x4630EAAB397F1036,0xA3BE81440A0FD98B,0x18EE771405161,0x3300990E354CC128,0x6349E80F1B91B149,0xB9E1EE6A73FFE650,0x1FA782F82FDB52E,0xEF2024DBAFD18437,0x39847ED4720FA408,0x1CE5081E47C6F,0xA02F0C97DFAE7E47,0xB637B49189CB0814,0xC3F74B323BE03840,0xB31534EB340465AD,0x3234E3EB38BFDD68,0x7DC07CCB02369028,0x1F414C8FDA45B,0xBBDF17A1189F892E,0xE36B701711EBAEE3,0x9246EB958653A11B,0x83CDF571CC3ADD4C,0x2995DA9A115E2745,0x5E59E02C5DF39A62,0x6C681B957EEB,0x84EF739E89074420,0xF7756424F99DE4BE,0x4379E183A608DABB,0x7DBDEBBE169AEF00,0xBE1665D536F68CCF,0xE1CD3876BC9C435D,0x1055E38120373,0x390D402CE5D3DC44,0x8CFA0A3677B6515F,0x5B5D988515E05F4C,0x69F9F742A9C22D90,0x8E6B864D6F3E299B,0x5347C49B541CE666,0xED5A3DA86FB,0xF152430FBB0B1DBE,0xE3568C1C356BF46F,0x1364FC57DF940142,0x53A0739714D93EDF,0xA7E14F8906B19D5,0x84C8104B46A7DD44,0xDB2434BADA3B,0x1F3F7FE37E16E784,0x8E4743BF96285B45,0xCB2146A4B91A2E18,0xB3EAB0B7937035DD,0x96FF028F37DEFFB2,0x187B521A5CBDB905,0xC7786821C584,0x7C9E71B5088BD450,0xE377B6299A84EC23,0xB283FCD8652C0821,0x9ED4A93C9A53B760,0xD3895089CBB76193,0x248C2AB502D79774,0x86E9551D6334,0x4CDE82E4D578720E,0x897CEACA236F4406,0xD47C0EBAEAE4154D,0xF65FF050DA8B7E0A,0x78660BFEC5B21A5,0x98F50C69F901544A,0x17B78FF6A399B,0x529A98F90FB6B43,0x636BADD6951C6E5D,0xE3C69E3E5822D8BC,0x34CC5C43F5459C7,0x1CA19A068EAD9C4A,0xC5F411EA50E85259,0x1BA8FD736BDFC,0xAF809CF54BE3F6A2,0x4CD22CF0D1A9827D,0x81FB22D3234D3F38,0xD54BC4644CBDFFF7,0x2218D94F30060068,0x2F308E0193F0DDE3,0x42B77E4BB367,0x94747DE95EBA3DAD,0x6153BA2FA01D449D,0xE6CCB30D62922F3C,0x621940A023A262AF,0x1E1765A6F7EAAFAE,0x65084E461A39AA9,0xB6265C7D9074,0xE64A7E49BC1D0BAB,0xFD5F6F13C39DDE4,0x5768344CBABD07DB,0x3B24F6E7BBD4A16F,0x38D39AFDE3B06026,0x408D4F292B7FCB1F,0x1F704CF10ADC7,0x9F06FCDF010ED47,0x85623188384B6C75,0x1519B64C612EEE94,0xAF14519CB1ED965,0xE312A658F621B753,0xA73F4CDA462F0D37,0x2279A1DDA6C13,0xCA30355A6DE382BF,0xF5AC1F244DD80125,0x99FC0B644A578DBC,0xE0EEBD340362DAED,0x429284E4C3590DF8,0x3E80ABD06A82A75C,0xA70950492621,0x7804B0FE5705FFDD,0xBB4A15E989766C82,0x84033A2753BD5E7C,0x72D7362624013906,0xD19E7778B3BD49DD,0xDB56DB1412EBC326,0x1ADEEF60D6A58,0xFBF764916C8EA9AA,0xEAEFCD394012C09E,0xAADD625ABEC0F454,0x7AF0838DABF003CE,0x9B4868F0E6C4D282,0xDF0A63D100B3DC43,0x16FAE051DD39C,0xA6BE7DD4152463F6,0x684815D16113586F,0xACA6C2912CD33E4,0x4A2EE4DDAC35C32E,0x238BF66DB232AA57,0xE78EE0AB10B8AFFD,0x14D1A8692A152,0x62940A3930B9750E,0x9FAB4A381E83B99B,0x3B4349F3A96F3CA5,0xBDF20EABF8279605,0x69FF11F9497B171F,0xB754B8BE488D1AE5,0xA126632841F2,0xADB287FB8AFC8B02,0x2A53C3A01EE1F99B,0xD77E6E5CD5C1606F,0x942FD2705214D548,0x58D1A273371B6895,0xA76A78F45484E58C,0xE531D48FA704,0xC02E927D40A05C90,0x7DCE2C82CA8473D9,0x3DAB6F6FD45F6D51,0x2E17D123993311B5,0x27196142BA81E33,0x61AFB718AB8C2B4D,0x18672489CDC62,0x48E38BB704F6AEE4,0x4B8782D5C7941576,0x30DD7C8269D1B8E0,0xD893FF3CB1482ED9,0x3EE7C152F98D5687,0xABDDD372C3264441,0x7914E3317D28,0xA89E2EAD2F70DA66,0x8D1E248381491E19,0x73D99BA53084D9D,0xE57523BE9DA21504,0x40E63C14D205DAAA,0xB1219AF57EAFFDD0,0x874A3661CEBD,0x5CC2511E038D022C,0x8FE05A9BB10BA084,0xE0767D5AA5532E60,0x6669736EB1EA62FC,0xA95ED77561157EEB,0xF4760642D8316F95,0x15559C7EEB2F3,0xF6966A49A93AB734,0xFC88BD4B3946B069,0x2CB884198373CC28,0x77363BAC008101F7,0x8CFC4E02E0A837A7,0x580FFAF65F6EC0EC,0x12E9A21D5002C,0xD266E6BE728C9BF4,0xA542A87E398C9AA8,0x50F61BE614858C5,0x5DE4A9F7DA1A6FD7,0x52A08152EAF7DE3B,0xBA6AE916FAD47A5D,0x1B7BA0310D51,0x24116B47D1FE6659,0x4E32F7158FDCA0E5,0x1CF1C7111CBC8BA5,0x7D6C1BDAABB647F1,0xDBBEA064282D81B4,0x7D05EE18F2EE7D90,0x231FE745F73A8,0xC1A591DDECED3709,0xBF70B66A6AB2638B,0xCE7F185ED93BA38F,0xDBE994643E5AECE9,0xA492AE884E240DB0,0x87AD9344EEAD69DF,0x10E9DBBB4E870,0x47F1214544F1FDFC,0x26C218639D0C745E,0x361A32B9DB65AF82,0xD582A03B1CE0BEC7,0xD4895F190FA8E4AE,0x7A6EC93531DF50F0,0x1A91214205262,0x2880FCA6BFC771FC,0xE8A1ED366C5EAF41,0x26DEC38C89ACC9AE,0xF433245E87B28253,0xED43C4B08B4E1835,0xC605E763F1368AD7,0x15274B28B2E38,0x768B9867C45D4BC4,0x4D682CC1A9E19CCE,0x1F015815A86514D3,0x9801C170584526D2,0xAF7C9183EA0ED04B,0x12FC4454B033E85,0x122D555B3EB2A,0xFFFFFFFFFFFFC5E9,0xFFFFFFFFFFFFFFFF,0xFFFFFFFFFFFFFFFF,0xA1397C7864FFFFFF,0xFC589FA8688D839,0xF86335AC52097FD0,0x1BDA7D338DBD6,0xBEF0CE72B6E9D1BD,0x92E0A4F2CA7CCCFF,0xA0B2035BB47215FC,0x6D36985E0F7DFC52,0x6BB989478F1D3A0F,0x8C5988BFDF5F4F7C,0x6E2AAF9B9D9E,0x15D9717B534B56F9,0x57ED5C5F28EEED33,0xAA224149D1792C1,0x2B663432FFF290C3,0x65B645B7893F3761,0x8C45450423A64BF5,0x2072BDFEECFDF,0x2E9A77227F6B4DC7,0x26A6145E0CD52870,0xE8E7255BCCFF6551,0xC04097B01E64680A,0x56B98EE30BBE9A40,0xF3BD5AE69AE90DEB,0x1ADE268AB0C0B,0x15D9717B534B56F9,0x57ED5C5F28EEED33,0xAA224149D1792C1,0x2B663432FFF290C3,0x65B645B7893F3761,0x8C45450423A64BF5,0x2072BDFEECFDF,0xD16588DD8094B238,0xD959EBA1F32AD78F,0x1718DAA433009AAE,0x3D80DECAC49B97F5,0x250CCD95259A1463,0x793F04EFE6DC126B,0x863CBE6C6738,0xFFFFFFFFFFFFC5E9,0xFFFFFFFFFFFFFFFF,0xFFFFFFFFFFFFFFFF,0xA1397C7864FFFFFF,0xFC589FA8688D839,0xF86335AC52097FD0,0x1BDA7D338DBD6,0x410F318D49162E42,0x6D1F5B0D35833300,0x5F4DFCA44B8DEA03,0x908ADE1CD38203AD,0x100CD330A23B7494,0xE0A2D716A265D0DA,0x1C5F4777BD5A5,0x2880FCA6BFC771FC,0xE8A1ED366C5EAF41,0x26DEC38C89ACC9AE,0xF433245E87B28253,0xED43C4B08B4E1835,0xC605E763F1368AD7,0x15274B28B2E38,0x897467983BA2B43B,0xB297D33E561E6331,0xE0FEA7EA579AEB2C,0x65BFB50A8ABAD92D,0xCC49CAF44749DE58,0x6BCC9B9136C1E1D0,0x11149D163881A,0xC1A591DDECED3709,0xBF70B66A6AB2638B,0xCE7F185ED93BA38F,0xDBE994643E5AECE9,0xA492AE884E240DB0,0x87AD9344EEAD69DF,0x10E9DBBB4E870,0xB80EDEBABB0E0203,0xD93DE79C62F38BA1,0xC9E5CD46249A507D,0x283ED63FC61F4138,0xA73CFD5F21AFC9F5,0xF28D96A14FE5CF65,0x8B0D12F720E1,0x742C,0x0,0x0,0xB90FF404FC000000,0xD801A4FB559FACD4,0xE93254545F77410C,0xECEEA7BD2EDA,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xC1A591DDECED3709,0xBF70B66A6AB2638B,0xCE7F185ED93BA38F,0xDBE994643E5AECE9,0xA492AE884E240DB0,0x87AD9344EEAD69DF,0x10E9DBBB4E870,0x47F1214544F1FDFC,0x26C218639D0C745E,0x361A32B9DB65AF82,0xD582A03B1CE0BEC7,0xD4895F190FA8E4AE,0x7A6EC93531DF50F0,0x1A91214205262,0x2880FCA6BFC771FC,0xE8A1ED366C5EAF41,0x26DEC38C89ACC9AE,0xF433245E87B28253,0xED43C4B08B4E1835,0xC605E763F1368AD7,0x15274B28B2E38,0x768B9867C45D4BC4,0x4D682CC1A9E19CCE,0x1F015815A86514D3,0x9801C170584526D2,0xAF7C9183EA0ED04B,0x12FC4454B033E85,0x122D555B3EB2A,0xFFFFFFFFFFFFC5E9,0xFFFFFFFFFFFFFFFF,0xFFFFFFFFFFFFFFFF,0xA1397C7864FFFFFF,0xFC589FA8688D839,0xF86335AC52097FD0,0x1BDA7D338DBD6,0xBEF0CE72B6E9D1BD,0x92E0A4F2CA7CCCFF,0xA0B2035BB47215FC,0x6D36985E0F7DFC52,0x6BB989478F1D3A0F,0x8C5988BFDF5F4F7C,0x6E2AAF9B9D9E,0x15D9717B534B56F9,0x57ED5C5F28EEED33,0xAA224149D1792C1,0x2B663432FFF290C3,0x65B645B7893F3761,0x8C45450423A64BF5,0x2072BDFEECFDF,0x2E9A77227F6B4DC7,0x26A6145E0CD52870,0xE8E7255BCCFF6551,0xC04097B01E64680A,0x56B98EE30BBE9A40,0xF3BD5AE69AE90DEB,0x1ADE268AB0C0B }; const uint64_t ph3_T2[DLEN_3*(ELL3_W>>1)*2*NWORDS64_FIELD] = { 0x37ED7978F7323982,0x4936C76D51F21F5,0x16050C18A973EE88,0x72F7BF23AB9375D3,0x47C989C9C28BA7B6,0xDF611D74933C983D,0x1BC0CBF2A04F4,0x8A0EAC4B85F5303,0xB686A96CB86BBC16,0x8F36EBD4A443E09C,0x948222B2B2D156F6,0x8A66ACFAE2CCD48B,0x98DEEDA161F27B50,0x103F846A96DB5,0x694F92DFDA192A6A,0x53DB650F045FBB94,0x914D7DD5D24B8A7D,0x332A4681B4537855,0x77B22ED3C97AA0A8,0x29F51E43F01EEBF0,0x2BE99CC2EA3F,0x50AADD31483272BD,0xEF71AFF18F5CD2A7,0x2718B25973322EE9,0x4AA70233D7135E34,0x18E840E9D3D8137D,0xCC10E80D37099E81,0x611A286EE0D1,0xA9354A35B269FF9F,0x6FD04B074DF96AF6,0xC3106A5031DDC3E7,0x96D97DB085DE52CB,0x52E69CD3E0656B33,0x413B47B6FD5C630A,0x99B4D7906FA4,0x4773AACD7C006827,0x6E0D9C18E227CEB2,0x970AA29DDA4FC705,0x7DB2A73DC99EB,0x503DA274C8A57B9C,0x456519435726C6BD,0x1269589CECCC9,0xF03E85B4AA764A,0xD6A2D3F58CFCB874,0x92DA0409FD01266B,0xADCC6564A5D4F6F7,0xC02F15A74EC243E8,0x7730B32C01DE2F53,0x7E846A2516F7,0xE133F07C2ED3E1D8,0xB4326C2931139F04,0x6A51505413E95C84,0x736ACF58BEEF524F,0x538B2008AF8272BD,0x4BA606901671E978,0x177FF06B895C4,0xFDC3EBCDD657CD6E,0xA247E9F561464943,0x3C1009CB51346175,0xF002A2B6FA005AEF,0xEDDF64F46D2A177C,0x83518EC200172743,0xCCB04068DD44,0x45C5EF8ED846E9A1,0xC594E2935A404A15,0xF1FA86D9065998F9,0x3177F334A98AB972,0x683137B06187B6C5,0x763E818699AF9A82,0x25CDBC8D6DE3,0x27AE2A62883696B6,0x591D09EF41B582E3,0xAA5B4530E1582194,0x99CCB2BCAD4E2F47,0xAF7B2BBC1BFAEF2A,0xD2D3BCB820C00A6B,0x184CF997B843D,0xD149B9FF09F549CC,0xE7CFAEAB0F338F18,0x9EA6958AE87055F5,0x408E4C22C8263BC8,0x17E57438EEDDC7DB,0xD58BB12D4423F92F,0x1D7D0C433AD30,0xC7DCBE1AEC6D7C2D,0x8F6FB8EDACEED8A3,0xA92B7BA065B357F1,0xF6A92D93E4F369B4,0xD0B517306D4B0BAF,0xF53ABA5B52BEFB27,0xC56412AA646B,0x4B826A4831175010,0x67D08097812EF865,0x1950DA79789DA00D,0xED0B99011BB1215C,0x5E5B32AC7AE8C701,0x561D7DE509792047,0x1C21010F2BCCF,0xF057F3BC88DF9B21,0x8B8EE060C16EE48F,0x2FDAC5C9B23B3ECB,0x6AAEE97E18D02869,0x5EF58C8866A37082,0x9D42D0D7D776AAF7,0x9106AA9E5BF6,0x7F7F72CA5B66613B,0x49FF121C8796E2,0x446921D8A9193C4D,0xC46710A67EF0094C,0xEFEA22E111B76E16,0x2132DDE3208096C8,0x158537695C848,0xC9B7E0C49271E5E6,0x9232D78410486561,0x15CB972066F892E8,0xA221C57C5BC43FDF,0x3CD91966B44E4005,0x4313785071F6AAD4,0xCC4419E3E98C,0x83EF71190034677F,0xB73C0DA961FBF58C,0x2D2FA4D06846EF77,0x249169E3A3B98786,0xBC1076683BEB81A4,0x45D0E9EB5D1324FE,0x627AFD457D2E,0xA2D211FD38E81A4E,0xE74DF34D9BDAAD83,0xFA9276E47ABCF316,0xE306ACDDA72C24FA,0x5B68BF41E7F5BF84,0x322D98FD53020106,0x8902F84E1521,0x8C44089102E680E8,0x4CE3AD9309B0D800,0xE2AFBFE63C21F2F6,0x51D7493A7E0E5F24,0x5F4EBD5D1CCA229E,0x6B49826312FF74D8,0x91AB97F84071,0xC363D921AA5766B4,0x5F78F0E41B0F5359,0x4A43F68C67C5BCE2,0xFEAC89F6BF98C204,0x9D7AC06DBF4FC7B4,0x26989B3B2D44C774,0x1B6C805550CB5,0xD253F7739CCDB075,0x8318538FAD5D33A2,0xDBF3CCADFDE3674E,0xC6773568F794E12D,0xD6A71F2C69C17A5B,0x53FD7701967BFE2A,0x5CB62ADF7B66,0xF1876400E4AEBCEC,0xDB7D4068365A6399,0x8D2B3C07E3AA1D93,0xB763B70480DB937E,0x6B209F9E89C1C38E,0x99F233803462481C,0x1703585A8F941,0x53651286AF21B7BD,0xB5DC8DE712CB9D2B,0x8C8653F83462375E,0xA13993C7C4E915F2,0x964055D5E5966731,0x357C020389033773,0xCC534E50DED,0xFF72F3C9C8A650F0,0xCE49F4C2868EF761,0x458103FE62D5D7EC,0x5EDF0259B91D5E5F,0x1D08EB6816BD60E5,0xA946F4C5D79C5C1B,0x223E0CC250BC,0x2B51A049820E158D,0xB0AE40314ADDBCED,0x7ADA8CE98928AE66,0x54CB91E1C6E32237,0xC5BA6BBE489D3E92,0xC61076FBB6204480,0x16725A031428C,0xC9B7E0C49271E5E6,0x9232D78410486561,0x15CB972066F892E8,0xA221C57C5BC43FDF,0x3CD91966B44E4005,0x4313785071F6AAD4,0xCC4419E3E98C,0x83EF71190034677F,0xB73C0DA961FBF58C,0x2D2FA4D06846EF77,0x249169E3A3B98786,0xBC1076683BEB81A4,0x45D0E9EB5D1324FE,0x627AFD457D2E,0xC03CD433DBFD1940,0xAD1049F408EAFDC6,0x9413F0B3B5F855D2,0xB466E1E85E7E45E1,0xD353B33DE6AAFDBF,0xAF62EC1EE44B00A9,0xEE42010787DB,0xEF422805A8ECF8B2,0xEFC179F15231A992,0xBC9F1827039347A,0x60D8FBD734560515,0x60E378BBF16EA78D,0x96AF9D3C96D4CDAF,0xC16C643E295B,0x19CC0BB9E81D0F2D,0xC74613BF54DB4817,0x372D926DB39C3CDF,0x2CE188DAAE451706,0x2E9D1F86190D2D03,0x7AF6FEBA83E7E98,0x1239E39C886C9,0x18016CB681973207,0xFF2EEE394C8FA492,0x7015BF66C6DA1CB8,0x682A804E6C62CDBA,0x9ADB8BA7AC3527D2,0x5CD6BD2C7F57E672,0x1F7FCBBEAF368,0x67CBA14AA525913E,0x2A26621D55F2EC8B,0x3B31A5CE62B44712,0x213B2FEF1D0CFF9D,0x9E30F07CC0D2D53A,0x883F84866709C5ED,0x18DAEC58600EB,0x90378695AB6DC70F,0xF28CF06493FEF316,0xFBC1B50FE10764EE,0xF0FD9C62941B1F41,0x81FE1F9C80FBC203,0xC276A212D7C0E28A,0xA894531B6E73,0x82035719D951C650,0x5D73E4E48C7F1CF5,0xF661D60807952F30,0x3089A85460242F0C,0x2880A4DB87185002,0x999A96237AFA40D3,0x147336C9CC194,0x348C81B999814533,0x182CB5F120A91139,0x918C4131CA70B7FF,0x9078A6C623B9E8BE,0xAFB29263D67669ED,0x53C8A59C45318A16,0x189C6A62F5FE2,0xC9615E77B9A331CD,0x796546F9415693B6,0x49E2874740F92975,0xEEF96C473880186C,0x6BED96B40F3F4146,0x6F0183BCE2AC1B17,0x22050F405E829,0x65707E635ECB4E9D,0x8B6CB4F957CB894B,0xA548A3A39C9F6A88,0x4FBE409960FB15CB,0x2122ACF1EF2316A0,0xF5A6FB61350D3FD4,0x133795A80A6D8,0xECFBFB77B533B175,0xAEAB50CDE3FFEFFD,0x4409546B8780817E,0xCC08202B547B4343,0x8A8DE838FFAFB80F,0xD22E90C09A6FE7D9,0xA9F2F5FDCF0D,0x718C8E815F5758F7,0xA6E06FA6EAD8C201,0xCD15CB0EC91BE0C4,0x42ACCD25F3243E86,0x35E63846562FDC96,0x88D2A98AD796AD5C,0x2257C6CF6607A,0xE19E872603CA1A1C,0x268DB952AC008521,0x488E3BC0BC2AAD3E,0xCFEAFB68E859EEA3,0xC83D2F8A26E6C25C,0x14AE9DBA32791553,0x120681B9F27EE,0xED858188F54282DB,0x2A27EE3D8B657406,0x8D200617C2EA3B9F,0x4F0D0C886B0F473A,0xF0522717AFEE00B3,0xA45453EC4979385F,0x1206830AD6B2C,0x4CB72711CA850294,0xC211F90452DE238A,0x80E6D14309CB28FA,0xA30C6A97C9FF1E8A,0x2430A4CF8D66F69C,0x80AFE7DB642FD042,0x6868939979C,0x459FD7E2EF627373,0xBCE705FA699DA4ED,0x361BA49E03059B10,0xBA3AE86694E7AFC9,0xAECCF50BB95E2BD4,0xBD9B1FD6D6AFC93C,0x144E505989609,0xAA02D69A7AA9DD27,0x3BE7ED4F6FAC748C,0xDF08D3FFF1CE042,0x594A45EC41BBF34,0xAF092A2E24662426,0x32907C83259EF8A,0x1E654FD0601CE,0xD8AB9B4F1464637,0x914D439A7D3AD772,0x1A01657B9A7C2B06,0xC7AF199D6DC47DF1,0xB6948222D9D57B5E,0x3CFAE56B4E6A1BBB,0x1A6986F3D68E8,0x543D675586FE1C40,0x277125FD4BDE4D4C,0xBD3E505763231FF3,0xEBFA8EEA4AB8BB50,0x86ACD986B784D3A6,0x9C195DF7E8B7DF71,0x1C5B107CEE734,0xBEAFA7EA26F62970,0xA161A3CF8CA00C57,0x42638BCEF0EEE383,0xF43A6E5ECBC63EB6,0xBF1E53996CD8FA66,0x218EF3C352D484F9,0x1E849136E5513,0xE8C5A33992BDE5A,0x1E43F6F8ADC4687B,0xCEB1842C9087709B,0xEDB68CD7E5AD47E,0x6EE1502AB55169CE,0xA8AB5BF4CF196E9F,0xB16B329F570B,0xBBD392B020E491FD,0x94E0A3821045F058,0x4507C63B48F72909,0x7F06CB6D6E81C97D,0x8F1BC7547C099C62,0xA9EE5E02C3A26F1B,0x17005DFFDF107,0x8DC92873F960C071,0x12249643C8697FC7,0xF0D001E41AA019CA,0x638299852191FFC8,0xEE8C83B34DEBD97C,0x9F1E8DC7ECD7CBDB,0x21B0A9F9C368F,0xB0A5C2278BD9701F,0x54C3A8880A40BF84,0x5299B8BA210AF7C1,0x7D2CD9CA19C3E3E4,0x6C3DABCDFF981D6B,0x9D2C2A08F5928065,0x1095A87F8DC52,0xCF6D9E37ACA7FC41,0xE3BB6F4674DA80C7,0xDAAC5E9A0A44C2ED,0x7D5307AB1434786E,0x622342575645CD0F,0xE28C64BD43BFED4,0xB39968FC5CFB,0x938BBBEF5B9D2EDC,0x364AD80C20AFC700,0xEE2A7B39C1AC7E9A,0x66A182254E550751,0xD29EA3C001982C8B,0xBB51E4F503A3C906,0x1958524411AFC,0xD750AF1718FF1697,0xABAEF7EC842D0D3A,0xEF02AFF7EFB7CD4B,0xC5121B848AD9B8E5,0xD9363292FDF0BD28,0xBE7349B7CBCCC18C,0xE37C0A921C25,0xF81B601F370AB515,0x9718CB1D9BC77332,0x820B69809E9552AF,0x71469CE03D6C82D,0x82ED4CA05BB20F09,0xFA0EE0B3176D3AAE,0xF00F29F220C9,0x99718695CF56D1F3,0xFA0CF4A65E2853B,0x6BFC00CE66341DB5,0x9A1FD3D8BDE2168E,0xA66312AB6D1D1429,0xC4F6C545D87F3AB7,0x684ED280FF51,0xBB4C6122596AAFB4,0x9975728556A3FC4,0xF737FEBEFB08A1B9,0xE2179CF8F34CA308,0x1F733D8647D99B33,0x8F161334971B8D14,0x302DCAACE7F5,0x3CE82C92FCA36EED,0xAD86BC910427CBB2,0x3ED9D973F0A74442,0x1D5FA3CB5B76A6A8,0x72A273A14D634320,0x6323DA781445BA42,0x93D662E789C5,0x798CCEF93B4CDEE2,0x7F6C2D4D96E92EFC,0x6491DF60E516CE2A,0xE8401A029A644F0,0x3014E918D0C95BBE,0xBE324BC5C8BDD1B,0x1534511694B9E,0x1EE45FDBA7F4D0A5,0xA1CD76FD4DB4EB0A,0x7FFB78522A923AE5,0xACE69A5D8CD388AE,0x46A71C0069CD7FCB,0x66688F6CCD8075F6,0x10840992DC3A1,0x825FAB3D3068B880,0x2937434C524CE60B,0xFCDD3FACC3D70A74,0xA1B284E716631EB9,0x62FC10ED7CDFF026,0xE8C37CD20E024194,0x2127C297F67AF,0xE4E770D3A1998E55,0xE50F7A43CB8F3B7,0xCC0EE4F49DEE0608,0x696621C1C702829,0xEAAF7372E46AD1B1,0x6A697C9793AE126C,0xDCD786C808DD,0x62BC51904C27EC96,0x98659E35ED3CA154,0xCBEE68DBA5AEF1A9,0x84A6828DBE8486AD,0xB62C8CEBDA58823E,0xC0505E7F1EF6C439,0x3E7290CF7FA3,0xE7FA00100D00929E,0xE3DB9C87A19D44DF,0x39D3C0882DB52D98,0x8C44470CD6E81EA3,0xA7FC95CCEA497684,0x47DE411F14569424,0x1752EA982B5B6,0x7DAD95284EE41937,0x1E0416B96E7A5F8A,0x8C469B3A0B572529,0x4633E7F0D55E131D,0x88BC355428CBA688,0x8C158EF6F0E3684B,0xDBC4AA85FA49,0x4FCD82AF68488203,0x434ADECC0CBC9140,0xAB4F65432D70A4C5,0x32554FFD3D12AA5B,0x2B1E44AE79A19FFA,0xE890137A684FF01,0x4D89B9D12502,0x49F246888EE6329E,0xF17596FDC6C14127,0xABFC9B519BE18D18,0xC18702604BF0F5BA,0x9E139A8BAD27F11E,0x315E9799DD6EEF31,0x7ED9C9ED346E,0x259120C9EABD2A04,0x296350D8CC35E881,0x86F68443CA640C6F,0xA973BF6907A3D5D2,0x14037612F335A0E5,0xD8D2268298E642DF,0xD8266EEAE590,0x5249141997855FB9,0x9AC7EE090E433A1,0xED35F7C7E9A6E973,0x436D4670CC885A0C,0xEAE89063A007DE81,0x60485A975654EE3E,0x8A62063C2F5C,0x4CD74E53DAA52AD0,0x8B6F556B11A8B90E,0x20A9BC9880C1D9CF,0x10E64C7CFF911437,0x456570EF33273CF4,0x3BE32B31D3247ADA,0x642A69906731,0xD118CA3CAFCA633D,0x67F678D57401D949,0x14405A601FFA334,0xCFDB5AF2D0CD9DA6,0x13C98FE237000D4F,0x979D8CAEA95F896,0x1AFFA915B9008,0xB12A326ED9BBC676,0xD7DE5B0BD4522E47,0xA9E6D8842B2A1664,0xBEB0497CD50C458C,0xC5C316A98392C67B,0x4D9E4B5EF3567E40,0x1CB755BFD5674,0xB8C5831C6AA49F69,0xFEB8A0214FCC1E5,0x15D197F836B53533,0x24D813E652BB408A,0x6F2DECE9FCEAB2E2,0x6E516A4774407181,0x221F1B18E2342,0x20D3CA8D414DAB5E,0xF0258C41FC6BBB86,0x43433C374F87A54E,0x4774088F8B175EE5,0x213EA6CCF17658C1,0x227216743DCDE7C,0x155CE7D303C44,0xFD853D5D19CF4854,0x392508A64BDD3A54,0x894B13B458027F1D,0x8CA48D136C13B85B,0x5731520BD0C4AA8A,0x52CAA13C82DBE553,0x68EB8E1B6529,0x991D3CB9450ED822,0xE6D8228341C9800A,0x88C152836E6B96F2,0x6143BE170CF079AA,0xADE44C525EC2BE9A,0xA52C016B7528AE45,0x17913156216B2,0xF038877734157001,0x412D0AACCAFB28E4,0x7FF74C814593CC91,0x43A9B81BB791647,0xF22A302086992DE,0x7465164CC9E82926,0x295E9B47747B,0x8ADDEE86131054D7,0xE97A6178E6D79720,0x8EA7ABCFD67A1D62,0x2D22A45E719681C0,0x72AFBB8AE11C6C0A,0x3CA2C1D95465587A,0x1E3C708CF09EF,0xA2A1EAEF86053BA1,0xFD69E28F3A2E9CA8,0xFD6031FC1739E60C,0xBEDF49AE806DE468,0x506A2982151B920C,0x5BC815D2DD99C568,0x2DB77C0FCB84,0xB7F2C2639C5F4553,0x8DBFE37A13E726FD,0x1FB2C22BD0730383,0x670BA25D3F2D0FE,0x28090FBB3D0F1339,0xE601E04E4AC10937,0x119FDA27FD06,0x9ACECE4446A62F62,0xB55647F833B6BE4E,0x80303FB87C1BD961,0x7D6C1DC4BE8E38CB,0xD3C9366A3A099CD6,0x9F1E2D6904A29529,0x1EA55744F4F2D,0xE43EC119B8E89DFB,0x4DEB15DD1B9A0AB2,0x64829D8F572AD605,0x940936CCC608F92C,0x51F47E94B0861D24,0x492F7EBEAD3CCE12,0x1FC3876F37613,0x25C4A6F996DC1323,0x680A8A80AB9132FE,0x8E3C791DEB467E64,0x428699677462FC06,0x2D843757B703FADA,0x51B28D04B3643CFD,0x1850339234F22,0xD0D39F0D27C3F75,0x36A57108AA19DB81,0x3412A086F8A66907,0x4B78E3B9B09561F,0xE1B0121D7A7A8816,0xD25323C860715C66,0xADE8C97D8AD2,0xEA616353338D3792,0x4C6B66E7D1963131,0x1FE234D20B168EA2,0xE8A1C169B89571D3,0x3BD4A80643A3461D,0x4B7BBEB9AD84B95,0x18EE838EC0B41,0xEDAF05CADB8E0291,0xDAF47A15CC218ABA,0x61B556680B7725E3,0x53DCBE74C8924F35,0x7DD58616504C7A57,0x9B312880430480A9,0x1CEA9F68D9AEE,0x5A319CB0E0D6BAAE,0xB6BFD0B499A604DD,0xEEADB7BD07D44F62,0xE9A6CA161ADFFBA5,0x674C902305B8715C,0xF04F383D689837E2,0x16A41ABC094DA,0x17A3112EF9C267C8,0x5BEF4AEC399A35F2,0xD9D791D66F35CD4B,0x4BFE5DA02ADD348B,0xC235D0C6A8BAB24B,0xFF93B782B6B7B3FA,0x156430C23B60D,0xB6C4FCDE05363EFB,0x332D1402A997931B,0x580795E607F457DB,0x37483F148577486A,0x9EBCBF2A142B5717,0x1FB805332A8E4DA7,0x1DAAE25FF7308,0xDAC0756CB9A6388B,0x6C5E9371737E7ABB,0x10DBE7EACA81D420,0x6FAD339D714BADD8,0x1A0A29ACBE5C1BBC,0x85ED2D2523A62DD2,0xFC60934611FA,0x4E584C6FB9977354,0x17840354F7B6E37C,0x7347CA89776DFAA5,0x748CDD00CA7F6D4A,0x68B823C3EED214D7,0xE0D165BBAB35CB78,0x22F14B5CE6ACD,0x2FC304A5D47D947,0xE76F3E170042CB7B,0xEA1B19DE16729BB5,0x1C99DE37BD74AF94,0x7EA911A2BF31D874,0x4523575ACA0A3004,0xA1201EA47044,0x1D59FFFA2F6B49EF,0x9BC1933D4685E736,0xCBF48D315AF92B99,0xBD571321EFC03BB3,0x35CDBE486117B689,0xBBE90B54E3A84466,0xE5A421AD97F7,0xD1D273C0403DE823,0x781B73D97BB67E1,0x51F4D81C1E0AC129,0x9F339FE1A254FC7,0xB2996EE412AC0B92,0x1760A8A6E2FE0990,0xFBFC00C9B60D,0x4C91E4B4B33A0C23,0xFC39A597CC1E04FD,0xA7F7658285DB1A43,0x2A2B5772E3B3162D,0x1E4A550641B5E3FE,0x33C3B321B9B99780,0x17D6DE7225983,0xDC163718EC88FCAE,0x2E96A8F49BAC4E25,0xB5E2C4E0904984DB,0xE63C7AE8E9F26E3C,0xE0D827A74367AE7,0x6152BA01809BB89C,0x2353FC221195,0x59258A37906E6CD3,0xC9859BE3ECFA239B,0xB78EF80A9130F0C4,0xA9D17BB4E15803E8,0xEF5086C5A5D95CF9,0xAB935CD3A0AA7B02,0xF1228EC686C0,0xE13199B41023BBA7,0x244F8DAEF041E1C7,0x6081826C3CFBB069,0x1526E89CC84081F0,0xBBA7ED68CE80D381,0xF08F214B88FD8660,0x21B3AC0A52712,0x86ADD8B3DF54BC12,0x1023CD6D378A7A9,0xAE3E15AA4ABCA9B9,0x2E31C7BDA0AC2F2,0xCDBA7286B5DDFFC1,0xE319332FBAA5F892,0xA31657948561,0xECA480ACB43BCC1E,0xDD01AD6A9ED2785,0x92828D3EEABD6021,0x11DB3994B9A081A5,0x3984BA2D4AC653DF,0x44335D2844147169,0x9B7D558EC564,0x1F838D429EA62CC4,0x4A0D87DEEFC95AE6,0x4F8B5D39F65C7140,0x6AF51F2CF4EB68FB,0x4798FE25308722C4,0x3677CEA9F214ADF7,0x4A559E293A03,0x4DC6440C31E0EB3F,0x6F1D8AAF2E182C79,0x81437FA797B758FB,0xA9456EB48FB8CF37,0x67B6723F33797090,0xB2396AC924BE050C,0x12719F4D97819,0xBCE78B004E1D07E1,0xD2D80D01C9A1498D,0x5F807D8666AD6D1C,0x2AC1BCCF44AC8189,0x2944B20F5D4431FA,0x267DC20F4E492761,0x207E93D2C8EBC,0x1E90562B19A2C767,0x90916D779EC73093,0xBDC75EFA2077D0A,0xDBB814AC43FA58B1,0x25C788853A25949F,0x5696D094A05F13B6,0x23EE47B42381,0x2896837F061E5C95,0x18E00DFE453167BA,0x2187CAEB2813E16E,0x2CD5DD9E3855305F,0x8B53B210903EC228,0x40FCC08C8E186CDB,0x196AB10027441,0x87F7A48338880A4D,0xA6E0A086C9FC4CB2,0x9CDC64D79929978B,0xD398C716D9141C5A,0xB557A0B10A759E83,0x1A4F2A7E27C60654,0x1189951A3D03F,0x6FF1AF0B14CECD2,0x96B24B7A359B045F,0x3154A9746823F840,0xC650E752FBD93CA3,0x48CCEE4BC740509D,0x96D35EEE671378AF,0xBE5151481739,0x55E7DF5904F12E85,0x4819B3ABE47DA6F8,0xC8E940549D5B8CF5,0xDC83DDCCE72D9B52,0xB49A25AD17733066,0x5FBF9F9E3CC8A1F8,0x1A9D39A30116F,0x84D90559C8E97FC8,0x938FA91412A2D817,0xE2315CF1C1E69A96,0x69DFC18EEBB3511D,0xA409D353FD784C84,0x819AE43CB2377373,0x1DF9845A995E4,0x77CAF3A5ADA78ABA,0x4ED3731309C98E18,0x519CAAE8C44B7C48,0xA28E4F695DB08443,0xE64CF7E352D52720,0x68F6F5B8FEC87012,0xBBCC9954AEE1,0xA28E46C8E635C59B,0xF595CDB168EBD107,0xEFFFADE34390265D,0x6147D01D3C7D713,0x525D14CF19CDA61,0xB970104DEAFF2D3,0x1189373D47DC2,0xE5233DD25B708E9D,0x80A911745369550E,0xEC53FF0957DB8998,0x9813FE51521809FC,0xC94D771125922F97,0x18664277BA33253F,0x12C108CE12B5E,0x82426A0F7B4F73B,0xF48A31998E6AFBA2,0x15826D87451363BB,0xBCFADDEE30F5A468,0x1EB7B184AF185A90,0xD9863A0A8633C904,0x164CE6E66DAB1,0xB606B23D1A86DB65,0x8D5539CDBC6A4B05,0x5725B9F80B025881,0x374D5B24F660E747,0x75868CD69C75EE8B,0xE7D8DE35FA168C4E,0x1AC4AA828122B,0x48CE050DF7D161B5,0xD5E1F6ACBA619A11,0x244E813E118FA869,0x28003E5D99A3A441,0x3B68B7D319069EA1,0x983688F4C9C84166,0x168125925D30E,0x7B57AD1A506974CD,0xAFC1002B311AC2DF,0x894EDF5CDA376F59,0x369E940AF89751E6,0xC8708A28E151F660,0x5F334D17A492600F,0x15C130861CE70,0xFA66D8170B4AFECC,0x7827DAB5CF2234A2,0x11D4F694D1EF9DB9,0xF71F20D863B51CA1,0x2C7CA9F869E611BF,0x80EBED7536F5849A,0xF18BED30BA4F,0xFD3570F752C58B61,0x2FFD48C8F5697EC8,0xB6092D8F6E361607,0x85E6EB90A01000E3,0xC15D91CFBD1C38C1,0x18FA36D7C20D982A,0x2213827DB2A88,0xF172D86A90CF7483,0x19C3F9B4B519D6F4,0x256D2919381A3C51,0x190ACA76398932C0,0xABB7B0CFB4E028DE,0xF9CB3CFEE4A68C68,0x149AFAB09EEE6,0xB13947C39CF64B19,0x28674DEF15D919BA,0x5EDEAA1540F3E427,0xD6F262E411B3D89,0xBA7A2674093131FE,0x2BDE12EB794F83DB,0x118AD6EA8806,0x3CEF3CD3D46DD518,0x1EAE2B7C77E22AB4,0xD82F3F0CE40D71E,0x19FF46EE106BB60A,0x3097D41585C6E4AE,0x39E6556A40136136,0x1D1774685C42D,0xE086823136A031E9,0xD783A655B733EC4,0xBAEB57E3C170EF84,0x6B2CDC2AC6206BE0,0x6AB0E960A6B93666,0xD3502209D7178264,0x1B6D013167423,0x68D70D3C40F14E3C,0xF04F3808178834C4,0x40FDC0A8FBCE7B72,0xDF290F225A8B08EC,0x3BC16133555B89B7,0x8238E929398B3FF8,0x2303277DEEE13,0x50DDE40910E91AB1,0xB972596299C4DCE7,0x845055C681AF6CF8,0x8611DBA44EC8B872,0xDF7574438F28486F,0x8CAF377EE674F0E,0x1D67D2F5696CB,0xF0F1BFEFEBB366B8,0x7C848CED435462DD,0x3445A7AACB766136,0x3A3BC19FB15CD98B,0x4BC8BBD006CE136D,0x31A3F26468335B45,0x6309A17B6104,0x5C89902264D1CFF9,0xC98B69C47844418,0xC0635FD0E1A62316,0x95A8D4D2B332F943,0xC81D1D5859CD2276,0xD93A88F8F0690296,0x449124833F5E,0x3397CCC0C112AABD,0x8C6F06C424A734EE,0xA622809EC0EDF21E,0x552E40F79EC3F856,0x9FA096D2631D94B2,0xB272AF9DCB59F80F,0x17855976ACFA3,0x17518BD3E832C7BF,0xDDEDC4D02E12E80,0x9DCADB7A426937D1,0xF253E025696B4814,0x92EC17D7A3DD5B09,0x13ED83B9E9626ED7,0x108B9A7DB9D26,0xF230498CB6B37C52,0xF021883338542C28,0xD505B8FA2465D658,0x55A3B430E9F63460,0xCDD9EFCD02696B85,0xFFA9D550AB95EDC7,0x1A22336B3E5AB,0x89C1297040D3A474,0xFF71C4A765B4B4E7,0xCE64AA377C9CD1BF,0x639DBE419BE2C45F,0x4F98329F7FCA5FC8,0x665157168B2E4BC,0x210B727EBAA37,0x4E2EA413C071AC7,0xC9D6FC0B84D652CB,0xE7DF5DD3B5C472A5,0x17D11EB4637491BA,0xA95AA02F7E9B40EA,0xBCC421D0B684C06B,0x12A14E8F4040A,0x7195B72F9842BD37,0xBDC20346794656AE,0x298F37A257BB710E,0xDA77FC1ED5E8F5B1,0x473DFD2A02F30D51,0x4F0FD858BF4314F0,0x227BF05EDA151,0x4FE8034BF666BFB6,0x477CA71ECD43AA8D,0x445365BD406BB21,0xD8C4340E141B98D0,0xA100F9440D0DCE6F,0xBB69D18488A3E368,0xA7B58D26E2F3,0x610DC00581A673FF,0x7A2252C9C9C59EC1,0x68F4CAB28B0BDEA0,0xF09470EB9591CBFF,0xD613524F623913A1,0x392EAE8EE930C83A,0x2301ED4962761,0xDAC1D5074C7FAC11,0x1201094EA3567DBA,0x6035395B9EF45314,0x448EC3463D66D1BE,0xF87A2045402F682B,0xF1DA3881061A01A6,0x103C46E7BA7D4,0xC9798D6D92B88123,0xCDB3C4F571B7E949,0x5EA5404BEF683A2D,0x5A338AA2486A5669,0xBF743E15D71FE0EC,0x8E7EAD1288038D8B,0xBD2EEAC46788,0x39DF6D7E3A0E0B8C,0x5947E0F3299D2632,0xF65559E25161373C,0x501AC62BA145B962,0x9319B67104C4D29B,0xD14905102FBAD5BE,0x11AA0D9BA1338,0xAD59EF514C47481D,0xDD69DDA57766D86B,0xCCB58E187125009F,0xD7B83B91177A78BA,0x49CC41078F69A8D6,0x372296033AB2BEBA,0x15FFD6E4908A9,0x504C685562C71EEB,0xB7C8DDDE787D9355,0x9648516EE93400A1,0xEEE381D87A506BFB,0x154E8C3AB463D119,0x4523664CA4434C96,0x11A1B89565C87,0xFFB1C7745471413D,0x82814E0EA40A1DB2,0x6894EA66A68AA1AF,0x8208154BB53BC1FA,0x8F04BB227BBB6A2D,0x6A4F34802D71546B,0xCB6543ACEC72,0x3257407C69EAE7B8,0xCC142AF9C4F9ED2E,0x795AF9CF87455853,0x50B2ECCE460CC358,0xB4A3A4DD5B7116B,0x2A90E327E0A13F6D,0x105559901176,0xB5527838A4F3EAE0,0xB4D4C0FDDD233F15,0x1B5068BCDAB1D01B,0x11A3D020505B0A9E,0xD0FD6BC0F3DA73F7,0x893842BD0D53CC0A,0x17372A167015D,0x32956E857798056C,0xEA7FBDEAD42FC220,0xA18484F03AC52AD2,0x5A9453A6B267485B,0x772F0B236E715961,0x14F63E436B673F65,0xF5886CB43DD8,0xF398D8A08D3DF24C,0xA6FE4679BA91D7A3,0x21A5F32195AD76BF,0x872F0FDC511AFE4A,0x60589F4AC318B6C3,0x9DDDE7382C5A0BB8,0x1C5C82728598B,0xF97D97075C792DE1,0x64EC771D78859FA0,0x9F5DD6CADED67A66,0x68A9B844B86E01E0,0x2F5B863278E6B2C2,0x28458C2E31D8DE4,0x1958DAAC84549,0x993B0EBEFB56A8C4,0xC08562C18402597C,0x591E067D5C6FB9DD,0xA28E4AE7A5E491F8,0x41F2D1732A9F9D8E,0x89567F6E064E8F56,0x160EDDB96DB62,0x95F031DEAB939ED3,0x68BDBB684EA98320,0x827CB6B6BF2C9C58,0xB7FC54DEBC89C71D,0xB51E046855C44A5B,0x938ECE19F1A2DAC6,0xBC7E6DFAF66A,0x1CE1942FC86F43B3,0x412A183762AA4F78,0x6A955CA6AAD6A2BF,0x9BB60F27242351E,0x1EC587FC4172573D,0xDABA4191BB36FB86,0xEEE0F3561D87,0xD36089A15329244E,0x78E65A6EB6A05CBA,0x452AE8C5BA97C3E6,0x2283E9011B9B2970,0xF7224332DC0F6EA9,0x21546220F3BE9B7,0x1ECAA9A5EDBFA,0xF681BE1811B16745,0x2A43C9620637EC81,0x6DBD82344400CDD0,0x2F3CF0C5467947F5,0x2B1D36C44388929,0x674B88CA2729EB78,0x4700327DA938,0x3AD966E3A12BE29F,0x989FBF1CD71B5E11,0x8D53C2978E8F58E2,0xF8D08B8A2CFE7A39,0xF5EE8016059AA8FD,0xCF0884447BA4A36A,0xCDE1636EAD,0x6DAF1543650FE939,0x56E3F5B5A2FB1756,0x7EDE9FEAE3701221,0x11E76CD322EA40B5,0xA1654212EA5451B3,0x626666D3D8DE14C1,0x96CAAF3C17D8,0x615E38D241FD05FC,0x3C0062D34EB7DE11,0x7D2F5F0FB354BBAE,0x85E2C91EC41BCD3F,0x9952EC9522F453E0,0x3A72483C32D12963,0x973ECBC9FA6F,0x802532DCA3936A71,0xD211F94280C82BF1,0x4A6054A68499D109,0x4C262CC601B2A25F,0xD0B64B666BC4074C,0xFB3A08A247BE4181,0xCE88AD9EE8E3,0x181614747D9CFFCB,0xDCFAE009C245C63D,0xEFC20498067923ED,0xDB6272138A8635AE,0x91D58A03136BB088,0x6662D0317389DBA6,0x1F397816FA65C,0xAC5DB3F8A9DDEC46,0x9244396D61E5957A,0xE0EE324364425AF8,0xBE71B718B4692F0B,0xDB0BCDCB37795CE9,0x1FF9B333707DA3FC,0xA507737ED80,0xBC2F4DEF28503752,0xDBCB89B2D7CF897,0x66451D05753258FA,0x7D285958C7A09C70,0x5617C75F685D49D3,0xC812CF22C0564F82,0x1C735413CB2EB,0x7213F4CF3366024,0x56F5CA85C3760117,0xADCF03DE500D8847,0xD7636A9936771DDB,0x14FB141137680E4D,0xA631E6877B7995B9,0x1584B36DAD310,0x6E360A690D4984F4,0xB7C8A1ABC388A32E,0xD14CF9D7D6B4F746,0x8E8EB352352522C,0x10A30C45AD941E8B,0xE682E674E598F5B4,0x3F75BF43525D,0xEC2DE2829A236D76,0xA89B5061BC31D514,0x4D30FEB3F4B046D8,0xEFC79370701D6D99,0xF6B38D4F70A430EF,0x88A3C8920DD3DD17,0x1AACB7AD6D963,0x108FC2682F8B1309,0xF0EBFA41C1CF1296,0xD47CB36AD7B53903,0xD5DE9B9AED7EF00B,0xB9BA0155897C6D43,0x1A56AE3261D669AC,0x11DB629347049,0xA8E51920064BD18B,0x70BD02EEB72DA9C2,0xE8D0C69C7185DB72,0x94E9BC90A510CA4C,0x8572FF106CE4BD0D,0xFCA6CCF817FD6FAF,0x121A45BBAEB9A,0xA8B2A7B857406FB8,0x798537AAFEC12B82,0xD287608502456F71,0x900D19280B58AD1D,0x71A96014DED1721D,0x825A27B891E2257D,0x13D5850A6D764,0x51C31D1011EC45E7,0x80B0C5BC24A496EB,0x4FC2F5CB9209CC4F,0x9F652E1CEAC10E1B,0xFA2BEAF4BD1B3FA9,0xE59523A40E4B1336,0x1103FFF370977,0x12C3EBB49B0C017B,0xE3D2D2BC9C341724,0xA192381B97F6E38E,0x6B3069CBAC53BAE4,0x61617F4893060627,0x60169606ADA9B57D,0x751B54C7934C,0x49FD8CDB826492BB,0xE7FEE9E8A1A31984,0x5FA80EA5ADCA30F0,0x6BB0607E3B5445D8,0x59460FBA1C339609,0xDBB9FDAA8D1886F2,0x2253D19B47F6F,0x9C2D01F96C71C0EE,0x986698E464F17F4B,0xA2377AE4588DFA3F,0xCA1A99EAA06D4452,0xC094406AF2F7D088,0xF852B42D12C2E0,0x455ABFC4A688,0x143CF32B1679030,0x2CB23353ABF72C7D,0x144B52446C03208B,0xFCDD9E26F3B141AA,0x4240EE04E607829B,0xC44816C6FBFA480B,0xEE5BF73ED2E0,0xD15BF1F8A80F45C3,0xF12AE28C50376FDB,0x7E894671BE19BAB2,0xF25C688850C77B0C,0xF30CD998FC02FBC5,0xB87A664E869402B2,0x1101302E33111,0x6DFEE4BF141AE97B,0x9967B49E300983D9,0xB37BEEA11F8423,0x8C0E8E3F926575AF,0x6BCAC3667DD778CA,0xECF5614D26457C14,0x146ADCCF684FF,0xEC0FBB225E07EC04,0x851A1629E73C0362,0xA2C66664392400D5,0x3B91A5DB0F97A0A0,0x7FBA66950A40A8F7,0xA577D7B81D063754,0x3558282BCE71,0x8CC232D0029FAE41,0x1FF0EE8967F2B586,0x89A2096A166B9876,0xE51E7BC5430ADD25,0x14E96D994B63501B,0x5A13BAB060EB7E1D,0x1526C87977071,0x18CDCDB0CA56A7F3,0x19B29E0E63247456,0x1072F30249E8642D,0xB27BDBDD8458B19F,0xE2BB359016E681CD,0xF7349DC8464DA410,0x122530AF1B8C2,0x2F60EA7D67C95718,0xD080934779E9A09A,0xBD338F2A923A08AB,0xD399D9478208F96D,0x1EDFA1097646140E,0xE694939290EFC5C9,0x17637E708D9E,0xEF2985109439F01,0x8756891DDD1A9E47,0xDDAC94A6A48480D6,0x746D16635DE2DAC2,0x554E6FDF021EDAD5,0x12146F6669FB4B19,0x11D04B047B2EF,0x3EC9A3A04B5831E8,0x5B8C8D3FA2F93BE0,0x87F3854794B5CC29,0x89F3D8C4EB27C93,0x7DF551EBA1E4B3EE,0x8315000E064B8DC0,0x1BE4DD7697E11,0x9E23AE7CE75625FB,0xC447976868368186,0x2AC959C1A148FE92,0x5715F79D1A34B88D,0xEFCA811FBEB30134,0x40EC78621AA16B9F,0x2172A0B3BF1DE,0xD4DB80B99E71F195,0x1FD6C73CEC487A44,0xCB8EC53D4D98D038,0x8F9599E7AF896C9D,0x9DE70E37D7D3404F,0x25918F1C61F2E8A3,0x2EE4FA576F89,0x6C3404ACA8916BED,0xB3C0CC23AD3DD17,0xB147775302AD42D7,0xC830CAD9EE1DE07,0xF74B80B2AD672AB7,0xF21C66A894C741D2,0x169F44056AACE,0x8CBE4F8BB6B6B222,0x14D73147DD48A483,0xA5EE9A0C38C2D38A,0x428E4666C3E4962A,0x36E538FFBE9BCFA5,0x35C9E7FDF4767AF8,0x1751BC481BD5F,0x984BB981CFA7F6CF,0xCE1EF877871BBFE,0x2470A7704EFD5C56,0xDBDEEC9992820075,0xAA6794C980132A27,0x4316456A0E35B1E6,0x1D73A70681DDA,0x9B3F61FEE0ABFB03,0xBF70F2BC3C323D4C,0xC1528598CE32C6BD,0x7DEF265161A307DA,0xF2886238D52CEC15,0xE1E9BB4BDD68A269,0x92588332E5D,0x5CC77FA16AEF2681,0xB67178E6C7513C27,0x225B2E4C08339FDB,0xC29432766F501C05,0x9BF2D9DEC3BF2D80,0x891CCB6F95243C0F,0x1A0D680E7376B,0x782AA001ED5C273A,0x94534ADDEE1AD0BC,0xA932622F63DFD642,0xDD36A4287C543BCD,0x2E58D3A64FE37AB2,0xD4ADE5D69AE2A1A3,0x14D849B2B0E0F,0x7941F92334062F5E,0xEE919F3BD8899FC0,0x7359C3F6E7CD2AF,0x6F2DC6966C225853,0xB032677D6956D66D,0x253BF07A196CCC69,0x1BD627B2E2A72,0xAE1A278CFD8D503,0x646C05085881F413,0x95AEEC497420FFB7,0x44432EAACF0C5BC,0x6D0C27F428482A7B,0x36BF0F73795AA970,0x19B5D7D1CB06A,0x8CF1AAAA1528F977,0x30E061E79074CB0C,0xA707BCACAF089926,0xC4433A96484B2488,0x3EFC2B893CC11E21,0x3E9C16A82D794CEA,0x1AA78C0619F6,0x386E11EF3C9ADE33,0x3F345CA904720525,0xFBF85C12161FC42,0x713870D555AD571B,0x19BC840403F1788,0xFB2C55A15F0606D,0xA62E0ACE7494,0x9A2A6064FEEBA7B6,0x817A5BD526F00A2C,0x1A0D6D7E501029D8,0xF9EE0E9F6248D694,0x37F1AD16EEF97EF3,0x765B35CBF5E84A24,0x1F2469B0ED462,0x914DDC06CD058D0A,0xB1CB521AA015341F,0x764554932AD560BF,0xDDADA204BB4EB61,0xDC5D65101FD1723D,0xED233BF74AFC0753,0x11C386BC088B1,0xD24F36F7EE6B2C64,0x390FC1516A72ED6B,0x38B9D3E1DD99197D,0xF686100F229E99AE,0x62183576EE814323,0xBCE11102ED020DCD,0x4E15AB76609B,0x6081FF811443FFA9,0x350E77FDCAB2D6FD,0x59AB0E00DCE80940,0xCA3DDE7ED63EE6E9,0xBC6DBA8E805469F4,0x9E00842703BDF5CE,0x12E18815CBAB0,0xDD8EC29C8CA1B3E,0x294FDFB431DF7FF7,0x5161BE8DC4F9B74E,0x2D1DA9FADA3A0D19,0x6F8E5E8E319CDC8D,0x141B4E90AB5C35D7,0x209DCD53ADEC5,0x5AD8C2FF2000614D,0x6A0009899485922,0xF60BE8649878A9D3,0x824413699961ECF3,0xC64207D8E56AE56B,0x7CC487A119E3657A,0x9C6B456EB547,0xD79164F0AE4832C2,0x18AB4B04FF516A95,0x78E7EF83FE6F7F14,0xB49D5BDC652DB352,0xC0DCE40B3129F558,0x8F6D4E0D78C014E,0x8AEA7CDB1E42,0x915EC782EF6E7980,0xC3891DDF0857BEC4,0xC5E30E839374A7BC,0x1780BA1F410ECF91,0x7122972E82E2A865,0x86995FDC92D0B278,0x71CC3D2A1CC1,0x164434AB40812A11,0x394BEDC32B5A1595,0xA1CD4DFED75A0BA8,0x5085BE2FEC402595,0x823CCD0231DCEE8A,0xB6D712B7F5D773D9,0x40EB00321CF5,0x48BAEDD5FD2B1800,0xF0169DBE8161293E,0xB6552BB0BDD53BDB,0xE65FE0A7DA66E23D,0x1E1131F481DD48A9,0x2D1D20B8601744B0,0x5C6C4116B51D,0xAF3F77272DBFC895,0x5566C60CE4E13FF2,0x6A2F921B830DD150,0x9713F5E579DB2A7B,0xEB5DB9E5173B29D5,0xE149A82C1F4354DD,0x229123D77F20D,0xCF80A2D006EFF4D3,0xD813D9B71034683A,0x2DF47B0858B74D19,0x699B2E6987F5B937,0xB59A67979BD19A8F,0x9FF50417A0C7C51C,0x1452867161821,0x671FA199D11B27AA,0xB394846CC8902719,0x1214B1962D43EDFD,0x9FB04AAF55E979D4,0xA0B3646A2A6962E1,0xE14AB1763C13124A,0x16F7E75B2F925,0x648E314A441606C,0x70ABA22B1EF8AD4B,0x43653F156C44AB8A,0xDE655728B459BE6A,0x9356F6CCC7ED6214,0xE09D74AF2B543587,0x13D3D7A473A08,0x6D3145B3A15DC693,0x87EE74A0119DC5C3,0x6EB3EAD2D399D3C1,0x8241C7A29D1BD979,0xFD6CDDE8773013A3,0xD10EF0D36DB31DFF,0x1421DE85F2E67,0xB67EF8C12A0F95BD,0x7D3E0BDECBDF5615,0x2708B77D19CF90E,0x23E07BCCACF17B47,0x8D47EB82DC6A1F7C,0x10A673E279430B65,0x14CF38522E666,0x1A096E1EEB270528,0x933038843B893F38,0x88B613C19DBB7467,0xFEC6DA1CA0713103,0x240180E56E9B7710,0xBF2E5E38057F4D63,0xAB82D1ADAF55,0x502DF4088EEDECB0,0x1410FB3E67C58CB8,0x198656792C37A4E8,0x4DE0AFE6029F1E72,0xDFE0B7C02849BDF2,0x61D8A089A990E61C,0x15CBF26EC7D9B,0xC604F3808AD861A7,0xFC5221165FBEBDBE,0x7096DFF6A69A2FCC,0xB1F040801D15E3F4,0xBAB7C15F02815853,0xBAC3173868CF2F86,0x108C09198BD98,0xD24EFCEFACBB4507,0xE859FEA5FF78FD89,0x920BB19909373B75,0x7FFF9DF9C2465F5,0xC307CDC3BC25FC30,0xA63D94EF63913399,0xED7041483B84,0x2A113CD82EF74316,0x25F3CD1F99B6A469,0x91F37212B85EC349,0x41469F7DA76CA706,0x66CC52A81908A5D,0x4E7666AFC4487BA0,0xA6A111E280D7,0x8E4F12C60387301,0x2C0327333350C305,0x654B3E84E69C975E,0x1B252CD1230EE46D,0x93EC13BB0E071435,0xD6312AA2237AA214,0xA941117BF44C,0xD06B9C5F1D59DA2E,0x363E8F00AA1AC71A,0xA18023F2861D16B4,0x948F5EBD6D24EEEF,0x666F55D48D856AE4,0xC627819F38C6ED2C,0x70C8E4209D9D,0xD3F26F1F9527B83D,0x850B832791ACB96A,0xFFBDE8F888140FC,0x3CE0491FA5944FF3,0xFC36A1819BF21EEB,0xC0B781BE5BD3AC3,0xEFA0DB34FD95,0xFF6345E89328BCE0,0x8D79BB07F0AD184E,0x35139A24BD461173,0x1734448FC20A9C8B,0xBF667217CA7A09A1,0xE8EFB503E7196C5B,0x22E314F4872E1,0xBAE666426C00C42F,0x26CF0420FD295407,0xC0BA27DB997BBB9F,0x8BD7F03A41C0A6EF,0x591FC2A97A36A65E,0x435F8D4B5A43EAD5,0x158C556A6127D,0x992296776C5492E3,0xA56A349270346E93,0xB05E3B37CB4CCF2,0xA157AF55BAE8A3BF,0x9C48223428C3A094,0xDCCFC7F3EA67352E,0x158EDDF305929,0xD7C86C5604239010,0xEF2033BB69E3D360,0xF80A504D47EED8EE,0x2F2982FFC989BDBB,0x21F9500849894B38,0x3348D62BCB154C8,0xFB91EA9C41DF,0xBE43F1042591D7FC,0x68B2F489C88B0656,0xA53B0B23780395F0,0xC1B3FEFFE0350652,0xF947D5D589987687,0xA5B0EE0ACEF62D10,0x96A8BE06F151,0x6EB8AF1144E66885,0xA0664F384B2C74A1,0xBE5C5B9C67C50569,0x7D763D5E67E0301,0x97D9BB30D21837FE,0x7B8E0AC0EBB6AA84,0x1D3E30FEC320C,0x386503F306755803,0xF57F11BE69F5A7F,0x5AD5D1AF653FC2C1,0xEF66E6557A3CB2B2,0x97E4B94FF03DA531,0x1386737CE662693B,0xF8971469D755,0xC8064799BF1E72B9,0x6670AA87661EA130,0xCDEC0DFD48524E0,0x85DECB5CDEBEFCE,0x7D661BF603E36C9,0x1A8C271E48D9592D,0xFA7B15FACA96,0x2754E6C7634B47DD,0xAD4DE2593DB70BDC,0xEFE555CECABFF708,0xAFE9C22F4A5E5726,0xB64977A84CFFCEC9,0xA875076F76816D33,0x46B42F82B90A,0x1D1EF4891A10A797,0x9D0A5A2174C87CD,0x1E59582514DE9704,0x3940A491B435AF17,0xDE8396F3E6C72405,0x250323D82A61F880,0x16CCC90282BBE,0x220E11B0467833C8,0x4703B9A764E4B8BF,0x7C98652DEEC49AF5,0x72D69564C062BDF3,0xDAC71C23822469C4,0x1F35A9B6730B49E1,0x9618C1E62999,0xF04D0E8F962ECD7,0xB56E44FE43EAA2C2,0x170AFB64F110B4A8,0x7A8306ABE1822C25,0x7CB27D274B8FF21,0xE3FE38F8CE6A7B52,0x172EA02AA50B4,0x643C9B06E08CC66,0x2B87BDAF4E9388DC,0xD71922CF1672D873,0xE28B6BF1D657B51E,0x4EE86292969E26C8,0x774FA57CEFDBEBD3,0x22356CA9281DC,0x79D5C53DAB84F2F4,0xA9E38E3B640CACA5,0x8EB5FA0E9D457179,0xEA83DFFFCEE2D34F,0xB7756A9A698C6A56,0x1C2E63E5F5F94EBE,0x1C70A050C84E9,0x861DFF7E8086EA85,0xD0D3D9DBE0B60B87,0x6FC7EBD7B7EA4D0F,0xACD957CA1EFC597D,0x674AB3DD0A8A4A68,0x64FECB128E6267A8,0x21980E790245F,0xD03F684814D93079,0x76170D91C18AE862,0x715CE4F2661E8422,0x3B151C3DF3DEC28C,0x2138500C7294A963,0x4C03650748673F92,0x11D21D53E443,0x215DF9EE691F61F4,0xB09E653C8FA78755,0xEF4393609883DC89,0x29D78911DA4A1113,0xBD63E4727C7E28F9,0xA3D4F7564B901073,0x10F1BB1A30409,0xCF4DDC5549300A,0xE9413CA6F4CD4100,0xF7A542F8CF3404BA,0x439D8AC2A6FE8751,0x20ED88D8D653E5A6,0x3A1D37F43C306D15,0x19CB3FB40E64E,0x30EF0546FB21C004,0x3B818951DE4FB322,0xC765E13150B1C2D5,0xD678825CF33E22EF,0x32982733B22CB893,0x103D3E24F664B502,0x1C359727DB042,0xF74EBD503067A42C,0x91FD5E66FD9F2807,0x88C546CE93DEB7CC,0x6D142D5052D8131D,0x28B693F95AAF253C,0x9C71D15A25A76204,0x93296544C54F,0xA402E80F39BCAAA3,0xA375A97EC1ED7F27,0x7F41AA440EB9EBC2,0x442CB4563CBC85DD,0xAA7C95FD16A78B27,0x3A9C4258D739E100,0x314022980AFC,0xEF6420DB718E8CCA,0x22FA53308FA56AB,0x942E1FABB5C82FBC,0x1F024937482AC7B8,0xA13BA11324609DB1,0xEFDB248CA66B462A,0x72F06D79F8E3,0x9A4DB208DB96B3C6,0xF193B9FD64A6E6E0,0x681FA9DC20DB5D3E,0x104B991877536BAA,0x6F1EFDFB41FEDF60,0xDF88781860A4D51B,0x22A463C0BEBCB,0x608DA1520FD3520C,0xE9B12ED60CC101FE,0xDAF96698575A7191,0xC93D41DA54C3199B,0x5074D286FE59F326,0x3685F42CC3076EBC,0x113B64618EF3,0xB839FD952957E967,0xD1C800823F554F89,0x59556DA71A539131,0x8D7923878A5CC54,0x42E592A7AF0E25EE,0xD9093304DDD65945,0x4E497043E3C3,0x5DB62A851952AC1B,0x9B3F62695628E9AE,0x6E6B76578038E04C,0xE21CA7DDBDD5830C,0xA3D21C6FECCFBFD4,0x48CF797C096E0740,0x80A32146236A,0x7CE03DBFEE575E24,0xB5502FA503B9635C,0xF6D7020410A9C247,0xAE731401F0227220,0x626FB4B1155D4A2C,0xD3B4121F356F92B6,0x118FCAED5598B,0xEAFA2FB66B470175,0x30E87AE005121328,0x2F88A31577FF52B1,0xCFEFEF54BE7FA45D,0x61AD5E1CB48AB19D,0x2B593EBE6F21953B,0x7C62F48E67E5,0x1B7B3581BAEF1BFA,0x50CE15FFBBF8B6F4,0xF7D5EF289E4852CC,0x57AE0BB595B89A5D,0x13AAD32E2B7E9620,0x11DBF55DC1950696,0xA2891670CEFE,0x9D3FD5BB56310B5B,0x4FCDBB4A5468EA54,0x1269F3873398856A,0xD0B6E5A3B049CE2B,0x25EB4C992C5CB3A2,0x78042A54DDF046E8,0x6FDF68CD1D74,0x8044A6344D792F29,0xE748807D4F09BB63,0x45CF59B6352E0DE,0xFF05E523AB8CCCEC,0xD3A6B9CA4FBFCA12,0x29E9FB38FB4D68C6,0xBA8785175432,0x85B3E3F08124B64E,0xF104133C18139ACC,0x28902AADDF6361F3,0xE8DD45B08B900D27,0x9FFDBAB1C0E62AA4,0x264C51B5BE14E180,0x69BDB668EDA8,0x719DE1EDC7D0A421,0x6BC959BD69519685,0xB107B97645155E0A,0xACC868A7936881,0x50F46B9C022275E,0x2C3D1284963EF67A,0x21ACE55D2850A,0x898BE48131F65BB3,0xE15839DF988EEA12,0x509C88CD5E733E4E,0x1609EBC1EB79CA03,0xC96F28E85057AFBA,0x54921BDAFFDC67FD,0x1B4A11D1BDF08,0xD4A697FBBA3F840,0x480C56FAE876C1CC,0x6634C7A90BE98D90,0x67C8F1A197CFB02,0xC557CDCA3E1D08BC,0x5E8B15E7518D36C4,0x5C5260A46CD6,0x5178990EC7416753,0xD3E7A43B8689D25E,0xA6D639D7A2E9B2F6,0x9FABC1EC98A4C1C0,0x348B109318082F2B,0x180A660A6213AFB3,0x19058A1E7E29,0x46B123EBEC2A9864,0x8C82F5C34E70065A,0x5F47608551B7D269,0x8CD6DD23FEF5C5E,0xAE00D387FCCFC68B,0xDD7B97B185757FDD,0x218A212A11D4B,0x876A9B62899AE70A,0xA597032DBCEE2638,0xF80BDFDD8D6D24D9,0x6E8C7C9277CA1A72,0x9F6B8CF39318805A,0xDFBABD16529CB1A2,0x12CECB1521941,0xE5E32920DCF5C7E2,0x977B6818D9225CF8,0x4C2C1A90AA10045,0x3F6BB1CDAE29B31,0x616EA6FF7C682817,0xF6520D1AFB4CBBB8,0x543E4A838328,0x366A448CF82E8BAD,0xB48D561EEAE6DFDC,0xC6084E09627A76FB,0x485270F129E3ACB2,0x1114B2C643E7D25D,0xBAA7E8A0FC60DC7,0xEF3B4AD3A921,0x1A42F823AED24BB2,0xB1E32354683F7DB4,0x6929E5646DBA982C,0x2A850BA0A4EE8B42,0x2D0D895254DC4910,0x8D0ABF026E117420,0x9B37B29A1358,0xECE5D3FDDA92015A,0xD9C92BFA89C61D08,0x2E7136099ED22997,0xE2850DE7E04222C6,0xC99575BC27EB2079,0x688653C67AB4DB6B,0x21C76FF9D2E20,0xD18702F2B5286947,0xE42F676580E34921,0x7CB042D32758D79E,0xE6E1BDFF0C816C94,0x84D92C1005EEBD21,0xDA1F19D93E39DA25,0x1D0E3BB26034B,0x2D820EDDC0651F7B,0x62013B028741C437,0x1B35E956F9177AEC,0x935EFADB19A405C0,0x12DFDAF2C5348559,0x5279F1FE21C8FBE,0x363BB39BE8AF,0x6CD3519BAFED8441,0xB38340789DEB45BD,0xAED44626481A1A53,0x46B118FCABF566E1,0x29AFBF3B872A027B,0x8E2B400D687BF795,0x146EA999A9953,0x7F85C0742D06D762,0x16ADE4369A703CF8,0x5C0616EBE9B1EB1,0x8345B4C4C381909F,0x74588C4BB01ECA31,0x590037DED94BE0AA,0x3AB7DE3CAAE2,0xBB08F29FA22D81CC,0x1FA616B97E05C828,0x9131B905B629A13A,0x6CE6FDFE8586509,0x59C56F398A650985,0x837987E14D7FE08D,0x5618821A3DE8,0xCE16FD8336A5F12B,0x2D0BD200C05DCF17,0x759D564FCC3D1D5F,0xB050DA5152AC93D2,0x4A05AA3503015256,0xA9C2FC326D770AB7,0x1F88396C8570F,0xFDBF0DA4DDB14AEF,0xE31C97CAAC2B1AE9,0xC1EE53A7AD179B6A,0xEAFBF7A9FAFFAF8B,0xFA0A8C02A4F7B0B3,0xB763F72ECB7E482B,0x1E53148120D31,0xE342611E59B31042,0x34A38160F4B0FE89,0x236AB126F9D5418D,0x569662C622778FF3,0x6E1BFF617F506E58,0x6457E0518CBCAC2A,0xE90DCECD11B2,0x6DE0A64DBD620FFA,0xEA04616A6DA4B554,0x35BEC09E9F32EACD,0x3C364BF667956041,0x7F550D0B76DD9D96,0x9BF6F57974B48DB7,0x146F2E393C1B1,0x57FDAE3875A8750D,0x6D18736EA187ED61,0x6C8AFDCA13C92443,0xF118921FBBFEE1ED,0x1D5626A7695F376B,0x599DE0B91A589A2A,0x1FBAD61F71587,0x72A9B33F06B83EE7,0x3D791D5E45E1824C,0x2D533C8F6861664D,0xFBF508F845035F20,0x7E4C27072918DBA0,0xEBE602F6C29E73E1,0x22FCC4BDD7B42,0x5D68418C13B9D614,0xFFCF3AE8611FB3D3,0xAC676226B445E60C,0xF5F378EA091C9F19,0x33BAC1DF195C59DA,0xAFD9915202890D1B,0x1D0784F8F4F42,0x4DDD8FBDCE7A2644,0x5243541912B284AA,0xD09BDA56895D92AF,0xC116CAA4ABA08A3,0xBE99D0D49254454A,0x85C5B53BDB411939,0x16F29BB48E401,0xEF1DE09B50A4F245,0xD0B95B3635D0A2D8,0xD3608B43A0657567,0x91EEFF77F7C3A82A,0x34F13298B6272CAD,0xF4E8173A373712A4,0x5434636112E,0x55E11A8D3D251857,0xCB68B3160FD39797,0x9A93FC78DB3107A,0x868FB7FFBE8D63AA,0x611AA5A0B2B597,0x4E9C9A3FE51803D0,0x1CA96D81BFF51,0x78CDE4F9D6051327,0xCF10B1620B661D24,0x98D4FB1F5781A67C,0x909C5A7FB50BDDCF,0xFF01BF5791090F1D,0x8DFF2D3118FBCB63,0x7F70C09D2EFD,0xCF2EDABA8295FD20,0xA6F8DF8CC583746,0xFDA751D82BF865CA,0x2FBE1C53DE2C0424,0x4D55ED1A61339F79,0xB34234F2BFE697C7,0x2E5856979B09,0xFBCFF766FFBE437E,0x754CE7B163CB222F,0xB849A5BC4A0DC7A0,0x9F60F6EC4FC9C4A2,0x7CF33BFE698E35EA,0x7615FAC56115E26C,0x1616D76E20FE1,0xDE61615D11EF01B,0x46BE25F4077721C9,0x5723C28E5F160AE1,0xF657500AAFD90A98,0x598C4E7005A8AB92,0xDB08BF38D602C320,0xB9C975129CE5,0x4F198A137324A1B7,0x6FF849C5830D410C,0x1FB006DAA4951D77,0xE4460B76BF982F39,0xAD1F12B1E3BE38F9,0xAB5D8D3B524B72CA,0x1DD0AB1E6EC9,0x7FBF1B94D9CF1640,0xC26D6D0911A74398,0x65A9B26124832F31,0x4AE23D0C025E4BA9,0x68D9789E237F222D,0xB7ECE01E56835E60,0x1EF2B8F05273B,0x8816C79C8ADB0ED4,0x9339FF345CA7C8A8,0x535DC632C3F597BB,0x3EF3D718CACCF0AE,0x89B774C401AB4891,0xB5934191E05CB2BC,0xEC1FA11D8B68,0x8AB1A1F70385C52D,0xB94556CF9BF3D0AC,0xB4AA88E6819E5E0A,0x6D319409884BFA33,0xE4189021F087C029,0x15A89A91B12344D8,0x1B2710E8F329D,0x646A04449FFBBBF7,0xF4D923532B1AAD91,0x2DCFAFCD6E36A52D,0x45DB3B53F6F5985B,0xFC4EBD3EDB941B7C,0x4863EA26EE5D538C,0x14EDC74BAFFD4,0x2C3992457820CCD,0x316E66A30F7D2EF2,0xFC8CC1FB57BA847E,0xF1CF9478A8778DD2,0x161D24DC1B9D2378,0xC59E79FF5E4B2302,0x18EDF6CE1FEE2,0x8DC9EE7EB81E5AA4,0x92B7F26FF3C5EE36,0xA01A474EF621E132,0xD1EA064372AEE4EE,0xA7B95DE88EC51F00,0x6A495DB60D987EC6,0x1DA53C8DBC4D4,0x7F811980684FB3CF,0x601B85D72F0AF064,0xAB4F8993D471163,0xF1919D90D9B43D34,0x59BA8DA39CAE9CCB,0x5BF9FEADED16F1A4,0x196A4A17D748A,0x5298F797A27F5150,0x92CA69210336675D,0x5DB8C32FAB48C020,0x1480138C4FC22048,0xE6325C0E69BE2148,0xEE1FDA3493C7CF34,0x197B8AD2FB15,0x287360F85DE134D0,0xF7BF6A242A2034F4,0x9398781FB7AA3F70,0x5B9D567F433BA060,0xC330328C0593C768,0xCE880153ADCDB51E,0x4BBE3955FFAF,0x2AD522BB777BE40,0x80263C347B9F5777,0xFE1F088263BC556E,0xA28B531AEAE0F7D4,0xF1CE3D837313B1B6,0x7BEF1B9C771173DF,0x6BA43B0B093E,0x38220332E878527B,0x9A612E4711BEC953,0x67C533B0CD3EC95B,0x6E4B9E9FF4E905D0,0x887DA87DD651C10A,0xA62CA7BE213157F0,0x20D5EB054E1D8,0xB7F9BB65D8BAF28C,0x4C7BFA14B8D3156E,0x34FA213E1E1075F2,0x1F94CDD1AB61A46B,0x9D63052543E45312,0x2C9AC5A3C4E98741,0x1079E5A2858B0,0x286787778402A292,0x145C63904754316C,0x1FACFCC71C294471,0x14E7B408D394AF92,0x1843A9224D6B7912,0xE88598FF4C7A96BF,0x22F1F3142A93F,0xD8CF10B3BCB02B84,0x5F03E923BB2245A6,0x8FB431F769123CDC,0xCD3B2F7858717658,0x11B42B005E4FF596,0x11F2BAB32FF606BC,0x5A2C828DBD16,0xB1DDB6DEBCDEC9,0x61128324155D3CEF,0xB0C0EBD93BF11C5E,0x730EE92BBC1A4EF4,0x86A7878F26DDA852,0xA24C2F5E269110A2,0x1E5EBCF959B28,0x1153FFFCCB348CD5,0xCEBEFAEA41DF75C6,0xCA8748480B814868,0x79E2C99FBE9E5880,0x2759ADF9E306DFE7,0x5446CBC43774951B,0x1C2895200D4DC,0xDACECCAAA3C2A7CD,0xE56712DACAB019F6,0x7955D43F30F61063,0x9AC9F05FA4ED2841,0x65B5339DB6048BE2,0x260CC3B4AF77C5A,0x2F347551F8DE,0xDDE27C39E5626FE9,0xDFC551A81025E113,0x94D22CFB476F509A,0xC8839688DCE81025,0x5815193C09AD94B6,0x9F98099882067310,0x1511315FEB6DA,0x4A05DC3328CC6BE,0xB92582C9DB6E4C07,0x97030A5E1650353B,0xD450739D812BADA2,0x69747662902CEACB,0x142A9446FB95E706,0x1081DB29E64F2,0x28731C1602BB8CB5,0x98060A1758A65AD2,0x2B053FAFF8DC9C65,0xF4B92909AAB802F0,0x17AC3B78A878368A,0x847C549FD7402549,0x12F73F2112FC6,0xA531425205889461,0x9B72AE4C7E6EF72E,0x751D6A2951A6D4EF,0x1B05128457B83BB4,0x6526ABD5941C1F6D,0x3BD6D42ECFBF4D40,0xA09FC53B9DF8,0x8D58D309EEDC486F,0x112C5BD86E9E0FB1,0x858BBAA717F59232,0x658B8AF8E7B62FBF,0x88FB5C91F4AE85EA,0x22A6C230F9C90815,0x11C19CAB72E67,0x1D90480AC175AFAF,0x7FFC8D58B9BC7EB3,0x827BD1874A612D07,0x9908D51007A0EBA5,0x2A5D23B758579A71,0xBDFEFC70358620A0,0x1738C2B2FF3D1,0x4590F8BDD6C13983,0xA2D75E7F48950BF7,0x8186A357BF717C27,0x53C8A21AA095680E,0x298C8D12A626CA1E,0xF94CDF412036FC38,0x5E0EB58BB81F,0x49785E3D56341207,0x6A39F43FEAE891D,0xEEE6890001BF13D0,0xFEAFD0A3ACC0DBDA,0x2E0C3A506C4DB6B1,0xFC1FF88539EA2773,0x116C45D2CC742,0x81997CBD6C43A5CE,0x6B539C95A3EE9769,0xBC4EAAF59F6D6F34,0x7BA1C6E5C28A0D5B,0xB328EE3DF3467CD0,0x492B6580F8058DC4,0x339CB0EA72EB,0x8960EAE09DE7D867,0xF13485A36824DE5B,0x117E035CBC85732E,0xA58E19C9DAF0DC40,0x3BAF7EEC5AF1F40F,0x404F34B63C74D894,0xA23F8914C830,0xC983335328420E5D,0x79C286A5071BF4D2,0xDFBDC55D634338E8,0x697511718C4AA293,0xAF5CF0B482CC875C,0x1EF2E2D292D0C957,0x977C97D9279E,0xC9F66A0683B8C3A,0x54EEE9D8BDE994E5,0x7ED22AFD0860F6AD,0x711346E4E1C858C0,0xA692118CF50453E3,0x3036C4A5D963CA83,0x1A132C155E430,0x7DF5DE1683A44824,0x243D598920FE9A7C,0x692A4A2B22F3996,0xD6B279FEA06DC015,0x9965C4B8F2C09939,0xF7FF91ECDC4E32F4,0x13C650257ED8E,0xD64E8329AD199D87,0xF66ECACFF297A171,0x957460EC027D5615,0xEA476FB14CCCADD,0xF608151FFEF3694E,0xD27CD80139E3DCB3,0x3D625C6A9E8,0x870988C29F0030F,0x5DE315F6369F31DA,0xE0560638A01894E7,0xA491C7A21DC59FC2,0x4C3F60076317783C,0xF1BDD6255B597B43,0x1B33DB5C62C49,0xB3BE86D29967A865,0xDB38E3F69BAF6457,0xAEE18EFF08AFA4B,0x9DEABC64475EFFA7,0xBA0A3B5BAE292ED5,0x9BBA7332BF019FB7,0x16A7299C4E8F,0xE6861A1FADEB275,0x2075B10C5ADE9821,0x46A86544757505B1,0x6BBB476E6583AA41,0x31223859B2B39372,0x19F39E6BEC13D373,0x8C68B695D2AA,0xCC2FED47AE78DC2A,0xBC9A2CA6BD18F4C2,0xCF9E50B65018980A,0xBC6A2DF109C0CA18,0x2D664A7D1B84B2EE,0x25D97DBC2F591D05,0x10EFBE11F08C8,0xD1E29BD5C1C4F144,0xDE77536B090618A8,0xB0DE55BD147671BC,0x34916BD6BAB49704,0xE395ED1D34017B21,0x54A21D25EFA3D59E,0x195D2C3C8C102,0xC33E3978EEC4F1FA,0x11957BC9EF62BB9C,0x43AFAEB972EE9F0E,0x1DA8E0CFF9EABA06,0x24DB30F770F137D,0x99575EF21086A3B4,0x1EDCA430703E2,0xDA29A1DD58C7AE34,0x977E44C3210B70B4,0xC51126523427AA05,0xA2B05B44C4803A63,0x378EAE846D0312BD,0xD72C2F48D8745C23,0x613C40A1117A,0x9F9D362976F40D96,0xD99BBE928EFAE86F,0x77C1E91EFA831B,0x7E8A0807C5E5500E,0xFAEF3C566C9D024F,0xB9329BD4D006F227,0x117B661F0BB6A,0x7A135BEE40757BBE,0x306CC8D10A3AF9A0,0xF7D6743580432AFB,0x5E59F7518EA17D7A,0x75AE14659521DE88,0x2F83381C01AFC99E,0x99BE21C5E3E1,0x42B0D5B05F7F5087,0x6ED6B0E99ED7EAA0,0x52E9F33C0CB23852,0x6928168169CE5570,0x56E206EAA9BDCCA5,0x9F6DE5A69FAB6A13,0x164B9AEC6F6D4,0x5A8F68B8B0E78675,0xF92F400CBFCE87DE,0x6D35E78E1BDE0830,0x3C1AB45B5BC2EDF,0xD1E2E249C9988A2,0x420461DEA4EA9A6B,0xABD4794DD096,0x535590A143DB7CEA,0xF61CEA217FC37F9F,0x6DB8E94682A16E04,0x21E012004C8470B1,0x6A070AB20BA37D2C,0x6C9460E143D3AA3A,0xA37222A352A5,0x1A495FA9BB748780,0xE40F4340E993AE9C,0x461369E6EC949FEC,0x67E587023F337697,0xFBFF368A111842A,0xB27EB190E5596253,0x219F1F119B1F4,0x7A5895E4C84400DB,0xD4B450064E1A526,0xE44B762CBEA29082,0xFC0364D3B6558CA6,0xCD1B3734D1F9E573,0x140B822AE785BF18,0x156BF932A8183,0x7E9EBB009BDC03B2,0xFFB2998DA699BF21,0x264181A5891555F2,0xF5599C8E3E3C2150,0x816F4A3CD7DC8741,0xEE6A45E2E3482597,0x1781AEC94BE10,0x382370D315ED6170,0xA10372EE5D6FCAE1,0x5526E3D7FB2E880B,0xD656C5FBB7D832F7,0x22E319B35FEE36EC,0x42B6B4B9C267CA56,0x7C770D535553,0xD86C4BDE8031F281,0x6BF12C0B987168F8,0xA7F557020FE57AF,0x69FB1836B6380366,0xCBE1E7CA931C623D,0x323D1C387A1B4789,0xB0F1296A5E2B,0x7338F8B5C7E9B29D,0x426B5C75DE8C8DCE,0xB67063F4FDC3F23D,0x7C5B6B7971793736,0xCC4208DEEFDE9453,0x25166CFEF257497,0x132B040B9AB59,0xC3C749855A1D8A16,0x4F1A9C294B3565B7,0x512EEAE9BFBE5AAC,0x43E3E4DFF1C62B53,0x7613DC64194928B6,0xF34CDC95BB824E42,0x163EA87C166C,0x312B87369225CCFA,0xEF8962E3690FF351,0x47D33612FCA91366,0x2AF7FDDF9E684737,0x22730257678BFBD2,0x9CD0114800B112C,0x16A4D8B353ED6,0xCAE78280E308E6EA,0xD681804330FEE1E3,0xA4AB00EE90531A81,0xCD4CAA4DB872E204,0x3A9551A227132D23,0x3BE4C3178C0B5B1D,0x111F7F53F5C77,0x9008BD4792E54A19,0x8AC7367A4422C0F8,0xB4005E7E7EE88D56,0x3F1546C8B7446D8F,0xA4A1CCB16AAE96E,0x67D08471B9BA6AD8,0x144C3F0FFCECF,0x8736318961941A53,0xED6E0E9635E86131,0x7CA40E67B2E9AB36,0xBE606F2AC109A825,0x4F2B1198250D908E,0x3225091C04B09195,0xEC693D0AC3E3,0x4F277C9E73F2A111,0xAB607A5008F2D8C2,0x69A89D6B649D42FB,0x88E482741647DEE0,0x371280C3D5B669C8,0x8DD7727C23D5AFE8,0x5D2544E7489D,0xEDEC5B680AF3D500,0xD4520660EF4B55F,0x8C043F029D8FC5A3,0xFC6C2E01FF04BC37,0x217D05F4DE288E89,0xC7D30EEC1016D348,0x155A08E78628D,0x447BF4C225226839,0xB883ED3FB3A52461,0xBB0555C0B007E0B6,0x31C048B559B46B16,0xD44E01207410D663,0x5BB01420B81EBBA6,0x60C946F33E05,0xB5D3140942BE75D5,0xC8109C48B10D9888,0x1BC5A987D09F47C4,0xB8BF2C0F76AF23B5,0xE0E2A04664660647,0x6D58B7EEDD3DAE04,0x129BA59C57913,0x8BAED70AB64391D,0xC77787C77AA099C8,0xE1D51DFD8AD7979A,0x48325767596374EE,0xC59B6B28E7333F64,0x61E346FC955B6458,0x2205DA5BEAA17,0x9754E0126F38BF6A,0xF390592EEBBD8E61,0xA2402F58D7DF42BD,0x1CDC8CAC3014CAAB,0x8A2BA7F2186E0731,0xFF5703BD43832136,0x13E474D088E22,0x34DA9AB4DE5F1482,0x9F66274A5100F430,0x3D1F1DB437CEF4FA,0xD949DCA4ADD35587,0x30B90F9AAF9B6AE3,0xFECE70370DEAC3C7,0x3C9F1FCAEFA2,0xADBA6E6B20629EAD,0x319EAD085588C04,0x1AC2609CD6311FEA,0xC3D7A842AFD7673A,0x739DC942269EFA3F,0xEC0D7F0ABC7BE75A,0xB51F4FDF4A2D,0x85A237F40A3CFB55,0xD929B119CB741757,0xE5D7B98797CB6472,0x3233D6ED5389865E,0x9EF2B1D80F6046BA,0x90EF4087C0DA6CD8,0x52465F3106A,0xE1A67052E24D71DB,0x47D6B754C481AC8F,0x30E28090C771C4CB,0x48BFA5E75E58CD12,0xB396C1633BB3D263,0x9265A047DD665B54,0x1F9D27150DEC,0x6A6A33A4EB026227,0x4F502D7EAFFE6205,0x29909B58EA9795CD,0x2E5A376EC650CF1C,0x8481563236BDAE35,0x5D75DB648B1E8C91,0x5B21E1AF5724,0xB62D1B7813BB7095,0x3ED57C0D4ED4EE8D,0x1CBAC805E34C9084,0x539A41CE72DC3BF6,0x641B8E073281CE87,0xC76D2220D2C0AA35,0xD71B7BFA8064,0xCACC954B5C202809,0x814F68FB164B5348,0x6794C7912F47FDAF,0x519E5BFF29E0D48A,0xBE84C80F45F363AC,0x2E690DF1D38F8CC8,0x1BBE38BBABF2C,0x1358569E74C3819,0x61701E48C29C038A,0xF15BCE69DCAC9B95,0x2F0CE8A2759C728F,0x70FA1C5C1D3A1D73,0x53A549584551E036,0x2E7F470BCB03,0xA22689292CB603F4,0xA2AB8B080CB6D5CB,0xCC062DFB57B7F088,0x94AD1D973A7E748,0x9A6541E2DB7EE6F1,0x8FCA855F8D648D9F,0x13B33A2C2C92A,0xE2D0CBDB512B7007,0x9E7D3E105A165E5B,0x9BF6C4B99F8161FB,0x5F1CAEC6DF2A6FDA,0x516E72C1DA25196,0xF83F3FE5C9AD8BD0,0x1D5D00062857B,0x55B4889775BC067E,0x19CD451D7DF4B125,0x5D5E1A13E9AC06D1,0x91EC48DCBA22266D,0x542D1CEE574ADB37,0xBDB1A669991B93D7,0x21B396C35DD86,0xC253424B7400FACD,0x12E90BEE17A04E06,0x4B7100D70E6BC850,0x5AA98B79CA67F24,0xCC83F8CB15238D55,0x27FBFD6C5AC30905,0xCF74A9FBE99F,0xD95FA749CC2AAD5,0x8F2A986435C362A8,0xDDA94651449BB1A4,0x2F2B49E69A206DD5,0xC946B1E876C78A04,0x7B99EFC8855928F3,0xCC448E5A1AE,0xCF19198A0C367FAC,0x3C90232BBAC99377,0xEB13848694390E2,0x4B85229FEC74DB8,0x21978AAF0E812A2A,0xF249CB7045C3B1E1,0x7B170A4480A6,0x2A14A627C8E7D3A3,0x9592D3608A2D2640,0xCFDC65013201699,0xFFD90242B7637E39,0x216E72B056ED0F5C,0xDDBD4E097A99BEE7,0xF086C3AAF972,0x3D5DB71F2E0781D6,0x465E6D4788427071,0x6B31D00BED4DC6CD,0x18B2365A3AD488DA,0x74183D5CE7B6642E,0x2535A80523E21DA0,0x129C4720694A5,0xB84837BD4B4B5B06,0xAC2374CF7B462242,0x1C57870F4B6FA099,0xC69988D9529B1273,0x7A0D22837A340B5D,0x21EB1511AE38025B,0xDE868A311361,0x1763890E4113B713,0x97DD0C1BEBADDEB9,0xB71200ED3F02FDF4,0xA41F1B44F94954F7,0x46F2EE5BBE823E48,0x7C10B74F106CD574,0xBB68146229EB,0x9EC9C6696D1EF2D6,0x29F41CB297CF38A2,0x375654F3339B49AF,0x4053A19D6751A39E,0x4020609D75D2BD3C,0x5CC066BC1375FAD2,0xBA841CF64C0,0x24F22285DAC19C7E,0xF3777471B8DFB6C9,0x8F7845AEF2416084,0x72D3161A169957CC,0x87EDF60EC7CCDE6A,0x31976374B60FA750,0x290B66B05C0D,0x9120C07565546675,0xCE2891EDEE9A1CA2,0xD5676DA332F6BE73,0x671E4541BCEBFF35,0x242AED038DFF4C5C,0x3A69E28E95A7592D,0x77A380B1599C,0xC442A090CEF0940D,0xC96003F230F5DFD3,0xD972CF2A68980D92,0x290B01C1BD385482,0x381F00D306E39997,0x10A4E26E839828B,0xED5D2A0EC0CD,0x62519D1E8C71C486,0x6CC0C599118E1EBE,0x3323A21CAA787BF4,0x42D7CA8BB2A4AA35,0xCCF02347BC6B55ED,0x831721472598BB6D,0x19E58C2D29482,0x3151195BBA32D637,0x84F3565D83881644,0x93FE121B97AE6AE,0x6DD8C9F9F4165DAF,0x5338DA46203365DF,0x1E8F5599728AB5D,0x8C77606E66D2,0x1B82C38E1D05EA96,0xA9E1FD5F156EF29D,0xC09B9760CAD7ECA,0xDF85514541A4E9B6,0xB9A46DC1F48D7FD7,0x37C7EAD7A25A16C3,0x8B848E829A58,0xBB948AC7647F95DB,0x2BC3E282693CFE73,0x39D6DA4D7A206F07,0x845F4C1ED9901CD5,0x630F130A33A6E54E,0x962599D90A70697F,0x1014F0432FBBD,0x9CF0E7C4B8A5465F,0x50350A811AC57590,0x884C66425C9C9259,0x3F1FDCE4565E1A04,0x75FF00229018CFBD,0x429253DBA75C36BA,0xEE660DB6E671,0xBD6175FAC221EFA2,0x4B22C573815E1153,0xAAE777F553A08562,0xD14B74A0C4EA1FF6,0xC353AB0F4737D834,0xE7DB7615A5E6F905,0x1831190D56D12,0x6BEBB99876899EFC,0x567162E7C4EA2F4C,0xD3D387E3FFB6C8A5,0xCC1DD593EBC2F535,0x9EF6DD7E87B66D9,0x6807A5EB956883D1,0x1C35DAA2E4770,0xCCAA61E9864982A5,0xF43B9182A0814DB2,0xE819AB728F47ED5,0x7948D9D986F98292,0xF7D58765948EDCA5,0x32CCEEA126B2BE6,0x2052F68023386,0xEEE200809F944896,0x26AA48F4A6AD5970,0xB8026C1A283E771C,0xCE2C17A3453E89EA,0xE137224507DCB55E,0x1C4C29E6F74A5D43,0x171D10B64B3C6,0x748BB5B8DA24B2E4,0xC3C697987F3E6F84,0x128CD9117ABDA64A,0x6042044E4E8575E5,0xB6C9261B195580F9,0x1B74A2F841FB4701,0x1C529528C0B47,0xF1FF09AF0A0EFE7,0x378A1BAB980108BA,0x7BB3144340ED44B8,0x5CD7F7BA5995638C,0xD5D6CCBC7BA84192,0xB9A1871A2B6D2DC5,0x187C186A962E9,0x182935E4F6661A44,0xED1FA57AD444D8B6,0xB2817CFC86EB7B9D,0xF27BA78E19D3F6D,0x8CA6988F25CB8F50,0xA62E1A0F6B46F3B8,0x1D0E7C858F6B6,0x8D1C7818D04382EA,0x19A4DE6D0E912AC3,0x5C7BF61F80264FD3,0xA650F9F54BC86321,0x8F3C6400DFC78293,0x1CFEEC739B8AD6EE,0x80F69214F75C,0x8C691331EE657930,0xD114BE667A9ECF81,0xAD207E62316131C8,0x409A44B127B66CFC,0x7D8648F94DD2993C,0x15DF5D48B2086273,0x1A9EA12312E41,0x280D58B75219C1FE,0x6F92974A8F0586D1,0x4C59281F207044D1,0xD8328DD8B129725F,0xC79751FFAAEE3342,0xEFC71549E60557A4,0x1B58EDC25971F,0xF9A065D5C7D2DEE4,0x20924F853C5BED1E,0x3BAE976C9CB825D6,0xC44559710311BCFB,0x5E7F29A533DC34AA,0x3F263B184CB6946A,0x18D06BEA0C8F1,0x36FB060D33FDB4FC,0x4988BA19A8B06990,0x8D22B53069145B75,0xAF7FFF7291C122EE,0x3B9C0936AB940FCC,0x85BB81E424183351,0x3E0BECCF184B,0xE85D6930BE6FE72C,0xC80B8F443322C878,0xE9C2D55B597F1E69,0x5B9B098E9B057487,0xDDD1A8FD742EE48A,0x2D9C81DB9A3CC4DD,0x2341876BBA9AF,0xA2D713CA4DA69538,0xEFA983630A202D49,0xF58532E4A24C3A1F,0xA07DBA43E5532E40,0xAF7492709CE1A512,0x2A26EEEF9B7C9FC4,0x13E1530C78719,0x1703DA3AABD2C2BB,0x2A3BDE28A6F5F34E,0x36B9090EB0B1CDF8,0xB6E7958976925FB1,0x2F9329EB65B67DB8,0x6C1434CF347BAD48,0x1B9BBE5CC8774,0x8A11FE770267C03E,0xEBDEC10B2F148F7A,0xDB9661298D66C84,0xC1301D10C237C197,0xD42C55B228A79A6E,0xA41DAB18B18A7140,0xD299CE6E5C,0xF84F68FF780FBD01,0x75A6C70295F9C502,0x7DAFB1E3B41314AF,0xB2E3C53BA34946AA,0x89A7C83EC1F56106,0x7CAB1A32BCD4ED3D,0xFE592925C5B5,0x824E2D8F22AAC089,0x788CD4D40123BA3B,0x44CE79BE677C2E23,0xD87E0BE777178390,0x19C0288B88D4D75D,0x9E2A14544B4E1DBE,0x2082473812168,0xE0E26F23FF29A66F,0x8FE04D27039CAE77,0x8E7F0F5F6E1D63BD,0x50A05F46864DCC87,0x5A20616366659FBF,0xF98F63A203063AE,0x2296B7724AE91,0xCDF1E9A176A9FB83,0xD0D821C77909DA59,0xB95C5CC74F1513D9,0x1899086C3FD8A3B9,0xE5B4E4F7862DEDEC,0x72227ADF6DD4E281,0x136FC0FBC098C,0x4CF38718DD5766A,0x2109D8E061455D9,0x29313E6AF349D606,0xFC6191AF6431F9CC,0x3C43844146DA3F76,0xBB4B3F0CFD8C5368,0x185A7C9FA00EA,0xCE2EB5763FA15596,0xA7C1CC3BE4D45B81,0x40C2AE24131F7C82,0x545AD9042DEA6F83,0xB6E3E3C91956EE18,0x472C9300CF69734D,0x186C43E7AD5CE,0x5BBF9CFDE7BB8453,0x8CEB3A4B1D2267F0,0x17453AB197C81076,0x1F0AF6F2284F8921,0xCBDB65A4BAC4FB55,0x520638A4E48EE6D9,0x15D40997C7A8A,0x1C107925B8ADB925,0xCB68EBC192DE6C15,0x436746CB827CA8EB,0x33FE20395242911E,0x8B39847C6AA6BB2C,0x23DFED045DB248A6,0xD7644D44F90D,0x2E089CF9935A4672,0x7FC8F4556BB1194,0x7AD2837DECC6176,0x1EE96BA08F355F31,0x189FFCD45A5E4ED3,0xE9BC5D7F4E0E3231,0xB675D32F43E7,0x722682B08E26249B,0x625C205CB137373C,0x773850FB6267C440,0x117CAE101635E96F,0x400FA1C9D733496D,0x43CB9098CA3E5E7C,0x23A7CFBCA4A8,0x38C1D813D4A5DC6B,0x3CBFA38771160F12,0xB12ED79654978E0C,0x5A8D48941C7B7B9E,0xDB2E3C237A13F7B1,0x6DB25EFC590A5910,0x82220A665531,0xA3AA4256AD780BA4,0x10209F9AF6776A40,0xE22D306BE4835C4A,0x842EF921B4B9BB51,0xC0A670380ACB29E4,0x7157E1F87E752C2A,0x2068E149E54C0,0x6CDE861409C8C890,0x14FACB12CB84AC04,0xAC4045A116D2BE7D,0xEDB99688BBC3B9D3,0x53C6C6365329DE0E,0x5368F48EC3966CFE,0x39378A557AE,0x2799F97DF597D592,0x49C07A3BB43ACA35,0xADE8D932A952DED5,0xDE1624F6D647D759,0x4DD12913D2175293,0x84239BF5DA2FBC54,0x185717BC7D9CF,0xF17073C74E5F367,0x75D5B957D5FA422F,0xF6A1161B2393EE19,0xE45E2F3F23312D25,0x669931B8C46F1548,0x6AE817EA5D47ABE7,0x9E66081536A0,0xAE6F0B8EC93A5EFA,0x4E8BE6453050A7F,0x7AF891413407F3E0,0xFB92AB099949633A,0xEB8293FC1015EA5A,0x3EC8EB2A30A403CD,0x1EFF3BF3FEB1D,0x6C1384F34C25765F,0x98448695EB511E99,0x23E92E9E05006990,0xA3912E8922FC4E24,0xEA4AA2E4CB19C120,0x17232578D35C569C,0x192BB46F70239,0x64CC26D0FA313211,0x9B9BA33A5D033059,0x184062EAB4B72582,0x3679E17D8C6EAD22,0x3591B6809D2D5AE5,0x5BA93B62EFA11615,0xA6EBC90BF042,0x75E13850F9DFEF4D,0xEC3B071747D5086D,0x4FA68D20F6918B59,0x90814F459C92E08A,0x410E8ACA808CA92F,0x2F345B1ABF4FEF55,0x31F65E0FBA6E,0x56AD002F898AA856,0x47CE4C8146BA86B1,0x82C088F0FA423455,0x1C49290CCEC6D070,0x5C2655A64BE2D5AE,0x36F041AF16954C0E,0x12548E36E4FD1,0xD370B4509C649F77,0x25A24D9C15ED432F,0xD324EBCAFCA09E3,0x23E99B1D66E4628D,0x82D2E73F726BA270,0xDDB6F62C7BDDC930,0x10DDF32FD84CE,0xDF0C37C30DA02B6E,0x98E314C539EF301E,0xADEE4C61BD1CF84A,0xFC991C6121ACBB53,0x88AFF9F166E949D0,0xD58BA8FE0910B487,0x1136C6E818864,0x50E4F4B98821D4D1,0xB575CB814F310365,0x2ADC07558EC10159,0xA6A89B5061EE63C5,0xABE4C0C41FFEF67F,0x2AE3D2951337E71C,0xF6050E9D52F4,0x513998B93FB7B8F4,0xF6BF005E2B8A1C25,0xFA82E07DEE27C541,0x887FC0B87FD94250,0xDF1F205D4C14A304,0x54C72C8DEF7202BF,0x12F43D5E5181D,0x7EEDCE6A8D5DE95D,0xF5FA1324371EE79C,0x574EE6A0A004BE6A,0x60A8FF27DB44BFD2,0x7669530B4BBB843F,0x5BBA13842841ECB6,0xA0936330E281,0x57D384A28AD152CA,0x3ABD779394FE3448,0xDA76E8F3DE0B4037,0x4BDC0627FC8CCB6B,0x88E2E791F5210CC9,0x983FF1E7F337E5CD,0x1367FA28F1C14,0xB2F25861353EE767,0x821513E0D5F05C43,0x937AB8406890A79B,0x90768C9385F9C289,0xDF8CF5E03D458B7C,0x286FF32582442D5E,0x3AF3D28A71CA,0x2D5AC72A28422BD6,0xA4C1F2E50D20F228,0x14860E038C5C201B,0x806E53838B9577B1,0xB64BB187DB6A7D32,0x2760A99AE13C7432,0xFCD4031A1A36,0x3CFB605CE4A17332,0xAAEA040B4B405D5D,0x878034393AB5BFCB,0x58A78023319CB60,0x7A59CBFDF4CBDE89,0xCBF4F757C7001F7A,0x199287F695931,0xE3354273A95E742F,0x72A24FE402EEE0D8,0x5CBFFD0C1E600473,0x46CA38E9B3DAEB14,0xE14C54A93AA29A51,0x25FC090248E113A7,0x116C76B8D8C5A,0x8FFEDCBE1105DDB3,0xC95EA9E01F0463A4,0x4CC4E73BB4042D82,0x7E414D4A282F207A,0xD2F440795E72F08A,0xFEE339E71F605281,0x1C57EE652C1CE,0x5ACEA5059F0950BD,0x90A8B09E52F4971A,0x59805C135A6052DF,0x38E8609B40E36F82,0xE0706C600BBF0621,0x8E5F37EC4BB379D,0x194853E1B7C61,0xFEAB9992EA633ECC,0x79532EC650DD929E,0xFA9DC95CCE02922E,0x75ACD5118F98DD87,0xB77FF15F827B5980,0xE860085573D4738E,0xEA5C6CF82A4,0x3355B17CF772812E,0xA7D3FD2709D03A4C,0xA2DB950491509D06,0xB40DA33192A50A9D,0x66EBFF39C3A9DA2B,0xEFD0613FDE56A09B,0x2183AC6C921CC,0xBC31759460FEEC2B,0x34F66F615176310A,0x568703F737BE1B08,0x178950B77374354A,0x1ECD99422103E64B,0x3C3641CABB5FD1F3,0xAD35C5A69ED5,0x4B92C984A3361EA4,0x3BB460616BD402D7,0x83740FCCB35EFB85,0xECE0BF66C6349E56,0x45C583D7E4787BEC,0x93DC001AC9B3041F,0x1FD22E6A24FCB,0x7F35D5669F5EA85F,0x64356B6BB6857660,0x5E25CE0D9121E63C,0x60552CFDCB048A40,0xC11F94AC55C335C3,0x55D3F4C025659DD5,0x1B8F01380775F,0x61A1350E812C742F,0xE7A68B2BF960139,0xC0CACC1ED26874EF,0xF2C6781DC082AA5C,0xBFDC165B8789D248,0x851058D7009C8A37,0x1CEC589E05125,0x450C732825D39F42,0x6DA82924CDDA3398,0x92533B055624D79D,0x97540199CF72E85F,0xC5CFBCCE9E3D8665,0x3741EC05F2B37C8D,0x110AC4C8AC67D,0xA7C03B7A794A2C0,0x3900722857C30881,0xA8C441EF2E641D12,0x753C800DA8B95AAE,0x2E33B7FB49ED6FE2,0xEA829A0C10C83864,0xCFA2133FD629,0x6DB607BF53970F31,0xBC2FC39D8C8BB594,0x123DBBD1B0A48FE0,0x68B9F03C7C0D2E6,0x587ADEDD473A2E65,0x6D3FA7B18FDEFE8A,0x18592929B8E28,0x378AD36708A1B4A,0xA06A533FD430F3F6,0x80CC5F1DE9304DAE,0x932F25E295CD7C68,0xBD82D3F91212C91,0xDF480638B3006AC2,0x85A9C36EF42B,0x1ED7C0957C3538E5,0x78BA6FF2201FB760,0x481BC0C01367CCF9,0xB865DAECCC43959C,0x77F1F7806DC8C70F,0x1C2EC92AE51CEAED,0xA5C02B6C10BA,0xF31CC9E6FD0813E8,0x2344462F5EAF3A07,0x751319931D916906,0xAA885BC474B9245F,0x1C9C806D7D7DE4A2,0xAAA760C170A5B67F,0x58178A7C5D25,0xD5D4A678944F4E9F,0xCC01254A0ED2209E,0x89A2CA5DA9F0EAB3,0x78375858E080F17B,0xAECFFAA0EAD00949,0xA2F1068357325D3B,0x14A5FA0FED09D,0xD6C64977072BAA28,0x44B3BB43ACD8624F,0x6A0D011485A169A0,0xEA5162B8220D33C4,0x5A77B3BE17E6C173,0x6BB26282A27016D2,0x1C3752AD9AB3B,0xDE0A1934549B2B0,0xF02E56BE925E1630,0x642039BA1B07DD17,0x43AC1AFE50ECB59B,0xB7C96A8E2FAFE340,0xF1B8338A67298B8D,0xB102A3F4C0EB,0x9578F5AEA81D0456,0xACA98AC201478857,0xBF43693331F05E35,0x38162A9EA8CE96C8,0xA7D77A9D727F9644,0xB8BCBFCB96C1A022,0x12C352E40ED55,0xD6BBD20CE1C81E15,0xEC53B43C0463B2FC,0x9C4E4E29E2EE4238,0xC58788FD508558E3,0x793D47E589D42F02,0xF17E896FE3E8B436,0x211B7687797D8,0x62845FBFDD3605D6,0x9F9AB96CB199CEA0,0xFF027B962B5355EF,0xDFE590443F995C37,0x48A2C8C8C081BDB6,0x576E85E1A9492922,0x4485D2DE7492,0x7F6E5C3A7496BA14,0x655C1142DC33BF6C,0xE0C23F7A01FD12EC,0x1F69B23AD6B4995F,0xDAE79DC2BEE26ADA,0xF5A7F2CF65ED2D84,0x7047D6855A2A,0x7E85838327123996,0xFBEA6792EF9E1379,0xF750E910CA4D48E6,0x4A231D72FA241D18,0x638C1678074CD8BB,0xDAFEB076D30BEDA6,0xD2CE89C66BB1,0x670ED66A85B397CC,0x631098BFFD72911B,0x335A6D7C255174D5,0x35A13EFBCD2D2FAA,0x87A2465FF6CD1902,0xF1B9D495B489891C,0x1B00B77821658,0x6F18AF722BB30C7F,0x1B71AD600A9E9A35,0x2C3847E0BE8AE564,0x1015E7C5CFEEC10E,0x31D04C669767CD91,0x57924F67E80A428C,0x70F982C892E1,0x441AAF50A7765ADC,0xC85FFB9509936729,0x1B483388F704517D,0xD9B3181A1C1604CC,0xF77B1FA22F46E894,0x9F9DD17A3BB7C5E4,0x2227E953EC04C,0xDA9A4A4A683A9E56,0xD65D4EFA9745D31C,0x18C3B0D12319785,0xA52A2F09E88C3E12,0x7921B8F458A4AD9C,0xD2FBBE08F54B445C,0xECEFD08658B2,0xC6EC4458A5484DB8,0xBBD8DD2EFBAF67D9,0xC5731DD7EECF8430,0xFDBC56BE5E02D136,0x6252AEC9FA679E1A,0x79DCFE66A6A49FC1,0x17B0992E0EA28,0x79161446C4635D23,0xA1860B263FCF6746,0xECC9687C4B07A5F7,0xDB2260BA5106BD8D,0xEEDE0A3B79EE73A8,0x1535C455F59BDAAE,0x1A87D443D7E3,0x9F682159F576447B,0xC97C783E52FBC9A,0xE06DB304763D580B,0xF363577676C0E14E,0xDA198797E7D7CCFA,0x8B27ADD97AF00D31,0x139B2E237EBCB,0x545EB8D360A26F97,0x2EA8E39E523E1148,0xA0AC32EF0C968684,0xE3E368B616D43921,0xA99F764714D65734,0xE25D2DA2A18F9251,0x1F426851A11BC,0x1AF9CCF2CA16A3B,0xC6ACBF40B74B1B79,0x1A1AADC8E4AFD078,0xA73825A7A740B8FA,0x4ECFD80154708C14,0x9A05F2F76E39048B,0x199EDAC6297BF,0xF26CE6B3C9F32FD4,0x30EED38F8D91A2A9,0xA296F524BF913859,0x889ED41B52B989B8,0xF1CFF0B92ED0CB5A,0x30CD703206864ED6,0x190640EDCF66B,0x5374868976F20FFE,0x384627122BFED35D,0xAB3B711576FA871C,0x79461D41FB3B6DA3,0xA88C50272CE5D2F4,0x7ABA5A27D8A64CE7,0x1D69A43412569,0x3AFE70696BCBC677,0xE59BE0C5B05D8D25,0xC0B08E301B9765C9,0x9A3B377C55B138EF,0xA246597C08200679,0xAEAD737A3A2BF481,0x1415A08DFCF64,0x213AB48B00E29C07,0xBD99D3B0A4E3D108,0x72D5F5A36C3C1BCA,0xA2160210780DFD0D,0xE5C253444A62C137,0x336BBCBCE3E02F48,0x39976769AC8B,0x70208293363DB27,0xB76E699117DC4B41,0x4C242367D51CB9CB,0x1BFA0A4634F0EC83,0x264055BE553719EC,0xD633ABE9F149B2DA,0x139DE7B163FDD,0x62BFE384532FF23,0x84B01FE7AE4B064A,0xB4C24B2A805A7694,0x69FC06E4C0FB9926,0xFB86330E05CAAC3B,0x93BC96F121FB6B01,0x2E7DFD6EC296,0xF56533AD11BB02ED,0xE481719AACFC35F8,0x870A371206C32EFC,0xDB062A0447041124,0xA9B9EEEFE223052A,0x4030323A73C0BADD,0x1BE03E8172B46,0xF27871CD147DCFC,0xD47A2BC5830170C1,0xB3DE6FA5D1632FDD,0xC5FBF22AE9BD163C,0xC3B3CE5E0207A080,0xDA3822D40E59F171,0x1FF4C77FDAB5C,0xEB2CF9E92B4E8E0A,0x39B9A2FCFE6BC6C9,0xD43DD07116F81FE5,0xB109F16D0F0DC03D,0xD305CFE34D8536E,0xFFBC2E2E815671CF,0x77F9B197B6F6,0x3597147BE0A486CF,0x3DFB00F4D8A60AD5,0x23D098A22C8568AE,0x6AF1491960EF6104,0x39DED34CD7668E31,0x48CBF8DF96D33591,0x5DB3312C047D,0x915F847D99432F38,0xEB56CF680A227E54,0x3F4ECEB841F1F52,0x8F96647EA3F66659,0x93063E22D114B88A,0xE6B02B681D6D1786,0x119EC297F8DD7,0x524C8C288E278086,0xDF04C6DA4587213,0x660255D300937D3C,0xB6AE96481FB45AFF,0xA468E33EC50667F8,0xD1F973D1F424641B,0x1E1E440BD06BF,0x3078004CB2F87442,0xA4BA955F4F4B4343,0x23E926231076C8EE,0x56AE3DD996773DC6,0xEA66091504D4AFC1,0x45527FCFAD8A809,0x283185584F74,0x54D19C6803630BA8,0xB7AD1C069EF9B99C,0xA63D5752CA05A492,0xBABDC9EFA5CD01AA,0x4AD8BA7B28B04BE4,0x7EA42306B4CCD45B,0x185A8EF6A828,0x1D29779603072BCB,0x98BB0106F3C9D8E3,0xC0D167F257E375E6,0x3181C8BB9914977E,0x1832D37F1EBD500E,0x6602FE3329132F7A,0x21878A5E7D28E,0xC65BD888F99BEDD7,0x7D26C7318F3A0E7,0x9E0CA6E0434D5BE3,0x21D30A8C5BB5F9B2,0x91AD824606253D73,0xDBFB9198F674B2E3,0x740A04085FA0,0x14F9A7208C10929F,0x46F94158C3637051,0xF9F7C912B0143E06,0x8D18FBAC3B3A3FB9,0x495A0FF5B3E4A969,0x78965291F22826CE,0x149BC2A39E791,0xAFACCCC9628B0A5A,0x99211AE8671B897F,0xD5ADC5684C39F9F6,0x2B0AF838D79024B0,0x9066FC62D57A5D4A,0x1A319D46811EE49C,0x1C5E8CA970ECF,0x70E53AFAA2869878,0x729D84B0A8A88FB8,0xDA8D24C0793FDF84,0xDBFA064747430AC8,0x613550286308B4D7,0xD7B6021AEDA051F4,0x103F488AE58EC,0x9085B7210BE48927,0x3E17F4E03EE5CDD6,0xEB336FC34B4DFE05,0xE2727B1F4E2CB1AC,0xFEC489A704A10B97,0x63EAC340E55BC180,0x2054A25D35218,0x32990C07D5AD90B2,0xAE880262C4886912,0x5256D5C3FDDCA3E4,0x70CE3079DB211A56,0xEC27AFD26BCE1B6,0xA557BAE72F5DA394,0x98470924F022,0xB54CAD89D35A3C99,0x1CF69AD6368174A0,0xECE1DFC0681983F4,0x5810B4812E61B175,0xC6629BDB99D17CD1,0x59F7F24926477E61,0xF7F779F4A1B,0xCDB210BFE962D26D,0xA226D3AAF626DFD9,0x6607410A1F2EDBD7,0xAEA460E065DE1EF,0x2FBAD039AEF856B1,0x14E3BE5245D83582,0x19BA37C46BE60,0x364327560492AA2C,0xC84B059FA29E5DB1,0x2CDE4EA25E789377,0xFD44F12959BBE89B,0x7CB817DB0955C0CB,0xFD6A959BBAD2DA8E,0x180A34C77F930,0x7EA8B583A46866B5,0xCFC11F56593DD9DF,0x199A05B022A54DC6,0xE7C61FC71F29EA76,0x2ADAB8F037EFDF10,0x8177702C62D00345,0x1AF1986C9489,0xB1EBD5D81A2F4E47,0xE02151561F7C3DAF,0xA59388D3E9C53D9E,0x7DED93F982310990,0x664A13B359E282B5,0x521AE1FA2D19EC7C,0x16E9438796653,0xBFF32C1221077F76,0xDA58DEC4ED98DEFA,0x627E16ECB9686843,0x94B1302E5771C6D1,0xC32C45ED1CCDADB1,0xB9A85FBC7B24C48A,0x168292646FA4B,0xDB801166802EFC61,0xB6786BFF6227C682,0x18C184B660242CDD,0xB63C60C2970F8AAB,0xA264A0B43810B3CE,0xC3B06C0707E8AB47,0x20BF291B57C9E,0x13D38AA995F066D1,0xB42471DEC81D28E4,0x14FC13B1B335FFC7,0x5066F8967935DFAA,0xADC100AB670A6C6,0xE1DBE76A8844E6EE,0x1EE0720B328E7,0x2792E12CFA1BDAF9,0x6D6ED1ED0C1166C0,0x3F860C4703C8DCAD,0x7F0467627ADBB954,0x4CB2F34F79B31DE,0x3A39C4F25052F25F,0x8701EDBD7232,0xC36425449FE4C2C,0xC76362E89FDEC027,0x46A425758F1CC8BC,0xCCB740616F7501E7,0x6DB2B232E18E2036,0xD9F27AF67D2FEF97,0x2EC52247DEBA,0x3165E43C9EF4E28A,0x3F54531E75DC5FBD,0xB6834BF14E11EF0E,0xA3B3D9843B95EA6F,0x89DF4389AC202180,0x73785A8A70E43185,0x3022D3AC25EB,0x439043239E1823AD,0x3379189B848EAC1,0xAC83150649D53514,0x1C8B10530579AD77,0x9D9CAD7BF862CA1B,0x1A79ECF406DC0118,0x14EEB51674AC2,0x5D7C754D4AD7FFBA,0x29EE9E36557B3E25,0x89A84459244EF533,0xFA934AEA25AB6B03,0xE399D9709FD8A080,0x46B9373F348C9D12,0xFC791149256D,0xE0153A98EAFE1797,0xF0C5F04325829516,0x621B431D1958B148,0xFCFEE863C0B98076,0xEFF294DAC0C81277,0x5A8CF85DE0E74CD1,0x13008692F0DB3,0xD138C6092900F7D5,0x6CF167F3D6252D3F,0x1F38ECD3D89A4145,0x3D4D0CE679208286,0x13FA0174C16DEB38,0x4047F2D26D5F8754,0xD5E2EA545425,0x92AF256C2000E1F6,0xE9B0490F4B817FB2,0xA5CCF281548099DB,0x1A78D3E551B58732,0x4B9AD8CCBB23B839,0xDDC0FED384DED559,0x16E36E71AFC4D,0x1E593AB3913E4319,0x74CCE6911A18CA26,0x1E850CD0682DF4C6,0xC578E6468138ED08,0x184BF9CCDCB44609,0xA75F965FD47E2259,0x4E8502B50F41,0x3D21C903135A0D00,0x432DBE75A7B781C3,0xAB72FE06290507E4,0x8E874ED23C406307,0x474BF58053A709C6,0x1F0CE2843BE9E31,0x13001EEF4280E,0xDD007EE7296DE436,0xA9534C752958CACE,0x1251D48CD60E03B0,0xC157EA9B658D9461,0xB9638E2BDBF3467F,0xEFCACA4237DA0CDA,0xB5E2CFBE30B2,0x38D36B8053BCC653,0xD85BD7EFE1F32546,0x330B55E91F9A92B2,0x4F322F9BE10520A8,0x41A5EE76D9C45D7C,0x6B520E929A5E5DC3,0x1359C616D0054,0x2A45CB5ED45F7020,0x4D10FEE8E47DC291,0x17CB3ED6F7B60E82,0xF960C3D7AB24CB6,0xA612D8F6B7820208,0x55118A0B2563E3DB,0x147B3C3A0BCB8,0x4C4E62E255B1D9C4,0x7F0762813284DB52,0x3BE9A46C8288943C,0x71FD8B0EAD12878D,0x949EF0FA54D8C003,0x6581DBCFF131B9CF,0x9404B176E372,0xD2498670FEEE637A,0x2C38BD9D877D29D5,0xD4A12CC5572894F1,0x332552DBFA14302C,0xA49BF9798DDEFE4E,0xA17670BC6FD4A3E8,0x1D421F862F9DB,0x64A0FBC4CC5B148E,0x83DE2E19558BC4F0,0xA1BD604D47E07FB2,0xE5C33C89EDB983D5,0x50CEB657B781D4BF,0xEFCE25011D0CE8C3,0xDE80ABBC3BDC,0xCF3315DA9DD95176,0x1B353BE82F0ABE81,0xABC2FE39A18B8E7E,0xF6716D520C15B8D4,0xEE8A9AF5D2D66669,0xBB012036DE1E388,0x209090C2618E7,0xFA36260B659122F0,0xAE7C0A3B27334CA8,0x652C139D4C279113,0x7B1487A9062A4DB7,0x7056E71DDEB4CA2A,0x489A0AAF749271D7,0x39ABF87F7379,0xCAF39CDA9BB8D025,0xF3296314A5DF6890,0x40C4D2816003E57F,0x5222E7820878794,0x4A7ED7B6C55D9A27,0xB70D012705188579,0x1C1F9029973CF,0x5CDE3814F98CC950,0x59A6E97B748CA914,0x2A7F8417CE332B89,0x9F283932EF56D47E,0x14533E5CC2F364FC,0xD1DBF368BBAD9A7A,0xA35BCD967FBE,0x719B7DFEAEDD8444,0xC56DF8C55268BCEA,0x97501039B9862B9B,0x4D93398B9C6BC0E1,0x4A37097CD3C24744,0x3EE9BD5DD619D14F,0xE1C083488637,0xEF980C268FCD2BF4,0xF775207C2FB9209D,0x870296080E155A49,0x2B8F66E690D3D7EA,0x7A04759D0C5D250A,0x563AD45B6921BB43,0xB94B845D879,0xBB271BCE5CFD6A7,0xE99E513F3EE3BCEA,0xD3DDD265C8DAC8D5,0x6E668EF7F5E78B78,0x2661D03D07C7A0B3,0x44E4F91974384EF1,0x14BCBD26B54BA,0xD91A032CBE8C3FC0,0xFB34199A793BFC1C,0x1DD537B266C75081,0x70FEF01D6F992E5D,0x14E8C9EFDBF5EF2,0xD5404CF18A1C8179,0xF9F5F57D3EFF,0xF78235B9E46BB023,0x7A0D0BF10C323E58,0xC890BF06D98D81BF,0x65CBEAC1582E8CAA,0xAC8D9DDC98431BBF,0xE54BACA47F38E2CB,0xE54D89C0B14C,0xAC650D5AFFBBA37A,0x53D457E5636EB44C,0xC00A3AFFF4452601,0x97F7275AEA70B296,0xFA6A80DEB855E394,0xF86A5FF7AE9C7A84,0x2252853BCA147,0x111BD3479C2C2F09,0x2C55B065B7AA31C9,0xF0AB63FDD1626773,0x4CCFF5B67E5708FE,0x6212902F3E0D93F5,0x2E5A391470B31C32,0x12AC647C4617A,0xB71A498BAD4FB1A7,0x6371CC037C9031F3,0xA0779521CCB2883E,0xF9C4126D5BDED025,0xDCA010E41B13808D,0x1A123CBBA47D1E7E,0x60374E7BFC13,0xE3E490D4269BFCE7,0x758CE98C7E069AC4,0xB53F83D6254E64AF,0x477285B896925C04,0x98B6A4565C4F7AB8,0xF1125A1705D0E58,0x1052F0BE42897,0xE6446B056E856F52,0xA989FBB3AF3A6967,0x637FB13000C003AE,0x6778C2AA9291FA9C,0x36339D88CDBE2B05,0x35E0F30BD4329E6E,0x39B25E51ACD,0xB0F5879F5A6AD51A,0xF882189AAFF010F,0x5EB4753424A2E873,0xD7E96198DC29001F,0xCD267581F4508F61,0xD4A238CA8D676C66,0x61A4488CBEDB,0x6B9BC9FEFDA108AC,0x16A62C4ACCF81540,0xEBB7DB22E95B7231,0x4162EE47EBCDCCAB,0x862D5B347DB2A225,0x1525BD1ECB660771,0x98720EF290A,0xBA830E03927851BD,0xC1D69AF357362CDC,0xE4BEA80339642CD4,0x6F83869037EEF91E,0x76A7A2A92BB8503F,0xEE3D3A9EB1DF6C80,0x49AF730BDCC9,0x11CD502D33BBD4D6,0x56D69E4D9D402603,0xE67F0E1788EF06CC,0x622B8E5586880B07,0xFAB293679FB11521,0x40530623F2630E5E,0x1CCAF3DB73EE,0xC970370C7E22CE1A,0x48D3126E3B234889,0x7E76A161C71117E9,0x47A43571753D5D11,0x4D5F937940A2E771,0x1CDD4AAEE6A894B0,0x1FD0CD62C516B,0xCB1E412181A981F3,0x39375CCA89D4BB1,0x25EC0A191489D9B5,0x26675D96E7646790,0x8199B7D472C8BF1C,0xB4392B4201421B1E,0x139BB646A881C,0x314F30B470FE3F0D,0x338BBFDDE03DF2CD,0x9074C6CAA8B38E31,0xA1D8B24E63884E7A,0x69D0659C12603622,0xF88EE87B9408A359,0x1F07F51F2F0E3,0xD9C8FEC6A3F08986,0xED62FE3466666532,0xD489BC7570CDC0F4,0xB4C576AC1DFC0F12,0xABA97F744BD66893,0x3119EDEF1C555547,0x1AD80E5062B9F,0xF1410B36D90C42E6,0xF1CA12750FE91BB5,0x86923CB542F47EE8,0x1BF8CAA57DC0331F,0xF4A42B21A48E030C,0x2A96F22E854F5D12,0x158C7B0120F70,0x22C61711B71545E9,0x58F4A0FC3836BF2B,0x739F1DC00FDEB27,0xDBAFC41CAB11A61F,0xB38DAD8D3BC143A1,0xE335AF36A03ED538,0xB278932FB062,0x7A03CD76ABDCA45F,0x660CBA9822180053,0x6013ED8CDD639CD6,0xD54932B7E5253459,0xACF6DB95730A98E0,0xB76899251C69106B,0x1B676903D0D21,0xAB9D67BB28678B32,0xB1006443FC1776AE,0x96CB331CE40306D,0x89C780ED7109323,0xB80E75366C299FED,0xA153690F255D31EB,0x1DA01EB5EBB0C,0x407A1EE9CB63E0CD,0x1900ACA836590409,0xE7317182154DF3DE,0x10D13D02A93D0162,0x56869C87AB10A333,0xB6B57F2AA55D730F,0x223EE6CAA09BF,0x74EEF204797A8F9A,0x8BA811290B57D7D1,0x2BC288C7E0F5C1BC,0x553D9E8B56F23812,0x51AD3DC6D32D3F25,0x3DA5AFE68C218CCE,0x16B19BD4C7F90,0x2DE9D998EFA8271A,0x2FD7C3D557AE3817,0x7643654D1087B46F,0x2B6FD3F08ACB4B5A,0x55086A459F9C5814,0x69D2EB0F7C8683D6,0xC9233FD4EC,0x53A9E21DAB8757E8,0xF0CC331BC5932303,0x416DC7B691236D59,0x87E23D7314B86C6,0x11D4E8FE8454EC1C,0x5E53AD08B571C6EC,0x1F81EDD57BBAB,0x9AD8980E1941A000,0x7ACCD6BDE9C9FAA,0x973C4088280E3789,0x7775CAC519E9E282,0x3A827A156914D66F,0x8452AD8BB8133E6B,0x2FA57562139,0xB43CE5993D462E6A,0x7D7B472983403C58,0xAE4172DAAFA36F64,0x97EA72401CC730D2,0xDB24C8579B1CB3FE,0xCDBB11F41088C298,0xFA85EF29E0C3,0x20EB1F6A9F75249D,0x5E51810A76D82731,0xDEE25145CCC2A89B,0xAFC9E1E784078AD2,0x4715EDA1EA8D3046,0xE28B0989292CAA49,0xDAF0C2C394FE,0x66BBB3AEEC191F5A,0x3F577CE42DCC6BD7,0xF9A2555F007884B6,0xFEDCC3441943011B,0x2F4E5C339CA22480,0xBE711B951CAB347D,0x7C7C1EAC4BE6,0x6C2816762D25D19A,0x3351AEED1B7C39B5,0x3C430DCB2C6FB19F,0xA92961C495ADBDF7,0x9E155A5A1F85AF92,0xD7905CB8D64DF350,0x18F88F7BC284E,0x91459AA75335EBD5,0xF4CC867AA1DFA218,0x5800E16097D30B93,0x6A93DBCD8DB14D79,0x23B5BE2395DE2095,0xEBB445DC39824CE2,0xB12F965CFAAC,0x59D5D937A555132E,0xD4CD7AA1D3137769,0xFDA68F1203A60472,0x615480DB66A3138C,0xE761526C2B2C0802,0xD16997A470399790,0xE6C8FB813794,0x8B00E9A73C402414,0x52B5615CDB18D204,0xC6640AC763205E01,0xDBA6E3CDA161DA0B,0xF2C39B9AC73132BE,0xA6EAD438BA2513AD,0x18644360FDE28,0xE471196316987C52,0x256FBA204E605154,0xDE545757769A68C1,0x79AA090DCDE27BD5,0x7A679F8B1CF42195,0x9FDF7949981D292C,0x172F6FFCA138E,0x8E8BAA1C588456D3,0xB1179BEDA74CACAF,0x8FFEA7D98003A01B,0x963E4A555649F77A,0xA7C7603370BE579D,0xAF32A161E44658F2,0x29AE42839E98,0xE04BA3A855BF3775,0xAE48D93CC0D78BD1,0xAC9FC2FCC7BB7BB1,0x4474A2D9648C0663,0x8E6BB54CA9608D4,0xA638A5B521CDE7D3,0x15BB61EC1452D,0xF66A2A390432740D,0x24041B587EAAD54D,0xB2ACD7E62A729630,0x4645DF23E43B1A97,0x71A8886D23D5BDA,0x7DCACD2685A0CD99,0x54944A5C471D,0x3EB591EED4C38DBD,0xBE896899E2FF29F0,0x2B9285F034386121,0xB80B784C644DC8C7,0x709D74AA163C61B8,0x8E93A60B109CFB3D,0x143836877A9AA,0xFF4B4D8C06436544,0x67C5A91E807BB0B8,0x7E441C2B09E60C0C,0x21D4193F9D1E7CE5,0xFCAD5BD42BA81717,0xB9A06BBAA4B175F3,0x161AEBC05B405,0x8A6D6B4C72A4474A,0x601E49CD19BC56A3,0x5F935BD26B1321DC,0x107A5863E0B3E610,0xA5BDBE085EC166C0,0x145AA9B6B368F30F,0x9F8B2103AF4E,0x35FDC28021170FB3,0x4E40A386F9CEC5E0,0xE5A7B13F888BC18A,0x9240A82DF72AF9B3,0x4B78ECDE0B9C64BD,0xC4273550D867CEDB,0x22FD7BF3F36D7,0xD14ADFBAB0ADE782,0x6805D009BDF4D45,0x95E66FFC9C36083B,0x451F3597A8DB5BEE,0x79036FFC5D08913D,0x4EC5E1CED6EE5D3C,0x3C9AD96FF78C,0xCFC620C4C77DE808,0xD24AA92E23C4353F,0x720EADA550F5CCA9,0x778569A2A42C8373,0x5EB093E2BD539330,0xD11EC11D95FD2BD1,0x183CAB0BF1833,0x7AC6AEBE8E274CB,0xB62D8A7584D0F2BF,0x8B9EDC49325F89CF,0xE0B92650A064E221,0x603DAA5B3C0D4A55,0x8C7EA2473C230061,0x21812F34FBA85,0xD2820EED2D214F0D,0x4ED249FC2FC3D5E3,0xA6174CB7884AC92,0xA70749FA316D6DAF,0x882058EDA4BB840C,0x709B34EF639C582F,0xC5B991C8C3BF,0xC7C939ACD02D06EA,0xE4BD99D8162E82E5,0x618AC96883D5674C,0xB8C1D815DBD9E789,0x19F33D0F4BB492AD,0xFAF6D9B34140D642,0xB181923289BA,0x19E0408820E5020C,0x508FD352D19F94B7,0x1802203C28999415,0xEAC5EF34258617D9,0xA53E430B28003C5F,0xE40A87D53489C62B,0xE97E2F0D9230,0x689DE2D325BD90A0,0x82D9462CBB120F0B,0xB8288FCDE5A417BB,0xD01CD9A89D95C49B,0x7230D01B545E0226,0xA771CC006784334C,0x74B54AD065B,0x3676198D6C9EA7E9,0x58F87DFA4D614823,0x2DF809FFDE284D4C,0xB2381EDF3AD632B5,0xA9BA06D0DBFC62C7,0x56058EC51BFD727E,0x10AC7B16AC66,0xF2AD3383A52FC68F,0x92D3CEEF037E820C,0x5CB1AD96AE45967C,0xDF459B66331088A9,0xB64D9D41774724D,0xAB0D979B88C1BC29,0xB0532EF5B463,0x3F733ED37D37F919,0xC1228B9C2996F61D,0xFEB083478205F499,0x3BC4DE02434B4A5A,0x39CFBD2A923697F1,0xB19D16C5664267F5,0x232F5AC98FBEF,0x6996A29E45B86620,0xD67F1DFE3CB1C4D5,0x2B03EB293D00E677,0xD4891DB30E100F65,0x6034B75ABC204E1D,0xF6D4A79997DCD11E,0x427662E4D65A,0xF70D1F83046A9AAC,0x9F0F144384273584,0x312A09FE9A5A81D3,0x76734D0D3965F1B1,0xA373D36001C626C5,0x435BC8EB18315747,0x1D42D5FAED57B,0x68C5D308E692B551,0x3F1028AB40C1E7E3,0xFEDB13CCB50514C,0x5AD9BE12FEA70FF3,0xDD86F592FFB26EFE,0x3CE47FF60E3F66AA,0x105F527B0202,0x978AD4596DED992A,0x222AC0E1A6944BB7,0x91A2FC1F4FEDBB5D,0xB30539561F08A7B3,0xF8DABE0E8F5D9694,0xDF57E3681D3563D4,0x8A19AB5B20A0,0x8517BCAA31C78014,0x39E70400CFBC6236,0x5412BA9B4497AA51,0x831AFE58CAC05FD5,0xA6F4EB4A9C89FCB4,0x321A3C6D9DAA7E90,0x113F019228FA0,0x5A96D5BC11424398,0xF9740DF3FDE17F26,0x177611017C68CB0F,0xD3FAB77F513213CC,0x2D89C8EBEB6B981E,0xC84E0E12F7B1C3B7,0x1F409BEE37C79,0xA16DD045F01598BA,0x1B1C47A3FD7A5AEA,0x7EA0800342314C1F,0x805EDCBC4F7B379F,0x48077F966D0ED447,0x1A1B7123C6AC1F89,0x202D202F47F6A,0xA26D12DACA81ECAF,0x8C42F40677D86BE1,0x934AFEA3E509DAFE,0x98672E134C4CE323,0xBBF354DF0A96D5DC,0x9192634BB41FC7F1,0x1E4D253F11BA2,0xDBBF5472CDC573B7,0xD05F79C625764DCF,0x7BAAFFE5C376B184,0x6F31174697C67EF5,0xD415F0BE701692EB,0x5FC75498660A66D2,0x6E4C8DA6C39,0xE3A41CFBE98187BD,0x5F3DF54D46BD71AE,0x7C42BF730B0E7F56,0xEB10E5DD280E3E23,0xB99A27175BE3E2E4,0xC13955C8075B8769,0x8C1AC288D7BC,0x7F44A99726BCE788,0xF16016A706E11CB7,0x71543F576565BA9B,0x13FF661C5E248E7C,0x28B8CB5A7845F0C8,0x599280A3236C95AD,0x1834B6DB5CA8C,0x92CE6C03263E1AF1,0xB793B45B20B635A,0x5768FFE68A242EB0,0x2E8F6437BB7FE37E,0xE498D0C4FA9B873E,0x71637DDF47B5F7AF,0x155A84114E7B0,0xCB3D700C2C70B529,0xD909FA6BA5A2EBD8,0xD70BFB4B44B1809F,0xCD545EF71F01C1AC,0xC5453DB2E14FF047,0x77D2DE789C1C35D8,0x1692BB2BCEB2A,0xA8C0D3FBE5286C63,0xAD995CA0750F828E,0x6F04FFC73F09627C,0x8106DC516BA7D8B1,0x925A19FABE5E7D21,0x473680B57169ACFD,0x1DD4BF88D4F61,0xC747FD91B58C38,0x1D90763306470357,0x690DBD5825238C87,0xA66EC28FD37B2260,0x1C594102CD0594B1,0xE19197ECB40A500B,0x18D5F7C345BA0,0x322169D04839E559,0xE08EC42965C08575,0x3C541D90AAFA89BA,0xB489CD09421D79DE,0xD487813FDB8B10D5,0x7B99C718ED1A60FB,0xA391607BD417,0x46B01FE0C12C4439,0xD68CB66F23BC6052,0x62DE66ACE0DBF298,0x9034E2D0B1639E92,0x78D57510EE99AFCE,0x41FF377E391394D,0xAD5569D73086,0x74E5C68FF8D409C,0xA85A44A437338BC9,0xC11205338858DBDB,0x4705292DA0B7AA1E,0x1056B9429E7D21C3,0x3107824D7AE9182F,0x1BCF327FD1D24,0xCBD743117FBA3BA7,0x7F1275F62774FCFC,0xD799CAA05AA7EDD3,0x611636E61E49D45F,0x791AED983672965A,0xAEC985C7D8EB2C76,0x1FE9D5D7F33C6,0x9ECBF2ACEF9D53AF,0x92F2A50B87DE7B28,0x981DF92CDB1DA2BD,0x7340CA5CC1C95A8B,0xF7A3402469AB2476,0xDAC83BC2A720424E,0x140F93F5F7C8F,0xCEF9534E595D5924,0xD4280A97A21CD844,0xBE4BA8AE7442B8CF,0x35784AFB46A3F8F2,0xBA491E8A2D1FB157,0xFAE4727EC8DAB1C6,0x12AB84182712B,0xD940008B60A7B5D1,0x8E66F87650CA8B07,0xF177480A4AC38AB4,0x15A777FDC1F34ADD,0x3437FF7C45114797,0x448EF6B10949A227,0xAC98EF724C0F,0x2335A28843BB0C8C,0xC70FA0D8F35C726A,0xD318CAB7099B3171,0xD4A8C264021CC7AC,0xFFF84BBAAEA931BF,0x1D6CA1FE80C3EE41,0x1F61BEE9B9D3B,0xCA6FC2C9276E6718,0x2533F9B4F77F856F,0x53B0F548E4DE514F,0x2B0F3EF23DEBEFDC,0x782019AC1CF09276,0x840A03434FDB1367,0x7F54FF35A5FE,0x4429EAA13608ED6C,0x9D813919C2CFB8B9,0xE61BEC5E900E1554,0x9CAF2AFB92512C07,0xD3D006E56F8F5A56,0x94F86B135AC9AACE,0x101B8CAC6313,0x9BA66377710EC368,0x51F467ED9D218A89,0xB748489D9EB1D88A,0xBB2CF0397FC1C669,0x7CA05263C36C8E22,0xB253D89ECB207719,0x4B9FA67F9002,0x5B67A00BCA672788,0xAD9DA18A9ED20D4F,0xE6A035AFCB5E6F41,0x97FE873DDCC9DCBF,0xE31F3EDD1E238225,0x5FCCE7D3F41B4DD6,0x162C82BA5FB24,0xD1317F2479FA3F7F,0xBBC4F7A03D572A6D,0xDD334B07F5A1590D,0x352987AB2EBBAD8C,0x690BC7235FF00978,0x297655F890C05E1C,0x3E7DBCC10A98,0x7952158FA4ABC4D,0xE651DE057D882E42,0x31645885A010B122,0x18C0AD07F7AF84ED,0x5598F85A8AF5A79F,0x7FA6A9ED2F7B67E6,0x3B385C69B9B9,0x22792FF02465707C,0xAAA24A5CCA38773B,0x4EED2F07DF1BEBEE,0xAA29EFC0680222C1,0x45D3E8A4CAB935EC,0x749AE2F6D69D5DD9,0x1976700A8DA2,0xC4ED848B79F74FD6,0xC50843D1D5BC73CE,0x8906D6BC82629C06,0xA49992374B8CB022,0x5B7B2B372A5E2C08,0xBF3C71A4BD7D5204,0xFD220BEA7675,0x4247CF39651D1F12,0xC9B1EB5AE6B49D77,0x3A89ED8F4911DF70,0xF6FEDB82E4A49933,0x93F61F7DAA71DFC7,0xE5FDB11C5E28E92F,0x151FF50433B17,0x780986658F546AF7,0xAC27E5B89E641E82,0xD5F718C4D22B3B61,0xCF55EF2F46804FBD,0x4161753260E0AFAC,0xCBBA21419F318D8,0x7D15494B896E,0x3F8493E7A8F2E8E2,0x5CEA906E421BC420,0x9C579F75B48DAFA5,0x8760E85249544C26,0xD23F02B127322F39,0x7CA6685B2FE74A3E,0xEE302FD78DA0,0xC8CFD2B6DD5AB2C9,0xCD73DC2BD85EC68D,0xF77296B8567E16A2,0xABBA143B17B366EF,0x8AA949A354A36740,0x55BCC2785783E1E5,0x621B4E85156A,0x69B0EA552F7A490B,0x8F6F92D627E7A83C,0x9773A9D7AC893212,0xE79D9369EEACCFA1,0xFADAC84F31D562E1,0xEE15E2A22B3AEC5E,0xD84479DD30F8,0xB2483AD51EAF1DF6,0x74D0ADACD7F65791,0xCBD4DD5C8B9A5638,0xF9B74BCFAF318B66,0xEB1A7BD7103047B5,0xFB8B2C26EB526468,0x109A878151FBE,0xD5F8930669741E27,0xD42996CA09054D80,0x9EFA220F69426557,0x58413140F716ED1F,0xF7FD166E629E8B14,0x372BB27ADECD9FAF,0x696FBB68C776,0x2DB515030C3277DB,0xAF9305AE3D126152,0x1205F01198376E96,0xD5594B3F86F6404A,0x7618F977A5923244,0x40F4B1D315D06EAA,0xA7D77F5FBF9,0x4BF7334FD26020A1,0x6835153D9B52AB89,0xF14F41B2C8F47F34,0x3B63E8B8416AB58,0x53C8D42042DF1C72,0x50B0176CF3551B9E,0x1F6C97A0F8CED,0x44E7170BE981A33,0xEDB0B5DE43615BFB,0xB5BD82049CBCE3F,0xE5E3F3B2F5DC2456,0x59F2A0F85621618D,0x4CF956AF71E16905,0x230C5334E2205,0xFAED045AA7A91A18,0x98F038035F5FD5C4,0x59DA72477DD61AB6,0x711CE8D75E5F57D1,0x31B98573CE21ECCA,0x54D18BD9EBB00491,0xF704A10205CA,0xDF3E4441C7BBD91E,0xAA427987A3C792AB,0x2981789041E39A63,0xABAE04114188C79B,0xBB48FCB317A706A8,0x57AE6CBEA8A98E21,0x45AA45F4C2B2,0x6E9329AE6A18E91A,0xB82A6D227C16B8E1,0xA5C3DDD3C394500C,0xBE5254564619BD76,0xFCDBDC7B060EB03,0xFAAC80075286A1FE,0x7B880066AF7C,0x682E25F0690F9ECE,0xFAAB97BD78648CD9,0xDAF232DA79F448BC,0xBC9CFF3C12FE75F3,0x97239B34E3C1386F,0xF7F4AF4FEB6D9633,0x1C6343CAE0CB7,0x2BD0432CE6C07663,0x4AEDE5B2621F2B28,0xA5EA203D3EAEE18D,0xC670B44E970256BD,0x251A66A4958CC3E5,0xBB028203BC60F71A,0x1998924BFFD8E,0xD25BF0C1E545EE92,0x7D3B8DB6FDCC1F3B,0x68A46FC7F4834F,0x17CABBF9647E2908,0x1852EB038B34A6BC,0xCFB2DC089689E4F1,0x1C3C2309B23C0,0x5919AF22BBDB60BF,0x30785305EAD1A9A4,0x56FE98DAFDF4B974,0xF779B82352EE7393,0xAB3C32D5A8E1FC62,0x833E6D3B7BADEBD8,0xDEE17FA81851,0x9850295AAFECF554,0xB42A40D63FAE01B5,0x5F0A866010FC00A3,0x9B714F12E6AC3C2B,0xABD959078C77AA75,0x722DC6351D15EF1A,0x15FAEF15F485A,0xC0F8B1E9D27D5F44,0xE2407DFB93FA9500,0xDB4E11245994F204,0x708AA2C6C4509AC7,0x89E62248CFB5BDB2,0xDAD9780F8C8BE912,0x1B0DC22F57F80,0x4CF5EC00622DDD4C,0x1368F34E37A46943,0xCE832E7E47C5ED70,0xB06A53BDE05B30BC,0x258349F3D0836501,0x39DA7CE0229638FE,0xD59EDEA62322,0xDB940C74C6D185CE,0xAA0F38610C1BA650,0xF8A851294622A505,0xE42195BF1539F7B8,0xD2B84E9AE4825504,0xA3BE324F1EE22472,0x229B099A97468,0x383D60ABB6B4764A,0x2F3773BF67CC51B7,0x79D231B65A3F4291,0xF131FDEF09803AEA,0x122FCA1BBA2F3541,0xB59E1E2DE70D7FC4,0x7DC5C4FD9CD8,0xF74EB1A87B3986FE,0x72EA78AF21313414,0x2D1B614D7EF4CD44,0xE7C306C10555B9ED,0x589223CCB267A1DB,0x624E22F421EF20CA,0x7436C499F199,0x635FA45713CC9146,0x8690AE1DF2BC66AC,0x596A298A6C3171EF,0x6F1B60D2D8E52100,0xD464C1B44FAEFD87,0xA13E2FBF7D88DBF9,0xC070B5E5F2F0,0x871AC5E3E2CEC727,0xF883050E5618CDEF,0xC34CE77987193D28,0xC72258569B80A9B7,0x879C1340E51BACD7,0x93EFACCFB1CD79A0,0x139FFADFBE3D9,0x82DA4A89F7D5B908,0x7375C55FC1531025,0x19656AE4BBAE5B08,0x3F2ADDB299A56F63,0xA7E49EDBBACF215F,0x654AAACDB7146887,0x20AC88FC283E3,0xC85DA8FE176D305E,0x77CB6D84DF0BFF3F,0xC4011ADEE8175A08,0xE9AA3A36810E5D4D,0x7EA23F0714752048,0xCFAEA8FBADC805A4,0xEEE88C8B04C3,0x4253B0E89882750,0x18B52DAB37DDCA7C,0x73138C99629DD117,0x34166A5C01FEB3D8,0x66377950B22A2872,0x325E011BB4D01C71,0x127EA378FC78E,0xAA6977B5B9EA730E,0x65304D375FD8D7AE,0x807191B726873FB9,0x8B12F68C809247A6,0xF03DDC4833F2BE30,0xE527F7615178EBD1,0x21E622C1D6090,0x55A7129ADA77F149,0xFC6F99A7AE0BB0E9,0xB3AE905BD0BD6C2E,0x6ED5F6BC5340B4F4,0xE919EF90D9D95DA,0x3E9B26FC4F615436,0x1B76368C5B612,0x3630A7D1AC02F244,0x6610C6DAC5431669,0x9A640D8B5E5B048D,0x40202A4FD5D78B00,0xF1E7DE7C0013DC0A,0x8140AAE3EFADC4EF,0xADC5A1215342,0x54445960FF5AAB75,0x48EB7212BE9CA9E2,0xB3735DE56593D725,0xB9DB0678FAFA6DE7,0xAABDB1564F6CEE7B,0xF3DBC01AE07A9FC5,0x1DAF2C3A89724,0xE86D050B50BC6955,0x8673D6B5A882E00,0x751EBE97359B7F35,0xD83437A5CD119339,0x52A581A3B86CF2A5,0x29F4D58CD410F170,0x49AAA15D26AF,0x2D60E27C2DF331D5,0x395E70DD664A32BD,0x18FEB032C47D1256,0x8A9A077D966A66BB,0xA29AF608B2FB02F0,0x8FF8DB51B7F5CA18,0x4CDE342ED549,0x952FFD5C832669EF,0xCF774D8D4DD033F0,0xB9671CE50468DCA2,0xAE16FA72FE3CD08B,0x4DD9F593067ABCDD,0x46BD5905098C810F,0x7D455308F204,0x76D3F219E6169BC2,0xF71CB88D26350C66,0xC8BA0C039EBC659F,0x735985E8CA00D290,0xE37D9DA2EA561A43,0x1353EB2145264630,0x1B463BF18521E,0xF064725EED9A7087,0x40B438DA6051DB29,0x13D2491FBE3330B6,0x8E52BA1398C2D695,0x37FC499F4ADB4C8E,0x248FF72F27749CA3,0x14E0D62EDD309,0x63BE3A412B5D12,0x601BB9545DA86433,0xD5307F699D6453F,0x8F97813A4D4E5564,0x88D4B75390B174D3,0x6F2564C2063A89FA,0x8A821FA61FD1,0x683B632153C6C3A7,0xE8F0ABA49115275F,0x595BD1419E2A49C3,0x9719D2E6DC959FF3,0xCB4A3748D3A99745,0x82BDF0347CEFA65B,0x17A4AA693DB19,0xBF04C478FA4D76B0,0x7BFE551C27F4BAE5,0x3047865050BA8C21,0x3CDF6868389D486C,0x58E83263E14B7F12,0x7A7B95564DAEEBC4,0xA8E065838B98,0xEB8BFA92F6C564A4,0x7DB0032AB4B8AF13,0xEF59463AB5E388DB,0x6AFBC48DBF953258,0xA8A5312137F9E3F,0x491F7957B54F5F9D,0x9410C6FC5BFC,0xF7CB1062873FA5C5,0x17A17DEEF45B0A2A,0x4B42CE552FA07F5C,0x223BAC106B69F336,0x15B1DA0EBD185DEB,0xEB18832D0B385D98,0xF084DE286BF3,0xA52AEFA2A801D8A9,0xD2258FC27C31253A,0xA91977CD27AB51BB,0x15C9577E67FA623C,0x6F8561270F3A108F,0xB1F40B21BFB57BD0,0x1C923394909A9,0xDE6D1170F68D1753,0x62DB796FF24E5A84,0x860500D0FE2C57D5,0x371435874B5E5FC2,0x640E5835580DBDB3,0xEC8EAE76E0F1D9AC,0x141275DB3F6A2,0x20D47A2CF5B59F6F,0x7513D8ED9F485F51,0xB2B71D681339714B,0x4BF615D642C1D7A9,0xE55C671DAFF0D0DC,0xF3D46F1E942F63E1,0x111936874693B,0x7A1FEADE41F4FBC8,0x1F307B96304A40D0,0x2C7026C9BB216EC5,0x18ED4521AB8ADE09,0x599906A1E8B64EC4,0x4430B68075753ABD,0x13FF2B73D7A96,0xE81CAC44BE18B72F,0x51B7B65FD2A4D846,0xC0294A617AD87EA5,0xF6D5ADCD8A996E7,0x2C4E13821EAD2A59,0x5325F984382063F7,0x14DB8660B0167,0x8D1D825A5D3D866D,0xD2520326848CBEEA,0x555DFFD75ED4FD37,0x498ED1700DBDB0B8,0xDC06E2B0B57D1B06,0xBEBB224B2FB975BD,0xC0A4DD8A8558,0x66FBE984C2C6A161,0x7A91B3C3BD398A65,0xA96925CA957813A4,0x1D8E769298672893,0xC10CE8BF1C5AE52A,0x4A8A990D7BDDB92D,0x63CAB50A4B7,0x277486519BFDFE8A,0x93E0A713168F865,0x212D6E1484C77E5A,0x233750831FBDB32E,0x2A74B93344E0D76F,0xD46B4D5755FB0AA6,0x2D1133C6821,0xFD017B4D00351139,0xEACDA4F8CC8ACBF,0xD63A289F25A0773C,0x8271C326A55E364E,0x9AED312DCACF4139,0xB5688D216CD952D0,0x211178C25787A,0xD9405E8880A2EB44,0x5340BB31ECAC975E,0x232E8A3FF61D73DE,0xFC41EE2EDAA7E8C8,0x27E28EA70E0B2693,0xA3A66E5E34D5E070,0x242BB806D8C5,0xC10145F777952D2F,0x6252F7597346B7D0,0xBDD64769F9DFA224,0xFA8417231FAAF7FE,0xDF451C82C47F5880,0xA257E74C58F4593F,0xE1D34D3036BE,0x1B9EDF9B892F7C54,0xF1A289967B629D8,0xD452191BF073252C,0xB6D66863DB9174D6,0x627FE69E99E4325,0xFCC7292E25027917,0x7EC08A5F5DD2,0x8E32F5695FE42B61,0x80DBD0476DB4EF87,0x4DF9C3C88D2E2733,0x34F414C97BE3BD3D,0x352DD8818639CE25,0x9D7FCB8A30F5B895,0x557BEE28E965,0x24479ECBF919CCD6,0xE2E55513494ACC07,0xD72072FD8D482E26,0x5CB0250720DF1E1,0x488A1B9AEB6D667,0xE3161FB69EC12D84,0x22C50D305EE3C,0x9ED4BF50183A09A2,0x84A5AC08551E2BCF,0xD8D46452EF15EB4A,0x804CE86BA79D2680,0x8094D37367A4F659,0x65E4032164A92AC,0xE3FCF2D5DC89,0x998C4416B4CDCE74,0xCC8C7FB1A5BCE072,0xDD02D529159FC3CF,0x79243D97CBF3ED6A,0x5CADDF2C4C48687D,0xCE54ADA1651E9366,0x1702343B19A40,0x7D0260E0AE11DDA3,0x2C06C997E59B4134,0xD194E028CDAF04BF,0x484F5114D18506A8,0x65452147F4C9581F,0xCCBC443EE98BB3D,0x206A41B99E1D0,0xA081D9C4B259BB0A,0x5C6F1B2BC71245A,0x58EFC61BAF0859AD,0xF2526D1F3500137A,0x810B8EA3FAE12D72,0xE06A58A8EFD7DEC,0x1001CEC9BA0B8,0x23E93E6C953DAC43,0xF3F5CC11B613293F,0x5334FC18BD66A4F3,0xA369ECCD9FD66A3D,0x74983EBD662EFB15,0x9C0E854B8ED52E65,0xAA55672DB2AC,0x6D17DD0E36C635FA,0x3582CAA1E084AD9,0x9A29D65A79D6F70F,0xB64931C36A77496B,0xC506A54438B6DF93,0x402F3A2C67F0357A,0x14BE8B121E809,0x15B5777D80CF875,0xB430AB3B8E06CCB4,0xA30C7D371DF6ADC6,0x6B2190987A27B152,0x3C2C8AD91459EAF5,0x858B9477782AE2DB,0x11DEB0CA281C0,0x522E2D51AE951DCE,0x8B56D118B43F419F,0x3E37D7E9BB1AD1EB,0xE72D693CA698F2EF,0x72CEC13AD33E6535,0x58688A7B67245523,0x847C33634AE1,0x364000D4D4E7001,0xD1468C7A0336B225,0x269119303C8EDD45,0xE03096075F011BDF,0x89D78CA210D38B4A,0xA4640CC54DD85CE9,0x2232C24CE7099,0x2E148A6893A3377F,0x85FF66B19FC30926,0xDF8D30EA233AC9E7,0x8B68A0FFD9003CE4,0x84CC5854D5F81C7E,0x5EE273D8F3FC1D99,0x22818E157686F,0xE5DB26D183ECB3C8,0x9B25BC9377F48B19,0xF55C46ADF5B9DD58,0x2F384E23EF962CBB,0xD952CC9D9BC6EAF2,0x1DEA899A669AE29,0x128E597E73A7F,0xEAEC517F34486095,0x91E31162693384E7,0xAFB4C7CC9E5E75BC,0x7E3BD8A4C5D8CB91,0x73384C6B61630C4F,0x73A490C2A240C6E3,0x18C23A7BF5A7C,0x520D5763C4B18AB9,0x5649F3C4F58B22E9,0x726ED35C14619AEA,0x75858C5604802933,0x8EBEF6FC8514DABA,0xEAF0AF812C7C7E0E,0x30C97406B409,0x4515E53B1C86875,0xB99D8ED4395F553A,0xF8C1D45FD5BBCB32,0x72B5B3D162B8FF33,0x97EF897AE189AEBA,0xE1B3AC57274F04E4,0x6E373EED4E4C,0xE9C4A032EF0EEDC6,0x2F8556A4BA269A66,0x2DC1202BE73ED028,0xB1AB548ACC01BC2A,0x6B9C9E0CDBA03C06,0x1D41F3016B3C6A94,0x925C716F4096,0xA3D3C6887C4D3B50,0x82DD63EC6F8D6AD6,0x9C1030E36EC27891,0x82DE48DA284A6971,0x953D436E92D0B90E,0x70B48A25662DD99B,0xFE24850202D1,0xD41FF4ED3E1F980A,0xE662593FABE819A,0xF1B6B51E0D789697,0x1B455D09AA448D2B,0xA5D2BC8F31F67E32,0x26256100CEF5A41B,0x1E7A5FCF5879,0x5031776B1B9293C6,0xBA3E795A1148165D,0x59C1817B3D973F97,0x7A1E125549AA30AE,0xD01F3948B68BBA88,0xE180D22877250A09,0x1FD0E6793538E,0xA45E7CF4ABAA2CFA,0xF7B9D6BD82D103E3,0xDCC36B28CC5AA224,0x5D7F4B012A8AAB1B,0x1952D93262BAB62E,0x362604A672DF189,0x21FA318616606,0xBEB656B25DCA9C22,0x6545BEC3CA212DE6,0x669BA147AD23BD88,0x475FE8FDA073DFC1,0x7BB8001812419FB6,0x6F86C73105A770AB,0x6B94DB6FB92A,0x8526A1A1092AD16,0xEA491C6522B8EF68,0x30FAA7E486EDB08E,0x4B5D2FA02254BA40,0x3CD74AE0A1867200,0x7821567E58968EFD,0x31265A358695,0xE4F6028AFDE0CF14,0x22A334DD59B0FA21,0x855D1C7987AFA5AB,0xD4FAFAEB81AED276,0x9DA77E66B3C9FC9C,0x8D75D654240D941C,0x15253D8AAE0B9,0x34CA14BE825B9889,0x4DA052355D87540A,0xD38990A96DBFB0A7,0xE307BC0474701C33,0x82D14C0AACED3AC8,0x3BE4238B937ABE5B,0x6283016EFA74,0x66CD22B5AEB13846,0x2ADD1658BBF4022C,0x473D392F7D88583,0x183E57002020EF05,0x4996D20FB031BAB7,0xDE5B1733D945F430,0xC3767432F1E8,0x6C6FE341ECA81B95,0xFF8D1C8E58CD70E3,0xD745E2289AE73B3F,0x3D1AA99D220FC798,0xF751DCBEC73C4B5A,0x3D23402D90770566,0x19480E46DA256,0x9DB40B6E6D676311,0x864C569011F224B6,0xAD6D4E9DD1E2573E,0x344CD73B3327C72B,0xBAA477B6394CFCCF,0xB3E8A98255C473B6,0x14B4185A0A4E6,0xD0A89978C493AB56,0x66E788CAC51D7635,0xDB551D179D7AB76,0xDCCEA0E8314CF5DD,0xDAF9C9A6434D0D4D,0x345C3BD317ED429B,0x1006B8A3B38B3,0x23CAB87569C4A7DE,0xDD464417E560E457,0xE8DFA358CD1182F7,0xE741B0EE9AEB2656,0xEF71EADFF7C71672,0x987902CAA437C6A1,0x1B930088EF38C,0xC19B46143828341D,0xBCA58ABE9B58034D,0x3CAFE3696387BF25,0xFBDFF875824E3E96,0x8FB4FCB050CC464E,0x5EC3AF169BF60EFE,0x54B0A710E1D4,0x8791C5B6AA3938B7,0xC134A67484228077,0x462482CBD489D474,0xE732CC166A44B4F6,0xF00272A42EAFCA06,0x99E535FA723F4F96,0xA7CF67C7132,0x39280D345C13D4B9,0xBE5A85978FE52EA5,0x2A890212980070F3,0x94B859385073B111,0xC53D2936B5A6A5EA,0x2A7935A75668DA96,0x16B77798A40CF,0x8B6D71CC9AB823C6,0x171AEB39ECAF1773,0x972DAE6D76B2B3E4,0xDEC21A33DA07E101,0x7D102C3551D153FF,0x3F1E19F96E77AD46,0x81E348E4D5B0,0x86FF926A6FFE038E,0x39F5BF79CAA4BA03,0x607AE5BE3C94FB4D,0x4920F6AB3CBCFD6D,0x8AD06F08246B6512,0xAC96FEF1F41E5AF3,0x6367183B8884,0x66B2D71D412B8B90,0x75FB9B35A96FF364,0x4A41E7D803C1EA70,0xB442FDA50F47464A,0x95CB655B74F4EFC,0xE2762804A48B199C,0xAE8FB19F08BA,0xBBBC57318C40EE38,0x3B2F9ABA67F1715E,0x3350110AF668FEB9,0xCF66D80E08FEF3C0,0x6F75CE363116C8BD,0xA4EE479618C88353,0x2B4A5ED89A7C,0xC2115D6DD296CED6,0xAEAC2F46CDA54B3A,0xEBA88C89DAC25DDA,0x9F369123723F8A15,0xA1E020038D255BE5,0x12C286378DDCA7E6,0x13D60C41402BA,0x84F486AD6C0C821A,0x94BE225ED8C87391,0xA6461171A40E6CD9,0x6983336F2DFBB172,0x29135F9AF8180BBF,0x31AAB42A9012EDE0,0x91535C067EE0,0xCF366D9687191537,0xDA2F3C118F50411D,0x8A8EB896B37DFB35,0xCE26075F12F63CEB,0x667128E4E6924100,0x8D6C7CDEB8BBE655,0x7284D6C47B42,0xFE31E7B144FACB0D,0x51C05D4E0F9FA631,0xD475499851D677C6,0x75C4A8A6DCA30D75,0x777936E42C24FE01,0x7F7AF5EBF7B1D377,0x1C0A58C1969D6,0xB7484DC040DA8F83,0xB75ACFE34B3A7AA8,0x1956332485AE28B0,0x2B99A37A425E6421,0xE1DC5F9CF8F7044E,0x74C79C44E6E159BE,0x18C9681AB49E,0x5225BD883BED7D2D,0x20C2679D07DE313D,0x835E350129CEB477,0x297F2045416B3A55,0x29A316EF622C7E02,0x8641CBC3FE6C344B,0x77761E14B923,0xA651B079193847EC,0x23B25278AB30EAD3,0xBCBB1DB498AD6C46,0xBC3745046F374A31,0x22DAF18E411CD83D,0x3F85D330369B32B9,0x1505F17631AB8,0xFD7B718ECE04AB47,0x52386C463A1FA49,0x3D2216726C6110E8,0x320B26E3B6B03D7,0x7A797C0273085473,0x8CB4061AEAD848CD,0xE90FEBA7D12F,0x46B47C318ECDC97D,0xD322DD012F880529,0xD46B51F5A2D2AA87,0x2F7AE7F1A319B8B1,0x3876D3E943F00B2B,0xC0FEE2A49AAC0C16,0x18D8E6CC1C0DC,0xE5D4FB78856DC1FB,0x5206264F7F524A20,0x2D6F72D23CCBEE76,0xFC79BBFDC870FF48,0xB5149C68BE78D6AC,0x277A951D716BA172,0xEEF78C6477D5,0xFD7C1004DF5E48D1,0x1E23DAD127BB0502,0x71346BC587CADD07,0x22C67404DEA995C4,0x873A517E769EC5BB,0x4C171F67DCDD078C,0x19147DC1C1227,0x27A80083D14317E1,0x240A41A7E1BD2A37,0x79D1FCD075407399,0x714CAB4801C29F6C,0xC7A6D14174FF641D,0x7D9EC7F8FA86048A,0x140527E30E434,0xA76B8CA804FAC010,0xB8C79ABE37CC7560,0x12504797490065A7,0x6C925098719F22B8,0x14A4CB612968B59E,0xD5DD65E053033B9C,0x1900A426225E3,0xCCA9FC9D8E0C0DB9,0xC93E6DC98FBACD81,0x6225EEE44BD00F33,0x46328F3266D906EF,0x50C78CAF24E42316,0x58F20D684C36DB12,0x105DE98D22064,0x4180170BF187DFD1,0x3D20F7A2E5731F0C,0x2B29B79096A9A245,0x442A49AC773CBC4F,0x8C9CF9859B34BF82,0x501AFEA57BADEA05,0x129D4ACA0106,0x178F98476D8AB26A,0x9DC62E679AA869E3,0xDECD81B5A2FF4287,0x8DD6832E6B6EF36C,0x8533453283620828,0x6A84A82FC6B3D1B5,0x197BAD1C5D477,0xF1E82AFFC4C50508,0xAE354D7BD7DC6933,0x2A8DE17C679540CF,0x8E26B095C6D8A9DE,0x8D0A113A7A6F427E,0xD8CD72938C04510D,0xA64A81231004,0x7432DC877C25109,0xE0CC7C5A034FB449,0xE4367FF97286C8C1,0x25FDE79DF2E100,0x62FA18932EFEBDC2,0xBAE28B811516F4EB,0x13C7EF76D7BE8,0xC7275B149DD1A5FE,0x6B24F1CC50DF7972,0xE286B78322F22C81,0x9946C35A7168E865,0xEE8E4BC759E7873F,0x8A64BEFB0A7F9A20,0x1CB18AA039C25,0x6D28336C58F73E30,0x725B50C04460EDC5,0x5CF888D713FCC1ED,0x2E54BE3E35D2DB2C,0x494295D0E946CFB8,0x7210AB8A084C7982,0x42FD9B30D5F6,0xC09DFD096ECD7E8A,0x43597BF397F85CE4,0x1F3257EEF2E21E01,0xEB5B80C76CFFAF95,0xEA381C7104064E67,0xC184A403A5E61FD7,0x60186EC4DDE5,0x954F21E01BF9998D,0x5F8814C46D5A94D2,0xC3657DE3C0ACD7D3,0xFDD94C076A58312A,0x79BC2684753DBDEB,0x11E51A878D1223BE,0x2066798641AEE,0xAAC0A24B40C3F4E1,0x5E2C91F223972BA9,0x398D99D44BD2529D,0x5F741BFC3676D886,0xA232F12DD967CA41,0x91D8DF7B73C02EC0,0x5A7384A12DBE,0xEF281AFB4A39CBFE,0x4A981793D090C953,0x38C48EC5F72F47F6,0x3913D4E8DF5F3B47,0x99BBFCD1ECD2F722,0x6B1BE4AF21A60A80,0x9D12C5CC4145,0xEDA5D34BD1AAE0DA,0xAA56DE87CB3C6ECB,0x44D78A51DD85F9AC,0x807A46E94372867B,0xB81452500ACA79AC,0x9B390708D4F3BBBB,0x21366D30116E5,0x64184C2240999BBF,0x4565AB187EA5B623,0xFE53D23A14B3DC65,0x69C462B66449CB92,0xB55F63716A7F4B66,0xAA313D1E702C47FA,0x20B4B0C6D5E06,0x505B06E0F48374F3,0x6074667B9B283405,0x7719C8419E6EF341,0x61B9742BD7042596,0xA47F6A4AE0883F71,0xEC213D98DE13DF22,0x11A989DF3D244,0xAC66F85AE7158131,0x1751DC219609C485,0x9815D2EDC39B7041,0xEA4CA2F167EA9429,0xAD283327405B8787,0x9DFB28B3D05297AB,0x193D00B345EDA,0x35BD17F4BA5A4BA7,0x70E977AFB4C9F0FF,0x7BE7200057B27F5C,0xF8A2AE784251FA74,0xF9F05C1A3CD11318,0xEFC59D8DA48A5E3C,0x5111E582F972,0xBCBC2549EC68FCDE,0x823DC23B9928FAAE,0xCA67DFB037298E6F,0xAC70AF2E2F59CB0F,0xF303D3F9FEA1DE0F,0x1FEF6966CEC1C6D8,0xA45351E4C3BB,0x28213AEDB766D70A,0xBC56B59ECADB8DB6,0x345EAD5E9CB094E0,0x701D53B4419D8B16,0x726F4BA122BDB4F2,0x7F6277F789489550,0x147F55DD5F077,0xB5DABB19882D1CA6,0xD0653EBBA634DE3A,0x680D1248F27389DD,0xDB6C05E99BFA018E,0xBF3F75DB70F8995F,0x95C9F02E20BAE066,0x11D27A38FAC46,0x9068144FAC93B614,0x6D1DD96E8210110A,0x1062BA34C040EB33,0xADDDC5FAD8EC3AF7,0xC40E23557263EDDE,0x7D3D921FA93F38F7,0x1CBDDCDFD9568,0xFB0B041651094E3A,0xB95E746D698367C9,0xCCD8C9E511672B3D,0x6DAF7DD38741973B,0xEDA96C3D57AC590D,0x42CD602A9DF63B5E,0x1273C95C0B467,0xCBB68BABE871D287,0x34169DEEA7B7E71E,0x958E889C3212FCE5,0xC7ECE44F146520BA,0x5B30C9E65DC31CC8,0x9A789A950510C3DF,0x1B0BCC1343BC0,0x8DC76D5585B4468F,0xB1D1CAEC523E4056,0x90108679BA558D28,0xADBD10025EBEFCA9,0x4824559AF61592C7,0x19E7BD08BBA1E056,0x6E4E5425EC76,0xE5780B696D0047BC,0x7F2326E9BDDDF8A7,0x9603717332134044,0x7D4EBBB5D346896,0x532D2176AE4DC1D5,0x44A1882B27F3F864,0x1884B6C3617F0,0x6869618B986AB9E3,0x6AF03C28713E04B4,0x34E132B80B8B3F37,0x303E4DBD03F8A262,0xF1AC57DB3B80D94B,0xA1593F83270A71F,0x20FD628C05C6,0x9A89E43CA0689CBD,0x640233F6E9D471D2,0x2173B938FAF79BA9,0x7AEBB22E721876A5,0xB504AB80EB2ECAB9,0xAA02AC5DE27F18DD,0xA092B9F8841E,0x8914B44FA242FD87,0xA305924D88CCA294,0x39D5C0CCD696D33F,0xFDF020F1EDAEFB71,0x464A508097E3D6AC,0x3D9B72CD97694F22,0x17FA978604D14,0xAAD89605EF6DAF0C,0xFF9BE7486AF576A4,0x49C7767ECD4B434F,0xAB32040DAD7C4CF1,0x1080A5244019ACAE,0xE49CF12D166A85BD,0x36E406F47997,0xF86E6720378A8D76,0xB6C618C98EB2D0FD,0x595B15ECFDE582CD,0x9FCA16F68D4BBEAC,0x205478615AEB07E8,0xE59A63B3A2976B2E,0x2270C4E8162E3,0x7FB67BAE054FCDA,0xD0760527AB909AE7,0x9102FD59C83A6623,0xFE8E6CE603F8A9EB,0x2C33A5D9863F6C40,0x924DD334D9E84CC7,0xB245B8D01AE0,0xAA53791584D728A6,0xCDF4EFD7CAA0FEB5,0xE8A8CE859D2A8BC1,0xCCD75E9B50B9ECAF,0x2795BCE93EF7A2A0,0xFDC933DC920D00A6,0x139649A3F2F16,0x23976930DF0492DF,0x7212140DAFAF2E04,0xDF00140D54E2F3B4,0x69C129B57C8FF828,0xF6D747AEC2296BE8,0x9E29B46DB988FA8E,0x6DEBE8C3D340,0xD3CB76800E25D461,0x162298699ADE5D6D,0xA6D9603BCD217A46,0x284E370F81BB51C9,0x5D059DCA27177796,0xB0D013EC70CF92A,0x14A875791DC1D,0x46AF50ED4241771B,0xD86E0239DBC02426,0x42829678B9424ECD,0xB063D73874D7BEF4,0x8D3A6DD88F76CE4C,0xE70EBD0B8BF92771,0x535B4421407F,0x4C1281082A366ADD,0x3C34A9F83DD489C7,0x85D957A854606CE1,0x595663BB5FA0291D,0x81FFCBFB907427A5,0x50851421B9C6A1E7,0x5667AA50F0A5,0x500A55AB054C1891,0x2175302348E2854D,0xFB3756DD9770184C,0x74E416B857D53D33,0xD7FED4D83D845CE9,0xAB394F2E13D3AFB2,0x1E016B121CF38,0x8CCBA32940728311,0x1A3267B6810A3280,0xE9E4CD9D0EDC9F8E,0x536F22D5F05B9D22,0x1B482BE79EAC3837,0x4108189BA9A1A52E,0x11405EA3C013B,0x32C14C775D1D7F17,0x3A0F1AA1FCF4F7CB,0xF2018CF4B9AA522E,0x12AE8F660B59E7A8,0xA5625F52494198B9,0x3D362EAE0E84B0A3,0x16C708BEF4B2C,0x6F0AD69D242E212,0x9165D0186665A5AF,0x9D3538FCBFD479B0,0x17C924EC609C82D1,0xD48C7937407F3B8B,0xBD041F9AAF1016E1,0x2AF4A06F96CC,0xF5B77F2B8195AB19,0x123757CFF7E1E8CE,0xD63CB3A7CE3AA60B,0x899536E72DEF38D1,0x433C8B233FEA7FC9,0x48B4F7176794AB2F,0x10971C9E957CC,0xB41F3B1D4A1D93C2,0x868B03C56348689C,0x640EB189E020E0D,0x99ACFCA66B41985F,0xB34CE6DE2A08D9A,0xAC558D3667A632D3,0x34B40C82106A,0xFB6F2A72FCBE5959,0xAF320D1E294C5937,0xA25480638757B201,0xFFF60C9B283FEA81,0xFFDA6F6DA1980364,0x8EE8352D9527B4FB,0x62C13AFBF9C0,0xB8C8A6098B2DE393,0x83F2CED7AB8E0CD6,0x6BBD0280A51F217D,0x54301B4940B4A922,0xE9F191EC15E11A5E,0x653C7B0B0CFFCFE9,0xFD29D443089E,0xB9D79BE5D9AFF3A1,0x25B9251C88EB326D,0x83FAFD08B9F46F7E,0xEFF73AAC816458D7,0xC5FE567323AB9CBB,0xE9D215BBF220F7DE,0x119C19DD2A164,0x7BE48B8B2A004A55,0x769A26A3FA3AF6A2,0xDB4DE9C7A1229B78,0x8C8E28593579581D,0xB06837AD5EA3B976,0x9B6B75024B1C0D5C,0x4D2777704721,0x59EE194CE5CF8A3B,0x6F845AA691287777,0xE545DA2729ECACD8,0x8375AAC90E8908E3,0x26E452139449CC5D,0xE9529FD58435A664,0x159848F135BCB,0x7DB7CAA86B756FA9,0xE80E08AB7EFCDDAA,0x50B3774962C96339,0x953DB3965B3341A2,0x2D3C3F3B6A7657E9,0xA55E602F8C3C227C,0xB5D218DF3DBA,0x9B95E5058891CB51,0xCEB2394819878E9F,0x9F99C0BB63981570,0x3138DCE48938AC67,0x9FB0B27DB7CB1F7D,0x565685F888D52E75,0x1CB224DEB0BA5,0x33CDA9A15A4632B8,0x51E771FB02BFD0B2,0xD57CAD02A947994F,0xB9047EEF3470430A,0x12B6DB69C544FA87,0x5CAEBD388562E302,0x2271B6607BD9A,0xE4D60D23944C84BE,0xF5C54A183138D642,0x5AAE7624775DA793,0x8B36666716372609,0xDD43BFFA76CDACBF,0xCCC2F8DCBB3FB105,0x1CD44A2EE827D,0x4CF7EBE4E9EA3DE3,0x6A050C60C5657BD5,0x632920B8D3BDE5A1,0xF4FDEFE3DBF59A0B,0x13C715641257C5A4,0xB7C2EFA8380250A6,0x231FA490721A1,0x1FF96CECC1BCD6C,0x152A42098844B1CA,0xD7AA606C69533617,0xE6045ACD5018F279,0xCC04674F36E84247,0x77CD66AA9C6E7E6C,0xD4A16915EC7D,0x1929F14CE050A996,0xCD9B591CBCDE3644,0xC13075B43DB9D607,0x75FC99DFBB0CF922,0xB44F9AE8B8B479C3,0x84B5B8D5B857CCBC,0x1C643F2505049,0x7374681C9FAABAFA,0x2ABFA15FB82B854A,0xE084FBACE5D54483,0x9B88C3D7E7E634F8,0x1904E2F29A7AC1FC,0x7CB89FBC66BCE333,0x17699E62D31CA,0xE560358D51AA99A5,0x5FF39E30255C4DD7,0xFA9CF4CFC4B60F4B,0x9212D22E6F17C6F0,0x8D72E2C99DB0E6EE,0x21ED79954BCDD788,0xF90C6B97F33B,0xEF21E425DF5A59C0,0xA655B17D41F13DBC,0x29347808D5862E6B,0x4F427EEDD7CDC84E,0x8E4F4510984E9361,0x2A3A9E046C3336D8,0xE903F930ACB5,0x785BADBDDEBE2C63,0xC93EBF8FF9CFFB48,0x82E4BD717353896F,0x44E6DCD789E0C98D,0xACF924307DC30C2D,0xC7A062AD7DC49921,0xC83FED7D9EB1,0x625334E81E1EAEC3,0x58E530990AC07825,0xC28A5106F4C72437,0xAF5CE43893912685,0x915686660CBE1A9D,0xA19A35CC6DA3062E,0x1FE7117DEFB04,0x2730062F37218F92,0xFB8B7DD32A666354,0xE6ACA64AB9FD390B,0xF2876F4AC7134EAF,0xA81D2730A964FF18,0x4FA14D823DC16E89,0x133DEB6AC0CE4,0x948BE6FD77274D8A,0x210600A750854B70,0x7AA2A56D9DFBB530,0x82FD6C3E866EE956,0x2BFC653FC1CFB9CC,0x6682E8ACD34E515A,0x5B5FF5F4F4DB,0x17E8B98B9048163F,0x4343FA0A89CCE6A8,0xF92779B99B7B22A7,0xD63A3E1C35F210AE,0x7685F722683FB64A,0x4100249DD94CF82E,0xF2E73F768C36,0xB58B332CAB916F88,0x201122344D934319,0x148034C9905EC039,0x6E2883936216ED99,0xF0981D63EC7AB680,0x912592C2566286DA,0x13A8ECAAE8640,0x3018179E6DE7CA53,0x1ABE6A61A32CC61A,0x1327D80FEDB7174D,0x9270D61C4AEB50D6,0xCABA1C716DE19107,0x984F75C458FD8777,0x223AECF03E547,0xFDCE38DF5776A74A,0xF36A3A377F7761A4,0x57550DA64F48DDD9,0xFB58AE0583079826,0x758E9BFA748F4F9B,0xF4169799377EEC88,0x283FE4403AF7,0x13FA6DD518C2E57C,0x1C958342AF2332E,0xE94900CEBF4596CB,0x41357DFFA36C0443,0x77B1A85390754E45,0x3174C1456242293E,0x1BBDDA2ED65F4,0xE370EFE3C9BAE341,0x9262FE52C1A3F9C7,0xBDCADC838A2F681D,0xA4F7BE580B6B6DFC,0xA638741A1415AA4D,0xDF4110D0423D487C,0x18DDA57DFBADC,0xE9BAF3DD27456D2A,0xA7C5B99D240B1CF,0x1A78CF6E54CF5D95,0xA11CC6AB86A19F0D,0xDACCE7B152877055,0x6B595311E89A170C,0x60FDB8A988BD,0x8686ED997CD1DA19,0x5FBB786764D3C29E,0x63479A2A942829F1,0xD72BFE4181B771A0,0x11D9E45A3CE5A2BB,0x8EDE34CC3B8644E3,0x16A2319FEF3DA,0x54DBC7860169D1AC,0x9D06546CC79782BA,0x111A7B21AFD7802B,0x54164B1B88E13F4A,0xE351B8DE675C35,0x8525FFD6BD6BDC9E,0x1B4E63EBF811B,0x901030CD5BCE363E,0xBBA0CC9C88FDA9D7,0x852756730F9DDC75,0x52DEC1D63C482424,0x3248E1B719F2923B,0x1B9B6C13CEECB776,0x2C5B2998F024,0x7459BD7BB172F50E,0xE6C94D8367A1543,0x9D735221343C331F,0x25EAA4E2E3265D64,0xBD97AD262D650F40,0x882A50EDE7A47237,0xE82B2DB80C28,0x8D5ECAD5F0CB875F,0x8D378B4F8A83785C,0x963701055C701E6,0x669E3D346EA6F7FA,0xE8B20EC1716591B3,0x21FBDC5A0409649D,0x1321E4ECA0CF8,0x952B76180D98F4E3,0xEB2CE804640A0DF9,0x29023A1E2BBD1E0E,0xE8D62DA7B41DED14,0xA5005901DD91E7D4,0xB374E36707711661,0x1DFBAB9CF2247,0x482342E3BC9BE557,0x63B5942D7B81B4A9,0xBEC0173690C2E281,0x43B178DBDCFB7C61,0xA3EAD90600551D42,0x5084ECADC636CFE,0x1A9D2E844D7EA,0x664C83B31850E1E,0x74535ECB6153CBBA,0xB8CC07C4AA469864,0xEC37F6AD48E16271,0xB11E8CE2F865A1A7,0x2C5A3A1F2E766C27,0x170BEF101DF5E,0x15A9978F10B5F149,0x20E6B8E913DC56A7,0xE2D92AADD06AD899,0x65457E827E4B45F9,0xBEC45EE9002EECAD,0x42A30CFE21E10D12,0xC6EA7BCE5DE,0x80A2247D02D9EDD,0x353BF45A5A7FB676,0xA563551A561FF7ED,0xD2D635E40CFD5E28,0xDDE98AA30866C92B,0x408F81E566D14EFA,0x16D0AC3E59BFF,0x29F8F3C171C9EA,0x37CFE4AF5449E515,0x4B41930F877523,0xA6A45C62EF5092B0,0x369A32A319046E7A,0xA8E497236911D6F4,0xD19212EE39CB,0x38FE34CDFD98F8FC,0x7E5C0CCC2FCEF40B,0x814B9013CB10E18E,0xB3525F5C3D862E,0x50A10D51764E930C,0xDD4561197135C7F7,0x178FB85105D81,0xD8D0F5949F15E11D,0x56D074C7A2E10AF8,0xF16BB9B74A5FA619,0x44B1E6DCF3514B3,0xF6C19500DF474751,0xE864BD3298F2E401,0x1BD106DF50C68,0x8489EBE1F7796E43,0x85BB6AA3CBC6A44D,0xF32FED21684D2E0A,0x57CAB2D8A5A9B50D,0xE0DBB0A7C22A405F,0x31083324A8AD5120,0x1B9911F8219EE,0xFB21DE1BC3C76C50,0x148574768D9D3CB,0xC8358562F9EC979F,0x6EF2B795777DEC3E,0x27252888B7C9E875,0x12BC62778391A3F2,0x1EC67969D6A49,0x98F26CFC864424CC,0x65804B13CCAB836D,0x5A7309DD73CFC68D,0x5EED2C7A1F2715C8,0x84283F0787738E47,0x147C73CB03DBA50C,0x209494E64E36A,0x6045DD5D3548E45D,0xB7D85C0C7DCC45F8,0xC22A076DAFAD0818,0x7B5798466C0E7974,0xA3DA450658E672C8,0x5FB0E25C03632FAA,0x7345EA805A1E,0x84C490A48762E734,0xD9D5A2121C4C908D,0xCF569ADB4BD75E55,0x879EF9A86F62A25B,0x94E7D1FAE895D768,0xAAAEF80EF5C7B689,0x156FC4F666604,0xC0D8C890147D406,0xA1E0E0CA234F4990,0x8B53CFEE9B4897A4,0x478267E3D87989F0,0x72B4FCE27C685BB7,0x4FB88FCC8A62FC6D,0x3B77F4D18B5A,0x771678BD7F9B8AD4,0xDBD1298F8F06B240,0x451624C67894DABA,0xC11C6C92C606E12E,0xBBE551C4095827D0,0x17AA5FF49A2F58DF,0x26D299E0AD20,0x472391455F2AEDF1,0xB6587C7FA7C91C69,0x504AC33B69F23F90,0x14A31EFE9971DE52,0x36FC8D8009A256A6,0x402AF6C5B19A9EDF,0x1DADA1D60F871,0x5532BFC96A6AE251,0xCD38C8CB17B6C639,0xD711C9CE3A7328DB,0x791261B11B9641E7,0xF1E67B9A3FC38C5D,0x96034F295B89C82F,0x50E8D7EB4868,0xC83AE0309ACF3093,0xE415D4FF802D1981,0x43FC8714E3F2FC5B,0x4B74ACCC931B1DEE,0xB9BA7DFDB44C380,0x7CAB0703F445F953,0x3FAC4B84DE34,0x2AB70DB32CF691EF,0xE32BBC928E671EBF,0x509D4D50CD55D5,0x5AC6A9D0A95BDAA7,0x9F08A1752DBBFD74,0xC1F613F1468E523F,0x13ADEB76D9C76,0x717E23CEAEB482B6,0x238B0AC28ABADB0,0xDF864E5D965E8BBD,0x6A498321F7F6D14F,0x818421E33286F140,0xDAEEAA06A0421DEE,0x96CB15B58C1D,0x37E850480C398380,0x9380062B28507DC4,0x6936C24BE9A79DD6,0x30441A6E015F3C5B,0x4F4653738172647D,0x3FE23048788A9CB2,0x26C467BB4289,0x6E3262BDEE58D514,0x9A537427E7776207,0xE3182BF1DBC2DCDB,0xA524A93FA30C02CA,0xD3039DBC62A96F24,0x19D07004FB855468,0xEEC3403CA6D8,0x34063DB588ABF0C5,0x444B2EC9534E4B8C,0xEF5F1A4698C8741D,0x2A60574B8DFC2AD3,0x6A36978D1D75C62F,0x763452BF6108618C,0x177D583EFE43F,0x676553185DCDC0C1,0x22144F92C76DEF69,0x1EAD0BC69BE314F,0x163B1483EA1A8412,0xB46D9EF1E23EEFB3,0x507B7F6835DB83FD,0x18F60862C39DC,0xCE6EC5D701FFDA58,0xA1FBA73BEBEFC1CB,0x54ED5ED4B46AFBD4,0x8ED0006D5C62CA92,0x8ECCE74F0206CEBC,0xDCD4B160F0DB294C,0x1FC74A2012289,0x96B9798753BCBB16,0x3E1846CB6DD8A800,0x63DCC0F18F082D9,0x238D9F47DDBC734E,0x7875AD3B8E3E0C7D,0xF1097D24844ACFC3,0x5739C11E70EF,0x9F0748E8778E52CC,0x14B6D3A93D153BFD,0xE2080A331B867DBE,0x68FF669C489CA2FF,0xD2F4396606CD2F8E,0x6C2E6F9A44BA1CDF,0x1FF9A8A25DCF8,0x20CDAFB6F42AA9D2,0xBD990C7196D5DD41,0xEEC035970046B361,0xA76FB28693E36642,0xDCC311658E2F7D30,0x4A655CED0B6AAA2,0xA817AFB237A3,0x3F52CD947CCDB0C9,0x8FCC309AFCB6C653,0x83CB787BEFCB671C,0x2BA40F340C42BA5C,0x528696E77C1E31CA,0xC69C31B5DC2FE425,0x21BC39B630F7B,0x15D7BF7B231B3B2D,0x8C60F596AE154F5F,0x473397219B641094,0x81B224823729B3D1,0x3E80D43D89A8F409,0x95052CCB6B5D278B,0x1CB58CDC1C7F2,0x64B62820CA177D9C,0xFEF641546ECC605D,0xA4782ADCD44E62D1,0xF4E07AD179F6B31F,0xBFA3CEB09208800,0x31469BB0854285EC,0xBBE2AD418D58,0xFD1A8EDBB4BD8BBC,0x7EB997C5FD733497,0x4464CB2F9A598CC3,0x926372A9095C2AB5,0x6FEA1D9A93842E65,0x3232366FAB271C16,0x10261EB54A2FA,0x55947CB8C00AD2D5,0x31885E6E8C0C237C,0xE6E0E6A5D1C49F2F,0x90C42A399AAB306C,0x19C80C674B93E099,0x8C68A96096EFC8C4,0xDD6C401CB511,0xD01432A4E6069D4,0xD60D11DAF31B85EE,0xD3F0AD1E102A1C34,0xA8DD84D4C416915,0xFE15117696E4981,0x42F72041C83F654C,0x2304BDD439E69,0x72662CEE64944479,0xF51E4F59A076BC5D,0xA0E602CC617E13AD,0x20F525A8B8A2C177,0x7933A561F0225A78,0xE6D005B1525F0B75,0x16DA8348AAD0A,0x756744C323F443BC,0x38A37292276C2DD6,0x5E3CC4DB23D2C5D3,0x44026A64112D502E,0x43CA664169DECDA5,0xEEA0B6B6E53E1146,0xF664567486F9,0x4EA9B7A6BD99B6C7,0x80729D8CA5F41EC6,0x7B8609548AF56330,0x354444BDCA16BBED,0xA69F1C9789C9F0BF,0x21224C226C40146,0x113ACF8CE7D13,0x13605F0D867AEBC4,0xB5E4722A820E69C6,0x4360B7C0EE57D6ED,0x54A4D496BB748945,0x6C9051904827FAFB,0x89716C501BAFF2F2,0x1695EB6E43924,0x88DFC9E90259DB96,0x42D8ADE7F7ACBD2A,0xC641B5C706DE335C,0xA765A3F9D394D21E,0xF9076071A17E9CAF,0xACC75CD2BB073EBE,0x9EBBD417B6D1,0x8163D6EF0FC09E28,0x3B95661D45D64906,0x773E0AE79C2E2589,0x47CB19BEDDFEFF33,0xEB618B197B5F28E7,0xE5E5B9F8513B38F7,0x18DCADE21593,0x56D7B9030B3E6BB2,0x35DA2EB8ABED53B6,0x57B4532682BE42C3,0x25F93153AB803781,0x8E9DE6116D67878D,0xF7E977E8F9C1B01C,0x211BC8265C2A4,0x3B6D025BDD4BDF09,0x21C43009A1420DFF,0x60878EADCA98EBE2,0x35C75B4CE8B8C878,0x3C615CE9E76B24EA,0x8D297D0BEBB0FC26,0x21BE01D065C3A,0xD83DDC0448820AA0,0x17D44264FA9548F9,0xB9ABD804C8AB0A02,0xE9ECAB01FBA7472E,0x7088EB64455B81EA,0x9665C2EDD6237DD5,0x1460582DB9DBF,0xBE0208C2816090C5,0x736EAC9AC72EA6A6,0x5E7D8895CC27B4E3,0xCADE7023A852DCD7,0xA027D4349DDADDF8,0xC78E7F141A9A5125,0x1E8F8D54BEF69,0xAEFFA99039E3911,0x8E085448BA7D8CF5,0xBE39F08833915C11,0x38D866119C5994BC,0xBD9CAD479BC4DE47,0x180C57C0011F1819,0x8F6154EBF6AD,0x4FE3B6486308B2D8,0x8A6F886B9057EB17,0x4D14D0C12CC84255,0x3B39E63310BDF55,0x46570699BF360706,0xBEFD17128A5F55F1,0x1D1DE42CA95E0,0x92224E9CFDA0A325,0x5A3A1EA900B43EB0,0x2F3096CB3FF32515,0x79919C391E8ED1E9,0xC68B2CAECB6510F5,0x92D133C648769E08,0x1B2F7DC4D2038,0xC569E30160D273B4,0x6406236BB473C2C2,0x6CD01C46DD4FFB12,0x3A43456B61D1AA0F,0x8E8C677B59D6B1FF,0x4DEE41DD1CAD2C79,0x4BF8FA6855C9,0x2B38A5DCDF547A8C,0xAB31195F9ACF7531,0x7B08BDF885065B3B,0xEB1074C5A4A20157,0xDBC40C2C1B012023,0xD1FCDC8ECAA6A7D3,0x19CDE9149C343,0xABE356D428FF310F,0x3988BD8702A707D3,0xC7EF9B6138ED5C9D,0xCD7A1648ED63ABCF,0xEFAF0583343C7778,0x671873C9B670AEF1,0x2208C5AAA93DD,0xFAAE88E2908CAF83,0xEF9AB2BAE520824E,0x23B48A6042786DC8,0x3BFEAC78C7EFC697,0xF5BD779194FB2ABA,0x571F237144F88DB5,0x25A4869AC2BF,0xB2247E97FDE5FF41,0xC03355CA688D1D44,0xAEBCE9E59B4FB10,0xF5A97DC0586D6803,0xF5023633CD5B9642,0xC73C55A7D52E8AC2,0xFB047C64BFE5,0xCBFB5B3EA0D6347E,0xB69F33C51950D74C,0xF7DF76840D3C5CEB,0x2246493A346E885F,0x4753BFAA754FDFCE,0xBD5FDF9057473D4,0x4F076558D29C,0xAC5B12C9F2F49B43,0x5175F26B8AE16FC9,0x67B08D52D8200AE4,0x31EB6A57D2C9599E,0xFAC1BB1012D79089,0x1789BBFC4CC28B17,0xD536AD11408F,0xE6B166DB54DEECCF,0xAA0725609C4B2236,0x93BFEE98A220D288,0x5F5B3DBAEFCDF13C,0xB9CEFA1F2B7F8500,0x44597B03562753B1,0x15515678A02D6,0xFCD331AF76248C8A,0xB5044EF1980DCA8,0x49AE3F3D66054348,0x3B3D576B6BC56634,0xD40B81DFC46CE3EF,0xE2E62163843C1FD4,0xCDC812C9FC46,0x9C86F8083CA481E0,0x79BC93A2853B21F9,0xBAF30392A81C50ED,0xB0ED84D591CB7D37,0x286007BF4479BD8C,0x2F57F6B56C74CAA6,0x1132F3DAE3C25,0x59A7D21EA5F353EC,0x77BC1F2C96E50A58,0xC776EC933E7486CD,0xD409C9702FA02D81,0xE9D0AB136A3DC9EC,0xC835E860152138B8,0xD6BD90BE633,0x65C4D2526B924344,0xCECCFCC3133A9ADE,0xEE00E79894AF2483,0x667F371919AFCE61,0x91F82CBD4AA64218,0xEB072A56B2B95417,0x1CCDCB9E7BDD,0x7D3C082AE28015D9,0xD2D70DB48D783170,0x1A0F2D0137C96442,0x28CF8971876B910B,0x7C633E18CFE4F438,0x18B31B914F31CCCE,0x7433C89F3CDE,0x9A576139A43C9248,0x237DCD38A5155625,0x35A3A9F5D53214F5,0x29C596B44E33E646,0x826A284CE055154A,0x31F3FCC23A87F5E2,0x1ABB7BB26D494,0xB632CB4A189B52CD,0x8FBC824223ABDE4D,0xCA784F68ACB6FC59,0x47F1BA7803E48701,0x3E2B7FADDB3D9183,0x129B34614B9B277B,0x8F6580FAF51E,0xA197C25829C37274,0x68BCA862D7620C34,0x52C84117A450952,0xA020AE1AEBD926A4,0xCF4E0FB4AA47DA2D,0x195A49497F4C05DB,0x8F5EC4888F51,0x4B84EC8A562DBA0D,0xF63BF8AE7D9DBA3D,0xCBF74B580CFF9867,0xE3233438E0F09F23,0x1B43FF93ACE5F27C,0xC76F6DF1846CB38D,0x6E1260243E67,0xDB96F56E6D5FB4DE,0x570DDDEFD01D876D,0xFDD41F669229DD67,0x33FEF9020503394D,0x10F60F3A8641D2D8,0x7A8DFB6305FBCDFC,0xD3C4389F2B34,0x9584515BD4E03DEB,0xB8DE3C147ED7BFF2,0xBE0066C28B50C4A7,0xC70B8E616A791C0,0xE9E86BC0F65DC583,0x43C7838C628A19FC,0x69C75BBBDB19,0xF9211F2899C71025,0x886EDBACA5AD717,0x2E1465395E681767,0x726024F86768F704,0xDF097B01AD209E9,0x37A88C27CAEE1B43,0x1AB95D7D98301,0xC8337B8BF47262DF,0x770AE04C066D8CF2,0x20015C68912D507,0x375D0B0C0163A8F1,0x1594E66608741E94,0xD1324A31C65B9CAE,0x13A65129C1ADE,0x7A7FAF2CFC3B47C4,0xC69ED56564610FD3,0x14D70F612A0D0A02,0x5F39AF19214471F,0xBE4A577822DF8853,0x738C504286BE9E8B,0xFA55200410D0,0xA27981EEEF565A52,0xD6D4BDDE3403FC51,0x591054F45787DC63,0x6FC5DF0E3D752FEB,0xEEA97D066FA191B6,0xAEB40218DB5BF211,0x1F0683E337D2C,0xAAD1A549AF1202D7,0xF1306A05A9DBC9DE,0x9AA52E35515EFF40,0xC6FA6FC47515DC63,0xAAA81152432615BB,0x35666982877BE98E,0x1B25EEBA706AF,0x64863CB1B2C29C9D,0xBC688B14C6848AB,0x4025513FF5AFEDB9,0x970E13A38E4B049F,0xE96B1541B53A000E,0x5C15DB14CFB677B6,0x20D9976F18FAB,0x200F56B7EF4BE92B,0x46A2DC6DFDD3B87A,0x84F5BBB4B9C6BB3E,0x99FFA345B5B54747,0x4BF1A22A125A5A9E,0x4CE6702927132840,0x19C00F3790FC1,0x13089ACF10472DE8,0xFCFB0A62F8F99650,0x26339341D6530CB1,0xF9C05F3D1BCCA0FF,0xC1313F4B94953E4B,0x683CD078C10DB4A5,0x1D306BD6C62B,0xF4024A2172F4742C,0x3294D6C3CAE55FEA,0xB4C947D3440E3078,0x2079EC63FEAB3665,0x11F2730E5111C7C1,0xD6F185DC47961CE3,0x12C07AF3E200C,0xB3C35CF4027184FE,0xC343CCBE30FCB3A2,0xF5E16A370A229FF8,0x44F98C5AA1FA9BDB,0x72533790501CCA41,0x6E8693BFD3E078AE,0x162CE07764ACC,0x4AFDEF4AC3CC0065,0x95D51EDB15780033,0x6623DC3F037376B1,0xD5E3C524A2587A74,0xAFFD7FBFF398708E,0x3A207C878BD13B7A,0xB5BE4BEB023E,0xDAC795F02144083A,0x59CB1448C6E0CA21,0x87B0D3016A55A59C,0x4FDE4D1A1C0B5C2E,0x1C7EDADDA115E3C4,0x7CDD884658915F11,0x21B428DF943E1,0xA324AF7974DAD0A4,0x35D2B72CAC1A9020,0xC6B8F51B3289607A,0x8D8EBE9FF6413293,0xA865F42BE8E718AF,0xA761DD51C4383201,0x159F04F21E802,0xD3BAAC91D44683F1,0x259F2FC8FC244361,0x1D9E9C1E4422B812,0x2FF4DA9A6DF0E864,0x40DB955E784E41D2,0x22CFF497BE206106,0xFA8663C03847,0x6E587A165FD68240,0x23B494B3204846A4,0x54A0E74B1C253DB9,0x571BB1D210CFCCF8,0x9945A5B078B50995,0xC3CCDE1B99A1F6C8,0x444B7EC6D5BB,0xC75F3472B1A85173,0xD27CB8C55C01FD38,0x6B4F835618468DF4,0x4527D50D4A6540A7,0x466AECE50E780AB6,0xD54EE55250475210,0x7101341C39AA,0x350613C412A96AED,0x4B16B55D99D679E2,0xCA1512DC14BE8AEB,0x196E20EBEFE2C78D,0x265806727667FE29,0x717701038FEE44D6,0x14EF99956C3F7,0x3DD1A9DB83C6418A,0x1856E198A79211F8,0x3D26BF9BDFBF4174,0xC65AF978DC5F0BF6,0x325D1A2F77B6632F,0x30002DDA4735B0C1,0x1FFE862A04E96,0xB2B52F9FEE8C8CCB,0x8C9793AF60C93752,0x989E9DE63F77F57C,0x7128EDACACBE70B1,0x5D8795DE50EEEFA,0x1BE9619223F2E3CA,0x4A7E7ECD9C5F,0xFB71F5822983BFA,0xF284640AF455C93,0xC494F0386DBE9757,0xD08543D94A0AECE3,0x1203B97CB0140430,0x7546BFE82F30379E,0x3EA06F568F1B,0x223E88FE6F1B4948,0x339B48072BE9C7A3,0x1EA706D1C8859C1B,0x5F831876181D4FD0,0x3F3E2572217AEC45,0x40E0091276BA683D,0x156D1D5F8631,0xFF75D7924545923D,0x9916651856E7AC42,0x32C757D08652F92F,0xD3CE147415D17515,0xBF8F9942A9F25CFF,0x380521F4199EDDEE,0x15EA26F5AD22C,0x6B71BB951B198EB8,0xA6DEEBDC99524E87,0x607F27B9494ED99F,0x5D34F47C9B54B432,0x27C05F161B96998A,0x84B77EEA8F457660,0xAE562FF4539,0x336E137AFCB0688D,0xC2A904F54008251B,0x6C6CD3E186B20BB5,0xCC1CA12A596E70CE,0xD5125595C8EB573,0x8366E00C32C4AFA5,0x213B0F3DE25C3,0x12CB11387D0E1247,0x8B948D25DA6FE598,0x902319117F24C1EE,0x4508553946F08A6,0x4BB3717EBEFEE9CB,0xF54E357811E1AF7F,0x329996C7BF35,0x1D3093CB097651F1,0xAFDB67BE06B37202,0xE12EEFB1F65B8128,0x8AD735F9AB9FB91F,0x5C14EA01ADE5D9F7,0x7470BEBD21E507C0,0x9B50371C9B55,0x502F5AB0EFEAA3BD,0x1CDA16ABC6764C5D,0x16F4BF04B74992ED,0x70D49C9CAA8CFE2F,0xF6305338D9956E24,0x892F8B806E341F8D,0x19E255FC7817E,0x75D3146D75362AD9,0xE6C63513EDE0BC41,0xBBB7A748088F336D,0xAC0F776DF2096CBB,0x39E1E095DA3AD9BD,0x298A78C680ED0AF4,0x1AAF08105DA2B,0x5812024A085BCB8C,0xB5DA0EA4C6680E13,0x4B892D4E32702364,0xCD43FBBC14754F1A,0x4C4176F37722BA4D,0xFB43389413ADE03,0x21A8ECD99834,0x7E7EAB1F276BA202,0xC3973A35C211C8AC,0x6EB2090B5AA2E453,0xF1B87410E7AC7EA,0x60EEB312ED4ADFD6,0x10C8AAA64C32FC1B,0x9CD4B509E3A5,0xB4291A0F2B18B33C,0x1BB875C19FD7532F,0x66DD90D6B31DC899,0xAD1ECC3EDFF340BE,0x9C45FF1C7AF2E834,0xC65DE4096B73AB1F,0x1B8F5919A576F,0x8B9E7C9218B022ED,0x14D4A6823CEA4525,0x921D28209435A015,0x51B71BFAE00522A6,0x947B14DAE0D1BD95,0xE8F73E4FBB4B5462,0x165505363EE4B,0x41670CC5D7B3A682,0x177AA740637DEE2,0xE00F62AB186EBB61,0xB82271BE0FBFE5D9,0xC31114F14B8F0CB,0x29C51F52D2E13C8,0x1B1857D3E5445,0xE745464C0B8E8A54,0x414B1193BD85C84F,0x795FFCFA808A6FCE,0xE2EC2A7C5D0A2044,0xCEED293E9AB5D3F7,0x13703E6498C088E9,0x20150F4839511,0x3187F1D8FC5B5D96,0x2DF1093D539C1761,0xD38A2E54AE9CD49F,0xBDC3F5E753214FAC,0x64A0958F9461798E,0x69609581BD201F10,0x17EC8FDA33788,0x8B04BE81E07153A0,0x88F8253763A9AB33,0x9C80AC40DA37EED5,0x8B87951C2013B2C4,0xB365456906124A4E,0x664CCE52F288162A,0x140335BA62950,0x7CA7727695D9877E,0x58D29315846AFB55,0xD1DBF983C0C3DDCF,0xF2AA13A3712277B5,0x597C56705DC0715F,0x8BF6E1746DA886B7,0x1E9B6C775182B,0x79830FF0C584729D,0x6EEE28887724A9D5,0x6FEE78FCA3A0DCCF,0xC7AAEE962F402056,0xA3799D431FA5B308,0xC051E23F447D63AA,0xCB3F1B27BCFD,0x800C845C054E5563,0xFFDACFD250BDD96F,0xE68CE6E45F7B9D5E,0xFFBE47025391CD4C,0xAE170D8D6A0978E9,0xDB5AE93E15CD11CD,0x151E68589C827,0x21E44A9FCD46E2A6,0xF16AFDA678E0AFB2,0x9B7BB00EFAF5335F,0x36FD6869A3B7D6DB,0xD70A69FB744D7B24,0xAB64E3B2DFBB40A4,0xBE65258E717C,0xE8F3B2352357AEDD,0xB80A895AEB3FE706,0xB7BB6225E15CC8EB,0x7F34DBCEC08B72B8,0x675EB381ECB98125,0xDCAFB7AEF81029E6,0x1AD4286E5CFA,0x9B16C1BA89326063,0xBE2CD4F72C6A4A92,0x71419173D79FE08E,0xE99E797B397BB936,0x58C8EAF4F701CB25,0x43A2E99BAC8F3840,0x1D22B5ABDC838,0x479190BAD02A12B9,0xB826A9251F1EA32F,0x97C467172279BC97,0xCD198321795F6CB1,0x78D4ECF4DDC0F488,0xD688A43F3ED1837F,0x1410BB4D88E04,0xD22FA3AEA51440F2,0xC05213C2F70538CB,0xECA39C2FC49C922A,0xE592BABF7F2901B6,0x71822667F8B0F7EE,0x759A4517F05F47B1,0x1DA99588C251C,0xBBBBC746DB4F892F,0x5C0584C4D72BA1E7,0x764BEAEC281F602A,0x73F758BCA47CD5E0,0x9C7D87C43764B6DB,0x3A88965EE2D98A44,0x26E9F2A4CE03,0x7AD296680D645EDC,0xD81B5E62BC0E753C,0x5CC139220B356699,0xA6E45374731333E9,0xAE2644563893047F,0x5C57E74EE605F27F,0xDDCD68A72734,0xFE662224060714AA,0x43A3FF8740C53EA0,0x7BD45557C0956FF8,0xD36F361DF83B2130,0xBD7B1683D55A8352,0x9E48B079627A1284,0x1A0E2F91579,0x5DE9CC4FFA0637E5,0x9AF2ADB6B4BC53F4,0x732CBE4D7DF38977,0x5806A0647ED76990,0xA6A1CB4F1EA1D4FA,0x3D2A54350C927632,0x16E212911D833,0xA8AAD85C97574823,0x4E6432756D8506B0,0x24D365E8992B3FFA,0xE93C4145E0CB776A,0x3033470C71605FAF,0x379ACE4B00463AA0,0x1B0FDCF31A387,0x3F599F3A9F26F569,0xED1D367CE7918B27,0x295FF6C96E63D8CA,0x2A367AA4CFF0D914,0x49E6E989142D8709,0xB1FCFB31C583E540,0x128464D679092,0x377587EF22DDF18E,0xDA4E55AD386999D4,0x46189A63F65B8802,0x22A7A43589C5BCB3,0x300C2D6AA0207A51,0x81B1A059B2E5CEBF,0x12418521FB33D,0xE83BC98DB14DF0F6,0xFF7B10D1B5733D6E,0xFE007606F1896A58,0xCEF7ABA2C766A0A5,0xA26746BA598BA9A9,0x44D8F01FCF1BC6A6,0xD41ECCA97911,0xE56C3DF53A8D5E41,0xD292D4AE1C2FC2DF,0xA436F1641F426F99,0xBDE17790AF0AB83C,0x208373FA458DCE58,0xD68C70202D18821E,0x20DF3A68EC990,0x7609110401A74906,0xAA6928283D7C0D5F,0xD79E62E850FBBF57,0x928A1D21B5CA71B9,0x12D258F23A8DA7FD,0xF51AE005EC81AF04,0x21874B8C31DF7,0x12EFFA4B7A01788D,0xA24BC5302ED2B21C,0x8A3072D57697D6EA,0xED2B5BA5AF534CF1,0xABC88617DB74396F,0x2CDDE9074C16CF1B,0x2146694C4412E,0xBC2B31CC408DE079,0xA536314A802DAAA0,0x42E078683EB512C4,0x95A83A1FF73B58D6,0x1AC1681B238ACAE,0x5FDCDE18C77C0B00,0x20A2A2198C256,0x55279B1AD61AFC13,0x63610837175E54F,0xF6E2C3D401BA1E61,0xB8F286CAAFB89A7B,0x3842AF650AC65E9,0xD0AD5850FEA2145C,0x20876275CBC5B,0x242BD3BBE83F267F,0xCB2AB8813B4E6431,0x57E4CD87546929DA,0x214D92D67295934E,0xAE8B204B38E32A34,0x38B46DAE8F7D3244,0xD177F1631E2D,0x69BD86E1C0DABAD1,0x48F2ED211B8922BC,0xB7F03954E0D2027,0x3CD14E05BC2F9E86,0xFD71D4B2C79093AF,0x7C85E606EAB40FB,0x7B5F0002FA2F,0xED36355EACE4AA69,0xF936D4C3D379C54D,0x4F8BB99D5231774E,0x57DE717FF9A49265,0x8CA9AD721B5DBC0C,0xD0E575D6269BDBCC,0x102C24B89A99E,0x8D62BDD245308E64,0xBC82175CB26D75A4,0x1E148785EF3D9AC4,0x59CDAE3C5E460BFD,0x4B43D4BD9CAD24F4,0xE1689094523EF6CB,0x24BC47342670,0xEAE295D9EDD7B326,0x4761292AB1312CE2,0xB4669DCCD6E09A1E,0x6C97B1724D72841A,0x8344E7039DACE577,0x1EA877C468AC3C91,0x1039C6B91B007,0xB9690741FE84ECEF,0x5764539F7F0EF535,0xDF1EE4CAC0E0534,0x74312C89440252FE,0x52804714E143758A,0x407860531A06D516,0xC87E67470986,0xB1FE72D22FAD9021,0xD456B59FD018EC13,0x32CF5D474F78D32F,0x4067196FA3E1C4F4,0xA74307CC4861DFE0,0xEA68958514197E59,0x1FAF0FA967C8F,0x88ECA0229531518D,0x51A3737724786A14,0x91D59D071EF1EB01,0xA2CCA7DD91EE125D,0x19D1789DAF1AAF30,0x1C37D3FB481B84B2,0x14C56A3980481,0x887682916B78EA60,0x9216C34D5632F95F,0x77DF5ED25A66555C,0xDCC5719D917A890,0xE3E0FB7B757469D2,0x5472100DA71AF33E,0xB54418D59C70,0x8B7ADBB4AE73616C,0x2151BF1CF74DDC15,0x27534369BE915B75,0xED08D73CF3E8C1FB,0x29A86E4B2B69BB41,0xCF5696EDC9BFAB6B,0x10265EEF16709,0x5B80658DC4B343B4,0x38C506607A0E5645,0x78C629B89D18576B,0xAE7A204E0C1669D2,0xCDC4819ECB44D45,0xAB9ABBFE1D62E1E4,0x85B042B3C58,0xF29C84D3A99FC21,0x2788992E22887431,0xDE277C4A3189909,0x8B99E1C5B8B09BB8,0xE7E46B20B52D4234,0x69F1CDB8065C19DC,0x1E91F6E0026C7,0x72DDC2A683609E7C,0xBC3443169958AC44,0x2A122325DA5469B6,0x200ABBB9849C54E8,0x243EE3DEAEC7614D,0x49AC6F4D976814D3,0x76645B81F571,0x15C8C73F0EB4A15,0xBBB8C98D4C2CDDFE,0x2604D79424678FD6,0xC5DBE53F081BEF82,0xA321C91EBA3DBFD1,0x136F8E7DB16D114D,0x21425FD199782,0xD1A6D2271819E06A,0x1FC05C9882718AC3,0x7DE8A19AD77CF9CC,0xEA1A106A59578ECA,0xC085F5611E2ED845,0x431A3BCE37B61C18,0xC0F75E4B0025,0x54F4E7A89CF333E5,0x1C12E05B63645AEB,0x7EF99D39E3EFA6E5,0x9F938C187BB9F0AB,0xC2281CC15CAF9ABD,0xC69A07595C632FA4,0x1690F631FAE0E,0xCD9B8344BAE2973D,0x9E245EBD282001D6,0x170651EE8A55E6BF,0x855831B56D4A0F84,0x73DE76474627D8B3,0xF01D2D0A2181787C,0x11AA6DB04FDB3,0xB0FB7B2C676C2BB4,0x82548415333A5936,0x5847E40640FAF1A4,0x14EA3776F5C1295A,0x9117C238B05D451A,0xCFAC44BFC25FFA98,0x4D05CA7537A9,0x8E8A73464230C913,0xC9469ECAE61132C4,0xD17981A7670700E5,0x22B911C0467A2B79,0x8865839A3411EEC3,0x9A483AACAD157AD6,0x19BAD161008B,0xE4778CDADAC0F8E9,0x1CB2A8B3D9225823,0xB66C74F14368FB28,0xE8053207EB4C5DE7,0x9AE18770B14A0026,0xBC9C11CE766D8F01,0xC7EE73A44C7A,0xEFA0EEEB9FCB8707,0x7F670309CDBC0794,0x144B71EDB1589C11,0xEE97D607C698F8F1,0x380926DCAC8FB92E,0x5028A802FFEEA43E,0x1190DA46DB521,0x425B210CED6F4DE4,0xF46091ADDE2F4BC5,0xF1865D27ABDA6189,0xE62A482545BB1526,0x3E1E2812AFC5195F,0x51C01C15CAA68D4,0x3AAAF42F260,0x5C4081E72F7B4670,0x4FB40FD093D1446A,0x545446D1DE9824EF,0x6A6ECD1F55398B04,0xE8F7B1976ACA02C9,0x648BF2EE1CB5F881,0xC142A061F2CB,0x5FCCEE86B09F2D95,0x9C39E8846C557086,0x1CEFC36E3FE0FB7F,0x7927535204C3647E,0xC0B1B4DA01E8973F,0x7C8136411C0C1DB3,0x8E3BC337083F,0xA4DEAAA1E3AC7656,0xC823C0FB8F81DC87,0xF43975F83CA91A3B,0x3BEF213C08810FCC,0x9C838381ED436256,0x10C9EF87F5BF0046,0x5EA72636560F,0xC392349AFFE0A661,0xA301A660210FACC,0xA4374C2C9D70CEBF,0x57EBE97D64CDB70C,0xF979F083AEFCE306,0xFF142A2DF718AC42,0x190BEB881D898,0xE00129A87864718E,0x482ADAE811E42F81,0x15AA4E8D7E035D6C,0x3F8D255304A51171,0x6B9CFC017FF0B61C,0xFD3440B631CBDF5,0x21BDD4904E046,0x7778D70CC0B3DCB2,0x891CA6F2D45C1219,0x44E40F27646F5050,0x565B8DEAFDCF5C63,0x5487E4A2C97531AD,0xF9C4D86FEBC2E7DD,0xF4541B38BE58,0xE58588403111FCA4,0x3558B1DA7EAA39DB,0x8BDA15F4A5B48350,0xBEEA4915AD852E,0xE7B8FAE69D87F7CD,0xEB90F5AEC5393776,0x41AA873F92AE,0xF0DFEB9584F98D64,0xD3526E0705D55621,0xEB55E33642E14EC4,0xEBE1A92694551A4F,0x58F1F9B939DF3D8F,0x1EBB583FADF38EF6,0x1800EE97490EE,0x1B0F7CAA27FF950B,0xA172B227B25D553A,0x5FA64569610FBC14,0xCB84223162C6CE8B,0xC51847F777ED8F2B,0xC481DBF4990F7E81,0xC46172243941,0xFB5AD75A16E7B16D,0xA00417348BCCDA77,0xE0A9166051AAF54A,0x870B78AB21B87BD9,0x16E3ADD9FEA90968,0x1534F94303958904,0xD480BCBC7273,0x2E19C78A03A660BB,0xA5F252DA9E13924E,0x93863A84A863BCBB,0x53D84E32435A0C71,0x4EFC2875559C07C7,0x958EEF3DAD062DE3,0x2505EC949E53,0x6BA30AF53BDD2EFF,0xA3FF536404BF46A6,0xD689A44221279075,0xEAFC7B159FF6B0B7,0x2A429C32FD186F69,0xE281731B0C76F36F,0x1598C6E4EFF61,0xA1067B7F9EF62063,0xB066E9B03880A34E,0x13F6BDCFC4467AAB,0xBA252479955F26D7,0xCC8F5381537401D3,0xAF16CB6C76B811D1,0x213EE7EA100FA,0x6B79A27C635B1A2,0x6FA23C5AA002A849,0xDB5559D433E7ADD2,0x7E3D816B4B35CE8D,0x875BF7FA2AB290E0,0x82325EDB1AA0F026,0x39C241968C60,0xE277F0A312BE2F34,0xA72BDB044B54B89,0xE67FC4F35DFCB723,0x7D7D9924A67BB0C0,0x4BA7080A09DDAAA8,0x94EB2AFBD55988EF,0x9749A7AC0189,0x15B32AC1DB037154,0x653CD0ABCAF7D9D5,0x28F9BDE0EB0E21FD,0x3C1878255832427B,0x99609E99D772064C,0xDE9C19FB263DDD10,0xEE92B0A7DC5A,0x144AB71822AE3A73,0x197398706EF7ABDF,0x3FAF0621321FC028,0x8BAA3090310FC75C,0x414AB1DB09EAA9A6,0x8F1D35E617A89822,0x81517F263130,0x2823C7898F144348,0xD1AF23A8221F9EE5,0xE1A483ED9F0B9618,0xC3BA39C010F07415,0x3ACEB16831929E9,0x5842BE358776E0C4,0x458E55A850A2,0x159F52F71CBC1630,0x49AEBFA0A14DB119,0xCCB02206986B7458,0xE04D71D8CC415CDF,0xFEC92CF4A163148B,0x71B4D20FF24EE036,0x1682E0CE962ED,0xEDE9864477B63455,0x328C34F514592717,0x5F2C203B2A9E36DC,0x5CEBDDF689AE7281,0x48329BFBE000DC52,0x6D7FA8672EBC346A,0x1D7208BD6D5C1,0x643D1C5F5F42618C,0xD8B66E3231D5295D,0xC845F9F201AE6495,0x6DB5222874141A4C,0x2AE95B78CB46770A,0x6C2F2C7ACA0EEDF8,0x1ED5654AA287E,0x5D4D1439B0948D87,0x9C01F06555C5CA03,0x99AD1E6525323879,0xAA3DCCA6F5A6DCC6,0x5567A2408062C2D4,0x2F6C28601748A38E,0x386C1FCC4948,0x7906FE86FA6F1DD8,0x63ED266B14EE9474,0xCACADDD7E1DA78AA,0x688C2814E53B3121,0x74B214F0306C3AC3,0x46DC44BC9C7F683A,0xC1DF58651C3E,0x4ED9DB62A359D207,0x385282099CE643A2,0xB98DC4A7E527D634,0x94EB65C9BC377DD6,0x922CF69D72562547,0x6E9661EF8D05A2F6,0x5573AE77F24D,0xF575686154311EB0,0xE938BB510A854427,0xBD1FABC99BF51B20,0xDAA713CE71911487,0x719476B5C232E4E2,0x9FEBCB0E095A3378,0x2187672897A46,0x54280FCD0137681C,0xC3076F709E6AC9D2,0x45FB36E98A2B6362,0xF92BCD101855B865,0x24E3810077CF4CA7,0xBBB0CAF5CDC8E7CC,0x11290394A79FF,0x83C7A7C654457A72,0x4C4B601001EE67CE,0x66C0AB430077FB61,0x558319611AEB138C,0x98470DB5344602A,0x2B2F9191A69200D9,0x122ABCF332EAB,0x2B5CADEA4814172,0x67B2CBB3F4D92E91,0xD89B87AFECE265D,0x32D06291986E6ACD,0x5F651B0B3265BB8C,0xDE2AE7E8B8A85D26,0x1087E1E7C45D0,0xF2FA13063082C5D3,0xFF133884BD62E0B7,0x15A2B57F99173A32,0xB6BCA691B32850AB,0x22671291C0C69ED4,0xA7EEEA0975EAA822,0x1E5726A483B07,0xCFF91F58544288E8,0x8269FF777422222F,0x767A8D9624D00EC3,0xDA240CA06E6C2FEC,0xA936A9D860FC4AE4,0x431FAF790F0F4466,0x1C6EBF25B515D,0x14EEE0422CF5BD0A,0xAC6D590037AB7A1B,0x4919FD75BA03090A,0x43B3E99F764BE6FD,0xCAFFC2E38C918B39,0x6EEAEB3EF7F245E7,0x1D16B40C07D9E,0xA3F9E05FBFB9F5E9,0xC0A0712AD8330945,0x7B81594FA8166BD,0xE7FE92051989254A,0x6351F4D7303B34F3,0xBF8FE9BF41AC55DD,0x81D27B4603F8,0x1470D302647BACA0,0xD9558ACE090B2DA,0xB1B81C5BAC203265,0x76A343045FAFDB1B,0x223B86ABB9736253,0x4917DE367221FC36,0x488396FF98A9,0x203304A2BBB40E3C,0xCCFA074B8C0567F5,0xBDCAA38F7A37BD74,0xFC1440918608AF4A,0x69A4F830546DB077,0x95D0852A9FA357C2,0xB118752371F6,0x15FFC9BD84D91AC4,0xEAC607FCCA8B25F3,0x50ADBCB093402A45,0xC6D72B5D9F6E1B86,0x671ABC45D511942E,0x542EB3C5B9DE4E71,0x1F7099C3F2D92,0x678C1B54F100EEFB,0xD0959C1575258109,0x31A512EFDD170157,0x47F82280C34BF51D,0xA439E47576AAA282,0x22F3E0A14D0B441E,0x25E4FF2007EE,0xCE918E46E4FBE876,0x9801E19FC93DCB52,0x91C5A3B5CBD381B4,0x6C6C844D44E58AB7,0x8EA5214C7F50C8E6,0xD021BA31244B395,0x2031E1EBA90E4,0x2440531EB8EEE489,0x2610E6235CB71365,0x1469AEFA0E78AF6F,0x7B132079740FE04,0xF71D198B518F3341,0xC94D22BF5ED53FFC,0x19F5AE3B6E1E0,0x2A4371CEEF216890,0xEAD8B7E0FF053D6B,0x2750B2993D6A6450,0x99C13FBC5AAB40E1,0x2A1190EE3F326149,0xE214C7062FA8D6D4,0x22EE586B1736C,0xE927E82DDFA88CF5,0xC847F2338956BE09,0xE47ED865F0989744,0xB79C9A7F1FE1157D,0xEC822D4E9A02354E,0xD5783E1EAB683951,0xC7CDF3CE2165,0x641097D94411EBD9,0xC26D2BF4049D4386,0xB3CA1FC78D071AB5,0x3D86C3DA06F0F3E0,0x54B3BA7713013FA3,0x3F7C8AA230AFAB0C,0x15A72D5EA1D35,0xE9A27616627A338F,0xE9B0A4AEC6D790DA,0x1D9A51F724497A03,0xEF3772C36273A46,0xF09A6B9F324463CC,0xF6AF696FC4D3A683,0xAD865C3B5CDC,0x6A33AC1DE02E65ED,0xCC782BC8677AD36E,0x2A1F5CF72A977F4E,0x1286862CE67DA7F0,0xFFEFD5EEF48EF03E,0x1662D2EBFC8C75FE,0x17C9C16489560,0x7C83510F1E073F8A,0x552CBDDCAA422FD4,0x4B0CE3064B69B192,0x26E774F4501B8FF,0x72126FF5CAD44775,0x551487290B5B822C,0x6BE37157D248,0x56F76C4A14D9B1F6,0xF5B9E1701D74BA16,0x582813FA2E6C9362,0xF3A9BF72B6D83F51,0x6498289CFEA60D88,0x4D949802B7A52E2C,0x157C253B27603,0xB0C78D9422EAC3E3,0x5A996A040DF60EC1,0x2CE38B8C1A68C3B2,0x324019DBC145D35,0x40AECED1D101AF7A,0xDF05F30D986BF31F,0x114F6738AE35A,0xBED90BE650A877D,0x5C40BF201960B3C1,0xD17075AA640F9809,0x6148F86F25E28E3E,0xF5BCA0F9F89D36F7,0x6D9FE8FFD881816D,0x13EF37025263F,0x5BC7982E46851B6,0x67D9F82BE2E45299,0xFC66FB83767F7A0A,0x8EEC5EC7B3825C50,0xA51B890543A5CF16,0x48841759DD689D20,0xE67013873BA,0x81E476377C6188A4,0x9342939A6EF03A67,0xD4200752A2BCE12C,0xD19864DC7369E144,0xB371267F42E0537F,0x3D050962A221243F,0x1B48DD7B16663,0xD8E246088769BE5,0xF24894222BECC047,0x89F28B19A3F184EC,0x2684DB124538EC09,0xACE5F2D7646BDA3A,0xC9F51B79DB4BABF2,0x6DB9E6B7BC7C,0x4F650848B594887,0x9C642AA7AFFA326F,0x8D0DD386768CF96,0xA7D0B6AB3199E103,0x2E3088A93452CC61,0x2DD75BD7C7ED2D15,0x1239EA61E5FE0,0xE5E983D21D2EE596,0x6048597F75455ABE,0x63C258EBD356ECC4,0xAF45C93F42E7EBFE,0x4135E87D0892E951,0xC3B3F168DAE19C09,0x21606F03E6E86,0x13AEFEEE61CEF623,0x395524FC30BB0C61,0xE604D87A398B00CB,0x7C4B3F85E46BA97C,0xF407037C179B16EA,0x297929D94F009B66,0x21C0C34466C5B,0xAC7C30402F5AAA58,0x5CD217BAAE6C8B31,0xA85EFE7D5ACC2ABE,0xCF4807B272FEDB40,0x7EB9C24AE2A1DE06,0x917D14CEE6B09889,0x3357CAEF37B5,0x63BEAF31DD2A1A7,0x1B6CB88F1B41C035,0x169FBE6CEA1B5D26,0x84E9720E34938E7,0x90EFDDA4191EF9FE,0x5F846E6686BABA1F,0x203736769E832,0xBE3C06C737AE4D57,0x32EABD8FEEC2B84F,0x8935B6DF6D373D16,0x261665160CDABECC,0x77583FDBA470FE16,0x1EFAAB64FAC0EBE7,0x172B908CFA03D,0xE9DC5C8794C3C281,0x6C4864085F84D70F,0xAC7E698F6F625800,0xA4FD8A6276964766,0xB50EE00C9B27606B,0xFCD661FC3163286E,0x20110427F0256,0xDC2FD40F34446091,0x857A99B0A93AA21F,0xBC2DA259AF77F691,0x24A763DC85AC633,0x1AADAF1BF5D95813,0xB09FB1D12D9828FB,0xC81610C1FEED,0xC8BDE0E7B1BAA639,0xE5D47327A23F994A,0xB608D08200ABAB11,0xAFF071DC1FFE0381,0x7ACDC15A5BE5558A,0xAA3F94D433A778B6,0xA593879DF50A,0x972D32AE1F1D0C54,0x6C4C1386428A874D,0xEFDC02FCA2B1C57E,0x98FEC9F150BCBDB7,0x4E00631AE9064,0xDD1B278130A99049,0x2F76EA5B7097,0xB2495881F978EF98,0x1183B76919B0ACDC,0xE43DCBDA3692ECEE,0x4C397152BF2FC1E2,0xCCD10DC1AECDDE74,0x300E0A2F2DB03B93,0x16591C5A7B426,0xAF1346743AEFDF2,0x120724EED8F511E6,0x18DB81AB7BFE3F2A,0x31F9415AF3FEA6F,0x7241675D0B7813F5,0x4334E574BEF027AB,0x697E946D4273,0xDB6E7CAA695DE8FE,0x76780C9B0C6376BA,0x4422D2C4B3FE422D,0x5C6C8372783A6161,0xB70CF4F39EB155BD,0x47F5F15308B05B3B,0xFC6BFDD5A3B0,0x5C9F770B70DE8331,0xF2622FC9BD22BDB4,0x8CEFFD7AB7665591,0x455EBC78AC23643F,0xEA2DBD29417ADCA4,0x4712D7141BB2CA8B,0xDB4FBF60D970,0x38E6157E35F2CB8F,0x3866FD31EA04B738,0xD11BD2F70A745F6,0x13A97B197861906F,0xB19041A71D5C372F,0x992F0B47DC711B02,0x646332028466,0x85BC7AE84CF2C04C,0xC7CDA0B86677927A,0xF88048DF421AEA5C,0xD136404A6B5E8E26,0xCA2E8C2B5B9CD583,0x5498FC2AA64BEE5E,0x186CA7CB911D2,0x59E13451A9CBFC14,0xF3BC74A0EA7B2899,0x2CA65A43270A7119,0xA903BB8303B36303,0x29799146D8019F6,0xD05A2F5CC427699E,0x366B08B954BB,0x26E173240FF300E3,0x1A529688A392BE7,0x7597ACDFC815832F,0xF8D7C0A9DEB8783A,0xD30C5E96DAE657FF,0xD82B537A1F26F64C,0xC1222A77CCB8,0x2944C364B05DC02A,0xE2322AD2873EC495,0xC17A76DB90297359,0x4407FDAE8AEAEB8F,0x81C713A27B790385,0x6B6722CDB5C98343,0x16DC3F5B3CF0B,0x24E3707F5CA5D83A,0x867BDBD3976B002E,0x4FEBE139539998F,0x2CD0000FBCCBD3C0,0x45F1695F0039E002,0xDC5311C8C16F17E3,0xE4002CBCFCA0,0x39FC6BB2C214DE28,0x8F1CEDA3A4713405,0xA0EF3116D15988CD,0x7085EB4980EB5A6E,0xB4A6E6633EAA1FEE,0x995153FEC491DC65,0x2B37DF7E4D10,0x24B0D641638BD998,0xE7EAD716E43F6E29,0xFC73EDCD235F61E2,0x4798D4223A44672A,0x95FF2BDBEA70F9DA,0xA534A49D6B082C33,0x160F307759A1F,0xB5F76080AB80FC25,0x2D67570F46E0B10,0x5651883A4979E4F4,0x6E7D291CC7B1CD26,0x38C72A4F70A8BCDA,0xB0F96AB3B69EA827,0x1C9CA6BECDF7E,0xD0AB519CBCE12B9E,0x970C4871727AEBA8,0x8420A6C60B992CAA,0xB7AB00A6D54E8F9F,0x36906344EF88E016,0xB06153C84F5153DC,0x15F0263200204,0x947D3BF12AE4273F,0xB9A3EEF5C875361C,0x284625DB0D2133E1,0x5CC38FB493CDC07A,0x71A9420E8A8F1793,0xE1B260F50F4F6881,0x72B718AE0834,0x9114E93B8519CA92,0xCF05532E12D2E27F,0xE19A72906548F476,0xBE7C1B3A22ED283B,0xECE224A00354ED01,0xFEEDC2BE3885783F,0x2102030FF18CF,0xF0638805C1648B84,0x11C11F041EB94A39,0x8FDBC1975D96510A,0x842A86277D88BE11,0x2746337DE50737B2,0x29DB1393F202C78F,0x92DEED39232C,0xED23597169FD6AD2,0x1987E66990D89E67,0x517F18DFA2A1C894,0x906CEF66D99C266D,0x843724DF0544A69B,0x8F93DDDE788BDA05,0x19100A6FCAE0D,0xB78529C97C1B9D1D,0xA2FA1D041F03CDF3,0xC306AABEB32D17CC,0x902DF2B861006A40,0xFAD36C4AEAEEBE09,0x21D201A5D6C7B0D,0x19C232776B4A5,0x8D0439A0B7BEF8ED,0x96F939776F043211,0x5C2D209133653AD6,0x4D62838B446BDC78,0xEFB52824F7555C5B,0x49726205E0B243B9,0x7D933B77598,0xA7EB468A88159E08,0x7482B379A955232E,0x5089FBE36FCC14AF,0xC1AB095182B74587,0x9B7F40C899436F55,0x177061C6B102C724,0x201F19D2E0D7F,0x96F7D0952CF03BA4,0xBEF471936CDE93,0xAD6699D02C6FDFD0,0x191742F8A44FF8CE,0xD0DD627BE54CFCC6,0x471CFAA2DDB91F0E,0xB23B7B3A6ECB,0x531E932729049C33,0x167BFEBED836B594,0x7872362032BB2B9D,0x24E7CEEA27C682E1,0xF37987AA3F6B5BD2,0xF914BD046608BFE8,0x687FC018D77B,0xD3CD014DB630B6B3,0xBF9C1FC22A8376F2,0x7D264855527860C6,0xE6EC229E1C21F041,0x3662575ABE9A3414,0xB877AC931F71C0E7,0x1D8FF2B97BB16,0xC0EC2ADD71FE54E5,0xFCC59F0FDF5D87BD,0x2E54962D8E3E578,0x7560EAEE85D16A13,0xFB08B6423A000879,0x6D3992268C2CC613,0xB99911FF1AC1,0xD4A01A5D1CE22D75,0xABC2590AD6D13193,0x73BBFAD3093793A8,0x2B4AF6BB47B12F0F,0xD1776BC36EB540E4,0xA9F3B3D977EFB8F8,0x3560B7E97399,0xD7E975EFDBC42532,0xBE7EBE32CECDC504,0xAC88BC71193B070A,0xDD1A7CE520B8BA88,0x31E33F5865B636BF,0x428A5F1DE0F7064A,0x1AD05C2ADC23A,0x81F61E90FDEE22D,0x9BDB22D3DBF4E904,0x172B4C424EE7A93B,0x595531CFB6719F51,0x90C3FFE5A860E188,0x766F9C816C34F80F,0xF49A34924046,0x4DA5D5474836A32D,0xAE85D5165BDA380E,0x7B6DE67A451FD04B,0x408E3271F6B5B569,0xFC509F10D8998DD7,0x45DEDA7A023B832B,0x18E1EBE6CC26A,0xDC624CD0159331EF,0x47BDE4456CDD494C,0x35CDB385FF3B375A,0x833B80A92F899D0B,0x362057F03D11B6E,0x37BEA8973B8D8C7B,0xF6D974CC3EE1,0xEBB89A768FC89724,0x5BF7DB48E8575EA,0x36944A271FC12241,0x37E5B434875E2D9,0x40061D52A7129E72,0xDD0B4DB74CFB499,0xF2CE5EA2D1B1,0x6F6854212D926629,0x1B48496F573FF254,0x3C58708AB076C28F,0xA58E58F1BA47C9C5,0x8A6F269E8E150478,0x2A6BF95D3E16BB8,0x12E3D6ABC066C,0x7B997494716701CF,0x41945D900222B074,0x6A6B3BE957DC089C,0x2F81DC94D0DCEDF7,0x3F7E878FFC19D1B3,0xB3E93F0313270A80,0x2269612929807,0x636DE284C66ECE9D,0xB3E91BB39DE0A69C,0xDB02BC6650FAF782,0xC25447AAF53DD803,0xD6E0E79E6ADF998A,0xA7ADA45D03FA5F8,0x116C95797CF45,0xB71768CD629BC746,0x9D9A5DCD384E6D27,0xB8C38F254642448A,0xD2C7C73DAEF347CB,0xB37252F32D0C7421,0xF96A46B61A3862E8,0xBDED5A29F435,0x9C70E45C25CABAA3,0xC50298F0F354923A,0xAD95FF2BC8130204,0xE3D5C75C05464412,0x11ECA686864000E7,0x24480461D0CCCB12,0x1ECEB6464DBE6,0x96A7C878BB1EDAB7,0x40DEF16EE88927DC,0x47A11F4B4553DC3C,0x2EB5200C5BD46DCD,0xF11216909AE257ED,0x66F810F7D0FD0EDD,0x86C7EA89C724,0xBDC78AEDC89E1946,0x2507316DAD0A1760,0x92576B5A54C69E0E,0xF9DE8220301A0A2E,0xAB12032BA97BB634,0x8EAF464C50BB5DB2,0x983765B8AACA,0xD8005AD4F804801,0xE058FB63BFCF106D,0xDBF519557BE9F8FF,0x9F530927320D4D7B,0x6905617CC9DF8585,0x6AB39D33D37EAFB0,0x3B77B2A6F32,0x567B378070571330,0x9DB3787BB63D0303,0xD4175E3D6A50C5E1,0x4B5646CECE8C5442,0xFA33B4A79C414C44,0xDCDB30D98B8F948C,0xA0077B05D7AB,0x897EEA13B54D6AB3,0xBCC1C110541A25D8,0xD2F1D2FF4081C594,0x50B2B6126797689E,0xD6645C1F9E361219,0x192C50AC1D580066,0xE2B8044B69A1,0xD227EE067C9228FF,0x398A95CFA1DF1787,0x8675E243261FA767,0x391999E7E98E2FC1,0x7260A3AAEFC4D38C,0xA30F88EAEBEAFC08,0x16E680BA81CB3,0xD6F558286D6D1C26,0x7C327190A872EF5E,0xC49F5346F70302F7,0x600E595F6643AE4,0x1CDDEC6C70AE5831,0x48F58C7939077EEB,0x10151BB268143,0xD7228AF8BB8E730,0x7985B965BF4EDD18,0x963FA8E6B4640AB,0xB45CC5EE71161CE5,0x1D8E2BE8B954F2F3,0xD42AF0154827A033,0x8EC70D5DF042,0x8866F2DF175C0BD3,0xC3E9B251B8203A4C,0x2095C095934D7AB,0x256FAC5CEDE39A08,0x1D0FE32E85A9FB2B,0x45457A4F36E03F63,0x9C11A97CD941,0x5F937052BB7B7069,0x4F6D88D0C3D49C7D,0xD5E07AE405E40016,0x1C848E15EF14527B,0xDA4847BFF97592D9,0x2C9E21BCE151441D,0xFDD63D59BAA4,0xD7B84672C191EC5E,0xF0793167F5641EF8,0xAFFB66DF5C034BCF,0x92B537D95D289E03,0xD8B2BD07B8A655A,0xC206A12B3EFADBDB,0x1B4C4A784C2BA,0xF44B63B96369A385,0xCF195BC8DC712FE3,0x76665BA9F80225FA,0x8764B3C5400B5893,0x6A71AEC475B579CE,0x5BD5F48DD10535B4,0x20E09A692ABAB,0xEFCF26CE68C0C9B1,0xC27CEA271D875FED,0xC974D69F7BF52A2A,0x7C1A2D9ECF7B7E71,0x6743FE73C8F9A780,0x56DBED5FFC683A90,0xB8C4466581C8,0x688AD43A797D0C74,0x6DF256CF1FF0AAFE,0xB696466371BB5762,0x90985A758748703A,0x1F0F3D052BCC89CB,0x780AC9D8FDA74046,0x13C02237B1120,0x7434AE2BCC0DA77D,0x4E16688AB1B1555,0x1843BB89F78C5337,0x7ADFD538B3E10656,0xEC6E762729166C40,0xB52D6FFDB09DA181,0x116D99DCC7BF6,0x2DB9969A25475946,0x11234E267F8013E7,0x4534C989C4EEFAF5,0xB78674DD2E8DBC23,0x13C87CB3E2E23E9A,0x7F7262CA6F63FFC2,0x1C0830F70140C,0x9591C582189350E3,0x5655D921F5E14D99,0x5FE29F23223A2237,0x38DC941C6B005D83,0xE193C91233855D92,0x3605D4392B5E7AD2,0x1FA62E6D34CFB,0xC7DE4DB15CDCB9D,0x44704A69EEA41F31,0x7FC700BF07FA5E28,0x5D61FA6AC409EB22,0x4033734C53B49E4A,0x90F078A1818B99C0,0x16C6F17B7AF83,0xD6C73DF7F9A14E4,0xA82882BDD2299B06,0xC55D711CFAD8B1F9,0x86FEC7D7C06490F6,0xC9B08CA66BE8931B,0xF6BCEBDD0999E259,0x19AEDC7120E4,0x5F5C338BDA36F6DC,0x1DA2FB3044138428,0x7506A757261CE364,0xDE8F082CB207BB82,0xB3FFA869A40ABE55,0x16032E76B65AAA09,0x229A92F293F33,0x3DD7EBB34CDAACF3,0x124CC111F9C5B56C,0x29F3385182726105,0xCAD5BABEB87AC9BD,0x91B4A0DAD81A4496,0xAF07D771EDAC948E,0x10BF45902CDD4,0xA4354FB46557557A,0xF0A839CE210D6976,0x47742B7931007233,0x121B8E746086DDD9,0x70FA79E8EC06A888,0xBF9B52C132DDC8F2,0x1E67759505122,0x40C880A34B0BAD26,0x847B1C9FD259A3A,0xED39541E937F52CB,0xCACD945B8B5AF23,0xD1C0C703C47553B2,0xCB902D4B90102100,0xD74B2826394F,0x25D73CE741F11368,0x668A44B950A0B31E,0x936D6EC7011D0B71,0xB47CAFF6F94A226E,0x85FB21E9B1524403,0xAA4EB71A1F2414CB,0x93B431756B9D,0x39A5DF70C8F8D3B9,0xE0A67C2A26D66E5C,0xA4B64C22F1892472,0x933710592A159A1F,0xD0F74685856AC788,0xA7A285F98245C4A7,0xB0C9C88B01AF,0x4A4DCF3A437ADEB0,0xD0945A384AD67351,0x6338E2A5280215EC,0x9ED08D1E0645EDD8,0x5118A311B7618F28,0x9E742BC8A15AFEBC,0x11E94D9CBCE31,0xB6F7260F0D2EC50C,0x8C16C335A0788B5E,0x4187D533017E9F88,0x7A0285C24F2B3EE7,0x4861931A336C69DA,0x40822BDC7AAD9A15,0x1B9316667023A,0x2D0831C265CF01C8,0x8647FF51B9F9B9A8,0xEF9BF6CD31463725,0x1258BDAEED556174,0xE2680C9B573401D0,0xB929BD1D9C5D4D52,0x23117CE03134C,0x60779DAF4F64CE11,0x9D9A3AEA37D1DBC9,0x49CBEF970AD0D782,0xC101D76D9C3E2AB0,0x8ECDBDF6BE660651,0x61F38982CDFC3BA7,0x49E641DF9909,0x3DF877EDE686474F,0x892D0F31F6041AE1,0x95DE46832D8348F1,0x4FA27A8769B88843,0xCB362C1961DDA761,0xE6BC9DF2095BADF2,0x1910EBF4C0548,0xD9D901171EDDC6EB,0x76D454CA4EA58188,0x2E1A4B118DBA4B62,0x1F59E15E3435AEFF,0x57C071915292870B,0x2BEBBF71CC803E5E,0x14C6DEAFA9A9B,0x269D2213AFE61828,0xCDE63325D2DB420A,0x3CBC0CD731C93E1D,0x4BB3829613C92480,0xCEA4E3ED7DA29B0B,0x4FB35394B2A137B7,0x196B2FA14D4D0,0x7CC40D915DDC4BCE,0x2F43C0ADA51643F4,0x998DE241DD076287,0x28B4EA098CBC9605,0x44F5E0D274166361,0x8557C2C2BA559DF,0x861585FF9E24,0xBF441C5DA6D4CF32,0x6B7DB418FDBFB536,0x2FB9F3EFE2445BE2,0xC1C4FD4E3670D12C,0x7D9A4156058C38A3,0x38D72C1235A97437,0x19BFB1DFC4F07,0xFB5D7E397FCA37E1,0x8437C36448C2DF47,0x5130A204DC0CDEF8,0xD42701B210EE3E5A,0x8602206D2C49E71C,0x7AF042D155BC5DEC,0x21CB090AC055,0xF82CC93A140E1D0D,0x38EDDC1A8F6A2749,0x21C26A115C20654F,0x3448F4312B8CD47,0xB74383E301A53CA5,0xB1420F9A92984949,0x1EEE2EFF064B0,0xAFE964433BE893FF,0xD4AA932AC981C620,0x6B690FEE1880CC14,0xAEB48FD1248124B2,0xF563A102BED41524,0xD9E0B499D137B880,0x4B45BD575376,0x5BE060E58E3F7DFD,0x607DC5AD258A2103,0x183A33BFFAA7A857,0x8C5475C782644568,0x111FF3CF9AD73713,0xB330D7425903E61B,0x16FAB9DFB80D0,0xF39E3C5020EA3B9C,0x4FBA36B855DFA26C,0x38331F719CB0B0A8,0xDB9420EA58F252C5,0x4529255376662427,0x35A6CE922B10C3F7,0xA50BE8FF88D5,0x84439342C38A98ED,0xA98E483FA39F7CD,0x941E4D2E436AEE1F,0xC9A5BAD761F6954C,0xD98DE683CAF1FE03,0x4A2133972A31DA32,0x191C3451707C2,0xF8951463B4929007,0x1D2BCF73710BBC5C,0xD2D152C01D028226,0x2A8B7A57DDAAF1DC,0x2718ABF21E6F776C,0x4B7CD08EE272C95D,0x948E5854837F,0x2E3652A672CE3B37,0xF8FF08579BAB49C1,0x50BFD4948027ECA8,0x5A45616C7AEE384C,0x3C6CC9853E9C5849,0x98F280152B900E0E,0x1E6D084451421,0x606D5E27C884A3C2,0x640BA774AAF57740,0xACCA4CBB219515C2,0x727C74F67E5A9DEC,0x78ED71F2185A349E,0x67BFE0852EB9BACC,0x109BB201E7939,0x621207936A3C01AB,0x76B64CAE9DFF6F2,0x211351B70AA126D4,0x9377C0BF444C945B,0x35ADB51DAD723C69,0x5929E31C8225711,0x1C2812F844174,0x60E60866049C2603,0x4145B9E3DEE77B8D,0xB9B1605568DAD3F6,0xF29721F18769C8F,0x30A74A0DB5186193,0xBFBB1E8618CD4536,0x59AE09428F5A,0x77638BFB8EFC1172,0x8F23948A56937313,0x489B1B17EC532982,0x584507B5879AB4AB,0xD02298BF65C6FCDC,0x43C553FEB4C98D20,0xF05637A2E6DA,0xF6E616EFBB25C1C2,0x9F175EF203BFBDEC,0xBEB19414EBE54ECA,0xBDDE40F6AE76846F,0xDADA0BD88123DE46,0x19D7160B1C0E14B7,0x128F2F986D8F,0x8E1E5890EECAE8BC,0x6C485261398CB132,0x7E4DE37D8A8B15D6,0xF210C8E2B874DF1F,0x52A353A7C4D49F2B,0xD5F3C5BEBB6DCB4F,0xEDBAE54E0DF6,0xCADEA7F50624BDD6,0xF1511E569AD59D8D,0x9957EB319143C99B,0x76BA8083F5080FAC,0xB8C798E5BEB4A189,0x380FBED1AD9AAAE1,0x1F556FF5337B1,0xB7D4CB9D5EC3A289,0xB6962C9DC550BBAA,0x70FAF7620F4DA69,0x4FC408CBBEFD197D,0x62F3EB31C964B6BA,0x25C15B846848BCE0,0xA794C7B283A8,0x15E671537B82978B,0xC8F93EA779B2D61D,0xA11C209843A55DC0,0xBC97A76E0EE2F027,0xB68D7396DBC3FED,0x9A4938377B1F6ADE,0x8FB40E390C1,0x22F0C49C75B401E5,0x3B958830ED9762F1,0x6F53589AF61239C,0xA0D5FDA566A77AF4,0xFE740B57AFBE6B29,0xCD7C8E5557B7F5C1,0x19B0EE0ED76D0,0xD7D949125D41CADF,0xED747666A30CF71F,0xEF37CB05D30B12DA,0xC5DAFFD6681E5E4A,0x5AA73DF2D191A97C,0x6E2492A3BF57B5C,0x1D392A5D8E5CC,0x1E7208FB1A108004,0x4A158F72EA518CD5,0x6E3A0BD925DDC469,0x57DF2F8258BEAAAC,0x6618B5B6B099C81A,0x36ABA934111403F1,0x215765EBAAAC0,0xCF90CF78B98A021D,0xCF8E749D08055281,0xC2A03263F2E1CA72,0xBAC660D3509FC570,0x96257150287DA6D,0x7604DF89E18EB8D9,0x1980788C52BBE,0xBEA0D78A1AD416F9,0x1F93F9A3FDDAA911,0x37678238E0C3776,0xE52CF324EB93B75A,0xBBD3B9359D0C974,0xD87498AAB9952C83,0x19597164EFD57,0x168C7C08FD0638F5,0x512815EF0F09ECE3,0x5FEE261FDF0C4DC8,0x5026C5F538BE32B1,0x661AD44646BD010A,0x1B81A47A9B5BF56C,0x17D6E5AEF73C6,0x2840676EEEA61C84,0x667A23BE8BD05B17,0xE69E96C3E1750863,0x371044929F82D743,0xF71C905B74FB1A26,0xFF661F6D58D0CF30,0xADAB4F930271,0xA3E7D2FF0BBEF097,0x3418AB9FD626E998,0xE0D702853D3202A6,0x7632E44073D1FB73,0x7A6C974037D53902,0x36717A97C597917F,0x11007BD4B2856,0x7EAF980FB28C4CD8,0x27E9A2099C755B1E,0x9749A7D090FA00F5,0xC3D23AF4A8B1100,0xD94905081A25C29B,0x570ADCB990AC7DE8,0x2CCCB9A0B9C0,0xEEE13F58585E9A97,0x629F645090E83074,0x394929D19003DD66,0xCFC85B4F465BE0F5,0x1E17BABF34A3B997,0x1C6D0E428D7FACC0,0x1238A9FF458A2,0x1189D1C521D9F0EE,0x5F99BA77BF461E26,0xA5B6787334B7B948,0x759DC916C70B68B7,0xDFFAB86B121B422D,0xE47888B90AA22402,0xB1D97CD6F070,0x11689AF0F1F44A6E,0x9182F5FCA5F526C8,0x8B891433ABD380D7,0x7F0642B49B36366C,0x90BFF49A9BC3F0BA,0xC928316D79A5768F,0xB1E02E69101A,0x355BED08FD7BB9FE,0x94000E87C8EAEAF7,0x603223C142FD519,0x1589C4E67E08A2B0,0x60D4C7E8A36E8AB4,0x5EDDCB0DCBAF8E32,0x1E6AA9E72FFF6,0x43441F661D611094,0xD6DD653ECF6351CE,0x52EC1A6E39D5D5BD,0xBDCD21F126E3004F,0x42104C7A2478961C,0x17D339706A36C877,0x139B3342D48C5,0x35D2B8BBC5A1019E,0x6D84194D7EE2153D,0xC3C5C1C5017F2077,0x52AAD05DA55C6EE3,0xC4308CF5CEBCB9E0,0x9EC259BA2711E492,0xF05F942757E5,0xEC1ADC416300EADE,0x4574970F12D4A873,0x49C260B3BB18AD94,0xAEA566B143D38C29,0x72DF3D8860CF92D1,0x7464BD9D35034EB5,0x13C0CE2C146A4,0xEB87A6538B71A430,0xDD99F9847F0B2B87,0xB980C42B103249EB,0xA96E0E5C0D9F88CF,0x39D7D9BB6E5FDF35,0x8CB548AD7E218B2E,0xF03901832F4D,0xB659FE9BB927DC4C,0x94F02A04EA1224A4,0x93BE841E411A4305,0xB87A814CED357D9C,0x72F1ADB8758F2FD6,0x34A3EB9D278A7888,0x4CDE0DF95E3A,0x4475D9BB4042E344,0xFD5EA9272A9375E2,0x78E8DF894A22A4AA,0xD93D22995655090E,0x552FF88B55653A69,0x972A15474FA4B6AB,0x8190DD6DA589,0xC937818F072C4C88,0x24FBB4B7D5B85C33,0xD6F9C09443F80D13,0xAAF9B4BA381D70A1,0x9EED0D779B175710,0x94316E84E1B9573E,0x210F377BA8743,0xF24FF57223A1F761,0x2B8E2E8A817BE364,0x9C0122BA9E342EDD,0xED4AAEFAD1619062,0x508C3400C0BB73BE,0xB5613374714A2B28,0x11625C484A29D,0x180A52CA60EE16E3,0x85D88FB3D4E7F9BD,0x751822E2749970D7,0x8F141818E576E6F8,0xD8634FFB003AFE7F,0x4A52142BABE21888,0x5B7A8DBB0702,0x4A9FAE311B872277,0x5053C5AB0E35B428,0xEBEBD7827E9FC29E,0xC4590ADB12F24BD,0xC30F3B7E37E27135,0xA5C44D8D9DE5C468,0x556CE81AD2DD,0x36066EE3D62C212B,0xFE1EA5D78078EBBA,0x3B7C86DB8D7F7915,0xEEE231ABF631217,0xDBC64825272BD839,0x530741801B3C91A9,0x13A9C167843E7,0xC46BB040620BF5EE,0x9605392771578746,0x55E0FA1FE15E595E,0x775217CDF523B7B5,0xBE35CAF2EAF3EF6,0xFE5710BF1A5E30F6,0x14D066107DB1D,0x28A73813110F8CE,0x459A2CB2B8F0600,0xB394AF578D3FF64D,0x1D93568B1A08633C,0x17EC24587E77CD7B,0xE5D81083E937052D,0x10AC95DA87556,0x532CDF6E3FED03C1,0xDD62CAAA9269E049,0xAE4EF2F5A329318C,0x3B2BBF2A55CB6DEB,0x537F1DA82896B20,0x15B2060ABEA734E,0x12784F9F084A2,0x10F944D5347C5280,0x998C70B87D759DBF,0x82665F73E54A79B6,0xAE079975FD435FE3,0x974D05010F2A0254,0x4025DCCA0AF3554C,0x11051B7F995B2,0x69A277BE7045C53C,0xE65A54254A92A66,0x2B2D4DC2D8FA051A,0x71399E41D23B328F,0x158839DA8D7E3EA6,0x160208393612030C,0x6260B1D3D771,0x39794B1BF29D1909,0xC7A6A2E3E1AD841E,0xD3808657789020D5,0xC8E5833C2A22080,0x6A28F58AD598B36,0xF8530692C128E474,0x184EC50800DE3,0x2AB5865EE64510BD,0x3ADC5A8820AAE1A7,0xA7E33A72795BD704,0x1568ECFDAD0AE541,0x9B4D54EF0F4D073C,0xDD19B2ED4FAE6FCE,0xFA966EB18D29,0x6DD153831B23B6DA,0x9205B27A5B86B2B2,0x59C7EFED84131878,0x60A6B0B0BE13E104,0x573AA91138F30A49,0x8D0102053CAE2681,0x10035F7845622,0x1D5A6B5240EAA614,0x8E1382178DAD0CE9,0x8DFB211A42272121,0x773B80357E863913,0xCD54007C11571ACD,0x959B4A7A2FC52B6A,0x204C19E5AC9E6,0xFB63FA0A9D0B7A49,0x3813EA3725BF80CB,0x5C0DB1E25B43E35A,0x8D9302BC3A7CED5,0x9C4EF5D38BAAC458,0x56527E9FE07A2459,0x1A060D4241E2D,0xECF6A91292689E68,0x20F3AC188327427B,0xA4A3270566893DDD,0x3D648A71249B0F05,0xA826195E22C0E4D4,0x7F666BA1DBFD31AB,0x1276F98A29A71,0x8B0E38690DC88C07,0xCDA0D6DFEEAC7390,0x3C8D9E147FC761EC,0xF06CB113B0AD56F5,0x9D581256B9BFB386,0x7686CDF715219762,0x1780F87A9C0E2,0xA0C5F70AA604E6AD,0xD5AF3C9A7B649B03,0x8EF1FC237FBD7B8,0x5EA5111E35D526BD,0x2BF16C5A99B76779,0x65642210704DEDC,0x7452CF9B9D9E,0x627B4BEF3889BB26,0xD36FDF72F8CF1CE3,0xDE7C5E550CF8D086,0x120E7831A48E59CF,0x4554195EAC5779D6,0x1B18C63E1B30DE1D,0xD34495BFEE3D,0xCF45A904E91BCE09,0x585D386BE3119EF6,0xAEE6292C30FA8B7F,0x698D0A8AA447F6DF,0xA7452E45B26EF81D,0xA01CC28ECF20989F,0x80F3560E5D33,0xDF9DA4CF31D2D60A,0xDC22C680CAE08D06,0x9EEB361FBE04A3B,0x7EC878F235DDC11E,0xAE987EBF22832D29,0xE8455E68EE76BF6C,0x1A738EF06AEB,0x21C67B7EC90FFBFA,0xD90B0E8E7FA9AE95,0x44E2BB66252DCB7,0x2F63C5CE0A385C7A,0xDA41BB6E0C1A0D3,0xB9E081DF7F378A94,0x3106F0E62F19,0xA79A2527B7DA91C6,0x92F2CEED95D707DA,0x7AED6E603862294,0xE832521B8CBA8F9B,0x910C75EED2C825B2,0xF3A7B9322214A3D5,0xEC76811F770F,0xA9E6F9896BE6C8D1,0x4FA6073E82281AA2,0x64FD58B90DC4D435,0x4551B52901BE9F27,0xDEB82327A4296B7F,0x680D883F6EF91FDE,0x170E3A06ACC3B,0xB284EA1F67C7BAEA,0x1C5869259894F879,0x62F43BAC11507FDF,0xC0A2CDB6096CFFEB,0xB80C89ADCBF38FE8,0xCF67432187251709,0x2D74ECF00FD7,0xE084247F403EB4B7,0x427785CB80D65A92,0xDCAFFB9401D25C8C,0x5C835695880B361A,0xE95FA77E49CB9988,0x514B97FBBAC3A4C9,0x1E1DE0134B959,0x66C58D3BE396F341,0x2AF6EA7788C46069,0x3B6541B120928060,0x8AC6D64E2455E268,0x3AA9BDDB8B766AD4,0xA1B2F575457C8272,0x6EB75C37DEB4,0xEA95302133114F08,0xDC4617102CDC64C7,0x60C456FB372BE44,0xB90DD6D56DF6CD41,0xD23872BB18FC1A3D,0x531D9B8FF3CCD9E6,0xDEFFB9A976EC,0xE3009F8B55BEC82A,0x91A7E9257880CDD1,0x4BE9E288673FA852,0x68ADD3203C2C1577,0xE29EDF34F207E2DB,0xD3898B444CEA5477,0x14B00B3B03B36,0x6A9357E9DF80FEA8,0xDE1804456C09C7F5,0xD1F65385B82A6CA1,0x487F5C8D48042B38,0x34018BE8BDF29CF9,0x14065DD162E01CE3,0x1BC0430B46664,0xE5A4C0223A7E2A36,0x2AED26C535019DC3,0x2B9118EB35000BB0,0x2293E9DB0D8777DD,0xCF5CCD0E590261FE,0x18A53BD77BF4BBC7,0x19F450C42843F,0xB3CE243598353115,0xB394420E270A2E92,0x20862B9521AB6389,0x9AF51328EFD30D85,0x726660514664BEFD,0xFAED4162E3ACBBEF,0x1A22272FD322D,0xB3E8E4AAD70E2479,0xFF683DB32FC93288,0xE5D4AFC7F16DB12D,0x8D963521F4D20765,0x6A14913AE8BB6A68,0x614FD14F3ED18BC7,0x13FD9AF6118F3,0xE9BB5A6ED9729F77,0x41DF3DCD8397A1A5,0x8F89193D0AB2ED71,0x61C66ABD4B21404F,0x221195969AA4E05C,0xFBE0D4E7821A3AF6,0x839A9C93E018,0x6E64D43A15947672,0x2F2626F68E0C2613,0x555AF0E146EFFABE,0xFD86755FCDE2AFF6,0xF63FAF17A07138FB,0x93A35E894175EF40,0x14ABDD39EEE4B,0x3BF383BF1D3AA573,0x7BB9A79B7AD6314,0x64178F71EA300451,0x1EFBDBFB13D75B1,0xDE1FB519946244D,0xF7BC99F68EB8DA74,0x17299CDC313A9,0xE500085387FD8F0A,0x10737F09D8E1391,0xF4C574986AC443E5,0xEFA2F01E1ACAFE00,0x3578653A0CE28CCA,0x3B41DA89AB2FF7EB,0x1786493C08C1F,0xD7356292AE120CEC,0x93653B1A029701CA,0xE76F82D445443E1F,0x6D61703B496D2BC7,0x54457F15C8ACB9F0,0x1DA8288F48FFCB8D,0x1105F14642209,0x723556DB4AE3F8D,0x3A061A967FC00EB,0x5F84F34A176EA7C8,0x13E833DA3CC0841,0x627D4459816CA516,0xE8EB5769190C3702,0x83AA284AE112,0x3E6267BC774B923,0x5277030A4A1239D3,0x3A0030370FCF05F3,0xC6621947968A0D6B,0x628FDEB8AB66231A,0x29BE3F5878401799,0x11DF91B775429,0xF44E86F8417C7DC,0x42787E2414C678D6,0xD2D5BD0F109B4C65,0xDE535F260C70D941,0x9310BAC5DC84037C,0x148060B7840F701D,0x106C65A4181F4,0xEE55B957620CB5C1,0x55E1166F0B57B7D6,0x77A405BF51CE4F25,0x3EB1349410E014CB,0xE25AD538613BD115,0x52FE81D84C2470E3,0x982BE4285B72,0x9C865941AEC9AD25,0xD9DD6942F1538C8B,0x8CB3A51A9CA9473B,0xFAA9FE4E18265FD0,0x5DABDD06C4C50B24,0x1DB098B9A76B1632,0x800AE5A9E529,0x1BC707105953EF09,0x646E416ECF160E46,0x1AF50785636CB7FC,0xBBB3094B88AF9DDC,0x64EE343627235580,0x121A81C260B1DF31,0x1C553CA56AE57,0xAE7FE94786A4C494,0xBD149244C10C0148,0xF5F4C3112E7008C0,0xCB4FECDCDD695806,0xE02718E4B9092EB6,0xB14DC9ABBAF84E08,0x1221DE60D111,0x48B2DD458D21C58E,0x4FC2EF2E46305264,0xBA6336E2B50DC468,0x2FB0106F3FA5FB3F,0xE87BAECD597BD335,0xBBB0EDFF19A0C876,0x1EF2ABA4C7340,0xD5EF7AE21B9ABEFF,0x80A299F8608AD207,0xCDFACAAD71ACA129,0x6D67A4EBB3E13319,0x6EF921E4507BF6D7,0xD7103C9E40CB1519,0x128FEE9E919AC,0xB7F5A65DCA063AB0,0x8AD8EB0D845B15C3,0x2992D04893C7D982,0x3A4FA3BE64830D60,0x389FC24092D6E4C1,0xA7918D68BB357EFC,0x194E1903D65CD,0xE3B916CBDBD39506,0x58A4B4AFA78464EF,0x4BA018E826F3105A,0xCB63805393E0DB28,0x772B24965505BAC0,0x9F4490D66B71B41A,0x9D0603560CC6,0x589B15D879D1BDD,0xC5757CC100B06F9E,0x560603E1B5CC688F,0x1C53AF49D7C7F7EA,0x2F7DA4B1E0FE59C2,0xB7246B158AEA5BA4,0x1C5C3284E3A1D,0x5747CBFA67FB0BF6,0xBDD96F538500B095,0x3B031FDCC2B4667D,0x21614CE2B0A27969,0xA12325167CE5ADD,0xABF08DBED3BBBB2F,0x16610954F9E23,0xA81D391B48F4AED1,0x5B2EB16E4E73831B,0xB75C2465BE239,0x19D38A17F93D40A4,0x62FFA5F216D79968,0xDC8D25F1A4C4AA3,0x21A6C55FA0200,0xA067665D810878C4,0xF08C8F61B896E7F1,0x38876433424B3563,0x65E81A5D0ABDB9F3,0x1BA11DC5D7449D93,0xE2609F60380E6505,0x1DE0F8C286776,0x9D2ED0B9BFFDA9A8,0x7280F663EF99BF97,0x5B9A9684A4230E26,0x45623485877112B2,0x20D34CCD8D34C055,0xA99FAEC806D400AD,0x94F218C148CE,0x35320879258D281B,0xB9BAD39419393798,0xBEC1F84599E93267,0xAF7D33B4494A6AE,0x44D8FBE144675DA8,0x162CDAA02B9199AC,0x4D1282AB93C8,0x47DCBCFF51C1108B,0xC7BA4ECFE1B70442,0x5A69211C6A2F4999,0xD02158C69F7C491A,0x9F154D72D4E7E927,0xB4780F6EB64438F2,0xF2D3CC4BC008,0xC585C31ACDF75F15,0x27AEF5C9140170B6,0xEE19086E5B6D0FC2,0x459FE7A758AEA172,0x464C922A87C7AE8C,0x1AAD2756DE22286A,0x2058561DCF1D7,0x22D33C1827F0FA12,0xA972F7AB4E5E7DAD,0xA18A447BA5560CE,0xFA2846360AE9B3C,0x40162C7D1730E5D8,0xEC87C83040A13683,0x1BD90BC4B5C5C,0x29FA4C5DCC44608B,0x24DAEBC77417B7CF,0x4C253DC60E7AB933,0x260CA68A4515CE0,0x192996D60DA8F59B,0xA90103BDED2D0E1,0x219EB679D9A17,0x17AB8C3C0D3A3152,0x2A00D6647C8BC8C9,0xC274BC857AABF6D1,0xDE5D622A78114CED,0xE1029D3E448A5F4D,0x2680532FBA77486B,0x1D88034DEC60D,0xA94076878F5DC53D,0x37EB828ECE9D23BE,0xAD3F6CBD35639B4C,0xDF32276CF971921,0xD90787E6025C608A,0xF7038C9A82996366,0x102DE083D9254,0x2400E370B7729B1B,0x26ECD7FC92F71C71,0x841993E12C5644A8,0x691D65765393CC28,0x4A0105CEC34EF466,0x65B4B79219DBC296,0xB1C0757CAB50,0x14A969BEC5DB1A59,0x871FB1862F336291,0x907B04C14A86C72,0x657488FE38173755,0x9970D26425E9A739,0x4533E0AA24CDAE32,0x1F75D331082A7,0x5B26601583C13C5C,0xE09A5165D719A7F,0xAD8AA538602B9DE7,0x1E4D4579CBBFAB8C,0x7F3461C7638FE52B,0x5DAA64204AD523DC,0x145A69699EE94,0x2D5075833158727E,0x896551ACB849CE79,0xA681AF617647F788,0x1723B5EDDBE45009,0x9B5854E0EB1640D9,0xD62688D00D7182BA,0x19BA6EEC7E1CC,0x77514AC85F8FE7F,0xB1809AE785EA2C68,0x6C6ED5EABC9A5F7,0x70674BDF0E7404E,0xD56E93EFDDE8CAC9,0x2417F53265519D4C,0x1114DFBEBCAAE,0x1B1FA3A4C05C2E92,0x1A828F0C63D0C314,0x862A472BAEC50157,0x3736320CDEAAD20C,0x96E9DD3B0F1136D4,0x9C3B665979C3DC81,0xBA7257F0E70D,0xCF79FDD3CD205172,0x44327DB60363A751,0xBB823E50DCCEB37C,0x1D7F17F861449549,0x42A182EE2558B6B4,0x2D2CB0F6D9C70974,0x1913675156E90,0xFC2AD0CAE142EAC8,0xF3028E6768A050DD,0x9FAC46D3CCCBC00D,0x42051099504F85B,0x6E5E01D26513973A,0xE08A22090462C3F7,0x1FCB27F6F058D,0xD442A2710D7279C8,0x47C9353107967853,0x3186B539B65ECCA3,0x2F9040AC3FAAEC11,0xFC81BC15040A0242,0x33421E047DB53C84,0x181EF4D06E884,0x5AD2B639D609EDD3,0xCF707AE8328321A0,0xFD0EB9CDBB3E9B67,0x3DCC84DB2747F7E,0x788F99E1AA81E624,0x89285D9EAD58FAF2,0x100EE7BAABF21,0x9ED5BAD1C958A533,0x8ECBEFD2F7E8004,0x2C51E8D9FF1986C,0x28BE4F7E03E8F96E,0x4E31D4A1E2E19C4D,0xE13532B544BFFD85,0x63807C8EBF63,0xCBA318968A0080EA,0x6E1EA446FDF32F6E,0x3918FDEE0945EEFB,0x7395E3591BED04B3,0x9BF369DF4E1D1F68,0x20B04F1EDA6EC7A9,0x1F65E0BA40D36,0xA30A39CEDD4A222B,0xFA4283DC48E5BA9A,0x28F21B66EEDEA5A7,0xF281B97309A457FD,0xCE8146C6C9506F0F,0xF137C2F24953699C,0x1C832AE77E493,0x10D1C03A6D49BC4D,0xFBED2EDEAE19ED12,0x2300FF1D15A1FCE5,0xEEA2B1ABD907BB86,0x1B749CB24E5DF0D7,0x7F2B3B838935CAC7,0x15CCF8AF3C88E,0x8957207CAB35FDA7,0x3F202E983A7C2251,0xF84C77733F94A993,0xD5E9BAC3F2480FAB,0x2AB0A873EA9DB538,0x22279784D7692684,0x3E9DB4C486CF,0x4E48DB2718C189,0xF22832BC2DBD319,0x1014B3D4C276F007,0xAE0C8B5E22B206CC,0x94D40F9081FD4286,0x7BC1F98AC603050F,0x22D2C55CC94CA,0xCB6B8F9D520E9D80,0xE539AB381B667F8A,0x249202E9866E1249,0xF527C91DA98D2C27,0xAC19181EB83403FD,0xCC88C5918696F4A6,0x5001A3D48F32,0x4AAD16DDA72E0B3D,0x4FE27BA2AD11DB48,0x33B1070F26174171,0x7C301CB1AC90C1DB,0x261244E5F9079EEE,0xE8FE75871A7C68AD,0x44A1C4ABA16A,0x11676A8DDDBD0340,0x5CB2C0CEB9AFA00F,0xDACF20980C55013A,0x3072DF6D1397017C,0xCD8FD549DBBDED8F,0x52AECF1796CC84D3,0x49D28C2E88AE,0xB65B1735CA655C4D,0x6F76CCD8558A35E5,0x4756098172764FAE,0x133672ABE7B8AC79,0xA77420038C2DF576,0x5C8602487789F5F6,0xCD45E977BA33,0x4405E9F98CDA4908,0x7CCCA71AEF54E06F,0x6CFAF82FED48388,0xBFF533C830EF401F,0x35379607CB533986,0x4312D54C6C5ABA66,0x1CB73871DFE06,0x3BD9746B54431F3C,0x82A5240D55F89DC4,0x4A1A73BB64F9B140,0x20F82C747F685C92,0xC19FE8486FDED4FE,0x2203D84CB49CC0CE,0x1E880FF73EE6D,0xC0C1055035534E38,0x6BF0F508C87BD876,0xC78F9C503C5EEF6E,0xD7092C550FBE8E50,0x750D9410A1E5619C,0xAACF3B982D1CEABF,0x3F8C7931F23A,0x68B429BAD6B2774E,0x9748A385107A0501,0xE8C1C619F4E25A52,0x11C290A2752B1858,0xF03F885523B1325E,0x614F000D3A10634F,0x11A786BC97D6A,0x9B3A5EF04A5AE789,0xC560859153F5E0D8,0xE0CBAC4448FFDCDE,0x28E77ED61B6E805F,0x6D1A53063B71CD8,0xBCB2A1656BB817B7,0x4249D8400C62,0xB7FA854786AF5AC0,0x7A5DC8209E7291C,0x1169AA6E93471504,0x6F86598C111C882A,0x632AB04739CE3699,0xDE9876A7284C1D84,0x84269C032152,0x5F8B038957660A8C,0x2845430517B568F7,0x8ECFC5848B09126D,0x7FA5CC4B07ADF64,0x8C729000AD353D9E,0x5C32F17F662D27AF,0x8BE8097F6AD6,0x7D89D3929A3FB996,0x73895E614D1731B,0x69525E899F54687B,0xD420758D66EF5494,0xDB58FC5E91390710,0xB5137A7326DFDBD3,0x34DBC48E8154,0xD214787A42B34E0B,0x5BAB3A90CA91799F,0x66AF1457F338AE10,0xE34D45E593BA63CF,0x4629FC74E87A2409,0xC9C511732392B012,0x1188E1D7E9A74,0xA02F0C97DFAE7E47,0xB637B49189CB0814,0xC3F74B323BE03840,0xB31534EB340465AD,0x3234E3EB38BFDD68,0x7DC07CCB02369028,0x1F414C8FDA45B,0xBBDF17A1189F892E,0xE36B701711EBAEE3,0x9246EB958653A11B,0x83CDF571CC3ADD4C,0x2995DA9A115E2745,0x5E59E02C5DF39A62,0x6C681B957EEB,0xD79C7A3713401C3E,0x3C15A60271E5BA08,0x5A75226D8E7FE905,0xD133222B3A45B328,0xAF446C79B7610870,0x3EDCEBFDC33B0E46,0x1E5C107CD7990,0x7B89CFDF854F487B,0xEBEE5F2F24618E2B,0x75A442065C2CB258,0x73C059841B74E5E8,0x67AC618123BBA529,0x27580ED44099CF33,0x1C523C646E1BB,0x5548036B6B86B283,0xAACB716B6ABC7050,0x89CF0F9F1F6552C0,0x9A665F8400D87BA4,0x84D2AA1F1DF63636,0x6CDCEC2BE880938E,0x2AB398292840,0x2B94F69AAD082CD3,0xB13850F11C95D4E7,0xE7192BD8FACF99D2,0x7E9D90C86D4400AE,0x32AC85A534E2B4AF,0xB91249979A9882A8,0xB6295FB3D086,0x84EF739E89074420,0xF7756424F99DE4BE,0x4379E183A608DABB,0x7DBDEBBE169AEF00,0xBE1665D536F68CCF,0xE1CD3876BC9C435D,0x1055E38120373,0x390D402CE5D3DC44,0x8CFA0A3677B6515F,0x5B5D988515E05F4C,0x69F9F742A9C22D90,0x8E6B864D6F3E299B,0x5347C49B541CE666,0xED5A3DA86FB,0xF6DC78F623D7E6F7,0xF6222F21867029C1,0x58A4C0701A4B488E,0x4E3B8B8547AE74B0,0xD5D3C557DF93FFF0,0x8846F7445BE15891,0x1795E70C5F6B0,0xEC33500459DAEDE2,0xFA19D820518F3376,0xB73A6315501F729D,0x90B0F2390AE91B33,0x7D7DE108A2D5305F,0xA731403DDD7DB5D7,0x1E61328D3B3A3,0x9907AE5C8C7C09E2,0x829A77D65E771750,0xEBCB0DA23A387DF2,0xC554C6EACC8C41CF,0x5C6FC6CF17434CDC,0x8B9AB73D5E274CE3,0x1D6D62BADC253,0x75FC836641BC3BA0,0x66160AC7D263AF87,0xF272A8ACFEC28D22,0x29AEC47D8B0F2B2D,0x8AEDAE0C343E97DF,0x8F4D42A7272DAF84,0x1024177DE4DBE,0xF152430FBB0B1DBE,0xE3568C1C356BF46F,0x1364FC57DF940142,0x53A0739714D93EDF,0xA7E14F8906B19D5,0x84C8104B46A7DD44,0xDB2434BADA3B,0x1F3F7FE37E16E784,0x8E4743BF96285B45,0xCB2146A4B91A2E18,0xB3EAB0B7937035DD,0x96FF028F37DEFFB2,0x187B521A5CBDB905,0xC7786821C584,0x15D2C69187FE7E9B,0x5E1E586E1C413B8F,0x377A2CD34B273EE5,0x444AF3ECD606D007,0x448C5CFB70FB3AFA,0xA77280D2FB06E05F,0xF2F0B9DD6B2,0xF7A15794731CA711,0x1DA89839EBAB4015,0x6A628685D8AAC42C,0x68ADE67B3E83DFA8,0xDEE7A96D338D637A,0xBAE6D774CCB3EEB0,0x1CB7AC39710BD,0xB18E188A83606185,0x19DD500E793EB5F9,0x12C76A87E568F3A7,0x568D47E6FEEDA55D,0xE7CD608C95E2A322,0x31C5EEAD9A5A8DDF,0x1D44A00359883,0xBB9629B9F11E02B2,0x871EF19A1D125468,0x6AE239228B48B4F4,0x6AB3A7C2C690FDDE,0x58749FDB9E9DC64D,0x19F6B937A2FB5E4,0x134DF49A77166,0x7C9E71B5088BD450,0xE377B6299A84EC23,0xB283FCD8652C0821,0x9ED4A93C9A53B760,0xD3895089CBB76193,0x248C2AB502D79774,0x86E9551D6334,0x4CDE82E4D578720E,0x897CEACA236F4406,0xD47C0EBAEAE4154D,0xF65FF050DA8B7E0A,0x78660BFEC5B21A5,0x98F50C69F901544A,0x17B78FF6A399B,0x4E1FF36CD7E657A6,0xABB7C9BBBDB37F28,0x23967188A4B2E87C,0xD5F12C0E14AD5D4F,0xAE8217C059F26235,0x18215528BFB615F5,0x17D9FFA6E5F1E,0x8F3EF16B6462AEB4,0xBB37519662D63BDF,0xD74C619945D19BBB,0x1F802B44351DE23B,0xD7D3D26D97C6642E,0x45B6B0644571C9,0x376A39B9CF1E,0xA6BE7DD4152463F6,0x684815D16113586F,0xACA6C2912CD33E4,0x4A2EE4DDAC35C32E,0x238BF66DB232AA57,0xE78EE0AB10B8AFFD,0x14D1A8692A152,0x62940A3930B9750E,0x9FAB4A381E83B99B,0x3B4349F3A96F3CA5,0xBDF20EABF8279605,0x69FF11F9497B171F,0xB754B8BE488D1AE5,0xA126632841F2,0xA1D6E2C81467F02A,0x6787FC23330482B1,0x12C08B821649EC27,0x27770AD80F13E3D0,0xA8482E97530FA1AB,0x2A6B9482E37BF91F,0xCD9C8BA6CF19,0xCB00E6CD755E2339,0xF28E1D920152F636,0xEA6F07B885ACD928,0x802F25F50676AC51,0xB8CE8BC8DF3FCB48,0x4B50101647FA93D5,0x856A3D3F007B,0xC1A591DDECED3709,0xBF70B66A6AB2638B,0xCE7F185ED93BA38F,0xDBE994643E5AECE9,0xA492AE884E240DB0,0x87AD9344EEAD69DF,0x10E9DBBB4E870,0x47F1214544F1FDFC,0x26C218639D0C745E,0x361A32B9DB65AF82,0xD582A03B1CE0BEC7,0xD4895F190FA8E4AE,0x7A6EC93531DF50F0,0x1A91214205262,0x1DD92154C952A9E3,0x7253E6EB1F5DD09,0x2950BA533570EAB8,0xB4F99783D14D82F3,0xFA8DE285BDAFB52C,0x621CC3C8DFF26687,0xC1236623F3CD,0xA28066213CFF86D8,0x8519BE9066E70EA9,0xADA3B90C9C9D0822,0x78260120D02319E,0x63456744FA182ED4,0xB0D8F625E224DB95,0xAC3C875FC878,0x785EC3168B24B327,0xA652B12B6F4863CA,0xFE9336F4BC8B2ABC,0x449DC91E15F6FA6D,0x565C4F0DEE478F13,0x9ADEE49B0BB957A5,0xBF4841C7170C,0x261266AEB6489F86,0x70F47B3C026A7CD7,0xD53F719F592D2695,0xC8EF9E057CF90CDC,0x207ABC26FBB82D57,0x5F34AB5AD3B00CDD,0xFAC95A6BE005,0x2880FCA6BFC771FC,0xE8A1ED366C5EAF41,0x26DEC38C89ACC9AE,0xF433245E87B28253,0xED43C4B08B4E1835,0xC605E763F1368AD7,0x15274B28B2E38,0x768B9867C45D4BC4,0x4D682CC1A9E19CCE,0x1F015815A86514D3,0x9801C170584526D2,0xAF7C9183EA0ED04B,0x12FC4454B033E85,0x122D555B3EB2A,0xAF3432BF24DD5D01,0x88931E27357EA51,0xB4BC4DEC5765FFC9,0xBAB5802D1F2DBE30,0x77945CF510624591,0xDF905FF2B98F9D53,0xC541ECFC19A6,0xD3CF88CEDDA56BA8,0xB611D9A6A8622C83,0x19986B1EC1D394D3,0xB45D8120DD6D0E2D,0x4DC51083A59F29EE,0xDD31431E3A000D25,0x1E1A8F196D140,0x16EC5885A01EEFEA,0x4E449BDA055D1DDA,0x58F2FA8D2B55E29F,0x17B02F3EDC4EFCAE,0x50582C76E701EFE2,0xD4114A56CFA73858,0x7FE05C9B4776,0x7B69B57C0CD4A1AE,0x11723646A501876A,0x6221F4F809449E57,0x3A5C8C953FEFDCC,0x74B91C97DE053B8A,0x5E7673BA3120D0F5,0x1218FDE7C33D4,0xFFFFFFFFFFFFC5E9,0xFFFFFFFFFFFFFFFF,0xFFFFFFFFFFFFFFFF,0xA1397C7864FFFFFF,0xFC589FA8688D839,0xF86335AC52097FD0,0x1BDA7D338DBD6,0xBEF0CE72B6E9D1BD,0x92E0A4F2CA7CCCFF,0xA0B2035BB47215FC,0x6D36985E0F7DFC52,0x6BB989478F1D3A0F,0x8C5988BFDF5F4F7C,0x6E2AAF9B9D9E,0x425529A64ABCAC1F,0x49734E54998F89B6,0x9C429949C1DCE97C,0x9BE2625E5A7B4023,0x7E239939824146A,0xB15C34D4A1653801,0x672443E98A7A,0x18D5AB42DC1B2CA0,0x71C6EC0E867DCDCF,0x26DEAB045FD561B1,0x45B3BA1D5BD767C7,0xABA0A9E948A246A,0xA721BAFBE893B610,0x80697B53F1E1,0xAEF4EA78C6BAB2D4,0x8FEED1FA59A392FC,0x388326919250140F,0x1B94EB75B4BE5DFF,0x5BE9D0EBCDE6C767,0x63006B60E4B989E3,0xA140AE748A84,0x8CEA2016847486F,0xC383BC14A70F364D,0x2F2963663C26BBAA,0x342E5B2BD6F661DB,0x94F684BAC65F5EA6,0x91E13307F205794F,0x15C3EB457D0C5,0x15D9717B534B56F9,0x57ED5C5F28EEED33,0xAA224149D1792C1,0x2B663432FFF290C3,0x65B645B7893F3761,0x8C45450423A64BF5,0x2072BDFEECFDF,0x2E9A77227F6B4DC7,0x26A6145E0CD52870,0xE8E7255BCCFF6551,0xC04097B01E64680A,0x56B98EE30BBE9A40,0xF3BD5AE69AE90DEB,0x1ADE268AB0C0B,0x69C81B94AB88A2F5,0x52881065DEC1BF2C,0xD81C0EB80E03EA8B,0x42A15D8FBBB829E,0x2ADC2AE485616A64,0x7000B77296196229,0xB3B37F2C686A,0x8392008D794918AE,0xEBDABCAB9B836E2D,0x279BB892BC901E72,0xC16D3DF36FF6DB3E,0xBD3554E2019FFE83,0xAE5BB534F18B3147,0x4E8CD30C178C }; #endif #endif #endif
the_stack_data/20171.c
#include <stdio.h> long int factorial(long int num1) { if(num1 == 1) return 1; return num1 * factorial(num1 - 1); } int main() { long int num1 = 0; printf("Enter a number for it's factorial: "); scanf("%ld", &num1); printf("The factorial of %ld is %ld\n", num1, factorial(num1)); }
the_stack_data/125139321.c
#include<stdio.h> int main(){ int x; printf("Enter a numbere\n"); scanf("%d",&x); int a=sum(x); printf("%d\n",a); return 0; } int sum(int n){ if(n==1)return 1; return n+sum(n-1); }
the_stack_data/234518717.c
// Program for Matrix Adding & Subtraction #include <stdio.h> int main () { int a [3][3],b[3][3],c[3][3],i,j,x; printf ("Matrix\n\t1)sum\n\t2)difference\n\t3)transpose\n"); scanf ("%d",&x); switch (x) { case 1: { for (i=0;i<3;i++) { for (j=0;j<3;j++) { b [i] [j] =0; a [i] [j] =0; c [i] [j] =0; } } printf ("enter 1st matrix\n"); for (i=0;i<3;i++) { for (j=0;j<3;j++) { scanf ("%d", &a[i] [j]); } } printf ("enter 2nd matrix\n"); for (i=0;i<3;i++) { for (j=0;j<3;j++) { scanf ("%d",&b[i] [j]); } } // Sum of matrix for (i=0;i<3;i++) { for (j=0;j<3;j++) { c [i] [j]=a[i][j] +b[i] [j]; } } printf ("\n The sum of two matrix\n"); // Print the Sum for (i=0;i<3;i++) { for (j=0;j<3;j++) { printf ("%d\t",c[i] [j]); } printf ("\n"); } break; } case 2: { for (i=0;i<3;i++) { for (j=0;j<3;j++) { b [i] [j] =0; a [i] [j] =0; c [i] [j] =0; } } printf ("enter 1st matrix\n"); for (i=0;i<3;i++) { for (j=0;j<3;j++) { scanf ("%d", &a[i] [j]); } } printf ("enter 2nd matrix\n"); for (i=0;i<3;i++) { for (j=0;j<3;j++) { scanf ("%d",&b[i] [j]); } } for (i=0;i<3;i++) { for (j=0;j<3;j++) { c [i] [j]=a[i][j] -b[i] [j]; } } printf ("\n The difference of two matrix\n"); for (i=0;i<3;i++) { for (j=0;j<3;j++) { printf ("%d\t",c[i] [j]); } printf ("\n"); } break; } case 3: { for (i=0;i<3;i++) { for (j=0;j<3;j++) { b [i] [j] =0; a [i] [j] =0; } } printf ("Enter the elements of matrix you want to transpose\n"); for (i=0;i<3;i++) { for (j=0;j<3;j++) { scanf ("%d", &a[i] [j]); } } for (i=0;i<3;i++) { for (j=0;j<3;j++) { b[j] [i]= a[i][j]; } } printf ("The transpose\n"); for (i=0;i<3;i++) { for (j=0;j<3;j++) { printf ("%d\t",b[i] [j]); } printf ("\n"); } break; } default: printf("Wrong choice"); } }
the_stack_data/247017282.c
// local_scope.c typedef int T; void f(void) { T y = 1; // T is a type if(1) { int T; T = 1; // T is a variable } T x = 1; // T is a type again }
the_stack_data/103265126.c
#include <stdio.h> #include <stdlib.h> int main() { const int N = 5; int V[]={5, 4, 3, 2, 1}; int i, j, k, min; for(i =4; i < N; i++) { min = V[i]; j = i-1; while(j >= 0 && V[j] > min) { V[j+1] = V[j]; j--; } V[j+1] = min; for(k = 0; k < N; k++) printf("%d\t", V[k]); printf("\n"); } }
the_stack_data/111142.c
void test1() { int a, b, c, d, e, f; a = 0; c = 1; do{ c = a + 1; c = c * b; if (b > 9) { f = d * c; c = f - 3; } else { a = e + 1; e = d / 2; } a = b; } while (a < 9); a = a + 1; }
the_stack_data/136604.c
#include<stdio.h> #include<stddef.h> int main(){ char c[] = "1234"; char *p1 = &c[1]; char *p2 = &c[2]; if(p1 < p2){ printf("p2 - p1 = %d\n",p2 - p1); } }
the_stack_data/36075609.c
extern void abort(void); void reach_error(){} /* * recHanoi.c * * Created on: 17.07.2013 * Author: Stefan Wissert */ extern int __VERIFIER_nondet_int(void); int counter; /* * This function returns the optimal amount of steps, * needed to solve the problem for n-disks */ int hanoi(int n) { if (n == 1) { return 1; } return 2 * (hanoi(n-1)) + 1; } /* * This applies the known algorithm, without executing it (so no arrays). * But the amount of steps is counted in a global variable. */ void applyHanoi(int n, int from, int to, int via) { if (n == 0) { return; } // increment the number of steps counter++; applyHanoi(n-1, from, via, to); applyHanoi(n-1, via, to, from); } int main() { int n = __VERIFIER_nondet_int(); if (n < 1 || n > 31) { return 0; } counter = 0; applyHanoi(n, 1, 3, 2); int result = hanoi(n); // result and the counter should be the same! if (result == counter) { return 0; } else { //ERROR: {reach_error();abort();} } }
the_stack_data/28262049.c
#include <stdio.h> long long int power_of_two(int e) { long long int x = 2, y = 1; while(e > 0) { if(e % 2 == 0) { e /= 2; x *= x; } else { e -= 1; y *= x; } } return y; } int main() { int T, N, i; scanf("%d", &T); for(i = 0; i < T; i++) { scanf("%d", &N); printf("%lld\n", (N + 1) * N * power_of_two(N - 1) / 2); } return 0; }
the_stack_data/150144517.c
/* Copyright 2019 Markus Ragnhildstveit Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> #define MAXCHAR 1000 int f(int *lookupTable, int c1, int c2, int c3); char **str_split(char *a_str, const char a_delim); int makeLookupTable(int *lookupTable, char *filename); int getCellInfo(int **cells, char *filename); void printArray(int *arr, int size); void runIterations(int i, int *lookupTable, const int lookupSize, int *cells, const int cellsSize, int saveToFile); void writeToFile(char *fileName, int *history, int h, int w); int main(int argc, char *argv[]) { char *rulename = "mod2.txt"; char *initname = "middle30.txt"; int numOfIt = 100; if (argc == 4) { rulename = argv[1]; initname = argv[2]; numOfIt = atoi(argv[3]); } int lookuptable[8]; int *cells; makeLookupTable(lookuptable, rulename); size_t cellsSize = getCellInfo(&cells, initname); runIterations(numOfIt, lookuptable, sizeof(lookuptable) / sizeof(lookuptable[0]), cells, cellsSize, 1); free(cells); return 0; } int f(int *lookupTable, int c1, int c2, int c3) { if ((c1 != 1 && c1 != 0) || (c2 != 1 && c2 != 0) || (c3 != 1 && c3 != 0)) { printf("weird values: %d, %d, %d\n", c1, c2, c3); return 0; } else { int index = c1 * 2 * 2 + c2 * 2 + c3; return lookupTable[index]; } } char **str_split(char *a_str, const char a_delim) { char **result = 0; size_t count = 0; char *tmp = a_str; char *last_comma = 0; char delim[2]; delim[0] = a_delim; delim[1] = 0; /* Count how many elements will be extracted. */ while (*tmp) { if (a_delim == *tmp) { count++; last_comma = tmp; } tmp++; } /* Add space for trailing token. */ count += last_comma < (a_str + strlen(a_str) - 1); /* Add space for terminating null string so caller knows where the list of returned strings ends. */ count++; result = malloc(sizeof(char *) * count); if (result) { size_t idx = 0; char *token = strtok(a_str, delim); while (token) { assert(idx < count); *(result + idx++) = strdup(token); token = strtok(0, delim); } assert(idx == count - 1); *(result + idx) = 0; } return result; } int makeLookupTable(int *lookupTable, char *filename) { FILE *fp; char str[MAXCHAR]; char *relpath = "../"; char *path; path = calloc(1, strlen(relpath) + strlen(filename)); strcat(path, relpath); strcat(path, filename); fp = fopen(path, "r"); if (fp == NULL) { printf("Could not open file %s", filename); return 1; } int i = 0; while (fgets(str, MAXCHAR, fp) != NULL) { char **split = str_split(str, ' '); if (*(split + 1)) { if (strcmp("1\n", *(split + 1)) == 0) { lookupTable[i] = 1; } else { lookupTable[i] = 0; } i++; } } fclose(fp); return 0; } int getCellInfo(int **cells, char *filename) { FILE *fp; char str[MAXCHAR]; char *p = "../"; char *path = calloc(1, strlen(p) + strlen(filename) + 1); strcat(path, p); strcat(path, filename); int size = 0; int len = 0; fp = fopen(path, "r"); if (fp == NULL) { printf("Could not open file %s", filename); return 1; } if (fgets(str, MAXCHAR, fp) != NULL) { char *end; len = atoi(str); } int i = 0; char *binarystr = calloc(1, len+1); if (fgets(binarystr, len+1, fp) != NULL) { for (size_t j = 0; j < strlen(binarystr); j++) { if ('1' == binarystr[j] || '0' == binarystr[j]) size++; } *cells = malloc(size * sizeof(int)); for (size_t j = 0; j < strlen(binarystr); j++) { if ('1' == binarystr[j]) { *(*(cells) + i) = 1; i++; } else if ('0' == binarystr[j]) { *(*(cells) + i) = 0; i++; } } } fclose(fp); return size; } void printArray(int *arr, int size) { for (size_t i = 0; i < size; i++) { printf("%d", arr[i]); } printf("\n"); } void runIterations(int numOfIt, int *lookupTable, const int lookupSize, int *cells, const int cellsSize, int saveToFile) { if (cellsSize < 3) { return; } int *history = (int *)malloc(cellsSize * (numOfIt + 1) * sizeof(int)); for (size_t i = 0; i < numOfIt; i++) { printf("t = %zu: ", i); printArray(cells, cellsSize); int firstVal = cells[0]; int leftVal = cells[cellsSize - 1]; int rightVal = cells[1]; for (size_t j = 0; j < cellsSize; j++) { int middle = cells[j]; int index = i * cellsSize + j; *(history + i * cellsSize + j) = middle; cells[j] = f(lookupTable, leftVal, middle, rightVal); leftVal = middle; if (j + 1 == cellsSize - 1) { rightVal = firstVal; } else { rightVal = cells[j + 2]; } } } for (size_t k = 0; k < cellsSize; k++) { *(history + numOfIt * cellsSize + k) = cells[k]; } printf("t = %d: ", numOfIt); printArray(cells, cellsSize); writeToFile("data.csv", history, cellsSize, numOfIt + 1); } void writeToFile(char *fileName, int *history, int w, int h) { FILE *fp; fp = fopen("../Plot/data.csv", "w+"); for (size_t i = 0; i < h; i++) { for (size_t j = 0; j + 1 < w; j++) { // printf("%d,", *(history + i*h + j)); fprintf(fp, "%d,", *(history + i * w + j)); } // printf("%d\n", *(history + i*h + w-1)); fprintf(fp, "%d\n", *(history + i * w + w - 1)); } fclose(fp); }
the_stack_data/212644510.c
/** Produto escalar de dois vetores de N posições. A.B = axbx + ayby + ... + anbn. */ #include <stdio.h> int produtoEscalar(int sizes, int *v1, int *v2){ int i; int escalar = 0; for (i = 0; i < sizes; i++){ escalar += v1[i] * v2[i]; } return escalar; } int main(){ int n; printf("Dimensão dos vetores: "); scanf("%d", &n); int v1[n]; int v2[n]; printf("Escreva os %d elementos inteiros de cada um dos DOIS vetores.\n", n); int i; for(i = 0; i < n; i++){ scanf("%d", &v1[i]); } for(i = 0; i < n; i++){ scanf("%d", &v2[i]); } printf("Produto escalar: %d\n", produtoEscalar(n, v1, v2)); return 0; }
the_stack_data/14200015.c
/** * @file getpath.c * * ch05 5.2 q5.6 */ #include <stdio.h> #include <stdlib.h> int main(void) { char *env_name = "PATH"; char *path_str; if ((path_str = getenv(env_name)) != NULL) { printf("PATH = %s\n", path_str); } else { printf("PATH not set\n"); } return 0; }
the_stack_data/822550.c
#include <stdint.h> extern void int80(uint64_t rdi, uint64_t rsi, uint64_t rdx, uint64_t rcx); typedef struct { int hours; int minutes; int seconds; } time; typedef struct { int day; int month; int year; } date; static time currentTime; static date currentDate; void updateTime() { int80(4, &currentTime.hours, &currentTime.minutes, &currentTime.seconds); } void updateDate() { int80(5, &currentDate.day, &currentDate.month, &currentDate.year); } int getHour() { updateTime(); return currentTime.hours; } int getMinutes() { updateTime(); return currentTime.minutes; } int getSeconds() { updateTime(); return currentTime.seconds; } int getDay() { updateDate(); return currentDate.day; } int getMonth() { updateDate(); return currentDate.month; } int getYear() { updateDate(); return currentDate.year; } void setTimeZone(int tz) { int80(3,tz,0,0); }
the_stack_data/36074581.c
#include <stdio.h> #define BUF_SIZE 65536 int main(int argc, char **argv) { int l, count; FILE *fpi, *fpo; unsigned char patch[256]; unsigned char buf[BUF_SIZE]; fpi = fopen(argv[3], "rb"); count = fread(patch, 1, 256, fpi); fclose(fpi); fpi = fopen(argv[1], "rb"); fpo = fopen(argv[2], "wb"); if(fpi && fpo) { int rc = 1; int first = 1; while(rc > 0) { rc = fread(buf, 1, BUF_SIZE, fpi); if(first) memcpy(buf, patch, count); if(rc) fwrite(buf, 1, rc, fpo); first = 0; } fclose(fpi); fclose(fpo); } return 0; }
the_stack_data/200143808.c
/* Exercise 1-22 * Write a program to "fold" long input lines into two or more * shorter lines after the last non-blank character that occurs * before the n-th column of input. Make sure that your program * does something intelligent with very long lines, and if there * are no blanks or tabs before the specified column. */ #include <err.h> #include <stdio.h> #include <stdlib.h> #define FOLD 40 /* fold point */ #define MAX 1024 /* max line length */ int main(void); void usage(void); void fold(char *, int); int main (void) { FILE *fp; char *line = NULL; /* current input line */ size_t linesize = 0; ssize_t linelength; fp = fopen("test.txt", "r"); /* file with content */ if (fp == NULL) usage(); while ((linelength = getline(&line, &linesize, fp)) != EOF) { printf("LL: %ld \n", linelength); if(linelength >= FOLD) { fold(line, linelength); } } free(line); if(ferror(fp)) err(1, "getline error"); return 0; } /* fold lines */ void fold(char line[], int ll) { int i, j = 0; for(i = 0; i <= ll; ++i) { if(j == FOLD) { printf("%c", line[i]); putchar('\n'); j = 1; } else { j++; printf("%c", line[i]); } } } /* program usage */ void usage(void) { extern char *__progname; fprintf(stderr, "usage: %s \n" "check test.txt exists\n", __progname); exit(1); }
the_stack_data/176705352.c
#include <stdio.h> #include <stdlib.h> // Quick & dirty Behringer BCR-2000 MIDI parser. // Preset 2 is relatively predictable: 8 channel operation for all knobs, all 7 bit. // row cc // ---------- // 1 10 8 // 4 groups // 12 13 // 2 71 // 3 74 // 4 7 const char *cc[128] = { [10] = "a", // top row [8] = "b", [12] = "c", [13] = "d", [71] = "e", // bottom 3 rows [74] = "f", [7] = "g", }; unsigned char byte(void) { int c = fgetc(stdin); unsigned char b = c; fprintf(stderr, "byte %02x\n", b); return b; } void midiroute(void) { unsigned char chan; unsigned char cmd; unsigned char num; unsigned char val; next: do { cmd = byte(); } while (!(cmd & 0x80)); chan = cmd & 0x0F; cmd = cmd & 0xF0; switch(cmd) { case 0xc0: val = byte(); // fprintf(stderr, "pc %d %d\n", chan, val); // Send a Pd style message. fprintf(stdout, "b_%d 1;\n", val); fflush(stdout); break; case 0xb0: num = byte(); val = byte(); if (!cc[num]) { fprintf(stderr, "cc %d %d %d\n", num, chan, val); } else { // Send a Pd style message. fprintf(stdout, "%s%d %d;\n", cc[num], chan, val); fflush(stdout); } break; default: fprintf(stderr, "? %02x\n", cmd); break; } goto next; } int main(void) { midiroute(); return 0; }
the_stack_data/674158.c
int a; void foo() { a = 1; } /* basic test */ int main(void) { a = 0; foo(); test_assert(a == 1); return 0; }
the_stack_data/929876.c
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <sys/types.h> #include <sys/socket.h> #include <arpa/inet.h> #include <netinet/in.h> #define PORT 8080 #define MAXLINE 1024 // Driver code int main() { int sockfd; char buffer[5][MAXLINE]; struct sockaddr_in servaddr; // Creating socket file descriptor if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { perror("socket creation failed"); exit(EXIT_FAILURE); } memset(&servaddr, 0, sizeof(servaddr)); // Filling server information servaddr.sin_family = AF_INET; servaddr.sin_port = htons(PORT); servaddr.sin_addr.s_addr = INADDR_ANY; //actual int len; int words = 0; for (int i = 0; i < 5; i++) { printf("Enter sentence %d: --- ", i + 1); scanf("%[^\n]%*c", buffer[i]); } sendto(sockfd, &buffer, sizeof(buffer), 0, (const struct sockaddr *)&servaddr, sizeof(servaddr)); printf("Sentences sent: \n"); recvfrom(sockfd, &words, sizeof(int), 0, (struct sockaddr *)&servaddr, &len); printf("Sentence with max words is : %d\n", words); close(sockfd); return 0; }
the_stack_data/15762102.c
#include <stdio.h> int main(){ //Faça um algoritmo para ler um número que é um código de usuário. Caso este código seja diferente de um código armazenado internamente no algoritmo (igual a 1234) deve ser apresentada a mensagem ‘Usuário inválido!’. Caso o Código seja correto, deve ser lido outro valor que é a senha. Se esta senha estiver incorreta (a certa é 9999) deve ser mostrada a mensagem ‘senha incorreta’. Caso a senha esteja correta, deve ser mostrada a mensagem ‘Acesso permitido’. int user_code = 1234; int code = 0; int user_password = 9999; int password = 0; printf("Informe o seu código de usuário: \n"); scanf("%d", &code); if(code != user_code){ printf("Usuário inválido!\n"); } else { printf("Informe a sua senha:\n"); scanf("%d", &password); if(password != user_password) { printf("Senha incorreta!\n"); } else { printf("Acesso permitido.\n"); } } //Resultado //Programa funcionou corretamente, somente avançando para acesso permitido se o usuário inserir corretamente o código de acesso e a senha. }
the_stack_data/198581865.c
/* ## (c) 2017, Arkadiusz Drabczyk, [email protected] */ #include <stdio.h> #include <stdlib.h> struct node { int data; struct node *next; }; int init(struct node **head, int data) { *head = malloc(sizeof(struct node)); if (!*head) { fprintf(stderr, "Failed to init a linked list\n"); return 1; } (*head)->data = data; (*head)->next = NULL; return 0; } int insert(struct node **head, int data) { struct node *current = *head; struct node *tmp; do { tmp = current; current = current->next; } while (current); /* create a new node after tmp */ struct node *new = malloc(sizeof(struct node)); if (!new) { fprintf(stderr, "Failed to insert a new element\n"); return 1; } new->next = NULL; new->data = data; tmp->next = new; return 0; } void delete(struct node **head, int data) { struct node *current = *head; struct node *prev = NULL; do { if (current->data == data) { break; } prev = current; current = current->next; } while (current); /* if the first element */ if (current == *head) { /* reuse prev */ prev = *head; *head = current->next; free(prev); return; } /* if the last element */ if (current->next == NULL) { prev->next = NULL; free(current); return; } prev->next = current->next; free(current); return; } void print(struct node **head) { struct node *current = *head; while (current) { printf("current data: %d, address: %p\n", current->data, current); current = current->next; } } void reverse(struct node **head) { struct node *current = *head, *newnext = NULL, *tmp; do { tmp = current->next; current->next = newnext; newnext = current; current = tmp; } while (current); *head = newnext; return; } void deinit(struct node **head) { struct node *node = *head; do { struct node *tmp; tmp = node; node = node->next; free(tmp); } while (node); } int main(void) { struct node *head; if (init(&head, 25) != 0) { fprintf(stderr, "Failed to init a new linked list"); return EXIT_FAILURE; } insert(&head, 30); insert(&head, 55); insert(&head, 210); insert(&head, 1000000); puts("Print the linked list:"); print(&head); puts("\nDelete first element."); delete(&head, 25); puts("Print the linked list:"); print(&head); puts("\nDelete last element."); delete(&head, 1000000); puts("Print the linked list:"); print(&head); puts("\nDelete middle element."); delete(&head, 55); puts("Print the linked list:"); print(&head); puts("\nAdd more elements."); insert(&head, 1); insert(&head, 2); insert(&head, 3); puts("Print the linked list:"); print(&head); puts("\nReverse the linked list"); reverse(&head); puts("Print the linked list:"); print(&head); deinit(&head); return EXIT_SUCCESS; }
the_stack_data/22011520.c
#include <stdio.h> /*definicao da estrutura dadosCliente*/ struct dadosCliente{ int conta; /* numero da conta*/ char nome[10]; /*nome da conta*/ char sobrenome[15]; /* sobrenome da conta*/ double saldo; /*saldo da conta*/ }; /*fim da estrutura dadosCliente*/ int main(){ FILE *arquivo; /* ponteiro do arquivo banco.unesp*/ struct dadosCliente cliente = {0,"","", 0.0}; /*cria dadosCliente*/ /*fopen abre o arquivo; sai se nao puder abrir arquivo*/ if ((arquivo = fopen("banco.unesp", "wb")) == NULL){ printf("Arquivo nao pode ser aberto.\n"); } else{ for(int i = 1; i<=100; i++){ /* envia 100 registros vazios para arquivo */ fwrite(&cliente, sizeof(struct dadosCliente), 1, arquivo); } fclose(arquivo); /* fclose fecha o arquivo */ } /* fim do else */ return 0; /* indica conclusao bem-sucedida */ } /* fim do main */
the_stack_data/302183.c
/** * Copyright (c) KARTHIK SATHYANARAYANA * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ /* * Capture RTP (UDP) packets on specified IP and port, parse and print header fields * Ref: RFC 3550 - https://tools.ietf.org/html/rfc3550 */ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <inttypes.h> #include <string.h> #include <getopt.h> #include <sys/socket.h> #include <arpa/inet.h> #include <netinet/in.h> // NOTE: 1500 (MTU), 20 (IPv4 header) + options / 40 (IPv6 header) + extensions, 8 (UDP header) // Safe max size for payload = 1280 bytes; WebRTC max payload size = 1200 bytes // CONSTANTS static const uint MAX_PAYLOAD_SIZE = 1200; static const uint MIN_PAYLOAD_DATA = 1; // Minimum RTP payload size static const uint8_t RTP_VERSION = 2; static const uint8_t RTCP_PACKET_TYPE_START = 192; static const uint8_t RTCP_PACKET_TYPE_END = 223; // RFC 3550 - RTP header - 12 bytes (fixed) + header extensions typedef struct __attribute__((packed)) RTP_HDR { #if __BYTE_ORDER == __BIG_ENDIAN uint16_t version:2; uint16_t padding:1; uint16_t extn:1; uint16_t csrcs:4; uint16_t marker:1; uint16_t payload_type:7; #else uint16_t csrcs:4; uint16_t extn:1; uint16_t padding:1; uint16_t version:2; uint16_t payload_type:7; uint16_t marker:1; #endif uint16_t seq_num; uint32_t rtp_ts; uint32_t ssrc; } rtp_hdr_s; /* * abort() */ void abort() { exit(EXIT_FAILURE); } /* * usage() */ void usage(char *file_name) { printf("Usage: %s [-a <IP address>] -p <port> [-h] \n", file_name); } int main(int argc, char *argv[]) { uint port = 0; char ip_addr[INET6_ADDRSTRLEN] = "\0"; int c = -1; sa_family_t addr_type = AF_UNSPEC; if (argc < 3) { usage(argv[0]); abort(); } // Parse inputs while ((c = getopt(argc, argv, "a:p:h")) != -1) { switch(c) { case 'a': strncpy(ip_addr, optarg, INET6_ADDRSTRLEN); if (strchr(ip_addr, ':')) { addr_type = AF_INET6; } else if (strchr(ip_addr, '.')) { addr_type = AF_INET; } else { printf("IP address %s cannot be processed \n", ip_addr); abort(); } break; case 'p': port = atoi(optarg); if (port < 1 || port > UINT16_MAX) { printf("Invalid port number"); abort(); } break; case 'h': usage(argv[0]); break; default: printf("Invalid inputs \n"); abort(); break; } } uint16_t src_port = port; int sock_fd = -1; char sock_buf[MAX_PAYLOAD_SIZE]; rtp_hdr_s r_hdr; struct sockaddr_in serv_addr; // Creating socket file descriptor if (addr_type == AF_INET || addr_type == AF_UNSPEC) { if ((sock_fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { perror("Error creating IPv4 UDP socket"); abort(); } } else if (addr_type == AF_INET6) { if ((sock_fd = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) { perror("Error creating IPv6 UDP socket"); abort(); } } memset(&serv_addr, 0, sizeof(serv_addr)); // Fill server informatiom serv_addr.sin_family = addr_type; serv_addr.sin_port = htons(src_port); if (!strlen(ip_addr)) { serv_addr.sin_addr.s_addr = INADDR_ANY; } else { if (inet_pton(addr_type, (const char *)ip_addr, (void *)&serv_addr.sin_addr) == 0) { printf("Input IP address invalid \n"); abort(); } } // Set SO_REUSEADDR and SO_REUSEPORT. If another process has already bound to ip addr and port const int reuse = 1; if (setsockopt(sock_fd, SOL_SOCKET, SO_REUSEADDR, (const char*)&reuse, sizeof(int)) < 0) { perror("setsockopt(SO_REUSEADDR) failed \n"); abort(); } #ifdef SO_REUSEPORT if (setsockopt(sock_fd, SOL_SOCKET, SO_REUSEPORT, (const char*)&reuse, sizeof(reuse)) < 0) { perror("setsockopt(SO_REUSEPORT) failed \n"); abort(); } #endif // Bind to that IP and port, as this is a server if ( bind(sock_fd, (const struct sockaddr*)&serv_addr, sizeof(serv_addr)) < 0 ) { perror("Bind error \n"); abort(); } ssize_t ret; size_t serv_addr_len = sizeof(serv_addr); while (1) { ret = recvfrom(sock_fd, sock_buf, MAX_PAYLOAD_SIZE, 0, (struct sockaddr *)&serv_addr, (socklen_t *)&serv_addr_len); if (ret < 0) { perror("Error receiving UDP packet \n"); break; } else if (ret == 0) { printf("Socket closed \n"); break; } else if (ret >= (sizeof(rtp_hdr_s) + MIN_PAYLOAD_DATA)) { /* RTP header // <ver(2)><padding(1)><extn(1)><csrc cnt(4)><marker(1)><payload type(7)><seq num(16)> // <rtp timestamp(32)> // <ssrc(32)> ... */ /* RTCP header // <version(2)><padding(1)><report cnt(5)><packet type(8)><length(16)>... */ // Confirm version field (2 bits) if (!(sock_buf[0] & 0x80)) { printf("Invalid RTP/RTCP version field value %u \n", (unsigned)((sock_buf[0] & 0x80) >> 6)); break; } // Check if RTCP packet. Packet type field value is >= 192 && <= 223 //https://www.iana.org/assignments/rtp-parameters/rtp-parameters.xhtml#rtp-parameters-4 uint8_t packet_type = (uint8_t)(sock_buf[1]); if (packet_type >= RTCP_PACKET_TYPE_START && packet_type <= RTCP_PACKET_TYPE_END) { printf("RTCP: Packet type = %u \n", (unsigned)(packet_type)); continue; } // Copy RTP header (12 bytes) from buffer memcpy(&r_hdr, sock_buf, sizeof(rtp_hdr_s)); r_hdr.seq_num = ntohs(r_hdr.seq_num); r_hdr.rtp_ts = htonl(r_hdr.rtp_ts); r_hdr.ssrc = htonl(r_hdr.ssrc); // Check if packet is RTP or RTCP printf("RTP Packet size %zd, Headers: version: %hu, padding %hu, extns %hu, csrcs %hu,\ marker %hu, payload type %hu, seqnum %hu, rtp ts %u, ssrc %u \n", ret, r_hdr.version, r_hdr.padding, r_hdr.extn, r_hdr.csrcs, r_hdr.marker, r_hdr.payload_type, r_hdr.seq_num, r_hdr.rtp_ts, r_hdr.ssrc); } else { printf("Packet discarded, size = %zd\n", ret); } } return 0; }
the_stack_data/165497.c
/* Generated by CIL v. 1.7.0 */ /* print_CIL_Input is false */ struct _IO_FILE; struct timeval; extern void signal(int sig , void *func ) ; extern float strtof(char const *str , char const *endptr ) ; typedef struct _IO_FILE FILE; extern int atoi(char const *s ) ; extern double strtod(char const *str , char const *endptr ) ; extern int fclose(void *stream ) ; extern void *fopen(char const *filename , char const *mode ) ; extern void abort() ; extern void exit(int status ) ; extern int raise(int sig ) ; extern int fprintf(struct _IO_FILE *stream , char const *format , ...) ; extern int strcmp(char const *a , char const *b ) ; extern int rand() ; extern unsigned long strtoul(char const *str , char const *endptr , int base ) ; void RandomFunc(unsigned char input[1] , unsigned char output[1] ) ; extern int strncmp(char const *s1 , char const *s2 , unsigned long maxlen ) ; extern int gettimeofday(struct timeval *tv , void *tz , ...) ; extern int printf(char const *format , ...) ; int main(int argc , char *argv[] ) ; void megaInit(void) ; extern unsigned long strlen(char const *s ) ; extern long strtol(char const *str , char const *endptr , int base ) ; extern unsigned long strnlen(char const *s , unsigned long maxlen ) ; extern void *memcpy(void *s1 , void const *s2 , unsigned long size ) ; struct timeval { long tv_sec ; long tv_usec ; }; extern void *malloc(unsigned long size ) ; extern int scanf(char const *format , ...) ; void RandomFunc(unsigned char input[1] , unsigned char output[1] ) { unsigned char state[1] ; unsigned char local1 ; { state[0UL] = (input[0UL] + 914778474UL) ^ (unsigned char)11; local1 = 0UL; while (local1 < 1UL) { if (state[0UL] > local1) { state[local1] |= (state[0UL] & (unsigned char)63) << 4UL; state[0UL] = (state[0UL] << (((state[0UL] >> (unsigned char)1) & (unsigned char)15) | 1UL)) | (state[0UL] >> (8 - (((state[0UL] >> (unsigned char)1) & (unsigned char)15) | 1UL))); } else { state[0UL] |= (state[0UL] & (unsigned char)31) << 3UL; state[local1] |= (state[0UL] & (unsigned char)15) << 2UL; } if (state[0UL] <= local1) { state[0UL] += state[0UL]; state[local1] |= ((state[0UL] - state[local1]) & (unsigned char)31) << 3UL; } else { state[local1] |= (((state[local1] >> (((state[0UL] >> (unsigned char)1) & (unsigned char)15) | 1UL)) | (state[local1] << (8 - (((state[0UL] >> (unsigned char)1) & (unsigned char)15) | 1UL)))) & (unsigned char)31) << 3UL; state[0UL] *= state[0UL]; } local1 ++; } output[0UL] = ((state[0UL] | 380867558UL) << (unsigned char)13) | ((state[0UL] | 380867558UL) >> (unsigned char)251); } } int main(int argc , char *argv[] ) { unsigned char input[1] ; unsigned char output[1] ; int randomFuns_i5 ; unsigned char randomFuns_value6 ; int randomFuns_main_i7 ; { megaInit(); if (argc != 2) { printf("Call this program with %i arguments\n", 1); exit(-1); } else { } randomFuns_i5 = 0; while (randomFuns_i5 < 1) { randomFuns_value6 = (unsigned char )strtoul(argv[randomFuns_i5 + 1], 0, 10); input[randomFuns_i5] = randomFuns_value6; randomFuns_i5 ++; } RandomFunc(input, output); if (output[0] == (unsigned char)42) { printf("You win!\n"); } else { } randomFuns_main_i7 = 0; while (randomFuns_main_i7 < 1) { printf("%u\n", output[randomFuns_main_i7]); randomFuns_main_i7 ++; } } } void megaInit(void) { { } }
the_stack_data/1252561.c
#include <stdio.h> #include <stdlib.h> #include <math.h> int main ( void ) { int i, j; double s, r; s = 0.0; double* a1 = malloc(1000 * sizeof(double)); double* a2 = malloc(1000 * sizeof(double)); for (i = 0; i < 1000; i++) { a1[i] = s; s += 0.3374893482232; a2[i] = s; } s = 0.0; r = 0.0; for (j = 0; j < 5000; j++) { for (i = 0; i < 1000; i++) { s += (a1[i] - a2[i]) * (a1[i] + a2[i]) - sqrt(r + 1.0); r += 0.001; } } printf("s = %f, r = %f\n", s, r ); return 0; }
the_stack_data/182953996.c
/* * Created: Sat 22 Jul 2017 04:07:20 PM PDT * Modified: Sat 19 Aug 2017 10:50:50 AM PDT * * Copyright 2017 (C) Robert Gill * * Calculate PI based on Rubinowitz & Wagon's spigot algorithm. * Code based on example Pascal code in their article. * */ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> static int * init_spigot(int len) { int *buf; buf = (int *) malloc (sizeof (int) * len); if (buf != NULL) for (int i = 0; i < len; i++) buf[i] = 2; return buf; } static int next_pi_digit(int buf[], int len) { static bool firstrun = true; static int predigit = 0, nines = 0; static int quot = 0, prod = 0; int rv = 0; if (nines != 0) { nines -= 1; return 9; } skipfirst: do { for (int i = len; i > 0; i--) { prod = 10 * buf[i-1] + quot * i; buf[i-1] = prod % (2 * i - 1); quot = prod / (2 * i - 1); } buf[0] = quot % 10; quot = quot / 10; if (quot == 9) nines += 1; } while (quot == 9); if (quot == 10) { rv = predigit + 1; predigit = 0; nines = 0; } else { rv = predigit; predigit = quot; } /* Don't need to prefix 3.xxx... with a '0'. */ if (firstrun) { firstrun = false; goto skipfirst; } return rv; } int main (int argc, char *argv[]) { int digits, len; int *buf; if (argc < 2 || (digits = atoi(argv[1])) == 0) { printf ("USAGE: pi <NUMDIGITS>\n"); return EXIT_SUCCESS; } if (digits == 1) { puts("3"); return EXIT_SUCCESS; } len = 10 * digits / 3; if ((buf = init_spigot (len)) == NULL) { fprintf (stderr, "Unable to allocate required memory!\n"); return EXIT_FAILURE; } for (int i = 0; i < digits; i++) { printf ("%d", next_pi_digit(buf, len)); if (i < 1) printf ("."); } printf ("\n"); return EXIT_SUCCESS; }
the_stack_data/50138180.c
/** MIT License * * Copyright (c) 2020 Qv Junping * * 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. */ /** * libc/src/sys/stat/stat.c * 获取文件信息 */ #include <fcntl.h> #include <sys/stat.h> int stat(const char *restrict path, struct stat *restrict result) { return fstatat(AT_FDCWD, path, result, 0); }
the_stack_data/143059.c
#include <stdio.h> #define WORDLEN 100 // prototype void itoa(int n, char s[]); int main(void) { char s[WORDLEN]; int a, b, c; a = -1234567; b = 19865330; c = 23498765; itoa(a, s); printf("%d\t\t%s\n", a, s); itoa(b, s); printf("%d\t\t%s\n", b, s); itoa(c, s); printf("%d\t\t%s\n", c, s); return 0; } /* convert n to characters in s */ void itoa(int n, char s[]){ int i, j, sign, temp; // save if negative and switch n to positive if ((sign = n) < 0) n = -n; // this builds the reverse of the string i = 0; do s[i++] = n % 10 + '0'; while ((n /= 10) > 0); if (sign < 0) s[i++] = '-'; s[i--] = '\0'; // reverse string (make use of incremented i var as length) for (j=0; j < i / 2; j++) { temp = s[j]; s[j] = s[i-j]; s[i-j] = temp; } }
the_stack_data/104829169.c
#include <stdio.h> int main(void) { int radius = 5; float pi = 3.14; float circumference = 2*pi*radius; printf("The circumference is: %.2f", circumference); return 0; }
the_stack_data/50137196.c
#include "stdio.h" int main() { float f1, f2, f3, f4, f5, f6, f7, f8, f9; sscanf("0.512 0.250x5.129_-9.98 1.12*+54.32E3 +54.32E3^87.5E-3 87.5E-3$", "%f %fx%f_%f %f*%f %f^%f %f$", &f1, &f2, &f3, &f4, &f5, &f6, &f7, &f8, &f9); printf("\n%f, %f, %f, %f, %f, %f, %f, %f, %f\n", f1, f2, f3, f4, f5, f6, f7, f8, f9); }
the_stack_data/115765056.c
extern void __VERIFIER_error() __attribute__ ((__noreturn__)); void __VERIFIER_assert(int expression) { if (!expression) { ERROR: /* assert not proved */ /* assert not proved */ __VERIFIER_error(); }; return; } int __global_lock; void __VERIFIER_atomic_begin() { /* reachable */ /* reachable */ /* reachable */ /* reachable */ /* reachable */ /* reachable */ /* reachable */ /* reachable */ /* reachable */ __VERIFIER_assume(__global_lock==0); __global_lock=1; return; } void __VERIFIER_atomic_end() { __VERIFIER_assume(__global_lock==1); __global_lock=0; return; } #include <assert.h> #include <pthread.h> #ifndef TRUE #define TRUE (_Bool)1 #endif #ifndef FALSE #define FALSE (_Bool)0 #endif #ifndef NULL #define NULL ((void*)0) #endif #ifndef FENCE #define FENCE(x) ((void)0) #endif #ifndef IEEE_FLOAT_EQUAL #define IEEE_FLOAT_EQUAL(x,y) (x==y) #endif #ifndef IEEE_FLOAT_NOTEQUAL #define IEEE_FLOAT_NOTEQUAL(x,y) (x!=y) #endif void * P0(void *arg); void * P1(void *arg); void * P2(void *arg); void * P3(void *arg); void fence(); void isync(); void lwfence(); int __unbuffered_cnt; int __unbuffered_cnt = 0; int __unbuffered_p0_EAX; int __unbuffered_p0_EAX = 0; int __unbuffered_p1_EAX; int __unbuffered_p1_EAX = 0; int __unbuffered_p1_EBX; int __unbuffered_p1_EBX = 0; int __unbuffered_p2_EAX; int __unbuffered_p2_EAX = 0; int __unbuffered_p3_EAX; int __unbuffered_p3_EAX = 0; int __unbuffered_p3_EBX; int __unbuffered_p3_EBX = 0; int a; int a = 0; _Bool a$flush_delayed; int a$mem_tmp; _Bool a$r_buff0_thd0; _Bool a$r_buff0_thd1; _Bool a$r_buff0_thd2; _Bool a$r_buff0_thd3; _Bool a$r_buff0_thd4; _Bool a$r_buff1_thd0; _Bool a$r_buff1_thd1; _Bool a$r_buff1_thd2; _Bool a$r_buff1_thd3; _Bool a$r_buff1_thd4; _Bool a$read_delayed; int *a$read_delayed_var; int a$w_buff0; _Bool a$w_buff0_used; int a$w_buff1; _Bool a$w_buff1_used; _Bool main$tmp_guard0; _Bool main$tmp_guard1; int x; int x = 0; int y; int y = 0; int z; int z = 0; _Bool weak$$choice0; _Bool weak$$choice2; void * P0(void *arg) { __VERIFIER_atomic_begin(); a$w_buff1 = a$w_buff0; a$w_buff0 = 1; a$w_buff1_used = a$w_buff0_used; a$w_buff0_used = TRUE; __VERIFIER_assert(!(a$w_buff1_used && a$w_buff0_used)); a$r_buff1_thd0 = a$r_buff0_thd0; a$r_buff1_thd1 = a$r_buff0_thd1; a$r_buff1_thd2 = a$r_buff0_thd2; a$r_buff1_thd3 = a$r_buff0_thd3; a$r_buff1_thd4 = a$r_buff0_thd4; a$r_buff0_thd1 = TRUE; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p0_EAX = x; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); a = a$w_buff0_used && a$r_buff0_thd1 ? a$w_buff0 : (a$w_buff1_used && a$r_buff1_thd1 ? a$w_buff1 : a); a$w_buff0_used = a$w_buff0_used && a$r_buff0_thd1 ? FALSE : a$w_buff0_used; a$w_buff1_used = a$w_buff0_used && a$r_buff0_thd1 || a$w_buff1_used && a$r_buff1_thd1 ? FALSE : a$w_buff1_used; a$r_buff0_thd1 = a$w_buff0_used && a$r_buff0_thd1 ? FALSE : a$r_buff0_thd1; a$r_buff1_thd1 = a$w_buff0_used && a$r_buff0_thd1 || a$w_buff1_used && a$r_buff1_thd1 ? FALSE : a$r_buff1_thd1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_0(); } void * P1(void *arg) { __VERIFIER_atomic_begin(); x = 1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p1_EAX = x; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p1_EBX = y; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); a = a$w_buff0_used && a$r_buff0_thd2 ? a$w_buff0 : (a$w_buff1_used && a$r_buff1_thd2 ? a$w_buff1 : a); a$w_buff0_used = a$w_buff0_used && a$r_buff0_thd2 ? FALSE : a$w_buff0_used; a$w_buff1_used = a$w_buff0_used && a$r_buff0_thd2 || a$w_buff1_used && a$r_buff1_thd2 ? FALSE : a$w_buff1_used; a$r_buff0_thd2 = a$w_buff0_used && a$r_buff0_thd2 ? FALSE : a$r_buff0_thd2; a$r_buff1_thd2 = a$w_buff0_used && a$r_buff0_thd2 || a$w_buff1_used && a$r_buff1_thd2 ? FALSE : a$r_buff1_thd2; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_0(); } void * P2(void *arg) { __VERIFIER_atomic_begin(); y = 1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p2_EAX = z; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); a = a$w_buff0_used && a$r_buff0_thd3 ? a$w_buff0 : (a$w_buff1_used && a$r_buff1_thd3 ? a$w_buff1 : a); a$w_buff0_used = a$w_buff0_used && a$r_buff0_thd3 ? FALSE : a$w_buff0_used; a$w_buff1_used = a$w_buff0_used && a$r_buff0_thd3 || a$w_buff1_used && a$r_buff1_thd3 ? FALSE : a$w_buff1_used; a$r_buff0_thd3 = a$w_buff0_used && a$r_buff0_thd3 ? FALSE : a$r_buff0_thd3; a$r_buff1_thd3 = a$w_buff0_used && a$r_buff0_thd3 || a$w_buff1_used && a$r_buff1_thd3 ? FALSE : a$r_buff1_thd3; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_0(); } void * P3(void *arg) { __VERIFIER_atomic_begin(); z = 1; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_p3_EAX = z; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); weak$$choice0 = nondet_1(); weak$$choice2 = nondet_1(); a$flush_delayed = weak$$choice2; a$mem_tmp = a; a = !a$w_buff0_used || !a$r_buff0_thd4 && !a$w_buff1_used || !a$r_buff0_thd4 && !a$r_buff1_thd4 ? a : (a$w_buff0_used && a$r_buff0_thd4 ? a$w_buff0 : a$w_buff1); a$w_buff0 = weak$$choice2 ? a$w_buff0 : (!a$w_buff0_used || !a$r_buff0_thd4 && !a$w_buff1_used || !a$r_buff0_thd4 && !a$r_buff1_thd4 ? a$w_buff0 : (a$w_buff0_used && a$r_buff0_thd4 ? a$w_buff0 : a$w_buff0)); a$w_buff1 = weak$$choice2 ? a$w_buff1 : (!a$w_buff0_used || !a$r_buff0_thd4 && !a$w_buff1_used || !a$r_buff0_thd4 && !a$r_buff1_thd4 ? a$w_buff1 : (a$w_buff0_used && a$r_buff0_thd4 ? a$w_buff1 : a$w_buff1)); a$w_buff0_used = weak$$choice2 ? a$w_buff0_used : (!a$w_buff0_used || !a$r_buff0_thd4 && !a$w_buff1_used || !a$r_buff0_thd4 && !a$r_buff1_thd4 ? a$w_buff0_used : (a$w_buff0_used && a$r_buff0_thd4 ? FALSE : a$w_buff0_used)); a$w_buff1_used = weak$$choice2 ? a$w_buff1_used : (!a$w_buff0_used || !a$r_buff0_thd4 && !a$w_buff1_used || !a$r_buff0_thd4 && !a$r_buff1_thd4 ? a$w_buff1_used : (a$w_buff0_used && a$r_buff0_thd4 ? FALSE : FALSE)); a$r_buff0_thd4 = weak$$choice2 ? a$r_buff0_thd4 : (!a$w_buff0_used || !a$r_buff0_thd4 && !a$w_buff1_used || !a$r_buff0_thd4 && !a$r_buff1_thd4 ? a$r_buff0_thd4 : (a$w_buff0_used && a$r_buff0_thd4 ? FALSE : a$r_buff0_thd4)); a$r_buff1_thd4 = weak$$choice2 ? a$r_buff1_thd4 : (!a$w_buff0_used || !a$r_buff0_thd4 && !a$w_buff1_used || !a$r_buff0_thd4 && !a$r_buff1_thd4 ? a$r_buff1_thd4 : (a$w_buff0_used && a$r_buff0_thd4 ? FALSE : FALSE)); __unbuffered_p3_EBX = a; a = a$flush_delayed ? a$mem_tmp : a; a$flush_delayed = FALSE; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); a = a$w_buff0_used && a$r_buff0_thd4 ? a$w_buff0 : (a$w_buff1_used && a$r_buff1_thd4 ? a$w_buff1 : a); a$w_buff0_used = a$w_buff0_used && a$r_buff0_thd4 ? FALSE : a$w_buff0_used; a$w_buff1_used = a$w_buff0_used && a$r_buff0_thd4 || a$w_buff1_used && a$r_buff1_thd4 ? FALSE : a$w_buff1_used; a$r_buff0_thd4 = a$w_buff0_used && a$r_buff0_thd4 ? FALSE : a$r_buff0_thd4; a$r_buff1_thd4 = a$w_buff0_used && a$r_buff0_thd4 || a$w_buff1_used && a$r_buff1_thd4 ? FALSE : a$r_buff1_thd4; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); __unbuffered_cnt = __unbuffered_cnt + 1; __VERIFIER_atomic_end(); return nondet_0(); } void fence() { } void isync() { } void lwfence() { } int main() { pthread_create(NULL, NULL, P0, NULL); pthread_create(NULL, NULL, P1, NULL); pthread_create(NULL, NULL, P2, NULL); pthread_create(NULL, NULL, P3, NULL); __VERIFIER_atomic_begin(); main$tmp_guard0 = __unbuffered_cnt == 4; __VERIFIER_atomic_end(); __VERIFIER_assume(main$tmp_guard0); __VERIFIER_atomic_begin(); a = a$w_buff0_used && a$r_buff0_thd0 ? a$w_buff0 : (a$w_buff1_used && a$r_buff1_thd0 ? a$w_buff1 : a); a$w_buff0_used = a$w_buff0_used && a$r_buff0_thd0 ? FALSE : a$w_buff0_used; a$w_buff1_used = a$w_buff0_used && a$r_buff0_thd0 || a$w_buff1_used && a$r_buff1_thd0 ? FALSE : a$w_buff1_used; a$r_buff0_thd0 = a$w_buff0_used && a$r_buff0_thd0 ? FALSE : a$r_buff0_thd0; a$r_buff1_thd0 = a$w_buff0_used && a$r_buff0_thd0 || a$w_buff1_used && a$r_buff1_thd0 ? FALSE : a$r_buff1_thd0; __VERIFIER_atomic_end(); __VERIFIER_atomic_begin(); /* Program proven to be relaxed for X86, model checker says YES. */ main$tmp_guard1 = !(__unbuffered_p0_EAX == 0 && __unbuffered_p1_EAX == 1 && __unbuffered_p1_EBX == 0 && __unbuffered_p2_EAX == 0 && __unbuffered_p3_EAX == 1 && __unbuffered_p3_EBX == 0); __VERIFIER_atomic_end(); /* Program proven to be relaxed for X86, model checker says YES. */ __VERIFIER_assert(main$tmp_guard1); /* reachable */ return 0; }
the_stack_data/122016474.c
/* * udpclient.c - A simple UDP client * usage: udpclient <host> <port> */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <netdb.h> #include <time.h> #include <math.h> #define BUFSIZE 1024 #define MAXREQ 1000 /* * error - wrapper for perror */ void error(char *msg) { perror(msg); exit(0); } float nextTime(float rateParameter) { float temp = -logf(1.0f - (float) random() / (RAND_MAX)) / rateParameter; return temp; } int main(int argc, char **argv) { int sockfd, portno, n; int serverlen; struct sockaddr_in serveraddr; struct hostent *server; char *hostname; char buf[BUFSIZE]; int sent_requests = 0; struct timeval time_before, time_next; int diff; int now; /* check command line arguments */ if (argc != 3) { fprintf(stderr,"usage: %s <hostname> <port>\n", argv[0]); exit(0); } hostname = argv[1]; portno = atoi(argv[2]); /* socket: create the socket */ sockfd = socket(AF_INET, SOCK_DGRAM, 0); if (sockfd < 0) error("ERROR opening socket"); /* gethostbyname: get the server's DNS entry */ server = gethostbyname(hostname); if (server == NULL) { fprintf(stderr,"ERROR, no such host as %s\n", hostname); exit(0); } /* build the server's Internet address */ bzero((char *) &serveraddr, sizeof(serveraddr)); serveraddr.sin_family = AF_INET; bcopy((char *)server->h_addr, (char *)&serveraddr.sin_addr.s_addr, server->h_length); serveraddr.sin_port = htons(portno); /* get a message from the user */ while(sent_requests < MAXREQ) { bzero(buf, BUFSIZE); buf[0] = 0x00; buf[1] = 0x00; buf[2] = 0x00; buf[3] = 0x00; buf[4] = 0x00; buf[5] = 0x01; buf[6] = 0x00; buf[7] = 0x00; sprintf(buf+8, "get key1\r\n"); serverlen = sizeof(serveraddr); gettimeofday (&time_before, NULL); n = sendto(sockfd, buf, 18, 0, &serveraddr, serverlen); printf("salam\n"); if (n < 0) error("ERROR in sendto"); /* print the server's reply */ n = recvfrom(sockfd, buf, 50, 0, &serveraddr, &serverlen); gettimeofday(&time_next, NULL); printf("%s %d\n", buf, strlen(buf)); diff = (time_next.tv_sec - time_before.tv_sec)*1000000 + (time_next.tv_usec - time_before.tv_usec); printf("%d\n", diff); if (n < 0) error("ERROR in recvfrom"); printf("Echo from server: %50x %d\n", buf, n); int i =0; for(i = 0; i < n; i++) printf("%02x\n",buf[i]); sent_requests++; } return 0; }
the_stack_data/82476.c
/* $NetBSD: Lint_Ovfork.c,v 1.1.2.1 1997/11/08 22:02:48 veego Exp $ */ /* * This file placed in the public domain. * Chris Demetriou, November 5, 1997. */ #include <unistd.h> /*ARGSUSED*/ pid_t vfork() { return (0); }
the_stack_data/1114750.c
int main() { int i, j, rows; printf("Enter number of rows: "); scanf("%d",&rows); for(i=1; i<=rows; ++i) { for(j=1; j<=i; ++j) { printf("* "); } printf("\n"); } return 0; }
the_stack_data/162643985.c
// Test interaction between -mcrc32 and other SIMD ISA options on x86 // RUN: %clang -target i386-unknown-linux-gnu -mcrc32 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: %clang -target x86_64-unknown-linux-gnu -mcrc32 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: %clang -target i386-unknown-linux-gnu -msse4.2 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: %clang -target x86_64-unknown-linux-gnu -msse4.2 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: %clang -target i386-unknown-linux-gnu -msse4.2 -mcrc32 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: %clang -target x86_64-unknown-linux-gnu -msse4.2 -mcrc32 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: %clang -target i386-unknown-linux-gnu -mcrc32 -msse4.2 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: %clang -target x86_64-unknown-linux-gnu -mcrc32 -msse4.2 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: not %clang -target i386-unknown-linux-gnu -mno-crc32 -msse4.2 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=ERROR %s // RUN: not %clang -target x86_64-unknown-linux-gnu -mno-crc32 -msse4.2 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=ERROR %s // RUN: not %clang -target i386-unknown-linux-gnu -msse4.2 -mno-crc32 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=ERROR %s // RUN: not %clang -target x86_64-unknown-linux-gnu -msse4.2 -mno-crc32 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=ERROR %s // RUN: not %clang -target i386-unknown-linux-gnu -mcrc32 -mno-crc32 -msse4.2 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=ERROR %s // RUN: not %clang -target x86_64-unknown-linux-gnu -mcrc32 -mno-crc32 -msse4.2 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=ERROR %s // RUN: not %clang -target i386-unknown-linux-gnu -mcrc32 -msse4.2 -mno-crc32 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=ERROR %s // RUN: not %clang -target x86_64-unknown-linux-gnu -mcrc32 -msse4.2 -mno-crc32 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=ERROR %s // RUN: %clang -target i386-unknown-linux-gnu -mcrc32 -mno-sse4.2 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: %clang -target x86_64-unknown-linux-gnu -mcrc32 -mno-sse4.2 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: %clang -target i386-unknown-linux-gnu -mno-sse4.2 -mcrc32 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s // RUN: %clang -target x86_64-unknown-linux-gnu -mno-sse4.2 -mcrc32 -S -emit-llvm %s -o - 2>&1 | FileCheck --check-prefix=IR-CRC32 %s unsigned int test__crc32b(unsigned int CRC, unsigned char V) { // CHECK-LABEL: test__crc32b // CHECK: call i32 @llvm.x86.sse42.crc32.32.8(i32 %{{.*}}, i8 %{{.*}}) return __builtin_ia32_crc32qi(CRC, V); } // ERROR: error: '__builtin_ia32_crc32qi' needs target feature crc32 // IR-CRC32: attributes {{.*}} = { {{.*}} "target-features"="{{.*}}+crc32{{.*}}"
the_stack_data/107952787.c
// The code structure (especially file reading and saving functions) is adapted from the Word2Vec implementation // https://github.com/tmikolov/word2vec #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <pthread.h> #include <time.h> #include <unistd.h> #define MAX_STRING 100 #define EXP_TABLE_SIZE 1000 #define MAX_EXP 6 #define MAX_SENTENCE_LENGTH 1000 #define MAX_CODE_LENGTH 40 #define MAX_WORDS_TOPIC 1000 const int vocab_hash_size = 30000000; // Maximum 30 * 0.7 = 21M words in the vocabulary const int corpus_max_size = 40000000; // Maximum 40M documents in the corpus const int topic_max_num = 1000; // Maximum 1000 topics in the corpus typedef float real; // Precision of float numbers struct vocab_word { long long cn; int *point; char *word; }; struct topic { // emb: category embedding // wt_score: cosine similarity of all words to a topic // grad: gradient for TopicEmb real *emb, *wt_score, *grad; // *cur_words: array of vocabulary indices of current retrieved representative words // init_size: how many seed words are given // cur_size: total number of current retrieved representative words int *cur_words, init_size, cur_size; // *category_name: name of the category char *category_name; }; struct topic *topics; char train_file[MAX_STRING], load_emb_file[MAX_STRING], res_file[MAX_STRING]; char output_file[MAX_STRING], topic_output[MAX_STRING], context_output[MAX_STRING], doc_output[MAX_STRING], spec_file[MAX_STRING], topic_file[MAX_STRING]; char save_vocab_file[MAX_STRING], read_vocab_file[MAX_STRING]; struct vocab_word *vocab; int binary = 0, debug_mode = 2, window = 5, min_count = 5, num_threads = 12, min_reduce = 1; int *vocab_hash, *docs; long long *doc_sizes; long long vocab_max_size = 1000, vocab_size = 0, corpus_size = 0, layer1_size = 100; long long train_words = 0, word_count_total = 0, iter = 10, pretrain_iters = 2, file_size = 0; int is_pretrain = 1; real alpha = 0.025, starting_alpha, global_lambda = 1.5, spec_lambda = 0.5, sample = 1e-3; real *syn0, *syn1neg, *syn1doc, *expTable, *wt_score_ptr; real *kappa; clock_t start; int with_global = 1; int with_topic = 0; int with_spec = 0; int negative = 5; const int table_size = 1e8; int *word_table, *doc_table; // topic variables int num_topic = 0; // number of topics int num_per_topic = 10; int words_per_reg = 96; int expand = 1; // how many words to add to each topic per iteration int *rankings; // ranking for each topic real topic_lambda = 20; // scaling for topic loss int rank_ensemble = 1; int topic_pivot_idx; int similaritySearchSize; int *sim_rankings, *spec_rankings; int load_emb = 0; int load_emb_with_v = 0; int fix_seed = 1; int SimCompare(const void *a, const void *b) { // large -> small return (wt_score_ptr[*(int *) a] < wt_score_ptr[*(int *) b]) - (wt_score_ptr[*(int *) a] > wt_score_ptr[*(int *) b]); } int SpecCompare(const void *a, const void *b) { // small -> large return (kappa[*(int *) a] > kappa[*(int *) b]) - (kappa[*(int *) a] < kappa[*(int *) b]); } int RankProduct(const void *a, const void *b) { // small -> large int rank_a, rank_b; rank_a = (spec_rankings[*(int *) a] > 0 && sim_rankings[*(int *) a] > 0) ? spec_rankings[*(int *) a] * sim_rankings[*(int *) a] : -1; rank_b = (spec_rankings[*(int *) b] > 0 && sim_rankings[*(int *) b] > 0) ? spec_rankings[*(int *) b] * sim_rankings[*(int *) b] : -1; if (rank_a > 0 && rank_b > 0) return (rank_a > rank_b) - (rank_a < rank_b); else return (rank_a < rank_b) - (rank_a > rank_b); } int RankEnsemble(const void *a, const void *b) { // small -> large int rank_a, rank_b; rank_a = (spec_rankings[*(int *) a] > 0 && sim_rankings[*(int *) a] > 0) ? 1 / spec_rankings[*(int *) a] + 10 / sim_rankings[*(int *) a] : -1; rank_b = (spec_rankings[*(int *) b] > 0 && sim_rankings[*(int *) b] > 0) ? 1 / spec_rankings[*(int *) b] + 10 / sim_rankings[*(int *) b] : -1; return (rank_a < rank_b) - (rank_a > rank_b); } void InitUnigramTable() { int a, i; double train_words_pow = 0; double d1, power = 0.75; word_table = (int *) malloc(table_size * sizeof(int)); for (a = 0; a < vocab_size; a++) train_words_pow += pow(vocab[a].cn, power); i = 0; d1 = pow(vocab[i].cn, power) / train_words_pow; for (a = 0; a < table_size; a++) { word_table[a] = i; if (a / (double) table_size > d1) { i++; d1 += pow(vocab[i].cn, power) / train_words_pow; } if (i >= vocab_size) i = vocab_size - 1; } } void InitDocTable() { int a, i; double doc_len_pow = 0; double d1, power = 0.75; doc_table = (int *) malloc(table_size * sizeof(int)); for (a = 0; a < corpus_size; a++) doc_len_pow += pow(docs[a], power); i = 0; d1 = pow(docs[i], power) / doc_len_pow; for (a = 0; a < table_size; a++) { doc_table[a] = i; if (a / (double) table_size > d1) { i++; d1 += pow(docs[i], power) / doc_len_pow; } if (i >= corpus_size) i = corpus_size - 1; } } // Reads a single word from a file, assuming space + tab + EOL to be word boundaries void ReadWord(char *word, FILE *fin) { int a = 0, ch; while (!feof(fin)) { ch = fgetc(fin); if (ch == 13) continue; if ((ch == ' ') || (ch == '\t') || (ch == '\n')) { if (a > 0) { if (ch == '\n') ungetc(ch, fin); break; } if (ch == '\n') { strcpy(word, (char *) "</s>"); return; } else continue; } word[a] = ch; a++; if (a >= MAX_STRING - 1) a--; // Truncate too long words } word[a] = 0; } // Returns hash value of a word int GetWordHash(char *word) { unsigned long long a, hash = 0; for (a = 0; a < strlen(word); a++) hash = hash * 257 + word[a]; hash = hash % vocab_hash_size; return hash; } // Returns position of a word in the vocabulary; if the word is not found, returns -1 int SearchVocab(char *word) { unsigned int hash = GetWordHash(word); while (1) { if (vocab_hash[hash] == -1) return -1; if (!strcmp(word, vocab[vocab_hash[hash]].word)) return vocab_hash[hash]; hash = (hash + 1) % vocab_hash_size; } return -1; } // Locate line number of current file pointer int FindLine(FILE *fin) { long long pos = ftell(fin); long long lo = 0, hi = corpus_size - 1; while (lo < hi) { long long mid = lo + (hi - lo) / 2; if (doc_sizes[mid] > pos) { hi = mid; } else { lo = mid + 1; } } return lo; } // Reads a word and returns its index in the vocabulary int ReadWordIndex(FILE *fin) { char word[MAX_STRING]; ReadWord(word, fin); if (feof(fin)) return -1; return SearchVocab(word); } // Adds a word to the vocabulary int AddWordToVocab(char *word) { unsigned int hash, length = strlen(word) + 1; if (length > MAX_STRING) length = MAX_STRING; vocab[vocab_size].word = (char *) calloc(length, sizeof(char)); strcpy(vocab[vocab_size].word, word); vocab[vocab_size].cn = 0; vocab_size++; // Reallocate memory if needed if (vocab_size + 2 >= vocab_max_size) { vocab_max_size += 1000; vocab = (struct vocab_word *) realloc(vocab, vocab_max_size * sizeof(struct vocab_word)); } hash = GetWordHash(word); while (vocab_hash[hash] != -1) hash = (hash + 1) % vocab_hash_size; vocab_hash[hash] = vocab_size - 1; return vocab_size - 1; } int IntCompare(const void * a, const void * b) { return *(int*)a - *(int*)b; } // Used later for sorting by word counts int VocabCompare(const void *a, const void *b) { // assert all sortings will be the same (since c++ qsort is not stable..) if (((struct vocab_word *) b)->cn == ((struct vocab_word *) a)->cn) { return strcmp(((struct vocab_word *) b)->word, ((struct vocab_word *) a)->word); } return ((struct vocab_word *) b)->cn - ((struct vocab_word *) a)->cn; } // Sorts the vocabulary by frequency using word counts void SortVocab() { int a, size; unsigned int hash; // Sort the vocabulary and keep </s> at the first position qsort(&vocab[1], vocab_size - 1, sizeof(struct vocab_word), VocabCompare); for (a = 0; a < vocab_hash_size; a++) vocab_hash[a] = -1; size = vocab_size; train_words = 0; for (a = 0; a < size; a++) { // Words occuring less than min_count times will be discarded from the vocab if ((vocab[a].cn < min_count) && (a != 0)) { vocab_size--; free(vocab[a].word); } else { // Hash will be re-computed, as after the sorting it is not actual hash = GetWordHash(vocab[a].word); while (vocab_hash[hash] != -1) hash = (hash + 1) % vocab_hash_size; vocab_hash[hash] = a; train_words += vocab[a].cn; } } vocab = (struct vocab_word *) realloc(vocab, (vocab_size + 1) * sizeof(struct vocab_word)); } // Reduces the vocabulary by removing infrequent tokens void ReduceVocab() { int a, b = 0; unsigned int hash; for (a = 0; a < vocab_size; a++) if (vocab[a].cn > min_reduce) { vocab[b].cn = vocab[a].cn; vocab[b].word = vocab[a].word; b++; } else free(vocab[a].word); vocab_size = b; for (a = 0; a < vocab_hash_size; a++) vocab_hash[a] = -1; for (a = 0; a < vocab_size; a++) { // Hash will be re-computed, as it is not actual hash = GetWordHash(vocab[a].word); while (vocab_hash[hash] != -1) hash = (hash + 1) % vocab_hash_size; vocab_hash[hash] = a; } fflush(stdout); min_reduce++; } void LearnVocabFromTrainFile() { char word[MAX_STRING]; FILE *fin; long long a, i; for (a = 0; a < vocab_hash_size; a++) vocab_hash[a] = -1; fin = fopen(train_file, "rb"); if (fin == NULL) { printf("[ERROR] training data file not found!\n"); exit(1); } vocab_size = 0; AddWordToVocab((char *) "</s>"); while (1) { ReadWord(word, fin); if (feof(fin)) break; train_words++; if ((debug_mode > 1) && (train_words % 100000 == 0)) { printf("%lldK%c", train_words / 1000, 13); fflush(stdout); } i = SearchVocab(word); if (i == -1) { a = AddWordToVocab(word); vocab[a].cn = 1; } else if (i == 0) { vocab[i].cn++; doc_sizes[corpus_size] = ftell(fin); corpus_size++; if (corpus_size >= corpus_max_size) { printf("[ERROR] Number of documents in corpus larger than \"corpus_max_size\"! Set a larger \"corpus_max_size\" in Line 20 of cate.c!\n"); exit(1); } } else { vocab[i].cn++; docs[corpus_size]++; } if (vocab_size > vocab_hash_size * 0.7) ReduceVocab(); } SortVocab(); if (debug_mode > 0) { printf("Vocab size: %lld\n", vocab_size); printf("Words in train file: %lld\n", train_words); } file_size = ftell(fin); fclose(fin); } void SaveVocab() { long long i; FILE *fo = fopen(save_vocab_file, "wb"); for (i = 0; i < vocab_size; i++) fprintf(fo, "%s %lld\n", vocab[i].word, vocab[i].cn); fclose(fo); } void ReadVocab() { long long a, i = 0; char c; char word[MAX_STRING]; FILE *fin = fopen(read_vocab_file, "rb"); if (fin == NULL) { printf("[ERROR] Vocabulary file not found\n"); exit(1); } for (a = 0; a < vocab_hash_size; a++) vocab_hash[a] = -1; vocab_size = 0; while (1) { ReadWord(word, fin); if (feof(fin)) break; a = AddWordToVocab(word); fscanf(fin, "%lld%c", &vocab[a].cn, &c); i++; } SortVocab(); if (debug_mode > 0) { printf("Vocab size: %lld\n", vocab_size); printf("Words in train file: %lld\n", train_words); } fin = fopen(train_file, "rb"); if (fin == NULL) { printf("ERROR: training data file not found!\n"); exit(1); } fseek(fin, 0, SEEK_END); file_size = ftell(fin); fclose(fin); } void LoadEmb(char *emb_file, real *emb_ptr) { long long a, b, c; int *vocab_match_tmp = (int *) calloc(vocab_size + 1, sizeof(int)); int pretrain_vocab_size = 0, vocab_size_tmp = 0, word_dim; char *current_word = (char *) calloc(MAX_STRING, sizeof(char)); real *syn_tmp = NULL; unsigned long long next_random = 1; a = posix_memalign((void **) &syn_tmp, 128, (long long) layer1_size * sizeof(real)); if (syn_tmp == NULL) { printf("[ERROR] Memory allocation failed\n"); exit(1); } printf("Loading embedding from file %s\n", emb_file); if (access(emb_file, R_OK) == -1) { printf("[ERROR] File %s does not exist\n", emb_file); exit(1); } // read embedding file FILE *fp = fopen(emb_file, "r"); fscanf(fp, "%d", &pretrain_vocab_size); fscanf(fp, "%d", &word_dim); if (layer1_size != word_dim) { printf("[ERROR] Embedding dimension incompatible with pretrained file!\n"); exit(1); } vocab_size_tmp = 0; for (c = 0; c < pretrain_vocab_size; c++) { fscanf(fp, "%s", current_word); a = SearchVocab(current_word); if (a == -1) { for (b = 0; b < layer1_size; b++) fscanf(fp, "%f", &syn_tmp[b]); } else { for (b = 0; b < layer1_size; b++) fscanf(fp, "%f", &emb_ptr[a * layer1_size + b]); vocab_match_tmp[vocab_size_tmp] = a; vocab_size_tmp++; } } printf("In vocab: %d\n", vocab_size_tmp); qsort(&vocab_match_tmp[0], vocab_size_tmp, sizeof(int), IntCompare); vocab_match_tmp[vocab_size_tmp] = vocab_size; int i = 0; for (a = 0; a < vocab_size; a++) { if (a < vocab_match_tmp[i]) { for (b = 0; b < layer1_size; b++) { next_random = next_random * (unsigned long long) 25214903917 + 11; emb_ptr[a * layer1_size + b] = (((next_random & 0xFFFF) / (real) 65536) - 0.5) / layer1_size; } } else if (i < vocab_size_tmp) { i++; } } fclose(fp); free(current_word); free(emb_file); free(vocab_match_tmp); free(syn_tmp); } void ReadTopic() { long long a, b; int flag, vocab_idx; char tmp_word[MAX_STRING]; memset(tmp_word, '\0', sizeof(tmp_word)); topics = (struct topic *)calloc(topic_max_num, sizeof(struct topic)); FILE *fp = fopen(topic_file, "r"); char *line = NULL; size_t len = 0; ssize_t read; while ((read = getline(&line, &len, fp)) != -1) { flag = 0; line[read - 1] = 0; if (line[read - 2] == '\r') // windows line ending line[read - 2] = 0; read = strlen(line); while (read > 0 && (line[read - 1] == ' ' || line[read - 1] == '\n')) read--; if (read == 0) { printf("[ERROR] Empty String!\n"); exit(1); } if (line[0] == ' ') { printf("[ERROR] String starting with space!\n"); exit(1); } for (int i = 0; i + 1 < read; i++) { if (line[i] == ' ' && line[i + 1] == ' ') { printf("[ERROR] Consecutive spaces\n"); exit(1); } } int st = 0; // initialize topic topics[num_topic].cur_words = (int *)calloc(MAX_WORDS_TOPIC, sizeof(int)); topics[num_topic].emb = (real *)calloc(layer1_size, sizeof(real)); topics[num_topic].grad = (real *)calloc(layer1_size, sizeof(real)); topics[num_topic].wt_score = (real *)calloc(vocab_size, sizeof(real)); topics[num_topic].category_name = (char *)calloc(MAX_STRING, sizeof(char)); topics[num_topic].init_size = 0; // read words in line for (int i = 0; i <= read; i++) { if (line[i] == ' ' || i == read) { strncpy(tmp_word, line + st, i - st); tmp_word[i - st] = 0; if ((vocab_idx = SearchVocab(tmp_word)) != -1) { topics[num_topic].cur_words[topics[num_topic].init_size++] = vocab_idx; if (flag == 0) { strcpy(topics[num_topic].category_name, tmp_word); flag = 1; } } else { printf("[ERROR] Topic name %s not found in vocabulary!\n", tmp_word); exit(1); } st = i + 1; } } topics[num_topic].cur_size = topics[num_topic].init_size; num_topic++; } fclose(fp); topics = (struct topic *)realloc(topics, num_topic * sizeof(struct topic)); for (a = 0; a < num_topic; a++) { if (topics[a].init_size == 0) { printf("[ERROR] No word in topic!\n"); exit(1); } } printf("Read %d topics\n", num_topic); for (a = 0; a < num_topic; a++) { for (b = 0; b < topics[a].init_size; b++) { printf("%s\t", vocab[topics[a].cur_words[b]].word); } printf("\n"); } rankings = (int *)calloc(vocab_size, sizeof(int)); for (a = 0; a < vocab_size; a++) rankings[a] = a; spec_rankings = (int *)calloc(vocab_size, sizeof(int)); for (a = 0; a < vocab_size; a++) spec_rankings[a] = a; sim_rankings = (int *)calloc(vocab_size, sizeof(int)); for (a = 0; a < vocab_size; a++) sim_rankings[a] = a; } void InitNet() { long long a, b; unsigned long long next_random = 1; a = posix_memalign((void **) &syn0, 128, (long long) vocab_size * layer1_size * sizeof(real)); if (syn0 == NULL) { printf("[ERROR] Memory allocation failed\n"); exit(1); } a = posix_memalign((void **) &kappa, 128, (long long) vocab_size * sizeof(real)); if (kappa == NULL) { printf("[ERROR] Memory allocation failed (kappa)\n"); exit(1); } for (a = 0; a < vocab_size; a++) kappa[a] = 1.0; a = posix_memalign((void **) &syn1neg, 128, (long long) vocab_size * layer1_size * sizeof(real)); if (syn1neg == NULL) { printf("[ERROR] Memory allocation failed (syn1neg)\n"); exit(1); } a = posix_memalign((void **) &syn1doc, 128, (long long) corpus_size * layer1_size * sizeof(real)); if (syn1doc == NULL) { printf("[ERROR] Memory allocation failed (syn1doc)\n"); exit(1); } for (a = 0; a < corpus_size; a++) for (b = 0; b < layer1_size; b++) syn1doc[a * layer1_size + b] = 0; if (load_emb_file[0] != 0) { char *center_emb_file = (char *) calloc(MAX_STRING, sizeof(char)); strcpy(center_emb_file, load_emb_file); LoadEmb(center_emb_file, syn0); for (a = 0; a < vocab_size; a++) for (b = 0; b < layer1_size; b++) syn1neg[a * layer1_size + b] = 0; } else { for (a = 0; a < vocab_size; a++) for (b = 0; b < layer1_size; b++) { next_random = next_random * (unsigned long long) 25214903917 + 11; syn0[a * layer1_size + b] = (((next_random & 0xFFFF) / (real) 65536) - 0.5) / layer1_size; } for (a = 0; a < vocab_size; a++) for (b = 0; b < layer1_size; b++) syn1neg[a * layer1_size + b] = 0; } // Read topic names if (with_topic) { ReadTopic(); } } void TopicEmb() { long long i, j, k, word, c; real f, sum_exp; real *word_grad = (real *)calloc(layer1_size, sizeof(real)); real *exp_list = (real *)calloc(num_topic, sizeof(real)); // zero out gradient for (i = 0; i < num_topic; i++) for (c = 0; c < layer1_size; c++) topics[i].grad[c] = 0; for (i = 0; i < num_topic; i++) for (j = 0; j < topics[i].cur_size; j++) { word = topics[i].cur_words[j]; sum_exp = 0; for (k = 0; k < num_topic; k++) { f = 0; for (c = 0; c < layer1_size; c++) f += syn0[c + word*layer1_size] * topics[k].emb[c]; exp_list[k] = exp(f); sum_exp += exp(f); } for (c = 0; c < layer1_size; c++) word_grad[c] = 0; for (k = 0; k < num_topic; k++) { f = alpha * topic_lambda / (topics[i].cur_size * num_topic) * (exp_list[k] / sum_exp - (i == k ? 1 : 0)); for (c = 0; c < layer1_size; c++) word_grad[c] -= f * topics[k].emb[c]; for (c = 0; c < layer1_size; c++) topics[k].grad[c] -= f * syn0[c + word*layer1_size]; } for (c = 0; c < layer1_size; c++) syn0[c + word*layer1_size] += word_grad[c]; } // update topic embeddings for (i = 0; i < num_topic; i++) for (c = 0; c < layer1_size; c++) topics[i].emb[c] += topics[i].grad[c]; free(word_grad); free(exp_list); } void *TrainEmb(void *id) { long long a, b, d, doc, word, last_word, sentence_length = 0, sentence_position = 0; long long word_count = 0, last_word_count = 0, sen[MAX_SENTENCE_LENGTH + 1]; long long l1, l2, c, target, label, local_iter = is_pretrain ? pretrain_iters : 1; unsigned long long next_random = (long long) id; int word_counter = 0; real f, g; clock_t now; real *neu1 = (real *)calloc(layer1_size, sizeof(real)); real *neu1e = (real *)calloc(layer1_size, sizeof(real)); FILE *fi = fopen(train_file, "rb"); fseek(fi, file_size / (long long) num_threads * (long long) id, SEEK_SET); while (1) { if (word_count - last_word_count > 10000) { word_count_total += word_count - last_word_count; last_word_count = word_count; if ((debug_mode > 1)) { now = clock(); printf("%cAlpha: %f Progress: %.2f%% Words/thread/sec: %.2fk ", 13, alpha, word_count_total / (real) (iter * train_words + 1) * 100, word_count_total / ((real) (now - start + 1) / (real) CLOCKS_PER_SEC * 1000)); fflush(stdout); } alpha = starting_alpha * (1 - word_count_total / (real) (iter * train_words + 1)); if (alpha < starting_alpha * 0.0001) alpha = starting_alpha * 0.0001; } if (sentence_length == 0) { doc = FindLine(fi); while (1) { word = ReadWordIndex(fi); if (feof(fi)) break; if (word == -1) continue; word_count++; if (word == 0) break; if (sample > 0) { real ran = (sqrt(vocab[word].cn / (sample * train_words)) + 1) * (sample * train_words) / vocab[word].cn; next_random = next_random * (unsigned long long) 25214903917 + 11; if (ran < (next_random & 0xFFFF) / (real) 65536) continue; } sen[sentence_length] = word; sentence_length++; if (sentence_length >= MAX_SENTENCE_LENGTH) break; } sentence_position = 0; } if (feof(fi) || (word_count > train_words / num_threads)) { word_count_total += word_count - last_word_count; local_iter--; if (local_iter == 0) break; word_count = 0; last_word_count = 0; sentence_length = 0; fseek(fi, file_size / (long long) num_threads * (long long) id, SEEK_SET); continue; } // update topic-related embeddings if (!is_pretrain) { word_counter += 1; if (word_counter == words_per_reg) word_counter = 0; if (word_counter == 0) { TopicEmb(); } } word = sen[sentence_position]; if (word == -1) continue; for (c = 0; c < layer1_size; c++) neu1[c] = 0; for (c = 0; c < layer1_size; c++) neu1e[c] = 0; next_random = next_random * (unsigned long long) 25214903917 + 11; // b = next_random % window; b = 0; for (a = b; a < window * 2 + 1 - b; a++) if (a != window) { c = sentence_position - window + a; if (c < 0) continue; if (c >= sentence_length) continue; last_word = sen[c]; if (last_word == -1) continue; l1 = last_word * layer1_size; for (c = 0; c < layer1_size; c++) neu1e[c] = 0; // NEGATIVE SAMPLING real kappa_update = 0.0; for (d = 0; d < negative + 1; d++) { if (d == 0) { target = word; label = 1; } else { next_random = next_random * (unsigned long long) 25214903917 + 11; target = word_table[(next_random >> 16) % table_size]; if (target == 0) target = next_random % (vocab_size - 1) + 1; if (target == word) continue; label = 0; } l2 = target * layer1_size; f = 0; for (c = 0; c < layer1_size; c++) f += syn0[c + l1] * syn1neg[c + l2]; real tmp_kappa_update = f; f *= kappa[last_word]; if (f > MAX_EXP) g = (label - 1) * alpha; else if (f < -MAX_EXP) g = (label - 0) * alpha; else g = (label - expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))]) * alpha; for (c = 0; c < layer1_size; c++) neu1e[c] += g * kappa[last_word] * syn1neg[c + l2]; for (c = 0; c < layer1_size; c++) syn1neg[c + l2] += g * kappa[last_word] * syn0[c + l1]; if (with_spec) { tmp_kappa_update *= kappa[last_word]; if (tmp_kappa_update > MAX_EXP) g = (label - 1) * alpha; else if (tmp_kappa_update < -MAX_EXP) g = (label - 0) * alpha; else g = (label - expTable[(int) ((tmp_kappa_update + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))]) * alpha; kappa_update += g * tmp_kappa_update / kappa[last_word]; } } for (c = 0; c < layer1_size; c++) syn0[c + l1] += neu1e[c]; if (with_spec) { kappa[last_word] += spec_lambda * kappa_update; if (kappa[last_word] < 0) kappa[last_word] = 0; } } for (c = 0; c < layer1_size; c++) neu1e[c] = 0; real kappa_update = 0; for (d = 0; d < negative + 1; d++) { if (d == 0) { target = doc; label = 1; } else { next_random = next_random * (unsigned long long) 25214903917 + 11; target = doc_table[(next_random >> 16) % table_size]; if (target == doc) continue; label = 0; } l2 = target * layer1_size; f = 0; for (c = 0; c < layer1_size; c++) f += syn0[c + word * layer1_size] * syn1doc[c + l2]; real tmp_kappa_update = f; f *= kappa[word]; if (f > MAX_EXP) g = (label - 1) * alpha; else if (f < -MAX_EXP) g = (label - 0) * alpha; else g = (label - expTable[(int) ((f + MAX_EXP) * (EXP_TABLE_SIZE / MAX_EXP / 2))]) * alpha; g *= global_lambda; kappa_update += g * tmp_kappa_update; for (c = 0; c < layer1_size; c++) neu1e[c] += g * kappa[word] * syn1doc[c + l2]; for (c = 0; c < layer1_size; c++) syn1doc[c + l2] += g * kappa[word] * syn0[c + word * layer1_size]; } for (c = 0; c < layer1_size; c++) syn0[c + word * layer1_size] += neu1e[c]; if (with_spec) { kappa[word] += spec_lambda * kappa_update; if (kappa[word] < 0) kappa[word] = 0; } sentence_position++; if (sentence_position >= sentence_length) { sentence_length = 0; continue; } } fclose(fi); free(neu1); free(neu1e); pthread_exit(NULL); } void ExpandTopic() { long a, b, c; int cur_sz, flag; real norm; printf("\n"); for (a = 0; a < num_topic; a++) { for (b = 0; b < vocab_size; b++) { topics[a].wt_score[b] = 0; norm = 0; for (c = 0; c < layer1_size; c++) { topics[a].wt_score[b] += topics[a].emb[c] * syn0[b * layer1_size + c]; norm += syn0[b * layer1_size + c] * syn0[b * layer1_size + c]; } topics[a].wt_score[b] /= sqrt(norm); } wt_score_ptr = topics[a].wt_score; qsort(rankings, vocab_size, sizeof(int), SimCompare); if (fix_seed) { cur_sz = topics[a].init_size; for (b = 0; b < vocab_size; b++) { flag = 0; for (c = 0; c < topics[a].init_size; c++) { if (rankings[b] == topics[a].cur_words[c]) { flag = 1; break; } } if (flag == 0) topics[a].cur_words[cur_sz++] = rankings[b]; if (cur_sz >= topics[a].cur_size + expand) break; } } else { for (b = 0; b < topics[a].cur_size + expand; b++) topics[a].cur_words[b] = rankings[b]; } topics[a].cur_size += expand; printf("Category (%s): \t", topics[a].category_name); for (b = 0; b < topics[a].cur_size; b++) { printf("%s ", vocab[topics[a].cur_words[b]].word); } printf("\n"); } } void TopicMine() { long a, b, c, iter_count; pthread_t *pt = (pthread_t *)malloc(num_threads * sizeof(pthread_t)); // initialize topic embedding as averaged seed word embedding for (a = 0; a < num_topic; a++) for (b = 0; b < layer1_size; b++) { for (c = 0; c < topics[a].init_size; c++) { topics[a].emb[b] += syn0[topics[a].cur_words[c] * layer1_size + b]; } topics[a].emb[b] /= topics[a].init_size; } is_pretrain = 0; for (iter_count = pretrain_iters; iter_count < iter; iter_count++) { for (a = 0; a < num_threads; a++) pthread_create(&pt[a], NULL, TrainEmb, (void *) a); for (a = 0; a < num_threads; a++) pthread_join(pt[a], NULL); ExpandTopic(); } } void TrainModel() { long a, b; FILE *fo; pthread_t *pt = (pthread_t *) malloc(num_threads * sizeof(pthread_t)); printf("Starting training using file %s\n", train_file); if (with_spec) printf("Training with specificity; Specificity values output to file %s\n", spec_file); if (with_topic) printf("Reading topics from file %s\n", topic_file); if (context_output[0] != 0) printf("Context embedding output to: %s\n", context_output); if (doc_output[0] != 0) printf("Document embedding output to: %s\n", doc_output); starting_alpha = alpha; if (read_vocab_file[0] != 0) ReadVocab(); else LearnVocabFromTrainFile(); if (save_vocab_file[0] != 0) SaveVocab(); if (with_topic && topic_output[0] == 0) { printf("[ERROR] No topic embedding output file provided!\n"); return; } if (topic_file[0] != 0) { if (access(topic_file, R_OK) == -1) { printf("[ERROR] Topic file not exist!\n"); return; } } InitNet(); InitUnigramTable(); InitDocTable(); start = clock(); if (with_topic) { printf("Pre-training for %lld epochs, in total %lld + %lld = %lld epochs\n", pretrain_iters, pretrain_iters, iter, pretrain_iters + iter); iter += pretrain_iters; } else pretrain_iters = iter; is_pretrain = 1; // Unsupervised embedding training if (pretrain_iters > 0) { for (a = 0; a < num_threads; a++) pthread_create(&pt[a], NULL, TrainEmb, (void *) a); for (a = 0; a < num_threads; a++) pthread_join(pt[a], NULL); } // Topic mining if (with_topic) { TopicMine(); } // Save the word vectors if (output_file[0] != 0) { fo = fopen(output_file, "wb"); fprintf(fo, "%lld %lld\n", vocab_size, layer1_size); for (a = 0; a < vocab_size; a++) { fprintf(fo, "%s ", vocab[a].word); if (binary) for (b = 0; b < layer1_size; b++) { fwrite(&syn0[a * layer1_size + b], sizeof(real), 1, fo); } else for (b = 0; b < layer1_size; b++) { fprintf(fo, "%lf ", syn0[a * layer1_size + b]); } fprintf(fo, "\n"); } fclose(fo); } // Save the context vectors if (context_output[0] != 0) { fo = fopen(context_output, "wb"); fprintf(fo, "%lld %lld\n", vocab_size, layer1_size); for (a = 0; a < vocab_size; a++) { fprintf(fo, "%s ", vocab[a].word); for (b = 0; b < layer1_size; b++) { fprintf(fo, "%lf ", syn1neg[a * layer1_size + b]); } fprintf(fo, "\n"); } fclose(fo); } // Save the document vectors if (doc_output[0] != 0) { fo = fopen(doc_output, "wb"); fprintf(fo, "%lld %lld\n", corpus_size, layer1_size); for (a = 0; a < corpus_size; a++) { fprintf(fo, "%ld ", a); for (b = 0; b < layer1_size; b++) { fprintf(fo, "%lf ", syn1doc[a * layer1_size + b]); } fprintf(fo, "\n"); } fclose(fo); } // Save the specificity values if (with_spec) { fo = fopen(spec_file, "wb"); fprintf(fo, "%lld\n", vocab_size); for (a = 0; a < vocab_size; a++) { fprintf(fo, "%s ", vocab[a].word); fprintf(fo, "%lf\n", kappa[a]); } fclose(fo); } // Save the topic embeddings if (with_topic && topic_output[0] != 0) { fo = fopen(topic_output, "wb"); fprintf(fo, "%d\n", num_topic); for (a = 0; a < num_topic; a++) { fprintf(fo, "%s ", topics[a].category_name); for (b = 0; b < layer1_size; b++) { fprintf(fo, "%lf ", topics[a].emb[b]); } fprintf(fo, "\n"); } fclose(fo); } } void WriteResult() { long a, b, c; int cur_sz, flag; real norm; FILE *fo = fopen(res_file, "wb"); printf("Topic mining results written to file %s\n", res_file); for (a = 0; a < num_topic; a++) { for (b = 0; b < vocab_size; b++) { topics[a].wt_score[b] = 0; norm = 0; for (c = 0; c < layer1_size; c++) { topics[a].wt_score[b] += topics[a].emb[c] * syn0[b * layer1_size + c]; norm += syn0[b * layer1_size + c] * syn0[b * layer1_size + c]; } topics[a].wt_score[b] /= sqrt(norm); } wt_score_ptr = topics[a].wt_score; qsort(rankings, vocab_size, sizeof(int), SimCompare); if (rank_ensemble && topics[a].init_size == 1) { for (b = 0; b < vocab_size; b++) sim_rankings[rankings[b]] = (b < num_per_topic + topics[a].init_size) ? b + 1 : -1; qsort(rankings, vocab_size, sizeof(int), SpecCompare); for (b = 0; b < vocab_size; b++) spec_rankings[rankings[b]] = b + 1; qsort(rankings, vocab_size, sizeof(int), RankEnsemble); } fprintf(fo, "Category (%s):\n", topics[a].category_name); cur_sz = 0; for (b = 0; b < vocab_size; b++) { flag = 0; for (c = 0; c < topics[a].init_size; c++) { if (rankings[b] == topics[a].cur_words[c]) { flag = 1; break; } } if (flag == 0) { fprintf(fo, "%s ", vocab[rankings[b]].word); cur_sz++; } if (cur_sz >= num_per_topic) break; } fprintf(fo, "\n"); } fclose(fo); } int ArgPos(char *str, int argc, char **argv) { int a; for (a = 1; a < argc; a++) if (!strcmp(str, argv[a])) { if (a == argc - 1) { printf("[ERROR] Argument missing for %s\n", str); exit(1); } return a; } return -1; } int main(int argc, char **argv) { int i; if (argc == 1) { printf("Parameters:\n"); printf("\t########## Input/Output: ##########\n"); printf("\t-train <file> (mandatory argument)\n"); printf("\t\tUse text data from <file> to train the model\n"); printf("\t-topic-name <file>\n"); printf("\t\tUse <file> to provide the topic names/keywords; if not provided, unsupervised embeddings will be trained\n"); printf("\t-res <file>\n"); printf("\t\tUse <file> to save the topic mining results\n"); printf("\t-k <int>\n"); printf("\t\tSet the number of terms per topic in the output file; default is 10\n"); printf("\t-word-emb <file>\n"); printf("\t\tUse <file> to save the resulting word embeddings\n"); printf("\t-topic-emb <file>\n"); printf("\t\tUse <file> to save the resulting topic embeddings\n"); printf("\t-spec <file>\n"); printf("\t\tUse <file> to save the resulting word specificity value; if not provided, embeddings will be trained without specificity\n"); printf("\t-load-emb <file>\n"); printf("\t\tThe pretrained embeddings will be read from <file>\n"); printf("\t-binary <int>\n"); printf("\t\tSave the resulting vectors in binary moded; default is 0 (off)\n"); printf("\t-save-vocab <file>\n"); printf("\t\tThe vocabulary will be saved to <file>\n"); printf("\t-read-vocab <file>\n"); printf("\t\tThe vocabulary will be read from <file>, not constructed from the training data\n"); printf("\n\t########## Embedding Training: ##########\n"); printf("\t-size <int>\n"); printf("\t\tSet dimension of text embeddings; default is 100\n"); printf("\t-iter <int>\n"); printf("\t\tSet the number of iterations to train on the corpus (performing topic mining); default is 5\n"); printf("\t-pretrain <int>\n"); printf("\t\tSet the number of iterations to pretrain on the corpus (without performing topic mining); default is 2\n"); printf("\t-expand <int>\n"); printf("\t\tSet the number of terms to be added per topic per iteration; default is 1\n"); printf("\t-window <int>\n"); printf("\t\tSet max skip length between words; default is 5\n"); printf("\t-sample <float>\n"); printf("\t\tSet threshold for occurrence of words. Those that appear with higher frequency in the training data\n"); printf("\t\twill be randomly down-sampled; default is 1e-3, useful range is (0, 1e-5)\n"); printf("\t-negative <int>\n"); printf("\t\tNumber of negative examples; default is 5, common values are 3 - 10 (0 = not used)\n"); printf("\t-threads <int>\n"); printf("\t\tUse <int> threads (default 12)\n"); printf("\t-min-count <int>\n"); printf("\t\tThis will discard words that appear less than <int> times; default is 5\n"); printf("\t-alpha <float>\n"); printf("\t\tSet the starting learning rate; default is 0.025\n"); printf("\t-debug <int>\n"); printf("\t\tSet the debug mode (default = 2 = more info during training)\n"); printf("\nSee run.sh for an example to set the arguments\n"); return 0; } output_file[0] = 0; topic_file[0] = 0; context_output[0] = 0; topic_output[0] = 0; save_vocab_file[0] = 0; read_vocab_file[0] = 0; res_file[0] = 0; if ((i = ArgPos((char *) "-size", argc, argv)) > 0) layer1_size = atoi(argv[i + 1]); if ((i = ArgPos((char *) "-train", argc, argv)) > 0) strcpy(train_file, argv[i + 1]); if ((i = ArgPos((char *) "-k", argc, argv)) > 0) num_per_topic = atoi(argv[i + 1]); if ((i = ArgPos((char *) "-expand", argc, argv)) > 0) expand = atoi(argv[i + 1]); if ((i = ArgPos((char *) "-res", argc, argv)) > 0) strcpy(res_file, argv[i + 1]); if ((i = ArgPos((char *) "-save-vocab", argc, argv)) > 0) strcpy(save_vocab_file, argv[i + 1]); if ((i = ArgPos((char *) "-read-vocab", argc, argv)) > 0) strcpy(read_vocab_file, argv[i + 1]); if ((i = ArgPos((char *) "-debug", argc, argv)) > 0) debug_mode = atoi(argv[i + 1]); if ((i = ArgPos((char *) "-binary", argc, argv)) > 0) binary = atoi(argv[i + 1]); if ((i = ArgPos((char *) "-alpha", argc, argv)) > 0) alpha = atof(argv[i + 1]); if ((i = ArgPos((char *) "-word-emb", argc, argv)) > 0) strcpy(output_file, argv[i + 1]); // if ((i = ArgPos((char *) "-context", argc, argv)) > 0) strcpy(context_output, argv[i + 1]); // if ((i = ArgPos((char *) "-doc", argc, argv)) > 0) strcpy(doc_output, argv[i + 1]); if ((i = ArgPos((char *) "-topic-emb", argc, argv)) > 0) strcpy(topic_output, argv[i + 1]); if ((i = ArgPos((char *) "-spec", argc, argv)) > 0) { strcpy(spec_file, argv[i + 1]); with_spec = 1; } if ((i = ArgPos((char *) "-topic-name", argc, argv)) > 0) { strcpy(topic_file, argv[i + 1]); with_topic = 1; } if ((i = ArgPos((char *) "-pretrain", argc, argv)) > 0) pretrain_iters = atoi(argv[i + 1]); if ((i = ArgPos((char *) "-load-emb", argc, argv)) > 0) strcpy(load_emb_file, argv[i + 1]); if ((i = ArgPos((char *) "-window", argc, argv)) > 0) window = atoi(argv[i + 1]); if ((i = ArgPos((char *) "-sample", argc, argv)) > 0) sample = atof(argv[i + 1]); if ((i = ArgPos((char *) "-negative", argc, argv)) > 0) negative = atoi(argv[i + 1]); if ((i = ArgPos((char *) "-threads", argc, argv)) > 0) num_threads = atoi(argv[i + 1]); if ((i = ArgPos((char *) "-iter", argc, argv)) > 0) iter = atoi(argv[i + 1]); if ((i = ArgPos((char *) "-min-count", argc, argv)) > 0) min_count = atoi(argv[i + 1]); if (with_topic == 1 && res_file[0] == 0) { printf("[ERROR] No topic mining result file name provided! Use \"-res\" to indicate the file name to write results to!\n"); return 1; } vocab = (struct vocab_word *) calloc(vocab_max_size, sizeof(struct vocab_word)); vocab_hash = (int *) calloc(vocab_hash_size, sizeof(int)); docs = (int *) calloc(corpus_max_size, sizeof(int)); doc_sizes = (long long *) calloc(corpus_max_size, sizeof(long long)); expTable = (real *) malloc((EXP_TABLE_SIZE + 1) * sizeof(real)); for (i = 0; i < EXP_TABLE_SIZE; i++) { expTable[i] = exp((i / (real) EXP_TABLE_SIZE * 2 - 1) * MAX_EXP); expTable[i] = expTable[i] / (expTable[i] + 1); } TrainModel(); if (with_topic) WriteResult(); return 0; }
the_stack_data/125985.c
/* f2c.h -- Standard Fortran to C header file */ /** barf [ba:rf] 2. "He suggested using FORTRAN, and everybody barfed." - From The Shogakukan DICTIONARY OF NEW ENGLISH (Second edition) */ #ifndef F2C_INCLUDE #define F2C_INCLUDE #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; 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;} #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)); } #define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);} #define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);} #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) = conj(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) (cimag(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; } 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; } 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; } 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; _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; } static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; _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; } static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; _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; } static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; _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 doublecomplex c_b1 = {1.,0.}; static integer c__1 = 1; /* > \brief \b ZSYTRS_ROOK */ /* =========== DOCUMENTATION =========== */ /* Online html documentation available at */ /* http://www.netlib.org/lapack/explore-html/ */ /* > \htmlonly */ /* > Download ZSYTRS_ROOK + dependencies */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/zsytrs_ rook.f"> */ /* > [TGZ]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/zsytrs_ rook.f"> */ /* > [ZIP]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/zsytrs_ rook.f"> */ /* > [TXT]</a> */ /* > \endhtmlonly */ /* Definition: */ /* =========== */ /* SUBROUTINE ZSYTRS_ROOK( UPLO, N, NRHS, A, LDA, IPIV, B, LDB, INFO ) */ /* CHARACTER UPLO */ /* INTEGER INFO, LDA, LDB, N, NRHS */ /* INTEGER IPIV( * ) */ /* COMPLEX*16 A( LDA, * ), B( LDB, * ) */ /* > \par Purpose: */ /* ============= */ /* > */ /* > \verbatim */ /* > */ /* > ZSYTRS_ROOK solves a system of linear equations A*X = B with */ /* > a complex symmetric matrix A using the factorization A = U*D*U**T or */ /* > A = L*D*L**T computed by ZSYTRF_ROOK. */ /* > \endverbatim */ /* Arguments: */ /* ========== */ /* > \param[in] UPLO */ /* > \verbatim */ /* > UPLO is CHARACTER*1 */ /* > Specifies whether the details of the factorization are stored */ /* > as an upper or lower triangular matrix. */ /* > = 'U': Upper triangular, form is A = U*D*U**T; */ /* > = 'L': Lower triangular, form is A = L*D*L**T. */ /* > \endverbatim */ /* > */ /* > \param[in] N */ /* > \verbatim */ /* > N is INTEGER */ /* > The order of the matrix A. N >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in] NRHS */ /* > \verbatim */ /* > NRHS is INTEGER */ /* > The number of right hand sides, i.e., the number of columns */ /* > of the matrix B. NRHS >= 0. */ /* > \endverbatim */ /* > */ /* > \param[in] A */ /* > \verbatim */ /* > A is COMPLEX*16 array, dimension (LDA,N) */ /* > The block diagonal matrix D and the multipliers used to */ /* > obtain the factor U or L as computed by ZSYTRF_ROOK. */ /* > \endverbatim */ /* > */ /* > \param[in] LDA */ /* > \verbatim */ /* > LDA is INTEGER */ /* > The leading dimension of the array A. LDA >= f2cmax(1,N). */ /* > \endverbatim */ /* > */ /* > \param[in] IPIV */ /* > \verbatim */ /* > IPIV is INTEGER array, dimension (N) */ /* > Details of the interchanges and the block structure of D */ /* > as determined by ZSYTRF_ROOK. */ /* > \endverbatim */ /* > */ /* > \param[in,out] B */ /* > \verbatim */ /* > B is COMPLEX*16 array, dimension (LDB,NRHS) */ /* > On entry, the right hand side matrix B. */ /* > On exit, the solution matrix X. */ /* > \endverbatim */ /* > */ /* > \param[in] LDB */ /* > \verbatim */ /* > LDB is INTEGER */ /* > The leading dimension of the array B. LDB >= f2cmax(1,N). */ /* > \endverbatim */ /* > */ /* > \param[out] INFO */ /* > \verbatim */ /* > INFO is INTEGER */ /* > = 0: successful exit */ /* > < 0: if INFO = -i, the i-th argument had an illegal value */ /* > \endverbatim */ /* Authors: */ /* ======== */ /* > \author Univ. of Tennessee */ /* > \author Univ. of California Berkeley */ /* > \author Univ. of Colorado Denver */ /* > \author NAG Ltd. */ /* > \date December 2016 */ /* > \ingroup complex16SYcomputational */ /* > \par Contributors: */ /* ================== */ /* > */ /* > \verbatim */ /* > */ /* > December 2016, Igor Kozachenko, */ /* > Computer Science Division, */ /* > University of California, Berkeley */ /* > */ /* > September 2007, Sven Hammarling, Nicholas J. Higham, Craig Lucas, */ /* > School of Mathematics, */ /* > University of Manchester */ /* > */ /* > \endverbatim */ /* ===================================================================== */ /* Subroutine */ int zsytrs_rook_(char *uplo, integer *n, integer *nrhs, doublecomplex *a, integer *lda, integer *ipiv, doublecomplex *b, integer *ldb, integer *info) { /* System generated locals */ integer a_dim1, a_offset, b_dim1, b_offset, i__1, i__2; doublecomplex z__1, z__2, z__3; /* Local variables */ doublecomplex akm1k; integer j, k; extern logical lsame_(char *, char *); doublecomplex denom; extern /* Subroutine */ int zscal_(integer *, doublecomplex *, doublecomplex *, integer *), zgemv_(char *, integer *, integer *, doublecomplex *, doublecomplex *, integer *, doublecomplex *, integer *, doublecomplex *, doublecomplex *, integer *); logical upper; extern /* Subroutine */ int zgeru_(integer *, integer *, doublecomplex *, doublecomplex *, integer *, doublecomplex *, integer *, doublecomplex *, integer *), zswap_(integer *, doublecomplex *, integer *, doublecomplex *, integer *); doublecomplex ak, bk; integer kp; extern /* Subroutine */ int xerbla_(char *, integer *, ftnlen); doublecomplex akm1, bkm1; /* -- LAPACK computational routine (version 3.7.0) -- */ /* -- LAPACK is a software package provided by Univ. of Tennessee, -- */ /* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */ /* December 2016 */ /* ===================================================================== */ /* Parameter adjustments */ a_dim1 = *lda; a_offset = 1 + a_dim1 * 1; a -= a_offset; --ipiv; b_dim1 = *ldb; b_offset = 1 + b_dim1 * 1; b -= b_offset; /* Function Body */ *info = 0; upper = lsame_(uplo, "U"); if (! upper && ! lsame_(uplo, "L")) { *info = -1; } else if (*n < 0) { *info = -2; } else if (*nrhs < 0) { *info = -3; } else if (*lda < f2cmax(1,*n)) { *info = -5; } else if (*ldb < f2cmax(1,*n)) { *info = -8; } if (*info != 0) { i__1 = -(*info); xerbla_("ZSYTRS_ROOK", &i__1, (ftnlen)11); return 0; } /* Quick return if possible */ if (*n == 0 || *nrhs == 0) { return 0; } if (upper) { /* Solve A*X = B, where A = U*D*U**T. */ /* First solve U*D*X = B, overwriting B with X. */ /* K is the main loop index, decreasing from N to 1 in steps of */ /* 1 or 2, depending on the size of the diagonal blocks. */ k = *n; L10: /* If K < 1, exit from loop. */ if (k < 1) { goto L30; } if (ipiv[k] > 0) { /* 1 x 1 diagonal block */ /* Interchange rows K and IPIV(K). */ kp = ipiv[k]; if (kp != k) { zswap_(nrhs, &b[k + b_dim1], ldb, &b[kp + b_dim1], ldb); } /* Multiply by inv(U(K)), where U(K) is the transformation */ /* stored in column K of A. */ i__1 = k - 1; z__1.r = -1., z__1.i = 0.; zgeru_(&i__1, nrhs, &z__1, &a[k * a_dim1 + 1], &c__1, &b[k + b_dim1], ldb, &b[b_dim1 + 1], ldb); /* Multiply by the inverse of the diagonal block. */ z_div(&z__1, &c_b1, &a[k + k * a_dim1]); zscal_(nrhs, &z__1, &b[k + b_dim1], ldb); --k; } else { /* 2 x 2 diagonal block */ /* Interchange rows K and -IPIV(K) THEN K-1 and -IPIV(K-1) */ kp = -ipiv[k]; if (kp != k) { zswap_(nrhs, &b[k + b_dim1], ldb, &b[kp + b_dim1], ldb); } kp = -ipiv[k - 1]; if (kp != k - 1) { zswap_(nrhs, &b[k - 1 + b_dim1], ldb, &b[kp + b_dim1], ldb); } /* Multiply by inv(U(K)), where U(K) is the transformation */ /* stored in columns K-1 and K of A. */ if (k > 2) { i__1 = k - 2; z__1.r = -1., z__1.i = 0.; zgeru_(&i__1, nrhs, &z__1, &a[k * a_dim1 + 1], &c__1, &b[k + b_dim1], ldb, &b[b_dim1 + 1], ldb); i__1 = k - 2; z__1.r = -1., z__1.i = 0.; zgeru_(&i__1, nrhs, &z__1, &a[(k - 1) * a_dim1 + 1], &c__1, & b[k - 1 + b_dim1], ldb, &b[b_dim1 + 1], ldb); } /* Multiply by the inverse of the diagonal block. */ i__1 = k - 1 + k * a_dim1; akm1k.r = a[i__1].r, akm1k.i = a[i__1].i; z_div(&z__1, &a[k - 1 + (k - 1) * a_dim1], &akm1k); akm1.r = z__1.r, akm1.i = z__1.i; z_div(&z__1, &a[k + k * a_dim1], &akm1k); ak.r = z__1.r, ak.i = z__1.i; z__2.r = akm1.r * ak.r - akm1.i * ak.i, z__2.i = akm1.r * ak.i + akm1.i * ak.r; z__1.r = z__2.r - 1., z__1.i = z__2.i + 0.; denom.r = z__1.r, denom.i = z__1.i; i__1 = *nrhs; for (j = 1; j <= i__1; ++j) { z_div(&z__1, &b[k - 1 + j * b_dim1], &akm1k); bkm1.r = z__1.r, bkm1.i = z__1.i; z_div(&z__1, &b[k + j * b_dim1], &akm1k); bk.r = z__1.r, bk.i = z__1.i; i__2 = k - 1 + j * b_dim1; z__3.r = ak.r * bkm1.r - ak.i * bkm1.i, z__3.i = ak.r * bkm1.i + ak.i * bkm1.r; z__2.r = z__3.r - bk.r, z__2.i = z__3.i - bk.i; z_div(&z__1, &z__2, &denom); b[i__2].r = z__1.r, b[i__2].i = z__1.i; i__2 = k + j * b_dim1; z__3.r = akm1.r * bk.r - akm1.i * bk.i, z__3.i = akm1.r * bk.i + akm1.i * bk.r; z__2.r = z__3.r - bkm1.r, z__2.i = z__3.i - bkm1.i; z_div(&z__1, &z__2, &denom); b[i__2].r = z__1.r, b[i__2].i = z__1.i; /* L20: */ } k += -2; } goto L10; L30: /* Next solve U**T *X = B, overwriting B with X. */ /* K is the main loop index, increasing from 1 to N in steps of */ /* 1 or 2, depending on the size of the diagonal blocks. */ k = 1; L40: /* If K > N, exit from loop. */ if (k > *n) { goto L50; } if (ipiv[k] > 0) { /* 1 x 1 diagonal block */ /* Multiply by inv(U**T(K)), where U(K) is the transformation */ /* stored in column K of A. */ if (k > 1) { i__1 = k - 1; z__1.r = -1., z__1.i = 0.; zgemv_("Transpose", &i__1, nrhs, &z__1, &b[b_offset], ldb, &a[ k * a_dim1 + 1], &c__1, &c_b1, &b[k + b_dim1], ldb); } /* Interchange rows K and IPIV(K). */ kp = ipiv[k]; if (kp != k) { zswap_(nrhs, &b[k + b_dim1], ldb, &b[kp + b_dim1], ldb); } ++k; } else { /* 2 x 2 diagonal block */ /* Multiply by inv(U**T(K+1)), where U(K+1) is the transformation */ /* stored in columns K and K+1 of A. */ if (k > 1) { i__1 = k - 1; z__1.r = -1., z__1.i = 0.; zgemv_("Transpose", &i__1, nrhs, &z__1, &b[b_offset], ldb, &a[ k * a_dim1 + 1], &c__1, &c_b1, &b[k + b_dim1], ldb); i__1 = k - 1; z__1.r = -1., z__1.i = 0.; zgemv_("Transpose", &i__1, nrhs, &z__1, &b[b_offset], ldb, &a[ (k + 1) * a_dim1 + 1], &c__1, &c_b1, &b[k + 1 + b_dim1], ldb); } /* Interchange rows K and -IPIV(K) THEN K+1 and -IPIV(K+1). */ kp = -ipiv[k]; if (kp != k) { zswap_(nrhs, &b[k + b_dim1], ldb, &b[kp + b_dim1], ldb); } kp = -ipiv[k + 1]; if (kp != k + 1) { zswap_(nrhs, &b[k + 1 + b_dim1], ldb, &b[kp + b_dim1], ldb); } k += 2; } goto L40; L50: ; } else { /* Solve A*X = B, where A = L*D*L**T. */ /* First solve L*D*X = B, overwriting B with X. */ /* K is the main loop index, increasing from 1 to N in steps of */ /* 1 or 2, depending on the size of the diagonal blocks. */ k = 1; L60: /* If K > N, exit from loop. */ if (k > *n) { goto L80; } if (ipiv[k] > 0) { /* 1 x 1 diagonal block */ /* Interchange rows K and IPIV(K). */ kp = ipiv[k]; if (kp != k) { zswap_(nrhs, &b[k + b_dim1], ldb, &b[kp + b_dim1], ldb); } /* Multiply by inv(L(K)), where L(K) is the transformation */ /* stored in column K of A. */ if (k < *n) { i__1 = *n - k; z__1.r = -1., z__1.i = 0.; zgeru_(&i__1, nrhs, &z__1, &a[k + 1 + k * a_dim1], &c__1, &b[ k + b_dim1], ldb, &b[k + 1 + b_dim1], ldb); } /* Multiply by the inverse of the diagonal block. */ z_div(&z__1, &c_b1, &a[k + k * a_dim1]); zscal_(nrhs, &z__1, &b[k + b_dim1], ldb); ++k; } else { /* 2 x 2 diagonal block */ /* Interchange rows K and -IPIV(K) THEN K+1 and -IPIV(K+1) */ kp = -ipiv[k]; if (kp != k) { zswap_(nrhs, &b[k + b_dim1], ldb, &b[kp + b_dim1], ldb); } kp = -ipiv[k + 1]; if (kp != k + 1) { zswap_(nrhs, &b[k + 1 + b_dim1], ldb, &b[kp + b_dim1], ldb); } /* Multiply by inv(L(K)), where L(K) is the transformation */ /* stored in columns K and K+1 of A. */ if (k < *n - 1) { i__1 = *n - k - 1; z__1.r = -1., z__1.i = 0.; zgeru_(&i__1, nrhs, &z__1, &a[k + 2 + k * a_dim1], &c__1, &b[ k + b_dim1], ldb, &b[k + 2 + b_dim1], ldb); i__1 = *n - k - 1; z__1.r = -1., z__1.i = 0.; zgeru_(&i__1, nrhs, &z__1, &a[k + 2 + (k + 1) * a_dim1], & c__1, &b[k + 1 + b_dim1], ldb, &b[k + 2 + b_dim1], ldb); } /* Multiply by the inverse of the diagonal block. */ i__1 = k + 1 + k * a_dim1; akm1k.r = a[i__1].r, akm1k.i = a[i__1].i; z_div(&z__1, &a[k + k * a_dim1], &akm1k); akm1.r = z__1.r, akm1.i = z__1.i; z_div(&z__1, &a[k + 1 + (k + 1) * a_dim1], &akm1k); ak.r = z__1.r, ak.i = z__1.i; z__2.r = akm1.r * ak.r - akm1.i * ak.i, z__2.i = akm1.r * ak.i + akm1.i * ak.r; z__1.r = z__2.r - 1., z__1.i = z__2.i + 0.; denom.r = z__1.r, denom.i = z__1.i; i__1 = *nrhs; for (j = 1; j <= i__1; ++j) { z_div(&z__1, &b[k + j * b_dim1], &akm1k); bkm1.r = z__1.r, bkm1.i = z__1.i; z_div(&z__1, &b[k + 1 + j * b_dim1], &akm1k); bk.r = z__1.r, bk.i = z__1.i; i__2 = k + j * b_dim1; z__3.r = ak.r * bkm1.r - ak.i * bkm1.i, z__3.i = ak.r * bkm1.i + ak.i * bkm1.r; z__2.r = z__3.r - bk.r, z__2.i = z__3.i - bk.i; z_div(&z__1, &z__2, &denom); b[i__2].r = z__1.r, b[i__2].i = z__1.i; i__2 = k + 1 + j * b_dim1; z__3.r = akm1.r * bk.r - akm1.i * bk.i, z__3.i = akm1.r * bk.i + akm1.i * bk.r; z__2.r = z__3.r - bkm1.r, z__2.i = z__3.i - bkm1.i; z_div(&z__1, &z__2, &denom); b[i__2].r = z__1.r, b[i__2].i = z__1.i; /* L70: */ } k += 2; } goto L60; L80: /* Next solve L**T *X = B, overwriting B with X. */ /* K is the main loop index, decreasing from N to 1 in steps of */ /* 1 or 2, depending on the size of the diagonal blocks. */ k = *n; L90: /* If K < 1, exit from loop. */ if (k < 1) { goto L100; } if (ipiv[k] > 0) { /* 1 x 1 diagonal block */ /* Multiply by inv(L**T(K)), where L(K) is the transformation */ /* stored in column K of A. */ if (k < *n) { i__1 = *n - k; z__1.r = -1., z__1.i = 0.; zgemv_("Transpose", &i__1, nrhs, &z__1, &b[k + 1 + b_dim1], ldb, &a[k + 1 + k * a_dim1], &c__1, &c_b1, &b[k + b_dim1], ldb); } /* Interchange rows K and IPIV(K). */ kp = ipiv[k]; if (kp != k) { zswap_(nrhs, &b[k + b_dim1], ldb, &b[kp + b_dim1], ldb); } --k; } else { /* 2 x 2 diagonal block */ /* Multiply by inv(L**T(K-1)), where L(K-1) is the transformation */ /* stored in columns K-1 and K of A. */ if (k < *n) { i__1 = *n - k; z__1.r = -1., z__1.i = 0.; zgemv_("Transpose", &i__1, nrhs, &z__1, &b[k + 1 + b_dim1], ldb, &a[k + 1 + k * a_dim1], &c__1, &c_b1, &b[k + b_dim1], ldb); i__1 = *n - k; z__1.r = -1., z__1.i = 0.; zgemv_("Transpose", &i__1, nrhs, &z__1, &b[k + 1 + b_dim1], ldb, &a[k + 1 + (k - 1) * a_dim1], &c__1, &c_b1, &b[k - 1 + b_dim1], ldb); } /* Interchange rows K and -IPIV(K) THEN K-1 and -IPIV(K-1) */ kp = -ipiv[k]; if (kp != k) { zswap_(nrhs, &b[k + b_dim1], ldb, &b[kp + b_dim1], ldb); } kp = -ipiv[k - 1]; if (kp != k - 1) { zswap_(nrhs, &b[k - 1 + b_dim1], ldb, &b[kp + b_dim1], ldb); } k += -2; } goto L90; L100: ; } return 0; /* End of ZSYTRS_ROOK */ } /* zsytrs_rook__ */
the_stack_data/976428.c
/* File: prog5.4_omp_back_sub.c * * Purpose: Implement parallel back substitution with OpenMP * * Compile: gcc -g -Wall -fopenmp -o omp_back_sub omp_back_sub.c -lm * Run: ./omp_back_sub <number of threads> <n> * * Input: None * Output: Max error in solution. If DEBUG flag is set, * matrix, right-hand side, and actual solution. * * Notes: * 1. The diagonal of the coefficient matrix is n/10. The remaining * entries are random positive floats between 0 and 1. * 2. Solution to system is x[i] = 1. * * Answers to questions in Programming Assignment 5.4 * (a), (b) See documentation for function Row_solve, below. * (c), (d) See documentation for function Col_solve, below. * (f) On one of our systems with four threads the best performance * was obtained with a static partition and chunksize = * n/thread_count, although both guided and dynamic did well * with large chunksizes. * * IPP: Programming Assignment 5.4 */ #include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> #include <omp.h> void Get_args(int argc, char* argv[], int* thread_count_p, int* n_p); void Init(double A[], double b[], double x[], int n); void Row_solve(double A[], double b[], double x[], int n, int thread_count); void Col_solve(double A[], double b[], double x[], int n, int thread_count); double Find_error(double x[], int n); void Print_mat(char title[], double A[], int n); void Print_vect(char title[], double x[], int n); int main(int argc, char* argv[]) { int n, thread_count; double *A, *b, *x; double start, finish; Get_args(argc, argv, &thread_count, &n); A = malloc(n*n*sizeof(double)); b = malloc(n*sizeof(double)); x = malloc(n*sizeof(double)); Init(A, b, x, n); # ifdef DEBUG Print_mat("A = ", A, n); Print_vect("b = ", b, n); # endif memset(x, 0, n*sizeof(double)); start = omp_get_wtime(); Row_solve(A, b, x, n, thread_count); finish = omp_get_wtime(); printf("Elapsed time for row solve = %e seconds\n", finish-start); printf("Max error in row solve = %e\n", Find_error(x,n)); # ifdef DEBUG Print_vect("Row sol =", x, n); # endif memset(x, 0, n*sizeof(double)); start = omp_get_wtime(); Col_solve(A, b, x, n, thread_count); finish = omp_get_wtime(); printf("Elapsed time for row solve = %e seconds\n", finish-start); printf("Max error in col solve = %e\n", Find_error(x,n)); # ifdef DEBUG Print_vect("Col sol =", x, n); # endif free(A); free(b); free(x); return 0; } /* main */ /*--------------------------------------------------------------------*/ void Get_args(int argc, char* argv[], int* thread_count_p, int* n_p) { if (argc != 3) { fprintf(stderr, "usage: %s <thread_count> <n>\n", argv[0]); exit(0); } *thread_count_p = strtol(argv[1], NULL, 10); *n_p = strtol(argv[2], NULL, 10); } /* Get_args */ /*--------------------------------------------------------------------*/ void Init(double A[], double b[], double x[], int n) { int i, j; for (i = 0; i < n; i++) x[i] = 1.0; srandom(1); memset(A, 0, n*n*sizeof(double)); for (i = 0; i < n; i++) { A[i*n+i] = n/10.0; for (j = i+1; j < n; j++) A[i*n + j] = random()/((double) RAND_MAX); } for (i = 0; i < n; i++) { b[i] = 0; for (j = i; j < n; j++) b[i] += A[i*n + j]*x[j]; } memset(x, 0, n*sizeof(double)); } /* Init */ /*-------------------------------------------------------------------- * Function: Row_solve * Purpose: Solve a triangular system using the row-oriented algorithm * In args: A, b, n, thread_count * Out arg: x * * Notes: * 1. The outer loop can't be parallelized because of a loop-carried * dependence: * x[i] depends on x[j] for j = i+1, i+2, . . . , n-1 * 2. The inner loop can be parallelized: it's just a reduction. * Note the use of the single directives. These insure that * initialization of tmp and the assignment to x[i] are only * executed by one thread. Also, since they have implicit * barriers, they insure that no thread can start executing * the inner for loop until the initialization is completed, * and no thread can start a subsequent iteration of the outer * for loop until x[i] has been computed. * 3. Note that an array can't be a reduction variable. So the * use of tmp is necessary. */ void Row_solve(double A[], double b[], double x[], int n, int thread_count) { int i, j; double tmp; # pragma omp parallel num_threads(thread_count) \ default(none) private(i, j) shared(A, b, n, x, tmp) for (i = n-1; i >= 0; i--) { # pragma omp single tmp = b[i]; # pragma omp for reduction(+: tmp) schedule(runtime) for (j = i+1; j < n; j++) tmp += -A[i*n+j]*x[j]; # pragma omp single { x[i] = tmp/A[i*n+i]; # ifdef DEBUG printf("x[%d] = %.1f\n", i, x[i]); # endif } } } /* Row_solve */ /*-------------------------------------------------------------------- * Function: Col_solve * Purpose: Solve a triangular system using the column-oriented algorithm * In args: A, b, n, thread_count * Out arg: x * * Notes: * 1. The (second) outer loop has a loop-carried dependence. The * value of x[j] in the current iteration will, in general, have * been changed in previous iterations. There will also be * a race condition in the updates to x[i]: if the iterations * are partitioned among the threads, multiple threads may try * to update x[i] simultaneously with their values of x[j]. * 2. The iterations in the inner loop, however, are indepdendent, * as long as all the threads are working with the same x[j] * Once again, note the use of the single directive. */ void Col_solve(double A[], double b[], double x[], int n, int thread_count) { int i, j; # pragma omp parallel num_threads(thread_count) \ default(none) private(i,j) shared(A, b, x, n) { # pragma omp for for (i = 0; i < n; i++) x[i] = b[i]; for (j = n-1; j >= 0; j--) { # pragma omp single x[j] /= A[j*n+j]; # pragma omp for schedule(runtime) for (i = 0; i < j; i++) x[i] += -A[i*n + j]*x[j]; } } } /* Col_solve */ /*--------------------------------------------------------------------*/ double Find_error(double x[], int n) { int i; double error = 0.0, tmp; for (i = 0; i < n; i++) { tmp = fabs(x[i] - 1.0); if (tmp > error) error = tmp; } return error; } /* Find_error */ /*--------------------------------------------------------------------*/ void Print_mat(char title[], double A[], int n) { int i, j; printf("%s:\n", title); for (i = 0; i < n; i++) { for (j = 0; j < n; j++) printf("%4.1f ", A[i*n+j]); printf("\n"); } printf("\n"); } /* Print_mat */ /*--------------------------------------------------------------------*/ void Print_vect(char title[], double x[], int n) { int i; printf("%s ", title); for (i = 0; i < n; i++) printf("%.1f ", x[i]); printf("\n"); } /* Print_vect */
the_stack_data/62130.c
#include <stdio.h> #include <stdlib.h> #define MAXCHAR 200 int main() { int addendo[MAXCHAR], somma, cont1, cont2, cont3; cont1=0; cont2=0; cont3=0; char line[MAXCHAR]; somma=0; FILE *fileinput =fopen("input.txt", "r"); while (cont1<200&&somma!=2020) { fgets(line,100, fileinput); addendo[cont1]= atoi(line); cont1++; } cont1=0; while (cont1<200&&somma!=2020) { cont2=cont1; while (cont2<200&&somma!=2020) { cont3=cont2; while(cont3<200&&somma!=2020) { somma=addendo[cont1]+addendo[cont2]+addendo[cont3]; cont3++; } cont2++; } cont1++; } printf("Gli addendi sono %d,%d e %d eil loro prodotto %d", addendo[cont1-1], addendo[cont2-1], addendo[cont3-1], addendo[cont1-1]*addendo[cont2-1]*addendo[cont3-1]); }
the_stack_data/45676.c
int binary_search(int *arr, int size, int item) { int first = 0; int last = size - 1; int middle; while (first <= last) { middle = (last + first) / 2; if (arr[middle] == item) { return middle; } if (item < arr[middle]) { last = middle - 1; } else if (item > arr[middle]) { first = middle + 1; } }; return -1; }
the_stack_data/193892136.c
/*Inserting and removing elements from a doubly linked list*/ #include <stdio.h> struct entry { struct entry *previous ; int value ; struct entry *next ; } ; int main (void) { void dll_insert (struct entry *listElement, struct entry *insert) ; //Function declarations void dll_remove (struct entry *delete) ; void dll_print (struct entry *list) ; struct entry n1, n2, n3, n4, n5, zero, *list, k ; //Setting up doubly linked list n1.value = 6 ; n2.value = 8 ; n3.value = 10 ; n4.value = 15 ; n5.value = 17 ; n1.previous = &zero ; n2.previous = &n1 ; n3.previous = &n2 ; n4.previous = &n3 ; n5.previous = &n4 ; zero.next = &n1 ; n1.next = &n2 ; n2.next = &n3 ; n3.next = &n4 ; n4.next = &n5 ; n5.next = (struct entry *) 0 ; //Null pointer dll_print (zero.next) ; k = (struct entry) {.value = 42} ; dll_insert (&n2, &k) ; //Function call to insert element k dll_print (zero.next) ; dll_remove (&k) ; //Function call to delete k dll_print (zero.next) ; return 0 ; } void dll_insert (struct entry *listElement, struct entry *insert) //Function to insert an element in doubly linked list { insert->next = listElement->next ; //link k to n3 insert->previous = listElement ; //link k to n2 listElement->next->previous = insert ; //link n3 to k listElement->next = insert ; //link n2 to k } void dll_remove (struct entry *delete) //Function to remove element from doubly linked list { delete->previous->next = delete->next ; //Link n2 to n3 delete->next->previous = delete->previous ; //Link n3 to n2 } void dll_print (struct entry *list) //Function to print a doubly linked list { while (list) { printf ("%i ", list->value) ; list = list->next ; } printf ("\n") ; }
the_stack_data/54825262.c
#include <stdio.h> #include <stdlib.h> #define LIN 4 #define COL 5 int main() { int i, j, aux = 0; // ALOCANDO MEMÓRIA PARA O PONTEIRO DE PONTEIRO int **p; p = (int **) malloc (LIN * sizeof(int)); // Alocando memória para o vetor de ponteiros for (i = 0; i < LIN; i++) { p[i] = (int *) malloc (COL * sizeof(int)); } // testando se alocou corretamente if (p == NULL) { printf("\n *** Memoria insuficiente\n"); return 0; } // Populando a matriz com números pares else { for (i = 0; i < LIN; i++) { for (j = 0; j < COL; j++) { p[i][j] = aux; aux = aux + 2; } } // Imprimindo a matriz for (i = 0; i < LIN; i++) { for (j = 0; j < COL; j++) { printf(" %3d ", p[i][j]); } printf("\n"); } // Liberando memória dos vetores de ponteiros for (i = 0; i < LIN; i++) { free(p[i]); } // Liberando a memoria do ponteiro de ponteiro free(p); } return 0; }
the_stack_data/89200875.c
/*------------------------------------------------------------------------------- * EDACS96 CC finder * * * rtl_fm sample rate 28.8kHz (3*9600baud - 3 samples per symbol) * * * XTAL Labs * 27 IV 2016 *-----------------------------------------------------------------------------*/ #define _GNU_SOURCE #include <stdio.h> #include <unistd.h> #include <limits.h> #include <string.h> #include <stdlib.h> #include <arpa/inet.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <fcntl.h> #include <errno.h> #define UDP_BUFLEN 5 //maximum UDP buffer length #define SRV_IP "127.0.0.1" //IP #define UDP_PORT 6020 //UDP port #define SAMP_NUM 5* (48+6*40) *2*3 //number of samples (5*288bit) #define SYNC_FRAME 0x555557125555FC<<(64-52) //EDACS96 synchronization frame (12*4=48bit) #define SYNC_MASK 0xFFFFFFFFFFFFFF<<(64-52) //EDACS96 synchronization frame mask #define MAX_LCN_NUM 64 //maximum number of Logical Channels unsigned char samples[SAMP_NUM]; //8-bit samples from rtl_fm (or rtl_udp) signed short int raw_stream[SAMP_NUM/2]; //16-bit signed int samples signed int AFC=0; //Auto Frequency Control -> DC offset signed int min=SHRT_MAX, max=SHRT_MIN; //min and max sample values signed short int avg_arr[SAMP_NUM/2/3]; //array containing 16-bit samples unsigned int avg_cnt=0; //avg array index variable unsigned long long sr_0=0; //shift registers for pushing decoded binary data unsigned long long sr_1=0; unsigned char current_lcn=1; //current LCN unsigned long long int LCN_list[MAX_LCN_NUM]; //LCN list int handle; //for UDP unsigned short port = UDP_PORT; // char data[UDP_BUFLEN]={0}; // struct sockaddr_in address; // //-------------------------------------------- int init_udp() //UDP init { handle = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); if (handle <= 0) { printf("Failed to create socket\n"); return 1; } printf("Sockets successfully initialized\n"); memset((char *) &address, 0, sizeof(address)); address.sin_family = AF_INET; address.sin_addr.s_addr = inet_addr(SRV_IP); //address of host address.sin_port = htons(port); return 0; } //-------------------------------------------- void tune(unsigned long long int freq) //tuning to freq { data[0]=0; data[1]=freq&0xFF; data[2]=(freq>>8)&0xFF; data[3]=(freq>>16)&0xFF; data[4]=(freq>>24)&0xFF; sendto(handle, data, UDP_BUFLEN, 0, (const struct sockaddr*) &address, sizeof(struct sockaddr_in)); } void loadLCN(char* filename) //load LCN frequencies from file { FILE *fl; char *line = NULL; size_t len = 0; char* path = NULL; asprintf(&path, "/edacs/systems/%s", filename); fl = fopen(path, "r+"); if (fl == NULL) printf("Error opening LCN file: %s", filename); for(short int i=0; i<MAX_LCN_NUM-1; i++) { if (getline(&line, &len, fl) != -1) LCN_list[i]=atoi(line); if(LCN_list[i]!=0) printf("LCN[%d]=%lldHz\n", i+1, LCN_list[i]); } } //--------------------------------------------MAIN-------------------------------------- int main(int argc, char **argv) { signed int avg=0; //sample average init_udp(); loadLCN("psy"); //load LCN freq list file sleep(2); //patience is a virtue for(int i=0; i<SAMP_NUM/2/3-1; i++) //zero array { avg_arr[i]=0; } tune(LCN_list[current_lcn-1]); //sleep(1); while(1) { read(0, samples, 3*2); //read 3 samples (6 unsigned chars) raw_stream[0]=(signed short int)((samples[0+1]<<8)|(samples[0]&0xFF)); raw_stream[1]=(signed short int)((samples[2+1]<<8)|(samples[2]&0xFF)); raw_stream[2]=(signed short int)((samples[4+1]<<8)|(samples[4]&0xFF)); avg=(raw_stream[0]+raw_stream[1]+raw_stream[2])/3; //AFC recomputing using averaged samples avg_arr[avg_cnt]=avg; avg_cnt++; if (avg_cnt>=SAMP_NUM/2/3-1) //reset after filling avg_array { avg_cnt=0; min=SHRT_MAX; max=SHRT_MIN; for(unsigned short int i=1000; i<SAMP_NUM/2/3-1; i++) //simple min/max detector { if (avg_arr[i]>max) max=avg_arr[i]; if (avg_arr[i]<min) min=avg_arr[i]; } AFC=(min+max)/2; for (unsigned short int i=0; i<SAMP_NUM/2/3-1; i++) //convert signed ints to bitstream { sr_0=(sr_0<<1)|(sr_1>>63); sr_1=sr_1<<1; if (avg_arr[i]<AFC) sr_1|=1; if ((sr_0&SYNC_MASK)==SYNC_FRAME) { printf("CC_LCN=%d\n%016llX\n", current_lcn, sr_0); return 0; } } current_lcn++; if (current_lcn>=MAX_LCN_NUM || LCN_list[current_lcn-1]==0) current_lcn=1; tune(LCN_list[current_lcn-1]); sleep(0.7); } } return 0; }
the_stack_data/34513903.c
/* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd See the file COPYING for copying permission. */ /* This file is included! */ #ifdef XML_TOK_IMPL_C #ifndef IS_INVALID_CHAR #define IS_INVALID_CHAR(enc, ptr, n) (0) #endif #define INVALID_LEAD_CASE(n, ptr, nextTokPtr) \ case BT_LEAD ## n: \ if (end - ptr < n) \ return XML_TOK_PARTIAL_CHAR; \ if (IS_INVALID_CHAR(enc, ptr, n)) { \ *(nextTokPtr) = (ptr); \ return XML_TOK_INVALID; \ } \ ptr += n; \ break; #define INVALID_CASES(ptr, nextTokPtr) \ INVALID_LEAD_CASE(2, ptr, nextTokPtr) \ INVALID_LEAD_CASE(3, ptr, nextTokPtr) \ INVALID_LEAD_CASE(4, ptr, nextTokPtr) \ case BT_NONXML: \ case BT_MALFORM: \ case BT_TRAIL: \ *(nextTokPtr) = (ptr); \ return XML_TOK_INVALID; #define CHECK_NAME_CASE(n, enc, ptr, end, nextTokPtr) \ case BT_LEAD ## n: \ if (end - ptr < n) \ return XML_TOK_PARTIAL_CHAR; \ if (!IS_NAME_CHAR(enc, ptr, n)) { \ *nextTokPtr = ptr; \ return XML_TOK_INVALID; \ } \ ptr += n; \ break; #define CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) \ case BT_NONASCII: \ if (!IS_NAME_CHAR_MINBPC(enc, ptr)) { \ *nextTokPtr = ptr; \ return XML_TOK_INVALID; \ } \ case BT_NMSTRT: \ case BT_HEX: \ case BT_DIGIT: \ case BT_NAME: \ case BT_MINUS: \ ptr += MINBPC(enc); \ break; \ CHECK_NAME_CASE(2, enc, ptr, end, nextTokPtr) \ CHECK_NAME_CASE(3, enc, ptr, end, nextTokPtr) \ CHECK_NAME_CASE(4, enc, ptr, end, nextTokPtr) #define CHECK_NMSTRT_CASE(n, enc, ptr, end, nextTokPtr) \ case BT_LEAD ## n: \ if (end - ptr < n) \ return XML_TOK_PARTIAL_CHAR; \ if (!IS_NMSTRT_CHAR(enc, ptr, n)) { \ *nextTokPtr = ptr; \ return XML_TOK_INVALID; \ } \ ptr += n; \ break; #define CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) \ case BT_NONASCII: \ if (!IS_NMSTRT_CHAR_MINBPC(enc, ptr)) { \ *nextTokPtr = ptr; \ return XML_TOK_INVALID; \ } \ case BT_NMSTRT: \ case BT_HEX: \ ptr += MINBPC(enc); \ break; \ CHECK_NMSTRT_CASE(2, enc, ptr, end, nextTokPtr) \ CHECK_NMSTRT_CASE(3, enc, ptr, end, nextTokPtr) \ CHECK_NMSTRT_CASE(4, enc, ptr, end, nextTokPtr) #ifndef PREFIX #define PREFIX(ident) ident #endif /* ptr points to character following "<!-" */ static int PTRCALL PREFIX(scanComment)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { if (ptr != end) { if (!CHAR_MATCHES(enc, ptr, ASCII_MINUS)) { *nextTokPtr = ptr; return XML_TOK_INVALID; } ptr += MINBPC(enc); while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { INVALID_CASES(ptr, nextTokPtr) case BT_MINUS: if ((ptr += MINBPC(enc)) == end) return XML_TOK_PARTIAL; if (CHAR_MATCHES(enc, ptr, ASCII_MINUS)) { if ((ptr += MINBPC(enc)) == end) return XML_TOK_PARTIAL; if (!CHAR_MATCHES(enc, ptr, ASCII_GT)) { *nextTokPtr = ptr; return XML_TOK_INVALID; } *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_COMMENT; } break; default: ptr += MINBPC(enc); break; } } } return XML_TOK_PARTIAL; } /* ptr points to character following "<!" */ static int PTRCALL PREFIX(scanDecl)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { case BT_MINUS: return PREFIX(scanComment)(enc, ptr + MINBPC(enc), end, nextTokPtr); case BT_LSQB: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_COND_SECT_OPEN; case BT_NMSTRT: case BT_HEX: ptr += MINBPC(enc); break; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { case BT_PERCNT: if (ptr + MINBPC(enc) == end) return XML_TOK_PARTIAL; /* don't allow <!ENTITY% foo "whatever"> */ switch (BYTE_TYPE(enc, ptr + MINBPC(enc))) { case BT_S: case BT_CR: case BT_LF: case BT_PERCNT: *nextTokPtr = ptr; return XML_TOK_INVALID; } /* fall through */ case BT_S: case BT_CR: case BT_LF: *nextTokPtr = ptr; return XML_TOK_DECL_OPEN; case BT_NMSTRT: case BT_HEX: ptr += MINBPC(enc); break; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } return XML_TOK_PARTIAL; } static int PTRCALL PREFIX(checkPiTarget)(const ENCODING *enc, const char *ptr, const char *end, int *tokPtr) { int upper = 0; *tokPtr = XML_TOK_PI; if (end - ptr != MINBPC(enc)*3) return 1; switch (BYTE_TO_ASCII(enc, ptr)) { case ASCII_x: break; case ASCII_X: upper = 1; break; default: return 1; } ptr += MINBPC(enc); switch (BYTE_TO_ASCII(enc, ptr)) { case ASCII_m: break; case ASCII_M: upper = 1; break; default: return 1; } ptr += MINBPC(enc); switch (BYTE_TO_ASCII(enc, ptr)) { case ASCII_l: break; case ASCII_L: upper = 1; break; default: return 1; } if (upper) return 0; *tokPtr = XML_TOK_XML_DECL; return 1; } /* ptr points to character following "<?" */ static int PTRCALL PREFIX(scanPi)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { int tok; const char *target = ptr; if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) default: *nextTokPtr = ptr; return XML_TOK_INVALID; } while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) case BT_S: case BT_CR: case BT_LF: if (!PREFIX(checkPiTarget)(enc, target, ptr, &tok)) { *nextTokPtr = ptr; return XML_TOK_INVALID; } ptr += MINBPC(enc); while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { INVALID_CASES(ptr, nextTokPtr) case BT_QUEST: ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; if (CHAR_MATCHES(enc, ptr, ASCII_GT)) { *nextTokPtr = ptr + MINBPC(enc); return tok; } break; default: ptr += MINBPC(enc); break; } } return XML_TOK_PARTIAL; case BT_QUEST: if (!PREFIX(checkPiTarget)(enc, target, ptr, &tok)) { *nextTokPtr = ptr; return XML_TOK_INVALID; } ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; if (CHAR_MATCHES(enc, ptr, ASCII_GT)) { *nextTokPtr = ptr + MINBPC(enc); return tok; } /* fall through */ default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } return XML_TOK_PARTIAL; } static int PTRCALL PREFIX(scanCdataSection)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { static const char CDATA_LSQB[] = { ASCII_C, ASCII_D, ASCII_A, ASCII_T, ASCII_A, ASCII_LSQB }; int i; /* CDATA[ */ if (end - ptr < 6 * MINBPC(enc)) return XML_TOK_PARTIAL; for (i = 0; i < 6; i++, ptr += MINBPC(enc)) { if (!CHAR_MATCHES(enc, ptr, CDATA_LSQB[i])) { *nextTokPtr = ptr; return XML_TOK_INVALID; } } *nextTokPtr = ptr; return XML_TOK_CDATA_SECT_OPEN; } static int PTRCALL PREFIX(cdataSectionTok)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { if (ptr == end) return XML_TOK_NONE; if (MINBPC(enc) > 1) { size_t n = end - ptr; if (n & (MINBPC(enc) - 1)) { n &= ~(MINBPC(enc) - 1); if (n == 0) return XML_TOK_PARTIAL; end = ptr + n; } } switch (BYTE_TYPE(enc, ptr)) { case BT_RSQB: ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; if (!CHAR_MATCHES(enc, ptr, ASCII_RSQB)) break; ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; if (!CHAR_MATCHES(enc, ptr, ASCII_GT)) { ptr -= MINBPC(enc); break; } *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_CDATA_SECT_CLOSE; case BT_CR: ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; if (BYTE_TYPE(enc, ptr) == BT_LF) ptr += MINBPC(enc); *nextTokPtr = ptr; return XML_TOK_DATA_NEWLINE; case BT_LF: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_DATA_NEWLINE; INVALID_CASES(ptr, nextTokPtr) default: ptr += MINBPC(enc); break; } while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { #define LEAD_CASE(n) \ case BT_LEAD ## n: \ if (end - ptr < n || IS_INVALID_CHAR(enc, ptr, n)) { \ *nextTokPtr = ptr; \ return XML_TOK_DATA_CHARS; \ } \ ptr += n; \ break; LEAD_CASE(2) LEAD_CASE(3) LEAD_CASE(4) #undef LEAD_CASE case BT_NONXML: case BT_MALFORM: case BT_TRAIL: case BT_CR: case BT_LF: case BT_RSQB: *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; default: ptr += MINBPC(enc); break; } } *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; } /* ptr points to character following "</" */ static int PTRCALL PREFIX(scanEndTag)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) default: *nextTokPtr = ptr; return XML_TOK_INVALID; } while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) case BT_S: case BT_CR: case BT_LF: for (ptr += MINBPC(enc); ptr != end; ptr += MINBPC(enc)) { switch (BYTE_TYPE(enc, ptr)) { case BT_S: case BT_CR: case BT_LF: break; case BT_GT: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_END_TAG; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } return XML_TOK_PARTIAL; #ifdef XML_NS case BT_COLON: /* no need to check qname syntax here, since end-tag must match exactly */ ptr += MINBPC(enc); break; #endif case BT_GT: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_END_TAG; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } return XML_TOK_PARTIAL; } /* ptr points to character following "&#X" */ static int PTRCALL PREFIX(scanHexCharRef)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { if (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { case BT_DIGIT: case BT_HEX: break; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } for (ptr += MINBPC(enc); ptr != end; ptr += MINBPC(enc)) { switch (BYTE_TYPE(enc, ptr)) { case BT_DIGIT: case BT_HEX: break; case BT_SEMI: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_CHAR_REF; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } } return XML_TOK_PARTIAL; } /* ptr points to character following "&#" */ static int PTRCALL PREFIX(scanCharRef)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { if (ptr != end) { if (CHAR_MATCHES(enc, ptr, ASCII_x)) return PREFIX(scanHexCharRef)(enc, ptr + MINBPC(enc), end, nextTokPtr); switch (BYTE_TYPE(enc, ptr)) { case BT_DIGIT: break; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } for (ptr += MINBPC(enc); ptr != end; ptr += MINBPC(enc)) { switch (BYTE_TYPE(enc, ptr)) { case BT_DIGIT: break; case BT_SEMI: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_CHAR_REF; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } } return XML_TOK_PARTIAL; } /* ptr points to character following "&" */ static int PTRCALL PREFIX(scanRef)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) case BT_NUM: return PREFIX(scanCharRef)(enc, ptr + MINBPC(enc), end, nextTokPtr); default: *nextTokPtr = ptr; return XML_TOK_INVALID; } while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) case BT_SEMI: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_ENTITY_REF; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } return XML_TOK_PARTIAL; } /* ptr points to character following first character of attribute name */ static int PTRCALL PREFIX(scanAtts)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { #ifdef XML_NS int hadColon = 0; #endif while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) #ifdef XML_NS case BT_COLON: if (hadColon) { *nextTokPtr = ptr; return XML_TOK_INVALID; } hadColon = 1; ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) default: *nextTokPtr = ptr; return XML_TOK_INVALID; } break; #endif case BT_S: case BT_CR: case BT_LF: for (;;) { int t; ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; t = BYTE_TYPE(enc, ptr); if (t == BT_EQUALS) break; switch (t) { case BT_S: case BT_LF: case BT_CR: break; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } /* fall through */ case BT_EQUALS: { int open; #ifdef XML_NS hadColon = 0; #endif for (;;) { ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; open = BYTE_TYPE(enc, ptr); if (open == BT_QUOT || open == BT_APOS) break; switch (open) { case BT_S: case BT_LF: case BT_CR: break; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } ptr += MINBPC(enc); /* in attribute value */ for (;;) { int t; if (ptr == end) return XML_TOK_PARTIAL; t = BYTE_TYPE(enc, ptr); if (t == open) break; switch (t) { INVALID_CASES(ptr, nextTokPtr) case BT_AMP: { int tok = PREFIX(scanRef)(enc, ptr + MINBPC(enc), end, &ptr); if (tok <= 0) { if (tok == XML_TOK_INVALID) *nextTokPtr = ptr; return tok; } break; } case BT_LT: *nextTokPtr = ptr; return XML_TOK_INVALID; default: ptr += MINBPC(enc); break; } } ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { case BT_S: case BT_CR: case BT_LF: break; case BT_SOL: goto sol; case BT_GT: goto gt; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } /* ptr points to closing quote */ for (;;) { ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) case BT_S: case BT_CR: case BT_LF: continue; case BT_GT: gt: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_START_TAG_WITH_ATTS; case BT_SOL: sol: ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; if (!CHAR_MATCHES(enc, ptr, ASCII_GT)) { *nextTokPtr = ptr; return XML_TOK_INVALID; } *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_EMPTY_ELEMENT_WITH_ATTS; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } break; } break; } default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } return XML_TOK_PARTIAL; } /* ptr points to character following "<" */ static int PTRCALL PREFIX(scanLt)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { #ifdef XML_NS int hadColon; #endif if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) case BT_EXCL: if ((ptr += MINBPC(enc)) == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { case BT_MINUS: return PREFIX(scanComment)(enc, ptr + MINBPC(enc), end, nextTokPtr); case BT_LSQB: return PREFIX(scanCdataSection)(enc, ptr + MINBPC(enc), end, nextTokPtr); } *nextTokPtr = ptr; return XML_TOK_INVALID; case BT_QUEST: return PREFIX(scanPi)(enc, ptr + MINBPC(enc), end, nextTokPtr); case BT_SOL: return PREFIX(scanEndTag)(enc, ptr + MINBPC(enc), end, nextTokPtr); default: *nextTokPtr = ptr; return XML_TOK_INVALID; } #ifdef XML_NS hadColon = 0; #endif /* we have a start-tag */ while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) #ifdef XML_NS case BT_COLON: if (hadColon) { *nextTokPtr = ptr; return XML_TOK_INVALID; } hadColon = 1; ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) default: *nextTokPtr = ptr; return XML_TOK_INVALID; } break; #endif case BT_S: case BT_CR: case BT_LF: { ptr += MINBPC(enc); while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) case BT_GT: goto gt; case BT_SOL: goto sol; case BT_S: case BT_CR: case BT_LF: ptr += MINBPC(enc); continue; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } return PREFIX(scanAtts)(enc, ptr, end, nextTokPtr); } return XML_TOK_PARTIAL; } case BT_GT: gt: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_START_TAG_NO_ATTS; case BT_SOL: sol: ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; if (!CHAR_MATCHES(enc, ptr, ASCII_GT)) { *nextTokPtr = ptr; return XML_TOK_INVALID; } *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_EMPTY_ELEMENT_NO_ATTS; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } return XML_TOK_PARTIAL; } static int PTRCALL PREFIX(contentTok)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { if (ptr == end) return XML_TOK_NONE; if (MINBPC(enc) > 1) { size_t n = end - ptr; if (n & (MINBPC(enc) - 1)) { n &= ~(MINBPC(enc) - 1); if (n == 0) return XML_TOK_PARTIAL; end = ptr + n; } } switch (BYTE_TYPE(enc, ptr)) { case BT_LT: return PREFIX(scanLt)(enc, ptr + MINBPC(enc), end, nextTokPtr); case BT_AMP: return PREFIX(scanRef)(enc, ptr + MINBPC(enc), end, nextTokPtr); case BT_CR: ptr += MINBPC(enc); if (ptr == end) return XML_TOK_TRAILING_CR; if (BYTE_TYPE(enc, ptr) == BT_LF) ptr += MINBPC(enc); *nextTokPtr = ptr; return XML_TOK_DATA_NEWLINE; case BT_LF: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_DATA_NEWLINE; case BT_RSQB: ptr += MINBPC(enc); if (ptr == end) return XML_TOK_TRAILING_RSQB; if (!CHAR_MATCHES(enc, ptr, ASCII_RSQB)) break; ptr += MINBPC(enc); if (ptr == end) return XML_TOK_TRAILING_RSQB; if (!CHAR_MATCHES(enc, ptr, ASCII_GT)) { ptr -= MINBPC(enc); break; } *nextTokPtr = ptr; return XML_TOK_INVALID; INVALID_CASES(ptr, nextTokPtr) default: ptr += MINBPC(enc); break; } while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { #define LEAD_CASE(n) \ case BT_LEAD ## n: \ if (end - ptr < n || IS_INVALID_CHAR(enc, ptr, n)) { \ *nextTokPtr = ptr; \ return XML_TOK_DATA_CHARS; \ } \ ptr += n; \ break; LEAD_CASE(2) LEAD_CASE(3) LEAD_CASE(4) #undef LEAD_CASE case BT_RSQB: if (ptr + MINBPC(enc) != end) { if (!CHAR_MATCHES(enc, ptr + MINBPC(enc), ASCII_RSQB)) { ptr += MINBPC(enc); break; } if (ptr + 2*MINBPC(enc) != end) { if (!CHAR_MATCHES(enc, ptr + 2*MINBPC(enc), ASCII_GT)) { ptr += MINBPC(enc); break; } *nextTokPtr = ptr + 2*MINBPC(enc); return XML_TOK_INVALID; } } /* fall through */ case BT_AMP: case BT_LT: case BT_NONXML: case BT_MALFORM: case BT_TRAIL: case BT_CR: case BT_LF: *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; default: ptr += MINBPC(enc); break; } } *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; } /* ptr points to character following "%" */ static int PTRCALL PREFIX(scanPercent)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) case BT_S: case BT_LF: case BT_CR: case BT_PERCNT: *nextTokPtr = ptr; return XML_TOK_PERCENT; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) case BT_SEMI: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_PARAM_ENTITY_REF; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } return XML_TOK_PARTIAL; } static int PTRCALL PREFIX(scanPoundName)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { CHECK_NMSTRT_CASES(enc, ptr, end, nextTokPtr) default: *nextTokPtr = ptr; return XML_TOK_INVALID; } while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) case BT_CR: case BT_LF: case BT_S: case BT_RPAR: case BT_GT: case BT_PERCNT: case BT_VERBAR: *nextTokPtr = ptr; return XML_TOK_POUND_NAME; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } return -XML_TOK_POUND_NAME; } static int PTRCALL PREFIX(scanLit)(int open, const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { while (ptr != end) { int t = BYTE_TYPE(enc, ptr); switch (t) { INVALID_CASES(ptr, nextTokPtr) case BT_QUOT: case BT_APOS: ptr += MINBPC(enc); if (t != open) break; if (ptr == end) return -XML_TOK_LITERAL; *nextTokPtr = ptr; switch (BYTE_TYPE(enc, ptr)) { case BT_S: case BT_CR: case BT_LF: case BT_GT: case BT_PERCNT: case BT_LSQB: return XML_TOK_LITERAL; default: return XML_TOK_INVALID; } default: ptr += MINBPC(enc); break; } } return XML_TOK_PARTIAL; } static int PTRCALL PREFIX(prologTok)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { int tok; if (ptr == end) return XML_TOK_NONE; if (MINBPC(enc) > 1) { size_t n = end - ptr; if (n & (MINBPC(enc) - 1)) { n &= ~(MINBPC(enc) - 1); if (n == 0) return XML_TOK_PARTIAL; end = ptr + n; } } switch (BYTE_TYPE(enc, ptr)) { case BT_QUOT: return PREFIX(scanLit)(BT_QUOT, enc, ptr + MINBPC(enc), end, nextTokPtr); case BT_APOS: return PREFIX(scanLit)(BT_APOS, enc, ptr + MINBPC(enc), end, nextTokPtr); case BT_LT: { ptr += MINBPC(enc); if (ptr == end) return XML_TOK_PARTIAL; switch (BYTE_TYPE(enc, ptr)) { case BT_EXCL: return PREFIX(scanDecl)(enc, ptr + MINBPC(enc), end, nextTokPtr); case BT_QUEST: return PREFIX(scanPi)(enc, ptr + MINBPC(enc), end, nextTokPtr); case BT_NMSTRT: case BT_HEX: case BT_NONASCII: case BT_LEAD2: case BT_LEAD3: case BT_LEAD4: *nextTokPtr = ptr - MINBPC(enc); return XML_TOK_INSTANCE_START; } *nextTokPtr = ptr; return XML_TOK_INVALID; } case BT_CR: if (ptr + MINBPC(enc) == end) { *nextTokPtr = end; /* indicate that this might be part of a CR/LF pair */ return -XML_TOK_PROLOG_S; } /* fall through */ case BT_S: case BT_LF: for (;;) { ptr += MINBPC(enc); if (ptr == end) break; switch (BYTE_TYPE(enc, ptr)) { case BT_S: case BT_LF: break; case BT_CR: /* don't split CR/LF pair */ if (ptr + MINBPC(enc) != end) break; /* fall through */ default: *nextTokPtr = ptr; return XML_TOK_PROLOG_S; } } *nextTokPtr = ptr; return XML_TOK_PROLOG_S; case BT_PERCNT: return PREFIX(scanPercent)(enc, ptr + MINBPC(enc), end, nextTokPtr); case BT_COMMA: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_COMMA; case BT_LSQB: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_OPEN_BRACKET; case BT_RSQB: ptr += MINBPC(enc); if (ptr == end) return -XML_TOK_CLOSE_BRACKET; if (CHAR_MATCHES(enc, ptr, ASCII_RSQB)) { if (ptr + MINBPC(enc) == end) return XML_TOK_PARTIAL; if (CHAR_MATCHES(enc, ptr + MINBPC(enc), ASCII_GT)) { *nextTokPtr = ptr + 2*MINBPC(enc); return XML_TOK_COND_SECT_CLOSE; } } *nextTokPtr = ptr; return XML_TOK_CLOSE_BRACKET; case BT_LPAR: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_OPEN_PAREN; case BT_RPAR: ptr += MINBPC(enc); if (ptr == end) return -XML_TOK_CLOSE_PAREN; switch (BYTE_TYPE(enc, ptr)) { case BT_AST: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_CLOSE_PAREN_ASTERISK; case BT_QUEST: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_CLOSE_PAREN_QUESTION; case BT_PLUS: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_CLOSE_PAREN_PLUS; case BT_CR: case BT_LF: case BT_S: case BT_GT: case BT_COMMA: case BT_VERBAR: case BT_RPAR: *nextTokPtr = ptr; return XML_TOK_CLOSE_PAREN; } *nextTokPtr = ptr; return XML_TOK_INVALID; case BT_VERBAR: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_OR; case BT_GT: *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_DECL_CLOSE; case BT_NUM: return PREFIX(scanPoundName)(enc, ptr + MINBPC(enc), end, nextTokPtr); #define LEAD_CASE(n) \ case BT_LEAD ## n: \ if (end - ptr < n) \ return XML_TOK_PARTIAL_CHAR; \ if (IS_NMSTRT_CHAR(enc, ptr, n)) { \ ptr += n; \ tok = XML_TOK_NAME; \ break; \ } \ if (IS_NAME_CHAR(enc, ptr, n)) { \ ptr += n; \ tok = XML_TOK_NMTOKEN; \ break; \ } \ *nextTokPtr = ptr; \ return XML_TOK_INVALID; LEAD_CASE(2) LEAD_CASE(3) LEAD_CASE(4) #undef LEAD_CASE case BT_NMSTRT: case BT_HEX: tok = XML_TOK_NAME; ptr += MINBPC(enc); break; case BT_DIGIT: case BT_NAME: case BT_MINUS: #ifdef XML_NS case BT_COLON: #endif tok = XML_TOK_NMTOKEN; ptr += MINBPC(enc); break; case BT_NONASCII: if (IS_NMSTRT_CHAR_MINBPC(enc, ptr)) { ptr += MINBPC(enc); tok = XML_TOK_NAME; break; } if (IS_NAME_CHAR_MINBPC(enc, ptr)) { ptr += MINBPC(enc); tok = XML_TOK_NMTOKEN; break; } /* fall through */ default: *nextTokPtr = ptr; return XML_TOK_INVALID; } while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) case BT_GT: case BT_RPAR: case BT_COMMA: case BT_VERBAR: case BT_LSQB: case BT_PERCNT: case BT_S: case BT_CR: case BT_LF: *nextTokPtr = ptr; return tok; #ifdef XML_NS case BT_COLON: ptr += MINBPC(enc); switch (tok) { case XML_TOK_NAME: if (ptr == end) return XML_TOK_PARTIAL; tok = XML_TOK_PREFIXED_NAME; switch (BYTE_TYPE(enc, ptr)) { CHECK_NAME_CASES(enc, ptr, end, nextTokPtr) default: tok = XML_TOK_NMTOKEN; break; } break; case XML_TOK_PREFIXED_NAME: tok = XML_TOK_NMTOKEN; break; } break; #endif case BT_PLUS: if (tok == XML_TOK_NMTOKEN) { *nextTokPtr = ptr; return XML_TOK_INVALID; } *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_NAME_PLUS; case BT_AST: if (tok == XML_TOK_NMTOKEN) { *nextTokPtr = ptr; return XML_TOK_INVALID; } *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_NAME_ASTERISK; case BT_QUEST: if (tok == XML_TOK_NMTOKEN) { *nextTokPtr = ptr; return XML_TOK_INVALID; } *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_NAME_QUESTION; default: *nextTokPtr = ptr; return XML_TOK_INVALID; } } return -tok; } static int PTRCALL PREFIX(attributeValueTok)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { const char *start; if (ptr == end) return XML_TOK_NONE; start = ptr; while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { #define LEAD_CASE(n) \ case BT_LEAD ## n: ptr += n; break; LEAD_CASE(2) LEAD_CASE(3) LEAD_CASE(4) #undef LEAD_CASE case BT_AMP: if (ptr == start) return PREFIX(scanRef)(enc, ptr + MINBPC(enc), end, nextTokPtr); *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; case BT_LT: /* this is for inside entity references */ *nextTokPtr = ptr; return XML_TOK_INVALID; case BT_LF: if (ptr == start) { *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_DATA_NEWLINE; } *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; case BT_CR: if (ptr == start) { ptr += MINBPC(enc); if (ptr == end) return XML_TOK_TRAILING_CR; if (BYTE_TYPE(enc, ptr) == BT_LF) ptr += MINBPC(enc); *nextTokPtr = ptr; return XML_TOK_DATA_NEWLINE; } *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; case BT_S: if (ptr == start) { *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_ATTRIBUTE_VALUE_S; } *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; default: ptr += MINBPC(enc); break; } } *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; } static int PTRCALL PREFIX(entityValueTok)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { const char *start; if (ptr == end) return XML_TOK_NONE; start = ptr; while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { #define LEAD_CASE(n) \ case BT_LEAD ## n: ptr += n; break; LEAD_CASE(2) LEAD_CASE(3) LEAD_CASE(4) #undef LEAD_CASE case BT_AMP: if (ptr == start) return PREFIX(scanRef)(enc, ptr + MINBPC(enc), end, nextTokPtr); *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; case BT_PERCNT: if (ptr == start) { int tok = PREFIX(scanPercent)(enc, ptr + MINBPC(enc), end, nextTokPtr); return (tok == XML_TOK_PERCENT) ? XML_TOK_INVALID : tok; } *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; case BT_LF: if (ptr == start) { *nextTokPtr = ptr + MINBPC(enc); return XML_TOK_DATA_NEWLINE; } *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; case BT_CR: if (ptr == start) { ptr += MINBPC(enc); if (ptr == end) return XML_TOK_TRAILING_CR; if (BYTE_TYPE(enc, ptr) == BT_LF) ptr += MINBPC(enc); *nextTokPtr = ptr; return XML_TOK_DATA_NEWLINE; } *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; default: ptr += MINBPC(enc); break; } } *nextTokPtr = ptr; return XML_TOK_DATA_CHARS; } #ifdef XML_DTD static int PTRCALL PREFIX(ignoreSectionTok)(const ENCODING *enc, const char *ptr, const char *end, const char **nextTokPtr) { int level = 0; if (MINBPC(enc) > 1) { size_t n = end - ptr; if (n & (MINBPC(enc) - 1)) { n &= ~(MINBPC(enc) - 1); end = ptr + n; } } while (ptr != end) { switch (BYTE_TYPE(enc, ptr)) { INVALID_CASES(ptr, nextTokPtr) case BT_LT: if ((ptr += MINBPC(enc)) == end) return XML_TOK_PARTIAL; if (CHAR_MATCHES(enc, ptr, ASCII_EXCL)) { if ((ptr += MINBPC(enc)) == end) return XML_TOK_PARTIAL; if (CHAR_MATCHES(enc, ptr, ASCII_LSQB)) { ++level; ptr += MINBPC(enc); } } break; case BT_RSQB: if ((ptr += MINBPC(enc)) == end) return XML_TOK_PARTIAL; if (CHAR_MATCHES(enc, ptr, ASCII_RSQB)) { if ((ptr += MINBPC(enc)) == end) return XML_TOK_PARTIAL; if (CHAR_MATCHES(enc, ptr, ASCII_GT)) { ptr += MINBPC(enc); if (level == 0) { *nextTokPtr = ptr; return XML_TOK_IGNORE_SECT; } --level; } } break; default: ptr += MINBPC(enc); break; } } return XML_TOK_PARTIAL; } #endif /* XML_DTD */ static int PTRCALL PREFIX(isPublicId)(const ENCODING *enc, const char *ptr, const char *end, const char **badPtr) { ptr += MINBPC(enc); end -= MINBPC(enc); for (; ptr != end; ptr += MINBPC(enc)) { switch (BYTE_TYPE(enc, ptr)) { case BT_DIGIT: case BT_HEX: case BT_MINUS: case BT_APOS: case BT_LPAR: case BT_RPAR: case BT_PLUS: case BT_COMMA: case BT_SOL: case BT_EQUALS: case BT_QUEST: case BT_CR: case BT_LF: case BT_SEMI: case BT_EXCL: case BT_AST: case BT_PERCNT: case BT_NUM: #ifdef XML_NS case BT_COLON: #endif break; case BT_S: if (CHAR_MATCHES(enc, ptr, ASCII_TAB)) { *badPtr = ptr; return 0; } break; case BT_NAME: case BT_NMSTRT: if (!(BYTE_TO_ASCII(enc, ptr) & ~0x7f)) break; default: switch (BYTE_TO_ASCII(enc, ptr)) { case 0x24: /* $ */ case 0x40: /* @ */ break; default: *badPtr = ptr; return 0; } break; } } return 1; } /* This must only be called for a well-formed start-tag or empty element tag. Returns the number of attributes. Pointers to the first attsMax attributes are stored in atts. */ static int PTRCALL PREFIX(getAtts)(const ENCODING *enc, const char *ptr, int attsMax, ATTRIBUTE *atts) { enum { other, inName, inValue } state = inName; int nAtts = 0; int open = 0; /* defined when state == inValue; initialization just to shut up compilers */ for (ptr += MINBPC(enc);; ptr += MINBPC(enc)) { switch (BYTE_TYPE(enc, ptr)) { #define START_NAME \ if (state == other) { \ if (nAtts < attsMax) { \ atts[nAtts].name = ptr; \ atts[nAtts].normalized = 1; \ } \ state = inName; \ } #define LEAD_CASE(n) \ case BT_LEAD ## n: START_NAME ptr += (n - MINBPC(enc)); break; LEAD_CASE(2) LEAD_CASE(3) LEAD_CASE(4) #undef LEAD_CASE case BT_NONASCII: case BT_NMSTRT: case BT_HEX: START_NAME break; #undef START_NAME case BT_QUOT: if (state != inValue) { if (nAtts < attsMax) atts[nAtts].valuePtr = ptr + MINBPC(enc); state = inValue; open = BT_QUOT; } else if (open == BT_QUOT) { state = other; if (nAtts < attsMax) atts[nAtts].valueEnd = ptr; nAtts++; } break; case BT_APOS: if (state != inValue) { if (nAtts < attsMax) atts[nAtts].valuePtr = ptr + MINBPC(enc); state = inValue; open = BT_APOS; } else if (open == BT_APOS) { state = other; if (nAtts < attsMax) atts[nAtts].valueEnd = ptr; nAtts++; } break; case BT_AMP: if (nAtts < attsMax) atts[nAtts].normalized = 0; break; case BT_S: if (state == inName) state = other; else if (state == inValue && nAtts < attsMax && atts[nAtts].normalized && (ptr == atts[nAtts].valuePtr || BYTE_TO_ASCII(enc, ptr) != ASCII_SPACE || BYTE_TO_ASCII(enc, ptr + MINBPC(enc)) == ASCII_SPACE || BYTE_TYPE(enc, ptr + MINBPC(enc)) == open)) atts[nAtts].normalized = 0; break; case BT_CR: case BT_LF: /* This case ensures that the first attribute name is counted Apart from that we could just change state on the quote. */ if (state == inName) state = other; else if (state == inValue && nAtts < attsMax) atts[nAtts].normalized = 0; break; case BT_GT: case BT_SOL: if (state != inValue) return nAtts; break; default: break; } } /* not reached */ } static int PTRFASTCALL PREFIX(charRefNumber)(const ENCODING *enc, const char *ptr) { int result = 0; /* skip &# */ ptr += 2*MINBPC(enc); if (CHAR_MATCHES(enc, ptr, ASCII_x)) { for (ptr += MINBPC(enc); !CHAR_MATCHES(enc, ptr, ASCII_SEMI); ptr += MINBPC(enc)) { int c = BYTE_TO_ASCII(enc, ptr); switch (c) { case ASCII_0: case ASCII_1: case ASCII_2: case ASCII_3: case ASCII_4: case ASCII_5: case ASCII_6: case ASCII_7: case ASCII_8: case ASCII_9: result <<= 4; result |= (c - ASCII_0); break; case ASCII_A: case ASCII_B: case ASCII_C: case ASCII_D: case ASCII_E: case ASCII_F: result <<= 4; result += 10 + (c - ASCII_A); break; case ASCII_a: case ASCII_b: case ASCII_c: case ASCII_d: case ASCII_e: case ASCII_f: result <<= 4; result += 10 + (c - ASCII_a); break; } if (result >= 0x110000) return -1; } } else { for (; !CHAR_MATCHES(enc, ptr, ASCII_SEMI); ptr += MINBPC(enc)) { int c = BYTE_TO_ASCII(enc, ptr); result *= 10; result += (c - ASCII_0); if (result >= 0x110000) return -1; } } // Some faggots compose mails with ancient control symbols in headers. // Libexpat tokenizer breaks on them (so far 'Form Feed' and 'DC2' were found). if (result == 0x0C) { result = 0x0A; } else if (result == 0x12) { result = ' '; } return checkCharRefNumber(result); } static int PTRCALL PREFIX(predefinedEntityName)(const ENCODING *enc, const char *ptr, const char *end) { switch ((end - ptr)/MINBPC(enc)) { case 2: if (CHAR_MATCHES(enc, ptr + MINBPC(enc), ASCII_t)) { switch (BYTE_TO_ASCII(enc, ptr)) { case ASCII_l: return ASCII_LT; case ASCII_g: return ASCII_GT; } } break; case 3: if (CHAR_MATCHES(enc, ptr, ASCII_a)) { ptr += MINBPC(enc); if (CHAR_MATCHES(enc, ptr, ASCII_m)) { ptr += MINBPC(enc); if (CHAR_MATCHES(enc, ptr, ASCII_p)) return ASCII_AMP; } } break; case 4: switch (BYTE_TO_ASCII(enc, ptr)) { case ASCII_q: ptr += MINBPC(enc); if (CHAR_MATCHES(enc, ptr, ASCII_u)) { ptr += MINBPC(enc); if (CHAR_MATCHES(enc, ptr, ASCII_o)) { ptr += MINBPC(enc); if (CHAR_MATCHES(enc, ptr, ASCII_t)) return ASCII_QUOT; } } break; case ASCII_a: ptr += MINBPC(enc); if (CHAR_MATCHES(enc, ptr, ASCII_p)) { ptr += MINBPC(enc); if (CHAR_MATCHES(enc, ptr, ASCII_o)) { ptr += MINBPC(enc); if (CHAR_MATCHES(enc, ptr, ASCII_s)) return ASCII_APOS; } } break; } } return 0; } static int PTRCALL PREFIX(sameName)(const ENCODING *enc, const char *ptr1, const char *ptr2) { for (;;) { switch (BYTE_TYPE(enc, ptr1)) { #define LEAD_CASE(n) \ case BT_LEAD ## n: \ if (*ptr1++ != *ptr2++) \ return 0; LEAD_CASE(4) LEAD_CASE(3) LEAD_CASE(2) #undef LEAD_CASE /* fall through */ if (*ptr1++ != *ptr2++) return 0; break; case BT_NONASCII: case BT_NMSTRT: #ifdef XML_NS case BT_COLON: #endif case BT_HEX: case BT_DIGIT: case BT_NAME: case BT_MINUS: if (*ptr2++ != *ptr1++) return 0; if (MINBPC(enc) > 1) { if (*ptr2++ != *ptr1++) return 0; if (MINBPC(enc) > 2) { if (*ptr2++ != *ptr1++) return 0; if (MINBPC(enc) > 3) { if (*ptr2++ != *ptr1++) return 0; } } } break; default: if (MINBPC(enc) == 1 && *ptr1 == *ptr2) return 1; switch (BYTE_TYPE(enc, ptr2)) { case BT_LEAD2: case BT_LEAD3: case BT_LEAD4: case BT_NONASCII: case BT_NMSTRT: #ifdef XML_NS case BT_COLON: #endif case BT_HEX: case BT_DIGIT: case BT_NAME: case BT_MINUS: return 0; default: return 1; } } } /* not reached */ } static int PTRCALL PREFIX(nameMatchesAscii)(const ENCODING *enc, const char *ptr1, const char *end1, const char *ptr2) { for (; *ptr2; ptr1 += MINBPC(enc), ptr2++) { if (ptr1 == end1) return 0; if (!CHAR_MATCHES(enc, ptr1, *ptr2)) return 0; } return ptr1 == end1; } static int PTRFASTCALL PREFIX(nameLength)(const ENCODING *enc, const char *ptr) { const char *start = ptr; for (;;) { switch (BYTE_TYPE(enc, ptr)) { #define LEAD_CASE(n) \ case BT_LEAD ## n: ptr += n; break; LEAD_CASE(2) LEAD_CASE(3) LEAD_CASE(4) #undef LEAD_CASE case BT_NONASCII: case BT_NMSTRT: #ifdef XML_NS case BT_COLON: #endif case BT_HEX: case BT_DIGIT: case BT_NAME: case BT_MINUS: ptr += MINBPC(enc); break; default: return (int)(ptr - start); } } } static const char * PTRFASTCALL PREFIX(skipS)(const ENCODING *enc, const char *ptr) { for (;;) { switch (BYTE_TYPE(enc, ptr)) { case BT_LF: case BT_CR: case BT_S: ptr += MINBPC(enc); break; default: return ptr; } } } static void PTRCALL PREFIX(updatePosition)(const ENCODING *enc, const char *ptr, const char *end, POSITION *pos) { while (ptr < end) { switch (BYTE_TYPE(enc, ptr)) { #define LEAD_CASE(n) \ case BT_LEAD ## n: \ ptr += n; \ break; LEAD_CASE(2) LEAD_CASE(3) LEAD_CASE(4) #undef LEAD_CASE case BT_LF: pos->columnNumber = (XML_Size)-1; pos->lineNumber++; ptr += MINBPC(enc); break; case BT_CR: pos->lineNumber++; ptr += MINBPC(enc); if (ptr != end && BYTE_TYPE(enc, ptr) == BT_LF) ptr += MINBPC(enc); pos->columnNumber = (XML_Size)-1; break; default: ptr += MINBPC(enc); break; } pos->columnNumber++; } } #undef DO_LEAD_CASE #undef MULTIBYTE_CASES #undef INVALID_CASES #undef CHECK_NAME_CASE #undef CHECK_NAME_CASES #undef CHECK_NMSTRT_CASE #undef CHECK_NMSTRT_CASES #endif /* XML_TOK_IMPL_C */
the_stack_data/612884.c
#include<stdio.h> #include<stdlib.h> struct Array{ int A[10]; int size; int length; }; void display(struct Array arr){ int i; // printf("\nElements are:\n"); for(i=0;i<arr.length;i++){ printf("%d ", arr.A[i]); } } void append(struct Array *arr, int x){ if(arr->length<arr->size){ arr->A[arr->length++]=x; } } void insert(struct Array *arr, int index, int x){ int i; if(index>=0 && index<= arr->length){ for(i=arr->length;i>index;i--) arr->A[i] = arr->A[i-1]; } arr->A[index] = x; arr->length++; } int delete(struct Array *arr, int index){ int x=0; if(index>=0 && index<arr->length){ x= arr->A[index]; for(int i=index;i<arr->length-1;i++){ arr->A[i] == arr->A[i+1]; } arr->length--; return x; } return 0; } int get(struct Array arr, int index){ if(index>=0 && index <arr.length){ return arr.A[index]; } return -1; } void set(struct Array *arr, int index, int x){ if(index>=0 && index<arr->length){ arr->A[index] = x; } } int max(struct Array arr){ int max=arr.A[0]; for(int i=0;i<arr.length;i++){ if(max <arr.A[i]){ max = arr.A[i]; } } return max; } int min(struct Array arr){ int min=arr.A[0]; for(int i=0;i<arr.length;i++){ if(min >arr.A[i]){ min= arr.A[i]; } } return min; } int sum(struct Array arr){ int total =0; if(arr.length > 0){ for(int i=0;i<arr.length;i++){ total = total +arr.A[i]; } return total; }else{ return 0; } } float average(struct Array arr){ int s =sum(arr); return s/arr.length; } // call by address void swap(int *x, int *y){ int temp; temp= *x; *x =*y; *y=temp; } // Reverse using temporary array // Time : O(n), Space : O(n) void reverse(struct Array *arr){ int *B; B =(int *)malloc(arr->length*sizeof(int)); int n = arr->length-1; for(int i=0;i<n;i+2){ B[i] = arr->A[n-i]; } for(int j=0;j<n;j++){ arr->A[j] = B[j]; } } // Reverse using temp variable void treverse(struct Array *arr){ int temp; for(int i=0;i<arr->length;i++){ temp = arr->A[i]; // Assign length-i+1 arr->A[i] = arr->A[arr->length-i+1]; arr->A[arr->length-i+1] = temp; } } // Insert element in sorted array // It is not working void sinsert(struct Array *arr, int x){ int i = arr->length-1; if(arr->length == arr->size){ return; } while(i>=0 && arr->A[i]>x){ arr->A[i+1] == arr->A[i]; i--; } arr->A[i+1] = x; arr->size++; } // Is it sorted int isSorted(struct Array arr){ int i; for(i=0;i<arr.length-1;i++){ // when i == length-1 then i+1 becomes outsize length so it failed if(arr.A[i]>arr.A[i+1]){ return 0; } } return 1; } // Rearrange negative and positive on each end void rearrange(struct Array *arr){ int i,j; i=0; j=arr->length-1; while(i<j){ while(arr->A[i]<0){ i++; } while(arr->A[j]>=0){ j--; } if(i<j){ swap(&arr->A[i], &arr->A[j]); } } } // merge two sorted array using third array; // struct Array* merge(struct Array *arr1, struct Array *arr2){ // int i,j,k; // i=j=k=0; // struct Array *arr3 =(struct Array *)malloc(sizeof(struct Array)); // while(i<arr1->length && j<arr2->length){ // if(arr1->A[i]<arr2->A[j]){ // arr3->A[k] = arr1->A[i]; // i++; // k++; // }else{ // arr3->A[k] = arr2->A[j]; // k++; // } // } // // Mere Remaining elements // for(;i<arr1->length;i++){ // arr3->A[k] = arr1->A[i]; // k++; // } // for(;j<arr2->length;j++){ // arr3->A[k] = arr2->A[j]; // k++; // } // arr3->length = arr1->length+arr2->length; // arr3->size = 30; // return arr3; // } struct Array* merge(struct Array *arr1, struct Array *arr2){ int i,j,k; i=j=k=0; struct Array *arr3 =(struct Array *)malloc(sizeof(struct Array)); while(i<arr1->length && j<arr2->length){ if(arr1->A[i]<arr2->A[j]){ arr3->A[k++] = arr1->A[i++]; i++; k++; }else{ arr3->A[k] = arr2->A[j]; j++; k++; } } // Mere Remaining elements for(;i<arr1->length;i++){ arr3->A[k] = arr1->A[i]; k++; } for(;j<arr2->length;j++){ arr3->A[k] = arr2->A[j]; k++; } arr3->length = arr1->length+arr2->length; arr3->size = 18; return arr3; } int main(){ // Create an array in heap struct Array arr = {{2,6,3,4,5},10,5}; struct Array barr = {{2,3,4,5,6},10,5}; struct Array negarray = {{8,-7,4,5,3,-6,-5,-4, 22, -23}, 15, 10}; int n, i; printf("Given Array:\n"); display(arr); append(&arr, 9); printf("\nAfter append() Array:\n"); display(arr); insert(&arr, 2, 77); printf("\nAfter append() Array:\n"); display(arr); printf("\ndelete :%d item\n", delete(&arr, 4)); display(arr); // Operation printf("\nget element %d at index %d\n",get(arr, 3),3); printf("\nBefore set() :\n"); set(&arr, 2, 111); printf("\nmax :%d\n", max(arr)); printf("\nmin :%d\n", min(arr)); printf("\nsum : %d\n", sum(arr)); printf("\naverage : %f\n", average(arr)); printf("\nbefore insert sorted array:\n"); display(arr); // It is not working // printf("\nReverse operation using temp array :\n"); // reverse(&arr); // display(arr); // printf("\nReverse Array using temp variable :\n"); // treverse(&arr); // display(barr); // It is also not working properly sinsert(&barr, 1); printf("\nafter insert elem in sorted array;\n"); display(barr); printf("\ngiven array sorted : %d\n", isSorted(barr)); printf("\n Before Rearranging \n"); display(negarray); printf("\nRearrange negative element one side:\n"); rearrange(&negarray); display(negarray); struct Array arr1 = {{4,5,6,44,55,66,77,100},10,8}; struct Array arr2 ={{2,3,7,88,99,110,112,114},10,8}; printf("\nArr1 :\n"); display(arr1); printf("\narr2 :\n"); display(arr2); struct Array *arr3 = merge(&arr1, &arr2); printf("\nAfter merging :\n"); display(*arr3); }
the_stack_data/153103.c
/* Generated by CIL v. 1.7.0 */ /* print_CIL_Input is false */ struct _IO_FILE; struct timeval; extern float strtof(char const *str , char const *endptr ) ; extern void signal(int sig , void *func ) ; typedef struct _IO_FILE FILE; extern int atoi(char const *s ) ; extern double strtod(char const *str , char const *endptr ) ; extern int fclose(void *stream ) ; extern void *fopen(char const *filename , char const *mode ) ; extern void abort() ; extern void exit(int status ) ; extern int raise(int sig ) ; extern int fprintf(struct _IO_FILE *stream , char const *format , ...) ; extern int strcmp(char const *a , char const *b ) ; extern int rand() ; extern unsigned long strtoul(char const *str , char const *endptr , int base ) ; void RandomFunc(unsigned short input[1] , unsigned short output[1] ) ; extern int strncmp(char const *s1 , char const *s2 , unsigned long maxlen ) ; extern int gettimeofday(struct timeval *tv , void *tz , ...) ; extern int printf(char const *format , ...) ; int main(int argc , char *argv[] ) ; void megaInit(void) ; extern unsigned long strlen(char const *s ) ; extern long strtol(char const *str , char const *endptr , int base ) ; extern unsigned long strnlen(char const *s , unsigned long maxlen ) ; extern void *memcpy(void *s1 , void const *s2 , unsigned long size ) ; struct timeval { long tv_sec ; long tv_usec ; }; extern void *malloc(unsigned long size ) ; extern int scanf(char const *format , ...) ; int main(int argc , char *argv[] ) { unsigned short input[1] ; unsigned short output[1] ; int randomFuns_i5 ; unsigned short randomFuns_value6 ; int randomFuns_main_i7 ; { megaInit(); if (argc != 2) { printf("Call this program with %i arguments\n", 1); exit(-1); } else { } randomFuns_i5 = 0; while (randomFuns_i5 < 1) { randomFuns_value6 = (unsigned short )strtoul(argv[randomFuns_i5 + 1], 0, 10); input[randomFuns_i5] = randomFuns_value6; randomFuns_i5 ++; } RandomFunc(input, output); if (output[0] == (unsigned short)31026) { printf("You win!\n"); } else { } randomFuns_main_i7 = 0; while (randomFuns_main_i7 < 1) { printf("%u\n", output[randomFuns_main_i7]); randomFuns_main_i7 ++; } } } void RandomFunc(unsigned short input[1] , unsigned short output[1] ) { unsigned short state[1] ; unsigned short local1 ; { state[0UL] = (input[0UL] - 51238316UL) - (unsigned short)47038; local1 = 0UL; while (local1 < 1UL) { state[0UL] |= (state[0UL] & (unsigned short)63) << 4UL; local1 ++; } output[0UL] = ((state[0UL] << (unsigned short)7) | (state[0UL] >> (unsigned short)9)) - (unsigned short)28768; } } void megaInit(void) { { } }
the_stack_data/29825368.c
/* * Copyright (c) 2018, Billie Soong <[email protected]> * All rights reserved. * * This file is under MIT, see LICENSE for details. * * Author: Billie Soong <[email protected]> * Datetime: 2019/6/29 22:43 * */ #include <errno.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> void sighandler(int signo, siginfo_t *si, void *data) { if (si->si_signo == SIGHUP || si->si_signo == SIGQUIT) { printf("Ignore signal %d from pid %lu\n", (int) si->si_signo, (unsigned long) si->si_pid); return; } else { printf("Signal %d from pid %lu\n", (int) si->si_signo, (unsigned long) si->si_pid); } exit(0); } int main(void) { // signal(SIGHUP, SIG_IGN); // signal(SIGQUIT, SIG_IGN); // signal(SIGTERM, SIG_IGN); struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_flags = SA_SIGINFO; sa.sa_sigaction = sighandler; sigaction(SIGHUP, &sa, 0); sigaction(SIGINT, &sa, 0); sigaction(SIGQUIT, &sa, 0); sigaction(SIGILL, &sa, 0); sigaction(SIGABRT, &sa, 0); // sigaction(SIGKILL, &sa, 0); SIGKILL是应用程序无法捕获的 sigaction(SIGTERM, &sa, 0); printf("Pid %lu waiting for signal\n", (unsigned long) getpid()); for (;;) { sleep(10); } return 0; }
the_stack_data/57950712.c
#include<stdio.h> int main(){ int a[10][17]={{0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0}, {0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0}, {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, {0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0}, {0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0}, {0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0}, {0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0}, {0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0}}; int b[8][17]={{0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0}, {0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0}, {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, {0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0}, {0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0}, {0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0}, {0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0}}; int c[6][17]={{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, {0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0}, {0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0}, {0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0}, {0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0}}; int d[7][17]={{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, {0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0}, {0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0}, {0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0}, {0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0}, {0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0}}; int e[5][17]={{0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0}, {0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0}, {0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0}, {0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0}, {0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0}}; int s[6]; int (*p)[17]; // int arr[15][17]* pointer; for(int i=0;i<6;i++) scanf("%d",&s[i]); switch(s[5]){ case 0: p = a; break; case 1: p = b; break; case 2: p = c; break; case 3: p = d; break; case 4: p = e; break; default: break; } int temp; temp = p[s[2]][s[3]]; for(int i=0;i<s[0];i++){ for(int j=0;j<s[1];j++) printf(p[i][j]==temp?"*":(p[i][j]==0?".":"#")); if(i != s[0]-1) printf("\n"); } return 0; }
the_stack_data/847257.c
// Kevin Orr // Prof. Jing Wang MW 12:30-1:45 // Removes all nonalpha characters (besides spaces) from input #include <stdio.h> #include <ctype.h> int main(void) { fputs("Enter message: ", stdout); char input[256]; fgets(input, sizeof(input), stdin); char output[256]; int out_i = 0; for (int in_i=0; in_i<sizeof(input); in_i++) { char c = input[in_i]; if (c == '\0') { output[out_i] = '\0'; break; } else if (c == ' ' || isalpha(c)) { output[out_i] = toupper(c); out_i++; } } printf("%s\n", output); return 0; }
the_stack_data/70450215.c
/* XPM */ static const char *const xpm_icon_0[] = { /* columns rows colors chars-per-pixel */ "16 16 115 2", " c #3333BB", ". c #706FBA", "X c #3838C5", "o c #6362C3", "O c #6565C3", "+ c #6E6DC0", "@ c #8483BB", "# c #9D9BB1", "$ c #9997BC", "% c #9E9DBF", "& c #B1AFAB", "* c #B1AFAD", "= c #B4B2AE", "- c #B9B8AE", "; c #A7A5BE", ": c #B5B3B2", "> c #BCBAB5", ", c #BDBBB8", "< c #BEBCB8", "1 c #BFBDB8", "2 c #BFBDB9", "3 c #BEBDBA", "4 c #C1BFBA", "5 c #C1BFBB", "6 c #C2C0B2", "7 c #C1C0BB", "8 c #C2C0BB", "9 c #C7C5BA", "0 c #C7C6BA", "q c #C3C1BD", "w c #C3C2BD", "e c #C2C0BE", "r c #C4C2BD", "t c #C5C3BE", "y c #C6C4BF", "u c #C9C7BC", "i c #CECDB8", "p c #C9C8BE", "a c #CDCBBE", "s c #D1CFBE", "d c #D2D1BD", "f c #8382CA", "g c #9C9BC8", "h c #A3A2C2", "j c #A7A5CA", "k c #B0AFC8", "l c #BDBBC9", "z c #C1BFC2", "x c #C6C4C0", "c c #C6C5C0", "v c #C6C4C1", "b c #C8C7C0", "n c #C8C6C1", "m c #C8C6C2", "M c #C9C7C2", "N c #C9C7C4", "B c #CAC8C3", "V c #CCCAC4", "C c #CCCAC5", "Z c #CDCBC6", "A c #CDCCC7", "S c #CECCC7", "D c #C2C1CA", "F c #CECCC8", "G c #CFCDC8", "H c #CECDC9", "J c #CDCCCC", "K c #D0CEC9", "L c #D1CFCA", "P c #D0CECB", "I c #D4D2C3", "U c #D2D0CA", "Y c #D2D0CB", "T c #D5D3C8", "R c #D1D0CC", "E c #D2D0CC", "W c #D3D1CC", "Q c #D2D0CD", "! c #D2D1CD", "~ c #D3D1CD", "^ c #D2D0CE", "/ c #D3D1CE", "( c #D3D1CF", ") c #D4D2CD", "_ c #D5D3CD", "` c #D4D2CE", "' c #D5D3CE", "] c #D4D2CF", "[ c #D5D3CF", "{ c #D6D4CE", "} c #D6D4CF", "| c #D7D5CF", " . c #D9D7C9", ".. c #D8D6CA", "X. c #D9D7CE", "o. c #DEDCCB", "O. c #DAD8CC", "+. c #DBD8CC", "@. c #DAD8CF", "#. c #DCDACC", "$. c #DCDACE", "%. c #DFDDCE", "&. c #DFDDCF", "*. c #D6D4D0", "=. c #D7D5D0", "-. c #D6D4D1", ";. c #D8D5D0", ":. c #D8D6D1", ">. c #DAD8D3", ",. c #DFDDD0", "<. c #E0DDCA", "1. c #E0DECE", "2. c #E0DED1", "3. c #E2E0CD", "4. c #E3E0CD", /* pixels */ "' ' ' ' ' X.<.' ' ! ' ' ' L ' ' ", "' ' ' ! 1.g o o.*.' ! -.C q ' ' ", "' ' ' ! #.k @ 9 x L 2. .> ' ' ' ", "' ' ' ' { W s :.n u h $ .' ' ' ", "' ' ' ! ' J q :.*.d . + 1.L *.' ", "' ' ! ' X.W 8 n < n 2.I 3 :.' ' ", "W { @.-.L 4 & S ' -.L -.N 4 ' L ", "{ J l u q n q :.' ' ' ' :.N L *.", "o.j 4 J ' q :.L ' ' ' ' ' ' ' ", "W X.& 3 n 4 = C ' -.| ' L ' ' ' ", "' X.C : Y ' > n 4 q C ' -.:.' ' ", "! ' L i 9 Y 5 :.' C n 4 q C L ' ", "' ' @.O % a p ' ' *.*.' G x L ' ", "' L +.f h - # ' ' L ' ' | X.' ' ", "' ' ' 1.,.z X z X.' ' ' ' L ' ' ", "' ' ' L ' :.L W ' ' ' ' ' ' ' ' " }; /* XPM */ static const char *const xpm_icon_1[] = { /* columns rows colors chars-per-pixel */ "32 32 225 2", " c #72719C", ". c #4443AC", "X c #4847AE", "o c #5E5EA5", "O c #6B6AA6", "+ c #7776A9", "@ c #6160B9", "# c #6564BD", "$ c #6D6CB9", "% c #7877B0", "& c #7877B5", "* c #0101D2", "= c #0505D6", "- c #0B0BD2", "; c #0807D9", ": c #2020C3", "> c #2E2EC7", ", c #0101E5", "< c #0000E9", "1 c #0000F3", "2 c #0000F6", "3 c #0000FA", "4 c #4545C0", "5 c #4141C5", "6 c #807FBB", "7 c #98978B", "8 c #858491", "9 c #8E8D9C", "0 c #959390", "q c #9B9A96", "w c #9E9C98", "e c #B7B69F", "r c #9291A5", "t c #9C9BAB", "y c #8987B9", "u c #9190BA", "i c #9493BB", "p c #A8A6A3", "a c #A8A7A3", "s c #A9A7A3", "d c #A9A7A7", "f c #ADACA3", "g c #A9A8A5", "h c #AAA8A4", "j c #ABA9A5", "k c #AAA9A6", "l c #ACAAA6", "z c #ACABA7", "x c #ADABA7", "c c #ADACA8", "v c #AEACA8", "b c #AEADA8", "n c #AEADA9", "m c #AFADA9", "M c #AFADAD", "N c #B0AFA6", "B c #B0AEAA", "V c #B0AFAA", "C c #B1AFAB", "Z c #B2B1A6", "A c #B5B3A7", "S c #B1B0AB", "D c #B6B4AA", "F c #B2B0AC", "G c #B2B1AC", "H c #B2B1AD", "J c #B3B1AD", "K c #B3B2AD", "L c #B1B0AE", "P c #B3B1AE", "I c #B4B3AE", "U c #B5B3AF", "Y c #A5A4B2", "T c #B6B4B0", "R c #B7B5B1", "E c #B7B6B1", "W c #B7B5B7", "Q c #B8B6B2", "! c #B8B7B2", "~ c #B9B7B2", "^ c #B9B7B3", "/ c #B9B8B3", "( c #BDBBB0", ") c #BAB8B4", "_ c #BAB9B4", "` c #BBB9B4", "' c #BBB9B5", "] c #BBBAB5", "[ c #BCBAB5", "{ c #BCBAB6", "} c #BDBBB7", "| c #BAB8BA", " . c #BDBBB8", ".. c #BEBDB8", "X. c #BFBDB8", "o. c #BFBDB9", "O. c #BFBEB9", "+. c #BFBDBA", "@. c #BFBEBA", "#. c #BBBABF", "$. c #C0BEAD", "%. c #C1BFAD", "&. c #C1BFAF", "*. c #C1BFB8", "=. c #C0BEB9", "-. c #C0BEBA", ";. c #C0BFBA", ":. c #C1BFBA", ">. c #C1BFBB", ",. c #C7C5B0", "<. c #C2C0B7", "1. c #C1C0BB", "2. c #C2C0BB", "3. c #C4C3BA", "4. c #C7C5BB", "5. c #C2C1BC", "6. c #C3C1BD", "7. c #C3C2BD", "8. c #C4C2BD", "9. c #C4C2BE", "0. c #C5C3BF", "q. c #CFCDBB", "w. c #C6C4C0", "e. c #C6C5C0", "r. c #C7C5C2", "t. c #C8C6C1", "y. c #C9C7C1", "u. c #C8C6C2", "i. c #C9C7C2", "p. c #C8C7C3", "a. c #C9C7C3", "s. c #C9C8C3", "d. c #CAC8C2", "f. c #CAC8C4", "g. c #CBC9C4", "h. c #CBC9C5", "j. c #CBC9C7", "k. c #CCCAC5", "l. c #CCCAC6", "z. c #CDCBC6", "x. c #CDCBC7", "c. c #CECCC7", "v. c #CECCC8", "b. c #CECDC8", "n. c #CFCDC8", "m. c #D0CEC9", "M. c #D1CFC9", "N. c #D1CFCA", "B. c #D1CFCC", "V. c #D1CFCD", "C. c #D1CFCE", "Z. c #D8D6C3", "A. c #D9D7C5", "S. c #DEDCC6", "D. c #D2D0CB", "F. c #D4D2C9", "G. c #D7D5C8", "H. c #D6D4CA", "J. c #D2D0CC", "K. c #D3D1CC", "L. c #D2D0CD", "P. c #D3D1CD", "I. c #D2D0CE", "U. c #D3D1CE", "Y. c #D2D0CF", "T. c #D3D1CF", "R. c #D4D2CC", "E. c #D4D2CD", "W. c #D5D3CD", "Q. c #D4D2CE", "!. c #D4D3CE", "~. c #D5D3CE", "^. c #D5D3CF", "/. c #D6D4CE", "(. c #D6D4CF", "). c #D7D4CF", "_. c #D7D5CF", "`. c #D9D7C9", "'. c #D9D7CF", "]. c #DBD9CA", "[. c #DBD9CC", "{. c #DEDCCD", "}. c #DFDDCF", "|. c #D4D2D0", " X c #D5D3D0", ".X c #D5D3D2", "XX c #D7D5D0", "oX c #D6D4D1", "OX c #D6D4D2", "+X c #D8D5D0", "@X c #D8D6D0", "#X c #D9D7D0", "$X c #D8D6D1", "%X c #D8D6D2", "&X c #D9D7D2", "*X c #D9D7D3", "=X c #DAD7D2", "-X c #D9D7D6", ";X c #DAD8D0", ":X c #DBD9D1", ">X c #DAD8D2", ",X c #DBD9D2", "<X c #DAD8D3", "1X c #DDDBD0", "2X c #DEDCD0", "3X c #DFDDD2", "4X c #DAD8D4", "5X c #DBD9D4", "6X c #DCD9D4", "7X c #DDDBD6", "8X c #DEDBD6", "9X c #DEDCD6", "0X c #DFDDD8", "qX c #E0DDC7", "wX c #E2DFCC", "eX c #E0DECE", "rX c #E0DECF", "tX c #E0DED4", "yX c #E0DED9", "uX c #E3E1CD", "iX c #E3E1CE", "pX c #E6E4D3", "aX c #E7E5D3", "sX c #EDEBD5", "dX c #E2E0DB", /* pixels */ "~.~.~.~.~.~.~.~.).K.!.K.K.K.).K.!.oX!.).~.~.~.~.~.K.~.).K.).!.).", "~.~.~.~.~.~.~.~.!.|.K.<X[.oXK.).).K.).K.~.~.~.~.K.).~.c.).K.).K.", "~.~.~.~.~.~.~.~.|.K.-X#. F.K.K.).K.!.!.~.~.K.~.K.4Xc 8.oXK.!.!.", "~.~.~.~.~.~.~.~.K.|.[.X 3 % aXoXK.K.).K.).K.oXK.4XR ! 4XK.).K.).", "~.~.~.~.~.~.~.~.K.|.{.y : r D u.*XoXK.K.).~.F.*X7.c <XK.).K.!.).", "~.~.~.~.~.~.~.~.K.).oXR.A tXu.S c e.<X&XK.B. Xc.a ).!.K.!.).!.!.", "~.~.~.~.~.~.~.~.~.K.~.F.B ).oX<Xl.S c 8.oXuXS.s b.oXK.).!.).).!.", "~.~.~.~.~.~.~.~.oXK.~.R.c R.K.K.oX<Xc.K D # X <.4XF.).K.!.K.).!.", "~.~.~.~.~.~.~.~.~.K.~.~.B ~.~.~.K.K.4XdXf = < | <XK.!.).!.).!.!.", "~.~.~.~.~.~.~.~.~.~.K.~.B K.K.~.<X).7.h ( u + D 4XK.!.K.).K.K.).", "~.~.~.~.~.~.~.~.~.K.~.~.c B.<XoXO.f U b.4X2XaXR R 4XK.).K.K.).!.", "~.~.~.~.~.~.~.K.~.~.K.).T F.1.h R B.<XoXK.K.K.4XK R 4XK.oXF.).!.", "~.~.~.~.~.~.~.~.K.~.<X'.w a ) K.4X).K.K.).K.K.K.4XV { <XK.).K.!.", "~.~.~.K.K.K.K.~.&X~.) B q c.4X).K.K.).~.!.!.).K.).<Xc O.<XK.!.).", "~.~.~.~.3XoX<XK.) h [ oXR b.~.K.oXK.K.).K.).).!.!.!.).z p.oXK.).", "~.K.~.F.Y f.[ h [ ).4X&XS z.).K.).K.).!.).!.!.K.).F.).).b.).K.!.", " XB.wX& 2 . ,.-X6X~.B.&XK z.oX~.!.).!.).!.!.).!.K.).K.).).K.).!.", "~.K.2Xi * o &.C 8.~.&X6XK s.~.~.!.K.).K.).!.K.).!.K.).K.K.!.K.!.", "~.~.~.{.&.7 z.u.K B K u.K v.6X~.F.K.K.!.K.).!.).).).K.!.K.).).!.", "~.~.~.~.oXh h &X&X~.e.) 0 s 8.K.<X*X).K.K.K.).K.!.!.).!.).!.!.).", "~.~.~.B.&X! T C &X~.~.yX! _ ) c K ;.K.oX4X).F.K.K.).K.!.!.).!.).", "~.~.~.~.&X-.=.! -.&XB.&XR u.3XoXp.! f K O.N.<X<X).K.!.K.!.K.).K.", "~.~.~.F.~.B.j '.s B.~.&X_ 7.oXK.oX4XoXs.) c S O.b.<X*X).K.).!.!.", "~.~.~.~.R.&XK R.z.j &X&X) 1.&X~.K.K.).).<XoXl._ c V O.b.).K.K.).", "~.~.~.K.~.*X-.9 [.! U 0X) 7.&XK.!.K.).K.K.F.oX<X<Xl.{ c c.).K.!.", "~.~.~.~.B.wX$ 2 @ sXh c.O.| &X~.K.).!.!.K.).!.K.K.).4XoX!.).K.!.", "~.~.~.~.B.wXy ; O <.l.K 3.3.<X~.).!.).!.!.).).K.).K.F.K.).K.).!.", "~.~.~.~.~.~.[.q.[.O.c Z 8 t 2XK.K.).K.).!.!.K.).!.).!.K.K.!.!.).", "~.~.~.~.~.~.K.OXK.4X*XZ - , W <XK.).!.!.!.).K.!.!.).!.!.).).K.).", "~.~.~.~.K.~.K.~.K.K.|.R.5 > s.oXK.oXK.).!.).).!.!.K.).).!.!.!.!.", "~.~.~.~.~.~. X~.K.).!.oXA.A.*XF.!.).).!.).K.K.).).K.).K.K.).).K.", "~.~.~.~.~.~.~.~.!.F.).K.).K.K.).K.K.).!.!.!.).!.!.).!.!.).!.!.)." }; /* XPM */ static const char *const xpm_icon_2[] = { /* columns rows colors chars-per-pixel */ "48 48 94 2", " c #7A7976", ". c #7F7E7B", "X c #908E7E", "o c #222296", "O c #0C0CBF", "+ c #1C1CB7", "@ c #1110BE", "# c #2525A6", "$ c #3838AC", "% c #2B2AB8", "& c #3130B1", "* c #3D3CB0", "= c #454496", "- c #404098", "; c #4E4D98", ": c #666585", "> c #6D6C8E", ", c #727184", "< c #4544A7", "1 c #4A49A8", "2 c #5D5CA7", "3 c #6463A0", "4 c #6B6AA4", "5 c #6C6BA8", "6 c #0000C4", "7 c #0E0EC5", "8 c #0000CC", "9 c #1111C1", "0 c #0000DE", "q c #0000E1", "w c #0000EB", "e c #0000F5", "r c #0000FE", "t c #82818C", "y c #8B898D", "u c #908E89", "i c #93928E", "p c #969591", "a c #999794", "s c #9C9A96", "d c #96949B", "f c #9E9C99", "g c #A09F9B", "h c #A3A29D", "j c #A9A79C", "k c #AEAD9E", "l c #B1B09F", "z c #8382AB", "x c #8E8DAB", "c c #908FAA", "v c #9695A1", "b c #9594AB", "n c #9D9BAD", "m c #A6A5A1", "M c #A8A7A2", "N c #ABAAA5", "B c #A5A3A9", "V c #A8A7AF", "C c #AFADA9", "Z c #B0AFAB", "A c #B4B2AD", "S c #A7A6B0", "D c #B6B5B2", "F c #B8B7B3", "G c #BBB9B5", "H c #BEBDB9", "J c #C1BFBB", "K c #CAC8B7", "L c #C4C2BD", "P c #CECCBC", "I c #D3D2BD", "U c #C6C4C0", "Y c #C9C7C3", "T c #CCCAC5", "R c #CFCDC8", "E c #D1CFC2", "W c #D1CFCB", "Q c #D5D3C6", "! c #DBDAC3", "~ c #D5D3CE", "^ c #D8D6C8", "/ c #DCDACE", "( c #D6D4D0", ") c #D9D7D1", "_ c #DCDAD4", "` c #DEDCD9", "' c #E1DFCB", "] c #E1DFD3", "[ c #E1DEDA", "{ c #E3E1CC", "} c #E8E6CF", "| c #E3E1D3", " . c #EAE8D6", ".. c #E5E3DB", /* pixels */ "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ( ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ( ~ ~ ~ ) ~ ( ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ( ~ ~ ~ ~ ~ ~ ~ ( ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ R ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ W | k k [ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ h G ) ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ( ~ ~ ~ W _ n O + D ~ W ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ C m _ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ { 1 r e 3 .( ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ _ G s _ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ( ~ ~ ~ ~ ~ ~ _ b 8 7 t M U _ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) T i ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ | f h ..J f h L _ ) ~ ~ ~ ~ ~ ~ ~ ~ ) p Y ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ _ F F _ ~ _ L h f J _ ) ~ ~ ~ W W _ f G _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ A A _ ~ R ) _ U h g H _ ~ ~ | ..M N _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) F Z _ R ~ ~ ~ ~ _ Y h s H E c d j _ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ) ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ F C _ ~ ~ ~ ~ ~ ~ ~ _ Y C = e 6 V _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ G C _ ~ ~ ~ ~ ~ ~ ~ ~ [ I # e q b ] ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ) ~ ~ ~ ~ _ H N _ ~ ~ ~ ~ ~ _ _ Y h j d % $ k _ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ) ", "~ ) ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) J N _ R ~ ~ ~ _ U h f H _ _ ! ' h A _ W ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ( L M _ R _ _ U h f L ) ) ~ W ~ ~ ) f F _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ L m | _ L f f L _ ( ~ ~ ~ ~ ~ ~ ~ ) s G _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ( T N U f h L _ ( ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ( a J _ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ _ A M U _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ i L ) ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ _ F f s s ` ( ~ ~ ~ ~ ~ ~ ~ ~ ( ~ ~ ~ ~ ~ ~ ~ ~ i Y _ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ ~ F s m R ~ h ( ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ T i Y ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ [ _ ~ _ ~ F s M T _ _ T h _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ L C _ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ^ B F ~ A s N W _ ~ ~ ~ R h ~ ~ ~ ~ ~ ( ~ ~ ( ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ / 5 0 @ y A W _ ~ ~ ~ ~ ~ ~ g ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ( / ~ ", "~ ~ ~ ~ ~ ! & r w > ^ ) _ ~ ~ ~ ~ ~ R g ~ ~ ~ ~ ~ ~ ~ ( ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ( ~ ~ ~ ~ ", "~ ~ ~ ~ W _ b @ o N m f N L ~ _ ) ~ R g ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ) ~ ~ ~ / I X h [ W G h g N L ~ _ h ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ W _ Z a Z _ ~ _ ~ F m s N i W _ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ( ~ ~ ~ ~ ~ ) G Z h J _ ~ ~ ( _ ~ F . s N H ~ _ _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ f W p ~ ~ ~ ~ ~ ~ _ N R H M f h H ~ _ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ _ h Y H h _ ~ ~ ~ ~ ( f R _ _ ~ H M f h G ~ _ _ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ", "~ ( ~ ~ ~ ) ~ ~ _ F M ..h F _ ~ ~ W ) h T ( ~ ~ ) _ ~ H M f m F W _ _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ f ~ ~ p R ( ~ ~ ) h T ( ~ ~ ~ ~ ~ ) _ ~ L N f h F W _ _ ~ ~ W ~ ~ ~ ~ ~ ~ ~ ", "~ ( ~ ~ ~ ~ ~ ~ ~ _ h L _ L s _ ~ ~ ) h Y ~ ~ ~ ~ ~ ~ ~ ~ ~ _ _ ~ L C f h F R _ ) ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ) F A .._ N C _ W _ m Y ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ _ ( L C f h A W ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ^ , b ^ _ s U ( _ m L ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ ( Y N F _ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ / z q 0 z | T p ~ _ m L ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) _ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ) ~ ~ ) ~ ~ R | 2 r r ; ' ` F g ..m L ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ _ H $ * h s F [ m H D L ) W ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ( ! ! _ R N s F j u C ] ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ) ~ ~ ~ ) ~ ~ ~ ~ ~ W ( ~ ( ` T N : 8 7 V _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ } < r e 5 { W ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _ n O + D _ ~ ~ ~ _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ / P P _ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ", "~ ~ ) ~ ~ ~ ( ~ ~ ( ~ ~ ~ ~ ~ ~ ~ ~ W ( ( ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ( ~ ~ ~ ~ _ ~ ~ ~ ~ ) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ", "~ ~ ~ ~ ~ ~ ( ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ / ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ) " }; const char *const *const xpm_icons[] = { xpm_icon_0, xpm_icon_1, xpm_icon_2, }; const int n_xpm_icons = 3;
the_stack_data/450785.c
#include <stdio.h> #include <limits.h> #include <float.h> #include <math.h> int main() { char c = '\0'; int power; long long int i = 5; float f = 5.25; double d = 5.52; power = pow(2, 3); printf("power = %d\n\n", power); unsigned char charArray[4] = {'b', 'y', 'e', '\0'}; printf("The size of c is: %d\n", sizeof(c)); printf("The minimum value of char is: %d\n", CHAR_MIN); printf("The ASCII value of c is: %d\n", c); printf("The value of c is: %c\n\n", c); printf("The size of i is: %d\n", sizeof(i)); printf("The maximum value of \'long long int\' is: %ld\n", LONG_MAX); printf("The value of i is: %d\n\n", i); // printf("The size of c is: %d\n", sizeof(c)); // printf("The minimum value of char is: %d\n", CHAR_MIN); // printf("The ASCII value of c is: %d\n", c); printf("The value of c is: %s\n\n", charArray); // unsigned short int j = 0; // while ( charArray[j] != '\0') { // printf("%dst character of charArray: %c\n", j, charArray[j]); // j++; // } // putchar('\n'); printf("The size of f is: %d\n", sizeof(f)); printf("The maximum value of \'float\' is: %E\n", FLT_MAX); printf("The value of f is: %f\n\n", f); printf("The size of d is: %d\n", sizeof(d)); printf("The maximum value of \'double\' is: %.16E\n", DBL_MAX); printf("The value of d is: %E\n\n", d); // printf("The size of c is: %d\n", sizeof(c)); // printf("The value of c is: %.3E\n", c); // printf("The size of d is: %d\n", sizeof(d)); // printf("The value of d is: %E\n", d); return 0; }
the_stack_data/95451592.c
int c = 0;
the_stack_data/34511450.c
#ifdef _UNITTEST_BVR_ #include "bvr.h" #include <stdio.h> #include <stdlib.h> int main( int argc, char *argv[] ) { const int M = argc > 1 ? atoi(argv[1]) : 1; const int N = argc > 2 ? atoi(argv[2]) : 1; fprintf( stdout, "mean_rank_of_ties( %d, %d ) => %.3f\n", M, N, MEAN_RANK_OF_TIES( M, N ) ); return EXIT_SUCCESS; } #endif
the_stack_data/32951069.c
int puts(char*x){} int strlen(char*x){} //void memcpy(char*d,char*s,int n){} void fill(char*s) { char c = 'A'; while(c <= 'Z') { s[0] = c; c++; s++; } s[0] = 0; } int main() { char buf[64]; char *s = buf; fill(s); puts(buf); return strlen(buf); }
the_stack_data/125141839.c
// // main.c // qualNumeroEhMaior // // Created by Rodrigo Weber on 06/07/20. // Copyright © 2020 Rodrigo Weber. All rights reserved. // #include <stdio.h> #include <stdlib.h> #define ehMaior(x, y) x > y ? x : y int main(int argc, const char * argv[]) { int a = 10; int b = 5; int c = ehMaior(a, b); printf("%d é o número maior\n", c); return 0; }
the_stack_data/139612.c
#include <stdio.h> #include <stdlib.h> #define VALUES 300 int calculate_fish_for_104_days(int age) { int *fish = malloc(sizeof(int)*16384); long old_total = 1, total = 1; fish[0] = age; for (size_t i = 0; i < 104; i++) { old_total = total; for (long j = 0; j < old_total; j++) if (fish[j] > 0) fish[j]--; else { fish[j] = 6; fish[total++] = 8; } } free(fish); return total; } static int fish[629145600] = {0}; int main(int argc, char *argv[]) { FILE *fi = fopen("input6", "r"); long long old_total = 0, total = VALUES, fish_for_104_days[9] = {0}; for(int i = 0; i < VALUES - 1; i++) fscanf(fi, "%d,", &fish[i]); fscanf(fi, "%d\n", &fish[VALUES - 1]); for (size_t i = 0; i < 152; i++) { old_total = total; for (long j = 0; j < old_total; j++) if (fish[j] > 0) fish[j]--; else { fish[j] = 6; fish[total++] = 8; } } old_total = total; for (size_t i = 0; i <= 8; i++) fish_for_104_days[i] = calculate_fish_for_104_days(i) - 1; for (long long j = 0; j < old_total; j++) { total += fish_for_104_days[fish[j]]; } printf("the number of fish is: %lld \n", total); return 0; }
the_stack_data/247018294.c
//C program to generate first n (>=3) Fibbonacci numbers #include<stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { int f0, f1, f2, n, i; //Note argv[0] = ./a.out if (argc >= 2) { // n = argv[1]*1; n = atoi(argv[1]); } else { printf("Enter value of n, (n>=3): "); scanf("%d", &n); } f0=1; f1=1; printf("Fibbonacci series for n = %d\n", n); printf("%d %d ", f0, f1); for (int i = 3; i <= n; ++i) { f2 = f1+f0; printf("%d ", f2); f0 = f1; f1 = f2; } printf("\n"); return 0; }
the_stack_data/862842.c
/* // Sample code to perform I/O: #include <stdio.h> int main(){ int num; scanf("%d", &num); // Reading input from STDIN printf("Input number is %d.\n", num); // Writing output to STDOUT } // Warning: Printing unwanted or ill-formatted data to output will cause the test cases to fail */
the_stack_data/148579001.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[2928]; } icudt57l_ibm_1277_P100_1995_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,49,50,55,55,95,80,49,48, 48,45,49,57,57,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, 253,4,0,0,0,2,1,1,26,0,0,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,4,4,31,0,1,0,0,0,0,0,0,0, 32,4,0,0,32,4,0,0,62,6,0,0,0,0,0,0, 68,4,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, 25,32,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,92,0,0,128,93,0,0,128,94,0,0,128, 95,0,0,128,24,32,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,126,0,0,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,142,0,0,128, 143,0,0,128,49,1,0,128,96,0,0,128,180,0,32,128, 198,2,0,128,220,2,0,128,175,0,32,128,216,2,0,128, 217,2,0,128,168,0,32,128,153,0,0,128,218,2,0,128, 184,0,32,128,156,0,0,128,221,2,0,128,219,2,0,128, 199,2,0,128,160,0,0,128,161,0,0,128,162,0,0,128, 163,0,0,128,164,0,0,128,165,0,0,128,166,0,0,128, 167,0,0,128,168,0,0,128,169,0,0,128,170,0,0,128, 171,0,0,128,172,0,0,128,173,0,0,128,174,0,0,128, 175,0,0,128,176,0,0,128,177,0,0,128,178,0,0,128, 179,0,0,128,180,0,0,128,181,0,0,128,182,0,0,128, 183,0,0,128,184,0,0,128,185,0,0,128,186,0,0,128, 187,0,0,128,188,0,0,128,189,0,0,128,190,0,0,128, 191,0,0,128,192,0,0,128,193,0,0,128,194,0,0,128, 195,0,0,128,196,0,0,128,197,0,0,128,198,0,0,128, 199,0,0,128,200,0,0,128,201,0,0,128,202,0,0,128, 203,0,0,128,204,0,0,128,205,0,0,128,206,0,0,128, 207,0,0,128,208,0,0,128,209,0,0,128,210,0,0,128, 211,0,0,128,212,0,0,128,213,0,0,128,214,0,0,128, 215,0,0,128,216,0,0,128,217,0,0,128,218,0,0,128, 219,0,0,128,220,0,0,128,221,0,0,128,222,0,0,128, 223,0,0,128,224,0,0,128,225,0,0,128,226,0,0,128, 227,0,0,128,228,0,0,128,229,0,0,128,230,0,0,128, 231,0,0,128,232,0,0,128,233,0,0,128,234,0,0,128, 235,0,0,128,236,0,0,128,237,0,0,128,238,0,0,128, 239,0,0,128,240,0,0,128,241,0,0,128,242,0,0,128, 243,0,0,128,244,0,0,128,245,0,0,128,246,0,0,128, 247,0,0,128,248,0,0,128,249,0,0,128,250,0,0,128, 251,0,0,128,252,0,0,128,253,0,0,128,254,0,0,128, 255,0,0,128,128,0,64,0,64,0,64,0,64,0,64,0, 64,0,64,0,191,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,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, 64,0,64,0,64,0,64,0,64,0,64,0,64,0,64,0, 64,0,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,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,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,0,80,0,96,0,112,0,128,0,144,0, 160,0,176,0,192,0,208,0,224,0,240,0,0,1,16,1, 32,1,48,1,64,1,80,1,96,1,112,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,122,1,138,1, 154,1,170,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,178,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,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,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,1,209,1,225,1,241,1,1,2,17,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,15,1,15,2,15,3,15,4,15,5,15,6,15, 7,15,8,15,9,15,10,15,11,15,12,15,13,15,14,15, 15,15,16,15,17,15,18,15,19,15,20,15,21,15,22,15, 23,15,24,15,25,15,26,15,27,15,28,15,29,15,30,15, 31,15,32,15,33,15,34,15,35,15,36,15,37,15,38,15, 0,0,40,15,41,15,42,15,43,15,44,15,45,15,46,15, 47,15,48,15,49,15,50,15,51,15,52,15,53,15,54,15, 55,15,56,15,57,15,58,15,59,15,60,15,61,15,62,15, 63,15,64,15,65,15,66,15,67,15,68,15,69,15,70,15, 71,15,72,15,73,15,74,15,75,15,76,15,77,15,78,15, 79,15,80,15,81,15,82,15,83,15,84,15,85,15,86,15, 87,15,88,15,89,15,90,15,91,15,92,15,93,15,94,15, 95,15,145,15,97,15,98,15,99,15,100,15,101,15,102,15, 103,15,104,15,105,15,106,15,107,15,108,15,109,15,110,15, 111,15,112,15,113,15,114,15,115,15,116,15,117,15,118,15, 119,15,120,15,121,15,122,15,123,15,124,15,125,15,126,15, 127,15,128,15,129,15,130,15,131,15,132,15,133,15,134,15, 135,15,136,15,137,15,138,15,139,15,140,15,141,15,142,15, 143,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,153,15,0,0,0,0,156,15,0,0,0,0, 0,0,160,15,161,15,162,15,163,15,164,15,165,15,166,15, 167,15,168,15,169,15,170,15,171,15,172,15,173,15,174,15, 175,15,176,15,177,15,178,15,179,15,180,15,181,15,182,15, 183,15,184,15,185,15,186,15,187,15,188,15,189,15,190,15, 191,15,192,15,193,15,194,15,195,15,196,15,197,15,198,15, 199,15,200,15,201,15,202,15,203,15,204,15,205,15,206,15, 207,15,208,15,209,15,210,15,211,15,212,15,213,15,214,15, 215,15,216,15,217,15,218,15,219,15,220,15,221,15,222,15, 223,15,224,15,225,15,226,15,227,15,228,15,229,15,230,15, 231,15,232,15,233,15,234,15,235,15,236,15,237,15,238,15, 239,15,240,15,241,15,242,15,243,15,244,15,245,15,246,15, 247,15,248,15,249,15,250,15,251,15,252,15,253,15,254,15, 255,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,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,144,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,147,15,159,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,150,15,151,15,154,15,158,15,148,15, 157,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,0,0,0,0,0,0,0,0,0,0,0,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,15,39,15,0,0,0,0,0,0, 0,0,0,0,0,0,33,8,34,8,35,8,36,8,37,8, 38,8,0,0,40,8,41,8,42,8,43,8,44,8,45,8, 46,8,47,8,48,8,49,8,50,8,51,8,52,8,53,8, 54,8,55,8,56,8,57,8,58,8,59,8,60,8,61,8, 62,8,63,8,64,8,65,8,66,8,67,8,68,8,69,8, 70,8,71,8,72,8,73,8,74,8,75,8,76,8,77,8, 78,8,79,8,80,8,81,8,82,8,83,8,84,8,85,8, 86,8,87,8,88,8,89,8,90,8,91,8,92,8,93,8, 94,8,95,8,145,8,97,8,98,8,99,8,100,8,101,8, 102,8,103,8,104,8,105,8,106,8,107,8,108,8,109,8, 110,8,111,8,112,8,113,8,114,8,115,8,116,8,117,8, 118,8,119,8,120,8,121,8,122,8,123,8,124,8,125,8, 126,8,0,0,0,0,170,170,170,170,170,170,170,170,170,170 } }; U_CDECL_END
the_stack_data/401845.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[75552]; } icudt57l_ibm_955_P110_1997_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,57,53,53,95,80,49,49,48, 45,49,57,57,55,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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,3,0,0,0,2,2,2,116,126,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,4,4,215,0,3,0,0,0,0,0,0,0, 32,12,0,0,40,81,0,0,232,108,0,0,1,40,32,1, 128,172,0,0,0,0,0,2,0,0,0,2,0,0,0,2, 0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2, 0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2, 0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2, 0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2, 0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2, 0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2, 0,0,0,2,0,0,0,2,0,0,0,2,0,0,0,2, 0,0,0,2,0,0,0,2,0,0,0,1,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,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,1,82,14,0,1,176,14,0,1,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,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, 180,25,0,1,18,26,0,1,112,26,0,1,206,26,0,1, 44,27,0,1,138,27,0,1,232,27,0,1,70,28,0,1, 164,28,0,1,2,29,0,1,96,29,0,1,190,29,0,1, 28,30,0,1,122,30,0,1,216,30,0,1,54,31,0,1, 148,31,0,1,242,31,0,1,80,32,0,1,174,32,0,1, 12,33,0,1,106,33,0,1,200,33,0,1,38,34,0,1, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,132,34,0,2,132,34,0,2,132,34,0,2, 132,34,0,2,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 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,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,255,255,112,128, 255,255,112,128,255,255,112,128,255,255,112,128,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,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,20,32,16,32, 15,255,60,255,28,48,22,32,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,18,34,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,58,156,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, 175,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,35,136, 14,146,131,82,135,86,4,84,211,94,225,98,42,101,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,200,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,76,112,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,235,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,47,88,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, 56,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,38,121,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,2,134,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,113,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,228,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,250,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, 42,121,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,174,106, 223,104,215,118,216,109,111,110,228,111,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,135,144,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,5,136,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,156,106,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,199,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,24,81,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,234,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,89,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,96,124,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,173,79,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,247,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,185,100,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,103,104,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,188,104,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, 155,109,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,69,111,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,100,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,63,120, 32,120,58,120,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,195,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,237,123,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,74,133,75,133,85,133,128,133,164,133, 136,133,145,133,138,133,168,133,109,133,148,133,155,133,174,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,206,134,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,127,135,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,204,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, 206,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,233,143, 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,109,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,26,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,245,155,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,44,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,45,92,217,105,101,144,118,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,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,254,255,254,255,254,255,254,255,254,255,254,255, 254,255,254,255,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,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,116,1,180,1,244,1,52,2,116,2,180,2,244,2, 52,3,116,3,180,3,244,3,52,4,116,4,180,4,244,4, 52,5,116,5,180,5,244,5,52,6,116,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,32,0,32,0, 32,0,32,0,32,0,32,0,32,0,176,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,0,0,0,0,0,0, 0,0,0,0,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, 5,0,0,0,6,0,0,0,7,0,0,0,8,0,0,0, 9,0,0,0,10,0,0,0,11,0,0,0,10,0,0,0, 11,0,0,0,12,0,128,1,13,0,83,0,14,0,0,0, 15,0,128,0,16,0,0,0,17,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,18,0,0,0, 19,0,254,255,20,0,251,3,21,0,254,255,22,0,251,3, 23,0,0,0,24,0,0,0,25,0,0,0,26,0,2,0, 27,0,255,255,28,0,255,255,29,0,255,255,30,0,255,255, 31,0,2,0,32,0,0,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,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0, 34,0,81,51,35,0,99,0,36,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,37,0,8,0, 38,0,0,0,39,0,0,8,40,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0, 41,0,15,0,42,0,0,0,43,0,0,0,43,0,0,0, 44,0,20,0,45,0,0,0,46,0,0,0,47,0,141,9, 48,0,4,100,49,0,129,31,50,0,48,32,51,0,0,0, 52,0,4,0,53,0,195,12,54,0,0,0,55,0,204,0, 56,0,0,0,57,0,32,0,58,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0, 59,0,4,0,60,0,0,0,61,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,62,0,15,144, 63,0,153,57,64,0,57,153,65,0,153,153,66,0,4,8, 67,0,0,0,68,0,0,0,69,0,0,0,68,0,0,0, 69,0,0,0,70,0,3,0,71,0,12,48,72,0,192,200, 73,0,0,0,74,0,0,128,75,0,0,0,76,0,96,0, 77,0,0,0,78,0,0,0,79,0,0,0,80,0,5,0, 81,0,0,0,82,0,0,164,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, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,84,0,239,255, 85,0,63,16,86,0,0,0,87,0,0,0,88,0,254,255, 89,0,255,255,90,0,255,255,91,0,255,255,92,0,255,255, 93,0,15,120,94,0,254,255,95,0,255,255,96,0,255,255, 97,0,255,255,98,0,255,255,99,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,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,100,0,139,111, 101,0,243,67,102,0,66,36,103,0,70,155,104,0,44,232, 105,0,224,227,106,0,4,0,107,0,10,64,108,0,101,95, 109,0,54,219,110,0,119,121,111,0,73,4,112,0,215,236, 113,0,240,227,114,0,56,96,115,0,197,8,116,0,2,230, 117,0,3,52,118,0,0,128,119,0,81,53,120,0,200,224, 121,0,171,126,122,0,0,130,123,0,105,152,124,0,72,169, 125,0,66,41,126,0,3,232,127,0,96,128,128,0,28,68, 129,0,147,173,130,0,58,192,131,0,104,69,132,0,96,170, 133,0,86,134,134,0,122,63,135,0,64,2,136,0,136,131, 137,0,97,20,138,0,32,16,139,0,116,33,140,0,33,32, 141,0,2,7,142,0,0,48,143,0,188,64,144,0,36,166, 145,0,98,68,146,0,168,96,147,0,32,10,148,0,23,2, 149,0,116,133,150,0,2,4,151,0,132,156,152,0,251,123, 153,0,21,20,154,0,36,127,155,0,226,17,156,0,101,182, 157,0,239,2,158,0,117,31,159,0,255,32,160,0,112,58, 161,0,64,56,162,0,195,38,163,0,99,103,164,0,217,77, 165,0,146,32,166,0,176,70,167,0,201,15,168,0,152,188, 169,0,80,72,170,0,56,134,171,0,63,160,172,0,136,35, 173,0,22,136,174,0,9,62,175,0,50,82,176,0,170,34, 177,0,164,227,178,0,221,0,179,0,44,199,180,0,102,161, 181,0,225,38,182,0,11,132,183,0,10,143,184,0,235,39, 185,0,158,85,186,0,65,194,187,0,187,137,188,0,20,0, 189,0,64,133,190,0,97,99,191,0,73,8,192,0,12,127, 193,0,208,138,194,0,62,255,195,0,207,5,196,0,26,255, 197,0,3,168,198,0,65,122,199,0,64,123,200,0,69,71, 201,0,2,128,202,0,0,5,203,0,235,56,204,0,81,216, 205,0,5,0,206,0,52,153,207,0,12,113,208,0,151,3, 209,0,0,1,210,0,102,99,211,0,4,36,212,0,208,128, 213,0,81,0,214,0,0,192,215,0,10,67,216,0,113,144, 217,0,200,48,218,0,8,0,219,0,0,88,220,0,153,14, 221,0,0,247,222,0,128,95,223,0,65,0,224,0,176,0, 225,0,16,148,226,0,24,0,227,0,128,98,228,0,64,2, 229,0,208,9,230,0,0,130,231,0,86,1,232,0,4,80, 233,0,1,8,234,0,16,29,235,0,16,5,236,0,193,132, 237,0,16,0,238,0,37,64,239,0,80,16,240,0,15,65, 241,0,138,77,242,0,9,64,243,0,13,166,244,0,25,171, 245,0,76,145,246,0,192,33,247,0,129,9,248,0,133,196, 249,0,3,0,250,0,82,6,251,0,0,128,252,0,4,11, 253,0,8,0,254,0,29,4,255,0,9,0,0,1,73,72, 1,1,92,144,2,1,9,0,3,1,144,22,4,1,101,12, 5,1,32,34,6,1,18,132,7,1,51,36,8,1,3,12, 9,1,150,71,10,1,4,10,11,1,37,66,12,1,40,0, 13,1,136,144,14,1,0,73,15,1,8,79,16,1,162,20, 17,1,170,211,18,1,48,216,19,1,135,62,20,1,4,134, 21,1,97,31,22,1,164,126,23,1,134,65,24,1,144,195, 25,1,179,5,26,1,165,87,27,1,24,33,28,1,30,36, 29,1,72,42,30,1,40,17,31,1,4,74,32,1,64,10, 33,1,27,22,34,1,96,13,35,1,64,136,36,1,10,2, 37,1,2,149,38,1,33,130,39,1,96,16,40,1,67,2, 41,1,0,4,42,1,68,20,43,1,0,128,44,1,0,0, 45,1,4,12,46,1,0,0,47,1,0,112,48,1,6,26, 49,1,193,0,50,1,74,2,51,1,0,12,52,1,0,26, 53,1,64,0,54,1,4,20,55,1,69,64,56,1,41,0, 57,1,179,189,58,1,120,10,59,1,43,5,60,1,169,187, 61,1,160,191,62,1,124,64,63,1,121,131,64,1,252,18, 65,1,29,232,66,1,246,75,67,1,105,197,68,1,246,239, 69,1,74,4,70,1,21,33,71,1,2,255,72,1,99,237, 73,1,43,64,74,1,51,208,75,1,66,2,76,1,0,16, 77,1,19,0,78,1,2,27,79,1,202,89,80,1,160,0, 81,1,0,2,82,1,3,167,83,1,65,44,84,1,128,72, 85,1,242,143,86,1,4,2,87,1,0,0,88,1,0,88, 89,1,5,16,90,1,0,146,91,1,72,0,92,1,148,24, 93,1,1,32,94,1,4,80,95,1,128,52,96,1,0,50, 97,1,76,104,98,1,234,73,99,1,190,104,100,1,76,24, 101,1,66,46,102,1,32,168,103,1,201,33,104,1,185,80, 105,1,176,128,106,1,30,0,107,1,124,255,108,1,154,132, 109,1,224,20,110,1,193,40,111,1,224,1,112,1,14,135, 113,1,73,172,114,1,15,19,115,1,219,221,116,1,26,190, 117,1,251,137,118,1,224,162,119,1,162,81,120,1,2,85, 121,1,202,50,122,1,70,62,123,1,139,146,124,1,191,29, 125,1,143,67,126,1,3,103,127,1,24,50,128,1,40,48, 129,1,192,51,130,1,17,8,131,1,35,169,132,1,0,192, 133,1,101,58,134,1,227,143,135,1,2,4,136,1,78,44, 137,1,37,134,138,1,61,191,139,1,161,0,140,1,26,58, 141,1,212,140,142,1,201,6,143,1,124,49,144,1,224,0, 145,1,10,149,146,1,139,1,147,1,219,14,148,1,75,227, 149,1,32,140,150,1,130,17,151,1,16,240,152,1,148,125, 153,1,40,167,154,1,172,201,155,1,251,64,156,1,132,68, 157,1,83,6,158,1,144,90,159,1,68,68,160,1,200,63, 161,1,1,0,162,1,72,0,163,1,212,245,164,1,1,119, 165,1,87,236,166,1,66,196,167,1,29,137,168,1,131,107, 169,1,40,73,170,1,9,65,171,1,66,210,172,1,29,6, 173,1,254,89,174,1,0,24,175,1,34,58,176,1,228,183, 177,1,159,59,178,1,3,240,179,1,234,192,180,1,134,19, 181,1,2,130,182,1,128,137,183,1,0,228,184,1,0,178, 185,1,161,16,186,1,128,75,187,1,196,12,188,1,9,211, 189,1,68,137,190,1,175,31,191,1,52,72,192,1,89,130, 193,1,69,12,194,1,10,66,195,1,80,4,196,1,64,160, 197,1,200,16,198,1,64,49,199,1,80,68,200,1,4,64, 201,1,0,1,202,1,128,130,203,1,64,5,204,1,8,1, 205,1,44,68,206,1,48,106,207,1,5,26,208,1,166,32, 209,1,20,5,210,1,207,144,211,1,86,100,212,1,33,0, 213,1,0,49,214,1,24,156,215,1,240,203,216,1,32,161, 217,1,226,99,218,1,76,16,219,1,181,1,220,1,140,83, 221,1,131,154,222,1,178,184,223,1,129,50,224,1,122,152, 225,1,132,10,226,1,231,51,227,1,2,12,228,1,204,212, 229,1,24,144,230,1,161,161,231,1,112,144,232,1,30,138, 233,1,4,224,234,1,212,195,235,1,81,4,236,1,154,67, 237,1,194,33,238,1,68,72,239,1,16,83,240,1,146,2, 241,1,64,54,242,1,65,2,243,1,189,243,244,1,9,171, 245,1,240,232,246,1,192,125,247,1,210,165,248,1,66,194, 249,1,75,210,250,1,63,164,251,1,175,208,252,1,160,26, 253,1,161,52,254,1,71,130,255,1,216,3,0,2,82,196, 1,2,27,101,2,2,148,210,3,2,58,200,4,2,28,0, 5,2,200,64,6,2,6,14,7,2,20,51,8,2,79,97, 9,2,27,178,10,2,136,0,11,2,208,192,12,2,42,160, 13,2,152,168,14,2,197,161,15,2,107,22,16,2,80,46, 17,2,180,133,18,2,139,192,19,2,4,6,20,2,51,249, 21,2,4,30,22,2,110,5,23,2,81,162,24,2,0,4, 25,2,56,118,26,2,7,236,27,2,184,115,28,2,6,68, 29,2,50,24,30,2,129,64,31,2,22,200,32,2,138,124, 33,2,9,99,34,2,128,41,35,2,4,170,36,2,36,28, 37,2,156,202,38,2,14,78,39,2,96,39,40,2,144,9, 41,2,0,131,42,2,70,0,43,2,4,129,44,2,17,96, 45,2,129,16,46,2,13,84,47,2,8,9,48,2,14,0, 49,2,10,204,50,2,0,5,51,2,0,12,52,2,48,4, 53,2,68,160,54,2,139,0,55,2,132,103,56,2,136,82, 57,2,25,138,58,2,94,134,59,2,24,139,60,2,89,46, 61,2,96,65,62,2,16,140,63,2,190,156,64,2,97,104, 65,2,28,137,66,2,0,152,67,2,8,0,68,2,0,129, 69,2,154,8,70,2,24,0,71,2,144,65,72,2,7,64, 73,2,161,228,74,2,5,5,75,2,13,100,76,2,14,49, 77,2,77,14,78,2,6,72,79,2,10,255,80,2,50,22, 81,2,168,42,82,2,46,133,83,2,11,0,84,2,0,24, 85,2,132,202,86,2,32,14,87,2,108,105,88,2,50,0, 89,2,0,22,90,2,88,86,91,2,144,3,92,2,32,81, 93,2,40,26,94,2,0,128,95,2,36,17,96,2,225,24, 97,2,38,67,98,2,82,93,99,2,170,14,100,2,160,15, 101,2,40,174,102,2,123,250,103,2,0,69,104,2,8,100, 105,2,64,137,106,2,128,200,107,2,68,192,108,2,5,144, 109,2,65,177,110,2,36,132,111,2,196,36,112,2,52,26, 113,2,58,96,114,2,0,144,115,2,148,193,116,2,70,130, 117,2,58,0,118,2,13,24,119,2,6,193,120,2,34,0, 121,2,16,153,122,2,80,224,123,2,17,21,124,2,87,64, 125,2,130,0,126,2,26,4,127,2,10,2,128,2,79,0, 129,2,48,137,130,2,19,216,131,2,74,68,132,2,2,138, 133,2,34,237,134,2,192,16,135,2,5,64,136,2,0,16, 137,2,2,1,138,2,8,136,139,2,1,49,140,2,0,70, 141,2,4,2,142,2,0,240,143,2,8,7,144,2,0,137, 145,2,0,162,146,2,0,0,147,2,2,34,148,2,0,2, 149,2,16,22,150,2,66,0,151,2,64,16,152,2,0,82, 153,2,96,2,154,2,244,82,155,2,0,32,156,2,16,133, 157,2,48,130,158,2,0,17,159,2,2,66,160,2,8,67, 161,2,181,128,162,2,225,112,163,2,32,154,164,2,64,32, 165,2,1,8,166,2,0,53,167,2,101,252,168,2,193,25, 169,2,4,171,170,2,134,2,171,2,20,98,172,2,135,0, 173,2,68,0,174,2,133,144,175,2,68,2,176,2,92,64, 177,2,133,10,178,2,7,50,179,2,128,51,180,2,0,4, 181,2,192,184,182,2,32,206,183,2,208,192,184,2,48,192, 185,2,128,0,186,2,8,5,187,2,37,13,188,2,144,10, 189,2,64,0,190,2,0,2,191,2,12,8,192,2,5,101, 193,2,0,64,194,2,33,100,195,2,2,65,196,2,104,2, 197,2,0,0,198,2,36,0,199,2,124,132,200,2,2,0, 201,2,32,222,202,2,25,134,203,2,73,64,204,2,8,8, 205,2,0,64,206,2,132,0,207,2,1,32,208,2,0,132, 209,2,16,16,210,2,205,66,211,2,199,1,212,2,56,112, 213,2,42,213,214,2,104,25,215,2,143,29,216,2,80,190, 217,2,18,62,218,2,245,46,219,2,217,129,220,2,196,206, 221,2,18,36,222,2,40,8,223,2,46,115,224,2,172,36, 225,2,52,75,226,2,12,2,227,2,29,212,228,2,2,42, 229,2,0,128,230,2,151,0,231,2,17,8,232,2,196,17, 233,2,68,17,234,2,134,23,235,2,69,125,236,2,217,73, 237,2,73,6,238,2,0,64,239,2,145,135,240,2,76,37, 241,2,196,216,242,2,186,68,243,2,20,73,244,2,146,27, 245,2,0,200,246,2,113,2,247,2,128,21,248,2,129,0, 249,2,0,12,250,2,106,9,251,2,0,194,252,2,0,72, 253,2,2,64,254,2,33,48,255,2,73,186,0,3,128,32, 1,3,128,28,2,3,172,226,3,3,8,16,4,3,4,16, 5,3,52,0,6,3,225,0,7,3,20,132,8,3,32,0, 9,3,0,32,10,3,0,152,11,3,20,16,12,3,194,112, 13,3,170,4,14,3,136,134,15,3,32,84,16,3,98,12, 17,3,19,4,18,3,128,145,19,3,16,32,20,3,130,64, 21,3,6,2,22,3,64,28,23,3,0,84,24,3,131,3, 25,3,233,228,26,3,37,33,27,3,128,132,28,3,51,228, 29,3,0,32,30,3,192,68,31,3,9,230,32,3,3,10, 33,3,38,129,34,3,218,18,35,3,1,8,36,3,1,105, 37,3,144,151,38,3,1,64,39,3,134,248,40,3,77,226, 41,3,129,0,42,3,14,10,43,3,81,166,44,3,26,1, 45,3,236,129,46,3,0,198,47,3,65,132,48,3,184,173, 49,3,44,182,50,3,111,164,51,3,65,135,52,3,84,141, 53,3,2,75,54,3,97,17,55,3,104,2,56,3,96,187, 57,3,87,32,58,3,160,80,59,3,51,4,60,3,192,168, 61,3,180,183,62,3,2,36,63,3,18,1,64,3,211,154, 65,3,0,32,66,3,113,34,67,3,200,0,68,3,129,32, 69,3,158,128,70,3,138,12,71,3,128,225,72,3,9,176, 73,3,81,129,74,3,49,16,75,3,40,64,76,3,14,42, 77,3,165,137,78,3,182,105,79,3,14,98,80,3,37,68, 81,3,68,209,82,3,133,128,83,3,84,77,84,3,117,44, 85,3,177,31,86,3,7,216,87,3,45,134,88,3,124,216, 89,3,65,72,90,3,78,65,91,3,110,34,92,3,0,130, 93,3,8,158,94,3,12,248,95,3,55,237,96,3,128,140, 97,3,38,117,98,3,19,147,99,3,20,8,100,3,50,14, 101,3,4,200,102,3,78,72,103,3,166,110,104,3,74,44, 105,3,112,102,106,3,192,38,107,3,1,186,108,3,12,211, 109,3,93,24,110,3,0,0,111,3,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,110,3,0,0, 111,3,0,0,112,3,0,0,113,3,64,5,114,3,32,112, 115,3,51,129,116,3,129,79,117,3,165,3,118,3,236,85, 119,3,16,100,120,3,24,195,121,3,68,35,122,3,98,20, 123,3,52,0,124,3,67,10,125,3,9,26,126,3,123,24, 127,3,165,19,128,3,2,1,129,3,72,168,130,3,64,4, 131,3,68,197,132,3,6,129,133,3,221,226,134,3,240,26, 135,3,72,45,136,3,38,182,137,3,22,4,138,3,88,80, 139,3,64,110,140,3,50,128,141,3,18,49,142,3,228,7, 143,3,0,12,144,3,8,130,145,3,10,66,146,3,64,72, 147,3,59,128,148,3,96,72,149,3,19,135,150,3,13,133, 151,3,40,52,152,3,25,3,153,3,41,229,154,3,69,35, 155,3,10,135,156,3,169,37,157,3,24,92,158,3,166,119, 159,3,197,217,160,3,0,94,161,3,232,3,162,3,129,0, 163,3,0,167,164,3,84,205,165,3,198,65,166,3,0,40, 167,3,4,162,168,3,96,184,169,3,10,43,170,3,32,0, 171,3,158,218,172,3,234,8,173,3,26,14,174,3,124,66, 175,3,192,17,176,3,8,137,177,3,118,3,178,3,33,134, 179,3,5,1,180,3,0,0,181,3,168,24,182,3,160,70, 183,3,72,196,184,3,5,13,185,3,34,32,186,3,34,84, 187,3,72,145,188,3,1,138,189,3,151,40,190,3,152,120, 191,3,8,0,192,3,5,22,193,3,34,49,194,3,64,66, 195,3,128,8,196,3,78,250,197,3,162,6,198,3,20,8, 199,3,17,146,200,3,2,32,201,3,4,155,202,3,82,46, 203,3,67,6,204,3,0,80,205,3,16,144,206,3,65,0, 207,3,186,133,208,3,66,48,209,3,32,32,210,3,11,79, 211,3,160,5,212,3,8,39,213,3,128,64,214,3,145,5, 215,3,147,26,216,3,80,223,217,3,0,6,218,3,2,162, 219,3,33,48,220,3,48,6,221,3,128,78,222,3,196,12, 223,3,200,4,224,3,4,160,225,3,1,128,226,3,0,96, 227,3,49,212,228,3,128,8,229,3,2,10,230,3,0,28, 231,3,40,0,232,3,24,142,233,3,65,0,234,3,208,106, 235,3,16,202,236,3,16,242,237,3,0,75,238,3,77,39, 239,3,6,21,240,3,32,2,241,3,144,136,242,3,0,90, 243,3,168,130,244,3,73,69,245,3,80,129,246,3,4,32, 247,3,0,128,248,3,4,136,249,3,8,44,250,3,209,8, 251,3,5,0,252,3,1,128,253,3,196,74,254,3,32,224, 255,3,98,0,0,4,142,0,1,4,66,10,2,4,85,48, 3,4,140,106,4,4,14,9,5,4,165,224,6,4,6,41, 7,4,196,66,8,4,20,72,9,4,179,128,10,4,62,128, 11,4,48,179,12,4,2,1,13,4,28,115,14,4,148,20, 15,4,13,96,16,4,32,12,17,4,64,9,18,4,26,48, 19,4,64,192,20,4,81,164,21,4,148,192,22,4,202,141, 23,4,200,5,24,4,194,150,25,4,12,164,26,4,1,0, 27,4,4,52,28,4,200,0,29,4,16,1,30,4,13,85, 31,4,201,169,32,4,40,36,33,4,90,28,34,4,66,1, 35,4,55,72,36,4,77,122,37,4,15,16,38,4,180,50, 39,4,42,69,40,4,123,49,41,4,5,146,42,4,148,184, 43,4,68,92,44,4,215,104,45,4,138,69,46,4,151,80, 47,4,209,46,48,4,67,25,49,4,8,66,50,4,2,210, 51,4,64,157,52,4,64,152,53,4,151,32,54,4,9,84, 55,4,77,6,56,4,0,0,57,4,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,56,4,0,0, 57,4,0,0,58,4,0,0,59,4,128,132,60,4,66,85, 61,4,33,4,62,4,6,28,63,4,0,23,64,4,36,118, 65,4,16,97,66,4,135,255,67,4,221,185,68,4,159,101, 69,4,10,92,70,4,93,36,71,4,0,60,72,4,176,173, 73,4,89,0,74,4,0,0,75,4,0,0,74,4,0,0, 75,4,0,0,76,4,208,40,77,4,155,0,78,4,34,4, 79,4,0,2,80,4,8,1,81,4,8,68,82,4,4,152, 83,4,64,172,84,4,10,141,85,4,40,144,86,4,0,135, 87,4,1,224,88,4,0,4,89,4,49,0,90,4,148,23, 91,4,33,130,92,4,25,0,93,4,84,16,94,4,178,44, 95,4,26,2,96,4,2,156,97,4,3,64,98,4,96,61, 99,4,4,136,100,4,12,8,101,4,0,121,102,4,40,22, 103,4,60,186,104,4,64,134,105,4,8,203,106,4,116,114, 107,4,128,144,108,4,30,0,109,4,0,0,109,4,0,0, 110,4,0,216,111,4,136,225,112,4,135,156,113,4,52,64, 114,4,18,4,115,4,100,174,116,4,145,39,117,4,107,232, 118,4,251,230,119,4,143,64,120,4,102,83,121,4,166,238, 122,4,127,83,123,4,43,227,124,4,228,181,125,4,159,134, 126,4,2,0,127,4,72,133,128,4,34,1,129,4,2,68, 130,4,0,8,131,4,22,33,132,4,160,32,133,4,4,0, 134,4,4,2,135,4,0,32,136,4,5,0,137,4,0,126, 138,4,84,1,139,4,44,22,140,4,172,1,141,4,132,42, 142,4,133,16,143,4,20,140,144,4,48,5,145,4,195,251, 146,4,67,185,147,4,202,0,148,4,96,144,149,4,0,96, 150,4,50,64,151,4,0,18,152,4,144,128,153,4,48,11, 154,4,129,76,155,4,84,0,156,4,2,64,157,4,41,0, 158,4,106,29,159,4,0,32,160,4,128,2,161,4,0,128, 162,4,4,0,163,4,16,38,164,4,12,21,165,4,64,128, 166,4,1,7,167,4,77,217,168,4,36,12,169,4,16,40, 170,4,80,24,171,4,1,80,172,4,32,80,173,4,0,16, 174,4,208,4,175,4,128,112,176,4,1,2,177,4,8,1, 178,4,195,33,179,4,50,1,180,4,0,0,181,4,136,0, 182,4,25,7,183,4,2,8,184,4,96,5,185,4,18,0, 186,4,14,76,187,4,5,4,188,4,161,240,189,4,2,0, 190,4,0,0,191,4,0,0,192,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,190,4,0,0, 191,4,0,0,192,4,0,0,193,4,128,0,194,4,141,142, 195,4,90,3,196,4,189,33,197,4,4,90,198,4,136,52, 199,4,112,17,200,4,38,0,201,4,0,0,201,4,0,0, 202,4,0,16,203,4,2,197,204,4,4,136,205,4,21,184, 206,4,1,248,207,4,124,20,208,4,237,37,209,4,96,237, 210,4,176,27,211,4,137,5,212,4,215,27,213,4,243,122, 214,4,98,26,215,4,12,13,216,4,197,10,217,4,209,229, 218,4,74,82,219,4,144,4,220,4,5,99,221,4,84,3, 222,4,68,82,223,4,87,43,224,4,18,22,225,4,114,168, 226,4,1,17,227,4,73,41,228,4,24,0,229,4,72,9, 230,4,8,16,231,4,0,96,232,4,108,136,233,4,110,145, 234,4,143,5,235,4,18,48,236,4,144,57,237,4,64,248, 238,4,48,73,239,4,128,136,240,4,27,0,241,4,0,0, 242,4,0,0,243,4,0,133,244,4,66,0,245,4,88,0, 246,4,0,152,247,4,4,234,248,4,20,112,249,4,40,22, 250,4,29,97,251,4,19,81,252,4,0,96,253,4,36,26, 254,4,167,0,255,4,0,0,0,5,0,0,0,5,0,0, 1,5,192,3,2,5,32,113,3,5,24,16,4,5,114,1, 5,5,39,169,6,5,4,96,7,5,6,137,8,5,34,192, 9,5,12,2,10,5,0,9,11,5,129,64,12,5,45,32, 13,5,160,140,14,5,52,14,15,5,0,0,15,5,0,0, 16,5,0,0,17,5,0,33,18,5,1,17,19,5,17,128, 20,5,26,193,21,5,76,236,22,5,146,8,23,5,64,0, 24,5,0,133,25,5,172,199,26,5,6,24,27,5,62,224, 28,5,18,5,29,5,0,128,30,5,16,0,31,5,8,64, 32,5,206,128,33,5,1,109,34,5,16,2,35,5,65,134, 36,5,86,8,37,5,30,1,38,5,39,0,39,5,80,55, 40,5,61,8,41,5,50,224,42,5,5,78,43,5,192,1, 44,5,132,4,45,5,129,0,46,5,64,1,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,47,5,0,0, 48,5,0,0,49,5,160,26,50,5,89,0,51,5,200,67, 52,5,36,136,53,5,72,29,54,5,0,200,55,5,82,1, 56,5,3,114,57,5,19,144,58,5,4,4,59,5,128,130, 60,5,0,4,61,5,16,138,62,5,20,13,63,5,86,128, 64,5,8,2,65,5,64,160,66,5,4,39,67,5,0,0, 68,5,0,76,69,5,0,0,70,5,0,0,69,5,0,0, 70,5,0,0,71,5,0,0,72,5,32,163,73,5,2,25, 74,5,174,160,75,5,96,38,76,5,0,223,77,5,16,240, 78,5,21,123,79,5,33,129,80,5,208,58,81,5,128,65, 82,5,40,0,83,5,3,16,84,5,0,72,85,5,0,204, 86,5,20,128,87,5,207,20,88,5,196,0,89,5,0,32, 90,5,32,48,91,5,1,0,92,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,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,93,5,122,223, 94,5,255,255,95,5,255,255,96,5,255,255,97,5,255,255, 98,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,99,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,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,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,33,47,33,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,107,33,94,33, 0,0,0,0,45,33,0,0,121,34,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,95,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,96,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,33,38, 34,38,35,38,36,38,37,38,38,38,39,38,40,38,41,38, 42,38,43,38,44,38,45,38,46,38,47,38,48,38,49,38, 0,0,50,38,51,38,52,38,53,38,54,38,55,38,56,38, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,38, 66,38,67,38,68,38,69,38,70,38,71,38,72,38,73,38, 74,38,75,38,76,38,77,38,78,38,79,38,80,38,81,38, 0,0,82,38,83,38,84,38,85,38,86,38,87,38,88,38, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,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,33,39,34,39, 35,39,36,39,37,39,38,39,40,39,41,39,42,39,43,39, 44,39,45,39,46,39,47,39,48,39,49,39,50,39,51,39, 52,39,53,39,54,39,55,39,56,39,57,39,58,39,59,39, 60,39,61,39,62,39,63,39,64,39,65,39,81,39,82,39, 83,39,84,39,85,39,86,39,88,39,89,39,90,39,91,39, 92,39,93,39,94,39,95,39,96,39,97,39,98,39,99,39, 100,39,101,39,102,39,103,39,104,39,105,39,106,39,107,39, 108,39,109,39,110,39,111,39,112,39,113,39,0,0,87,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,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,62,33,0,0, 0,0,0,0,61,33,0,0,66,33,0,0,70,33,71,33, 0,0,0,0,72,33,73,33,0,0,0,0,119,34,120,34, 0,0,0,0,0,0,69,33,68,33,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,34,0,0, 108,33,109,33,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,40,34,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,110,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,114,34,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,34,44,34, 42,34,45,34,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 77,34,0,0,78,34,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,34,0,0, 95,34,80,34,0,0,0,0,0,0,96,34,58,34,0,0, 0,0,59,34,0,0,0,0,0,0,0,0,0,0,0,0, 93,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 101,34,0,0,0,0,103,34,103,33,0,0,92,34,0,0, 0,0,0,0,0,0,0,0,0,0,74,34,75,34,65,34, 64,34,105,34,106,34,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,104,33,104,34,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,102,34,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 98,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,98,33,97,34, 0,0,0,0,0,0,0,0,101,33,102,33,0,0,0,0, 99,34,100,34,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 62,34,63,34,0,0,0,0,60,34,61,34,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,93,34,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,33,40,44,40, 34,40,45,40,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,35,40,0,0,0,0,46,40,36,40,0,0, 0,0,47,40,38,40,0,0,0,0,49,40,37,40,0,0, 0,0,48,40,39,40,60,40,0,0,0,0,55,40,0,0, 0,0,50,40,41,40,62,40,0,0,0,0,57,40,0,0, 0,0,52,40,40,40,0,0,0,0,56,40,61,40,0,0, 0,0,51,40,42,40,0,0,0,0,58,40,63,40,0,0, 0,0,53,40,43,40,0,0,0,0,59,40,0,0,0,0, 64,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,54,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,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,34,34,34, 0,0,0,0,0,0,0,0,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,34,36,34,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,39,34,38,34,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,33,34,126,33,0,0,0,0, 0,0,123,33,0,0,0,0,125,33,124,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,126,34,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,122,33,121,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,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,106,33,0,0, 105,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, 118,34,0,0,0,0,117,34,0,0,116,34,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,33,33,34,33, 35,33,55,33,0,0,57,33,58,33,59,33,82,33,83,33, 84,33,85,33,86,33,87,33,88,33,89,33,90,33,91,33, 41,34,46,34,76,33,77,33,0,0,0,0,0,0,0,0, 0,0,0,0,65,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,33,36, 34,36,35,36,36,36,37,36,38,36,39,36,40,36,41,36, 42,36,43,36,44,36,45,36,46,36,47,36,48,36,49,36, 50,36,51,36,52,36,53,36,54,36,55,36,56,36,57,36, 58,36,59,36,60,36,61,36,62,36,63,36,64,36,65,36, 66,36,67,36,68,36,69,36,70,36,71,36,72,36,73,36, 74,36,75,36,76,36,77,36,78,36,79,36,80,36,81,36, 82,36,83,36,84,36,85,36,86,36,87,36,88,36,89,36, 90,36,91,36,92,36,93,36,94,36,95,36,96,36,97,36, 98,36,99,36,100,36,101,36,102,36,103,36,104,36,105,36, 106,36,107,36,108,36,109,36,110,36,111,36,112,36,113,36, 114,36,115,36,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,43,33,44,33,53,33,54,33,0,0,0,0,33,37, 34,37,35,37,36,37,37,37,38,37,39,37,40,37,41,37, 42,37,43,37,44,37,45,37,46,37,47,37,48,37,49,37, 50,37,51,37,52,37,53,37,54,37,55,37,56,37,57,37, 58,37,59,37,60,37,61,37,62,37,63,37,64,37,65,37, 66,37,67,37,68,37,69,37,70,37,71,37,72,37,73,37, 74,37,75,37,76,37,77,37,78,37,79,37,80,37,81,37, 82,37,83,37,84,37,85,37,86,37,87,37,88,37,89,37, 90,37,91,37,92,37,93,37,94,37,95,37,96,37,97,37, 98,37,99,37,100,37,101,37,102,37,103,37,104,37,105,37, 106,37,107,37,108,37,109,37,110,37,111,37,112,37,113,37, 114,37,115,37,116,37,117,37,118,37,0,0,0,0,0,0, 0,0,38,33,60,33,51,33,52,33,0,0,108,48,122,67, 0,0,55,60,0,0,0,0,0,0,124,75,102,62,48,59, 101,62,60,50,0,0,84,73,63,77,0,0,34,80,47,49, 0,0,0,0,110,51,35,80,36,64,66,82,86,53,58,74, 0,0,0,0,0,0,0,0,103,62,0,0,0,0,62,78, 0,0,0,0,0,0,0,0,66,74,0,0,0,0,0,0, 36,80,0,0,0,0,102,67,0,0,0,0,0,0,37,80, 122,54,0,0,0,0,0,0,38,80,0,0,93,52,48,67, 0,0,103,60,39,80,0,0,0,0,40,80,0,0,0,0, 41,80,53,71,0,0,87,53,0,0,0,0,0,0,0,0, 0,0,55,71,0,0,99,70,67,56,51,75,0,0,0,0, 0,0,0,0,0,0,73,105,42,80,104,62,43,80,53,50, 0,0,0,0,0,0,101,54,112,56,105,76,0,0,0,0, 38,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,112,77, 0,0,125,70,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,37,52,0,0,53,53,0,0, 44,80,0,0,0,0,45,80,59,78,0,0,61,77,104,65, 47,80,118,59,115,70,0,0,50,80,0,0,0,0,62,49, 95,56,0,0,94,56,102,48,0,0,0,0,75,79,74,79, 0,0,51,58,33,48,0,0,51,80,52,80,53,80,52,75, 54,80,0,0,114,56,103,48,114,75,0,0,124,53,0,0, 0,0,125,53,126,53,98,68,60,78,0,0,55,80,0,0, 0,0,56,80,0,0,0,0,57,80,0,0,0,0,0,0, 77,63,0,0,0,0,0,0,0,0,0,0,58,61,78,63, 62,80,0,0,60,80,0,0,61,80,88,53,0,0,0,0, 35,58,112,50,0,0,59,80,58,80,41,74,0,0,0,0, 0,0,0,0,70,59,69,59,62,66,63,80,85,73,103,64, 0,0,0,0,0,0,56,33,64,80,66,80,0,0,0,0, 0,0,101,66,97,78,74,48,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,65,80,62,50,0,0,68,54,0,0, 103,67,0,0,0,0,0,0,111,55,67,80,0,0,0,0, 0,0,36,71,0,0,0,0,0,0,0,0,0,0,107,52, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,80, 75,48,0,0,0,0,96,56,108,52,122,73,50,72,89,53, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 113,50,0,0,103,80,65,69,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,108,71,70,80,0,0, 0,0,0,0,60,72,0,0,98,78,0,0,45,63,0,0, 71,59,0,0,119,59,64,50,0,0,0,0,0,0,0,0, 0,0,81,68,0,0,0,0,34,67,74,80,0,0,0,0, 0,0,0,0,0,0,76,48,99,68,59,61,52,58,36,77, 0,0,78,66,0,0,63,50,0,0,73,80,0,0,62,77, 69,80,71,80,110,58,72,80,36,85,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,80, 0,0,0,0,0,0,0,0,0,0,83,80,81,80,0,0, 0,0,66,50,0,0,59,74,75,80,0,0,0,0,0,0, 0,0,79,80,115,56,0,0,0,0,72,59,0,0,0,0, 0,0,38,52,0,0,0,0,84,80,0,0,76,80,0,0, 0,0,99,78,0,0,120,59,0,0,77,80,0,0,82,80, 0,0,0,0,0,0,0,0,85,80,0,0,78,80,0,0, 0,0,33,54,0,0,77,48,0,0,0,0,34,54,65,50, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,37,85,0,0,86,80,110,73,116,56,0,0,0,0, 0,0,0,0,0,0,47,63,55,78,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,88,74,0,0,0,0, 56,55,37,66,100,50,0,0,0,0,0,0,0,0,0,0, 83,61,0,0,0,0,0,0,89,80,0,0,94,80,92,80, 0,0,0,0,87,80,0,0,0,0,47,66,90,80,0,0, 93,80,91,80,0,0,93,74,0,0,88,80,0,0,46,63, 0,0,115,75,95,80,96,80,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,36,61,109,80,0,0,0,0, 0,0,80,71,0,0,54,73,104,80,0,0,112,74,0,0, 54,50,0,0,0,0,0,0,108,80,0,0,0,0,0,0, 0,0,0,0,0,0,102,80,111,80,0,0,0,0,82,65, 0,0,68,56,0,0,92,71,0,0,71,96,0,0,110,80, 93,69,0,0,99,80,0,0,118,56,0,0,0,0,117,56, 97,80,0,0,0,0,0,0,0,0,90,60,0,0,105,80, 0,0,111,74,77,67,101,80,113,55,0,0,98,80,106,80, 100,80,81,78,107,80,65,79,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,102,54,0,0,0,0,112,55, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,112,80,0,0,0,0,0,0,113,80,117,80,78,48, 0,0,0,0,0,0,0,0,0,0,80,74,116,80,0,0, 0,0,0,0,0,0,115,80,119,80,0,0,0,0,0,0, 118,80,0,0,100,68,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,114,55,0,0,0,0,0,0,0,0, 0,0,0,0,120,80,0,0,0,0,0,0,0,0,0,0, 69,60,0,0,38,66,101,68,118,54,0,0,121,80,0,0, 0,0,0,0,0,0,54,53,0,0,0,0,122,80,0,0, 0,0,0,0,0,0,124,80,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,53,75,0,0,0,0,0,0,102,55, 0,0,0,0,0,0,0,0,0,0,0,0,49,59,119,72, 123,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,69,58,67,77,0,0,0,0,0,0,0,0, 126,80,35,81,125,80,68,58,0,0,125,61,0,0,0,0, 0,0,0,0,0,0,0,0,57,55,0,0,0,0,0,0, 36,81,0,0,0,0,79,54,0,0,0,0,0,0,33,81, 34,81,0,0,0,0,47,70,0,0,124,65,0,0,35,54, 0,0,0,0,0,0,77,75,37,81,0,0,0,0,0,0, 61,78,0,0,0,0,0,0,38,81,0,0,0,0,0,0, 0,0,41,81,0,0,39,81,0,0,78,65,0,0,0,0, 0,0,0,0,0,0,40,81,42,81,0,0,0,0,0,0, 0,0,0,0,0,0,44,81,0,0,0,0,0,0,43,81, 0,0,72,74,0,0,0,0,0,0,0,0,55,53,46,81, 47,81,0,0,47,50,0,0,0,0,0,0,0,0,45,81, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,60,0,0,50,81,49,81,48,81,0,0,121,75,0,0, 51,81,0,0,0,0,0,0,0,0,126,61,0,0,52,81, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 37,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 89,76,0,0,0,0,0,0,0,0,54,81,0,0,0,0, 53,81,56,81,55,81,0,0,0,0,57,81,58,81,116,48, 0,0,53,56,59,55,60,61,123,67,36,54,104,64,119,56, 0,0,110,57,60,81,72,76,70,69,0,0,121,59,0,0, 59,81,0,0,61,81,0,0,0,0,0,0,0,0,0,0, 94,69,0,0,117,51,0,0,0,0,0,0,0,0,0,0, 62,81,0,0,0,0,126,70,0,0,0,0,52,65,64,81, 65,81,44,72,120,56,59,79,66,81,0,0,0,0,38,54, 0,0,0,0,0,0,60,74,54,66,113,54,53,69,0,0, 0,0,0,0,115,55,0,0,0,0,0,0,67,81,0,0, 68,81,0,0,0,0,98,70,95,49,0,0,0,0,71,81, 125,58,0,0,70,81,70,58,0,0,72,81,110,102,73,81, 65,75,74,81,0,0,75,81,76,81,105,62,0,0,76,60, 0,0,0,0,0,0,0,0,0,0,0,0,39,52,0,0, 79,81,0,0,77,81,61,76,78,81,0,0,90,73,80,81, 81,81,82,81,95,69,0,0,0,0,0,0,86,81,84,81, 85,81,83,81,99,58,87,81,106,76,100,78,0,0,0,0, 0,0,0,0,0,0,88,81,0,0,0,0,0,0,0,0, 0,0,0,0,40,64,89,81,90,61,0,0,0,0,90,81, 0,0,124,67,63,78,96,69,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,69,82,0,0,0,0,0,0, 0,0,91,81,37,116,69,54,0,0,0,0,92,81,94,75, 0,0,0,0,0,0,0,0,104,61,124,66,0,0,94,81, 100,70,0,0,0,0,95,81,0,0,0,0,96,81,46,51, 0,0,0,0,0,0,97,81,39,54,0,0,76,70,122,49, 80,61,0,0,0,0,33,72,98,81,0,0,97,69,0,0, 0,0,79,63,99,81,0,0,44,74,90,64,34,52,0,0, 41,52,100,81,0,0,0,0,102,81,0,0,0,0,58,55, 0,0,0,0,101,81,0,0,0,0,115,78,0,0,0,0, 0,0,0,0,0,0,105,61,0,0,0,0,0,0,0,0, 0,0,0,0,61,72,76,74,0,0,103,81,0,0,120,77, 104,81,0,0,0,0,0,0,105,81,0,0,126,69,0,0, 0,0,106,81,0,0,0,0,41,64,126,58,116,55,107,81, 73,59,111,57,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,102,68,109,81,0,0,0,0,39,66,0,0,0,0, 111,58,110,81,111,81,48,65,0,0,108,81,0,0,0,0, 0,0,0,0,113,81,0,0,54,75,0,0,0,0,0,0, 0,0,100,57,0,0,0,0,112,81,0,0,0,0,0,0, 0,0,117,55,94,58,109,71,0,0,0,0,0,0,116,81, 114,81,0,0,0,0,0,0,0,0,123,73,106,62,123,81, 100,51,117,81,115,81,79,65,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,119,81,0,0,118,81,0,0,0,0, 0,0,68,51,0,0,0,0,0,0,96,55,124,81,45,78, 0,0,0,0,0,0,120,81,0,0,0,0,0,0,125,81, 122,81,0,0,121,81,0,0,0,0,0,0,0,0,0,0, 0,0,79,78,0,0,0,0,0,0,121,56,67,50,0,0, 0,0,116,78,0,0,0,0,0,0,0,0,0,0,117,61, 88,69,101,57,34,82,35,82,0,0,0,0,0,0,101,78, 0,0,0,0,43,79,37,82,0,0,0,0,0,0,122,56, 0,0,0,0,36,82,0,0,47,51,0,0,0,0,38,82, 0,0,86,75,0,0,60,68,0,0,38,77,0,0,89,74, 0,0,0,0,0,0,39,82,0,0,0,0,0,0,0,0, 85,112,0,0,0,0,48,70,0,0,40,82,42,52,51,76, 0,0,0,0,0,0,33,62,41,82,103,74,45,82,0,0, 42,64,42,82,80,54,0,0,43,82,43,52,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 46,55,46,82,0,0,47,82,0,0,0,0,48,82,49,82, 91,60,0,0,0,0,0,0,123,56,94,76,0,0,104,76, 119,70,0,0,0,0,113,74,50,82,0,0,51,82,0,0, 0,0,0,0,0,0,53,82,0,0,55,82,54,82,0,0, 0,0,0,0,0,0,56,82,61,50,76,75,0,0,124,58, 57,82,0,0,0,0,89,65,0,0,0,0,34,62,41,54, 0,0,58,82,0,0,0,0,0,0,0,0,0,0,0,0, 91,72,0,0,0,0,0,0,0,0,59,82,0,0,60,82, 0,0,61,82,0,0,0,0,0,0,0,0,62,82,36,73, 104,54,101,48,0,0,0,0,0,0,63,70,63,82,61,61, 0,0,105,64,0,0,65,82,64,82,35,62,97,56,67,82, 62,72,0,0,0,0,68,82,0,0,0,0,0,0,92,72, 52,66,110,66,40,54,0,0,0,0,110,70,49,67,0,0, 110,71,0,0,78,75,0,0,70,82,0,0,106,64,0,0, 0,0,0,0,0,0,0,0,53,55,0,0,0,0,71,82, 0,0,0,0,0,0,0,0,72,82,44,49,117,48,109,52, 0,0,40,66,81,53,113,77,0,0,75,82,55,50,0,0, 0,0,74,82,0,0,0,0,0,0,42,54,0,0,0,0, 76,82,0,0,113,76,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,77,82,0,0,82,78,0,0, 124,56,0,0,0,0,0,0,0,0,54,56,78,82,0,0, 0,0,0,0,0,0,80,82,79,82,0,0,95,63,57,49, 0,0,0,0,0,0,94,49,81,82,0,0,82,82,0,0, 0,0,55,56,0,0,0,0,83,82,0,0,0,0,0,0, 0,0,110,53,0,0,0,0,0,0,0,0,0,0,0,0, 50,59,84,82,0,0,0,0,0,0,0,0,116,75,53,58, 90,53,39,77,80,65,63,72,125,60,0,0,0,0,0,0, 0,0,0,0,71,61,0,0,104,60,117,60,0,0,118,61, 0,0,64,72,0,0,0,0,0,0,87,82,0,0,67,49, 81,65,125,56,69,56,103,54,0,0,0,0,91,82,33,67, 126,66,43,54,36,62,92,82,90,82,68,50,102,66,56,60, 75,59,38,49,0,0,0,0,112,51,102,57,74,59,0,0, 93,82,0,0,0,0,0,0,0,0,0,0,0,0,94,82, 0,0,73,53,70,51,0,0,0,0,0,0,103,57,72,53, 95,68,37,49,49,70,62,76,33,57,121,77,71,69,126,56, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,47,55,0,0,103,82,0,0,99,54,74,75,0,0, 0,0,0,0,0,0,0,0,93,72,0,0,0,0,102,82, 0,0,94,52,97,82,98,82,100,82,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,101,82,0,0,91,53,97,63, 0,0,45,74,99,82,95,82,99,56,0,0,96,82,0,0, 36,79,0,0,0,0,0,0,114,74,0,0,104,68,98,56, 112,57,0,0,0,0,0,0,104,82,0,0,0,0,93,70, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,108,82,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,126,60,0,0, 118,60,0,0,0,0,0,0,0,0,0,0,111,82,109,82, 0,0,35,76,0,0,106,82,115,82,110,82,0,0,0,0, 0,0,113,82,70,56,63,76,0,0,0,0,114,82,0,0, 0,0,0,0,116,82,0,0,118,82,0,0,0,0,0,0, 0,0,112,58,66,79,0,0,107,82,105,82,117,82,0,0, 112,82,0,0,0,0,0,0,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,82,0,0,35,83,122,82,0,0,0,0,126,82,0,0, 0,0,33,83,123,82,0,0,0,0,62,83,0,0,0,0, 105,58,49,51,0,0,0,0,0,0,0,0,121,82,0,0, 0,0,0,0,37,83,118,48,36,83,0,0,37,48,74,73, 34,83,0,0,124,82,0,0,0,0,119,82,125,82,72,58, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,38,83,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,48, 47,83,0,0,0,0,39,83,40,83,0,0,37,62,105,75, 0,0,0,0,0,0,45,83,44,83,0,0,0,0,0,0, 47,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 46,83,0,0,0,0,43,83,0,0,0,0,0,0,0,0, 0,0,0,0,52,49,0,0,54,58,48,63,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,41,83,98,69,0,0, 0,0,0,0,42,83,0,0,34,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,0,0,0,0,0, 0,0,0,0,0,0,0,0,52,83,35,77,0,0,39,62, 0,0,58,83,0,0,0,0,0,0,0,0,57,83,48,83, 0,0,0,0,0,0,0,0,67,66,0,0,49,83,0,0, 0,0,0,0,111,66,54,83,38,62,0,0,0,0,0,0, 0,0,0,0,51,83,0,0,0,0,100,76,0,0,0,0, 0,0,60,55,0,0,0,0,55,83,56,83,0,0,0,0, 0,0,0,0,53,83,59,83,0,0,0,0,0,0,0,0, 0,0,50,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,0,0,0,0,0, 0,0,65,83,70,83,0,0,66,83,0,0,61,83,0,0, 0,0,71,83,49,65,0,0,0,0,73,83,0,0,34,57, 63,83,125,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,67,83,60,83, 45,52,0,0,110,52,101,51,68,83,64,83,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,118,55,74,83,72,83, 83,65,74,53,44,54,0,0,69,83,0,0,116,54,0,0, 0,0,0,0,0,0,0,0,68,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,0,78,83,76,83,0,0,39,84,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,81,83,0,0,0,0,0,0,0,0,0,0, 75,83,0,0,79,83,0,0,0,0,77,83,0,0,0,0, 0,0,76,59,80,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,83,83,0,0,88,83, 0,0,0,0,0,0,86,83,85,83,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,50,67,0,0,0,0,69,50, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,82,83,0,0,84,83,40,62,51,49,0,0, 0,0,87,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,94,50, 0,0,0,0,0,0,0,0,0,0,98,83,0,0,124,62, 94,83,0,0,92,83,0,0,93,83,0,0,95,83,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 61,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,57,65,0,0,89,83,0,0,90,83,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,122,51,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,97,83,0,0,0,0,0,0,111,52,0,0, 100,83,96,83,99,83,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,46,74,0,0,0,0,0,0,85,70,0,0, 56,72,0,0,0,0,0,0,0,0,0,0,102,83,0,0, 0,0,0,0,0,0,0,0,101,83,69,51,0,0,0,0, 103,83,0,0,0,0,0,0,0,0,106,83,0,0,0,0, 0,0,0,0,105,83,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,104,83,0,0, 57,71,0,0,0,0,107,83,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,108,83,0,0,0,0,0,0, 0,0,0,0,110,83,0,0,109,83,0,0,0,0,0,0, 0,0,0,0,112,83,0,0,0,0,0,0,115,83,113,83, 111,83,114,83,0,0,0,0,0,0,0,0,116,83,0,0, 0,0,0,0,0,0,0,0,117,83,0,0,0,0,118,83, 0,0,119,83,0,0,0,0,0,0,120,83,69,81,0,0, 124,60,77,59,0,0,0,0,115,50,0,0,120,48,0,0, 0,0,68,67,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,121,83,0,0,36,58,0,0, 79,48,94,63,0,0,0,0,0,0,0,0,0,0,122,83, 71,56,0,0,0,0,113,57,0,0,124,83,123,83,0,0, 0,0,96,74,125,83,0,0,0,0,0,0,33,84,126,83, 0,0,34,84,0,0,35,84,0,0,119,55,0,0,0,0, 96,49,36,84,0,0,0,0,38,84,0,0,37,84,0,0, 0,0,0,0,40,84,0,0,0,0,90,69,0,0,0,0, 0,0,0,0,0,0,0,0,41,84,53,48,95,58,0,0, 0,0,0,0,0,0,61,55,0,0,0,0,79,67,0,0, 0,0,0,0,0,0,0,0,0,0,42,84,43,84,0,0, 0,0,45,84,0,0,0,0,0,0,0,0,46,84,0,0, 100,58,0,0,0,0,0,0,0,0,81,54,0,0,0,0, 55,75,0,0,0,0,0,0,44,84,47,84,65,58,35,57, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,84, 0,0,0,0,37,58,0,0,51,67,0,0,0,0,48,84, 90,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,52,84,0,0,0,0, 98,63,0,0,0,0,0,0,0,0,0,0,50,84,53,84, 0,0,63,55,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,54,84,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,84,0,0, 36,57,64,51,57,84,0,0,0,0,0,0,0,0,0,0, 58,84,0,0,0,0,0,0,0,0,0,0,59,84,0,0, 0,0,56,84,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,84,0,0, 0,0,60,84,0,0,0,0,61,84,0,0,0,0,0,0, 0,0,100,75,0,0,0,0,107,62,0,0,0,0,0,0, 63,84,64,84,62,84,0,0,66,84,0,0,0,0,0,0, 0,0,0,0,56,71,0,0,0,0,104,48,86,73,0,0, 0,0,67,84,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,125,62,0,0,0,0,57,60,0,0,93,71, 112,52,0,0,107,58,0,0,0,0,0,0,89,75,0,0, 50,70,0,0,0,0,120,55,79,66,0,0,0,0,0,0, 65,84,68,84,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,68,66,0,0,0,0,0,0,69,84, 0,0,0,0,0,0,70,84,0,0,0,0,0,0,72,84, 0,0,0,0,105,68,0,0,0,0,0,0,0,0,0,0, 46,52,0,0,0,0,0,0,0,0,70,54,97,49,115,74, 0,0,0,0,108,62,72,69,0,0,0,0,0,0,0,0, 102,58,0,0,0,0,78,84,0,0,0,0,61,74,93,78, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,50,74,84,0,0,0,0,0,0,0,0,0,0,58,65, 77,84,0,0,99,69,0,0,0,0,73,69,100,69,57,72, 77,68,0,0,0,0,0,0,73,58,0,0,0,0,0,0, 73,84,0,0,0,0,0,0,0,0,0,0,0,0,118,49, 0,0,54,69,0,0,0,0,0,0,0,0,75,84,0,0, 71,84,0,0,0,0,80,63,0,0,0,0,0,0,79,84, 0,0,0,0,0,0,0,0,78,61,0,0,0,0,0,0, 0,0,45,54,0,0,80,84,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,104,74,0,0,0,0,0,0,125,65,0,0,0,0, 0,0,0,0,70,68,0,0,0,0,82,84,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,79,75,0,0, 0,0,83,84,0,0,0,0,88,84,0,0,0,0,0,0, 0,0,47,74,0,0,0,0,0,0,0,0,87,84,81,84, 84,84,86,84,0,0,0,0,38,58,0,0,0,0,73,74, 0,0,0,0,0,0,89,84,0,0,69,67,0,0,0,0, 117,50,0,0,109,62,0,0,0,0,0,0,0,0,91,84, 0,0,90,84,0,0,104,57,0,0,92,84,94,84,93,84, 0,0,0,0,96,84,0,0,85,84,98,84,0,0,0,0, 0,0,0,0,97,84,95,84,0,0,0,0,0,0,0,0, 0,0,78,59,81,63,0,0,84,65,99,84,60,64,109,48, 100,71,0,0,0,0,0,0,0,0,100,84,0,0,101,84, 91,68,102,84,103,84,104,84,0,0,0,0,0,0,0,0, 105,84,0,0,0,0,0,0,0,0,0,0,0,0,81,74, 106,84,0,0,0,0,0,0,0,0,70,50,107,84,0,0, 0,0,0,0,0,0,60,77,48,51,0,0,73,82,72,61, 63,66,108,84,107,76,0,0,0,0,0,0,0,0,0,0, 52,76,0,0,0,0,110,84,0,0,103,66,0,0,55,69, 64,66,87,73,111,84,112,84,123,49,0,0,0,0,58,60, 113,84,0,0,0,0,0,0,0,0,80,48,114,84,0,0, 0,0,0,0,0,0,0,0,115,84,0,0,0,0,0,0, 0,0,0,0,98,49,0,0,0,0,113,52,96,70,116,74, 0,0,0,0,0,0,0,0,119,84,85,65,118,84,64,55, 0,0,0,0,91,75,117,84,0,0,101,69,121,84,0,0, 120,84,0,0,0,0,0,0,0,0,0,0,123,84,0,0, 122,84,0,0,0,0,124,49,0,0,124,84,41,62,126,84, 37,67,0,0,125,84,0,0,51,74,0,0,0,0,0,0, 0,0,119,61,91,69,0,0,0,0,0,0,33,85,0,0, 0,0,0,0,0,0,37,57,0,0,0,0,0,0,34,85, 33,71,94,72,81,76,0,0,0,0,0,0,0,0,0,0, 37,71,0,0,0,0,43,85,0,0,0,0,0,0,0,0, 0,0,56,53,0,0,0,0,69,77,0,0,0,0,47,76, 0,0,44,86,0,0,35,85,0,0,0,0,0,0,0,0, 0,0,38,85,0,0,69,66,0,0,0,0,56,75,0,0, 0,0,0,0,74,69,0,0,0,0,0,0,0,0,0,0, 39,85,0,0,0,0,0,0,0,0,0,0,0,0,101,75, 0,0,74,58,0,0,0,0,42,62,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,40,85,0,0,0,0,80,59, 0,0,79,59,0,0,0,0,0,0,0,0,57,48,72,56, 0,0,43,64,81,48,0,0,0,0,0,0,0,0,44,85, 45,85,0,0,42,85,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,56,49,47,52,0,0,41,85,0,0, 69,76,49,73,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,40,48,0,0,0,0,0,0, 0,0,121,48,0,0,0,0,0,0,81,59,0,0,82,48, 0,0,35,48,0,0,0,0,0,0,0,0,0,0,50,85, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,85, 0,0,0,0,0,0,0,0,0,0,0,0,60,76,0,0, 51,85,0,0,49,85,0,0,0,0,47,85,49,63,0,0, 0,0,0,0,0,0,46,85,0,0,0,0,0,0,90,74, 0,0,0,0,0,0,0,0,0,0,100,56,0,0,0,0, 0,0,0,0,0,0,55,85,56,85,0,0,0,0,0,0, 0,0,0,0,43,62,0,0,0,0,0,0,52,85,44,79, 0,0,0,0,0,0,0,0,76,71,0,0,0,0,54,85, 0,0,0,0,0,0,0,0,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,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 57,85,0,0,0,0,0,0,88,73,0,0,0,0,0,0, 58,85,0,0,53,85,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,59,76,0,0,0,0, 0,0,0,0,0,0,0,0,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,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 59,85,50,73,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,60,85,64,85,61,85,0,0,0,0,71,50, 63,85,0,0,0,0,0,0,0,0,0,0,0,0,59,60, 0,0,62,85,121,55,0,0,0,0,0,0,76,85,0,0, 0,0,0,0,0,0,0,0,69,85,66,85,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,67, 0,0,65,85,0,0,0,0,67,85,0,0,0,0,68,85, 0,0,0,0,0,0,0,0,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,85,71,85,0,0,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,52, 0,0,73,85,72,85,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,74,85,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 110,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 77,85,0,0,92,68,0,0,0,0,0,0,69,49,0,0, 75,85,0,0,0,0,0,0,78,85,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,79,85,0,0,82,85,0,0, 0,0,80,85,0,0,81,85,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,82,59,83,85, 0,0,0,0,38,57,84,85,0,0,122,59,56,66,0,0, 85,85,86,85,90,59,39,57,0,0,82,76,0,0,0,0, 0,0,40,53,73,56,87,85,88,51,0,0,0,0,88,85, 0,0,57,66,0,0,0,0,0,0,0,0,89,85,35,86, 0,0,90,85,0,0,91,85,0,0,0,0,92,85,0,0, 94,85,0,0,0,0,0,0,0,0,0,0,95,85,0,0, 0,0,96,85,0,0,112,66,0,0,39,49,105,60,66,48, 0,0,87,65,48,52,53,60,0,0,40,57,0,0,0,0, 0,0,0,0,0,0,102,69,0,0,33,61,49,52,104,67, 106,68,56,48,57,53,117,74,0,0,66,60,0,0,0,0, 82,53,107,64,60,60,40,77,97,85,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,92,53,0,0,75,58,0,0, 0,0,50,51,99,49,44,62,72,50,0,0,98,85,70,77, 0,0,0,0,0,0,0,0,0,0,73,61,0,0,0,0, 100,60,99,85,115,52,82,70,41,76,100,85,0,0,101,85, 0,0,0,0,89,73,0,0,0,0,0,0,103,85,0,0, 40,52,119,54,102,85,0,0,0,0,0,0,0,0,0,0, 0,0,50,52,0,0,50,63,107,85,33,59,0,0,73,50, 106,85,0,0,104,85,108,85,105,85,43,71,77,92,51,63, 0,0,109,85,0,0,0,0,64,78,0,0,110,85,0,0, 0,0,112,85,0,0,126,67,111,85,0,0,35,64,0,0, 123,59,0,0,0,0,0,0,80,66,119,60,0,0,117,73, 108,64,0,0,77,60,113,85,45,62,114,85,115,85,83,48, 58,66,82,63,0,0,116,85,51,70,46,62,0,0,47,62, 0,0,117,85,0,0,0,0,109,64,0,0,0,0,0,0, 48,62,0,0,0,0,0,0,0,0,0,0,118,85,0,0, 119,85,0,0,96,76,0,0,0,0,0,0,120,85,0,0, 0,0,0,0,0,0,33,116,0,0,0,0,0,0,34,61, 0,0,0,0,0,0,0,0,0,0,0,0,121,85,122,85, 92,60,44,63,116,70,84,63,120,72,34,71,73,54,123,85, 0,0,0,0,0,0,111,53,124,85,0,0,126,54,0,0, 79,70,48,50,0,0,83,59,125,85,34,86,33,86,125,54, 0,0,126,85,0,0,56,69,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,48,66,0,0,75,69,72,60, 0,0,0,0,88,65,122,77,0,0,0,0,0,0,0,0, 0,0,0,0,36,86,0,0,37,86,86,70,0,0,51,59, 0,0,0,0,0,0,0,0,39,86,0,0,0,0,40,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,41,86,0,0,0,0,0,0,116,52,42,86, 0,0,0,0,43,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,44,50, 0,0,0,0,0,0,0,0,0,0,0,0,59,65,100,52, 0,0,45,86,40,76,0,0,0,0,0,0,0,0,82,66, 0,0,89,51,0,0,0,0,47,86,49,86,95,52,0,0, 0,0,46,86,48,86,0,0,51,86,0,0,0,0,0,0, 0,0,0,0,0,0,50,86,0,0,52,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,53,86, 0,0,0,0,0,0,0,0,0,0,0,0,61,70,46,54, 0,0,0,0,0,0,0,0,0,0,0,0,101,50,54,86, 59,86,0,0,0,0,57,86,0,0,119,74,118,74,0,0, 0,0,0,0,0,0,0,0,103,69,0,0,0,0,0,0, 56,86,84,61,0,0,55,86,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,114,63,0,0,0,0, 0,0,60,86,0,0,0,0,106,58,0,0,0,0,66,86, 0,0,0,0,67,86,61,86,51,51,62,86,71,86,70,86, 69,86,65,86,0,0,0,0,0,0,64,86,0,0,0,0, 68,86,0,0,0,0,0,0,0,0,0,0,0,0,120,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,75,86,72,86,0,0,74,86,0,0,114,77,0,0, 73,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,63,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,115,63, 0,0,0,0,76,86,0,0,0,0,55,58,0,0,0,0, 0,0,77,86,0,0,0,0,78,86,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 81,86,0,0,80,86,0,0,0,0,79,86,0,0,0,0, 0,0,104,69,58,86,0,0,0,0,0,0,87,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,83,86,0,0,0,0,0,0,0,0, 82,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,84,86,0,0,85,86,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,88,86,0,0,0,0, 102,78,0,0,89,86,86,86,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,86, 0,0,0,0,96,52,91,86,0,0,0,0,0,0,0,0, 93,86,92,86,0,0,0,0,94,86,0,0,0,0,0,0, 0,0,95,86,0,0,110,64,35,61,0,0,0,0,100,61, 0,0,99,65,0,0,41,57,56,58,42,57,112,53,0,0, 0,0,96,86,0,0,0,0,57,58,0,0,0,0,74,56, 97,86,38,76,67,71,98,86,0,0,43,57,0,0,0,0, 0,0,44,52,0,0,39,67,82,54,0,0,0,0,0,0, 84,59,91,73,0,0,0,0,65,72,0,0,0,0,0,0, 0,0,99,86,117,52,0,0,0,0,0,0,0,0,102,86, 0,0,0,0,0,0,0,0,33,68,0,0,0,0,101,86, 100,86,103,86,0,0,107,68,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,99,63,0,0,0,0,0,0,0,0, 0,0,85,59,0,0,74,64,0,0,83,66,34,53,0,0, 0,0,34,68,0,0,0,0,104,86,105,86,111,62,0,0, 0,0,0,0,0,0,57,75,0,0,0,0,108,86,0,0, 0,0,107,86,106,86,125,73,0,0,115,86,0,0,0,0, 0,0,0,0,90,75,0,0,109,86,0,0,0,0,0,0, 0,0,0,0,111,86,107,75,0,0,110,86,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,112,86,0,0,40,72, 113,86,62,74,114,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, 51,52,63,74,47,71,116,86,117,86,0,0,44,57,52,52, 118,86,56,56,68,77,41,77,118,52,120,86,0,0,35,68, 0,0,45,57,49,62,0,0,0,0,95,72,0,0,0,0, 50,62,0,0,0,0,0,0,0,0,120,61,0,0,0,0, 0,0,0,0,0,0,108,68,121,74,57,69,0,0,0,0, 46,57,0,0,92,73,0,0,0,0,0,0,121,86,0,0, 0,0,0,0,0,0,0,0,89,69,66,58,0,0,0,0, 0,0,75,56,0,0,109,68,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,67,48,110,61,47,57,71,77,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,86, 123,86,81,71,0,0,0,0,0,0,0,0,124,86,119,78, 45,79,0,0,0,0,0,0,0,0,126,86,125,86,0,0, 0,0,71,51,0,0,0,0,33,87,0,0,0,0,0,0, 36,87,37,87,0,0,35,87,0,0,64,73,51,62,39,87, 38,87,34,87,0,0,0,0,0,0,0,0,40,87,41,87, 0,0,0,0,42,87,0,0,0,0,0,0,45,87,43,87, 0,0,44,87,46,87,0,0,100,49,110,68,47,87,0,0, 122,55,118,50,54,71,0,0,48,87,123,70,0,0,91,74, 0,0,49,87,46,79,0,0,0,0,0,0,0,0,50,87, 64,74,53,87,33,80,49,80,0,0,48,60,117,70,54,87, 0,0,93,53,36,68,122,48,55,87,38,74,48,57,0,0, 0,0,80,67,0,0,0,0,0,0,111,68,0,0,0,0, 0,0,0,0,0,0,111,76,57,56,76,56,0,0,56,87, 0,0,0,0,0,0,57,87,0,0,63,87,0,0,101,60, 0,0,0,0,0,0,37,68,0,0,47,54,58,87,0,0, 0,0,0,0,43,73,0,0,70,67,0,0,0,0,59,87, 0,0,0,0,0,0,0,0,0,0,0,0,60,87,0,0, 48,54,0,0,61,87,0,0,62,87,0,0,0,0,64,87, 0,0,118,69,0,0,0,0,65,87,66,87,0,0,67,87, 0,0,0,0,52,87,51,87,0,0,0,0,0,0,68,87, 65,55,0,0,0,0,0,0,39,73,0,0,0,0,76,58, 55,73,38,68,75,73,69,87,0,0,0,0,52,62,70,49, 0,0,70,87,0,0,0,0,0,0,71,87,0,0,114,76, 0,0,0,0,96,72,0,0,0,0,74,87,125,49,44,64, 73,87,72,87,66,55,84,66,0,0,78,87,76,87,0,0, 75,87,39,78,101,56,0,0,0,0,0,0,121,61,77,87, 76,69,62,61,0,0,0,0,0,0,64,70,81,87,80,87, 0,0,0,0,0,0,0,0,79,87,0,0,82,87,102,56, 0,0,0,0,0,0,0,0,0,0,0,0,83,87,124,73, 91,61,0,0,0,0,84,87,121,72,0,0,0,0,0,0, 0,0,65,70,39,68,0,0,0,0,0,0,0,0,48,69, 0,0,0,0,85,87,43,53,0,0,0,0,0,0,0,0, 0,0,52,63,0,0,44,73,0,0,0,0,0,0,0,0, 0,0,0,0,119,52,38,71,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,86,87,86,59,58,75,59,75, 0,0,0,0,126,49,91,87,0,0,0,0,105,67,0,0, 0,0,0,0,88,87,0,0,0,0,0,0,0,0,0,0, 0,0,119,50,0,0,0,0,0,0,0,0,45,88,90,87, 0,0,0,0,0,0,48,71,0,0,0,0,89,87,0,0, 0,0,87,87,0,0,122,57,0,0,93,87,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,99,87,105,87,97,87,0,0, 92,69,0,0,0,0,102,87,93,73,0,0,0,0,96,87, 0,0,101,87,103,78,87,59,0,0,0,0,85,66,94,87, 0,0,0,0,0,0,94,53,104,87,45,64,101,49,98,87, 120,50,103,87,0,0,0,0,0,0,49,54,0,0,100,87, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 106,87,0,0,0,0,0,0,0,0,0,0,0,0,108,87, 118,87,116,87,0,0,0,0,113,87,0,0,0,0,0,0, 112,87,120,78,0,0,114,87,0,0,0,0,50,54,0,0, 49,57,0,0,0,0,122,61,0,0,0,0,0,0,121,87, 107,87,0,0,0,0,0,0,0,0,111,87,95,87,0,0, 122,50,115,87,117,87,81,67,0,0,0,0,40,58,56,50, 109,87,120,87,119,87,51,54,0,0,41,66,102,51,0,0, 0,0,0,0,0,0,67,55,0,0,110,87,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,87, 0,0,125,87,33,88,0,0,0,0,0,0,0,0,61,60, 0,0,39,88,112,68,123,87,0,0,0,0,0,0,0,0, 37,88,0,0,121,50,0,0,35,88,36,88,0,0,0,0, 126,87,34,88,0,0,0,0,0,0,103,56,42,77,0,0, 0,0,53,52,0,0,0,0,89,49,38,88,0,0,58,71, 45,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 97,72,92,87,44,88,48,88,101,76,0,0,41,88,0,0, 0,0,0,0,105,69,46,88,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,112,62,47,88,87,70,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,79, 0,0,43,88,0,0,0,0,0,0,0,0,49,88,0,0, 123,57,0,0,75,64,0,0,0,0,84,48,42,88,40,88, 0,0,90,65,0,0,0,0,0,0,124,87,52,59,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,70,66,61,88, 0,0,91,65,56,88,0,0,53,88,54,88,0,0,102,60, 57,88,60,88,0,0,0,0,0,0,0,0,55,88,37,61, 0,0,58,88,0,0,0,0,52,88,0,0,124,76,123,76, 0,0,0,0,0,0,62,88,63,88,85,48,0,0,0,0, 0,0,0,0,0,0,51,88,0,0,0,0,0,0,0,0, 114,54,38,48,0,0,0,0,0,0,54,52,0,0,59,88, 0,0,0,0,0,0,0,0,0,0,67,88,66,88,0,0, 0,0,0,0,71,88,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,72,88,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,70,88,73,88,65,88,69,88,0,0,0,0, 74,88,0,0,75,88,0,0,0,0,64,88,124,59,0,0, 68,88,86,66,50,57,50,88,53,63,0,0,0,0,0,0, 0,0,88,88,0,0,105,74,0,0,0,0,78,88,79,88, 80,88,0,0,0,0,87,88,0,0,86,88,0,0,0,0, 125,75,55,52,0,0,84,88,0,0,69,55,52,51,0,0, 0,0,81,88,0,0,0,0,56,78,83,88,86,48,85,88, 0,0,76,88,82,88,89,88,68,55,77,88,0,0,0,0, 0,0,0,0,0,0,0,0,93,77,0,0,0,0,0,0, 43,77,0,0,0,0,0,0,0,0,92,88,0,0,0,0, 96,88,0,0,0,0,0,0,126,65,0,0,121,78,97,88, 0,0,0,0,94,88,0,0,91,88,0,0,0,0,90,88, 95,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,48,74,0,0,0,0,52,70,0,0,70,55, 0,0,98,88,93,88,0,0,99,88,0,0,0,0,0,0, 123,55,0,0,0,0,0,0,49,50,0,0,0,0,0,0, 107,88,0,0,0,0,0,0,56,52,0,0,0,0,0,0, 0,0,105,88,0,0,0,0,106,88,41,58,104,88,102,88, 101,88,108,88,100,88,110,88,0,0,0,0,123,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,0, 0,0,112,88,0,0,0,0,111,88,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 40,68,0,0,115,88,0,0,113,88,103,88,124,55,0,0, 114,88,0,0,118,88,117,88,119,88,116,88,120,88,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,121,88,122,88, 106,74,0,0,124,88,123,88,63,61,0,0,46,64,102,50, 124,50,0,0,125,88,0,0,63,48,0,0,0,0,0,0, 76,64,126,88,0,0,67,108,33,89,97,55,0,0,34,89, 0,0,0,0,0,0,0,0,111,64,0,0,0,0,0,0, 35,89,0,0,0,0,0,0,36,89,58,53,37,89,0,0, 38,89,39,89,87,66,0,0,0,0,0,0,77,56,0,0, 0,0,97,76,0,0,0,0,0,0,60,75,106,61,40,89, 0,0,0,0,0,0,0,0,0,0,112,64,61,110,98,72, 0,0,106,60,0,0,77,58,41,89,0,0,0,0,0,0, 0,0,71,66,0,0,39,74,0,0,0,0,113,66,0,0, 0,0,44,89,0,0,0,0,42,89,0,0,45,89,0,0, 0,0,43,89,0,0,0,0,0,0,0,0,46,89,0,0, 0,0,0,0,0,0,0,0,49,74,0,0,0,0,55,48, 0,0,0,0,0,0,0,0,94,73,0,0,0,0,99,72, 0,0,0,0,47,89,0,0,50,89,53,62,59,53,0,0, 48,89,55,89,54,62,0,0,0,0,0,0,0,0,49,89, 68,71,0,0,0,0,0,0,0,0,0,0,0,0,94,77, 51,89,52,89,56,89,106,69,53,89,51,57,94,64,0,0, 0,0,70,89,52,72,0,0,114,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,100,72,45,90,0,0,0,0,0,0,0,0,122,74, 0,0,0,0,0,0,113,68,0,0,0,0,0,0,117,75, 0,0,59,89,33,50,106,67,0,0,0,0,0,0,0,0, 68,89,0,0,0,0,52,67,62,89,69,89,64,89,71,89, 67,89,0,0,66,89,111,71,0,0,60,89,125,50,58,89, 113,53,115,66,54,89,0,0,0,0,57,89,52,57,91,64, 0,0,55,62,65,89,82,71,0,0,0,0,114,53,72,51, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,103,51,33,63,73,89,78,89,0,0,74,89, 0,0,125,55,0,0,79,89,34,59,105,57,0,0,0,0, 0,0,0,0,0,0,0,0,38,61,61,89,0,0,125,59, 76,89,0,0,0,0,0,0,0,0,88,59,77,89,68,48, 0,0,0,0,72,89,0,0,0,0,0,0,0,0,41,68, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,53, 0,0,0,0,0,0,0,0,0,0,52,54,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,75,89,39,48,0,0, 0,0,67,58,0,0,0,0,0,0,54,63,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,68,0,0,0,0,84,72,81,89,94,65,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,66, 0,0,0,0,43,59,82,89,0,0,84,89,80,89,0,0, 0,0,0,0,0,0,97,74,0,0,61,68,0,0,0,0, 0,0,0,0,92,65,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,123,74,78,60,96,89, 0,0,95,89,0,0,0,0,120,63,0,0,0,0,0,0, 126,55,0,0,0,0,0,0,89,89,57,62,0,0,0,0, 104,70,49,71,0,0,0,0,0,0,0,0,87,89,0,0, 0,0,93,65,0,0,0,0,0,0,0,0,120,60,92,89, 0,0,0,0,56,62,0,0,86,89,91,89,0,0,0,0, 83,71,0,0,0,0,0,0,85,89,0,0,33,55,0,0, 0,0,93,51,0,0,0,0,0,0,93,89,43,78,78,58, 53,67,90,89,0,0,92,64,0,0,53,57,100,63,102,49, 60,65,88,89,69,53,0,0,0,0,0,0,0,0,0,0, 71,55,0,0,79,68,94,89,0,0,0,0,0,0,0,0, 0,0,95,65,0,0,0,0,97,89,0,0,99,89,0,0, 0,0,55,66,105,89,0,0,100,89,0,0,0,0,102,89, 0,0,0,0,0,0,0,0,0,0,65,73,115,68,0,0, 103,89,0,0,0,0,0,0,44,77,0,0,0,0,0,0, 72,77,57,52,0,0,0,0,0,0,0,0,0,0,46,48, 0,0,101,89,0,0,0,0,0,0,0,0,0,0,98,89, 0,0,0,0,0,0,0,0,120,52,0,0,0,0,0,0, 0,0,0,0,103,49,0,0,104,89,0,0,0,0,0,0, 73,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,108,89,0,0,0,0,0,0, 0,0,0,0,0,0,59,66,0,0,115,89,0,0,0,0, 0,0,109,89,0,0,0,0,106,89,113,89,0,0,0,0, 0,0,0,0,83,89,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,110,89,0,0,114,89,0,0, 0,0,0,0,66,72,107,69,0,0,0,0,0,0,0,0, 0,0,0,0,107,89,0,0,111,89,0,0,0,0,0,0, 72,55,0,0,0,0,0,0,113,58,0,0,0,0,0,0, 93,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,119,89,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,38,69,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,116,89,0,0,96,75, 0,0,0,0,0,0,0,0,0,0,117,89,0,0,0,0, 0,0,0,0,0,0,0,0,118,89,0,0,78,76,0,0, 34,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,98,55,0,0,0,0,0,0,0,0,125,89,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 53,59,122,89,0,0,121,89,0,0,0,0,0,0,0,0, 50,71,0,0,0,0,0,0,53,70,0,0,0,0,0,0, 0,0,0,0,49,69,123,89,0,0,0,0,0,0,124,89, 0,0,111,73,0,0,69,71,35,59,0,0,113,64,0,0, 80,75,0,0,0,0,0,0,0,0,0,0,0,0,120,89, 0,0,37,90,126,89,0,0,0,0,0,0,0,0,74,77, 39,90,0,0,0,0,35,90,0,0,36,90,0,0,0,0, 0,0,0,0,0,0,96,65,0,0,0,0,0,0,0,0, 34,90,0,0,63,89,0,0,0,0,0,0,38,90,0,0, 33,90,0,0,0,0,0,0,0,0,0,0,43,90,44,90, 39,69,46,90,0,0,0,0,36,59,41,90,0,0,0,0, 0,0,0,0,60,53,0,0,0,0,47,90,0,0,40,90, 51,90,0,0,50,90,0,0,49,90,0,0,0,0,0,0, 52,90,0,0,0,0,54,90,113,62,0,0,53,90,0,0, 0,0,0,0,0,0,57,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,55,90,0,0, 0,0,0,0,56,90,112,89,0,0,0,0,0,0,0,0, 0,0,59,90,58,90,0,0,0,0,0,0,0,0,0,0, 73,51,60,90,48,90,0,0,0,0,89,59,0,0,0,0, 0,0,0,0,61,90,62,90,64,90,63,90,65,90,126,50, 0,0,54,57,0,0,0,0,124,74,47,64,0,0,0,0, 0,0,0,0,0,0,78,56,0,0,0,0,67,90,0,0, 0,0,0,0,0,0,70,90,0,0,82,73,0,0,95,53, 0,0,0,0,0,0,69,90,68,90,84,71,71,90,53,54, 0,0,0,0,0,0,73,90,72,90,0,0,0,0,0,0, 58,52,54,59,0,0,0,0,88,70,0,0,0,0,0,0, 0,0,0,0,73,55,0,0,0,0,0,0,116,63,0,0, 74,90,0,0,48,64,40,69,0,0,95,73,75,90,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 76,90,77,90,0,0,0,0,0,0,56,74,93,85,70,64, 0,0,0,0,76,73,0,0,88,58,0,0,101,72,67,72, 0,0,0,0,0,0,0,0,0,0,77,69,0,0,65,78, 0,0,79,90,80,60,0,0,0,0,80,90,0,0,54,48, 0,0,0,0,84,54,77,64,0,0,96,73,0,0,0,0, 0,0,81,90,66,59,71,67,0,0,91,59,55,63,0,0, 0,0,0,0,0,0,0,0,0,0,82,90,0,0,125,74, 0,0,0,0,119,49,92,59,0,0,0,0,0,0,85,90, 0,0,83,90,86,90,57,78,84,90,0,0,0,0,0,0, 0,0,123,64,87,90,0,0,0,0,50,66,0,0,0,0, 88,90,0,0,0,0,0,0,0,0,122,52,0,0,90,90, 0,0,89,90,0,0,0,0,0,0,0,0,91,90,92,90, 123,52,0,0,0,0,124,70,54,67,108,53,93,59,97,65, 0,0,0,0,92,61,48,48,0,0,0,0,0,0,93,90, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 34,50,97,90,0,0,0,0,0,0,0,0,0,0,0,0, 55,57,96,90,0,0,0,0,43,58,58,62,0,0,0,0, 95,90,0,0,59,62,0,0,64,76,42,58,0,0,0,0, 0,0,87,48,78,64,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,102,90,0,0,0,0,49,64,71,49,0,0, 0,0,0,0,0,0,85,61,0,0,102,75,114,58,0,0, 0,0,0,0,0,0,60,62,0,0,39,64,0,0,0,0, 0,0,0,0,101,90,99,90,100,90,0,0,0,0,0,0, 0,0,0,0,107,67,0,0,0,0,38,91,0,0,106,90, 126,59,56,57,104,90,0,0,0,0,0,0,0,0,105,90, 0,0,56,63,0,0,0,0,0,0,103,90,0,0,0,0, 47,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,108,90,107,90,112,90,0,0,0,0, 113,90,0,0,109,90,0,0,34,51,110,90,111,90,85,72, 0,0,0,0,0,0,0,0,97,73,74,55,114,90,0,0, 0,0,0,0,50,64,0,0,61,62,0,0,0,0,0,0, 82,67,0,0,0,0,0,0,0,0,0,0,0,0,71,54, 0,0,115,90,119,90,0,0,0,0,75,50,116,90,118,90, 0,0,0,0,0,0,0,0,117,90,0,0,0,0,107,61, 0,0,0,0,0,0,0,0,72,67,69,48,120,90,0,0, 0,0,0,0,0,0,121,90,0,0,0,0,0,0,0,0, 42,68,0,0,0,0,0,0,113,78,0,0,0,0,0,0, 0,0,67,59,0,0,0,0,107,74,0,0,0,0,0,0, 0,0,0,0,61,75,0,0,0,0,0,0,34,91,123,90, 0,0,0,0,126,90,0,0,125,90,0,0,0,0,122,90, 0,0,0,0,33,91,0,0,0,0,94,70,0,0,124,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,35,91,0,0,0,0,108,61, 36,91,0,0,75,77,120,71,0,0,0,0,37,91,0,0, 0,0,0,0,0,0,0,0,39,91,0,0,0,0,40,91, 0,0,0,0,0,0,0,0,0,0,0,0,41,91,0,0, 74,54,72,49,57,57,42,91,0,0,43,91,113,61,98,65, 0,0,0,0,88,82,62,65,61,65,88,66,71,58,0,0, 0,0,114,80,0,0,0,0,0,0,0,0,110,55,45,77, 0,0,126,74,0,0,126,73,0,0,44,91,0,0,0,0, 0,0,0,0,115,58,63,68,45,91,47,79,0,0,0,0, 0,0,62,75,0,0,43,68,46,91,124,52,0,0,0,0, 0,0,0,0,0,0,0,0,47,91,48,91,90,76,0,0, 36,76,118,75,92,75,37,59,50,91,0,0,0,0,107,60, 0,0,0,0,81,75,0,0,52,91,55,91,54,91,0,0, 121,52,0,0,0,0,96,53,0,0,51,91,0,0,53,91, 0,0,0,0,0,0,0,0,56,91,0,0,0,0,121,63, 0,0,0,0,0,0,0,0,123,77,73,48,96,58,60,66, 0,0,93,60,0,0,0,0,115,62,0,0,0,0,59,91, 0,0,0,0,78,69,0,0,57,91,43,66,58,91,114,62, 93,76,60,91,61,91,104,77,0,0,0,0,0,0,0,0, 66,91,0,0,0,0,58,57,0,0,85,71,63,91,108,69, 94,90,98,90,0,0,79,53,0,0,71,71,0,0,0,0, 0,0,0,0,65,91,0,0,62,62,68,72,0,0,0,0, 0,0,0,0,0,0,71,91,0,0,122,72,0,0,62,91, 0,0,68,91,67,91,0,0,0,0,0,0,79,64,0,0, 0,0,0,0,0,0,109,75,0,0,83,78,0,0,0,0, 103,75,0,0,76,50,94,59,0,0,0,0,72,79,70,91, 117,63,0,0,0,0,0,0,69,91,0,0,0,0,64,91, 0,0,0,0,0,0,0,0,0,0,79,56,0,0,0,0, 0,0,76,91,74,91,0,0,77,50,72,91,78,91,84,91, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,66, 0,0,0,0,65,74,0,0,86,91,0,0,0,0,0,0, 34,73,0,0,0,0,0,0,85,91,112,71,63,75,59,52, 0,0,119,64,64,61,0,0,0,0,0,0,83,68,0,0, 46,77,0,0,0,0,81,91,80,91,0,0,0,0,0,0, 82,91,0,0,79,91,0,0,0,0,87,91,0,0,77,91, 0,0,0,0,75,91,0,0,83,91,73,91,0,0,108,67, 0,0,120,76,70,60,116,58,0,0,0,0,0,0,0,0, 0,0,58,58,0,0,0,0,111,75,65,51,0,0,0,0, 78,68,74,70,73,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,0, 0,0,114,64,0,0,0,0,52,64,42,55,0,0,0,0, 0,0,0,0,0,0,0,0,89,91,0,0,0,0,59,57, 124,51,0,0,0,0,0,0,0,0,0,0,0,0,91,91, 116,51,97,91,0,0,0,0,0,0,0,0,0,0,0,0, 94,91,0,0,115,64,0,0,0,0,0,0,75,51,44,58, 0,0,0,0,74,51,79,58,0,0,0,0,92,91,101,55, 75,55,109,69,0,0,0,0,90,91,0,0,70,48,0,0, 0,0,0,0,0,0,93,91,95,91,0,0,77,54,44,55, 0,0,60,52,75,53,0,0,0,0,0,0,0,0,98,91, 0,0,0,0,121,58,113,75,0,0,55,59,0,0,0,0, 0,0,99,91,0,0,0,0,0,0,88,91,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,91,0,0,51,50,100,91,0,0,0,0, 0,0,0,0,0,0,0,0,117,91,101,91,0,0,66,78, 0,0,108,91,0,0,95,71,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,116,91,0,0,103,91,0,0,0,0, 0,0,52,48,105,91,0,0,0,0,60,57,0,0,0,0, 0,0,107,91,0,0,106,91,0,0,102,91,113,91,0,0, 63,62,0,0,0,0,0,0,109,84,104,56,124,77,0,0, 0,0,0,0,0,0,104,91,0,0,116,68,35,51,45,58, 0,0,96,91,0,0,112,91,97,51,0,0,0,0,110,91, 114,91,0,0,109,91,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,126,52,0,0,50,92,0,0,0,0,73,76, 119,91,125,52,0,0,126,91,0,0,0,0,0,0,0,0, 64,75,0,0,33,92,35,92,0,0,39,92,121,91,0,0, 42,67,0,0,0,0,0,0,0,0,111,69,43,92,124,91, 0,0,40,92,0,0,0,0,0,0,34,92,0,0,0,0, 0,0,0,0,0,0,0,0,57,63,44,92,0,0,0,0, 51,64,0,0,0,0,0,0,0,0,0,0,0,0,42,92, 61,52,0,0,0,0,0,0,0,0,0,0,80,79,118,91, 0,0,0,0,38,92,88,48,0,0,0,0,120,91,0,0, 0,0,58,76,125,91,34,63,71,68,115,91,0,0,0,0, 37,92,0,0,0,0,0,0,0,0,0,0,0,0,122,63, 47,92,113,51,33,56,0,0,0,0,0,0,0,0,49,92, 122,91,48,92,0,0,41,92,123,91,0,0,45,92,0,0, 46,92,0,0,0,0,0,0,0,0,0,0,63,92,0,0, 0,0,0,0,78,70,0,0,36,92,0,0,0,0,59,92, 0,0,0,0,0,0,61,92,0,0,88,68,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 76,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,118,73,56,92,74,66,0,0,0,0,0,0,62,92, 63,65,0,0,53,92,66,92,65,92,0,0,111,70,64,92, 106,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 68,92,55,92,0,0,72,54,58,92,93,61,0,0,0,0, 0,0,96,71,60,92,75,54,0,0,52,92,54,92,51,92, 0,0,0,0,48,79,90,51,57,92,0,0,0,0,67,92, 53,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 103,58,0,0,0,0,0,0,93,49,0,0,0,0,84,92, 0,0,0,0,49,79,87,92,0,0,0,0,0,0,0,0, 0,0,58,63,86,92,0,0,0,0,0,0,85,92,0,0, 0,0,0,0,0,0,0,0,0,0,82,92,0,0,0,0, 0,0,0,0,0,0,0,0,70,92,0,0,0,0,99,92, 69,92,0,0,88,92,0,0,0,0,0,0,0,0,0,0, 0,0,80,92,0,0,0,0,75,92,72,92,0,0,73,92, 0,0,81,92,0,0,0,0,0,0,106,75,0,0,0,0, 78,92,61,57,72,68,100,65,76,92,0,0,71,92,0,0, 0,0,74,92,0,0,0,0,0,0,0,0,77,77,34,116, 0,0,0,0,0,0,79,92,89,92,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,97,92,90,92,0,0, 0,0,103,92,0,0,101,92,0,0,0,0,0,0,0,0, 96,92,0,0,0,0,0,0,0,0,0,0,0,0,95,92, 0,0,80,68,0,0,101,65,0,0,93,92,0,0,0,0, 91,92,0,0,0,0,98,92,0,0,0,0,0,0,0,0, 104,92,117,72,110,92,0,0,0,0,0,0,0,0,0,0, 105,92,108,92,102,92,0,0,0,0,116,67,0,0,56,73, 0,0,92,92,0,0,0,0,100,92,64,62,0,0,79,76, 120,92,107,92,0,0,0,0,0,0,0,0,0,0,34,56, 35,50,95,51,0,0,0,0,83,92,0,0,0,0,0,0, 0,0,0,0,0,0,65,62,112,92,0,0,119,92,121,60, 114,51,0,0,0,0,46,67,0,0,0,0,0,0,0,0, 0,0,0,0,109,92,0,0,0,0,114,92,118,92,0,0, 0,0,54,54,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,76,53,116,92, 0,0,0,0,0,0,0,0,0,0,33,53,0,0,75,70, 115,92,0,0,0,0,0,0,117,92,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 111,92,0,0,0,0,0,0,0,0,0,0,113,92,0,0, 0,0,0,0,0,0,0,0,0,0,96,51,73,67,0,0, 0,0,0,0,124,92,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,122,92,105,56,0,0,121,92,0,0, 0,0,0,0,0,0,0,0,0,0,33,93,0,0,0,0, 0,0,0,0,48,73,0,0,0,0,0,0,123,92,0,0, 125,92,126,92,0,0,0,0,0,0,0,0,0,0,0,0, 44,93,0,0,40,93,0,0,110,69,0,0,0,0,0,0, 0,0,39,93,0,0,0,0,0,0,0,0,38,93,0,0, 0,0,35,93,0,0,0,0,0,0,0,0,0,0,106,92, 37,93,36,93,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,93, 0,0,38,79,0,0,0,0,0,0,0,0,0,0,0,0, 45,93,123,54,0,0,0,0,41,93,43,93,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,39,72,0,0, 46,93,0,0,0,0,0,0,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,93,47,93,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,77,48,93,0,0,0,0,0,0,0,0, 94,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 51,93,0,0,0,0,0,0,52,93,0,0,0,0,0,0, 0,0,0,0,0,0,53,49,0,0,54,93,103,55,33,60, 0,0,85,54,0,0,0,0,0,0,36,50,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 95,77,0,0,0,0,0,0,0,0,56,93,55,93,58,93, 61,53,0,0,0,0,86,54,62,52,0,0,0,0,0,0, 0,0,61,93,0,0,0,0,0,0,60,93,0,0,62,93, 0,0,0,0,78,50,0,0,55,67,0,0,63,93,0,0, 0,0,63,52,65,93,0,0,0,0,0,0,0,0,64,93, 0,0,66,93,0,0,0,0,0,0,67,93,0,0,68,93, 95,59,53,64,33,58,0,0,112,73,0,0,0,0,98,74, 68,79,0,0,0,0,0,0,0,0,117,59,0,0,0,0, 0,0,80,58,114,78,0,0,0,0,0,0,69,93,70,93, 0,0,96,59,0,0,0,0,0,0,71,93,72,93,0,0, 0,0,74,93,73,93,0,0,88,75,0,0,0,0,94,61, 108,60,68,59,0,0,75,93,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,77,93,35,63,0,0,76,93,0,0, 0,0,0,0,0,0,0,0,78,93,0,0,0,0,0,0, 0,0,0,0,79,93,0,0,0,0,0,0,0,0,0,0, 80,93,81,93,0,0,0,0,0,0,82,93,0,0,84,93, 83,93,85,93,37,50,74,67,0,0,86,93,0,0,0,0, 38,59,76,51,87,93,0,0,0,0,66,69,76,84,0,0, 0,0,0,0,0,0,35,53,88,93,0,0,0,0,0,0, 0,0,89,93,0,0,108,74,104,75,0,0,0,0,0,0, 71,70,90,93,102,72,0,0,0,0,0,0,123,72,0,0, 0,0,83,76,0,0,0,0,0,0,91,93,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,93,93,92,93,0,0,0,0,95,93,0,0,0,0, 0,0,94,93,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,97,93,0,0, 0,0,0,0,0,0,0,0,0,0,97,59,0,0,49,76, 0,0,98,93,99,93,0,0,0,0,36,53,0,0,0,0, 0,0,100,93,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,102,93,101,93,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,101,63,0,0,0,0,57,73,74,49,0,0, 0,0,0,0,0,0,0,0,69,72,0,0,117,68,65,61, 97,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,70,72,0,0,46,60,0,0, 0,0,0,0,0,0,104,93,0,0,64,52,0,0,0,0, 120,49,0,0,0,0,114,70,103,93,62,57,83,67,0,0, 105,93,0,0,0,0,0,0,0,0,0,0,113,93,0,0, 106,93,0,0,0,0,0,0,0,0,0,0,65,66,0,0, 98,53,114,93,0,0,0,0,0,0,0,0,0,0,0,0, 104,55,0,0,0,0,37,53,112,93,0,0,0,0,110,93, 107,93,96,77,0,0,0,0,0,0,0,0,64,68,0,0, 0,0,0,0,89,70,108,93,0,0,0,0,116,93,0,0, 115,93,35,55,0,0,0,0,45,50,0,0,0,0,59,58, 109,93,111,93,0,0,0,0,0,0,0,0,0,0,87,75, 116,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,119,75,0,0,0,0,124,93,0,0,0,0,125,93, 0,0,79,50,0,0,0,0,0,0,0,0,40,74,125,76, 33,94,35,60,66,62,120,93,126,93,104,49,0,0,55,54, 0,0,0,0,117,93,122,93,0,0,0,0,0,0,116,64, 113,71,0,0,103,72,0,0,0,0,0,0,0,0,0,0, 0,0,119,93,0,0,33,75,0,0,121,93,0,0,36,94, 0,0,34,94,0,0,123,93,0,0,0,0,0,0,34,75, 72,71,99,53,0,0,37,69,0,0,0,0,109,67,0,0, 37,94,0,0,0,0,0,0,0,0,35,94,89,66,118,93, 0,0,75,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,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,78,77,48,94,0,0,0,0,0,0,0,0,0,0, 47,94,0,0,0,0,0,0,0,0,118,64,0,0,44,94, 0,0,108,77,0,0,0,0,54,70,38,94,0,0,0,0, 0,0,0,0,0,0,69,68,0,0,0,0,0,0,76,49, 63,57,41,94,0,0,0,0,0,0,0,0,0,0,0,0, 39,61,46,94,0,0,45,94,40,94,0,0,43,94,0,0, 0,0,104,51,0,0,42,94,73,71,0,0,0,0,46,78, 0,0,0,0,116,62,117,64,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,94, 52,94,0,0,77,73,0,0,0,0,0,0,0,0,0,0, 0,0,49,94,51,94,0,0,58,49,0,0,0,0,64,57, 50,79,0,0,61,51,0,0,98,73,0,0,0,0,0,0, 0,0,0,0,97,77,0,0,0,0,36,51,59,63,53,94, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,58,94,0,0,0,0,67,62,0,0, 0,0,0,0,48,77,0,0,55,94,0,0,0,0,0,0, 0,0,50,94,0,0,56,94,0,0,0,0,0,0,94,78, 0,0,57,94,66,70,0,0,0,0,0,0,0,0,0,0, 0,0,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,51,0,0,0,0, 85,49,0,0,0,0,62,94,0,0,0,0,65,94,0,0, 0,0,0,0,67,78,0,0,0,0,0,0,100,77,0,0, 0,0,0,0,0,0,72,94,66,94,63,94,0,0,0,0, 0,0,84,78,69,94,0,0,0,0,0,0,0,0,74,61, 71,94,0,0,0,0,76,94,0,0,0,0,113,69,74,94, 0,0,0,0,0,0,0,0,68,94,0,0,0,0,56,67, 0,0,0,0,75,94,0,0,64,94,0,0,70,94,0,0, 77,94,124,48,67,94,0,0,78,94,0,0,0,0,60,63, 0,0,95,61,0,0,37,74,0,0,46,58,0,0,59,94, 73,94,58,69,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,54,64,0,0,105,51,81,58,68,62, 61,94,66,61,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,76,55,0,0,60,94,0,0,0,0,0,0,82,94, 109,61,58,56,0,0,97,94,0,0,91,94,116,53,79,69, 0,0,86,94,95,94,47,48,50,49,0,0,0,0,57,50, 0,0,88,94,44,66,79,94,81,94,65,57,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,98,94,0,0, 93,94,0,0,0,0,0,0,85,94,0,0,0,0,0,0, 0,0,92,94,0,0,0,0,0,0,0,0,0,0,0,0, 43,76,0,0,0,0,90,94,94,94,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,80,56,0,0,69,62,0,0, 0,0,57,67,0,0,0,0,0,0,84,94,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,47,77,0,0,0,0, 0,0,87,94,0,0,0,0,80,94,114,69,0,0,0,0, 83,94,0,0,0,0,0,0,89,94,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,81,79,62,60,126,75,0,0, 99,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,46,72,0,0,0,0,111,94,59,56,0,0, 0,0,0,0,0,0,0,0,96,61,0,0,101,94,0,0, 0,0,0,0,47,78,66,57,0,0,114,94,0,0,0,0, 110,48,0,0,0,0,112,94,0,0,0,0,0,0,0,0, 100,94,0,0,0,0,0,0,0,0,106,94,0,0,0,0, 108,94,0,0,0,0,0,0,79,77,103,94,0,0,0,0, 46,69,0,0,0,0,105,94,0,0,0,0,0,0,0,0, 113,94,0,0,107,94,71,76,0,0,0,0,0,0,102,94, 0,0,34,60,126,94,0,0,0,0,0,0,0,0,106,51, 0,0,104,94,109,94,110,94,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,108,66,90,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,118,94,0,0,0,0,124,94,0,0,0,0, 122,94,0,0,41,69,0,0,0,0,35,95,119,94,0,0, 0,0,0,0,0,0,0,0,120,94,96,94,0,0,121,53, 58,73,0,0,0,0,0,0,63,60,0,0,0,0,119,57, 0,0,0,0,0,0,0,0,0,0,51,79,0,0,116,94, 0,0,34,95,105,49,102,65,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,121,71,0,0, 65,52,122,78,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,33,76,82,68,0,0,0,0,0,0,0,0,123,94, 125,94,0,0,0,0,0,0,0,0,0,0,50,65,0,0, 0,0,0,0,0,0,0,0,33,95,121,94,0,0,115,94, 0,0,0,0,0,0,117,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,105,55,0,0,0,0,0,0,47,95,0,0, 0,0,42,95,120,64,0,0,0,0,99,51,0,0,0,0, 0,0,0,0,97,61,0,0,51,95,0,0,0,0,0,0, 0,0,0,0,0,0,44,95,44,68,41,95,89,68,0,0, 0,0,0,0,76,95,0,0,0,0,0,0,38,95,0,0, 37,95,0,0,46,95,0,0,0,0,0,0,40,95,39,95, 45,95,0,0,33,64,0,0,36,95,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,48,95,0,0,0,0,49,95, 0,0,0,0,0,0,0,0,0,0,66,52,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,95, 0,0,53,95,55,95,0,0,0,0,0,0,0,0,0,0, 58,95,0,0,0,0,0,0,0,0,0,0,0,0,67,69, 0,0,52,95,0,0,0,0,0,0,0,0,0,0,56,95, 0,0,0,0,0,0,0,0,0,0,0,0,99,55,121,66, 50,95,59,71,0,0,0,0,57,95,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,62,95,60,95,0,0,0,0,63,95,0,0, 0,0,66,95,0,0,0,0,0,0,59,95,106,57,40,71, 0,0,0,0,115,69,0,0,0,0,0,0,0,0,0,0, 0,0,116,77,61,95,0,0,65,95,117,66,0,0,64,95, 0,0,43,95,0,0,0,0,105,111,0,0,0,0,0,0, 69,95,0,0,0,0,0,0,73,95,0,0,0,0,71,95, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,95, 0,0,68,95,0,0,0,0,0,0,72,95,0,0,70,95, 0,0,0,0,0,0,78,73,0,0,0,0,78,95,0,0, 75,95,74,95,0,0,77,95,84,70,79,95,0,0,0,0, 0,0,0,0,0,0,0,0,117,67,109,66,0,0,0,0, 0,0,0,0,37,64,0,0,0,0,0,0,80,95,0,0, 82,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,81,95,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,67,52,0,0,0,0,0,0,0,0,83,95, 0,0,0,0,0,0,0,0,0,0,0,0,103,70,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,84,95,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,80,50,0,0,0,0,0,0,116,69,37,51,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,100,53,0,0, 0,0,0,0,94,60,82,58,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,79, 102,63,0,0,0,0,0,0,106,49,0,0,0,0,0,0, 86,95,0,0,0,0,0,0,0,0,0,0,0,0,85,95, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,89,95,58,67,92,95,87,95,0,0,0,0, 0,0,91,95,0,0,0,0,0,0,0,0,90,95,64,69, 89,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,117,78,0,0, 0,0,94,95,0,0,0,0,0,0,40,49,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,95, 0,0,0,0,0,0,95,95,0,0,93,95,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,95, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,75, 0,0,0,0,0,0,98,95,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,95, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,107,49,0,0,0,0,0,0,0,0,100,95, 50,74,0,0,99,95,0,0,0,0,0,0,0,0,53,76, 0,0,0,0,0,0,0,0,71,62,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,51,65,0,0,0,0,0,0, 0,0,0,0,70,62,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,78, 0,0,0,0,106,95,0,0,121,64,0,0,0,0,0,0, 0,0,0,0,0,0,102,95,107,95,0,0,0,0,108,49, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 105,95,0,0,97,71,101,95,104,95,72,62,0,0,81,72, 0,0,0,0,108,95,0,0,81,60,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,122,64,0,0,0,0,0,0,0,0, 0,0,0,0,111,95,0,0,0,0,0,0,103,95,0,0, 39,55,0,0,0,0,0,0,0,0,109,95,0,0,0,0, 0,0,0,0,80,77,112,95,0,0,0,0,0,0,38,116, 0,0,0,0,0,0,0,0,0,0,79,61,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,113,95,0,0, 0,0,0,0,114,95,0,0,0,0,0,0,0,0,46,71, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,95, 0,0,0,0,0,0,0,0,117,95,0,0,0,0,0,0, 0,0,51,71,0,0,0,0,0,0,0,0,117,69,119,95, 0,0,0,0,0,0,0,0,121,95,0,0,85,78,0,0, 118,95,0,0,120,95,109,49,0,0,115,95,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,91,83,122,95,0,0, 0,0,0,0,0,0,103,65,56,59,124,95,0,0,0,0, 0,0,0,0,123,95,36,63,89,82,0,0,0,0,0,0, 0,0,0,0,0,0,125,95,0,0,0,0,0,0,33,96, 0,0,110,95,126,95,0,0,0,0,34,96,0,0,0,0, 0,0,0,0,0,0,0,0,122,71,0,0,0,0,0,0, 0,0,0,0,0,0,35,96,0,0,0,0,36,96,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,37,96,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,38,96,0,0, 94,68,0,0,40,96,39,96,0,0,0,0,41,96,0,0, 42,96,0,0,0,0,95,60,99,73,0,0,0,0,0,0, 108,76,43,96,44,96,86,65,36,60,45,96,46,96,0,0, 0,0,0,0,0,0,0,0,47,96,82,74,71,72,0,0, 0,0,48,96,87,71,0,0,0,0,0,0,0,0,0,0, 45,68,0,0,0,0,0,0,0,0,0,0,49,96,103,50, 0,0,109,53,0,0,70,76,0,0,54,76,0,0,52,50, 52,79,0,0,0,0,0,0,0,0,82,75,0,0,42,74, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 55,64,0,0,50,96,0,0,0,0,0,0,0,0,67,70, 0,0,0,0,0,0,35,56,51,96,0,0,84,58,53,96, 52,96,0,0,0,0,0,0,0,0,54,96,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 55,96,0,0,0,0,0,0,56,96,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,62,53,0,0, 57,96,0,0,0,0,0,0,0,0,58,96,0,0,0,0, 0,0,0,0,36,56,0,0,0,0,72,72,0,0,0,0, 60,96,0,0,0,0,0,0,117,62,0,0,0,0,59,96, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 56,54,61,96,63,96,0,0,62,96,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,64,96,0,0,81,56,0,0, 65,96,0,0,0,0,0,0,0,0,105,54,0,0,64,65, 0,0,125,57,0,0,0,0,0,0,0,0,67,96,68,96, 66,96,0,0,0,0,0,0,0,0,0,0,0,0,109,60, 0,0,0,0,72,70,57,54,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,70,96,44,67,69,96, 0,0,0,0,53,79,98,71,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 73,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,75,96,72,96,0,0,0,0, 0,0,84,76,74,96,76,96,0,0,68,78,0,0,0,0, 0,0,0,0,0,0,80,96,0,0,0,0,0,0,79,96, 118,67,45,71,0,0,0,0,37,56,78,96,0,0,0,0, 0,0,0,0,77,96,0,0,49,77,50,77,0,0,0,0, 0,0,0,0,0,0,0,0,81,96,110,49,0,0,0,0, 0,0,0,0,118,57,98,59,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,82,96,83,96,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,85,96,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,67,61,0,0,0,0,0,0,0,0,87,96,0,0, 86,96,0,0,0,0,0,0,0,0,0,0,88,96,0,0, 77,51,0,0,0,0,90,96,0,0,0,0,89,96,0,0, 92,96,91,96,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,60,56,0,0,0,0,40,78,0,0,76,54, 0,0,38,50,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,106,54,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,52, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 104,78,94,96,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,96,96,0,0,0,0,0,0,0,0,97,96,0,0, 81,50,0,0,0,0,0,0,0,0,0,0,93,96,0,0, 57,59,0,0,0,0,65,68,95,96,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,100,96,0,0,110,60,0,0, 0,0,0,0,0,0,98,96,0,0,0,0,0,0,0,0, 62,55,0,0,0,0,73,72,99,96,0,0,0,0,126,96, 0,0,0,0,0,0,0,0,0,0,0,0,105,96,0,0, 0,0,0,0,0,0,0,0,61,56,0,0,0,0,0,0, 0,0,101,53,0,0,102,96,125,77,0,0,0,0,48,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, 118,66,0,0,0,0,104,96,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,96,86,78,87,54,124,72,74,71,0,0,0,0,0,0, 107,96,0,0,0,0,0,0,0,0,109,96,0,0,112,96, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,108,96,0,0,0,0,0,0,111,96, 106,56,77,49,113,96,0,0,112,63,110,96,92,78,0,0, 0,0,116,96,118,96,0,0,0,0,0,0,0,0,114,96, 117,96,0,0,0,0,0,0,0,0,103,96,115,96,0,0, 0,0,60,58,0,0,0,0,36,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,119,96,0,0,0,0,0,0, 0,0,126,77,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,120,96,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,121,96,0,0,0,0,0,0, 101,96,0,0,0,0,0,0,0,0,122,96,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,68,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,37,60,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 123,96,0,0,0,0,0,0,0,0,124,96,0,0,0,0, 0,0,0,0,125,96,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,59,49,0,0,0,0,0,0,33,97,0,0, 59,73,34,97,0,0,0,0,36,52,35,97,0,0,36,97, 0,0,0,0,0,0,0,0,37,97,0,0,39,97,40,97, 38,97,0,0,0,0,0,0,83,73,42,97,41,97,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,44,97,43,97,45,97,0,0,0,0,0,0,0,0, 0,0,0,0,46,97,48,97,47,97,0,0,0,0,121,57, 0,0,50,97,0,0,49,97,0,0,0,0,69,52,0,0, 83,63,0,0,60,69,0,0,51,97,56,64,0,0,0,0, 0,0,58,59,0,0,121,49,52,97,0,0,81,77,0,0, 0,0,99,74,53,97,0,0,0,0,0,0,68,69,51,77, 67,57,61,63,0,0,0,0,0,0,75,67,52,82,0,0, 46,68,104,50,54,97,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,55,97,0,0,60,97,0,0,0,0,58,97, 57,97,66,90,38,51,56,97,0,0,90,48,0,0,42,72, 0,0,0,0,74,72,0,0,0,0,0,0,0,0,49,78, 61,97,59,97,92,67,38,64,0,0,0,0,43,72,0,0, 45,73,0,0,63,97,44,78,77,55,64,97,0,0,62,97, 86,72,65,97,0,0,66,97,0,0,0,0,91,48,0,0, 0,0,118,62,71,97,0,0,68,97,109,70,67,97,0,0, 0,0,0,0,0,0,0,0,0,0,38,53,0,0,0,0, 74,97,0,0,0,0,0,0,69,97,70,97,0,0,73,97, 72,97,37,73,0,0,0,0,66,65,65,65,0,0,63,53, 0,0,0,0,75,97,0,0,0,0,0,0,0,0,0,0, 76,97,0,0,0,0,77,97,0,0,0,0,0,0,0,0, 0,0,79,97,0,0,78,97,0,0,0,0,0,0,0,0, 0,0,86,49,0,0,0,0,0,0,0,0,0,0,87,97, 104,72,81,97,0,0,83,97,0,0,0,0,85,97,62,63, 0,0,0,0,86,97,84,97,64,60,0,0,0,0,0,0, 80,97,82,97,0,0,66,73,0,0,73,62,0,0,0,0, 89,97,0,0,0,0,88,97,0,0,0,0,0,0,0,0, 90,97,0,0,38,60,47,58,0,0,0,0,119,69,91,97, 0,0,75,68,0,0,0,0,93,97,0,0,0,0,0,0, 33,78,92,97,0,0,0,0,0,0,0,0,0,0,105,65, 0,0,0,0,0,0,0,0,0,0,0,0,98,97,0,0, 100,97,101,97,84,67,0,0,0,0,0,0,0,0,0,0, 99,97,0,0,96,97,0,0,94,97,95,97,0,0,97,97, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,97, 0,0,102,97,0,0,103,97,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,105,97,107,97,108,97, 109,97,0,0,110,97,0,0,0,0,106,97,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,112,97,0,0, 0,0,0,0,111,97,0,0,0,0,0,0,0,0,0,0, 0,0,113,97,0,0,0,0,0,0,0,0,0,0,0,0, 69,78,0,0,0,0,0,0,116,97,114,97,115,97,0,0, 0,0,0,0,98,52,0,0,0,0,0,0,0,0,0,0, 126,76,0,0,0,0,0,0,74,74,0,0,118,97,0,0, 0,0,0,0,117,97,0,0,0,0,0,0,0,0,119,97, 120,97,0,0,0,0,0,0,0,0,124,97,121,97,122,97, 123,97,0,0,125,97,0,0,0,0,0,0,126,97,0,0, 33,98,0,0,0,0,0,0,34,98,0,0,35,98,0,0, 47,72,80,69,36,98,114,71,52,73,0,0,37,98,0,0, 0,0,38,98,42,69,0,0,39,51,68,57,39,98,0,0, 0,0,40,98,0,0,0,0,41,98,0,0,41,59,0,0, 0,0,43,98,0,0,0,0,42,98,0,0,0,0,44,98, 45,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,105,72,0,0,46,98,0,0, 0,0,0,0,47,98,0,0,0,0,105,115,48,98,49,98, 50,98,0,0,0,0,0,0,0,0,46,59,0,0,0,0, 51,98,86,71,0,0,0,0,95,75,0,0,78,49,0,0, 87,49,0,0,0,0,52,98,0,0,0,0,0,0,0,0, 54,98,0,0,0,0,0,0,53,98,112,69,0,0,0,0, 0,0,57,64,57,93,0,0,55,98,65,76,0,0,56,98, 0,0,70,52,87,72,57,98,0,0,58,98,0,0,0,0, 59,98,0,0,0,0,0,0,92,76,0,0,0,0,0,0, 85,76,0,0,62,68,0,0,0,0,0,0,106,65,0,0, 0,0,61,98,0,0,0,0,98,61,0,0,0,0,74,62, 0,0,0,0,64,98,0,0,0,0,63,98,62,98,125,72, 0,0,71,52,41,56,0,0,0,0,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,98,0,0,0,0,67,98,63,63,50,76,0,0, 0,0,0,0,66,98,68,98,69,98,0,0,0,0,65,98, 0,0,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,98,72,98,0,0, 47,68,0,0,99,52,0,0,0,0,0,0,101,67,0,0, 0,0,0,0,0,0,0,0,0,0,73,98,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 74,98,77,98,0,0,0,0,0,0,0,0,0,0,103,63, 0,0,68,70,0,0,78,98,83,75,0,0,75,98,0,0, 0,0,76,98,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,98, 0,0,0,0,0,0,0,0,80,98,79,98,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,83,98,0,0,0,0,82,98,0,0,0,0,84,98, 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,98,0,0,85,98,0,0, 0,0,0,0,0,0,77,74,0,0,0,0,0,0,0,0, 0,0,0,0,86,61,70,78,0,0,0,0,87,98,0,0, 0,0,55,70,0,0,0,0,88,98,0,0,0,0,89,98, 0,0,93,98,91,98,92,98,0,0,90,98,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,94,98,0,0,0,0, 0,0,0,0,0,0,95,98,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,96,98,0,0,0,0, 97,98,55,76,98,98,0,0,0,0,0,0,0,0,0,0, 112,76,99,98,0,0,78,67,0,0,106,71,0,0,107,54, 0,0,0,0,0,0,59,67,100,98,58,54,0,0,0,0, 0,0,80,64,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,101,98,0,0,0,0,0,0,0,0,0,0, 61,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,102,98,0,0,0,0,0,0,0,0,0,0, 103,98,0,0,38,56,85,58,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,105,98,0,0, 0,0,0,0,0,0,86,69,86,58,78,53,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 36,75,0,0,75,71,0,0,0,0,0,0,0,0,0,0, 106,98,0,0,0,0,0,0,0,0,104,98,0,0,0,0, 0,0,0,0,0,0,107,98,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,75,62,0,0,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,78,69,57,0,0,0,0,39,56,0,0,0,0, 35,72,0,0,109,98,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,111,98,0,0,0,0,0,0,0,0,107,56, 0,0,0,0,0,0,0,0,110,98,118,68,0,0,0,0, 0,0,0,0,113,98,55,51,108,98,0,0,0,0,106,72, 0,0,48,49,0,0,108,58,0,0,82,79,0,0,0,0, 112,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,98,0,0,0,0,0,0,75,74,0,0,89,64, 116,98,0,0,0,0,0,0,0,0,117,98,0,0,0,0, 0,0,0,0,0,0,115,98,0,0,0,0,0,0,0,0, 78,51,0,0,123,98,0,0,122,98,0,0,0,0,39,60, 0,0,0,0,0,0,124,98,119,98,0,0,0,0,0,0, 125,98,120,98,0,0,0,0,0,0,0,0,88,72,118,98, 0,0,0,0,121,98,0,0,0,0,0,0,0,0,0,0, 34,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,33,99,97,75,0,0, 0,0,0,0,126,98,0,0,0,0,107,48,0,0,0,0, 0,0,0,0,36,99,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,35,99,0,0,0,0,0,0,76,62, 0,0,0,0,0,0,0,0,0,0,37,99,0,0,0,0, 0,0,0,0,0,0,0,0,67,65,0,0,0,0,39,99, 38,99,0,0,0,0,0,0,0,0,0,0,0,0,40,99, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,92,57,0,0,0,0,0,0, 87,69,42,99,41,99,0,0,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,60,0,0,105,78,0,0,82,60,0,0,43,99,55,55, 0,0,0,0,0,0,0,0,0,0,64,53,39,53,99,59, 0,0,0,0,0,0,0,0,0,0,0,0,52,77,0,0, 0,0,49,99,0,0,48,99,68,65,45,99,0,0,0,0, 47,99,0,0,0,0,75,61,64,63,46,99,44,99,0,0, 42,71,0,0,0,0,77,62,0,0,0,0,60,73,0,0, 0,0,0,0,0,0,87,58,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,120,69,0,0,0,0, 50,99,0,0,0,0,0,0,0,0,51,99,73,99,88,54, 0,0,0,0,61,79,53,65,0,0,0,0,0,0,0,0, 52,99,0,0,0,0,82,50,119,68,33,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,53,99,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,122,53,54,99,0,0,0,0, 56,99,0,0,0,0,0,0,57,99,0,0,41,71,0,0, 0,0,58,99,0,0,0,0,0,0,0,0,0,0,59,99, 60,99,0,0,0,0,89,54,83,50,69,70,40,61,100,59, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,99, 0,0,41,61,0,0,0,0,0,0,0,0,0,0,74,50, 67,73,0,0,0,0,62,99,0,0,0,0,107,72,0,0, 0,0,0,0,0,0,0,0,0,0,69,65,0,0,65,99, 0,0,66,99,105,71,0,0,65,63,63,99,0,0,97,67, 0,0,0,0,64,99,0,0,0,0,0,0,78,62,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,92,48,0,0,0,0,0,0,0,0,41,53,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,67,99,0,0, 0,0,120,68,0,0,68,99,71,64,0,0,0,0,0,0, 0,0,0,0,45,76,0,0,0,0,35,73,69,99,70,99, 85,67,0,0,71,78,0,0,0,0,72,99,71,99,0,0, 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,60,0,0,0,0,74,99, 112,48,0,0,0,0,0,0,0,0,77,99,0,0,0,0, 0,0,75,99,84,50,78,55,76,99,70,57,114,57,0,0, 102,74,78,99,0,0,0,0,84,75,0,0,0,0,80,99, 0,0,0,0,0,0,81,64,79,49,58,50,44,48,0,0, 0,0,0,0,0,0,0,0,0,0,79,99,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,99, 82,99,119,62,0,0,0,0,0,0,0,0,0,0,83,99, 0,0,79,51,0,0,0,0,0,0,0,0,85,99,0,0, 0,0,0,0,106,55,0,0,102,53,0,0,0,0,86,99, 117,54,0,0,0,0,87,99,0,0,124,64,0,0,77,70, 0,0,96,64,117,58,0,0,0,0,0,0,88,99,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 98,67,107,65,0,0,90,99,92,99,89,99,91,99,0,0, 0,0,0,0,0,0,0,0,0,0,34,55,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,99, 38,55,0,0,0,0,0,0,103,53,82,77,95,99,0,0, 0,0,0,0,0,0,0,0,96,99,0,0,0,0,0,0, 46,49,0,0,0,0,0,0,0,0,99,99,0,0,0,0, 0,0,94,99,98,99,97,99,0,0,101,99,118,51,0,0, 102,99,41,78,0,0,103,99,0,0,104,99,0,0,0,0, 116,84,106,99,0,0,105,99,0,0,0,0,0,0,107,99, 108,99,0,0,53,78,109,99,0,0,111,112,79,62,110,99, 111,99,87,61,0,0,56,70,112,99,0,0,0,0,0,0, 40,67,0,0,0,0,113,99,0,0,60,67,114,99,0,0, 0,0,0,0,0,0,0,0,37,54,0,0,63,81,93,67, 51,60,0,0,0,0,0,0,0,0,72,52,0,0,0,0, 115,99,0,0,34,100,0,0,118,99,0,0,104,53,0,0, 117,99,36,100,0,0,0,0,0,0,116,99,0,0,80,62, 0,0,0,0,0,0,0,0,0,0,0,0,120,99,121,99, 0,0,43,69,0,0,0,0,122,99,0,0,94,51,0,0, 0,0,0,0,0,0,90,63,100,73,0,0,124,99,0,0, 0,0,0,0,104,66,0,0,0,0,0,0,0,0,0,0, 0,0,119,99,0,0,123,99,125,99,0,0,0,0,123,58, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,38,100,46,73,0,0,38,72,121,69, 0,0,90,54,37,100,35,100,0,0,53,72,126,99,94,67, 123,69,0,0,122,69,0,0,118,58,0,0,0,0,0,0, 0,0,0,0,0,0,56,100,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,40,100,0,0,42,100,0,0,0,0, 0,0,0,0,45,100,0,0,46,100,0,0,43,100,44,100, 0,0,0,0,41,100,39,100,0,0,0,0,0,0,0,0, 33,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,79,74,85,50,0,0,0,0, 0,0,53,100,0,0,50,100,0,0,55,100,0,0,0,0, 54,100,0,0,115,71,39,76,0,0,59,59,48,100,57,100, 52,100,0,0,51,100,47,100,0,0,49,100,0,0,73,52, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 61,67,0,0,0,0,125,64,0,0,0,0,0,0,34,72, 0,0,0,0,62,100,0,0,0,0,0,0,36,72,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,97,64,59,100, 0,0,0,0,79,72,0,0,63,100,83,74,0,0,91,67, 0,0,58,100,60,100,0,0,0,0,61,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,64,100,0,0,0,0,68,60,0,0, 0,0,0,0,70,70,69,100,68,100,0,0,0,0,65,100, 0,0,0,0,0,0,70,100,0,0,0,0,0,0,0,0, 0,0,74,100,0,0,0,0,78,100,75,100,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,71,100,0,0, 0,0,0,0,0,0,0,0,0,0,72,100,0,0,0,0, 0,0,0,0,0,0,77,100,0,0,0,0,0,0,66,100, 85,82,73,100,67,100,0,0,0,0,76,100,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,82,100,0,0,74,52, 0,0,79,100,0,0,0,0,0,0,80,100,0,0,0,0, 81,100,84,100,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,83,100,118,72,0,0, 0,0,0,0,0,0,85,100,124,78,109,74,90,100,0,0, 0,0,87,100,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,86,100,82,64,0,0,89,100,91,100,0,0, 0,0,0,0,88,100,0,0,95,100,0,0,92,100,0,0, 0,0,0,0,0,0,0,0,0,0,93,100,54,79,0,0, 0,0,0,0,94,100,96,100,0,0,0,0,0,0,0,0, 0,0,0,0,97,100,0,0,0,0,0,0,0,0,0,0, 0,0,70,74,0,0,98,100,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,98,76,0,0,0,0,78,54, 41,55,99,100,0,0,0,0,0,0,0,0,0,0,52,74, 0,0,104,63,0,0,48,76,0,0,0,0,100,100,0,0, 51,78,0,0,0,0,116,71,0,0,70,65,52,71,0,0, 0,0,77,61,0,0,0,0,0,0,64,48,0,0,105,100, 103,100,0,0,101,100,33,52,0,0,81,62,106,100,0,0, 0,0,104,100,0,0,102,100,110,100,0,0,0,0,109,100, 108,100,107,100,0,0,0,0,0,0,0,0,0,0,111,100, 0,0,0,0,0,0,112,100,58,64,0,0,113,100,0,0, 115,100,0,0,0,0,114,100,0,0,0,0,0,0,0,0, 82,56,0,0,0,0,0,0,56,65,0,0,0,0,0,0, 117,100,0,0,0,0,0,0,124,69,0,0,116,100,0,0, 0,0,0,0,118,100,0,0,53,74,108,65,71,57,0,0, 119,100,0,0,0,0,0,0,0,0,72,78,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,121,100,0,0,0,0, 122,100,0,0,123,100,0,0,124,100,0,0,101,59,0,0, 125,100,79,55,0,0,0,0,106,53,0,0,42,53,0,0, 33,101,0,0,115,76,72,57,126,100,0,0,0,0,0,0, 36,101,102,76,0,0,60,71,0,0,0,0,51,73,0,0, 0,0,0,0,99,61,35,101,0,0,83,60,73,57,102,59, 105,53,54,74,34,101,0,0,0,0,0,0,71,65,66,75, 119,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,103,59,93,68,0,0,39,101,95,78,89,58,0,0, 40,101,66,63,0,0,42,101,0,0,0,0,0,0,82,62, 48,58,0,0,0,0,0,0,0,0,41,101,0,0,0,0, 42,61,62,56,72,65,37,101,43,101,0,0,0,0,0,0, 0,0,38,101,80,55,0,0,46,101,50,101,107,55,0,0, 0,0,0,0,0,0,0,0,45,101,0,0,0,0,0,0, 0,0,54,101,0,0,0,0,74,57,0,0,0,0,109,77, 60,48,51,101,0,0,0,0,107,53,0,0,48,101,0,0, 0,0,0,0,0,0,0,0,49,101,0,0,0,0,125,69, 47,101,44,101,0,0,40,51,100,64,0,0,0,0,40,56, 0,0,0,0,0,0,56,101,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,101, 0,0,0,0,0,0,0,0,0,0,55,101,0,0,0,0, 0,0,52,101,0,0,0,0,0,0,0,0,0,0,81,55, 51,66,57,101,110,65,0,0,0,0,70,101,0,0,0,0, 66,101,60,101,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,64,101,122,60,93,48,59,101,67,101,71,101,75,57, 86,76,0,0,86,68,61,101,0,0,0,0,69,101,0,0, 58,101,62,67,0,0,63,101,61,48,74,76,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,62,101,0,0,0,0, 91,54,108,72,0,0,0,0,0,0,109,65,0,0,80,78, 111,61,0,0,0,0,110,101,0,0,0,0,72,101,0,0, 126,64,0,0,68,101,73,101,75,101,0,0,121,68,78,101, 0,0,0,0,74,101,0,0,0,0,0,0,84,74,75,52, 0,0,0,0,75,76,0,0,0,0,94,48,0,0,0,0, 77,101,0,0,125,78,0,0,0,0,0,0,0,0,0,0, 0,0,76,101,0,0,0,0,0,0,0,0,0,0,111,49, 0,0,0,0,108,70,79,101,0,0,0,0,0,0,86,101, 80,101,87,101,0,0,0,0,0,0,0,0,0,0,0,0, 83,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,123,71,0,0,0,0,74,60,85,101,0,0,82,101, 88,101,81,101,0,0,0,0,68,61,0,0,0,0,0,0, 0,0,37,75,0,0,0,0,76,61,0,0,0,0,84,101, 96,101,0,0,0,0,92,101,0,0,95,101,0,0,93,101, 97,101,91,101,0,0,65,101,83,64,0,0,0,0,75,72, 0,0,94,101,0,0,0,0,89,101,0,0,0,0,0,0, 33,65,82,55,0,0,43,61,0,0,0,0,0,0,0,0, 0,0,0,0,37,63,54,65,100,101,0,0,0,0,102,101, 103,101,0,0,0,0,99,101,101,101,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,90,101,98,101,0,0,106,101, 105,101,0,0,0,0,122,75,0,0,0,0,43,55,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,101, 0,0,108,101,107,101,111,101,0,0,113,101,0,0,0,0, 60,59,109,101,0,0,0,0,0,0,0,0,114,101,115,101, 0,0,0,0,116,101,0,0,122,101,59,69,118,101,0,0, 117,101,119,101,120,101,0,0,121,101,0,0,0,0,0,0, 0,0,123,101,124,101,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,76,52,0,0,125,101,0,0, 126,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,33,102,0,0,0,0,0,0,0,0, 0,0,0,0,34,102,35,102,36,102,0,0,37,102,38,102, 0,0,0,0,40,102,39,102,0,0,0,0,41,102,0,0, 0,0,0,0,0,0,0,0,0,0,42,102,43,102,0,0, 0,0,0,0,0,0,0,0,0,0,46,102,44,102,45,102, 97,58,83,55,0,0,0,0,86,67,0,0,51,72,0,0, 112,61,0,0,0,0,77,71,0,0,109,72,47,102,109,88, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 48,102,50,102,0,0,101,77,49,102,52,102,51,102,0,0, 83,77,0,0,53,102,0,0,126,72,0,0,0,0,0,0, 0,0,0,0,54,102,0,0,0,0,0,0,0,0,0,0, 57,102,0,0,0,0,56,102,55,102,0,0,0,0,0,0, 0,0,58,102,50,55,0,0,0,0,0,0,34,65,65,53, 0,0,0,0,0,0,0,0,62,102,59,102,0,0,0,0, 60,102,0,0,0,0,0,0,63,102,0,0,64,102,61,102, 0,0,0,0,0,0,41,49,0,0,0,0,0,0,39,50, 0,0,0,0,0,0,66,102,67,102,0,0,0,0,0,0, 68,102,0,0,98,77,0,0,0,0,0,0,0,0,0,0, 44,61,0,0,70,102,69,102,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,105,63,71,102, 0,0,0,0,0,0,0,0,72,102,0,0,0,0,73,102, 0,0,101,52,0,0,0,0,0,0,0,0,77,52,0,0, 0,0,74,102,0,0,0,0,0,0,0,0,0,0,75,102, 0,0,93,75,99,77,0,0,0,0,0,0,84,77,55,79, 0,0,77,57,78,102,84,60,77,102,0,0,0,0,0,0, 0,0,79,102,41,60,0,0,0,0,0,0,81,66,0,0, 80,102,0,0,0,0,76,57,0,0,87,76,81,102,82,102, 0,0,0,0,83,102,0,0,0,0,0,0,0,0,84,102, 0,0,0,0,0,0,0,0,0,0,0,0,85,102,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,42,60,0,0,0,0,109,76,0,0,0,0,0,0, 0,0,87,102,0,0,63,67,0,0,86,102,0,0,0,0, 0,0,0,0,0,0,0,0,89,102,0,0,0,0,0,0, 88,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 90,102,0,0,0,0,0,0,59,64,0,0,91,102,0,0, 92,102,0,0,0,0,0,0,57,74,93,102,0,0,111,65, 94,102,0,0,0,0,0,0,0,0,0,0,95,102,0,0, 0,0,0,0,0,0,0,0,0,0,126,78,98,102,0,0, 97,102,96,102,48,68,0,0,99,102,38,63,0,0,100,102, 0,0,0,0,0,0,101,102,56,79,102,102,0,0,0,0, 0,0,0,0,103,102,105,102,104,102,37,72,0,0,121,70, 0,0,62,79,41,72,0,0,0,0,0,0,0,0,0,0, 0,0,107,102,0,0,0,0,83,62,0,0,42,73,0,0, 108,102,106,102,0,0,78,52,0,0,0,0,0,0,84,56, 104,59,0,0,0,0,110,72,0,0,0,0,0,0,42,56, 67,75,0,0,111,102,109,102,0,0,78,57,0,0,79,57, 105,48,0,0,104,58,0,0,0,0,0,0,0,0,0,0, 89,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,95,48,116,102,0,0,64,67,0,0,0,0,0,0, 0,0,0,0,88,71,0,0,91,66,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,118,102,0,0,0,0,114,102, 117,102,112,102,0,0,115,102,38,75,0,0,0,0,85,56, 0,0,0,0,125,48,113,102,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,120,102,0,0,121,102, 0,0,0,0,57,70,0,0,0,0,0,0,59,54,0,0, 0,0,0,0,38,103,61,71,0,0,0,0,0,0,0,0, 105,59,0,0,0,0,60,54,72,64,70,79,46,76,119,102, 84,64,0,0,0,0,0,0,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,53,122,102,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,124,102,0,0,0,0,0,0,0,0,0,0,123,102, 0,0,0,0,0,0,0,0,0,0,125,102,0,0,38,67, 0,0,62,71,0,0,0,0,0,0,0,0,0,0,49,68, 0,0,0,0,0,0,0,0,35,103,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,34,103,0,0,0,0,0,0, 0,0,126,102,0,0,0,0,85,63,0,0,101,73,37,103, 0,0,36,103,80,57,83,79,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,53,103,0,0,0,0, 0,0,0,0,0,0,41,103,42,103,0,0,0,0,0,0, 0,0,112,60,0,0,0,0,40,103,0,0,120,57,39,103, 0,0,0,0,43,103,0,0,0,0,0,0,50,68,34,74, 35,65,0,0,0,0,0,0,0,0,92,66,47,103,0,0, 48,103,44,103,0,0,0,0,0,0,0,0,45,103,0,0, 46,103,0,0,0,0,0,0,0,0,81,57,0,0,0,0, 0,0,54,103,0,0,50,103,0,0,0,0,0,0,0,0, 102,73,0,0,108,75,40,73,0,0,0,0,49,103,0,0, 0,0,52,103,51,103,0,0,0,0,0,0,68,75,55,103, 0,0,0,0,0,0,0,0,0,0,0,0,56,103,0,0, 0,0,55,65,0,0,57,103,0,0,0,0,59,103,0,0, 63,103,0,0,0,0,60,103,58,103,63,71,61,103,0,0, 62,103,0,0,0,0,0,0,50,50,0,0,69,103,64,103, 0,0,0,0,0,0,65,103,0,0,0,0,0,0,66,103, 0,0,33,66,0,0,0,0,0,0,0,0,68,103,67,103, 70,103,0,0,0,0,0,0,0,0,71,103,72,103,0,0, 0,0,67,63,0,0,105,50,0,0,73,103,87,78,0,0, 43,60,0,0,0,0,45,61,0,0,0,0,0,0,0,0, 0,0,106,59,87,67,0,0,0,0,0,0,0,0,0,0, 74,103,75,103,49,49,0,0,76,103,0,0,0,0,77,103, 78,103,0,0,0,0,79,103,0,0,80,103,61,54,42,90, 81,103,0,0,101,64,82,103,75,60,0,0,83,103,0,0, 48,80,0,0,0,0,0,0,84,103,94,74,92,52,0,0, 0,0,36,65,88,61,0,0,113,73,46,61,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,103, 82,57,86,103,76,72,0,0,100,103,0,0,0,0,0,0, 0,0,88,103,0,0,73,66,117,71,63,56,87,103,37,65, 0,0,0,0,0,0,0,0,0,0,0,0,89,103,0,0, 0,0,0,0,0,0,0,0,0,0,122,68,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,91,103,90,103, 93,103,0,0,0,0,92,103,0,0,94,103,0,0,0,0, 96,103,0,0,95,103,0,0,79,52,0,0,97,103,0,0, 98,103,99,103,0,0,0,0,49,58,73,78,0,0,101,103, 39,63,0,0,0,0,0,0,112,49,102,103,103,103,0,0, 0,0,0,0,0,0,0,0,104,103,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,48,0,0,105,103,0,0,0,0,0,0,0,0, 106,103,0,0,0,0,0,0,0,0,0,0,0,0,103,73, 0,0,0,0,0,0,71,60,0,0,108,103,0,0,0,0, 0,0,0,0,0,0,41,51,50,48,0,0,0,0,0,0, 0,0,107,103,110,103,78,71,0,0,68,63,0,0,86,50, 0,0,39,75,0,0,0,0,0,0,0,0,93,55,92,54, 0,0,109,103,0,0,106,50,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,35,52,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,113,49, 114,103,106,78,93,66,0,0,0,0,68,73,0,0,126,103, 0,0,87,50,124,103,0,0,122,103,113,103,0,0,111,103, 0,0,112,103,0,0,99,60,108,54,119,67,0,0,0,0, 0,0,81,70,0,0,0,0,0,0,0,0,0,0,81,49, 0,0,116,103,115,103,0,0,0,0,0,0,0,0,121,103, 117,103,120,103,0,0,0,0,0,0,0,0,0,0,0,0, 80,76,119,103,88,50,125,51,123,103,0,0,0,0,125,103, 0,0,0,0,0,0,0,0,84,55,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,35,104,44,104,45,104,0,0, 0,0,0,0,43,48,0,0,0,0,0,0,0,0,0,0, 0,0,52,104,0,0,0,0,0,0,0,0,113,48,0,0, 0,0,43,104,0,0,0,0,0,0,42,104,0,0,37,104, 36,104,0,0,34,104,33,104,99,67,0,0,123,66,39,104, 0,0,0,0,0,0,0,0,0,0,0,0,38,104,0,0, 0,0,0,0,0,0,41,104,0,0,0,0,0,0,112,65, 85,55,0,0,0,0,0,0,0,0,65,49,40,104,0,0, 83,57,0,0,0,0,0,0,0,0,0,0,113,65,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,58,104,0,0,59,104,0,0,89,50,0,0,0,0, 0,0,46,50,56,104,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,46,104,0,0,54,104,0,0,61,104, 55,104,0,0,0,0,0,0,53,104,0,0,0,0,0,0, 0,0,118,103,0,0,0,0,51,104,0,0,0,0,0,0, 47,104,0,0,0,0,0,0,80,52,49,104,60,104,0,0, 50,104,0,0,0,0,0,0,0,0,0,0,62,104,0,0, 48,104,124,71,0,0,0,0,0,0,0,0,0,0,105,77, 0,0,0,0,0,0,57,104,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,79,104,0,0,0,0,0,0,71,104, 0,0,0,0,0,0,123,63,0,0,0,0,0,0,0,0, 70,53,0,0,93,54,0,0,66,104,0,0,0,0,0,0, 0,0,91,50,0,0,0,0,84,62,0,0,69,104,0,0, 0,0,0,0,90,58,0,0,0,0,81,69,74,104,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,74, 0,0,65,104,0,0,0,0,0,0,90,50,86,56,41,73, 75,104,0,0,63,104,0,0,0,0,72,104,0,0,0,0, 0,0,82,104,0,0,67,104,0,0,0,0,0,0,0,0, 0,0,68,104,58,70,0,0,0,0,73,104,0,0,0,0, 0,0,70,104,40,75,76,104,96,48,0,0,0,0,0,0, 0,0,64,104,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,104,0,0, 77,104,0,0,0,0,0,0,0,0,0,0,0,0,107,71, 84,104,0,0,95,104,0,0,0,0,0,0,0,0,126,51, 0,0,0,0,0,0,98,104,0,0,0,0,80,104,0,0, 0,0,0,0,85,104,110,77,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,94,104,0,0,0,0,85,77, 0,0,0,0,0,0,0,0,42,78,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,120,67,0,0,0,0, 0,0,107,51,0,0,0,0,0,0,0,0,0,0,114,73, 100,104,33,70,0,0,0,0,49,48,0,0,0,0,93,104, 0,0,89,104,114,65,83,104,91,104,96,104,0,0,44,71, 0,0,0,0,0,0,42,48,0,0,88,104,0,0,97,104, 120,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 92,104,0,0,87,104,0,0,0,0,0,0,0,0,0,0, 0,0,85,62,0,0,0,0,0,0,0,0,47,61,0,0, 0,0,0,0,44,60,0,0,0,0,0,0,0,0,88,76, 0,0,0,0,71,73,0,0,0,0,103,104,0,0,112,104, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,90,104,0,0,0,0,0,0,0,0, 119,51,0,0,0,0,0,0,0,0,0,0,120,62,101,104, 0,0,106,104,115,65,0,0,0,0,102,104,0,0,109,104, 0,0,0,0,95,67,0,0,110,104,0,0,0,0,86,77, 99,104,56,51,0,0,105,104,0,0,0,0,108,104,44,76, 0,0,0,0,0,0,0,0,111,104,0,0,0,0,104,104, 107,104,0,0,0,0,0,0,0,0,0,0,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,75,0,0,33,79,0,0,0,0,0,0, 0,0,0,0,115,104,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,122,104,0,0,0,0,114,104,67,60,0,0, 0,0,0,0,0,0,0,0,81,104,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,74, 0,0,34,76,121,104,120,104,0,0,116,104,117,104,0,0, 54,49,0,0,0,0,0,0,0,0,119,104,0,0,113,104, 0,0,0,0,0,0,0,0,85,68,0,0,0,0,0,0, 0,0,0,0,118,104,126,48,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,34,66,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,67,74,0,0,0,0,123,104,33,105, 0,0,89,72,0,0,0,0,0,0,0,0,126,104,86,62, 34,105,35,105,0,0,0,0,62,54,0,0,0,0,0,0, 0,0,0,0,0,0,36,105,0,0,121,73,125,104,0,0, 86,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,124,104,0,0,0,0,0,0,0,0,79,79,34,70, 115,73,0,0,0,0,43,105,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,49,105,0,0,0,0, 0,0,0,0,0,0,0,0,50,105,0,0,37,105,0,0, 0,0,0,0,118,71,0,0,0,0,47,105,39,105,0,0, 41,105,0,0,0,0,0,0,0,0,0,0,51,105,40,105, 0,0,0,0,44,105,0,0,0,0,114,49,0,0,101,70, 0,0,45,105,48,105,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,38,105,0,0,38,65,0,0,42,105,39,59, 69,63,48,55,116,76,0,0,46,105,114,61,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,105, 53,105,0,0,0,0,0,0,0,0,0,0,0,0,78,79, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,105, 0,0,0,0,0,0,117,77,0,0,54,105,56,105,0,0, 0,0,0,0,0,0,57,105,0,0,0,0,0,0,0,0, 0,0,0,0,60,105,58,105,0,0,0,0,0,0,0,0, 0,0,0,0,35,70,59,105,0,0,0,0,0,0,77,72, 121,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,115,61,0,0,61,105, 66,105,116,65,0,0,0,0,65,105,0,0,0,0,0,0, 73,60,0,0,0,0,0,0,67,105,73,65,0,0,0,0, 62,105,64,105,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,63,105,0,0,0,0,49,93,34,93,0,0,0,0, 69,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 68,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,118,77,0,0,60,98,70,105,0,0, 0,0,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,105,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,72,105,87,56,0,0,84,53,0,0, 0,0,0,0,74,105,93,81,0,0,0,0,0,0,0,0, 117,53,0,0,58,78,0,0,115,54,75,105,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,76,105,0,0,0,0, 0,0,110,67,0,0,0,0,0,0,0,0,0,0,77,105, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,70, 0,0,58,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, 99,50,82,105,83,105,0,0,0,0,0,0,0,0,0,0, 0,0,78,105,0,0,61,59,0,0,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,105,66,71,0,0,0,0,0,0,0,0,80,105, 81,105,91,105,0,0,0,0,0,0,85,105,88,105,0,0, 0,0,0,0,0,0,0,0,84,105,0,0,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,105,0,0,87,105,88,60,0,0,89,105, 0,0,65,67,0,0,86,55,90,105,0,0,0,0,0,0, 0,0,0,0,92,105,0,0,0,0,0,0,0,0,63,51, 0,0,97,105,0,0,0,0,93,105,96,105,0,0,0,0, 0,0,0,0,58,72,0,0,0,0,0,0,0,0,94,105, 0,0,0,0,95,105,72,73,90,72,98,105,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,125,66,108,105, 0,0,104,105,0,0,0,0,107,50,0,0,102,105,0,0, 42,75,103,105,0,0,0,0,100,105,0,0,101,105,106,105, 109,105,0,0,0,0,107,105,0,0,0,0,0,0,105,105, 99,105,0,0,0,0,0,0,0,0,0,0,88,67,0,0, 116,105,0,0,42,76,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,114,105,0,0,0,0,0,0,115,105, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,110,105,0,0,0,0,112,105,0,0,0,0, 0,0,113,105,0,0,0,0,0,0,111,105,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,64, 0,0,57,79,120,105,0,0,121,105,0,0,0,0,0,0, 0,0,33,106,0,0,42,63,0,0,123,105,0,0,126,105, 0,0,0,0,0,0,0,0,0,0,118,105,117,105,0,0, 0,0,34,106,0,0,0,0,92,50,0,0,124,105,0,0, 35,106,0,0,0,0,0,0,125,105,0,0,0,0,0,0, 0,0,0,0,122,105,0,0,51,68,0,0,119,105,0,0, 0,0,0,0,0,0,0,0,0,0,36,106,0,0,0,0, 39,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,59,77,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,38,106,0,0,0,0, 37,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,46,106,0,0,0,0,0,0,40,106,0,0,0,0, 0,0,48,106,0,0,0,0,0,0,0,0,0,0,0,0, 102,77,51,106,0,0,42,106,0,0,0,0,43,106,0,0, 0,0,0,0,47,106,0,0,50,106,49,106,0,0,0,0, 0,0,41,106,0,0,0,0,0,0,0,0,44,106,0,0, 61,106,0,0,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,106,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,52,106,0,0,0,0, 53,106,0,0,0,0,0,0,58,106,59,106,0,0,42,51, 0,0,66,53,0,0,0,0,57,106,0,0,0,0,0,0, 0,0,0,0,0,0,104,71,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,56,106,60,106,55,106,0,0,62,106, 0,0,0,0,0,0,64,106,63,106,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,106, 65,106,66,51,0,0,0,0,0,0,70,106,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,106, 0,0,0,0,0,0,0,0,68,106,0,0,0,0,69,106, 0,0,71,106,0,0,0,0,0,0,0,0,108,55,0,0, 73,106,0,0,72,106,0,0,48,61,0,0,0,0,0,0, 0,0,0,0,84,57,39,94,0,0,0,0,0,0,0,0, 74,106,81,61,0,0,0,0,0,0,57,51,0,0,75,106, 0,0,82,49,0,0,87,62,76,106,0,0,0,0,85,57, 77,106,97,48,0,0,0,0,0,0,0,0,61,73,0,0, 0,0,78,106,0,0,0,0,0,0,0,0,106,63,0,0, 85,106,0,0,0,0,82,106,0,0,111,67,0,0,0,0, 0,0,0,0,0,0,83,106,80,106,94,54,0,0,79,106, 86,106,0,0,0,0,0,0,0,0,0,0,54,55,0,0, 0,0,94,66,0,0,92,106,0,0,0,0,0,0,0,0, 88,106,0,0,0,0,0,0,53,66,87,106,0,0,90,106, 0,0,0,0,0,0,0,0,81,106,0,0,0,0,0,0, 91,106,0,0,93,106,0,0,0,0,0,0,0,0,0,0, 0,0,111,72,0,0,0,0,89,106,0,0,94,106,96,106, 0,0,0,0,83,56,84,106,0,0,65,48,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,95,106,0,0,91,58, 118,78,97,106,98,106,117,65,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,34,78,0,0,0,0, 0,0,0,0,99,106,53,77,0,0,0,0,100,106,101,106, 0,0,0,0,100,74,102,106,0,0,64,58,0,0,35,78, 0,0,0,0,0,0,0,0,0,0,0,0,107,106,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 108,106,88,62,106,106,0,0,0,0,0,0,103,77,103,106, 0,0,0,0,105,106,61,64,126,63,0,0,0,0,0,0, 104,106,0,0,109,106,0,0,0,0,35,74,0,0,0,0, 111,106,0,0,110,106,0,0,0,0,0,0,108,51,0,0, 43,75,112,106,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,124,106,114,106,0,0,0,0,0,0, 0,0,0,0,0,0,115,106,0,0,0,0,0,0,0,0, 116,106,117,106,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,121,106,0,0,122,106,0,0, 0,0,120,106,0,0,0,0,0,0,0,0,0,0,118,106, 0,0,113,106,119,106,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,123,106,55,112,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,40,50,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,126,106,95,54,125,106,0,0, 0,0,0,0,34,107,0,0,33,107,0,0,0,0,0,0, 36,107,0,0,0,0,35,107,0,0,37,107,0,0,0,0, 49,61,0,0,38,107,0,0,0,0,39,107,0,0,0,0, 0,0,0,0,0,0,0,0,40,107,62,64,0,0,87,77, 0,0,41,107,0,0,0,0,36,74,70,71,42,107,0,0, 43,107,43,56,0,0,0,0,0,0,44,53,0,0,0,0, 0,0,44,107,0,0,0,0,107,59,65,71,45,107,0,0, 80,51,0,0,0,0,0,0,0,0,0,0,0,0,46,107, 0,0,0,0,0,0,0,0,48,107,119,77,0,0,47,107, 70,63,0,0,49,107,0,0,0,0,50,107,0,0,0,0, 51,107,81,52,0,0,0,0,0,0,0,0,0,0,0,0, 52,107,0,0,0,0,53,107,0,0,54,107,55,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,0,0,0,0,0,0,0,0,0, 81,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 56,107,0,0,57,107,58,107,0,0,0,0,0,0,0,0, 0,0,114,50,0,0,0,0,40,63,59,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,60,107,0,0,0,0,0,0,61,107,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,64,56,0,0, 123,68,62,107,0,0,0,0,0,0,0,0,87,55,0,0, 86,63,0,0,65,107,0,0,36,70,0,0,64,107,0,0, 0,0,49,55,0,0,0,0,63,107,119,66,45,53,0,0, 0,0,66,107,0,0,67,107,0,0,89,62,0,0,0,0, 0,0,109,55,0,0,68,107,0,0,0,0,0,0,0,0, 44,75,0,0,0,0,95,64,0,0,0,0,0,0,118,53, 0,0,117,76,74,65,0,0,69,107,0,0,0,0,0,0, 71,63,112,67,90,62,0,0,0,0,0,0,0,0,70,107, 0,0,0,0,0,0,0,0,73,107,0,0,74,107,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,62,58,66,66, 72,107,0,0,91,62,62,73,0,0,0,0,0,0,0,0, 0,0,71,107,0,0,0,0,108,59,0,0,83,49,0,0, 78,107,88,55,0,0,0,0,110,59,0,0,0,0,109,59, 0,0,77,79,77,107,76,107,39,65,0,0,77,53,67,79, 58,51,92,62,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,75,107,0,0,0,0,0,0,0,0,0,0, 80,107,0,0,81,107,79,107,0,0,88,56,0,0,64,77, 0,0,0,0,111,59,39,71,0,0,0,0,0,0,84,107, 0,0,64,64,0,0,66,67,0,0,0,0,54,77,0,0, 87,107,0,0,0,0,0,0,108,56,0,0,63,64,83,107, 0,0,88,107,109,56,85,107,86,107,0,0,82,107,0,0, 0,0,0,0,98,64,73,70,0,0,0,0,47,67,0,0, 93,50,0,0,0,0,0,0,0,0,0,0,0,0,112,72, 0,0,0,0,67,53,0,0,0,0,52,68,0,0,0,0, 91,107,0,0,89,107,0,0,0,0,76,67,0,0,0,0, 0,0,65,64,93,107,90,107,0,0,91,63,0,0,0,0, 74,78,0,0,0,0,0,0,64,79,0,0,0,0,0,0, 92,107,103,107,53,68,0,0,102,107,0,0,99,107,107,107, 100,107,0,0,96,107,0,0,124,68,95,107,0,0,0,0, 0,0,82,52,0,0,33,77,112,59,0,0,0,0,97,107, 0,0,94,107,0,0,0,0,0,0,101,107,116,61,0,0, 65,56,0,0,0,0,0,0,122,66,0,0,69,75,90,49, 98,48,0,0,37,70,0,0,0,0,105,107,0,0,0,0, 0,0,0,0,104,107,0,0,102,70,0,0,109,107,0,0, 0,0,0,0,98,107,0,0,108,107,110,107,0,0,44,56, 106,107,86,57,0,0,85,60,0,0,0,0,111,107,88,77, 0,0,0,0,0,0,0,0,114,107,0,0,117,107,0,0, 0,0,115,107,53,73,0,0,0,0,0,0,0,0,0,0, 0,0,112,107,0,0,0,0,0,0,0,0,0,0,96,54, 0,0,0,0,0,0,0,0,116,107,0,0,0,0,118,107, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,107, 0,0,0,0,119,107,0,0,121,107,120,107,0,0,0,0, 0,0,0,0,0,0,0,0,123,107,0,0,49,60,0,0, 125,107,124,107,104,73,0,0,0,0,33,108,0,0,0,0, 0,0,0,0,0,0,0,0,89,55,0,0,0,0,0,0, 0,0,126,107,34,108,0,0,0,0,35,108,68,53,65,102, 121,62,0,0,36,108,0,0,0,0,110,56,0,0,0,0, 0,0,0,0,0,0,37,108,0,0,0,0,38,108,0,0, 0,0,62,59,0,0,0,0,0,0,0,0,0,0,0,0, 78,90,0,0,39,108,0,0,40,108,0,0,50,61,0,0, 41,108,42,108,0,0,0,0,43,108,0,0,0,0,44,108, 45,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,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,67,0,0,0,0, 46,108,0,0,0,0,0,0,0,0,48,108,0,0,47,108, 0,0,0,0,0,0,0,0,38,70,0,0,49,108,0,0, 45,75,0,0,50,108,0,0,51,108,0,0,52,108,0,0, 0,0,0,0,0,0,53,108,0,0,0,0,0,0,0,0, 90,70,0,0,0,0,0,0,0,0,0,0,0,0,93,62, 54,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 107,57,46,80,55,108,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,56,108,63,73, 57,108,0,0,65,108,0,0,0,0,0,0,0,0,0,0, 58,108,0,0,0,0,60,108,0,0,0,0,0,0,59,108, 61,108,0,0,70,75,62,108,63,108,0,0,0,0,0,0, 0,0,0,0,64,108,0,0,0,0,0,0,66,108,0,0, 0,0,0,0,0,0,45,51,103,68,0,0,105,73,98,58, 87,57,0,0,0,0,0,0,0,0,79,73,95,50,78,72, 69,108,83,52,85,64,68,108,73,108,121,67,99,76,0,0, 71,108,72,108,46,53,0,0,74,108,99,71,95,66,0,0, 0,0,113,72,61,69,70,108,0,0,71,75,108,50,76,108, 40,79,66,68,69,79,0,0,0,0,113,59,75,108,0,0, 49,66,0,0,0,0,92,108,77,108,0,0,0,0,120,70, 0,0,80,73,0,0,0,0,0,0,0,0,0,0,0,0, 79,108,63,59,114,59,0,0,94,62,0,0,101,71,0,0, 45,56,78,108,40,65,0,0,106,73,0,0,0,0,0,0, 65,60,0,0,0,0,82,69,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 81,108,82,108,88,57,80,108,0,0,0,0,0,0,0,0, 0,0,0,0,83,108,84,108,0,0,86,108,35,66,0,0, 85,108,102,52,0,0,88,108,0,0,87,108,89,108,0,0, 0,0,91,108,93,108,0,0,94,108,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,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,64,0,0,79,60,95,108,0,0,0,0, 0,0,82,51,0,0,96,108,0,0,0,0,118,65,97,108, 0,0,98,108,107,73,0,0,0,0,47,53,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,108, 0,0,0,0,0,0,54,68,0,0,0,0,0,0,0,0, 91,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,0,0,0,100,108, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,113,60,0,0,0,0,0,0,0,0,118,63,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,45,66,0,0,0,0,0,0,0,0,0,0,0,0, 103,108,0,0,0,0,0,0,102,108,0,0,0,0,0,0, 101,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,109,108,107,108,0,0,0,0,104,108,0,0,0,0, 0,0,0,0,0,0,0,0,106,108,0,0,0,0,0,0, 105,108,108,108,0,0,119,53,0,0,112,108,0,0,87,64, 0,0,113,108,0,0,0,0,0,0,0,0,89,56,0,0, 110,108,111,108,0,0,0,0,0,0,41,79,0,0,0,0, 0,0,55,68,0,0,41,65,0,0,0,0,0,0,0,0, 0,0,0,0,114,108,0,0,0,0,117,108,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,108,116,108, 89,77,0,0,0,0,0,0,0,0,39,70,120,108,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,118,108,119,108,121,108,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 41,109,0,0,0,0,0,0,0,0,0,0,124,108,0,0, 0,0,0,0,125,108,123,108,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 122,108,0,0,125,68,0,0,0,0,33,109,37,109,34,109, 126,108,0,0,35,109,0,0,0,0,0,0,36,109,0,0, 0,0,0,0,0,0,43,109,0,0,0,0,0,0,38,109, 0,0,0,0,0,0,0,0,0,0,88,64,40,109,0,0, 0,0,42,109,39,109,0,0,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,109,0,0,51,61,0,0,44,109,0,0,0,0,0,0, 0,0,0,0,46,109,0,0,0,0,0,0,0,0,47,109, 0,0,0,0,50,109,49,109,0,0,48,109,0,0,0,0, 52,109,51,109,0,0,118,76,0,0,0,0,0,0,54,109, 0,0,53,109,55,109,0,0,0,0,0,0,0,0,56,109, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,109, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 57,109,72,63,59,109,0,0,0,0,109,54,60,109,62,109, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,63,109,0,0,0,0,0,0, 0,0,0,0,0,0,64,109,61,109,0,0,65,109,0,0, 86,60,66,109,48,53,51,55,0,0,0,0,0,0,0,0, 46,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,67,109,0,0,0,0,0,0,112,70,0,0,0,0, 62,69,68,109,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,71,109,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,52,60,0,0, 0,0,70,109,69,109,90,55,72,109,0,0,0,0,0,0, 0,0,83,51,0,0,74,109,0,0,0,0,0,0,92,58, 73,109,0,0,82,109,0,0,0,0,0,0,0,0,0,0, 76,109,78,109,101,74,75,109,0,0,0,0,0,0,77,109, 0,0,81,109,79,109,49,53,0,0,80,109,0,0,0,0, 0,0,0,0,0,0,0,0,83,109,0,0,0,0,90,71, 88,78,0,0,0,0,0,0,0,0,52,61,0,0,0,0, 0,0,84,109,0,0,0,0,0,0,0,0,34,77,86,109, 0,0,85,109,0,0,0,0,89,109,65,77,0,0,0,0, 88,109,0,0,109,51,87,109,92,109,0,0,0,0,91,109, 0,0,0,0,90,109,50,69,93,109,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,94,109,0,0,0,0, 0,0,0,0,95,109,0,0,0,0,108,57,0,0,37,55, 96,109,97,109,98,109,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,73,63,99,109,0,0,45,60,100,109,0,0,0,0, 0,0,101,109,0,0,0,0,0,0,33,82,126,81,0,0, 0,0,0,0,0,0,102,109,112,101,103,109,36,67,43,63, 64,71,0,0,0,0,0,0,0,0,104,109,0,0,0,0, 85,74,84,68,126,57,0,0,0,0,41,67,0,0,0,0, 42,49,0,0,120,75,87,63,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,94,55,0,0,0,0,97,54, 0,0,0,0,86,74,0,0,0,0,0,0,0,0,0,0, 105,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 107,109,0,0,0,0,106,109,96,50,0,0,0,0,110,109, 108,109,119,71,0,0,51,69,0,0,109,109,82,61,0,0, 0,0,0,0,111,109,0,0,0,0,66,76,126,109,113,109, 114,109,0,0,0,0,73,68,0,0,0,0,96,66,119,65, 0,0,40,70,0,0,112,109,85,53,0,0,0,0,0,0, 0,0,121,109,0,0,118,109,37,110,41,70,96,67,115,109, 0,0,126,68,83,69,116,109,120,109,96,63,0,0,103,71, 76,68,0,0,0,0,66,64,119,109,46,66,36,66,117,109, 41,48,34,79,0,0,0,0,0,0,122,109,0,0,0,0, 0,0,0,0,0,0,0,0,97,66,0,0,0,0,53,61, 74,63,0,0,0,0,124,109,123,109,0,0,111,48,125,109, 0,0,0,0,47,73,0,0,39,110,0,0,0,0,91,70, 107,63,0,0,0,0,89,67,0,0,120,54,0,0,38,110, 55,77,63,49,0,0,87,74,97,50,33,110,34,110,35,110, 36,110,59,70,35,67,99,48,40,110,0,0,41,110,90,77, 0,0,0,0,61,66,0,0,42,110,0,0,115,49,76,65, 0,0,47,56,0,0,35,116,0,0,0,0,43,110,44,69, 0,0,0,0,0,0,120,65,87,60,44,110,0,0,0,0, 47,110,0,0,0,0,101,61,45,110,43,65,42,65,0,0, 100,48,0,0,75,78,49,110,0,0,114,72,51,110,50,110, 48,110,100,99,84,52,0,0,0,0,118,70,0,0,53,110, 52,110,0,0,0,0,0,0,0,0,54,110,0,0,56,77, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,97,70,0,0,0,0,46,75,0,0,55,110,0,0, 89,60,0,0,0,0,0,0,0,0,56,110,0,0,57,110, 0,0,0,0,0,0,58,110,0,0,0,0,33,69,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,48, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 89,57,0,0,0,0,0,0,58,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,62,110,0,0,0,0,0,0,0,0,0,0,52,55, 59,110,0,0,60,110,0,0,0,0,0,0,116,73,0,0, 0,0,0,0,0,0,84,51,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,57,77,0,0,63,54,0,0,0,0, 0,0,0,0,0,0,84,69,0,0,0,0,0,0,0,0, 63,110,0,0,0,0,0,0,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,110,0,0,0,0,0,0,0,0,0,0,0,0,65,110, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,34,69,0,0,0,0,67,110,0,0, 66,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,70, 68,110,54,61,96,60,91,71,113,67,0,0,0,0,0,0, 114,60,0,0,108,63,0,0,69,110,0,0,70,110,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 93,63,71,110,0,0,72,110,0,0,0,0,0,0,73,110, 111,77,0,0,55,61,0,0,0,0,0,0,0,0,0,0, 75,110,74,110,0,0,90,57,0,0,115,57,64,59,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 78,110,0,0,0,0,0,0,0,0,102,61,0,0,77,110, 0,0,76,110,0,0,105,66,0,0,0,0,111,56,0,0, 67,64,0,0,0,0,0,0,0,0,48,72,0,0,0,0, 0,0,0,0,57,61,0,0,0,0,0,0,0,0,0,0, 79,110,0,0,95,62,0,0,0,0,0,0,0,0,0,0, 82,110,80,110,0,0,0,0,0,0,81,110,0,0,0,0, 0,0,0,0,84,110,83,110,0,0,0,0,122,62,0,0, 85,110,0,0,0,0,0,0,0,0,0,0,86,110,87,110, 0,0,0,0,0,0,0,0,80,72,83,58,97,60,88,110, 0,0,89,110,36,78,69,61,110,76,76,78,90,110,98,54, 0,0,0,0,0,0,0,0,91,110,0,0,35,69,0,0, 0,0,94,110,120,51,75,63,0,0,92,110,0,0,93,110, 0,0,96,68,0,0,0,0,85,75,124,54,0,0,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,110,97,110,0,0,0,0,0,0, 0,0,0,0,95,110,0,0,0,0,99,110,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,95,70,67,51,0,0,0,0,103,110, 0,0,0,0,100,110,102,110,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,98,110,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,111, 0,0,0,0,101,110,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,107,78,0,0,0,0,90,56,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,111,110,0,0,0,0, 0,0,0,0,52,69,106,110,0,0,0,0,109,110,107,110, 0,0,112,110,0,0,0,0,0,0,0,0,113,110,0,0, 0,0,0,0,0,0,0,0,0,0,105,110,0,0,0,0, 118,110,116,49,0,0,0,0,104,110,0,0,0,0,0,0, 45,72,0,0,108,110,0,0,96,62,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,57, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,72,75,0,0,100,54,0,0, 0,0,70,61,0,0,60,70,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,65, 0,0,116,110,0,0,110,110,115,110,0,0,67,76,0,0, 56,68,117,110,114,110,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,44,65,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,121,110,0,0,120,110, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,119,110,0,0,0,0, 47,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,123,61,0,0,0,0,0,0,0,0,122,110, 95,74,0,0,0,0,84,49,0,0,0,0,0,0,0,0, 70,73,114,67,0,0,0,0,0,0,0,0,120,53,0,0, 124,110,0,0,93,57,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,44,59,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,123,110,109,63,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,110,63,33,111, 35,111,0,0,0,0,0,0,0,0,0,0,123,62,0,0, 34,111,36,111,0,0,0,0,83,54,0,0,69,73,0,0, 0,0,98,60,35,79,0,0,126,110,120,58,0,0,0,0, 63,79,0,0,0,0,38,111,0,0,0,0,0,0,0,0, 37,111,39,111,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,125,110,0,0,0,0,0,0,0,0,0,0, 0,0,105,70,0,0,85,69,0,0,0,0,0,0,0,0, 0,0,0,0,87,68,0,0,44,111,0,0,0,0,0,0, 0,0,67,67,40,111,0,0,0,0,0,0,41,111,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,45,55,0,0,43,111,0,0,0,0,0,0, 0,0,0,0,0,0,48,56,0,0,0,0,0,0,0,0, 0,0,0,0,42,111,0,0,97,62,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,121,51,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,48,111,0,0,63,58,121,65,0,0,0,0, 74,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,59,51,0,0,0,0, 0,0,0,0,46,111,47,111,67,68,0,0,45,111,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,111, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,55,111,0,0,0,0,0,0,0,0,58,111,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,57,111,45,69, 0,0,0,0,0,0,0,0,50,111,51,111,54,111,0,0, 0,0,0,0,0,0,56,111,0,0,0,0,0,0,64,54, 0,0,0,0,59,111,53,111,0,0,0,0,52,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,63,111,0,0,0,0,0,0,64,111,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,65,111,0,0, 0,0,62,111,61,111,0,0,0,0,0,0,98,62,42,70, 60,111,0,0,0,0,0,0,0,0,0,0,0,0,69,111, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,67,111,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,68,111,66,111,0,0,120,66,0,0, 70,111,0,0,0,0,0,0,0,0,0,0,0,0,71,111, 0,0,0,0,73,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,85,52, 72,111,122,76,0,0,0,0,0,0,0,0,0,0,0,0, 84,111,74,111,0,0,0,0,77,111,0,0,75,111,0,0, 76,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 78,111,0,0,0,0,0,0,0,0,0,0,80,111,0,0, 0,0,0,0,0,0,81,111,0,0,82,111,0,0,0,0, 0,0,0,0,85,111,83,111,86,111,88,111,0,0,87,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,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,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,68,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,103,76,0,0, 89,111,46,65,0,0,0,0,0,0,90,111,0,0,68,74, 91,111,43,51,0,0,0,0,0,0,60,49,0,0,87,52, 0,0,86,52,92,111,0,0,93,111,0,0,94,111,95,111, 0,0,0,0,0,0,0,0,0,0,0,0,96,111,0,0, 88,52,85,51,94,57,54,72,0,0,98,111,97,111,0,0, 0,0,0,0,0,0,99,111,0,0,0,0,0,0,0,0, 92,49,0,0,0,0,0,0,0,0,0,0,0,0,102,111, 0,0,101,111,100,111,0,0,103,111,0,0,0,0,0,0, 0,0,106,111,0,0,0,0,0,0,71,48,0,0,0,0, 104,111,0,0,108,111,107,111,0,0,0,0,0,0,0,0, 0,0,0,0,110,111,109,111,111,111,0,0,46,70,0,0, 0,0,0,0,112,111,0,0,0,0,0,0,0,0,113,111, 115,111,0,0,0,0,114,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,108,73,0,0,0,0,0,0,0,0,116,111, 0,0,0,0,0,0,0,0,0,0,0,0,117,111,0,0, 101,58,0,0,0,0,0,0,118,111,119,111,0,0,0,0, 73,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,75,65,0,0,0,0,0,0,36,48,75,66,0,0, 120,111,0,0,109,73,0,0,0,0,0,0,0,0,0,0, 0,0,123,111,121,111,95,57,0,0,122,111,66,56,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,69,74,125,111,33,112,126,111,34,112,0,0,0,0, 33,49,88,63,124,61,89,52,35,112,0,0,0,0,0,0, 102,71,0,0,37,112,0,0,0,0,0,0,34,49,0,0, 36,112,68,68,0,0,77,78,43,70,124,111,38,78,0,0, 49,56,0,0,0,0,91,77,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,121,54,52,78,0,0,40,55,0,0, 98,66,33,103,0,0,38,112,44,51,111,63,0,0,0,0, 0,0,0,0,86,51,40,112,0,0,41,112,39,112,100,55, 0,0,93,58,99,62,0,0,0,0,0,0,35,49,0,0, 0,0,89,78,0,0,0,0,0,0,43,112,46,110,0,0, 42,112,0,0,0,0,0,0,0,0,0,0,46,112,44,112, 45,112,0,0,47,112,0,0,48,112,108,78,49,112,50,112, 0,0,73,64,59,72,0,0,0,0,0,0,125,63,103,52, 0,0,0,0,58,77,109,50,56,61,91,56,0,0,53,112, 0,0,52,112,115,59,54,112,51,112,0,0,0,0,40,59, 0,0,0,0,0,0,58,112,45,106,0,0,0,0,86,82, 0,0,119,63,56,112,0,0,0,0,0,0,0,0,0,0, 37,78,113,70,0,0,0,0,0,0,0,0,43,49,0,0, 99,64,54,60,0,0,0,0,0,0,0,0,55,74,0,0, 64,49,0,0,0,0,0,0,109,78,107,77,0,0,59,112, 0,0,69,69,0,0,0,0,0,0,0,0,123,60,0,0, 0,0,0,0,60,112,0,0,61,112,76,63,62,112,0,0, 110,78,0,0,0,0,57,112,64,112,66,112,0,0,65,112, 0,0,63,112,0,0,0,0,67,112,0,0,0,0,68,112, 0,0,0,0,122,65,0,0,98,50,0,0,0,0,0,0, 0,0,0,0,69,112,0,0,0,0,56,76,0,0,0,0, 70,112,0,0,0,0,0,0,0,0,0,0,71,112,0,0, 42,79,0,0,0,0,0,0,0,0,0,0,49,91,72,112, 0,0,0,0,0,0,73,112,74,112,0,0,0,0,0,0, 78,112,0,0,75,112,0,0,76,112,0,0,77,112,79,112, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 68,64,0,0,0,0,0,0,119,76,0,0,0,0,69,64, 0,0,0,0,80,112,0,0,115,72,0,0,81,112,83,115, 76,76,0,0,82,112,0,0,83,112,0,0,84,112,87,51, 0,0,86,112,0,0,87,112,0,0,0,0,0,0,89,63, 0,0,0,0,36,55,0,0,0,0,0,0,0,0,88,112, 92,112,0,0,90,112,0,0,0,0,0,0,0,0,91,112, 0,0,0,0,115,51,89,112,93,112,0,0,0,0,0,0, 0,0,94,112,0,0,72,48,0,0,95,112,96,112,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,100,62,0,0, 0,0,0,0,97,112,0,0,0,0,0,0,71,53,0,0, 0,0,100,112,0,0,0,0,99,112,0,0,98,112,0,0, 0,0,113,107,0,0,92,74,0,0,0,0,0,0,0,0, 0,0,101,112,102,112,0,0,0,0,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,112,0,0,0,0,104,112,0,0,105,112,0,0, 0,0,106,112,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,90,52,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,107,112,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,108,112,35,71,0,0,0,0,0,0, 110,112,59,50,0,0,113,112,112,112,0,0,0,0,0,0, 0,0,36,49,0,0,0,0,0,0,65,54,0,0,71,74, 58,68,34,58,0,0,96,57,103,61,0,0,92,63,0,0, 0,0,0,0,115,112,0,0,0,0,114,112,66,77,104,52, 82,72,92,70,0,0,0,0,0,0,124,63,78,78,0,0, 116,112,0,0,0,0,0,0,0,0,0,0,0,0,118,112, 0,0,0,0,117,112,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,75,75,44,70,0,0,0,0,0,0,0,0, 0,0,0,0,80,49,0,0,0,0,119,112,91,55,0,0, 0,0,81,73,106,77,120,112,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,121,112,0,0,0,0,0,0, 0,0,123,112,106,66,91,51,92,51,122,112,0,0,0,0, 0,0,0,0,105,52,50,56,0,0,0,0,106,52,0,0, 0,0,63,69,0,0,0,0,96,78,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,92,56,0,0,0,0, 0,0,124,112,0,0,0,0,0,0,125,112,126,112,33,113, 0,0,35,113,34,113,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,119,73,0,0, 36,113,0,0,0,0,0,0,0,0,37,113,0,0,38,113, 0,0,0,0,0,0,0,0,39,113,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,113,40,113,0,0,42,113,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,116,72,76,102,0,0,0,0,41,63,0,0,0,0, 50,53,0,0,0,0,0,0,0,0,0,0,0,0,43,113, 0,0,44,113,0,0,44,82,59,93,83,72,0,0,0,0, 123,48,0,0,59,48,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,59,48,75,126,62,0,0,0,0,0,0, 0,0,45,113,0,0,95,76,0,0,0,0,0,0,46,113, 92,77,0,0,66,49,0,0,0,0,0,0,65,59,0,0, 47,113,110,50,48,113,0,0,0,0,0,0,49,113,0,0, 0,0,0,0,0,0,51,113,52,113,0,0,54,113,50,113, 0,0,0,0,53,113,0,0,0,0,0,0,91,52,0,0, 0,0,0,0,55,113,0,0,56,113,0,0,0,0,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,113,58,113,0,0,0,0,0,0, 59,113,0,0,0,0,61,113,0,0,0,0,0,0,60,113, 0,0,63,113,66,113,0,0,0,0,0,0,62,113,64,113, 65,113,0,0,0,0,67,113,0,0,66,54,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,115,60,68,113,69,113,97,57, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,70,113,0,0,0,0,62,51,0,0, 0,0,0,0,79,71,71,113,72,113,0,0,0,0,0,0, 0,0,90,67,107,70,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,73,113,0,0,0,0,0,0,0,0,125,71, 0,0,0,0,76,66,88,49,110,54,0,0,111,54,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,67,78,113, 112,54,0,0,0,0,111,50,0,0,0,0,77,113,0,0, 0,0,75,113,0,0,76,113,0,0,74,113,0,0,0,0, 88,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,79,113,80,113,0,0,0,0,81,113, 82,113,0,0,0,0,0,0,0,0,0,0,84,113,0,0, 0,0,83,113,0,0,0,0,0,0,89,61,0,0,85,113, 0,0,0,0,0,0,87,113,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,51,53,86,113,0,0,0,0, 123,65,51,56,0,0,0,0,0,0,0,0,0,0,89,113, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,77,66,0,0, 0,0,90,113,0,0,0,0,0,0,0,0,45,70,0,0, 0,0,0,0,0,0,0,0,0,0,91,113,0,0,0,0, 0,0,0,0,0,0,0,0,96,113,0,0,94,113,0,0, 93,113,95,113,0,0,92,113,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,98,113,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,97,113,0,0,100,113,0,0,0,0, 67,54,99,113,0,0,0,0,0,0,101,113,0,0,0,0, 102,113,0,0,104,113,103,113,0,0,0,0,0,0,105,113, 107,113,106,113,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,124,57,0,0, 0,0,0,0,0,0,108,113,0,0,0,0,109,113,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,60,51,0,0, 0,0,0,0,110,113,0,0,0,0,0,0,111,113,0,0, 0,0,0,0,113,63,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,112,113,0,0,113,113, 0,0,114,113,115,113,0,0,0,0,0,0,98,57,0,0, 0,0,0,0,0,0,0,0,116,113,117,113,0,0,0,0, 118,113,119,113,0,0,0,0,120,113,0,0,0,0,0,0, 49,72,122,113,0,0,38,73,123,113,121,113,0,0,125,113, 0,0,0,0,124,113,0,0,0,0,126,113,0,0,0,0, 0,0,33,114,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,34,114,0,0,0,0,0,0, 0,0,0,0,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,114,0,0, 36,114,0,0,0,0,0,0,0,0,37,114,0,0,0,0, 38,114,39,114,0,0,40,114,0,0,41,114,42,114,43,114, 44,114,0,0,0,0,0,0,45,114,46,114,0,0,53,93, 47,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,120,100,52,53,0,0,0,0,0,0,0,0,33,51, 50,58,49,114,48,114,37,76,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,51,114,52,114,50,114,0,0,53,114, 0,0,0,0,98,75,0,0,0,0,0,0,54,114,0,0, 123,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,37,79,0,0,0,0, 0,0,0,0,55,114,0,0,0,0,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,114,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,62,48,0,0,0,0,58,114, 43,74,56,114,0,0,0,0,59,114,60,114,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,61,114,62,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,63,114,0,0, 110,75,45,59,0,0,122,58,47,65,0,0,0,0,0,0, 0,0,0,0,64,114,0,0,0,0,0,0,0,0,67,114, 0,0,0,0,0,0,0,0,0,0,0,0,65,114,0,0, 0,0,0,0,0,0,0,0,68,114,0,0,0,0,113,56, 66,114,0,0,0,0,0,0,0,0,69,114,0,0,70,114, 71,114,0,0,75,114,0,0,42,59,0,0,0,0,0,0, 0,0,100,66,0,0,0,0,0,0,0,0,0,0,76,114, 73,114,72,114,74,114,0,0,0,0,0,0,95,55,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,80,114,79,114, 78,114,0,0,0,0,77,114,0,0,0,0,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,114,0,0,86,114,0,0,87,114,83,114, 89,114,0,0,85,114,98,51,0,0,0,0,76,79,0,0, 88,114,84,114,82,114,81,114,0,0,0,0,0,0,0,0, 0,0,92,114,0,0,0,0,0,0,0,0,0,0,95,114, 0,0,0,0,94,114,93,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,73,73,91,114,115,48,96,114,0,0, 98,114,0,0,0,0,0,0,0,0,0,0,0,0,111,51, 51,48,55,49,0,0,0,0,100,114,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,99,114,97,114,45,67,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 112,75,0,0,0,0,0,0,0,0,90,78,0,0,0,0, 101,114,0,0,0,0,0,0,0,0,0,0,102,114,0,0, 0,0,0,0,0,0,0,0,0,0,103,114,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,104,114,0,0,105,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,59,68,0,0,106,114,0,0,55,72, 0,0,111,114,107,114,0,0,0,0,0,0,108,114,0,0, 0,0,49,75,68,76,0,0,80,70,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,112,114,0,0,0,0,113,114,62,70,110,114,109,114, 0,0,0,0,0,0,0,0,42,50,0,0,0,0,0,0, 121,114,0,0,0,0,120,114,0,0,0,0,0,0,0,0, 0,0,117,49,0,0,0,0,0,0,118,114,0,0,0,0, 0,0,117,114,0,0,0,0,115,114,0,0,123,51,0,0, 114,114,50,60,116,114,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,99,57,0,0,0,0,124,114,123,114,0,0,122,114, 0,0,0,0,119,114,0,0,125,114,0,0,126,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,37,115,36,115, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,115, 0,0,0,0,45,49,33,115,34,115,0,0,116,57,57,76, 0,0,0,0,35,115,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,50,75,0,0,0,0,43,115,0,0,0,0, 39,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 44,115,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,115,0,0,40,115, 0,0,0,0,0,0,0,0,0,0,92,55,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 45,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,46,115,0,0,0,0,0,0,0,0,47,115, 0,0,42,115,0,0,0,0,0,0,41,50,0,0,0,0, 48,115,0,0,97,68,0,0,0,0,0,0,52,115,0,0, 53,115,51,115,0,0,0,0,0,0,0,0,0,0,50,115, 56,115,0,0,49,115,0,0,54,115,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,55,115,0,0,0,0, 0,0,58,115,0,0,0,0,0,0,0,0,0,0,57,115, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,60,115,0,0,0,0,0,0, 0,0,0,0,0,0,61,115,0,0,62,115,0,0,0,0, 73,79,0,0,0,0,0,0,0,0,0,0,59,115,107,66, 109,58,0,0,0,0,63,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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,115,65,115,0,0,0,0,66,115,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,67,115,0,0,0,0,52,56,68,115, 0,0,0,0,0,0,69,115,0,0,47,60,0,0,70,115, 0,0,0,0,0,0,0,0,0,0,0,0,71,115,0,0, 0,0,72,115,73,115,0,0,0,0,0,0,0,0,76,115, 74,115,60,79,0,0,75,115,0,0,111,78,0,0,0,0, 0,0,0,0,0,0,77,115,0,0,91,78,0,0,0,0, 0,0,0,0,0,0,78,115,126,71,0,0,0,0,79,115, 81,115,0,0,0,0,82,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,80,115,109,57, 77,76,99,75,119,86,0,0,96,93,123,75,0,0,0,0, 0,0,0,0,43,50,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,84,115,80,53,85,115,86,115,87,115,0,0, 117,57,0,0,88,115,0,0,0,0,0,0,84,96,91,76, 0,0,99,66,89,115,91,115,90,115,0,0,92,115,0,0, 0,0,0,0,0,0,93,115,0,0,0,0,94,115,0,0, 0,0,0,0,0,0,0,0,0,0,95,115,0,0,0,0, 0,0,0,0,96,115,0,0,97,115,98,115,0,0,99,115, 0,0,100,115,101,115,102,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,103,115,104,115,0,0, 0,0,0,0,0,0,0,0,36,69,0,0,0,0,0,0, 0,0,93,56,0,0,106,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,77,65,107,115, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,108,115,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,33,73,0,0,0,0,109,115,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 110,115,55,99,0,0,0,0,90,108,109,112,0,0,0,0, 111,115,0,0,112,115,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,114,115,115,115,116,115, 112,78,113,115,0,0,0,0,117,115,118,115,0,0,0,0, 120,115,0,0,119,115,0,0,0,0,0,0,0,0,0,0, 122,115,0,0,0,0,0,0,123,115,121,115,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,78,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,124,115,0,0,0,0,0,0,0,0, 0,0,0,0,125,115,84,99,0,0,0,0,126,115,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,33, 0,0,116,33,112,33,115,33,117,33,0,0,74,33,75,33, 118,33,92,33,36,33,0,0,37,33,63,33,48,35,49,35, 50,35,51,35,52,35,53,35,54,35,55,35,56,35,57,35, 39,33,40,33,99,33,97,33,100,33,41,33,119,33,65,35, 66,35,67,35,68,35,69,35,70,35,71,35,72,35,73,35, 74,35,75,35,76,35,77,35,78,35,79,35,80,35,81,35, 82,35,83,35,84,35,85,35,86,35,87,35,88,35,89,35, 90,35,78,33,64,33,79,33,48,33,50,33,46,33,97,35, 98,35,99,35,100,35,101,35,102,35,103,35,104,35,105,35, 106,35,107,35,108,35,109,35,110,35,111,35,112,35,113,35, 114,35,115,35,116,35,117,35,118,35,119,35,120,35,121,35, 122,35,80,33,67,33,81,33,0,0,0,0,113,33,114,33, 76,34,49,33,0,0,111,33,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,64,0,128,0, 160,0,224,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,32,1,96,1,160,1,224,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,2,0,0, 0,0,0,0,80,2,0,0,128,2,176,2,240,2,48,3, 112,3,0,0,160,3,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,224,3,32,4,64,4,128,4,192,4,0,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,64,5,128,5, 192,5,0,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,0,0,0,0,0,0,0,0,0,0,64,6,128,6, 192,6,0,7,64,7,128,7,192,7,0,8,64,8,128,8, 192,8,0,9,64,9,128,9,192,9,0,10,64,10,128,10, 192,10,0,11,64,11,128,11,192,11,0,12,64,12,128,12, 192,12,0,13,64,13,128,13,192,13,0,14,64,14,128,14, 192,14,0,15,64,15,128,15,192,15,0,16,64,16,128,16, 192,16,0,17,64,17,128,17,192,17,0,18,64,18,128,18, 192,18,0,19,64,19,128,19,192,19,0,20,64,20,128,20, 192,20,0,21,64,21,128,21,192,21,0,22,64,22,128,22, 192,22,0,23,64,23,128,23,192,23,0,24,64,24,128,24, 192,24,0,25,64,25,128,25,192,25,0,26,64,26,128,26, 192,26,0,27,64,27,128,27,192,27,0,28,64,28,128,28, 192,28,0,29,64,29,128,29,192,29,0,30,64,30,128,30, 192,30,0,31,64,31,128,31,192,31,0,32,64,32,128,32, 192,32,0,33,64,33,128,33,192,33,0,34,64,34,128,34, 192,34,0,35,64,35,128,35,192,35,0,36,64,36,128,36, 192,36,0,37,64,37,128,37,192,37,0,38,64,38,128,38, 192,38,0,39,64,39,128,39,192,39,0,40,64,40,128,40, 192,40,0,41,64,41,128,41,192,41,0,42,64,42,128,42, 192,42,0,43,64,43,128,43,192,43,0,44,64,44,128,44, 192,44,0,45,64,45,128,45,192,45,0,46,64,46,128,46, 192,46,0,47,64,47,128,47,192,47,0,48,64,48,128,48, 192,48,0,49,64,49,128,49,192,49,0,50,64,50,128,50, 192,50,0,51,64,51,128,51,192,51,0,52,64,52,128,52, 192,52,0,53,64,53,128,53,192,53,0,54,64,54,128,54, 192,54,0,0,224,54,32,55,96,55,160,55,224,55,32,56, 96,56,160,56,224,56,32,57,96,57,160,57,224,57,32,58, 96,58,160,58,224,58,32,59,96,59,160,59,224,59,32,60, 96,60,160,60,224,60,32,61,96,61,160,61,224,61,32,62, 96,62,160,62,224,62,32,63,96,63,160,63,224,63,32,64, 96,64,160,64,224,64,32,65,96,65,160,65,224,65,32,66, 96,66,160,66,224,66,32,67,96,67,0,0,128,67,192,67, 0,68,64,68,128,68,160,68,224,68,32,69,96,69,160,69, 224,69,32,70,96,70,160,70,208,70,16,71,80,71,144,71, 208,71,16,72,80,72,144,72,208,72,16,73,80,73,144,73, 208,73,16,74,80,74,144,74,208,74,16,75,80,75,144,75, 208,75,0,0,0,0,224,75,32,76,96,76,144,76,208,76, 16,77,80,77,144,77,208,77,16,78,80,78,144,78,208,78, 16,79,80,79,144,79,208,79,0,80,64,80,128,80,192,80, 240,80,48,81,112,81,176,81,240,81,48,82,112,82,176,82, 0,0,240,82,48,83,112,83,176,83,240,83,48,84,80,84, 144,84,208,84,16,85,80,85,144,85,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,2,0,0,0,136,0,0,0,0,0,0,0, 136,0,0,0,140,0,0,0,2,0,0,0,148,0,0,0, 0,0,0,0,148,0,0,0,39,0,0,0,249,1,0,0, 134,4,0,0,169,0,0,0,216,5,0,0,14,0,0,0, 2,2,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,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,16,6,0,0,0,0,0,1, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0, 39,0,39,0,39,0,39,0,39,0,39,0,39,0,39,0, 39,0,39,0,39,0,39,0,66,0,39,0,39,0,125,0, 39,0,154,0,218,0,39,0,39,0,39,0,39,0,25,1, 69,1,122,1,39,0,39,0,39,0,39,0,185,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,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,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,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,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,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,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,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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,34,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,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,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,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, 3,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,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,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,7,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,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,0,0,10,0, 0,0,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,12,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,1,0,0,128,109,71,0,2, 34,86,0,2,55,57,0,2,116,58,0,2,116,91,0,2, 61,67,0,2,90,101,0,2,38,103,0,2,85,55,0,2, 102,64,0,2,120,112,0,2,77,66,0,2,170,170,170,170 } }; U_CDECL_END
the_stack_data/100390.c
#if 0 mini_open mini_buf 128 globals_on_stack mini_start shrinkelf INCLUDESRC LDSCRIPT default OPTFLAG -Os return #endif int main(){ volatile int ret=42; volatile const char * a1=""; volatile int a2=0; volatile a3=0; open(a1,a2,a3); return(ret); }
the_stack_data/80925.c
#include<stdio.h> #define bool int /* Function to check if x is power of 4*/ bool isPowerOfFour(int n) { if(n == 0) return 0; while(n != 1) { if(n % 4 != 0) return 0; n = n / 4; } return 1; } /*Driver program to test above function*/ int main() { int test_no = 64; if(isPowerOfFour(test_no)) printf("%d is a power of 4", test_no); else printf("%d is not a power of 4", test_no); getchar(); }
the_stack_data/190769302.c
#include<stdio.h> #include<math.h> #ifndef PI #define PI 3.14159 #endif #define area(y) (PI*y*y); #define fib double phi=(1+sqrt(5))/2; \ int fibno=round(pow(phi,i)/sqrt(5)); #define display printf("n%d=%d\n",i,fibno); int main(){ float area,side; printf("Enter Radius of the circle: "); scanf("%f",&side); area=area(side); printf("The area of the circle is: %.2f\n",area); int i,n; printf("Enter n= "); scanf("%d",&n); printf("The first %d fibonacci number are\n",n); for(i=0;i<n;i++){ fib; display; } return 0; }
the_stack_data/122014927.c
#include <stdio.h> #include <stdlib.h> #include <ctype.h> int main() { int contador = 0; char c; do{ contador += 1; printf("Digite 0 para sair do looping\n"); printf("%i quantidade de vezes. \n", contador); c = getchar(); } while(c != '0'); return 0; }
the_stack_data/145452673.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_isalnum.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: amoinier <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/23 17:36:45 by amoinier #+# #+# */ /* Updated: 2015/11/28 18:58:40 by amoinier ### ########.fr */ /* */ /* ************************************************************************** */ int ft_isalnum(int c) { if (c >= '0' && c <= '9') return (1); else if (c >= 'A' && c <= 'Z') return (1); else if (c >= 'a' && c <= 'z') return (1); else return (0); }
the_stack_data/234517701.c
#include <stdio.h> #include <stdlib.h> int main(int argc, char** argv){ if (2 > argc) { printf("Nombre de parametres insuffisants\n"); return 1; } int value = atoi(argv[1]); printf("Entier suivant : %i \n", ++value); return 0; }
the_stack_data/101018.c
#include <string.h> #include <stdio.h> int memcmp(const void *s1, const void *s2, size_t n) { const unsigned char *us1 = (const unsigned char *)s1; const unsigned char *us2 = (const unsigned char *)s2; while (n-- != 0) { if (*us1 != *us2) return (*us1 < *us2) ? -1 : +1; us1++; us2++; } return 0; } int main() { char *s1 = "iphone 4"; char *s2 = "iphone 5"; int r = memcmp(s1, s2, 8); printf("r = %d\n", r); r = memcmp(s1, s2, 7); printf("r = %d\n", r); return 0; }
the_stack_data/148578389.c
/* mbino - basic mbed APIs for the Arduino platform * Copyright (c) 2017, 2018 Thomas Kemmer * * 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 ARDUINO_ARCH_AVR #include "hal/spi_api.h" #if DEVICE_SPI #include <Arduino.h> #include "platform/mbino_error.h" #define SPI_INVARG MBED_MAKE_ERROR(MBED_MODULE_DRIVER_SPI, MBED_ERROR_CODE_INVALID_ARGUMENT) #define SPCR_MODE(x) (((x) & 3) << CPHA) #define SPCR_SPR(x) (((x) & 3) << SPR0) #define SPSR_SPR(x) (((x) & 4) ? (1 << SPI2X) : 0) /* Table 23-5. Relationship between SCK and Oscillator Frequency * SPI2X SPR01 SPR00 SCK * 0 0 0 fosc/4 * 0 0 1 fosc/16 * 0 1 0 fosc/64 * 0 1 1 fosc/128 * 1 0 0 fosc/2 * 1 0 1 fosc/8 * 1 1 0 fosc/32 * 1 1 1 fosc/64 */ static int spi_clock_rate(long f) { if (f >= F_CPU / 2) { return 4; } else if (f >= F_CPU / 4) { return 0; } else if (f >= F_CPU / 8) { return 5; } else if (f >= F_CPU / 16) { return 1; } else if (f >= F_CPU / 32) { return 6; } else if (f >= F_CPU / 64) { return 2; } else { return 3; } } static void spi_pinout(PinName pin) { uint8_t port = digitalPinToPort(pin); uint8_t mask = digitalPinToBitMask(pin); volatile uint8_t *reg = portModeRegister(port); uint8_t sreg = SREG; cli(); *reg |= mask; SREG = sreg; } void spi_init(spi_t *obj, PinName mosi, PinName miso, PinName sclk, PinName ssel) { if (mosi != SPI_MOSI || miso != SPI_MISO || sclk != SPI_SCK) { MBINO_ERROR(SPI_INVARG, "SPI pin mapping failed"); } else if (ssel != NC && ssel != SPI_SS) { MBINO_ERROR(SPI_INVARG, "SPI SSEL pin mapping failed"); } else { // default is master, 8 bits, mode 0, and a clock frequency of 1MHz obj->spr = spi_clock_rate(1000000L); // if SS becomes a low input in master mode, SPI switches to slave mode spi_pinout(SPI_SS); SPCR = (1 << SPE) | (1 << MSTR) | SPCR_MODE(0) | SPCR_SPR(obj->spr); SPSR = SPSR_SPR(obj->spr); // Arduino SPI library sets this *after* enabling SPI to avoid // accidentally clocking in a single bit, since the lines go // directly from "input" to SPI control spi_pinout(SPI_MOSI); spi_pinout(SPI_SCK); // AVR151: clear SPI interrupt flag by reading SPSR and SPDR (void)SPSR; (void)SPDR; } } void spi_free(spi_t *obj) { SPCR = 0; } void spi_format(spi_t *obj, int bits, int mode, int slave) { // note: only 8 bits are currently supported if (slave) { spi_pinout(SPI_MISO); // in slave mode SPR0 and SPR1 are not used SPCR = (1 << SPE) | SPCR_MODE(mode); } else { SPCR = (1 << SPE) | (1 << MSTR) | SPCR_MODE(mode) | SPCR_SPR(obj->spr); } // AVR151: clear SPI interrupt flag by reading SPSR and SPDR (void)SPSR; (void)SPDR; } void spi_frequency(spi_t *obj, long hz) { obj->spr = spi_clock_rate(hz); uint8_t sreg = SREG; cli(); SPCR = (SPCR & ~SPCR_SPR(~0)) | SPCR_SPR(obj->spr); SPSR = SPSR_SPR(obj->spr); SREG = sreg; } int spi_master_write(spi_t *obj, int value) { SPDR = value; while (!(SPSR & (1 << SPIF))); return SPDR; } int spi_master_block_write(spi_t *obj, const char *tx_buffer, int tx_length, char *rx_buffer, int rx_length, char write_fill) { int n = tx_length < rx_length ? tx_length : rx_length; for (int i = 0; i != n; ++i) { rx_buffer[i] = spi_master_write(obj, tx_buffer[i]); } while (tx_length > n) { spi_master_write(obj, tx_buffer[n++]); } while (rx_length > n) { rx_buffer[n++] = spi_master_write(obj, write_fill); } return n; } int spi_slave_receive(spi_t *obj) { return (SPSR & (1 << SPIF)); } int spi_slave_read(spi_t *obj) { while (!(SPSR & (1 << SPIF))); return SPDR; } void spi_slave_write(spi_t *obj, int value) { SPDR = value; } int spi_busy(spi_t *obj) { return 0; // TODO: proper implementation on AVR? } uint8_t spi_get_module(spi_t *obj) { return 0; } #endif #endif
the_stack_data/560272.c
#include <stdio.h> int main() { printf("Hello PHMon!\n"); return 0; }
the_stack_data/1237266.c
char c; char *cp; const char cc; char const cc2; const char *ccp; char const *ccp2; char * const ccp3; char const * const ccp4; volatile char vc; char volatile vc2; volatile char *vcp; char volatile *vcp2; char * volatile vcp3; char volatile * volatile vcp4; char * restrict rcp; char *__restrict__ rcp2; void *vp; const void *cvp; void const *cvp2; void * const cvp3; void const * const cvp4; void *restrict rvp1; void *__restrict__ rvp2; const struct s *csp; struct s const *csp2; struct s * const csp3; struct s const * const csp4; struct s *restrict rsp1; struct s *__restrict__ rsp2; char * const volatile restrict cvrcp;
the_stack_data/109621.c
/* * Generated with test/generate_buildtest.pl, to check that such a simple * program builds. */ #include <openssl/opensslconf.h> #ifndef OPENSSL_NO_STDIO # include <stdio.h> #endif #ifndef OPENSSL_NO_RC2 # include <openssl/rc2.h> #endif int main() { return 0; }
the_stack_data/86074656.c
/************************************************************************/ /* Extract v4.0.0 */ /* (C) Copyright 1994,2015 R. Clint Whaley ([email protected]). */ /* This program is distributed under the terms of the Gnu */ /* General Public License (GPL), with the following two exceptions: */ /* (1) Clause (9), dealing with updating the GPL automatically, is */ /* specifically disallowed by the author. The author will */ /* determine if a newer GPL version is still appropriate. */ /* (2) The basefiles extract accepts as input, and the extracted */ /* files it produces as output, are specifically designated as */ /* as outside the scope if this license (i.e. they are *not* */ /* required by this license to be GPL). */ /* The full, unaltered, text of the GPL is included at the end of */ /* the program source listing. */ /* ------------------------------------------------------------------ */ /* Last modified by the author on 10/21/16. */ /************************************************************************/ #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <stdarg.h> #define NAMLEN 1024 #define LNLEN 8192 #define HANLEN 1024 #define SUBLEN 8192 #define F_nFlags 16 #define F_Case 0 #define F_RemBlank 1 #define F_Lang 2 #define F_Ugly 3 #define F_Verb 4 #define F_RepTab 5 #define F_LnLen 6 #define F_Append 7 #define F_TransNum 8 #define F_Query 9 #define F_AddKeys 10 #define F_Clint 11 #define F_FragMac 12 #define F_FragFlag 13 #define F_LLWarn 14 #define F_LocalProcs 15 #define EC_nExtCmnds 20 #define EC_Extract 0 #define EC_Skip 1 #define EC_Define 2 #define EC_Indent 3 #define EC_Key 4 #define EC_Abort 5 #define EC_MacSub 6 #define EC_EndExt 7 #define EC_Print 8 #define EC_Exp 9 #define EC_While 10 #define EC_Ifdef 11 #define EC_Dec 12 #define EC_AddKey 13 #define EC_Echo 14 #define EC_Iwhile 15 #define EC_Proc 16 #define EC_Output 17 #define EC_Iif 18 #define EC_Mif 19 #define MODE_IIF 1 /* integer if mode */ #define MODE_MIF 2 /* macro if mode */ /* * Mode count numbers */ #define NMC 2 #define MCIIF 0 #define MCMIF 1 /* * KILLMODE must be INMODE or it sets instead */ #define INMODE(modenv_, which_) ( (modenv_) | (which_) == (modenv_) ) #define SETMODE(modenv_, which_) (modenv_) = (modenv_) | (which_) #define KILLMODE(modenv_, which_) (modenv_) = (modenv_) ^ (which_) enum LANG {LangC, LangF77, LangF90, LangMake}; typedef struct fIlE2 FILE2; struct fIlE2 { char Fnam[NAMLEN]; unsigned int LineNo; FILE *Fp; FILE2 *prev; }; typedef struct aRgStAcK ARGSTACK; struct aRgStAcK { char KeyArgs[LNLEN]; int Not; ARGSTACK *next; }; typedef struct eXtMaC EXTMAC; struct eXtMaC { int HanLen, SubLen; char *Handle; char *Sub; EXTMAC *next; }; typedef struct pUnYmAc PUNYMAC; struct pUnYmAc { EXTMAC *mp; PUNYMAC *next; }; typedef struct kEyS KEYS; struct kEyS { char *KeyHandle, *Match; int HanLen; EXTMAC *KeyMac; ARGSTACK *MyArgs, *ArgStack; KEYS *next; }; typedef struct InDeNt INDENT; struct InDeNt { int start; int nspac; INDENT *next; INDENT *prev; }; typedef struct wOrDs WORDS; struct wOrDs { char *word; WORDS *next; }; typedef struct eXtPrOc EXTPROC; struct eXtPrOc { char *ProcNam, *FileNam; int nargs; WORDS *argnams; EXTPROC *next; }; /* * If localprocs is set, I kill not only all my procedures, but all those * defined by subservient extracts, and all proc macros become puny */ typedef struct eXtEnV EXTENV; struct eXtEnV { FILE2 *FpIn, *FpOut; char Flags[F_nFlags];/* logical flag array */ char ExtCmndOn[EC_nExtCmnds]; KEYS *KeyBase; /* pointer to the list of keys */ EXTPROC *MyProcs; /* Pointer to first procedure I've defined */ EXTPROC *MyFuncs; /* Pointer to first function I've defined */ EXTMAC *MyMacBeg; PUNYMAC *MyPunyMacs; /* Puny macros */ INDENT *clindent; /* command-line indent */ int Joining; /* are we in a mode where joining lines is OK */ }; FILE *Warn; EXTPROC *AllProcs=NULL, *AllFuncs=NULL; EXTMAC *MacroBase=NULL; INDENT *indbase=NULL; int LnCount=0, nLnNums, *LnNums; int ExtDone=0; char *JoinLn=NULL; unsigned int mode=0; unsigned int modedepth[NMC] = {0,0}; char *version = "4.0.0"; /* * Prototypes of the functions used before their definition */ void HandleLine(EXTENV *EE, char *line); void ApplyFlags(EXTENV *EE, char *line); #define Mupcase(C) ( ((C) > 96 && (C) < 123) ? (C) & 0xDF : (C) ) #define Mlowcase(C) ( ((C) > 64 && (C) < 91) ? (C) | 32 : (C) ) #define Mciswspace(C) ( (((C) > 8) && ((C) < 14)) || ((C) == 32) ) #define Mcisnum(C) ( ((C) > 47) && ((C) < 58) ) #define Mabs(x) ( (x) < 0 ? (x) * -1 : (x) ) void *Wmalloc(size_t len) { void *p; p = malloc(len); assert(p != NULL); return(p); } /*===========================================================================*/ /* The following routines are string handling routines of various flavors */ /* Before the C purists attack: I am well aware some of these routines */ /* duplicate functionality in the ANSI C standard libraries. However, I */ /* wrote the first version of extract a long time ago, and I ran into a */ /* platform where the ANSI C string libraries did not work properly . . . */ /*===========================================================================*/ int Wstrcmp(char *p1, char *p2) /*****************************************************************************/ /* PURPOSE: compares two strings pointed at by p1 & p2. */ /* RETURNS: 0 if they are not the same, else non-zero. */ /*****************************************************************************/ { if ( (*p1) && (*p1 == *p2) ) { do { p1++; p2++; } while ( (*p1 == *p2) && (*p1) ); } return( !(*p1 - *p2) ); } /* end Wstrcmp */ int WstrcmpN(char *p1, char *p2, int N) /*****************************************************************************/ /* PURPOSE: Compares 1st N characters of strings pointed to by p1 & p2. */ /* RETURNS: nonzero if they are equal, else 0 */ /*****************************************************************************/ { while( N && (*p1++ == *p2++) ) N--; return(!N); } int Wfnd_substr(char *str, char *sub) /*****************************************************************************/ /* PURPOSE: finds if a given string (sub) is contained in another (str). */ /* RETURNS: Position of start of string (starting from 1), 0 if string */ /* is not found. */ /*****************************************************************************/ { char ch=(*sub); char *str2, *sub2; int i=0; sub++; if (*str) { do { i++; if (*str++ == ch) /* 1st char matches */ { str2 = str; sub2 = sub; while ( (*str2) && (*str2 == *sub2) ) {str2++; sub2++;} if ( !(*sub2) ) return(i); } } while (*str); return(0); } else if (ch) return(0); else return(1); } int Wstrlen(char *p1) /*****************************************************************************/ /* PURPOSE: finds the number of characters in a string, not including \0. */ /* RETURNS: Length of string, not including null terminator. */ /*****************************************************************************/ { int length=0; if (*p1) do length++; while (*(++p1)); return (length); } int Wstrcpy(char *p1, char *p2) /*****************************************************************************/ /* PURPOSE: Copies string pointed at by p2 into p1. */ /* RETURNS: Length of strings, not including null terminator. */ /*****************************************************************************/ { int i=0; if (*p1++ = *p2++) do i++; while(*p1++ = *p2++); return(i); } void WstrcpyN(char *p1, char *p2, int N) /*****************************************************************************/ /* PURPOSE: Copies N characters from p2 into p1. */ /*****************************************************************************/ { if (N) do *p1++ = *p2++; while(--N); } void WstrcpyN_LOW(char *p1, char *p2, int N) /*****************************************************************************/ /* PURPOSE: Copies N characters from p2 into p1 while lowcasing. */ /*****************************************************************************/ { if (N) { do { *p1++ = Mlowcase(*p2); p2++; } while(--N); } } void WstrcpyN_UP(char *p1, char *p2, int N) /*****************************************************************************/ /* PURPOSE: Copies N characters from p2 into p1 while upcasing. */ /*****************************************************************************/ { if (N) { do { *p1++ = Mupcase(*p2); p2++; } while(--N); } } int WstrcpyUP(char *p1, char *p2) /*****************************************************************************/ /* PURPOSE: Copies string pointed at by p2 into p1, and upcases. */ /* RETURNS: Length of strings, not including null terminator. */ /*****************************************************************************/ { int i=0; while( *p1++ = Mupcase(*p2) ) { i++; p2++; } return(i); } int WstrcpyLOW(char *p1, char *p2) /*****************************************************************************/ /* PURPOSE: Copies string pointed at by p2 into p1, and lowcases. */ /* RETURNS: Length of strings, not including null terminator. */ /*****************************************************************************/ { int i=0; while( *p1++ = Mlowcase(*p2) ) { i++; p2++; } return(i); } int Wsafe_slowcase(char line[], int maxlen) /*****************************************************************************/ /* PURPOSE: Changes string to lowercase, not touching quoted strings. */ /* RETURNS: -1 if there is an unmatched quote, else 0. */ /* NOTE : algorithm fails if have two strings: 'ST1' STUFF 'ST2' */ /* if you wanna fix, need to know the language */ /*****************************************************************************/ { int i, ERROR=0; char quote; for (i=0; (line[i] && (i < maxlen)); i++) { line[i] = Mlowcase(line[i]); if (line[i] == 34 || line[i] == 39 || line[i] == '`') /* is a " or ' */ { quote = line[i++]; while(line[i]) i++; while(line[i] != quote) i--; if (i > maxlen) ERROR = -1; } } return(ERROR); } int Wsafe_supcase(char line[], int maxlen) /*****************************************************************************/ /* PURPOSE: Changes line to uppercase, not touching quoted strings. */ /* RETURNS: -1 if there is an unmatched quote, else 0. */ /* NOTE : algorithm fails if have two strings: 'ST1' STUFF 'ST2' */ /* if you wanna fix, need to know the language */ /*****************************************************************************/ { int i, ERROR=0; char quote; for (i=0; (line[i] && (i < maxlen)); i++) { line[i] = Mupcase(line[i]); if (line[i] == 34 || line[i] == 39 || line[i] == '`') /* is a " or ' */ { quote = line[i++]; while ( (line[i] - quote) && (line[i]) && (i < maxlen) ) i++; if ( line[i] != quote ) ERROR = -1; /* unmatched quote */ } } return(ERROR); } void Wslowcase(char *p1) /*****************************************************************************/ /* PURPOSE: Changes to lowercase entire string pointed to by p1. */ /*****************************************************************************/ { while(*p1 = Mlowcase(*p1)) p1++; } void Wsupcase(char *p1) /*****************************************************************************/ /* PURPOSE: Changes to uppercase entire string pointed to by p1. */ /*****************************************************************************/ { while(*p1 = Mupcase(*p1)) p1++; } void Wsstrip(char *p1) /*****************************************************************************/ /* PURPOSE: strip all white spaces from string */ /*****************************************************************************/ { char *p2=p1; do { if (Mciswspace(*p2)) p2++; else *p1++ = *p2++; } while (*p1); } void Wtab2spcs(char *p, int N) /*****************************************************************************/ /* PURPOSE: replace all tabs in string p with N spaces */ /*****************************************************************************/ { char tline[256]; int i; int Wstrcpy(char *p1, char *p2); while (*p) { if (*p == '\t') { Wstrcpy(tline, p+1); i = N; while (N--) *p++ = ' '; Wstrcpy(p, tline); } else p++; } } int Wstr2int(char *str, int *iptr) /*****************************************************************************/ /* PURPOSE: read an integer from string str into *iptr */ /* RETURNS: number of characters read in */ /*****************************************************************************/ { int i, j; sscanf(str, "%d", iptr); for (i=0, j=Mabs(*iptr); j > 0; i++) j /= 10; if (*iptr == 0) i=1; if (str[0] == '+' || str[0] == '-') i++; return(i); } void Wsafe_mws2spc(char *p1) /*****************************************************************************/ /* PURPOSE: replaces contiguous white spaces with 1 space, skip quotes. */ /*****************************************************************************/ { char *p2; p2 = p1; while (*p2) { if (*p1 == '"') { do *p2++ = *p1++; while(*p1 != '"'); *p2++ = *p1++; continue; } if (Mciswspace(*p1)) { *p2++ = ' '; while (Mciswspace(*p1)) p1++; continue; } while ( (*p2) && !(Mciswspace(*p1)) ) *p2++ = *p1++; } } void Wremove_trailing_blanks(char *p) /*****************************************************************************/ /* PURPOSE: Remove trailing whitespace from string p. */ /*****************************************************************************/ { char *st=p; if ( !(*p) ) return; do p++; while (*p); p--; while ( (Mciswspace(*p)) && (p != st) ) p--; if ( Mciswspace(*p) ) { *p = '\n'; p[1] = '\0'; } else { p[1] = '\n'; p[2] = '\0'; } } void CharSet(int N, char *x, char val) /*****************************************************************************/ /* Set N elements starting at x to val */ /*****************************************************************************/ { int i; for (i=0; i < N; i++) x[i] = val; } int commandcpy(char *out, char *in) /*****************************************************************************/ /* PURPOSE: copy in to out, remove all leading spaces, put 1 space after */ /* first word, lowcase first word, then copy rest string unchanged. */ /* RETURNS: Length of first word (the possible command). */ /*****************************************************************************/ { int i=0; while( Mciswspace(*in) ) in++; /* skip leading white spaces */ while( (*in) && !Mciswspace(*in) ) /* copy first word */ { *out++ = Mlowcase(*in); in++; i++; } /* * Only 1 space follows word, and copy rest of line unaltered */ *out++ = ' '; while( Mciswspace(*in) ) in++; while (*out++ = *in++); return(i); } void keycpy(char *out, char *in) /*****************************************************************************/ /* PURPOSE: copy in to out, remove all leading spaces, lowcase and put 1 */ /* space after each word, and leave stuff in ` ` alone. */ /*****************************************************************************/ { char *p, *ch; p = out; while (*in) { while( Mciswspace(*in) ) in++; /* skip leading spaces */ if (*in == '`') /* don't mess with ` ` quotes */ { ch = in; while (*ch) ch++; while (*ch != '`') ch--; while (in != ch) *out++ = *in++; *out++ = *in++; } while( (*in) && !Mciswspace(*in) ) /* copy word */ { *out++ = Mlowcase(*in); in++; } *out++ = ' '; /* white spaces collapse to 1 space */ if (*in) in++; } *out = '\0'; } /*===========================================================================*/ /* These functions print out error and warning messages from extract */ /*===========================================================================*/ void ExtWarn(EXTENV *EE, char *form, ...) { FILE2 *fp; va_list argptr; char cline[256]; int i; va_start(argptr, form); vsprintf(cline, form, argptr); va_end(argptr); /* * Remove newlines from cline */ for (i=0; cline[i]; i++); i--; if (cline[i] == '\n') cline[i--] = '\0'; if (EE) { fflush(EE->FpOut->Fp); fprintf(stderr, "\nExtract warning \'%s\'.\n", cline); fprintf(stderr, "Input file chain:\n"); fprintf(stderr, " Warning occured on line %d of file %s.\n", EE->FpIn->LineNo, EE->FpIn->Fnam); for (fp=EE->FpIn->prev; fp; fp = fp->prev) fprintf(stderr, " Which was extracted from line %d of file %s.\n", fp->LineNo, fp->Fnam); fprintf(stderr, "\nWarning occured after line %d of output file %s.\n", EE->FpOut->LineNo, EE->FpOut->Fnam); } else fprintf(stderr, "\nExtract warning \'%s\'\n", cline); } void ExtErr(EXTENV *EE, char *form, ...) { FILE2 *fp; va_list argptr; char cline[256]; int i; va_start(argptr, form); vsprintf(cline, form, argptr); va_end(argptr); /* * Remove newlines from cline */ for (i=0; cline[i]; i++); i--; if (cline[i] == '\n') cline[i--] = '\0'; if (EE) { if (EE->FpOut && EE->FpOut->Fp) fflush(EE->FpOut->Fp); fprintf(stderr, "\nExtract ERROR \'%s\'.\n", cline); if (EE->FpIn) { fprintf(stderr, "Input file chain:\n"); fprintf(stderr, " Error occured on line %d of file %s.\n", EE->FpIn->LineNo, EE->FpIn->Fnam); for (fp=EE->FpIn->prev; fp; fp = fp->prev) fprintf(stderr, " Which was extracted from line %d of file %s.\n", fp->LineNo, fp->Fnam); fprintf(stderr, "\nError occured after line %d of output file %s.\n\n", EE->FpOut->LineNo, EE->FpOut->Fnam); } } else fprintf(stderr, "\nExtract ERROR \'%s\'\n\n", cline); exit(1); } void HandleAtEscape(char *ln) { int i; while (i = Wfnd_substr(ln, "@(@)")) { Wstrcpy(ln+i, ln+i+3); ln += i; } } /*===========================================================================*/ /* These routines do basic file stuff */ /*===========================================================================*/ void PutLn(EXTENV *EE, char *line) { int ExtLn, h, i=0, k; static int j=0; char *tln; /* * Check if line needs to be joined with next line */ if (EE->Joining) { while(line[i]) i++; if (i) { i--; while(Mciswspace(line[i]) && i) i--; } ExtLn = (line[i] == '\\') && (i); if (ExtLn) ExtLn = line[i-1] == '@'; /* * If we are extending a line, or have an extended line in memory, * save the present line, and merge it with any previously stored lines */ if ( ExtLn || JoinLn ) { tln = malloc(i + j); for (k=0; k != j; k++) tln[k] = JoinLn[k]; if (ExtLn) h = i + j - 1; else h = i + j + 1; for (; k < h; k++) tln[k] = line[k-j]; tln[k] = '\n'; tln[k+1] = '\0'; j = h; if (JoinLn) free(JoinLn); JoinLn = tln; } else tln = line; } else { tln = line; ExtLn = 0; } /* * If this line wasn't extended, can finally dump to file */ if (!ExtLn) { EE->FpOut->LineNo++; if (!LnCount) { ApplyFlags(EE, tln); HandleAtEscape(tln); fputs(tln, EE->FpOut->Fp); } else if (EE->FpOut->LineNo == LnNums[nLnNums]) { fprintf(Warn, "\nLine %d of extracted file corresponds to line %d of \'%s\'\n", EE->FpOut->LineNo, EE->FpIn->LineNo, EE->FpIn->Fnam); nLnNums--; if (nLnNums == 0) { fprintf(Warn, "\n\nEXTRACT finished translating line numbers.\n\n"); exit(0); } } if (JoinLn) free(JoinLn); JoinLn = NULL; j = 0; } } int GetLn(EXTENV *EE, char *line) { if (ExtDone) return(0); EE->FpIn->LineNo++; /* return( (int) fgets(line, LNLEN, EE->FpIn->Fp) ); */ return( (fgets(line, LNLEN, EE->FpIn->Fp) != NULL) ); } FILE2 *OpenFile(EXTENV *EE, char *Fnam, char *mode) { char yorn; FILE2 *fp; fp = (FILE2 *) malloc(sizeof(*fp)); Wstrcpy(fp->Fnam, Fnam); fp->LineNo = 0; if (mode[0] == 'w') { fp->prev = EE->FpOut; if ( Wstrcmp(Fnam, "stdout") ) { fp->Fp = stdout; return(fp); } else if ( Wstrcmp(Fnam, "stderr") ) { fp->Fp = stderr; return(fp); } if (EE->Flags[F_Verb] > 2) fprintf(Warn, "Creating file %s.\n", Fnam); if (EE->Flags[F_Query]) { if ( !access(Fnam, 0) ) { fprintf(Warn, "File %s already exists. Overwrite?", Fnam); fflush(stdin); yorn = getchar(); if ( (yorn != 'y') && (yorn != 'Y') ) exit(0); } } } else if ( (mode[0] == 'r') && (mode[1] == '\0') ) { fp->prev = EE->FpIn; if ( Wstrcmp(Fnam, "stdin") ) { fp->Fp = stdin; return(fp); } if (EE->Flags[F_Verb] > 2) fprintf(Warn, "Opening file \'%s\' for input . . .\n", Fnam); if ( access(Fnam, 0) ) { fprintf(Warn, "Cannot find input file \'%s\'\n", Fnam); exit(1); } } fp->Fp = fopen(Fnam, mode); if (fp->Fp == NULL) ExtErr(EE, "Error opening file %s",Fnam); return(fp); } void CloseFile(EXTENV *EE, FILE2 *fp) { if (JoinLn) if (EE->FpOut == fp) PutLn(EE, "\0"); if (EE->Flags[F_Verb] > 2) fprintf(Warn, "Closing file \'%s\'.\n", fp->Fnam); if ( (fp->Fp != stderr) && (fp->Fp != stdin) && (fp->Fp != stdout) ) { if ( fclose(fp->Fp) == EOF ) ExtErr(EE, "Error closing file %s", fp->Fnam); } free(fp); } /* end close_file */ /*===========================================================================*/ /* These functions all deal with breaking lines into their respective words */ /*===========================================================================*/ static WORDS *GetWord(char *wrd) /*****************************************************************************/ /* PURPOSE: Safely allocates word of correct length */ /* RETURNS: Allocated WORD. */ /*****************************************************************************/ { WORDS *wp; wp = malloc(sizeof(WORDS)); wp->word = malloc( (Wstrlen(wrd)+1)*sizeof(char) ); Wstrcpy(wp->word, wrd); wp->next = NULL; return(wp); } static WORDS *KillWord(WORDS *wbase, WORDS *wkill) /*****************************************************************************/ /* PURPOSE: Kills single word wkill in list of words starting with wbase. */ /* RETURNS: Possibly new wbase. */ /*****************************************************************************/ { WORDS *wptr; if (wkill == wbase) wbase = wbase->next; else { for (wptr=wbase; wptr->next != wkill; wptr = wptr->next); wptr->next = wkill->next; } free(wkill->word); free(wkill); return(wbase); } static void KillWords(WORDS *wbase) /*****************************************************************************/ /* PURPOSE: Frees space used by words, starting at wbase. */ /*****************************************************************************/ { while(wbase) wbase = KillWord(wbase, wbase); } void PrintWords(WORDS *wbase) /*****************************************************************************/ /* PURPOSE: print words pointed to by wbase (debugging routine) */ /*****************************************************************************/ { printf("Words: "); while(wbase) { printf("'%s' ",wbase->word); wbase = wbase->next; } printf("\n"); } WORDS *GetVars(char *line, char Ab, char Ae) /*****************************************************************************/ /* PURPOSE: splits a line into its seperate variables for @declare. Ab and */ /* Ae are the array beginning and ending characters for your */ /* language ([] for C, and () for Fortran). Variables are */ /* seperated by whitespace(s) and/or a comma. */ /*****************************************************************************/ { int i=0, j, k; WORDS *wbase=NULL, *wp; static WORDS *wptr=NULL; char wrd[LNLEN]; if (line == NULL) { wptr = NULL; return(NULL); } while(Mciswspace(line[i])) i++; if (line[i] == '\0') return(NULL); wbase = GetWord(" "); if (wptr) { wp = wptr; wptr->next = wbase; } else wp = wbase; wptr = wbase; while(line[i]) { j = 0; while(line[i] != ',') /* get one word */ { if (line[i] == '@') /* check for sticky space */ { if (line[i+1] == '^') { wrd[j++] = ' '; i += 2; continue; } } if (Mciswspace(line[i])) { while(Mciswspace(line[i])) i++; if (line[i] != Ab) break; else continue; } if (line[i] == Ab) /* have an array declaration */ { k = 0; do { wrd[j++] = line[i]; if (line[i] == Ab) k++; else if (line[i] == Ae) k--; i++; } while(k); if (!line[i]) break; } else wrd[j++] = line[i++]; } wrd[j] = '\0'; wptr->next = GetWord(wrd); wptr = wptr->next; if (line[i] == ',') { i++; while(Mciswspace(line[i])) i++; } } if (wptr == wbase) wptr = wbase = KillWord(wp, wbase); else wbase = KillWord(wp, wbase); return(wbase); } WORDS *GetArgs(EXTENV *EE, char *line) /*****************************************************************************/ /* PURPOSE: splits a line into its seperate words by splitting on whitespcs, */ /* accepts args in double quotes as one arg. */ /*****************************************************************************/ { int i=0, j; WORDS *wptr, *wbase=NULL; char word[LNLEN]; while(Mciswspace(line[i])) i++; wptr = wbase = GetWord(" "); while(line[i]) { if (line[i] == '\"') { i++; for (j=0; (line[i] != '\"') && line[i]; word[j++] = line[i++]); if (!line[i]) ExtErr(EE, "Unmatched double quote."); i++; } else { j = 0; while(!Mciswspace(line[i]) && line[i]) { if (line[i] != '@' || line[i+1] != '^') word[j++] = line[i++]; else /* sticky space */ { word[j++] = ' '; i += 2; } } } word[j] = '\0'; wptr->next = GetWord(word); wptr = wptr->next; while(Mciswspace(line[i])) i++; } return( KillWord(wbase, wbase) ); } WORDS *GetWords(char *line) /*****************************************************************************/ /* PURPOSE: splits a line into its seperate words by splitting on whitespcs */ /*****************************************************************************/ { int i=0, j; WORDS *wptr, *wbase; char word[LNLEN]; while(Mciswspace(line[i])) i++; wptr = wbase = GetWord(" "); while(line[i]) { j = 0; while(!Mciswspace(line[i]) && line[i]) { if (line[i] != '@' || line[i+1] != '^') word[j++] = line[i++]; else /* sticky space */ { word[j++] = ' '; i += 2; } } word[j] = '\0'; wptr->next = GetWord(word); wptr = wptr->next; while(Mciswspace(line[i])) i++; } return( KillWord(wbase, wbase) ); } FILE *CreateListFile(EXTENV *EE, char *EndStr, int EndLen, char *line, char *tline) { FILE2 fp, *FpHold; char fsave[6]; int i, joining; joining = EE->Joining; EE->Joining = 0; sprintf(fp.Fnam, "Line%d_of_%s\n",EE->FpIn->LineNo, EE->FpIn->Fnam); fsave[0] = EE->Flags[F_Case]; fsave[1] = EE->Flags[F_RemBlank]; fsave[2] = EE->Flags[F_Ugly]; fsave[3] = EE->Flags[F_RepTab]; fsave[4] = EE->Flags[F_Clint]; fsave[5] = EE->Flags[F_LLWarn]; EE->Flags[F_Case] = EE->Flags[F_RemBlank] = EE->Flags[F_Ugly] = EE->Flags[F_RepTab] = EE->Flags[F_Clint] = EE->Flags[F_LLWarn] = 0; fp.LineNo = 0; fp.Fp = tmpfile(); FpHold = EE->FpOut; EE->FpOut = &fp; while(GetLn(EE, line)) { i = commandcpy(tline, line) + 1; if (i == EndLen) if ( WstrcmpN(tline, EndStr, EndLen) ) break; HandleLine(EE, line); } EE->FpOut = FpHold; EE->Flags[F_Case] = fsave[0]; EE->Flags[F_RemBlank] = fsave[1]; EE->Flags[F_Ugly] = fsave[2]; EE->Flags[F_RepTab] = fsave[3]; EE->Flags[F_Clint] = fsave[4]; EE->Flags[F_LLWarn] = fsave[5]; EE->Joining = joining; return(fp.Fp); } WORDS *fGetWords(EXTENV *EE, char *EndStr, int EndLen, char *line, char *tline) /*****************************************************************************/ /* PURPOSE: Gets words from the input file until EndStr is found. */ /*****************************************************************************/ { FILE *fp; WORDS *wptr, *wp; fp = CreateListFile(EE, EndStr, EndLen, line, tline); rewind(fp); if ( fgets(line, LNLEN, fp) ) { do /* skip leading blank lines */ { wp = wptr = GetWords(line); if (wp == NULL) if ( !fgets(line, LNLEN, fp) ) break; } while (wp == NULL); while( fgets(line, LNLEN, fp) ) { while (wp->next) wp = wp->next; wp->next = GetWords(line); } } fclose(fp); return(wptr); } WORDS *fGetVars(EXTENV *EE, char *EndStr, int EndLen, char *line, char *tline, char Ab, char Ae) /*****************************************************************************/ /* PURPOSE: Gets variables from the input file until EndStr is found. */ /*****************************************************************************/ { FILE *fp; WORDS *wptr=NULL, *wp; fp = CreateListFile(EE, EndStr, EndLen, line, tline); rewind(fp); if ( fgets(line, LNLEN, fp) ) { do { wptr = GetVars(line, Ab, Ae); if (!wptr) if ( !fgets(line, LNLEN, fp) ) break; } while (wptr == NULL); /* skip leading blank lines */ while( fgets(line, LNLEN, fp) ) GetVars(line, Ab, Ae); GetVars(NULL, Ab, Ae); } fclose(fp); return(wptr); } WORDS *GetKeys(char *line) /*****************************************************************************/ /* PURPOSE: Gets keyargs from keyline, puts a space at end. */ /*****************************************************************************/ { int i=0, j; WORDS *wptr, *wbase; char word[LNLEN]; while(Mciswspace(line[i])) i++; wptr = wbase = GetWord(" "); while(line[i]) { word[0] = ' '; for (j=1; !Mciswspace(line[i]); word[j++] = line[i++]); word[j++] = ' '; word[j] = '\0'; wptr->next = GetWord(word); wptr = wptr->next; while(Mciswspace(line[i])) i++; } return( KillWord(wbase,wbase) ); } WORDS *CreateKeyLine0(EXTENV *EE, WORDS *wbase, char *ln) { WORDS *wp, *wp0; wp = GetKeys(ln); if (wp) { if (!wbase) wbase = wp; else { for (wp0=wbase; wp0->next; wp0 = wp0->next); wp0->next = wp; } while (wp->next) wp = wp->next; if (Wfnd_substr(wp->word, "@\\")) /* ln extension */ { wbase = KillWord(wbase, wp); assert(GetLn(EE, ln)); CreateKeyLine0(EE, wbase, ln); } } return(wbase); } char *CreateKeyLine(EXTENV *EE, char *ln) { char *tln; WORDS *wp, *wbase; int i; wbase = CreateKeyLine0(EE, NULL, ln); for (wp=wbase, i=0; wp; wp = wp->next) i += Wstrlen(wp->word)+1; if (i >= LNLEN) ExtErr(EE, "Lame-ass static ARGSTACK allocation exceeded"); tln = malloc((i+1)*sizeof(char)); assert(tln); for (wp=wbase, i=0; wp; wp = wp->next) { i += WstrcpyLOW(tln+i, wp->word); tln[i++] = ' '; } tln[i] = '\0'; KillWords(wbase); return(tln); } void UpLowWords(char cas, WORDS *wbase) /*****************************************************************************/ /* PURPOSE: if cas == 'u', upcases all words, otherwise, lowcases all words. */ /*****************************************************************************/ { void (*fcase)(char *); if (cas == 'u') fcase = Wsupcase; else fcase = Wslowcase; while(wbase) { fcase(wbase->word); wbase = wbase->next; } } void RemQuoteWords(WORDS *wp) /*****************************************************************************/ /* PURPOSE: Removes quotes around words, if they exist, and stops when a */ /* word starts with - */ /*****************************************************************************/ { int i; while (wp) { if (wp->word[0] == '-') break; if (wp->word[0] == '\"') { i = Wstrcpy(wp->word, wp->word+1) - 1; assert(wp->word[i] == '\"'); wp->word[i] = '\0'; } wp = wp->next; } } WORDS *SortWords(char *cas, WORDS *wbase) /*****************************************************************************/ /* PURPOSE: sorts words in alphabetic order, and up or low cases them based */ /* on *cas. */ /*****************************************************************************/ { int i; WORDS *wbase2=NULL, *wptr, *wptr2, *prev; if (cas) UpLowWords(*cas, wbase); while(wbase) { /* * Find largest word left in original list */ wptr2 = wbase; for (wptr=wbase->next; wptr; wptr=wptr->next) { for (i=0; !(wptr->word[i] - wptr2->word[i]) && (i < SUBLEN); i++); if (wptr->word[i] > wptr2->word[i]) wptr2 = wptr; } /* * Remove largest word from original list */ for (wptr=wbase; (wptr != wptr2); wptr = wptr->next) prev = wptr; if (wptr == wbase) wbase = wbase->next; else prev->next = wptr->next; /* * Put largest word on second list */ wptr2->next = wbase2; wbase2 = wptr2; } return(wbase2); } int CountWords(WORDS *wp) /*****************************************************************************/ /* RETURNS: Number of words in list starting at wp */ /*****************************************************************************/ { int i; for (i=0; wp; wp = wp->next, i++); return(i); } /*===========================================================================*/ /* These routines all work on extract's macros. */ /*===========================================================================*/ EXTMAC *FindMac(char *handle) { int i; EXTMAC *ptr; i = Wstrlen(handle); for(ptr=MacroBase; ptr; ptr=ptr->next) { if (ptr->HanLen == i + 3) if( WstrcmpN(&(ptr->Handle[2]), handle, i) ) if( ptr->Handle[i+2] == ')' ) break; } return(ptr); } int CountMacros(void) { EXTMAC *p; int i; for (i=0,p=MacroBase; p; i++,p = p->next); return(i); } /************************************************************************/ /* The routines push_macro & pop_macro are the heart of extract's */ /* macro substitution utility. A macro is defined by: */ /* @define <handle> @<substitution>@ */ /* The @define must followed by one and only one space. */ /* The handle is everything until */ /* the next whitespace. The begin and end of the substitute string */ /* are demarked by the @ character. Therefore, if we wanted to */ /* substitute "joe" for "bob" in the text, we could have following */ /* definition: */ /* @define bob @joe@ */ /* the delimiter is @(handle) */ /* So, using the macro we've defined above, */ /* we would have the following: */ /* "Well, @(bob) is a fairy." */ /* Once extracted, this would read, "Well, joe is a fairy.". */ /* Macros are based on a stack, so to use old @define's you must */ /* do an @undef. */ /************************************************************************/ EXTMAC *PushMacro2(EXTENV *EE, int PUNY, char *handle, char *sub) { EXTMAC *mp; PUNYMAC *pp; mp = Wmalloc(sizeof(EXTMAC)); mp->next = MacroBase; MacroBase = mp; mp->HanLen = Wstrlen(handle) + 3; mp->Handle = Wmalloc(mp->HanLen+1); mp->Handle[0] = '@'; mp->Handle[1] = '('; Wstrcpy(mp->Handle+2, handle); mp->Handle[mp->HanLen-1] = ')'; mp->Handle[mp->HanLen] = '\0'; mp->SubLen = Wstrlen(sub); mp->Sub = Wmalloc(mp->SubLen+1); Wstrcpy(mp->Sub, sub); if ( Wfnd_substr(mp->Sub, mp->Handle) ) ExtErr(EE, "No recursive macro definitions allowed."); if (PUNY) { pp = Wmalloc(sizeof(PUNYMAC)); pp->next = EE->MyPunyMacs; EE->MyPunyMacs = pp; pp->mp = mp; } return(mp); } void PushMacro(EXTENV *EE, char *line) { int i, j; char *h, *s, *t; h = line + 8; for (i=8; (!Mciswspace(line[i])); i++) if (line[i] == '@' || line[i] == '(' || line[i] == ')') ExtErr(EE, "Prohibited character in macro handle, line=\'%s\'",line); j = i; /* where handle ends */ i++; while( (Mciswspace(line[i])) && (line[i]) ) i++; if (line[i++] != '@') ExtErr(EE, "Bad macro definition: \'%s\'.", line); s = line + i; while (line[i]) i++; while (line[i] != '@') i--; if (s-1 == line + i) ExtErr(EE, "Bad macro definition: \'%s\'.", line); line[i] = '\0'; line[j] = '\0'; PushMacro2(EE, EE->Flags[F_FragMac], h, s); } int PopThisMacro(EXTENV *EE, EXTMAC *killme) { int i; EXTMAC *ptr, *tptr; for(ptr=MacroBase; ptr && ptr != killme; ptr=ptr->next) tptr = ptr; if (ptr) { if (ptr == MacroBase) MacroBase = ptr->next; else tptr->next = ptr->next; free(ptr->Handle); free(ptr->Sub); free(ptr); return(1); } return(0); } int PopMacro2(EXTENV *EE, char *handle) { int i; EXTMAC *ptr, *tptr; i = Wstrlen(handle); for(ptr=MacroBase; ptr; ptr=ptr->next) { if (ptr->HanLen == i + 3) if( WstrcmpN(&(ptr->Handle[2]), handle, i) ) if( ptr->Handle[i+2] == ')' ) break; tptr = ptr; } if (ptr) { if (ptr == MacroBase) MacroBase = ptr->next; else tptr->next = ptr->next; free(ptr->Handle); free(ptr->Sub); free(ptr); return(1); } return(0); } int PopMacro(EXTENV *EE, char *line) { char ch, *han; int i, j; han = line + 7; for (i=0; han[i] && !Mciswspace(han[i]); i++) if (han[i] == '(' || han[i] == ')' || han[i] == '@') ExtErr(EE, "Malformed @undef: \'%s\'", line); ch = han[i]; han[i] = '\0'; j = PopMacro2(EE, han); han[i] = ch; return(j); } int MakeMacSub(char *line, int I, EXTMAC *mp) /*****************************************************************************/ /* PURPOSE: substitute mp->Sub at &line[I]. */ /* RETURNS: # of chars to go back after copy (due to @up, etc) */ /*****************************************************************************/ { char ch1, ch='l'; char *p, *st, *sub=mp->Sub; char lstr[32]; int i=I, k, Spcs=0, len=mp->SubLen, sublen=mp->SubLen, hanlen=mp->HanLen; int nback=0; void (*cpyfuncN)(char *, char *, int); cpyfuncN = WstrcpyN; if (i > 2) /* could have some formatting going on */ { /* * If we have @up or @low, set cpyfuncN appropriatly */ if (line[i-1] == 'p') /* maybe @up */ { if ( (line[i-2] == 'u') && (line[i-3] == '@') ) { nback = 3; i -= 3; cpyfuncN = WstrcpyN_UP; } } else if (i > 3) { if (line[i-4] == '@') { if (line[i-3] == 'l' && line[i-2] == 'o' && line[i-1] == 'w') { nback = 4; i -= 4; cpyfuncN = WstrcpyN_LOW; } else if (line[i-3] == 'l' && line[i-2] == 'e' && line[i-1] == 'n') { nback = 4; sprintf(lstr, "%d", mp->SubLen); len = sublen = Wstrlen(lstr); sub = lstr; i -= 4; } } } /* * See if we have formating of type @#[l,r,c] going on */ if (i > 2) { ch1 = Mlowcase(line[i-1]); if ( (ch1 == 'l') || (ch1 == 'r') || (ch1 == 'c') ) { if (Mcisnum(line[i-2])) { for (k=i-3; k && Mcisnum(line[k]); k--); if (line[k] == '@') /* it is one of those formats */ { nback += i-k; line[i-1] = '\0'; /* gonna overwrite this later anyway */ sscanf(line+k+1, "%d", &len); if (len < sublen) sublen = len; i = k; ch = ch1; } } } } } hanlen += I - i; /* * Figure out how many spaces to put before mp->Sub due to formatting */ if (len != sublen) { if (ch == 'r') Spcs = len - sublen; else if (ch == 'c') Spcs = (len - sublen) / 2; } /* * If formatted Sub longer than handle, move last part of line to right */ if (len > hanlen) { p = line + I + mp->HanLen; k = len - hanlen; /* number of elements to move string */ st = p - 1; while (*p) p++; do p[k] = *p; while (--p != st); } /* * If Macro handle longer than formatted Sub, move last part of line to left */ else if (len != hanlen) Wstrcpy(line+i+len, line+I+mp->HanLen); for (k=Spcs; k; k--) line[i++] = ' '; /* handle preceding spaces */ cpyfuncN(line+i, sub, sublen); /* Copy Macro sub string */ i += sublen; /* handle trailing spaces */ for (k=len - Spcs - sublen; k; k--) line[i++] = ' '; return(nback); } int ExpandMacro(EXTMAC *macp, char *line) { int i, j, k, len, Expanded=0; char ch, tline[LNLEN]; int (*cpyfunc)(char *, char *); while ( (i = Wfnd_substr(line, macp->Handle)) ) { Expanded = 1; i -= MakeMacSub(line, i-1, macp); } return(Expanded); } int ExpandThisMacro(EXTENV *EE, char *line, int i, int hlen) /* * RETURNS: -1 on error, else # of chars to go back due to substition */ { EXTMAC *mp; int iret=0; for (mp=MacroBase; mp; mp = mp->next) if (mp->HanLen == hlen) if ( WstrcmpN(line+i, mp->Handle, hlen) ) break; if (mp) { iret = MakeMacSub(line, i, mp); return(iret); } else return(-1); } void MacroSub(EXTENV *EE, char *line) { char *p; int bck=0, i, hlen, il=0, DONE=1; EXTMAC *macp; /* * Try substituting macros from left to right in line; if this fails, use * slower but more general method */ while ( i = Wfnd_substr(line+il, "@(") ) { il += i - 1 - bck; p = line + il + 2; for (hlen=2; (*p) && (*p != ')'); hlen++, p++); if (*p) hlen++; else return; /* no macros without end paren */ bck = ExpandThisMacro(EE, line, il, hlen); if (bck == -1) { bck = DONE=0; break; } } if (!DONE) { macp=MacroBase; while(macp) { i = Wfnd_substr(line, "@("); if (!i) break; if ( ExpandMacro(macp, line) ) macp = MacroBase; else macp = macp->next; } } } /* end of MacroSub */ void KillMyMacros(EXTENV *EE) { EXTMAC *mp; while(MacroBase != EE->MyMacBeg) { mp = MacroBase; MacroBase = mp->next; free(mp->Handle); free(mp->Sub); free(mp); } } /*===========================================================================*/ /* These functions deal with key manipulations. */ /*===========================================================================*/ void KillThisKey(EXTENV *EE, KEYS *DeadKey) { char line[LNLEN]; KEYS *key, *prev=NULL; ARGSTACK *args; assert(EE->KeyBase != NULL); for (key=EE->KeyBase; key != DeadKey; key = key->next) prev = key; assert( PopThisMacro(EE, key->KeyMac) ); /* pop automatic macro */ /* * Remove key from list */ if (key == EE->KeyBase) EE->KeyBase = key->next; else prev->next = key->next; while (key->ArgStack) { args = key->ArgStack->next; free(key->ArgStack); key->ArgStack = args; } if (key->MyArgs) free(key->MyArgs); free(key->KeyHandle); free(key->Match); free(key); } void KillKey(EXTENV *EE, char *s) { int slen; KEYS *key, *prev=NULL; slen = Wstrlen(s); key = EE->KeyBase; while(key) { if (slen+2 == key->HanLen) /* possible match if they're same length */ { if ( WstrcmpN(s, &key->KeyHandle[1], slen) ) { KillThisKey(EE, key); if (prev) key = prev->next; else key = EE->KeyBase; } else { prev = key; key = key->next; } } else { prev = key; key = key->next; } } } void AddKey(EXTENV *EE, char *s) { char *cp, *cp2; int i, j, BegAt, EndAt, len, err=0; KEYS *key; key = Wmalloc(sizeof(KEYS)); key->next = EE->KeyBase; EE->KeyBase = key; for(i=0; s[i] != '=' && s[i]; i++); if (!(s[i])) ExtErr(NULL, "Bad key input \'%s\'.", s); if (!(s[i+1])) ExtErr(NULL, "Bad key input \'%s\'.", s); key->HanLen = i + 2; key->KeyHandle = Wmalloc(key->HanLen + 1); key->KeyHandle[0] = '@'; WstrcpyN_LOW(key->KeyHandle+1, s, i); key->KeyHandle[key->HanLen-1] = ' '; key->KeyHandle[key->HanLen] = '\0'; cp2 = s + i + 1; for (i=0; !Mciswspace(cp2[i]) && cp2[i]; i++); if (!i) ExtErr(NULL, "Bad key input \'%s\'.", s); len = i + 2; BegAt = (*cp2 == '@'); EndAt = (cp2[i-1] == '@') && (i > 1); if (BegAt) { cp2++; j = 0; len -= 2; i--; } else j = 1; if (EndAt) { len -= 2; i--; } if ( i < 0 || len < 0) ExtErr(NULL, "Bad key input \'%s\'.", s); key->Match = Wmalloc(len+1); if (!BegAt) key->Match[0] = ' '; WstrcpyN_LOW(key->Match+j, cp2, i); if (!EndAt) key->Match[len-1] = ' '; key->Match[len] = '\0'; key->MyArgs = (ARGSTACK *) Wmalloc(sizeof(ARGSTACK)); key->MyArgs->Not = 1; key->MyArgs->KeyArgs[0] = '\0'; key->ArgStack = NULL; /* * Add automatic key macro */ key->KeyHandle[key->HanLen-1] = '\0'; cp = cp2 = Wmalloc(len+3); if (*key->Match != ' ') *cp++ = '@'; cp += Wstrcpy(cp, key->Match) - 1; if (*cp != ' ') { cp++; *cp++ = '@'; } *cp = '\0'; if (*cp2 == ' ') cp = cp2 + 1; else cp = cp2; key->KeyMac = PushMacro2(EE, 0, key->KeyHandle, cp); key->KeyHandle[key->HanLen-1] = ' '; free(cp2); } void PushKey(EXTENV *EE, KEYS *Key) { int i; ARGSTACK *NewArgs; i = sizeof(ARGSTACK); NewArgs = (ARGSTACK *) Wmalloc(i); WstrcpyN((void *) NewArgs, (void *) Key->MyArgs, i); NewArgs->next = Key->ArgStack; Key->ArgStack = NewArgs; } void PopKey(EXTENV *EE, KEYS *Key) { if (Key->ArgStack == NULL) { ExtWarn(EE, "Trying to pop from key ( %s) with nonexistant stack.\n", Key->KeyHandle); return; } if (Key->MyArgs) free(Key->MyArgs); Key->MyArgs = Key->ArgStack; Key->ArgStack = Key->ArgStack->next; } void PeekKey(EXTENV *EE, KEYS *Key) { if (Key->ArgStack == NULL) { ExtWarn(EE, "Trying to peek from key(%s) with nonexistant stack.\n", Key->KeyHandle); return; } if (Key->MyArgs == NULL) Key->MyArgs = Wmalloc(sizeof(ARGSTACK)); WstrcpyN((void *) Key->MyArgs, (void *) Key->ArgStack, sizeof(ARGSTACK)); } void CopyKeys(EXTENV *EE1, EXTENV *EE2) { KEYS *Key, *nKey, *tKey1, *tKey2; ARGSTACK *ap, *ap2; if (EE2) { if (EE2->KeyBase) { nKey = (KEYS *) malloc(sizeof(KEYS)); if (EE1->KeyBase == NULL) EE1->KeyBase = nKey; else { for (Key=EE1->KeyBase; Key->next; Key = Key->next); Key->next = nKey; } nKey->next = NULL; tKey1 = nKey; for (Key=EE2->KeyBase; Key; Key = Key->next) /* for all Key in OldEnv */ { /* * Do not define keys that have already been defined on command line */ for (tKey2=EE1->KeyBase; tKey2 != tKey1; tKey2 = tKey2->next) if (Wstrcmp(tKey2->KeyHandle, Key->KeyHandle)) break; if (tKey2 == tKey1) { nKey->HanLen = Key->HanLen; nKey->KeyHandle = Wmalloc(Key->HanLen+1); Wstrcpy(nKey->KeyHandle, Key->KeyHandle); nKey->Match = malloc( Wstrlen(Key->Match)+1 ); Wstrcpy(nKey->Match, Key->Match); nKey->KeyMac = PushMacro2(EE1, 0, nKey->KeyHandle, nKey->Match); nKey->next = (KEYS *) malloc(sizeof(KEYS)); assert(nKey->next); nKey->next->next = NULL; /* * copy MyArgs and ArgStack */ nKey->MyArgs = (ARGSTACK *) malloc(sizeof(ARGSTACK)); WstrcpyN((void *) nKey->MyArgs, (void *) Key->MyArgs, sizeof(ARGSTACK)); if (Key->ArgStack) { ap2 = nKey->ArgStack = (ARGSTACK *) malloc(sizeof(ARGSTACK)); WstrcpyN((void *) nKey->ArgStack, (void *) Key->ArgStack, sizeof(ARGSTACK)); for (ap=Key->ArgStack->next; ap; ap=ap->next) { ap2->next = (ARGSTACK *) malloc(sizeof(ARGSTACK)); ap2 = ap2->next; WstrcpyN((void *) ap2, (void *) ap, sizeof(ARGSTACK)); } ap2->next = NULL; } else nKey->ArgStack = NULL; nKey = nKey->next; } } if (nKey == EE1->KeyBase) EE1->KeyBase = nKey->next; else { for (Key=EE1->KeyBase; Key->next != nKey; Key = Key->next); Key->next = nKey->next; } if (nKey) free(nKey); } } } KEYS *IsKeyLn(EXTENV *EE, char *line) { int i; KEYS *Key; for (i=0; !Mciswspace(line[i]) && line[i]; i++); i++; for(Key=EE->KeyBase; Key; Key = Key->next) if (Key->HanLen == i) if ( WstrcmpN(Key->KeyHandle, line, Key->HanLen) ) break; return(Key); } void HandleKeyLn(EXTENV *EE, char *line, KEYS *Key) { char *cptr, *cp, tln[LNLEN]; int i, j, k, argmatch, OneLn=0, CHSTAK=0; WORDS *wp, *wbase; void FindKeyMatch(EXTENV *EE, KEYS *Key); Wsafe_slowcase(line, LNLEN); /* * If it's a 1-line keyline */ for (i=0; (line[i]) && (line[i] != '`'); i++); if (line[i]) { OneLn = i + 1; line[i] = '\0'; PushKey(EE, Key); } i = Key->HanLen; cptr = Key->MyArgs->KeyArgs; /* * Check if we are changing the argstack */ if (line[i] == '@') { if ( WstrcmpN(&line[i], "@printargs", 10) ) { i = 0; if (Key->MyArgs->Not) { line[i++] = '!'; line[i++] = ' '; } Wstrcpy(&line[i], cptr); fprintf(Warn, "Keyargs: \'%s\'\n", line); return; } CHSTAK = 1; if ( WstrcmpN(&line[i], "@push", 5) ) { PushKey(EE, Key); PeekKey(EE, Key); } else if ( WstrcmpN(&line[i], "@pop", 4) ) PopKey(EE, Key); else if ( WstrcmpN(&line[i], "@peek", 5) ) PeekKey(EE, Key); else CHSTAK = 0; } /* * See if we are adding/removing to/from MyArgs */ if (!CHSTAK) { if ( (line[i] == '-') || (line[i] == '+') ) { i += 2; Wstrcpy(tln, line+i); wbase = CreateKeyLine0(EE, NULL, tln); for(wp=wbase; wp; wp = wp->next) { k = Wfnd_substr(cptr, wp->word); j = Wstrlen(wp->word); if (line[i-2] == '+') { if (Key->MyArgs->Not) { if (k) Wstrcpy(&cptr[k-1], &cptr[k-1+j]); } else if (!k) { k = Wstrlen(cptr); if (k == 0) cptr[k++] = ' '; keycpy(&cptr[k], wp->word); } } else { if (Key->MyArgs->Not) { if (!k) { k = Wstrlen(cptr); if (k == 0) cptr[k++] = ' '; keycpy(&cptr[k], wp->word); } } else if (k) Wstrcpy(&cptr[k-1], &cptr[k-1+j]); } } KillWords(wbase); } /* * Otherwise, making a new MyArgs */ else { if (line[i] == '!') { Key->MyArgs->Not = 1; i += 2; } else Key->MyArgs->Not = 0; cptr[0] = ' '; Wstrcpy(tln, line+i-1); cp = CreateKeyLine(EE, tln); if (cp) { Wstrcpy(cptr+1, cp); free(cp); } else cptr[1] = '\0'; } } argmatch = Wfnd_substr(Key->MyArgs->KeyArgs, Key->Match); if (Key->MyArgs->Not) argmatch = !argmatch; if (OneLn) { /* * Get one line, and handle it */ if (argmatch) { Wstrcpy(line, &line[OneLn]); for(i=0; line[i]; i++); while (line[i] != '`') i--; line[i++] = '\n'; line[i] = '\0'; HandleLine(EE, line); } /* * Restore key to previous state */ PopKey(EE, Key); i = Wstrcpy(line, Key->KeyHandle); if (Key->MyArgs->Not) { line[i++] = '!'; line[i++] = ' '; } Wstrcpy(&line[i], Key->MyArgs->KeyArgs); HandleLine(EE, line); } else if (!argmatch) FindKeyMatch(EE, Key); } void FindKeyMatch(EXTENV *EE, KEYS *Key) { int j, k, argmatch=0; static char line[LNLEN], tline[LNLEN]; j = Key->HanLen + 1; k = EE->Joining; EE->Joining = 0; while(!argmatch) { argmatch = !GetLn(EE, line); if (EE->ExtCmndOn[EC_MacSub]) MacroSub(EE, line); keycpy(tline, line); if (!argmatch) { argmatch = WstrcmpN(tline, Key->KeyHandle, Key->HanLen); if (argmatch) HandleKeyLn(EE, tline, Key); } } EE->Joining = k; } /*===========================================================================*/ /* Rest of file is misc category :-) */ /*===========================================================================*/ int icalc(EXTENV *EE, char line[]) { int i, k=0; int istack[128]; if ( Mcisnum(line[0]) || (line[0] == '-' && Mcisnum(line[1])) ) i = Wstr2int(line, &istack[k]); else ExtErr(EE, "Non-numeric string in @iexp: \'%s\'", line); while ( Mciswspace(line[i]) ) i++; while(line[i]) { if ( Mcisnum(line[i]) || (line[i] == '-' && Mcisnum(line[i+1])) ) i += Wstr2int(&line[i], &istack[++k]); else { switch(line[i++]) { case '+': istack[k-1] += istack[k]; k--; break; case '-': istack[k-1] = istack[k] - istack[k-1]; k--; break; case '/': istack[k-1] = istack[k] / istack[k-1]; k--; break; case '*': istack[k-1] = istack[k] * istack[k-1]; k--; break; case '%': istack[k-1] = istack[k] % istack[k-1]; k--; break; case '=': /* boolean comparison */ istack[k-1] = (istack[k] == istack[k-1]); k--; break; case '!': /* boolean comparison */ istack[k-1] = (istack[k] != istack[k-1]); k--; break; case '<': /* less than boolean comparison */ istack[k-1] = (istack[k] < istack[k-1]); k--; break; case '>': /* greater than boolean comparison */ istack[k-1] = (istack[k] > istack[k-1]); k--; break; case '{': /* less than or equal boolean comparison */ istack[k-1] = (istack[k] >= istack[k-1]); k--; break; case '}': /* greater than or equal boolean comparison */ istack[k-1] = (istack[k] >= istack[k-1]); k--; break; case '&': /* bitwise and */ istack[k-1] = (istack[k] & istack[k-1]); k--; break; case '|': /* bitwise or */ istack[k-1] = (istack[k] | istack[k-1]); k--; break; case '^': /* bitwise exclusive or */ istack[k-1] = (istack[k] ^ istack[k-1]); k--; break; case '~': /* bitwise complement */ istack[k] = ~(istack[k]); break; case 'l': /* bitwise left shift */ istack[k-1] = (istack[k] << istack[k-1]); k--; break; case 'r': /* bitwise right shift */ istack[k-1] = (istack[k] >> istack[k-1]); k--; break; case 'a': /* absolute value */ if (istack[k] < 0) istack[k] = -istack[k]; break; #if 0 case 'p': /* print stack */ for (j=0; j <= k; j++) printf(" %d ",istack[j]); printf("!\n"); break; #endif default: ExtErr(EE, "Unrecognized character/non-numeric string in @iexp: \'%s\'", line); } } while ( Mciswspace(line[i]) ) i++; } return(istack[k]); } void MakeLnButtUgly(EXTENV *EE, char *line) { char comm='*', ext='$'; int i, k; static int LNSKIP=1; if (EE->Flags[F_Ugly] == 3) { comm = '!'; ext = '&'; } /* * All comment lines begin with '*'; all other lines must be upcase */ if ( !Mciswspace(line[0]) && !Mcisnum(line[0]) ) line[0] = comm; else { /* fprintf(stderr, "line0=%c, %d, %d\n",line[0], !Mciswspace(line[0]), !Mcisnum(line[0])); */ for (i=0; Mciswspace(line[i]); i++); /* * if line is blank, make it a comment */ if (line[i] == '\0') { if (EE->Flags[F_Ugly] != 3) { line[0] = comm; line[1] = '\n'; line[2] = '\0'; return; } } if (EE->Flags[F_Case] == 1) Wsafe_supcase(line, 72); else if (EE->Flags[F_Case] == 2) Wsafe_slowcase(line, 72); /* * Use only $ for continuation */ if ( !Mciswspace(line[5]) ) { if ( (line[5]) && (line[0] != comm) ) line[5] = ext; } else /* Right justify labels to col 5 */ { for (i=0; ( (i < 5) && (!Mcisnum(line[i])) ); i++); if (i < 5) { sscanf(&line[i], "%d", &k); for (i=0; i < 5; i++) line[i] = ' '; sprintf(line, "%5d", k); line[5] = ' '; } } } /* * Change lines of ---- to blank lines */ if (EE->Flags[F_Ugly] == 2) { if (line[0] == comm) { for (i=1; ( (Mciswspace(line[i]) || line[i] == '-') ); i++); if (line[i] == '\0') { if (LNSKIP) line[0] = '\0'; else { line[0] = comm; line[1] = '\n'; line[2] = '\0'; } LNSKIP = !LNSKIP; } } } } void HandleIfdef(EXTENV *EE, char line[]) { char tline[LNLEN]; int i, j, k=7, defined, KeepOn; if (line[7] == '!') { k++; while(Mciswspace(line[k])) k++; } for(i=k; !Mciswspace(line[i]); i++) tline[i-k] = line[i]; tline[i-k] = '\0'; /* defined = (int) FindMac(tline); */ defined = (FindMac(tline) != NULL); if (line[7] == '!') defined = !defined; if (GetLn(EE, line)) KeepOn = 1; else KeepOn = 0; if (KeepOn) j = commandcpy(tline, line); if (defined) /* loop over calls to HandleLine */ { while( KeepOn ) { if (j == 9) KeepOn = !WstrcmpN(tline, "@endifdef ", 10); if (KeepOn) { HandleLine(EE, line); KeepOn = GetLn(EE, line); if (!KeepOn) fprintf(stderr, "File %s ended inside of an @ifdef\n", EE->FpIn->Fnam); j = commandcpy(tline, line); } } } else /* do not call HandleLine while skipping */ { i = EE->Joining; EE->Joining = 0; while( KeepOn ) { if (j == 9) { if (WstrcmpN(tline, "@endifdef ", 10)) KeepOn--; } else if (j == 6) if (WstrcmpN(tline, "@ifdef ", 7)) KeepOn++; if (KeepOn) { if (!GetLn(EE, line)) { fprintf(stderr, "File %s ended inside of %d @ifdefs\n", EE->FpIn->Fnam, KeepOn); KeepOn = 0; } else if (EE->ExtCmndOn[EC_MacSub]) MacroSub(EE, line); j = commandcpy(tline, line); } } EE->Joining = i; } } void HandleDec(EXTENV *EE, char *line) { char tline[LNLEN]; char *outln, *endstr=NULL; char *cas, ch, Ab, Ae; enum LANG WhatLang; int i, k, EndLen=0, istart, istart2=(-1), LnLen; int EXTENDLINE=1, SORT=1; WORDS *wptr, *wp, *wp0; LnLen = EE->Flags[F_LnLen]; if (EE->Flags[F_Lang] == 'c') { WhatLang = LangC; if (LnLen == 0) LnLen = 79; Ab = '['; Ae = ']'; } else if (EE->Flags[F_Lang] == 'm') { WhatLang = LangMake; if (LnLen == 0) LnLen = 79; Ae = Ab = '\"'; } else { if (EE->Flags[F_Lang] == '9') { WhatLang = LangF90; if (LnLen == 0) LnLen = 77; } else { WhatLang = LangF77; if (LnLen == 0) LnLen = 71; } Ab = '('; Ae = ')'; } switch(EE->Flags[F_Case]) { case 0: cas = NULL; break; case 1: ch = 'u'; cas = &ch; break; case 2: ch = 'l'; cas = &ch; break; } outln = malloc(LnLen+10); for (i=10; line[i] != '\"'; i++) outln[i-10] = line[i]; Wsafe_mws2spc(&line[i+1]); if (line[i+1]) { EXTENDLINE = (Mupcase(line[i+2]) != 'N'); if ( (line[i+2]) && (line[i+3]) ) { SORT = (Mupcase(line[i+4]) != 'N'); if ( (line[i+4]) && (line[i+5]) ) { if (line[i+6] == '\"') { for (k=i+7; line[k] != '\"'; k++) if (!line[k]) ExtErr(EE, "Unmatched quote on line %d of basefile %s", EE->FpIn->LineNo, EE->FpIn->Fnam); EndLen = k - (i+7); endstr = (char *) malloc(EndLen+1); for (k=0; k != EndLen; k++) endstr[k] = line[k+i+7]; endstr[EndLen] = '\0'; k += i + 8; if (line[k]) k++; } else k = i + 6; if ( Mcisnum(line[k]) ) { Wstr2int(&line[k], &istart2); istart2--; } } } } istart = i - 10; if (istart2 == -1) istart2 = istart; wp0 = wptr = fGetVars(EE, "@enddeclare ", 12, line, tline, Ab, Ae); if (EXTENDLINE) { if (WhatLang == LangMake || WhatLang == LangC) LnLen -= 2; } else if (WhatLang == LangC) LnLen--; if (SORT) wp0 = wptr = SortWords(cas, wptr); /* * After sorting, find last parameter and add end string to it */ if (endstr) { for (wp=wptr; wp->next; wp = wp->next); sprintf(tline, "%s%s", wp->word, endstr); wp0 = wptr = KillWord(wp0, wp); if (wp0) { for (wp=wptr; wp->next; wp = wp->next); wp->next = GetWord(tline); } else wp0 = wptr = GetWord(tline); } while(wptr) { for(i=istart; i <= LnLen; i++) { outln[i] = wptr->word[i-istart]; if (!outln[i]) break; } if (i > LnLen) { if (istart == istart2) /* parameter too long to fit on any line */ ExtErr(EE, "Parameter \'%s\' too long to fit on @DECLARE line", wptr->word); i = istart; if (!EXTENDLINE) { i -= 2; if (WhatLang == LangC) outln[i++] = ';'; } else { if (WhatLang == LangMake || WhatLang == LangC) outln[i++] = '\\'; else i--; if (EE->Flags[F_Lang] == '9') { while(i <= LnLen) outln[i++] = ' '; i = LnLen + 1; outln[i++] = ' '; outln[i++] = '&'; } else if (EE->Flags[F_Ugly] == 3) { while(i < 72) outln[i++] = ' '; i = 72; outln[i++] = '&'; } } outln[i++] = '\n'; outln[i] = '\0'; HandleLine(EE, outln); istart = istart2; if (EXTENDLINE) { for(i=0; i < istart2; i++) outln[i] = ' '; if (EE->Flags[F_Lang] == 'f') outln[5] = '$'; } } else { wptr = wptr->next; if (WhatLang != LangMake) outln[i++] = ','; outln[i++] = ' '; istart = i; } } if (WhatLang == LangMake) i--; else i -= 2; if (endstr) free(endstr); outln[i++] = '\n'; outln[i] = '\0'; KillWords(wp0); HandleLine(EE, outln); free(outln); } void HandleMultidef(EXTENV *EE, char *line) { WORDS *wp, *wp0; char tline[LNLEN], cline[LNLEN]; char *han=line+10; int i, j, k; for (i=10; ((!Mciswspace(line[i])) && line[i]); i++); if (line[i]) line[i++] = '\0'; for (j=i; ( (line[j]) && Mciswspace(line[j]) ); j++); if (line[j]) /* one-line multidef */ wp0 = GetWords(&line[j]); else { han = Wmalloc(i-10); Wstrcpy(han, line+10); k = EE->Joining; EE->Joining = 0; wp0 = fGetWords(EE, "@endmultidef ", 13, line, tline); EE->Joining = k; } for (wp=wp0; wp; wp = wp->next) PushMacro2(EE, EE->Flags[F_FragMac], han, wp->word); KillWords(wp0); if (han != line+10) free(han); } void DumpSkip(EXTENV *EE, FILE *fpout, char *begstr, char *endstr) /* * Dumps to file/skips lines between matching begstr and endstr */ { char ln[LNLEN], tln[LNLEN]; int ibeg, iend, KeepOn=1, i, k; k = EE->Joining; EE->Joining = 0; ibeg = Wstrlen(begstr); iend = Wstrlen(endstr); do { if ( GetLn(EE, ln) ) { i = commandcpy(tln, ln) + 1; if (EE->ExtCmndOn[EC_MacSub]) MacroSub(EE, tln); if (i == ibeg) if ( WstrcmpN(tln, begstr, ibeg) ) KeepOn++; if (i == iend) if ( WstrcmpN(tln, endstr, iend) ) KeepOn--; if (fpout && KeepOn) fputs(ln, fpout); } else break; } while (KeepOn); if (fpout) fflush(fpout); EE->Joining = k; } void HandleWhile(EXTENV *EE, char line[]) { FILE2 tfp, *OldFp; WORDS *wp, *wp2; char tline[LNLEN]; char *han; int KeepOn, i; static int inest=0; inest++; /* * Define while line definitions */ wp2 = GetWords(&line[10]); if (wp2 == NULL) ExtErr(EE, "Malformed @whiledef=\'%s\'",line); i = Wstrlen(wp2->word) + 1; han = Wmalloc(i); Wstrcpy(han, wp2->word); for (wp=wp2->next; wp; wp = wp->next) PushMacro2(EE, EE->Flags[F_FragMac], han, wp->word); KillWords(wp2); /* * Open temporary file, and dump while loop to it */ sprintf(tfp.Fnam, "Whiledeftmpfile%d", inest); tfp.LineNo = 0; tfp.Fp = tmpfile(); /* fopen(tfp.Fnam, "w+"); */ DumpSkip(EE, tfp.Fp, "@whiledef ", "@endwhile "); OldFp = EE->FpIn; tfp.prev = OldFp; EE->FpIn = &tfp; while ( FindMac(han) ) { rewind(tfp.Fp); while( GetLn(EE, line) ) HandleLine(EE, line); PopMacro2(EE, han); } EE->FpIn = OldFp; fclose(tfp.Fp); free(han); inest--; } char GetIntComp(EXTENV *EE, char *ln, int *A1CONST, int *A2CONST, int *ia1, int *ia2, char *mac1, char *mac2) /* * Expects comparison line of form arg1 [<,>,!,=] arg2; * This routine finds arg1 and arg2. Note that if * arg1 or arg2 is a macro, it cannot begin with a number or - * Returns type of comparison (<, =, !) */ { EXTMAC *mp; WORDS *wp, *wp0, *wp1; char comp = '<'; *ia1 = *ia2 = *A1CONST = *A2CONST = 0; if (mac1) *mac1 = '\0'; if (mac2) *mac2 = '\0'; wp = GetWords(ln); if (wp == NULL || wp->next == NULL || wp->next->next == NULL) ExtErr(EE, "Invalid integer condition: '%s'\n", ln); { wp0 = wp; wp1 = wp->next->next; } if (wp->next->word[0] == '>') { wp1 = wp; wp0 = wp->next->next; } else if (wp->next->word[0] == '=') comp = '='; else if (wp->next->word[0] == '!') comp = '!'; else if (wp->next->word[0] == '{') comp = '{'; else if (wp->next->word[0] == '}') comp = '}'; else if (wp->next->word[0] != '<') ExtErr(EE, "Invalid integer condition: '%s'\n", ln); if (Mcisnum(wp0->word[0]) || wp0->word[0] == '-') { *A1CONST = 1; if (sscanf(wp0->word, "%d", ia1) != 1) ExtErr(EE, "Invalid integer condition: '%s'\n", ln); } else if (mac1) sprintf(mac1, "@(%s)", wp0->word); else { *A1CONST = 1; mp = FindMac(wp0->word); if (!mp) ExtErr(EE, "Undefined macro in integer condition: '%s'\n", ln); if (sscanf(mp->Sub, "%d", ia1) != 1) ExtErr(EE, "Invalid macro in integer condition: '%s'\n", ln); } if (Mcisnum(wp1->word[0]) || wp1->word[0] == '-') { *A2CONST = 1; if (sscanf(wp1->word, "%d", ia2) != 1) ExtErr(EE, "Invalid integer condition: '%s'\n", ln); } else if (mac2) sprintf(mac2, "@(%s)", wp1->word); else { *A1CONST = 1; mp = FindMac(wp1->word); if (!mp) ExtErr(EE, "Undefined macro in integer condition: '%s'\n", ln); if (sscanf(mp->Sub, "%d", ia2) != 1) ExtErr(EE, "Invalid macro in integer condition: '%s'\n", ln); } KillWords(wp); return(comp); } int Getiarg(EXTENV *EE, int ARGCONST, int ival, char *mac) { int i; char ln[LNLEN]; if (ARGCONST) return(ival); Wstrcpy(ln, mac); MacroSub(EE, ln); if (sscanf(ln, "%d", &i) != 1) ExtErr(EE, "Invalid @iwhile macro: '%s'\n", mac); return(i); } int MIfCond(EXTENV *EE, char *ln) /* * Expects ln of machandle1 [=,!,~] machandle2 * where machandle is either or macro handle, or if it begins with ", * a string literal (white spaces have to come from @^, and there is no * matching closing ") * comparators: = : equal; ! : not equal; ~ : is substring of */ { WORDS *wp; EXTMAC *mp1, *mp2; char *comp1, *comp2; int iret=0; wp = GetWords(ln); if (!wp || !wp->next || !wp->next->next) ExtErr(EE, "Invalid macro condition: '%s'\n", ln); if (wp->word[0] == '"') /* word is string literal, not macro */ comp1 = wp->word + 1; else { mp1 = FindMac(wp->word); if (!mp1) ExtErr(EE, "Undefined macro in condition: '%s'\n", ln); comp1 = mp1->Sub; } if (wp->next->next->word[0] == '"') /* word is string literal, not macro */ comp2 = wp->next->next->word + 1; else { mp2 = FindMac(wp->next->next->word); if (!mp2) ExtErr(EE, "Undefined macros in condition: '%s'\n", ln); comp2 = mp2->Sub; } if (wp->next->word[0] == '=') iret = Wstrcmp(comp2, comp1); else if (wp->next->word[0] == '!') iret = !Wstrcmp(comp2, comp1); else if (wp->next->word[0] == '~') iret = Wfnd_substr(comp2, comp1); else ExtErr(EE, "Invalid macro condition operator: '%s'\n", ln); KillWords(wp); return(iret); } void HandleMIf(EXTENV *EE, char *ln) /* * Expects ln of @mif handle1 [<,>,=,!] handle2 */ { if ( MIfCond(EE, ln+5) ) { SETMODE(mode, MODE_MIF); modedepth[MCMIF]++; } else DumpSkip(EE, NULL, "@mif ", "@endmif "); } void HandleIIf(EXTENV *EE, char *ln) /* * Expects ln of @iif int1 [<,>,},{,=,] int2 */ { char ch; int i, j, ia1, ia2; if (WstrcmpN(ln+5, "@iexp ",6)) /* rest of line is @iexp, */ i = icalc(EE, ln+5+6); else { ch = GetIntComp(EE, ln+5, &i, &j, &ia1, &ia2, NULL, NULL); if (ch == '=') i = (ia1 == ia2); else if (ch == '!') i = (ia1 != ia2); else if (ch == '<') i = (ia1 < ia2); else if (ch == '{') i = (ia1 <= ia2); else if (ch == '}') i = (ia1 >= ia2); } if (!i) /* skip */ DumpSkip(EE, NULL, "@iif ", "@endiif "); else { SETMODE(mode, MODE_IIF); modedepth[MCIIF]++; } } void HandleIwhile(EXTENV *EE, char *ln) { int A1CONST, A2CONST, ia1, ia2, KeepOn; static int inest=0; FILE2 tfp, *OldFp; char mac1[HANLEN], mac2[HANLEN]; char comp; inest++; comp = GetIntComp(EE, ln+8, &A1CONST, &A2CONST, &ia1, &ia2, mac1, mac2); /* * Open temporary file, and dump while loop to it */ sprintf(tfp.Fnam, "Iwhiletmpfile%d", inest); tfp.LineNo = 0; tfp.Fp = tmpfile(); /* fopen(tfp.Fnam, "w+"); */ DumpSkip(EE, tfp.Fp, "@iwhile ", "@endiwhile "); OldFp = EE->FpIn; tfp.prev = OldFp; EE->FpIn = &tfp; ia1 = Getiarg(EE, A1CONST, ia1, mac1); ia2 = Getiarg(EE, A2CONST, ia2, mac2); if (comp == '<') KeepOn = (ia1 < ia2); else if (comp == '=') KeepOn = (ia1 == ia2); else if (comp == '!') KeepOn = (ia1 != ia2); else if (comp == '{') KeepOn = (ia1 <= ia2); else if (comp == '}') KeepOn = (ia1 >= ia2); while (KeepOn) { rewind(tfp.Fp); while( GetLn(EE, ln) ) HandleLine(EE, ln); ia1 = Getiarg(EE, A1CONST, ia1, mac1); ia2 = Getiarg(EE, A2CONST, ia2, mac2); if (comp == '<') KeepOn = (ia1 < ia2); else if (comp == '{') KeepOn = (ia1 <= ia2); else if (comp == '}') KeepOn = (ia1 >= ia2); else if (comp == '=') KeepOn = (ia1 == ia2); else if (comp == '!') KeepOn = (ia1 != ia2); } EE->FpIn = OldFp; fclose(tfp.Fp); inest--; } void ApplyFlags(EXTENV *EE, char *line) { char tline[LNLEN], *flag; int i, j; INDENT *indptr; extern INDENT *indbase; flag = EE->Flags; if (flag[F_RemBlank]) Wremove_trailing_blanks(line); if (indbase) { Wtab2spcs(line, 8); indptr = indbase; do { j = indptr->start; if (indptr->nspac > 0) { Wstrcpy(tline, &line[j]); for (i=j; i < j + indptr->nspac; i++) line[i] = ' '; Wstrcpy(&line[i], tline); } else if (indptr->nspac < 0) Wstrcpy(&line[j+indptr->nspac], &line[j]); indptr = indptr->next; } while (indptr != indbase); } else if (flag[F_RepTab]) Wtab2spcs(line, flag[F_RepTab]); if (flag[F_Ugly]) MakeLnButtUgly(EE, line); else { if (flag[F_Case] == 1) Wsafe_supcase(line, LNLEN); else if (flag[F_Case] == 2) Wsafe_slowcase(line, LNLEN); } if (flag[F_Clint]) { if (flag[F_Lang] == 'f') if (!( !Mciswspace(line[0]) && !Mcisnum(line[0]) )) Wsafe_slowcase(line, 72); } if (flag[F_LLWarn]) { if ( (flag[F_LLWarn] > 1) || (flag[F_Lang] != 'f') || Mciswspace(line[0]) || Mcisnum(line[0]) ) { i = Wstrlen(line) - 1; while (Mciswspace(line[i])) i--; if (i > flag[F_LnLen]) fprintf(Warn, "\nWARNING: Line %d of file \'%s\' is %d characters long!\n", EE->FpIn->LineNo, EE->FpIn->Fnam, i+1); } } } INDENT *AddIndent(EXTENV *EE, int start, int nspaces) { INDENT *indptr; indptr = (INDENT *) malloc(sizeof(INDENT)); if (indbase == NULL) { indbase = indptr; indbase->next = indbase; indbase->prev = indbase; } else { indptr->prev = indbase->prev; indptr->next = indbase; indbase->prev->next = indptr; indbase->prev = indptr; } indptr->start = start - 1; indptr->nspac = nspaces; return(indptr); } void KillIndent(EXTENV *EE, INDENT *indptr) { INDENT *ip; if (indbase) { if (indptr == indbase) ip = indbase; else for(ip=indbase->next; ip != indptr && ip != indbase; ip = ip->next); if (ip != indptr) ExtErr(EE, "Error in indention freeing"); ip->prev->next = ip->next; ip->next->prev = ip->prev; if (ip == indbase) { if (indbase->next == indbase) indbase = NULL; else indbase = indbase->next; free(ip); } } else ExtWarn(EE, "unmatched @ENDINDENT"); } void PrintUsage() { fprintf(Warn, "\nExtract v%s: Written by R. Clint Whaley.\n", version); fprintf(Warn, "Report bugs to: [email protected],\n"); fprintf(Warn, "_after_ scoping the homepage: www.cs.utk.edu/~rwhaley/EXTRACT/Extract.html\n"); fprintf(Warn, "\nExtract3.0: Victor\'s Revenge -- bells, whistles, a gong, and\n"); fprintf(Warn, " a bag hanging off the side.\n"); fprintf(Warn, "\nExtract3.1: Andy Strikes Back -- bells, whistles, a gong, \n"); fprintf(Warn, " a bag hanging off the side, and a toupee on top.\n"); fprintf(Warn, "\nExtract4.0: This Time, Its Personal -- bells, whistles, a gong, \n"); fprintf(Warn, " a bag hanging off the side, a toupee on top, and\n"); fprintf(Warn, " chrome all around.\n"); fprintf(Warn, "\nUser's guide and docs at:\n"); fprintf(Warn, "\n www.cs.utk.edu/~rwhaley/EXTRACT/Extract.html\n\n"); fprintf(Warn, "\nUSAGE:"); fprintf(Warn, "\n\nextract [-<flags>] [key1=match1, ..., keyN=matchN]\n\n"); fprintf(Warn, "Those items in [] are optional, while those in <> are to be\n"); fprintf(Warn,"replaced by the appropriate string.\n"); fprintf(Warn, "All flags have the option 0. This means do not perform the\n"); fprintf(Warn, "operation indicated by the flag. For instance -case0 means do not change case.\n"); fprintf(Warn, "This can be used to override the defaults setup by your ~/.extractrc file.\n"); fprintf(Warn, "\nThe available flags are:\n"); fprintf(Warn, " -o <outfile> : use file <outfile> for output rather than stdout.\n"); fprintf(Warn, " -b <basefile> : use file <basefile> for input rather than stdin.\n"); fprintf(Warn, " -case[0,U,L]: change case of output file. U=upcase, L=lowcase.\n"); fprintf(Warn, " -RepTab[0][#]: replace tabs with # spaces. # defaults to 8.\n"); fprintf(Warn, " -Remtblank[0]: remove trailing blanks at the end of each line\n"); fprintf(Warn, " -LAPACK[0,1,2,3]: Make code look like LAPACK coding style.\n"); fprintf(Warn, " -verb[0,1,2,3]: Vary the verbosity of extract.\n"); fprintf(Warn, " -LnLen[0]#: set maximal number of columns for line length warning.\n"); fprintf(Warn, " -LLWarn[0,1,2]: Line length warnings: 0: none, 1: non-comment, 2: always\n"); fprintf(Warn, " -fmode[0,Q,A]: File mode. 0: default - overwrite if file exists;\n"); fprintf(Warn, " Q: Query before overwriting, A: Append.\n"); fprintf(Warn, " -lang[0,f77,C,M] Language extracted file is.\n"); fprintf(Warn, " -addkeys[0]: Makes it so keys are always inherited.\n"); fprintf(Warn, " -punymac[0]: Makes it so macros in in-line extract files are automatically\n"); fprintf(Warn, " popped before returning to the @extract line.\n"); fprintf(Warn, " NOTE: this flag is never inherited.\n"); fprintf(Warn, " -punyflags[0]: Says that @extract being done should not inherit\n"); fprintf(Warn, " present flag settings.\n"); fprintf(Warn, " -localprocs[0]: If true, makes it so extract procedures and functions are\n"); fprintf(Warn, " undefined before returning to the calling @extract line\n"); fprintf(Warn, " -def <handle> \"<replacement>\".\n"); fprintf(Warn, " -indent <col> <nspaces>\n"); fprintf(Warn, " -trans \"Ln#1, ..., Ln#N\": translate extracted line numbers to basefile\n"); fprintf(Warn, " line numbers.\n"); fprintf(Warn, " -no@<extract,skip,def,ifdef,whiledef,indent,key,abort,macsub,endext,print,exp,declare,addkey,echo,iwhile,proc,output,iif,mif,all>[0]:\n"); fprintf(Warn, " turn off basefile commands.\n"); exit(1); } void ExtInit(EXTENV *EE, WORDS *wp) { char *fin=NULL, *fout=NULL, *flags, *ec, *access; char line[LNLEN]; int i, j, err; WORDS *p, *p2; EE->clindent = NULL; EE->MyPunyMacs = NULL; EE->MyProcs = NULL; EE->Joining = 1; p = wp; flags = EE->Flags; ec = EE->ExtCmndOn; access = "w"; EE->KeyBase = NULL; while (p) { err = 0; Wsafe_slowcase(p->word, LNLEN); /* * parameter is flag */ if (p->word[0] == '-') { if ( WstrcmpN(p->word+1, "multidef", 8) ) { p2 = p = p->next; if (!p) ExtErr(NULL, "No handle for commandline macro definition"); if (!p->next) ExtErr(NULL, "No substring for commandline macro definition"); while (p->next) { if (p->next->word[0] == '-') break; sprintf(line, "@define %s @%s@\n",p2->word, p->next->word); PushMacro(EE, line); p = p->next; } } else if ( WstrcmpN(&p->word[1], "def", 3) ) { /* * Push commandline macro onto stack */ p = p->next; if (!p) ExtErr(NULL, "No handle for commandline macro definition"); if (!p->next) ExtErr(NULL, "No substring for commandline macro definition"); PushMacro2(EE, 1, p->word, p->next->word); p = p->next; } else if ( (p->word[1] == 'o') && (p->word[2] == '\0') ) { p = p->next; if (p) fout = p->word; } else if ( (p->word[1] == 'b') && (p->word[2] == '\0') ) { p = p->next; if (p) fin = p->word; } else if ( WstrcmpN(&p->word[1], "case", 4) ) { if (p->word[5] == 'u') flags[F_Case] = 1; else if (p->word[5] == 'l') flags[F_Case] = 2; else if (p->word[5] == '0' || p->word[5] == '\0') flags[F_Case] = 0; else err = 1; } else if ( WstrcmpN(&p->word[1], "reptab", 6) ) { if (p->word[7] == '\0') flags[F_RepTab] = 8; else { sscanf(&p->word[7], "%d", &i); flags[F_RepTab] = i; } } else if ( WstrcmpN(&p->word[1], "remtblank", 9) ) { flags[F_RemBlank] = (p->word[10] != '0'); } else if ( WstrcmpN(&p->word[1], "lapack", 6) ) { if (p->word[7] == '0') flags[F_Ugly] = 0; else if (p->word[7] == '2') flags[F_Ugly] = 2; else if (p->word[7] == '3') flags[F_Ugly] = 3; else { flags[F_Ugly] = 1; flags[F_Case] = 1; } } else if ( WstrcmpN(&p->word[1], "verb", 4) ) { if (p->word[5] == '1') flags[F_Verb] = 1; else if (p->word[5] == '2') flags[F_Verb] = 2; else if (p->word[5] == '3') flags[F_Verb] = 3; else flags[F_Verb] = 0; } else if ( WstrcmpN(&p->word[1], "lnlen", 5) ) { sscanf(&p->word[6], "%d", &i); flags[F_LnLen] = i; } else if ( WstrcmpN(&p->word[1], "llwarn", 6) ) { sscanf(&p->word[7], "%d", &i); flags[F_LLWarn] = i; } else if ( WstrcmpN(&p->word[1], "fmode", 5) ) { if (p->word[6] == 'a') access = "a"; else access = "w"; flags[F_Query] = (p->word[6] == 'q'); } else if ( WstrcmpN(&p->word[1], "lang", 4) ) { flags[F_Lang] = 'f'; if (p->word[5] == 'c') flags[F_Lang] = 'c'; else if (p->word[5] == 'm') flags[F_Lang] = 'm'; else if (p->word[5] == 'f') if (p->word[6] == '9') flags[F_Lang] = '9'; } else if ( WstrcmpN(&p->word[1], "trans", 5) ) { fprintf(Warn, "\nFlag \'-trans\' not yet implemented.\n"); } else if ( WstrcmpN(&p->word[1], "addkeys", 7) ) { if (p->word[8] == '0') flags[F_AddKeys] = 0; else flags[F_AddKeys] = 1; } else if ( WstrcmpN(&p->word[1], "localprocs", 10) ) { if (p->word[11] == '0') flags[F_LocalProcs] = 0; else flags[F_LocalProcs] = 1; } else if ( WstrcmpN(&p->word[1], "punymac", 7) ) { if (p->word[8] == '0') flags[F_FragMac] = 0; else flags[F_FragMac] = 1; } else if ( WstrcmpN(&p->word[1], "punyflags", 9) ) { if (p->word[10] == '0') flags[F_FragFlag] = 0; else flags[F_FragFlag] = 1; } else if ( WstrcmpN(&p->word[1], "clint", 5) ) { if (p->word[6] == '0') flags[F_Clint] = 0; else flags[F_Clint] = 1; } else if ( WstrcmpN(&p->word[1], "indent", 6) ) { p = p->next; sscanf(p->word, "%d", &i); p = p->next; sscanf(p->word, "%d", &j); EE->clindent = AddIndent(EE, i, j); } else if ( WstrcmpN(&p->word[1], "help", 4) ) PrintUsage(); else if ( WstrcmpN(&p->word[1], "no@", 3) ) { if ( WstrcmpN(&p->word[4], "extract", 7) ) ec[EC_Extract] = p->word[11] == '0'; else if ( WstrcmpN(&p->word[4], "skip", 4) ) ec[EC_Skip] = p->word[8] == '0'; else if ( WstrcmpN(&p->word[4], "def", 3) ) ec[EC_Define] = p->word[7] == '0'; else if ( WstrcmpN(&p->word[4], "ifdef", 5) ) ec[EC_Ifdef] = p->word[9] == '0'; else if ( WstrcmpN(&p->word[4], "whiledef", 8) ) ec[EC_While] = p->word[12] == '0'; else if ( WstrcmpN(&p->word[4], "indent", 6) ) ec[EC_Indent] = p->word[10] == '0'; else if ( WstrcmpN(&p->word[4], "key", 3) ) ec[EC_Key] = p->word[7] == '0'; else if ( WstrcmpN(&p->word[4], "abort", 5) ) ec[EC_Abort] = p->word[9] == '0'; else if ( WstrcmpN(&p->word[4], "macsub", 6) ) ec[EC_MacSub] = p->word[10] == '0'; else if ( WstrcmpN(&p->word[4], "endext", 6) ) ec[EC_EndExt] = p->word[10] == '0'; else if ( WstrcmpN(&p->word[4], "print", 5) ) ec[EC_EndExt] = p->word[9] == '0'; else if ( WstrcmpN(&p->word[4], "exp", 3) ) ec[EC_Exp] = p->word[7] == '0'; else if ( WstrcmpN(&p->word[4], "declare", 7) ) ec[EC_Dec] = p->word[7] == '0'; else if ( WstrcmpN(&p->word[4], "addkey", 6) ) ec[EC_AddKey] = p->word[6] == '0'; else if ( WstrcmpN(&p->word[4], "echo", 4) ) ec[EC_Echo] = p->word[4] == '0'; else if ( WstrcmpN(&p->word[4], "iwhile", 6) ) ec[EC_Iwhile] = p->word[6] == '0'; else if ( WstrcmpN(&p->word[4], "output", 6) ) ec[EC_Output] = p->word[6] == '0'; else if ( WstrcmpN(&p->word[4], "iif", 3) ) ec[EC_Iif] = p->word[6] == '0'; else if ( WstrcmpN(&p->word[4], "mif", 3) ) ec[EC_Mif] = p->word[6] == '0'; else if ( WstrcmpN(&p->word[4], "all", 3) ) { if (p->word[7] == '0') CharSet(EC_nExtCmnds, ec, 1); else { CharSet(EC_nExtCmnds, ec, 0); ec[EC_Output] = 1; } } else err = 1; } else err = 1; if (err) fprintf(Warn, "\n\nUnknown flag \'%s\' ignored.\n\n", p->word); } /* * Parameter is setting up keys */ else AddKey(EE, p->word); p = p->next; } if (fin) EE->FpIn = OpenFile(EE, fin, "r"); if (fout) EE->FpOut = OpenFile(EE, fout, access); KillWords(wp); /* * Must set LnLen if we want warnings */ if (flags[F_LLWarn]) { if (!flags[F_LnLen]) { if (flags[F_Lang] == 'f') flags[F_LnLen] = 71; else flags[F_LnLen] = 80; } } /* * Never replace tabs in Makefiles */ if (flags[F_Lang] == 'm') flags[F_RepTab] = 0; } void Extract(EXTENV *OldEnv, WORDS *wp) { char line[LNLEN]; EXTENV EE; PUNYMAC *pp; KEYS *kp; EXTPROC *fup; void KillProc(EXTENV *EE, EXTPROC *fpkill); EE.FpIn = NULL; EE.FpOut = NULL; if (OldEnv) { if (OldEnv->Flags[F_FragFlag]) CharSet(F_nFlags, EE.Flags, 0); else WstrcpyN((void *) EE.Flags, (void *) OldEnv->Flags, F_nFlags); EE.Flags[F_FragMac] = 0; WstrcpyN((void *) EE.ExtCmndOn, (void *) OldEnv->ExtCmndOn, EC_nExtCmnds); fflush(OldEnv->FpOut->Fp); /* flush oldenv's outfile */ } else { CharSet(F_nFlags, EE.Flags, 0); EE.Flags[F_Lang] = 'f'; CharSet(EC_nExtCmnds, EE.ExtCmndOn, 1); } /* * If no input/output or keys are specified, they are inherited */ if (OldEnv) EE.FpIn = OldEnv->FpIn; if (OldEnv) EE.FpOut = OldEnv->FpOut; ExtInit(&EE, wp); if (EE.FpIn == NULL) EE.FpIn = OpenFile(&EE, "stdin", "r"); if (EE.FpOut == NULL) EE.FpOut = OpenFile(&EE, "stdout", "w"); /* * Print 'extract starting' message, if desired */ if (EE.Flags[F_Verb]) { if (!OldEnv) { fprintf(Warn, "\nBegin commandline extract on files: in=\'%s\', out=\'%s\'.\n", EE.FpIn->Fnam, EE.FpOut->Fnam); } else if (EE.Flags[F_Verb] > 1) { fprintf(Warn, " Begin basefile extract on files: in=\'%s\', out=\'%s\'.\n", EE.FpIn->Fnam, EE.FpOut->Fnam); } } /* * If keys are inherited, they do not affect OldEnv's keys, so we must copy */ if ( (!EE.KeyBase) || (EE.Flags[F_AddKeys]) ) CopyKeys(&EE, OldEnv); /* * Store where my macros begin */ sprintf(line, "@__MyMacBeg__%p", &EE); PushMacro2(&EE, 0, line, ""); EE.MyMacBeg = MacroBase; /* * Read in and handle the file */ while( GetLn(&EE, line) ) { HandleLine(&EE, line); } ExtDone = 0; /* * Print 'extract done' message, if desired */ if (EE.Flags[F_Verb]) { if (!OldEnv) { fprintf(Warn, "Done commandline extract. Files: in=\'%s\', out=\'%s\'; Lines: in=%d, out=%d.\n", EE.FpIn->Fnam, EE.FpOut->Fnam, EE.FpIn->LineNo, EE.FpOut->LineNo); } else if (EE.Flags[F_Verb] > 1) { fprintf(Warn, " Done basefile extract. Files: in=\'%s\', out=\'%s\'; Lines: in=%d, out=%d.\n", EE.FpIn->Fnam, EE.FpOut->Fnam, EE.FpIn->LineNo, EE.FpOut->LineNo); } } /* * Close files */ if (OldEnv == NULL) CloseFile(&EE, EE.FpIn); else if (EE.FpIn != OldEnv->FpIn) CloseFile(&EE, EE.FpIn); if (OldEnv == NULL) CloseFile(&EE, EE.FpOut); else if (EE.FpOut != OldEnv->FpOut) CloseFile(&EE, EE.FpOut); /* * Undefine puny macros */ while(pp = EE.MyPunyMacs) { EE.MyPunyMacs = pp->next; PopThisMacro(&EE, pp->mp); free(pp); } /* * If Fragile macros are set, free all macros defined by this extract session */ if (EE.Flags[F_FragMac]) KillMyMacros(&EE); /* * Pop MyMacBeg */ sprintf(line, "@__MyMacBeg__%p", &EE); PopMacro2(&EE, line); /* * Free my keys */ while(kp = EE.KeyBase) KillThisKey(&EE, EE.KeyBase); /* * Free my procedures */ if (EE.MyProcs) { while (AllProcs != EE.MyProcs) { fup = AllProcs->next; KillProc(&EE, AllProcs); AllProcs = fup; } fup = AllProcs->next; KillProc(&EE, AllProcs); AllProcs = fup; } if (EE.clindent) KillIndent(&EE, EE.clindent); } /* * ================================================================== * Extract procedures and functions * ================================================================== */ void KillProc0(EXTENV *EE, EXTPROC **basep, EXTPROC **myprocs, EXTPROC *ppkill) { EXTPROC *fp; if (ppkill) { remove(ppkill->FileNam); free(ppkill->ProcNam); free(ppkill->FileNam); KillWords(ppkill->argnams); if (ppkill == *basep) { *basep = (*basep)->next; if (ppkill == *myprocs) *myprocs = NULL; } else { for (fp=(*basep); fp->next != ppkill ; fp = fp->next); if (ppkill == *myprocs) *myprocs = fp; fp->next = ppkill->next; } free(ppkill); } } void KillProc(EXTENV *EE, EXTPROC *fpkill) { KillProc0(EE, &AllProcs, &(EE->MyProcs), fpkill); } void KillFunc(EXTENV *EE, EXTPROC *fpkill) { KillProc0(EE, &AllFuncs, &(EE->MyFuncs), fpkill); } EXTPROC *FindProc(EXTENV *EE, EXTPROC *basep, char *proc) { EXTPROC *pp; for (pp=basep; pp; pp = pp->next) if (Wstrcmp(proc, pp->ProcNam)) break; return(pp); } void PopProc(EXTENV *EE, char *proc) { EXTPROC *pp; if (AllProcs) { pp = FindProc(EE, AllProcs, proc); if (pp) KillProc(EE, pp); else ExtWarn(EE, "Nonsensical @UNDEFPROC: %s", proc); } else ExtWarn(EE, "Nonsensical @UNDEFPROC: %s", proc); } void PopFunc(EXTENV *EE, char *func) { EXTPROC *pp; if (AllFuncs) { pp = FindProc(EE, AllFuncs, func); if (pp) KillFunc(EE, pp); else ExtWarn(EE, "Nonsensical @UNDEFFUNC: %s", func); } else ExtWarn(EE, "Nonsensical @UNDEFFUNC: %s", func); } void AddProc0(EXTENV *EE, EXTPROC **basep, EXTPROC **myprocs, EXTPROC *fpadd) { if (*myprocs == NULL) *myprocs = fpadd; fpadd->next = *basep; *basep = fpadd; } void PushProc0(EXTENV *EE, EXTPROC **basep, EXTPROC **myfuncs, char *ln) /* * expects ln of form "<procnam> [arg1 ... argN]" */ { EXTPROC *pp; WORDS *wp, *wpbase; FILE *fp; char *cp; int i; pp = malloc(sizeof(EXTPROC)); wpbase = wp = GetWords(ln); if (!wpbase) { if (*basep == AllProcs) ExtErr(EE, "@BEGINPROC must have a PROCNAME"); else ExtErr(EE, "@BEGINFUNC must have a FUNCNAME"); } i = Wstrlen(wp->word) + 1; pp->ProcNam = malloc(i); Wstrcpy(pp->ProcNam, wp->word); pp->argnams = KillWord(wp, wp); pp->nargs = CountWords(pp->argnams); cp = tmpnam(NULL); if (cp == NULL) ExtErr(EE, "Out of tmpnams!!!"); i = Wstrlen(cp) + 1; pp->FileNam = malloc(i*sizeof(char)); Wstrcpy(pp->FileNam, cp); /* * Dump procedure to tmpfile */ fp = fopen(pp->FileNam, "w"); if (*basep == AllProcs) DumpSkip(EE, fp, "@beginproc ", "@endproc "); else DumpSkip(EE, fp, "@beginfunc ", "@endfunc "); fclose(fp); AddProc0(EE, basep, myfuncs, pp); } void PushProc(EXTENV *EE, char *ln) /* * expects ln of form "@beginproc <procnam> [arg1 ... argN]" */ { PushProc0(EE, &AllProcs, &(EE->MyProcs), ln+11); } void PushFunc(EXTENV *EE, char *ln) /* * expects ln of form "@beginfunc <procnam> [arg1 ... argN]" */ { PushProc0(EE, &AllFuncs, &(EE->MyFuncs), ln+11); } void HandleProcCall0(EXTENV *EE, EXTPROC *basep, char *ln) /* * expects ln of form "<proc/func> [arg1 ... argN]" */ { WORDS *wbase, *wp, *ew, *ap, *dp; EXTPROC *pp; wbase = wp = GetWords(ln); pp = FindProc(EE, basep, wp->word); if (!pp) ExtErr(EE, "Call to undefined proc/func %s", wp->word); ew = GetWord("-b"); ew->next = GetWord(pp->FileNam); wp = ew->next; if (EE->Flags[F_LocalProcs] || basep == AllFuncs) { wp->next = GetWord("-punymac"); wp = wp->next; if (basep == AllFuncs) { wp->next = GetWord("-no@output"); wp = wp->next; } } for (dp=wbase->next, ap = pp->argnams; ap; ap = ap->next, dp = dp->next) { wp->next = GetWord("-def"); wp = wp->next; wp->next = GetWord(ap->word); wp = wp->next; wp->next = GetWord(dp->word); wp = wp->next; } KillWords(wbase); Extract(EE, ew); } void HandleProcCall(EXTENV *EE, char *ln) /* * expects ln of form "@callproc <procnam> [arg1 ... argN]" */ { HandleProcCall0(EE, AllProcs, ln+10); } int LnIsExtCmnd(EXTENV *EE, char *line) { int icalc(EXTENV *EE, char line[]); int i, j, k, KeepOn, DONE=1; char tline[LNLEN], *Use; INDENT *indptr; WORDS *wp, *wp0; KEYS *Key; Use = EE->ExtCmndOn; /* * If first non-whitespace is not an @, line is not extract command */ for (i=0; Mciswspace(line[i]); i++); if (line[i] != '@') return(0); i = commandcpy(tline, &line[i]) + 1; switch(i) { case 4: /* alias for @skip does not work in middle of line! */ if (WstrcmpN(tline, "@// ", 3)) { if ( !Use[EC_Skip] ) return(0); } else DONE = 0; break; case 5: if (WstrcmpN(tline, "@iif ", 4)) { if ( !Use[EC_Iif] ) return(0); HandleIIf(EE, tline); } else if (WstrcmpN(tline, "@mif ", 4)) { if ( !Use[EC_Mif] ) return(0); HandleMIf(EE, tline); } else DONE = 0; break; case 6: if (WstrcmpN(tline, "@skip ", 6)) { if ( !Use[EC_Skip] ) return(0); } else if (WstrcmpN(tline, "@echo ", 6)) { if (Use[EC_Echo]) { for (k=0; line[k] != '@'; k++); k += 6; PutLn(EE, line+k); } else return(0); } else if (WstrcmpN(tline, "@iexp ", 6)) { if ( !Use[EC_Exp] ) return(0); for (i=6; Mciswspace(tline[i]); i++); j=0; while(!Mciswspace(tline[i])) line[j++] = tline[i++]; /* get mac handle */ line[j] = '\0'; keycpy(tline, &tline[i]); i = icalc(EE, tline); PopMacro2(EE, line); /* replace any previous definition */ sprintf(tline, "%d", i); PushMacro2(EE, EE->Flags[F_FragMac], line, tline); } else DONE = 0; break; case 7: if (WstrcmpN(tline, "@undef ", 7)) { if ( Use[EC_Define] ) { if ( !PopMacro(EE, tline) ) ExtWarn(EE, "Nonsensical @UNDEF: %s", line); } else return(0); } else if (WstrcmpN(tline, "@ifdef ", 7)) { if (!Use[EC_Ifdef]) return(0); HandleIfdef(EE, tline); } else if (WstrcmpN(tline, "@abort ", 7)) { if (Use[EC_Abort]) { CloseFile(EE, EE->FpIn); CloseFile(EE, EE->FpOut); ExtErr(EE, "Extract aborted with message `%s`", &tline[7]); exit(1); } else return(0); } else if (WstrcmpN(tline, "@print ", 7)) { if (Use[EC_Print]) fprintf(Warn, "%s", &tline[7]); else return(0); } else DONE = 0; break; case 8: if (WstrcmpN(tline, "@define ", 8)) { if ( Use[EC_Define] ) PushMacro(EE, tline); else return(0); } else if (WstrcmpN(tline, "@system ", 8)) { i = Wstrcpy(line, &tline[9]); while (line[i] != '\"') i--; line[i++] = '\n'; line[i++] = '\0'; if (system(line)) fprintf(stderr, "WARNING system FAILED '%s'\n", tline); } else if (WstrcmpN(tline, "@iwhile ", 8)) { if (!Use[EC_Iwhile]) return(0); HandleIwhile(EE, tline); } else if (WstrcmpN(tline, "@endmif ", 8)) { if ( !Use[EC_Mif] ) return(0); if (INMODE(mode, MODE_MIF)) { if (modedepth[MCMIF] > 0) { modedepth[MCMIF]--; if (!(modedepth[MCMIF])) KILLMODE(mode, MODE_MIF); } else ExtErr(EE, "Internal mode error: `%s`", tline); } else ExtWarn(EE, "Nonsensical @ENDMIF"); } else if (WstrcmpN(tline, "@endiif ", 8)) { if ( !Use[EC_Iif] ) return(0); if (INMODE(mode, MODE_IIF)) { if (modedepth[MCIIF] > 0) { modedepth[MCIIF]--; if (!(modedepth[MCIIF])) KILLMODE(mode, MODE_IIF); } else ExtErr(EE, "Internal mode error: `%s`", tline); } else ExtWarn(EE, "Nonsensical @ENDIIF"); } else DONE = 0; break; case 9: if (WstrcmpN(tline, "@extract ", 9)) { if ( Use[EC_Extract] ) { Wstrcpy(tline, &tline[9]); wp = GetArgs(EE, tline); Extract(EE, wp); } else return(0); } else if (WstrcmpN(tline, "@declare ", 9)) { if (!Use[EC_Dec]) return(0); HandleDec(EE, tline); } else if (WstrcmpN(tline, "@addkeys ",9)) { if ( Use[EC_AddKey] ) { wp0 = wp = GetWords(&tline[9]); while (wp) { AddKey(EE, wp->word); wp = wp->next; } KillWords(wp0); } else return(0); } else if (WstrcmpN(tline, "@endskip ", 9)) { if ( Use[EC_Skip] ) ExtWarn(EE, "unmatched @ENDSKIP"); else return(0); } else if (WstrcmpN(tline, "@endproc ", 9)) { if ( Use[EC_Proc] ) ExtWarn(EE, "unmatched @ENDPROC"); else return(0); } else DONE = 0; break; case 10: if (WstrcmpN(tline, "@whiledef ", 10)) { if (!Use[EC_While]) return(0); HandleWhile(EE, tline); } else if (WstrcmpN(tline, "@multidef ", 10)) { if (!Use[EC_Define]) return(0); HandleMultidef(EE, tline); } else if (WstrcmpN(tline, "@callproc ", 10)) { if (!Use[EC_Proc]) return(0); HandleProcCall(EE, tline); } else if (WstrcmpN(tline, "@killkeys ", 10)) { if ( Use[EC_AddKey] ) { wp0 = wp = GetWords(&tline[10]); while (wp) { KillKey(EE, wp->word); wp = wp->next; } KillWords(wp0); } else return(0); } else if (WstrcmpN(tline, "@endwhile ", 10)) { if ( Use[EC_While] ) ExtWarn(EE, "unmatched @ENDWHILE"); else return(0); } else if (WstrcmpN(tline, "@endifdef ", 10)) { if ( Use[EC_Ifdef] ) ExtWarn(EE, "unmatched @ENDIFDEF"); else return(0); } else if (WstrcmpN(tline, "@undefall ", 10)) { if ( Use[EC_Define] ) { keycpy(tline, &tline[10]); /* * If undefining all of one handle */ if (tline[0]) { Wstrcpy(line, "@undef "); i = 10; for (i=10; ( !Mciswspace(tline[i]) && tline[i] ); i++) line[i-3] = tline[i]; line[i-3] = '\0'; while( PopMacro(EE, line) ); } /* * If undefining all handles */ else KillMyMacros(EE); } else return(0); } else DONE = 0; break; case 11: if (WstrcmpN(tline, "@beginskip ", 11)) { if ( Use[EC_Skip] ) DumpSkip(EE, NULL, "@beginskip ", "@endskip "); else return(0); } else if (WstrcmpN(tline, "@endindent ", 11)) { if ( Use[EC_Indent] ) KillIndent(EE, indbase->prev); else return(0); } else if (WstrcmpN(tline, "@beginproc ", 11)) { if (Use[EC_Proc]) PushProc(EE, tline); else return(0); } else if (WstrcmpN(tline, "@endiwhile ", 11)) { if ( Use[EC_Iwhile] ) ExtWarn(EE, "unmatched @ENDIWHILE"); else return(0); } else DONE = 0; break; case 12: if (WstrcmpN(tline, "@enddeclare ", 12)) { if ( Use[EC_Dec] ) ExtWarn(EE, "unmatched @enddeclare"); else return(0); } if (WstrcmpN(tline, "@print@nmac ", 12)) { if (Use[EC_Print]) fprintf(Warn, "%d:%s", CountMacros(), tline+12); else return(0); } else if (WstrcmpN(tline, "@endextract ", 12)) { if ( Use[EC_EndExt] ) ExtDone = 1; else return(0); } else DONE = 0; break; case 13: if (WstrcmpN(tline, "@beginindent ", 13)) { if ( Use[EC_Indent] ) { keycpy(tline, line); sscanf(&tline[13], "%d", &j); for (i=13; Mcisnum(tline[i]); i++); sscanf(&tline[++i], "%d", &k); AddIndent(EE, j, k); } else return(0); } else DONE = 0; break; case 15: if (WstrcmpN(tline, "@print@allmacs ", 15)) { if (Use[EC_Print]) { int i; EXTMAC *p; for (i=0, p=MacroBase; p; i++,p=p->next) { fprintf(Warn, "'%10s' -> '%s'\n", p->Handle, p->Sub); } fprintf(Warn, "Done %d macros.\n\n", i); } else return(0); } else DONE = 0; break; default: DONE = 0; break; } /* * Must be @<keyhandle>, a line continuation (@\) or an unassociated @ sign */ if (!DONE) { if (Use[EC_Key]) { keycpy(tline, line); Key = IsKeyLn(EE, tline); if (Key) HandleKeyLn(EE, tline, Key); else { if (tline[1] != '\\') /* don't warn about line continuation */ { if ( !(tline[1] == '(' && tline[2] == '@' && tline[3] == ')') ) ExtWarn(EE, "Non-associated @"); } return(0); } } else return(0); } return(1); } void HandleLine(EXTENV *EE, char *line) { /* * If line is not an extract command, apply flags and write to file */ if (EE->ExtCmndOn[EC_MacSub]) MacroSub(EE, line); if ( !LnIsExtCmnd(EE, line) ) { if (EE->ExtCmndOn[EC_Output]) PutLn(EE, line); else ExtErr(EE, "Output in prohibited mode: %s", line); } } main(int nargs, char *args[]) { char line[LNLEN], *path; int i; FILE *fp; WORDS *wp, *wp2=NULL, *wp3; Warn = stderr; path = getenv("HOME"); i = Wstrcpy(line, path); Wstrcpy(&line[i], "/.extractrc"); fp = fopen(line, "r"); if (fp) { if ( fgets(line, LNLEN, fp) ) wp2 = GetWords(line); fclose(fp); } if (nargs > 1) { wp3 = wp = GetWord(args[1]); for (i=2; i < nargs; i++) { wp->next = GetWord(args[i]); wp = wp->next; } wp = wp3; if (wp2) /* add commandline words to end of .extractrc words */ { for (wp3=wp2; wp3->next; wp3 = wp3->next); wp3->next = wp; wp = wp2; } } else if (fp == NULL) wp = GetWord("-help"); else wp = wp2; Extract(NULL, wp); exit(0); } /************************************************************************/ /* This program is distributed under the terms of the Gnu */ /* General Public License (GPL), with the following two exceptions: */ /* (1) Clause (9), dealing with updating the GPL automatically, is */ /* specifically disallowed by the author. The author will */ /* determine if a newer GPL version is still appropriate. */ /* (2) The basefiles extract accepts as input, and the extracted */ /* files it produces as output, are specifically designated as */ /* as outside the scope if this license (i.e. they are *not* */ /* required by this license to be GPL). */ /* The full, unaltered, text of the GPL is included below. */ /************************************************************************/ /* GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS */
the_stack_data/173577105.c
struct data; struct data* gdp; void take_data(struct data* pd) { gdp = pd; } struct page_frag { void* p; }; struct data { int x; double y; struct data* next; struct page_frag mib; }; struct data gd; struct data* return_data(void) { gd.x = 1; gd.y = 19 * 82.43; return &gd; } struct decl_only; struct decl_only* gdo; void set_gdo(struct decl_only* x) { gdo = x; } struct { int x, y; } unname; typedef struct { int a; } unnamed_t; typedef struct name { int value; } name_t; unnamed_t* use_unname(name_t* arg) { unname.x = 12; unnamed_t un; un.a = 34; name_t nn; nn.value = 56; return 0; } enum Gender { kMale, kFemale }; void use_enum(enum Gender x); static void foo(); int bar() { void (*pf)() = foo; pf(); return 1; } #define macro macro void macro() { } #define build(x) void x(); build(xxx) #define BUG_ON(x) void hidden(); BUG_ON(3) #define FOO foo() int main() { foo(); bar(); FOO; } static void foo() { }
the_stack_data/248580021.c
/* A custom print funtion that supports printing of arbitrary types like iostream in C++ The main print function accepts Printer structs as varargs Printer structs hold a pointer to the data you want to print and a pointer to the function to print it with Benerfits of this approach: - formatted printing of arbitrary structs Downsides of this approach - adding new printers is boilerplaty - printing of literals is not supported, you must allocate them on the stack and pass in the address */ #include <assert.h> #include <inttypes.h> #include <memory.h> #include <stdarg.h> #include <stdbool.h> #include <stdio.h> typedef struct { void *data; void (*fn)(void *); } Printer; void print(const char *fmt, ...) { va_list(args); va_start(args, fmt); for (int i = 0; fmt[i] != '\0'; i++) { char c = fmt[i]; if (c == '{' && fmt[i + 1] == '}') { Printer p = va_arg(args, Printer); (*(p.fn))(p.data); i++; } else { fputc(c, stdout); } } va_end(args); } #define printLn(...) \ print(__VA_ARGS__); \ fputs("\n", stdout); void printChars(const char *chars) { fputs(chars, stdout); } Printer charsP(const char *chars) { return (Printer){(void *)chars, &printChars}; } void printInt(const int *v) { int x = *v; char digits[16]; int i = 0; while (x > 0) { digits[i++] = (x % 10) + '0'; x /= 10; } while (i > 0) { fputc(digits[--i], stdout); } } Printer intP(const int *v) { return (Printer){(void *)v, &printInt}; } typedef struct { int x; int y; int z; } V3; void printV3(const V3 *v) { print("{{},{},{}}", intP(&v->x), intP(&v->y), intP(&v->z)); } Printer V3P(const V3 *v) { return (Printer){(void *)v, &printV3}; } typedef struct { int x; int y; } V2; void printV2(const V2 *v) { print("{{},{}}", intP(&v->x), intP(&v->y)); } Printer V2P(const V2 *v) { return (Printer){(void *)v, &printV2}; } int main() { printLn("Hello {}!", charsP("world")); V3 foo = {1, 2, 3}; V2 bar = {4, 9}; printLn("Vectors {}, {}", V3P(&foo), V2P(&bar)); return 0; }
the_stack_data/287606.c
/*** includes ***/ #define _DEFAULT_SOURCE #define _BSD_SOURCE #define _GNU_SOURCE #include <ctype.h> #include <errno.h> #include <fcntl.h> #include <stdio.h> #include <stdarg.h> #include <stdlib.h> #include <string.h> #include <sys/ioctl.h> #include <sys/types.h> #include <termios.h> #include <time.h> #include <unistd.h> #include <signal.h> /*** defines ***/ #define KILO_VERSION "0.0.1" #define KILO_TAB_STOP 2 #define KILO_QUIT_TIMES 2 #define CTRL_KEY(k) ((k) & 0x1f) #define ALT_KEY(k) (1100 + k) enum editorKey { BACKSPACE = 127, ARROW_LEFT = 1000, ARROW_RIGHT, ARROW_UP, ARROW_DOWN, DEL_KEY, HOME_KEY, END_KEY, PAGE_UP, PAGE_DOWN }; enum editorHighlight { HL_NORMAL = 0, HL_COMMENT, HL_MLCOMMENT, HL_KEYWORD1, HL_KEYWORD2, HL_STRING, HL_NUMBER, HL_MATCH }; #define HL_HIGHLIGHT_NUMBERS (1<<0) #define HL_HIGHLIGHT_STRINGS (1<<1) /*** data ***/ struct editorSyntax { char *filetype; char **filematch; char **keywords; char *singleline_comment_start; char *multiline_comment_start; char *multiline_comment_end; int flags; }; typedef struct erow { int idx; int size; int rsize; char *chars; char *render; unsigned char *hl; int hl_open_comment; } erow; struct editorConfig { int cx, cy; int rx; int rowoff; int coloff; int screenrows; int screencols; int numrows; erow *row; int dirty; char *filename; char statusmsg[80]; time_t statusmsg_time; struct editorSyntax *syntax; struct termios orig_termios; }; struct editorConfig E; /*** filetypes ***/ char *C_HL_extensions[] = { ".c", ".h", ".cpp", NULL }; char *C_HL_keywords[] = { "switch", "if", "while", "for", "break", "continue", "return", "else", "struct", "union", "typedef", "static", "enum", "class", "case", "int|", "long|", "double|", "float|", "char|", "unsigned|", "signed|", "void|", NULL }; struct editorSyntax HLDB[] = { { "c", C_HL_extensions, C_HL_keywords, "//", "/*", "*/", HL_HIGHLIGHT_NUMBERS | HL_HIGHLIGHT_STRINGS }, }; #define HLDB_ENTRIES (sizeof(HLDB) / sizeof(HLDB[0])) /*** prototypes ***/ void editorSetStatusMessage(const char *fmt, ...); void editorRefreshScreen(); char *editorPrompt(char *prompt, void (*callback)(char *, int)); /*** terminal ***/ void die(const char *s) { write(STDOUT_FILENO, "\x1b[2J", 4); write(STDOUT_FILENO, "\x1b[H", 3); perror(s); exit(1); } void disableRawMode() { if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &E.orig_termios) == -1) die("tcsetattr"); } void enableRawMode() { if (tcgetattr(STDIN_FILENO, &E.orig_termios) == -1) die("tcgetattr"); atexit(disableRawMode); struct termios raw = E.orig_termios; raw.c_iflag &= ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON); raw.c_oflag &= ~(OPOST); raw.c_cflag |= (CS8); // raw.c_lflag &= ~(ECHO | ICANON | IEXTEN | ISIG); raw.c_lflag &= ~(ECHO | ICANON | IEXTEN); raw.c_cc[VMIN] = 0; raw.c_cc[VTIME] = 1; if (tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) == -1) die("tcsetattr"); } int editorReadKey() { int nread; char c; while ((nread = read(STDIN_FILENO, &c, 1)) != 1) { // if (nread == -1 && errno != EAGAIN) die("read"); } if (c == '\x1b') { char seq[3]; if (read(STDIN_FILENO, &seq[0], 1) != 1) return '\x1b'; if (seq[0] == '[') { if (read(STDIN_FILENO, &seq[1], 1) != 1) return '\x1b'; if (seq[1] >= '0' && seq[1] <= '9') { if (read(STDIN_FILENO, &seq[2], 1) != 1) return '\x1b'; if (seq[2] == '~') { switch (seq[1]) { case '1': return HOME_KEY; case '3': return DEL_KEY; case '4': return END_KEY; case '5': return PAGE_UP; case '6': return PAGE_DOWN; case '7': return HOME_KEY; case '8': return END_KEY; } } } else { switch (seq[1]) { case 'A': return ARROW_UP; case 'B': return ARROW_DOWN; case 'C': return ARROW_RIGHT; case 'D': return ARROW_LEFT; case 'H': return HOME_KEY; case 'F': return END_KEY; } } } else if (seq[0] == 'O') { switch (seq[1]) { case 'H': return HOME_KEY; case 'F': return END_KEY; } } else if (seq[0] >= 32 && seq[0] <= 126) { return ALT_KEY(seq[0]); } return '\x1b'; } else { return c; } } int editorGetCursorCol() { return E.cx; } int editorGetCursorRow() { return E.cy; } char editorGetChar(int x, int y) { return E.row[x].chars[y]; } int editorGetMaxRow() { return E.numrows; } int editorGetMaxCol() { return E.row[E.cy].size; } int getCursorPosition(int *rows, int *cols) { char buf[32]; unsigned int i = 0; if (write(STDOUT_FILENO, "\x1b[6n", 4) != 4) return -1; while (i < sizeof(buf) - 1) { if (read(STDIN_FILENO, &buf[i], 1) != 1) break; if (buf[i] == 'R') break; i++; } buf[i] = '\0'; if (buf[0] != '\x1b' || buf[1] != '[') return -1; if (sscanf(&buf[2], "%d;%d", rows, cols) != 2) return -1; return 0; } int getWindowSize(int *rows, int *cols) { struct winsize ws; if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) { if (write(STDOUT_FILENO, "\x1b[999C\x1b[999B", 12) != 12) return -1; return getCursorPosition(rows, cols); } else { *cols = ws.ws_col; *rows = ws.ws_row; return 0; } } /*** syntax highlighting ***/ int is_separator(int c) { return isspace(c) || c == '\0' || strchr(",.()+-/*=~%<>[];", c) != NULL; } void editorUpdateSyntax(erow *row) { row->hl = realloc(row->hl, row->rsize); memset(row->hl, HL_NORMAL, row->rsize); if (E.syntax == NULL) return; char **keywords = E.syntax->keywords; char *scs = E.syntax->singleline_comment_start; char *mcs = E.syntax->multiline_comment_start; char *mce = E.syntax->multiline_comment_end; int scs_len = scs ? strlen(scs) : 0; int mcs_len = mcs ? strlen(mcs) : 0; int mce_len = mce ? strlen(mce) : 0; int prev_sep = 1; int in_string = 0; int in_comment = (row->idx > 0 && E.row[row->idx - 1].hl_open_comment); int i = 0; while (i < row->rsize) { char c = row->render[i]; unsigned char prev_hl = (i > 0) ? row->hl[i - 1] : HL_NORMAL; if (scs_len && !in_string && !in_comment) { if (!strncmp(&row->render[i], scs, scs_len)) { memset(&row->hl[i], HL_COMMENT, row->rsize - i); break; } } if (mcs_len && mce_len && !in_string) { if (in_comment) { row->hl[i] = HL_MLCOMMENT; if (!strncmp(&row->render[i], mce, mce_len)) { memset(&row->hl[i], HL_MLCOMMENT, mce_len); i += mce_len; in_comment = 0; prev_sep = 1; continue; } else { i++; continue; } } else if (!strncmp(&row->render[i], mcs, mcs_len)) { memset(&row->hl[i], HL_MLCOMMENT, mcs_len); i += mcs_len; in_comment = 1; continue; } } if (E.syntax->flags & HL_HIGHLIGHT_STRINGS) { if (in_string) { row->hl[i] = HL_STRING; if (c == '\\' && i + 1 < row->rsize) { row->hl[i + 1] = HL_STRING; i += 2; continue; } if (c == in_string) in_string = 0; i++; prev_sep = 1; continue; } else { if (c == '"' || c == '\'') { in_string = c; row->hl[i] = HL_STRING; i++; continue; } } } if (E.syntax->flags & HL_HIGHLIGHT_NUMBERS) { if ((isdigit(c) && (prev_sep || prev_hl == HL_NUMBER)) || (c == '.' && prev_hl == HL_NUMBER)) { row->hl[i] = HL_NUMBER; i++; prev_sep = 0; continue; } } if (prev_sep) { int j; for (j = 0; keywords[j]; j++) { int klen = strlen(keywords[j]); int kw2 = keywords[j][klen - 1] == '|'; if (kw2) klen--; if (!strncmp(&row->render[i], keywords[j], klen) && is_separator(row->render[i + klen])) { memset(&row->hl[i], kw2 ? HL_KEYWORD2 : HL_KEYWORD1, klen); i += klen; break; } } if (keywords[j] != NULL) { prev_sep = 0; continue; } } prev_sep = is_separator(c); i++; } int changed = (row->hl_open_comment != in_comment); row->hl_open_comment = in_comment; if (changed && row->idx + 1 < E.numrows) editorUpdateSyntax(&E.row[row->idx + 1]); } int editorSyntaxToColor(int hl) { switch (hl) { case HL_COMMENT: case HL_MLCOMMENT: return 36; case HL_KEYWORD1: return 33; case HL_KEYWORD2: return 32; case HL_STRING: return 35; case HL_NUMBER: return 31; case HL_MATCH: return 34; default: return 37; } } void editorSelectSyntaxHighlight() { E.syntax = NULL; if (E.filename == NULL) return; char *ext = strrchr(E.filename, '.'); for (unsigned int j = 0; j < HLDB_ENTRIES; j++) { struct editorSyntax *s = &HLDB[j]; unsigned int i = 0; while (s->filematch[i]) { int is_ext = (s->filematch[i][0] == '.'); if ((is_ext && ext && !strcmp(ext, s->filematch[i])) || (!is_ext && strstr(E.filename, s->filematch[i]))) { E.syntax = s; int filerow; for (filerow = 0; filerow < E.numrows; filerow++) { editorUpdateSyntax(&E.row[filerow]); } return; } i++; } } } /*** row operations ***/ int editorRowCxToRx(erow *row, int cx) { int rx = 0; int j; for (j = 0; j < cx; j++) { if (row->chars[j] == '\t') rx += (KILO_TAB_STOP - 1) - (rx % KILO_TAB_STOP); rx++; } return rx; } int editorRowRxToCx(erow *row, int rx) { int cur_rx = 0; int cx; for (cx = 0; cx < row->size; cx++) { if (row->chars[cx] == '\t') cur_rx += (KILO_TAB_STOP - 1) - (cur_rx % KILO_TAB_STOP); cur_rx++; if (cur_rx > rx) return cx; } return cx; } void editorUpdateRow(erow *row) { int tabs = 0; int j; for (j = 0; j < row->size; j++) if (row->chars[j] == '\t') tabs++; free(row->render); row->render = malloc(row->size + tabs*(KILO_TAB_STOP - 1) + 1); int idx = 0; for (j = 0; j < row->size; j++) { if (row->chars[j] == '\t') { row->render[idx++] = ' '; while (idx % KILO_TAB_STOP != 0) row->render[idx++] = ' '; } else { row->render[idx++] = row->chars[j]; } } row->render[idx] = '\0'; row->rsize = idx; editorUpdateSyntax(row); } void editorInsertRow(int at, char *s, size_t len) { if (at < 0 || at > E.numrows) return; E.row = realloc(E.row, sizeof(erow) * (E.numrows + 1)); memmove(&E.row[at + 1], &E.row[at], sizeof(erow) * (E.numrows - at)); for (int j = at + 1; j <= E.numrows; j++) E.row[j].idx++; E.row[at].idx = at; E.row[at].size = len; E.row[at].chars = malloc(len + 1); memcpy(E.row[at].chars, s, len); E.row[at].chars[len] = '\0'; E.row[at].rsize = 0; E.row[at].render = NULL; E.row[at].hl = NULL; E.row[at].hl_open_comment = 0; editorUpdateRow(&E.row[at]); E.numrows++; E.dirty++; } void editorFreeRow(erow *row) { free(row->render); free(row->chars); free(row->hl); } void editorDelRow(int at) { if (at < 0 || at >= E.numrows) return; editorFreeRow(&E.row[at]); memmove(&E.row[at], &E.row[at + 1], sizeof(erow) * (E.numrows - at - 1)); for (int j = at; j < E.numrows - 1; j++) E.row[j].idx--; E.numrows--; E.dirty++; } void editorRowInsertChar(erow *row, int at, int c) { if (at < 0 || at > row->size) at = row->size; row->chars = realloc(row->chars, row->size + 2); memmove(&row->chars[at + 1], &row->chars[at], row->size - at + 1); row->size++; row->chars[at] = c; editorUpdateRow(row); E.dirty++; } void editorRowAppendString(erow *row, char *s, size_t len) { row->chars = realloc(row->chars, row->size + len + 1); memcpy(&row->chars[row->size], s, len); row->size += len; row->chars[row->size] = '\0'; editorUpdateRow(row); E.dirty++; } void editorRowDelChar(erow *row, int at) { if (at < 0 || at >= row->size) return; memmove(&row->chars[at], &row->chars[at + 1], row->size - at); row->size--; editorUpdateRow(row); E.dirty++; } /*** editor operations ***/ void editorInsertChar(int c) { if (E.cy == E.numrows) { editorInsertRow(E.numrows, "", 0); } editorRowInsertChar(&E.row[E.cy], E.cx, c); E.cx++; } void editorInsertNewline() { if (E.cx == 0) { editorInsertRow(E.cy, "", 0); } else { erow *row = &E.row[E.cy]; editorInsertRow(E.cy + 1, &row->chars[E.cx], row->size - E.cx); row = &E.row[E.cy]; row->size = E.cx; row->chars[row->size] = '\0'; editorUpdateRow(row); } E.cy++; E.cx = 0; } void editorDelChar() { if (E.cy == E.numrows) return; if (E.cx == 0 && E.cy == 0) return; erow *row = &E.row[E.cy]; if (E.cx > 0) { editorRowDelChar(row, E.cx - 1); E.cx--; } else { E.cx = E.row[E.cy - 1].size; editorRowAppendString(&E.row[E.cy - 1], row->chars, row->size); editorDelRow(E.cy); E.cy--; } } /*** file i/o ***/ char *editorRowsToString(int *buflen) { int totlen = 0; int j; for (j = 0; j < E.numrows; j++) totlen += E.row[j].size + 1; *buflen = totlen; char *buf = malloc(totlen); char *p = buf; for (j = 0; j < E.numrows; j++) { memcpy(p, E.row[j].chars, E.row[j].size); p += E.row[j].size; *p = '\n'; p++; } return buf; } void editorOpen(char *filename) { free(E.filename); E.filename = strdup(filename); editorSelectSyntaxHighlight(); FILE *fp = fopen(filename, "r"); if (!fp) die("fopen"); char *line = NULL; size_t linecap = 0; ssize_t linelen; while ((linelen = getline(&line, &linecap, fp)) != -1) { while (linelen > 0 && (line[linelen - 1] == '\n' || line[linelen - 1] == '\r')) linelen--; editorInsertRow(E.numrows, line, linelen); } free(line); fclose(fp); E.dirty = 0; } void editorSave() { if (E.filename == NULL) { E.filename = editorPrompt("Save as: %s (ESC to cancel)", NULL); if (E.filename == NULL) { editorSetStatusMessage("Save aborted"); return; } editorSelectSyntaxHighlight(); } int len; char *buf = editorRowsToString(&len); int fd = open(E.filename, O_RDWR | O_CREAT, 0644); if (fd != -1) { if (ftruncate(fd, len) != -1) { if (write(fd, buf, len) == len) { close(fd); free(buf); E.dirty = 0; editorSetStatusMessage("%d bytes written to disk", len); return; } } close(fd); } free(buf); editorSetStatusMessage("Can't save! I/O error: %s", strerror(errno)); } /*** find ***/ void editorFindCallback(char *query, int key) { static int last_match = -1; static int direction = 1; static int saved_hl_line; static char *saved_hl = NULL; if (saved_hl) { memcpy(E.row[saved_hl_line].hl, saved_hl, E.row[saved_hl_line].rsize); free(saved_hl); saved_hl = NULL; } if (key == '\r' || key == '\x1b') { last_match = -1; direction = 1; return; } else if (key == ARROW_RIGHT || key == ARROW_DOWN) { direction = 1; } else if (key == ARROW_LEFT || key == ARROW_UP) { direction = -1; } else { last_match = -1; direction = 1; } if (last_match == -1) direction = 1; int current = last_match; int i; for (i = 0; i < E.numrows; i++) { current += direction; if (current == -1) current = E.numrows - 1; else if (current == E.numrows) current = 0; erow *row = &E.row[current]; char *match = strstr(row->render, query); if (match) { last_match = current; E.cy = current; E.cx = editorRowRxToCx(row, match - row->render); E.rowoff = E.numrows; saved_hl_line = current; saved_hl = malloc(row->rsize); memcpy(saved_hl, row->hl, row->rsize); memset(&row->hl[match - row->render], HL_MATCH, strlen(query)); break; } } } void editorFind() { int saved_cx = E.cx; int saved_cy = E.cy; int saved_coloff = E.coloff; int saved_rowoff = E.rowoff; char *query = editorPrompt("Search: %s (Use ESC/Arrows/Enter)", editorFindCallback); if (query) { free(query); } else { E.cx = saved_cx; E.cy = saved_cy; E.coloff = saved_coloff; E.rowoff = saved_rowoff; } } /*** append buffer ***/ struct abuf { char *b; int len; }; #define ABUF_INIT {NULL, 0} void abAppend(struct abuf *ab, const char *s, int len) { char *new = realloc(ab->b, ab->len + len); if (new == NULL) return; memcpy(&new[ab->len], s, len); ab->b = new; ab->len += len; } void abFree(struct abuf *ab) { free(ab->b); } /*** output ***/ void editorScroll() { E.rx = 0; if (E.cy < E.numrows) { E.rx = editorRowCxToRx(&E.row[E.cy], E.cx); } if (E.cy < E.rowoff) { E.rowoff = E.cy; } if (E.cy >= E.rowoff + E.screenrows) { E.rowoff = E.cy - E.screenrows + 1; } if (E.rx < E.coloff) { E.coloff = E.rx; } if (E.rx >= E.coloff + E.screencols) { E.coloff = E.rx - E.screencols + 1; } } void editorDrawRows(struct abuf *ab) { int y; for (y = 0; y < E.screenrows; y++) { int filerow = y + E.rowoff; if (filerow >= E.numrows) { if (E.numrows == 0 && y == E.screenrows / 3) { char welcome[80]; int welcomelen = snprintf(welcome, sizeof(welcome), "SEemacs -- version %s", KILO_VERSION); if (welcomelen > E.screencols) welcomelen = E.screencols; int padding = (E.screencols - welcomelen) / 2; if (padding) { abAppend(ab, "~", 1); padding--; } while (padding--) abAppend(ab, " ", 1); abAppend(ab, welcome, welcomelen); } else { abAppend(ab, "~", 1); } } else { int len = E.row[filerow].rsize - E.coloff; if (len < 0) len = 0; if (len > E.screencols) len = E.screencols; char *c = &E.row[filerow].render[E.coloff]; unsigned char *hl = &E.row[filerow].hl[E.coloff]; int current_color = -1; int j; for (j = 0; j < len; j++) { if (iscntrl(c[j])) { char sym = (c[j] <= 26) ? '@' + c[j] : '?'; abAppend(ab, "\x1b[7m", 4); abAppend(ab, &sym, 1); abAppend(ab, "\x1b[m", 3); if (current_color != -1) { char buf[16]; int clen = snprintf(buf, sizeof(buf), "\x1b[%dm", current_color); abAppend(ab, buf, clen); } } else if (hl[j] == HL_NORMAL) { if (current_color != -1) { abAppend(ab, "\x1b[39m", 5); current_color = -1; } abAppend(ab, &c[j], 1); } else { int color = editorSyntaxToColor(hl[j]); if (color != current_color) { current_color = color; char buf[16]; int clen = snprintf(buf, sizeof(buf), "\x1b[%dm", color); abAppend(ab, buf, clen); } abAppend(ab, &c[j], 1); } } abAppend(ab, "\x1b[39m", 5); } abAppend(ab, "\x1b[K", 3); abAppend(ab, "\r\n", 2); } } void editorDrawStatusBar(struct abuf *ab) { abAppend(ab, "\x1b[7m", 4); char status[80], rstatus[80]; int len = snprintf(status, sizeof(status), "%.20s - %d lines %s", E.filename ? E.filename : "[No Name]", E.numrows, E.dirty ? "(modified)" : ""); int rlen = snprintf(rstatus, sizeof(rstatus), "%s | %d/%d", E.syntax ? E.syntax->filetype : "no ft", E.cy + 1, E.numrows); if (len > E.screencols) len = E.screencols; abAppend(ab, status, len); while (len < E.screencols) { if (E.screencols - len == rlen) { abAppend(ab, rstatus, rlen); break; } else { abAppend(ab, " ", 1); len++; } } abAppend(ab, "\x1b[m", 3); abAppend(ab, "\r\n", 2); } void editorDrawMessageBar(struct abuf *ab) { abAppend(ab, "\x1b[K", 3); int msglen = strlen(E.statusmsg); if (msglen > E.screencols) msglen = E.screencols; if (msglen && time(NULL) - E.statusmsg_time < 5) abAppend(ab, E.statusmsg, msglen); } void editorRefreshScreen() { editorScroll(); struct abuf ab = ABUF_INIT; abAppend(&ab, "\x1b[?25l", 6); abAppend(&ab, "\x1b[H", 3); editorDrawRows(&ab); editorDrawStatusBar(&ab); editorDrawMessageBar(&ab); char buf[32]; snprintf(buf, sizeof(buf), "\x1b[%d;%dH", (E.cy - E.rowoff) + 1, (E.rx - E.coloff) + 1); abAppend(&ab, buf, strlen(buf)); abAppend(&ab, "\x1b[?25h", 6); write(STDOUT_FILENO, ab.b, ab.len); abFree(&ab); } void editorSetStatusMessage(const char *fmt, ...) { va_list ap; va_start(ap, fmt); vsnprintf(E.statusmsg, sizeof(E.statusmsg), fmt, ap); va_end(ap); E.statusmsg_time = time(NULL); } /*** input ***/ char *editorPrompt(char *prompt, void (*callback)(char *, int)) { size_t bufsize = 128; char *buf = malloc(bufsize); size_t buflen = 0; buf[0] = '\0'; while (1) { editorSetStatusMessage(prompt, buf); editorRefreshScreen(); int c = editorReadKey(); if (c == DEL_KEY || c == CTRL_KEY('h') || c == BACKSPACE) { if (buflen != 0) buf[--buflen] = '\0'; } else if (c == '\x1b') { editorSetStatusMessage(""); if (callback) callback(buf, c); free(buf); return NULL; } else if (c == '\r') { if (buflen != 0) { editorSetStatusMessage(""); if (callback) callback(buf, c); return buf; } } else if (!iscntrl(c) && c < 128) { if (buflen == bufsize - 1) { bufsize *= 2; buf = realloc(buf, bufsize); } buf[buflen++] = c; buf[buflen] = '\0'; } if (callback) callback(buf, c); } } char* editorGetSexp() { return editorPrompt("Eval: %s", NULL); } void editorMoveCursor(int key) { erow *row = (E.cy >= E.numrows) ? NULL : &E.row[E.cy]; switch (key) { case ARROW_LEFT: if (E.cx != 0) { E.cx--; } else if (E.cy > 0) { E.cy--; E.cx = E.row[E.cy].size; } break; case ARROW_RIGHT: if (row && E.cx < row->size) { E.cx++; } else if (row && E.cx == row->size) { E.cy++; E.cx = 0; } break; case ARROW_UP: if (E.cy != 0) { E.cy--; } break; case ARROW_DOWN: if (E.cy < E.numrows) { E.cy++; } break; } row = (E.cy >= E.numrows) ? NULL : &E.row[E.cy]; int rowlen = row ? row->size : 0; if (E.cx > rowlen) { E.cx = rowlen; } } void editorMoveCursorBeginningOfLine() { E.cx = 0; } void editorMoveCursorEndOfLine() { if (E.cy < E.numrows) E.cx = E.row[E.cy].size; } void editorScrollPage(int c) { if (c == PAGE_UP) { E.cy = E.rowoff; } else if (c == PAGE_DOWN) { E.cy = E.rowoff + E.screenrows - 1; if (E.cy > E.numrows) E.cy = E.numrows; } int times = E.screenrows; while (times--) editorMoveCursor(c == PAGE_UP ? ARROW_UP : ARROW_DOWN); } void editorQuit() { static int quit_times = KILO_QUIT_TIMES; if (E.dirty && quit_times > 0) { editorSetStatusMessage("WARNING!!! File has unsaved changes. " "Press Ctrl-Q %d more times to quit.", quit_times); quit_times--; return; } write(STDOUT_FILENO, "\x1b[2J", 4); write(STDOUT_FILENO, "\x1b[H", 3); exit(0); } void editorClearScreen() { write(STDOUT_FILENO, "\x1b[2J", 4); write(STDOUT_FILENO, "\x1b[H", 3); } void editorProcessKeypress() { static int quit_times = KILO_QUIT_TIMES; int c = editorReadKey(); switch (c) { case '\r': editorInsertNewline(); break; case CTRL_KEY('q'): if (E.dirty && quit_times > 0) { editorSetStatusMessage("WARNING!!! File has unsaved changes. " "Press Ctrl-Q %d more times to quit.", quit_times); quit_times--; return; } write(STDOUT_FILENO, "\x1b[2J", 4); write(STDOUT_FILENO, "\x1b[H", 3); exit(0); break; case CTRL_KEY('s'): editorSave(); break; case HOME_KEY: E.cx = 0; break; case END_KEY: if (E.cy < E.numrows) E.cx = E.row[E.cy].size; break; case CTRL_KEY('f'): editorFind(); break; case BACKSPACE: case CTRL_KEY('h'): case DEL_KEY: if (c == DEL_KEY) editorMoveCursor(ARROW_RIGHT); editorDelChar(); break; case PAGE_UP: case PAGE_DOWN: { if (c == PAGE_UP) { E.cy = E.rowoff; } else if (c == PAGE_DOWN) { E.cy = E.rowoff + E.screenrows - 1; if (E.cy > E.numrows) E.cy = E.numrows; } int times = E.screenrows; while (times--) editorMoveCursor(c == PAGE_UP ? ARROW_UP : ARROW_DOWN); } break; case ARROW_UP: case ARROW_DOWN: case ARROW_LEFT: case ARROW_RIGHT: editorMoveCursor(c); break; case CTRL_KEY('l'): case '\x1b': break; default: editorInsertChar(c); break; } quit_times = KILO_QUIT_TIMES; } void my_handler(int sig_num) { printf("%d\n", sig_num); exit(0); } /*** init ***/ void initEditor() { E.cx = 0; E.cy = 0; E.rx = 0; E.rowoff = 0; E.coloff = 0; E.numrows = 0; E.row = NULL; E.dirty = 0; E.filename = NULL; E.statusmsg[0] = '\0'; E.statusmsg_time = 0; E.syntax = NULL; if (getWindowSize(&E.screenrows, &E.screencols) == -1) die("getWindowSize"); E.screenrows -= 2; }
the_stack_data/153269556.c
/*! \file */
the_stack_data/944948.c
#include <stdio.h> #include <stdlib.h> #include <math.h> double *allocate_doubles(int m); void deallocate_doubles(double* ptr); int *allocate_ints(int m); void deallocate_ints(int* ptr); double norm(double px, double py, double qx, double qy); void bitonic(double* points, int N) { int i, k, l; double *minlengths = allocate_doubles(N); minlengths[0] = 0.0; minlengths[1] = norm( points[0], points[1], points[2], points[3] ); int *partial_path_edges = allocate_ints(2*N*N); partial_path_edges[0] = 1; partial_path_edges[1] = 0; int *partial_path_delim = allocate_ints(N+1); partial_path_delim[0] = 0; partial_path_delim[1] = 1; for (l=2; l<N; ++l) { double *path_vals = allocate_doubles(l-1); for (i=2; i<l+1; ++i) { double tempnorm = norm( points[2*l], points[2*l+1], points[2*(i-2)], points[2*(i-2)+1] ); double pathlength = 0.0; for (k=i; k<l; ++k) { pathlength += norm( points[2*k], points[2*k+1], points[2*(k-1)], points[2*(k-1)+1] ); } path_vals[i-2] = tempnorm + minlengths[i-1] + pathlength; } int minind = 0; for (k=1; k<l-1; ++k) { if (path_vals[k] < path_vals[minind]) minind = k; } minlengths[l] = path_vals[minind]; int j = 2*partial_path_delim[l-1]; for (k=partial_path_delim[minind]; k<partial_path_delim[minind+1]; ++k) { partial_path_edges[j] = partial_path_edges[2*k]; partial_path_edges[j+1] = partial_path_edges[2*k+1]; j += 2; } partial_path_edges[j] = l; partial_path_edges[j+1] = minind; for (k=minind+2; k<l; ++k) { j += 2; partial_path_edges[j] = k-1; partial_path_edges[j+1] = k; } partial_path_delim[l] = (j+2)/2; deallocate_doubles(path_vals); } for (k=partial_path_delim[N-2]; k<partial_path_delim[N-1]; ++k) { printf( "%d\t%d\n", partial_path_edges[2*k], partial_path_edges[2*k+1] ); } deallocate_doubles(minlengths); deallocate_ints(partial_path_edges); deallocate_ints(partial_path_delim); } double norm(double px, double py, double qx, double qy) { return sqrt(pow(px-qx, 2) + pow(py-qy, 2)); } double *allocate_doubles(int m) { double* M; M = (double *)malloc(sizeof(double) * m); return M; } void deallocate_doubles(double* ptr) { free(ptr); ptr=NULL; } int *allocate_ints(int m) { int* M; M = (int *)malloc( sizeof(int) * m); return M; } void deallocate_ints(int* ptr) { free(ptr); ptr=NULL; }
the_stack_data/23575190.c
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_pow.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mbarbari <[email protected]> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/01/08 12:57:10 by mbarbari #+# #+# */ /* Updated: 2015/01/08 13:23:16 by mbarbari ### ########.fr */ /* */ /* ************************************************************************** */ long ft_pow(int valeur, int power) { int rslt; rslt = 1; if (power == 0) return (1); while (power) { rslt *= valeur; power--; } return (rslt); }
the_stack_data/40763552.c
/* Copyright (C) 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <[email protected]>, 2006. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ #include <sys/syscall.h> #if defined __NR_ppoll && defined __UCLIBC_LINUX_SPECIFIC__ && defined __USE_GNU #define __need_NULL #include <stddef.h> #include <signal.h> #include <sys/poll.h> #include <cancel.h> static int __NC(ppoll)(struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, const sigset_t *sigmask) { /* The Linux kernel can in some situations update the timeout value. We do not want that so use a local variable. */ struct timespec tval; if (timeout != NULL) { tval = *timeout; timeout = &tval; } return INLINE_SYSCALL(ppoll, 5, fds, nfds, timeout, sigmask, __SYSCALL_SIGSET_T_SIZE); } CANCELLABLE_SYSCALL(int, ppoll, (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout, const sigset_t *sigmask), (fds, nfds, timeout, sigmask)) #endif
the_stack_data/150143338.c
void moveZeroes(int* nums, int numsSize) { for (int i = 0, j = 0; j < numsSize; ++i) { if (i < numsSize) { if (nums[i] != 0) nums[j++] = nums[i]; } else nums[j++] = 0; } }
the_stack_data/132951712.c
//{{BLOCK(map1) //====================================================================== // // map1, 2048x256@4, // + palette 256 entries, not compressed // + 63 tiles (t|f|p reduced) not compressed // + regular map (in SBBs), not compressed, 256x32 // Total size: 512 + 2016 + 16384 = 18912 // // Time-stamp: 2021-12-04, 22:44:24 // Exported by Cearn's GBA Image Transmogrifier, v0.8.3 // ( http://www.coranac.com/projects/#grit ) // //====================================================================== const unsigned short map1Tiles[1008] __attribute__((aligned(4)))= { 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x3333,0x3333,0x5533,0x5555,0x5553,0x5555,0x5553,0x3522, 0x3553,0x2211,0x2253,0x1111,0x1153,0x8111,0x3553,0x8811, 0x3333,0x3333,0x5555,0x5555,0x3522,0x2552,0x2211,0x1351, 0x1111,0x1221,0x1111,0x1111,0x1188,0x1881,0x1866,0x8688, 0x3333,0x3333,0x5555,0x5555,0x2552,0x5235,0x1351,0x5122, 0x1221,0x2111,0x1111,0x1111,0x1888,0x1881,0x8668,0x8688, 0x3333,0x3333,0x5555,0x5555,0x2255,0x2355,0x1135,0x1222, 0x1122,0x1111,0x1111,0x1111,0x8811,0x1118,0x6881,0x1186, 0x3333,0x3333,0x5555,0x5555,0x2552,0x2235,0x1351,0x1122, 0x1221,0x1111,0x1111,0x1111,0x1881,0x8811,0x8688,0x6881, 0x3333,0x3333,0x5555,0x3355,0x5555,0x3555,0x2235,0x3555, 0x1122,0x3553,0x1111,0x3522,0x1118,0x3511,0x1186,0x3553, 0x5553,0x8811,0x2253,0x8811,0x1153,0x8881,0x1122,0x8668, 0x8814,0x1668,0x6888,0x8888,0x8888,0x8888,0x8867,0x1111, 0x1866,0x8888,0x1888,0x1881,0x1188,0x1111,0x1111,0x1111, 0x1188,0x1188,0x8868,0x8868,0x8888,0x8888,0x1188,0x1188, 0x8668,0x8888,0x8888,0x1881,0x1881,0x1111,0x1111,0x1111, 0x1888,0x1188,0x8868,0x8868,0x8888,0x8888,0x1888,0x1188, 0x6881,0x1186,0x8881,0x1188,0x8811,0x1118,0x1111,0x1111, 0x1188,0x1188,0x8868,0x8868,0x8888,0x8888,0x1188,0x1188, 0x8888,0x6881,0x1881,0x8881,0x1111,0x8811,0x1111,0x1111, 0x1188,0x1188,0x8868,0x8868,0x8888,0x8888,0x1188,0x1188, 0x1186,0x3555,0x1188,0x3522,0x8818,0x3511,0x6681,0x2218, 0x6688,0x4188,0x8868,0x4868,0x8888,0x8888,0x1188,0x7788, 0x3333,0x3333,0x5555,0x5555,0x2552,0x5235,0x1351,0x5122, 0x1221,0x2111,0x8811,0x1111,0x6881,0x8818,0x8881,0x6888, 0x3333,0x3333,0x5555,0x5555,0x2255,0x2355,0x1135,0x1222, 0x1122,0x1111,0x8111,0x1188,0x8811,0x1866,0x8818,0x1866, 0x5553,0x8811,0x2253,0x8811,0x5553,0x8113,0x5553,0x8115, 0x2253,0x8812,0x1153,0x8811,0x3553,0x8111,0x5553,0x1111, 0x1866,0x8888,0x1888,0x1881,0x1188,0x1111,0x1118,0x1111, 0x1186,0x1111,0x1188,0x1111,0x1118,0x1111,0x1111,0x1111, 0x8811,0x8881,0x1111,0x8811,0x1111,0x1111,0x1111,0x1111, 0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111, 0x8818,0x1888,0x8111,0x1188,0x1111,0x1111,0x1111,0x1111, 0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111, 0x8888,0x6881,0x1881,0x8881,0x1111,0x8811,0x1111,0x8111, 0x1111,0x8811,0x1111,0x8811,0x1111,0x8111,0x1111,0x1111, 0x1186,0x3555,0x1188,0x3522,0x3118,0x3555,0x5118,0x3555, 0x2186,0x3522,0x1188,0x3511,0x1118,0x3553,0x1111,0x3555, 0x2253,0x1111,0x5553,0x8113,0x5553,0x8115,0x2253,0x1112, 0x3553,0x1111,0x5553,0x8811,0x2253,0x6881,0x1153,0x6881, 0x1188,0x1111,0x1868,0x1111,0x1888,0x1111,0x1188,0x1111, 0x1111,0x1111,0x1118,0x1111,0x1186,0x1111,0x1186,0x1111, 0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111, 0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111, 0x1111,0x8811,0x1111,0x6881,0x1111,0x8881,0x1111,0x8811, 0x1111,0x1111,0x1111,0x8111,0x1111,0x8811,0x1111,0x8811, 0x1111,0x3522,0x3118,0x3555,0x5118,0x3555,0x2111,0x3522, 0x1111,0x3553,0x1188,0x3555,0x1866,0x3522,0x1866,0x3511, 0x3553,0x8881,0x5553,0x8811,0x2253,0x1111,0x5553,0x8113, 0x5553,0x8815,0x5553,0x8815,0x2253,0x8112,0x1153,0x1111, 0x1188,0x1111,0x1118,0x1111,0x1111,0x1111,0x1118,0x1111, 0x1186,0x1111,0x1188,0x1111,0x1118,0x1111,0x1111,0x1111, 0x1111,0x8811,0x1111,0x8111,0x1111,0x1111,0x1111,0x8111, 0x1111,0x8811,0x1111,0x8811,0x1111,0x8111,0x1111,0x1111, 0x1888,0x3553,0x1188,0x3555,0x1111,0x3522,0x3118,0x3555, 0x5186,0x3555,0x5188,0x3555,0x2118,0x3522,0x1111,0x3511, 0x1155,0x8111,0x1555,0x8811,0x1352,0x8811,0x1221,0x8111, 0x1111,0x1111,0x8811,0x1118,0x6881,0x1186,0x6881,0x1186, 0x1118,0x1111,0x1186,0x1111,0x1188,0x1111,0x1118,0x1111, 0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111, 0x8881,0x1188,0x8811,0x1118,0x1111,0x1111,0x1111,0x1111, 0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111, 0x1111,0x8111,0x1111,0x8811,0x1111,0x8811,0x1111,0x8111, 0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111, 0x1118,0x5511,0x1186,0x5551,0x1188,0x2351,0x1118,0x1221, 0x1111,0x1111,0x8111,0x1188,0x8811,0x1866,0x8811,0x1866, 0x5553,0x1111,0x3553,0x8111,0x2253,0x8811,0x5553,0x8813, 0x5553,0x8115,0x5553,0x8115,0x2253,0x8812,0x3553,0x8811, 0x1111,0x1111,0x1118,0x1111,0x1186,0x1111,0x1188,0x1111, 0x1118,0x1111,0x1188,0x1111,0x1866,0x1881,0x1866,0x8688, 0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111, 0x1111,0x1111,0x1111,0x1111,0x1111,0x8811,0x8811,0x6881, 0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111,0x1111, 0x1111,0x1111,0x1111,0x1111,0x8111,0x1188,0x8818,0x1866, 0x1111,0x1111,0x1111,0x8111,0x1111,0x8811,0x1111,0x8811, 0x1111,0x8111,0x1111,0x8811,0x1881,0x6881,0x8688,0x6881, 0x1111,0x3555,0x1118,0x3553,0x1186,0x3522,0x3188,0x3555, 0x5118,0x3555,0x5118,0x3555,0x2186,0x3522,0x1186,0x3553, 0x5553,0x8811,0x2253,0x8111,0x1153,0x1111,0x3553,0x3521, 0x5553,0x5521,0x5553,0x5555,0x5533,0x5555,0x3333,0x3333, 0x1888,0x8888,0x1188,0x1881,0x1111,0x1111,0x1111,0x1352, 0x3521,0x1552,0x5521,0x1552,0x5555,0x5555,0x3333,0x3333, 0x6881,0x8888,0x8881,0x8818,0x8811,0x1111,0x1352,0x5211, 0x2552,0x5235,0x2552,0x5255,0x5555,0x5555,0x3333,0x3333, 0x8818,0x1866,0x8811,0x1888,0x8111,0x1188,0x1135,0x1111, 0x2155,0x1355,0x2155,0x1555,0x5555,0x5555,0x3333,0x3333, 0x8888,0x8881,0x1881,0x8811,0x1111,0x1111,0x5321,0x1111, 0x5521,0x1532,0x5521,0x1552,0x5555,0x5555,0x3333,0x3333, 0x1188,0x3555,0x1118,0x3522,0x1111,0x3511,0x1532,0x3553, 0x1552,0x3555,0x5552,0x3555,0x5555,0x3355,0x3333,0x3333, 0x0000,0x0000,0x0000,0x1100,0x0000,0x7711,0x1000,0x8177, 0x8100,0x1188,0x8110,0x0018,0x1710,0x6001,0x7881,0x6061, 0x1110,0x1111,0x1771,0x1777,0x1887,0x1888,0x1118,0x1111, 0x0001,0x0000,0x6060,0x8066,0x6066,0x8066,0x6068,0x8066, 0x1111,0x0111,0x1777,0x1777,0x1888,0x1888,0x1111,0x7111, 0x0000,0x1000,0x6066,0x6066,0x6066,0x6086,0x6086,0x6086, 0x0000,0x0000,0x0011,0x0000,0x1177,0x0000,0x7788,0x0011, 0x8811,0x0018,0x1100,0x0111,0x1066,0x1177,0x1066,0x1881, 0x1881,0x6060,0x1888,0x6066,0x0111,0x6066,0x6177,0x6066, 0x1118,0x6066,0x1718,0x1111,0xA711,0x17A7,0x1717,0x1111, 0x6068,0x6066,0x6068,0x6068,0x6088,0x6066,0x6088,0x6068, 0x6086,0x6068,0x6088,0x8068,0x6086,0x8788,0x6086,0x8988, 0x6066,0x6086,0x6086,0x6088,0x6086,0x8088,0x6086,0x8088, 0x6086,0x8086,0x6086,0x1068,0x6766,0x1116,0x6986,0x7716, 0x0068,0x1881,0x6068,0x1111,0x6068,0x7718,0x8086,0x8816, 0x8086,0x8816,0x6011,0x8818,0x1117,0x1116,0x1777,0x7718, 0x1118,0x0000,0x0188,0x6086,0x6111,0x6086,0x8177,0x6086, 0x8188,0x6086,0x1118,0x6086,0x1711,0x1111,0xA717,0x17A7, 0x6086,0x8988,0x6786,0x8988,0x6786,0x6986,0x6768,0x6986, 0x6766,0x6966,0x6768,0x6966,0x6768,0x6966,0x6768,0x6966, 0x6966,0x1718,0x8966,0x1A18,0x8966,0xA198,0x8966,0x1768, 0x8968,0x0768,0x8968,0x6768,0x8968,0x6766,0x8768,0x6766, 0x1711,0x8818,0x1A11,0x8818,0x01AA,0x1118,0x8011,0x7718, 0x8000,0x8818,0x8066,0x8818,0x8066,0x1118,0x8066,0x7716, 0x1718,0x1111,0x1118,0x0000,0x6188,0x6066,0x0111,0x0000, 0x1177,0x1111,0x1788,0xAAAA,0x7888,0x8881,0x1111,0x1111, 0x8768,0x6966,0x8768,0x6986,0x8768,0x6986,0xA700,0x9979, 0x1111,0x1111,0xAA0A,0xA9AA,0x8818,0x8188,0x1111,0x1111, 0x8768,0x6766,0x8968,0x6766,0x6966,0x8766,0x7997,0x0799, 0x1111,0x1111,0x7AAA,0xAAAA,0x1888,0x1888,0x1111,0x1111, 0x8066,0x8816,0x8066,0x8816,0x8086,0x1118,0x0000,0x7710, 0x1111,0x8811,0xAAA0,0x881A,0x8888,0x8881,0x1111,0x1111, }; const unsigned short map1Map[8192] __attribute__((aligned(4)))= { 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0001,0x0002,0x0003,0x0004,0x0005,0x0006,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0007,0x0008,0x0009,0x000A,0x000B,0x000C,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0001,0x0002, 0x0003,0x0004,0x0005,0x0006,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0007,0x0008, 0x0009,0x000A,0x000B,0x000C,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0001,0x0002,0x0003,0x0004, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0007,0x0008,0x0009,0x000A, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0001,0x0002,0x000D,0x000E,0x000D,0x000E,0x0005,0x0006, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0001,0x0002, 0x000D,0x000E,0x000D,0x000E,0x0005,0x0006,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0001,0x0002, 0x000F,0x0010,0x0011,0x0012,0x0011,0x0012,0x0013,0x0014, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x000F,0x0010, 0x0011,0x0012,0x0011,0x0012,0x0013,0x0014,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x000F,0x0010, 0x0015,0x0016,0x0017,0x0017,0x0017,0x0017,0x0018,0x0019, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0015,0x0016, 0x0017,0x0017,0x0017,0x0017,0x0018,0x0019,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0015,0x0016, 0x001A,0x001B,0x0017,0x0017,0x0017,0x0017,0x001C,0x001D, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x001A,0x001B, 0x0017,0x0017,0x0017,0x0017,0x001C,0x001D,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x001A,0x001B, 0x0015,0x0016,0x0017,0x0017,0x0017,0x0017,0x0018,0x0019, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0015,0x0016, 0x0017,0x0017,0x0017,0x0017,0x0018,0x0019,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0015,0x0016, 0x001A,0x001B,0x0017,0x0017,0x0017,0x0017,0x001C,0x001D, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x001A,0x001B, 0x0017,0x0017,0x0017,0x0017,0x001C,0x001D,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x001A,0x001B, 0x0015,0x0016,0x0017,0x0017,0x0017,0x0017,0x0018,0x0019, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0015,0x0016, 0x0017,0x0017,0x0017,0x0017,0x0018,0x0019,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0015,0x0016, 0x001A,0x001B,0x0017,0x0017,0x0017,0x0017,0x001C,0x001D, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x001A,0x001B, 0x0017,0x0017,0x0017,0x0017,0x001C,0x001D,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x001A,0x001B, 0x0015,0x0016,0x0017,0x0017,0x0017,0x0017,0x0018,0x0019, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0015,0x0016, 0x0017,0x0017,0x0017,0x0017,0x0018,0x0019,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0015,0x0016, 0x001A,0x001B,0x0017,0x0017,0x0017,0x0017,0x001C,0x001D, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x001A,0x001B, 0x0017,0x0017,0x0017,0x0017,0x001C,0x001D,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x001A,0x001B, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0005,0x0006,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x000B,0x000C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0001,0x0002, 0x0003,0x0004,0x0003,0x0004,0x0003,0x0004,0x0003,0x0004, 0x0003,0x0004,0x0005,0x0006,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0007,0x0008, 0x0009,0x000A,0x0009,0x000A,0x0009,0x000A,0x0009,0x000A, 0x0009,0x000A,0x000B,0x000C,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0001,0x0002,0x000D,0x000E, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x000F,0x0010,0x0011,0x0012, 0x0005,0x0006,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x0013,0x0014,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0018,0x0019,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x001C,0x001D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0018,0x0019,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x001C,0x001D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0018,0x0019,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x001C,0x001D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0018,0x0019,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x001C,0x001D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0001,0x0002,0x000D,0x000E,0x0005,0x0006, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0001,0x0002, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x000F,0x0010,0x0011,0x0012,0x0013,0x0014, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0007,0x0008, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0015,0x0016,0x0017,0x0017,0x0018,0x0019, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x001A,0x001B,0x0017,0x0017,0x001C,0x001D, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0001,0x0002,0x0003,0x0004, 0x0005,0x0006,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0015,0x0016,0x0017,0x0017,0x0018,0x0019, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0007,0x0008,0x0009,0x000A, 0x000B,0x000C,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x001A,0x001B,0x0017,0x0017,0x001C,0x001D, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0015,0x0016,0x0017,0x0017,0x0018,0x0019, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x001A,0x001B,0x0017,0x0017,0x001C,0x001D, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0015,0x0016,0x0017,0x0017,0x0018,0x0019, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x001A,0x001B,0x0017,0x0017,0x001C,0x001D, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0005,0x0006,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0001,0x0002,0x000D,0x000E,0x000D,0x000E, 0x000D,0x000E,0x001E,0x001F,0x0017,0x0017,0x0018,0x0019, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0013,0x0014,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x000F,0x0010,0x0011,0x0012,0x0011,0x0012, 0x0011,0x0012,0x0020,0x0017,0x0017,0x0017,0x001C,0x001D, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0018,0x0019,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0015,0x0016,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0021,0x0022, 0x000D,0x000E,0x000D,0x000E,0x000D,0x000E,0x000D,0x000E, 0x001C,0x001D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x001A,0x001B,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0420, 0x0011,0x0012,0x0011,0x0012,0x0011,0x0012,0x0011,0x0012, 0x0018,0x0019,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0015,0x0016,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x001C,0x001D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x001A,0x001B,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0018,0x0019,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0015,0x0016,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x001C,0x001D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x001A,0x001B,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0018,0x0019,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0015,0x0016,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x001C,0x001D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x001A,0x001B,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0018,0x0019,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0015,0x0016,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x001C,0x001D,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x001A,0x001B,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0003,0x0004,0x0005,0x0006,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0001,0x0002,0x0003,0x0004,0x0005,0x0006, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0001,0x0002,0x0005,0x0006,0x0000,0x0000,0x0000,0x0000, 0x0009,0x000A,0x000B,0x000C,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0007,0x0008,0x0009,0x000A,0x000B,0x000C, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x000F,0x0010,0x0013,0x0014,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0015,0x0016,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x001A,0x001B,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0015,0x0016,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x001A,0x001B,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0001,0x0002,0x0005,0x0006,0x0000,0x0000, 0x0015,0x0016,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0007,0x0008,0x000B,0x000C,0x0000,0x0000, 0x001A,0x001B,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0015,0x0016,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x001A,0x001B,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0015,0x0016,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x001A,0x001B,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x000D,0x000E,0x000D,0x000E,0x000D,0x000E,0x000D,0x000E, 0x000D,0x000E,0x000D,0x000E,0x000D,0x000E,0x000D,0x000E, 0x000D,0x000E,0x000D,0x000E,0x000D,0x000E,0x000D,0x000E, 0x001E,0x001F,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0011,0x0012,0x0011,0x0012,0x0011,0x0012,0x0011,0x0012, 0x0011,0x0012,0x0011,0x0012,0x0011,0x0012,0x0011,0x0012, 0x0011,0x0012,0x0011,0x0012,0x0011,0x0012,0x0011,0x0012, 0x0020,0x0017,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x0017,0x0017,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0017,0x0017,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x0017,0x0017,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0017,0x0017,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x0017,0x0017,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0017,0x0017,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x0017,0x0017,0x0018,0x0019,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0017,0x0017,0x001C,0x001D,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0023,0x0024,0x0025,0x0026, 0x0025,0x0026,0x0027,0x0028,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0029,0x002A,0x002B,0x002C, 0x002B,0x002C,0x002D,0x002E,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0001,0x0002, 0x0003,0x0004,0x0005,0x0006,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0001,0x0002,0x0003,0x0004, 0x0003,0x0004,0x0003,0x0004,0x0003,0x0004,0x0003,0x0004, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0007,0x0008, 0x0009,0x000A,0x000B,0x000C,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0007,0x0008,0x0009,0x000A, 0x0009,0x000A,0x0009,0x000A,0x0009,0x000A,0x0009,0x000A, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0003,0x0004,0x0003,0x0004,0x0003,0x0004,0x0003,0x0004, 0x0003,0x0004,0x0003,0x0004,0x0003,0x0004,0x0003,0x0004, 0x0003,0x0004,0x0003,0x0004,0x0005,0x0006,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0009,0x000A,0x0009,0x000A,0x0009,0x000A,0x0009,0x000A, 0x0009,0x000A,0x0009,0x000A,0x0009,0x000A,0x0009,0x000A, 0x0009,0x000A,0x0009,0x000A,0x000B,0x000C,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0001,0x0002,0x0005,0x0006, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0007,0x0008,0x000B,0x000C, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0001,0x0002, 0x0003,0x0004,0x0005,0x0006,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0007,0x0008, 0x0009,0x000A,0x000B,0x000C,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0001,0x0002,0x0003,0x0004,0x0005,0x0006, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0007,0x0008,0x0009,0x000A,0x000B,0x000C, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0001,0x0002,0x0003,0x0004,0x0005,0x0006, 0x0000,0x0000,0x0000,0x0000,0x0001,0x0002,0x000D,0x000E, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0007,0x0008,0x0009,0x000A,0x000B,0x000C, 0x0000,0x0000,0x0000,0x0000,0x000F,0x0010,0x0011,0x0012, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0001,0x0002, 0x0003,0x0004,0x0005,0x0006,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0007,0x0008, 0x0009,0x000A,0x000B,0x000C,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0015,0x0016,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x001A,0x001B,0x0017,0x0017, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x002F, 0x0030,0x0031,0x0032,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0033, 0x0034,0x0035,0x0036,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0037, 0x0038,0x0039,0x003A,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x003B, 0x003C,0x003D,0x003E,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0001,0x0002, 0x0003,0x0004,0x0005,0x0006,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0007,0x0008, 0x0009,0x000A,0x000B,0x000C,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x000D,0x000E,0x000D,0x000E,0x000D,0x000E,0x000D,0x000E, 0x000D,0x000E,0x000D,0x000E,0x000D,0x000E,0x000D,0x000E, 0x000D,0x000E,0x000D,0x000E,0x000D,0x000E,0x000D,0x000E, 0x000D,0x000E,0x000D,0x000E,0x000D,0x000E,0x0005,0x0006, 0x0011,0x0012,0x0011,0x0012,0x0011,0x0012,0x0011,0x0012, 0x0011,0x0012,0x0011,0x0012,0x0011,0x0012,0x0011,0x0012, 0x0011,0x0012,0x0011,0x0012,0x0011,0x0012,0x0011,0x0012, 0x0011,0x0012,0x0011,0x0012,0x0011,0x0012,0x0013,0x0014, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0018,0x0019, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x001C,0x001D, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0018,0x0019, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x001C,0x001D, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0018,0x0019, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x001C,0x001D, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0018,0x0019, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x001C,0x001D, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0018,0x0019, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x0017, 0x0017,0x0017,0x0017,0x0017,0x0017,0x0017,0x001C,0x001D, }; const unsigned short map1Pal[256] __attribute__((aligned(4)))= { 0x0000,0x1864,0x1586,0x16B0,0x18C6,0x0DEB,0x2529,0x354A, 0x1888,0x08A8,0x41EE,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x4259,0x4679,0x3618,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, }; //}}BLOCK(map1)
the_stack_data/38612.c
#include <stdio.h> #include <stdlib.h> #include <stdint.h> #define LV_ATTRIBUTE_MEM_ALIGN #define LV_ATTRIBUTE_IMG_ALARM_16PX #define LV_COLOR_DEPTH 32 //#define LV_COLOR_DEPTH 16 #define LV_IMG_PX_SIZE_ALPHA_BYTE 4 /* for 32 bit color */ //#define LV_IMG_PX_SIZE_ALPHA_BYTE 3 /* for 16 bit color */ #define LV_IMG_CF_TRUE_COLOR_ALPHA 5 /* for 32 bit color */ // #define LV_IMG_CF_TRUE_COLOR_ALPHA 3 /* for 16 bit color */ // #define LV_COLOR_16_SWAP 1 /** Image header it is compatible with * the result from image converter utility*/ typedef struct { uint32_t cf : 5; /* Color format: See `lv_img_color_format_t`*/ uint32_t always_zero : 3; /*It the upper bits of the first byte. Always zero to look like a non-printable character*/ uint32_t reserved : 2; /*Reserved to be used later*/ uint32_t w : 11; /*Width of the image map*/ uint32_t h : 11; /*Height of the image map*/ } lv_img_header_t; typedef struct { lv_img_header_t header; uint32_t data_size; const uint8_t * data; } lv_img_dsc_t; #ifndef LV_ATTRIBUTE_MEM_ALIGN #define LV_ATTRIBUTE_MEM_ALIGN #endif #ifndef LV_ATTRIBUTE_IMG_RIGHT_32PX #define LV_ATTRIBUTE_IMG_RIGHT_32PX #endif const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMG_RIGHT_32PX uint8_t right_32px_map[] = { #if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x9c, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x2f, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xfc, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x03, 0xff, 0x9c, 0xff, 0x60, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0x00, #endif #if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9c, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9c, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, #endif #if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9c, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x03, 0xff, 0xff, 0x9c, 0xff, 0xff, 0x60, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, 0xff, 0xff, 0x00, #endif #if LV_COLOR_DEPTH == 32 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x2f, 0xff, 0xff, 0xff, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, #endif }; const lv_img_dsc_t right_32px = { .header.always_zero = 0, .header.w = 32, .header.h = 32, .data_size = 1024 * LV_IMG_PX_SIZE_ALPHA_BYTE, .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, .data = right_32px_map, }; /* * writing the pixel map */ int main(int argc, char **argv) { FILE *fp; char *binFile; binFile="right_32px_argb8888.bin"; /* 32 bit color */ fp = fopen(binFile, "wb"); fwrite(right_32px_map,right_32px.data_size,1,fp); fclose(fp); }
the_stack_data/597041.c
/* * mttysplit - A simple tty splitter to send intputs and outputs * to multiple ptys at the same time using stdin/stdout/stderr * * Copyright (c) 2020 Wind River Systems, Inc. Jason Wessel * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <signal.h> #include <fcntl.h> #include <pty.h> #ifndef VDISABLE #ifdef _POSIX_VDISABLE #define VDISABLE _POSIX_VDISABLE #else #define VDISABLE 0377 #endif #endif #define MAX_DEV 10 int cfd[MAX_DEV]; /* Client FD */ struct termios orig_term[MAX_DEV]; int devices = 0; fd_set master_rds; int nsockhandle = 0; static char *prog; int USE_STDOUT = 1; int STDOUT; int STDIN; static void restore_term(void) { int i; for(i = 0; i < devices; i++) { tcsetattr(cfd[i], TCSADRAIN, &orig_term[i]); tcdrain(cfd[i]); } } static void cleanup(int exit_code) { restore_term(); exit(exit_code); } static void usage() { printf("Usage:\n"); printf("%s [-s] [-d device ] [ -d device] cmd [args...]\n\n", prog); printf(" Arugment info:\n"); printf(" -d <device> A tty device to send input/ouput\n"); printf(" -s Suppress input/ouput on original terminal\n"); cleanup(1); } static void fd_setup(int fd) { int flags; flags = fcntl(fd, F_GETFL); if (flags < 0 || fcntl(fd, F_SETFL, flags | O_NONBLOCK) < 0) { printf("Failed to set O_NONBLOCK\n"); cleanup(1); } FD_SET(fd, &master_rds); } static void select_init() { int i; struct termios cur_term; for (i = 0; i < devices; i++) { if (cfd[i] >= nsockhandle) { nsockhandle = cfd[i] + 1; } fd_setup(cfd[i]); memcpy(&cur_term, &orig_term[i], sizeof(struct termios)); cur_term.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL); cur_term.c_iflag &= ~(IXON|IXOFF); cur_term.c_oflag &= ~(OPOST); cur_term.c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN); cur_term.c_cflag &= ~(CSIZE|PARENB); cur_term.c_cflag |= CS8; cur_term.c_cc[VLNEXT] = VDISABLE; cur_term.c_cc[VMIN] = 1; cur_term.c_cc[VTIME] = 0; tcsetattr(cfd[i], TCSADRAIN, &cur_term); } } int pfd[2]; int pty_fd; static void fork_start(char **argv) { char readchar[2]; int pty_cmd_fd; struct termios start_term; int i; if (tcgetattr(0, &start_term) < 0) { for (i = 0; i < devices; i++) if (tcgetattr(cfd[i], &start_term) < 0) memset(&start_term, 0, sizeof(struct termios)); else break; } if (openpty(&pty_fd, &pty_cmd_fd, NULL, &start_term, NULL) < 0) { perror("Failed openpty"); cleanup(1); } if (pty_fd < 0 || pty_cmd_fd < 0) { perror("Pty setup failed"); cleanup(1); } if (USE_STDOUT) fd_setup(STDIN); fd_setup(pty_fd); if (pty_fd >= nsockhandle) { nsockhandle = pty_fd + 1; } if (pipe(pfd)) { printf("Error: pipe open\n"); cleanup(1); } int child = fork(); if (child < 0) { perror("Failed fork"); cleanup(1); } if (child) { signal(SIGCHLD, SIG_IGN); close(pfd[1]); close(pty_fd); for (i = 0; i < devices; i++) close(cfd[i]); /* Wait for a character on the pipe */ if (read(pfd[0], readchar, 1) != 1) { printf("Error: starting server\n"); cleanup(1); } signal(SIGCHLD, SIG_DFL); dup2(pty_cmd_fd, fileno(stdin)); dup2(pty_cmd_fd, fileno(stdout)); dup2(pty_cmd_fd, fileno(stderr)); execvp(*argv, argv); cleanup(1); } /* Child is the server from here out */ close(pfd[0]); close(pty_cmd_fd); /* Go full on daemon */ int pid = fork(); if (pid < 0) cleanup(1); if (pid) { exit(0); } select_init(); if (setsid() < 0) { perror("Running setid()"); cleanup(1); } } static void data_loop(char **argv) { fd_set rds; int ret; int i, j; char buf[2]; FD_ZERO(&master_rds); fork_start(argv); atexit(restore_term); /* Start the master program running */ if (write(pfd[1], "w", 1) < 1) { printf("Error Failed client initiation\n"); cleanup(1); } while (1) { memcpy(&rds, &master_rds, sizeof(master_rds)); ret = select(nsockhandle, &rds, NULL, NULL, NULL); if (ret < 0) return; for (i = 0; i < devices && ret > 0; i++) { if (FD_ISSET(cfd[i], &rds)) { if (read(cfd[i], buf, 1) < 0) cleanup(1); if (write(pty_fd, buf, 1) < 1) cleanup(1); ret--; } } if (ret > 0 && FD_ISSET(STDIN, &rds)) { if (read(STDIN, buf, 1) < 0) cleanup(1); if (write(pty_fd, buf, 1) < 1) cleanup(1); ret--; } if (ret > 0 && FD_ISSET(pty_fd, &rds)) { if (read(pty_fd, buf, 1) < 0) cleanup(1); if (USE_STDOUT) if (write(STDOUT, buf, 1) < 1) cleanup(1); for (j = 0; j < devices; j++) { if (write(cfd[j], buf, 1) < 1) cleanup(1); } ret--; } } } int main(int argc, char **argv) { int i; prog=argv[0]; argv++; argc--; if (argc < 1) { usage(); } STDOUT = fileno(stdout); STDIN = fileno(stdin); for (i = 0; i < argc; i++) { if (strcmp("-h", argv[i]) == 0) { usage(); }else if (strcmp("-s", argv[i]) == 0) { USE_STDOUT = 0; } else if (strcmp("-d", argv[i]) == 0) { i++; if (i >= argc) { printf("Error not enough arguments\n"); cleanup(1); } cfd[devices] = open(argv[i], O_RDWR); if (cfd[devices] < 0) { printf("Error failed to open device: %s\n", argv[i]); cleanup(1); } tcgetattr(cfd[devices], &orig_term[devices]); devices++; if (devices == MAX_DEV) { printf("Error too many devices specified\n"); cleanup(1); } } else { break; } } argv += i; argc -= i; data_loop(argv); return 0; }
the_stack_data/1080207.c
// It is assumed a user will enter arrays in ascending order #include <stdio.h> void merge(int [], int, int [], int, int []); int main() { int a[100], b[100], m, n, c, sorted[200]; printf("Input number of elements in first array\n"); scanf("%d", &m); printf("Input %d integers\n", m); for (c = 0; c < m; c++) { scanf("%d", &a[c]); } printf("Input number of elements in second array\n"); scanf("%d", &n); printf("Input %d integers\n", n); for (c = 0; c < n; c++) { scanf("%d", &b[c]); } merge(a, m, b, n, sorted); printf("Sorted array:\n"); for (c = 0; c < m + n; c++) { printf("%d\n", sorted[c]); } return 0; } void merge(int a[], int m, int b[], int n, int sorted[]) { int i, j, k; j = k = 0; for (i = 0; i < m + n;) { if (j < m && k < n) { if (a[j] < b[k]) { sorted[i] = a[j]; j++; } else { sorted[i] = b[k]; k++; } i++; } else if (j == m) { for (; i < m + n;) { sorted[i] = b[k]; k++; i++; } } else { for (; i < m + n;) { sorted[i] = a[j]; j++; i++; } } } }
the_stack_data/23574218.c
int result = (2 + 5);
the_stack_data/156393281.c
#include <stdio.h> #include <sys/types.h> #include <unistd.h> #include <sys/wait.h> #include<fcntl.h> #include<errno.h> #include <fcntl.h> #include <stdlib.h> #include <string.h> #include<ctype.h> #include <fcntl.h> int find_char(char data[1]) // find it character is new line or end of line { if(data[0]=='\n'| data[0]=='\0'){ return 1; } return 0; } void cat_command(char const *str,int simple,char const *flag) { int file=open(str,O_RDONLY); if(file<0) { perror("Error in file opening"); exit(1); } char data[1]; char arr[1000]; if(simple==1){ int j=0; while(1) { read(file,data,1); if(find_char(data)==1) { j=0; printf("%s",arr); memset(arr, 0, sizeof(arr)); } if(data[0]=='\0'){ // end of file break; } else { arr[j]=data[0]; j++; memset(data, 0, sizeof(data)); } } } else{ if(!(strcmp(flag,"-E")) || !(strcmp(flag,"-E\n"))) { int j=0; while(1) { read(file,data,1); if(find_char(data)==1) { arr[j]='$'; printf("%s",arr); j=0; memset(arr, 0, sizeof(arr)); } if(data[0]=='\0'){ // end of file break; } else { arr[j]=data[0]; j++; memset(data, 0, sizeof(data)); } } } else if(!(strcmp(flag,"-T")) || !(strcmp(flag,"-T\n"))) { int j=0; while(1) { read(file,data,1); if(find_char(data)==1) { printf("%s",arr); j=0; memset(arr, 0, sizeof(arr)); } if(data[0]=='\0'){ // end of file break; } else { if(data[0]=='\t') { arr[j]='^'; arr[j+1]='I'; j=j+1; } else{ arr[j]=data[0]; } j++; memset(data, 0, sizeof(data)); } } } else{ printf("%s\n","not found such command"); } } close(file); } int main(int argc, char const *argv[]) { int simple=atoi(argv[1]); if(simple==1) { cat_command(argv[0],1,NULL); } else { cat_command(argv[0],0,argv[2]); } return 0; }
the_stack_data/40761801.c
/* Copyright 2018, Sergey Popov ([email protected]) */ #include <stdio.h> int digit_sum_in_custom_base(int, int); int digital_root(int, int); int main() { int a, base; printf("Welcome to 8.1! Please enter a number and the base (n and p):\n"); if (scanf("%d%d", &a, &base) != 2) { printf("Invalid input. Exiting.\n"); return 1; } printf("Digital root of %d in base %d is %d\n", a, base, digital_root(a, base)); return 0; } int digit_sum_in_custom_base(int a, int base) { int s = 0; while (a > 0) { s += a % base; a /= base; } return s; } int digital_root(int a, int base) { while (a >= base) a = digit_sum_in_custom_base(a, base); return a; }
the_stack_data/693231.c
/** ***************************************************************************** ** ** File : syscalls.c ** ** Abstract : System Workbench Minimal System calls file ** ** For more information about which c-functions ** need which of these lowlevel functions ** please consult the Newlib libc-manual ** ** Environment : System Workbench for MCU ** ** Distribution: The file is distributed “as is,” without any warranty ** of any kind. ** ***************************************************************************** ** ** <h2><center>&copy; COPYRIGHT(c) 2014 Ac6</center></h2> ** ** Redistribution and use in source and binary forms, with or without modification, ** are permitted provided that the following conditions are met: ** 1. Redistributions of source code must retain the above copyright notice, ** this list of conditions and the following disclaimer. ** 2. Redistributions in binary form must reproduce the above copyright notice, ** this list of conditions and the following disclaimer in the documentation ** and/or other materials provided with the distribution. ** 3. Neither the name of Ac6 nor the names of its contributors ** may be used to endorse or promote products derived from this software ** without specific prior written permission. ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" ** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE ** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR ** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER ** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, ** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ** ***************************************************************************** */ /* Includes */ #include <sys/stat.h> #include <stdlib.h> #include <errno.h> #include <stdio.h> #include <signal.h> #include <time.h> #include <sys/time.h> #include <sys/times.h> /* Variables */ //#undef errno extern int errno; extern int __io_putchar(int ch) __attribute__((weak)); extern int __io_getchar(void) __attribute__((weak)); register char * stack_ptr asm("sp"); char *__env[1] = { 0 }; char **environ = __env; /* Functions */ void initialise_monitor_handles() { } int _getpid(void) { return 1; } int _kill(int pid, int sig) { errno = EINVAL; return -1; } void _exit (int status) { _kill(status, -1); while (1) {} /* Make sure we hang here */ } __attribute__((weak)) int _read(int file, char *ptr, int len) { int DataIdx; for (DataIdx = 0; DataIdx < len; DataIdx++) { *ptr++ = __io_getchar(); } return len; } __attribute__((weak)) int _write(int file, char *ptr, int len) { int DataIdx; for (DataIdx = 0; DataIdx < len; DataIdx++) { __io_putchar(*ptr++); } return len; } caddr_t _sbrk(int incr) { extern char end asm("end"); static char *heap_end; char *prev_heap_end; if (heap_end == 0) heap_end = &end; prev_heap_end = heap_end; if (heap_end + incr > stack_ptr) { // write(1, "Heap and stack collision\n", 25); // abort(); errno = ENOMEM; return (caddr_t) -1; } heap_end += incr; return (caddr_t) prev_heap_end; } int _close(int file) { return -1; } int _fstat(int file, struct stat *st) { st->st_mode = S_IFCHR; return 0; } int _isatty(int file) { return 1; } int _lseek(int file, int ptr, int dir) { return 0; } int _open(char *path, int flags, ...) { /* Pretend like we always fail */ return -1; } int _wait(int *status) { errno = ECHILD; return -1; } int _unlink(char *name) { errno = ENOENT; return -1; } int _times(struct tms *buf) { return -1; } int _stat(char *file, struct stat *st) { st->st_mode = S_IFCHR; return 0; } int _link(char *old, char *new) { errno = EMLINK; return -1; } int _fork(void) { errno = EAGAIN; return -1; } int _execve(char *name, char **argv, char **env) { errno = ENOMEM; return -1; }