file
stringlengths
18
26
data
stringlengths
2
1.05M
the_stack_data/10207.c
HMC5883_SetNumberSamplesAveraged(HMC5883_AVGSMPL_8); HMC5883_SetGain(HMC5883_GAIN_1370); HMC5883_SetOperatingMode(HMC5883_CONTINUOUSMEASUREMENT);
the_stack_data/37541.c
#include <stdio.h> // T: 计算月份,字符串数组应用 int main(int argc, char *argv[]) { int month; char *a[] = { "", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December", }; printf("请输入月份(1-12): "); scanf("%d", &month); printf("月: %s\n", a[month]); return 0; }
the_stack_data/3262244.c
#ifdef __MINIX #include <lib.h> #include <stdarg.h> #include <minix/com.h> #include <minix/syslib.h> #include <minix/sysutil.h> #include "ltckpt_local.h" #include "ltckpt_debug.h" int lt_kernel_call(int syscallnr, message *msgptr) { int t, r; t = 1; while(1) { msgptr->m_type = syscallnr; do_kernel_call(msgptr); r = msgptr->m_type; if(r != ENOTREADY) { break; } } return r; } static void lt_kputs(char *buf) { message m; m.m_lsys_krn_sys_diagctl.code = DIAGCTL_CODE_DIAG; m.m_lsys_krn_sys_diagctl.buf = (vir_bytes) buf; m.m_lsys_krn_sys_diagctl.len = strlen(buf); lt_kernel_call(SYS_DIAGCTL, &m); } void lt_kputc(char c) { message m; m.m_lsys_krn_sys_diagctl.code = DIAGCTL_CODE_DIAG; m.m_lsys_krn_sys_diagctl.buf = (vir_bytes) &c; m.m_lsys_krn_sys_diagctl.len = 1; lt_kernel_call(SYS_DIAGCTL, &m); } static char static_malloc_buf[100000]; static int static_malloc_used = 0; static void lt_kputn(unsigned int n) { if(n >= 10) { lt_kputn(n/10); } lt_kputc('0' + n % 10); } static void lt_kputx_(unsigned int n) { const char *x = "0123456789abcdef"; if(n >= 16) { lt_kputx_(n/16); } lt_kputc(x[n % 16]); } static void lt_kputx(unsigned int n) { lt_kputc('0'); lt_kputc('x'); lt_kputx_(n); } void *lt_malloc(int size) { void *r = static_malloc_buf + static_malloc_used; static_malloc_used += size; lt_assert(static_malloc_used <= sizeof(static_malloc_buf)); return r; } void lt_free(void *mem) { } void lt_printf(const char *fmt, ...) { /* Primitive printf() that just understands %s, %d, %x * and can be called safely from within writelog-writing code. */ va_list ap; va_start(ap, fmt); unsigned char c; while((c=(*fmt)) != '\0') { unsigned int n_arg; char *s_arg; fmt++; if(c != '%') { lt_kputc(c); continue; } c = *fmt; fmt++; while(c == 'l') { /* skip 'long' indicator */ c = *fmt; fmt++; } switch(c) { case 'u': case 'd': n_arg = va_arg(ap, int); lt_kputn(n_arg); break; case 'x': n_arg = va_arg(ap, int); lt_kputx(n_arg); break; case 's': s_arg = va_arg(ap, char *); lt_kputs(s_arg); break; } } va_end(ap); } #endif
the_stack_data/6754.c
#define NULL ((void*)0) typedef unsigned long size_t; // Customize by platform. typedef long intptr_t; typedef unsigned long uintptr_t; typedef long scalar_t__; // Either arithmetic or pointer type. /* By default, we understand bool (as a convenience). */ typedef int bool; #define false 0 #define true 1 /* Forward declarations */ typedef struct TYPE_13__ TYPE_5__ ; typedef struct TYPE_12__ TYPE_4__ ; typedef struct TYPE_11__ TYPE_3__ ; typedef struct TYPE_10__ TYPE_2__ ; typedef struct TYPE_9__ TYPE_1__ ; /* Type definitions */ struct TYPE_11__ {int typecookie; int const cmd; int arglen; } ; struct ng_mesg {TYPE_3__ header; scalar_t__ data; } ; struct TYPE_13__ {int opt; int cir; int pir; int cbs; int ebs; int /*<<< orphan*/ mode; } ; struct ng_car_bulkstats {TYPE_5__ upstream; TYPE_5__ downstream; } ; struct ng_car_bulkconf {TYPE_5__ upstream; TYPE_5__ downstream; } ; typedef TYPE_4__* priv_p ; typedef int /*<<< orphan*/ node_p ; typedef int /*<<< orphan*/ item_p ; typedef int /*<<< orphan*/ hook_p ; struct TYPE_10__ {int tc; int te; TYPE_5__ conf; TYPE_5__ stats; } ; struct TYPE_9__ {int tc; int te; TYPE_5__ conf; TYPE_5__ stats; } ; struct TYPE_12__ {TYPE_2__ lower; TYPE_1__ upper; } ; /* Variables and functions */ int EINVAL ; int ENOMEM ; int /*<<< orphan*/ M_NOWAIT ; int /*<<< orphan*/ NGI_GET_MSG (int /*<<< orphan*/ ,struct ng_mesg*) ; #define NGM_CAR_CLR_STATS 133 #define NGM_CAR_COOKIE 132 #define NGM_CAR_GETCLR_STATS 131 #define NGM_CAR_GET_CONF 130 #define NGM_CAR_GET_STATS 129 #define NGM_CAR_SET_CONF 128 int NG_CAR_COUNT_PACKETS ; int /*<<< orphan*/ NG_CAR_RED ; int /*<<< orphan*/ NG_CAR_SHAPE ; int /*<<< orphan*/ NG_FREE_MSG (struct ng_mesg*) ; int /*<<< orphan*/ NG_MKRESPONSE (struct ng_mesg*,struct ng_mesg*,int,int /*<<< orphan*/ ) ; TYPE_4__* NG_NODE_PRIVATE (int /*<<< orphan*/ ) ; int /*<<< orphan*/ NG_RESPOND_MSG (int,int /*<<< orphan*/ ,int /*<<< orphan*/ ,struct ng_mesg*) ; int /*<<< orphan*/ bcopy (TYPE_5__*,TYPE_5__*,int) ; int /*<<< orphan*/ bzero (TYPE_5__*,int) ; __attribute__((used)) static int ng_car_rcvmsg(node_p node, item_p item, hook_p lasthook) { const priv_p priv = NG_NODE_PRIVATE(node); struct ng_mesg *resp = NULL; int error = 0; struct ng_mesg *msg; NGI_GET_MSG(item, msg); switch (msg->header.typecookie) { case NGM_CAR_COOKIE: switch (msg->header.cmd) { case NGM_CAR_GET_STATS: case NGM_CAR_GETCLR_STATS: { struct ng_car_bulkstats *bstats; NG_MKRESPONSE(resp, msg, sizeof(*bstats), M_NOWAIT); if (resp == NULL) { error = ENOMEM; break; } bstats = (struct ng_car_bulkstats *)resp->data; bcopy(&priv->upper.stats, &bstats->downstream, sizeof(bstats->downstream)); bcopy(&priv->lower.stats, &bstats->upstream, sizeof(bstats->upstream)); } if (msg->header.cmd == NGM_CAR_GET_STATS) break; case NGM_CAR_CLR_STATS: bzero(&priv->upper.stats, sizeof(priv->upper.stats)); bzero(&priv->lower.stats, sizeof(priv->lower.stats)); break; case NGM_CAR_GET_CONF: { struct ng_car_bulkconf *bconf; NG_MKRESPONSE(resp, msg, sizeof(*bconf), M_NOWAIT); if (resp == NULL) { error = ENOMEM; break; } bconf = (struct ng_car_bulkconf *)resp->data; bcopy(&priv->upper.conf, &bconf->downstream, sizeof(bconf->downstream)); bcopy(&priv->lower.conf, &bconf->upstream, sizeof(bconf->upstream)); /* Convert internal 1/(8*128) of pps into pps */ if (bconf->downstream.opt & NG_CAR_COUNT_PACKETS) { bconf->downstream.cir /= 1024; bconf->downstream.pir /= 1024; bconf->downstream.cbs /= 128; bconf->downstream.ebs /= 128; } if (bconf->upstream.opt & NG_CAR_COUNT_PACKETS) { bconf->upstream.cir /= 1024; bconf->upstream.pir /= 1024; bconf->upstream.cbs /= 128; bconf->upstream.ebs /= 128; } } break; case NGM_CAR_SET_CONF: { struct ng_car_bulkconf *const bconf = (struct ng_car_bulkconf *)msg->data; /* Check for invalid or illegal config. */ if (msg->header.arglen != sizeof(*bconf)) { error = EINVAL; break; } /* Convert pps into internal 1/(8*128) of pps */ if (bconf->downstream.opt & NG_CAR_COUNT_PACKETS) { bconf->downstream.cir *= 1024; bconf->downstream.pir *= 1024; bconf->downstream.cbs *= 125; bconf->downstream.ebs *= 125; } if (bconf->upstream.opt & NG_CAR_COUNT_PACKETS) { bconf->upstream.cir *= 1024; bconf->upstream.pir *= 1024; bconf->upstream.cbs *= 125; bconf->upstream.ebs *= 125; } if ((bconf->downstream.cir > 1000000000) || (bconf->downstream.pir > 1000000000) || (bconf->upstream.cir > 1000000000) || (bconf->upstream.pir > 1000000000) || (bconf->downstream.cbs == 0 && bconf->downstream.ebs == 0) || (bconf->upstream.cbs == 0 && bconf->upstream.ebs == 0)) { error = EINVAL; break; } if ((bconf->upstream.mode == NG_CAR_SHAPE) && (bconf->upstream.cir == 0)) { error = EINVAL; break; } if ((bconf->downstream.mode == NG_CAR_SHAPE) && (bconf->downstream.cir == 0)) { error = EINVAL; break; } /* Copy downstream config. */ bcopy(&bconf->downstream, &priv->upper.conf, sizeof(priv->upper.conf)); priv->upper.tc = priv->upper.conf.cbs; if (priv->upper.conf.mode == NG_CAR_RED || priv->upper.conf.mode == NG_CAR_SHAPE) { priv->upper.te = 0; } else { priv->upper.te = priv->upper.conf.ebs; } /* Copy upstream config. */ bcopy(&bconf->upstream, &priv->lower.conf, sizeof(priv->lower.conf)); priv->lower.tc = priv->lower.conf.cbs; if (priv->lower.conf.mode == NG_CAR_RED || priv->lower.conf.mode == NG_CAR_SHAPE) { priv->lower.te = 0; } else { priv->lower.te = priv->lower.conf.ebs; } } break; default: error = EINVAL; break; } break; default: error = EINVAL; break; } NG_RESPOND_MSG(error, node, item, resp); NG_FREE_MSG(msg); return (error); }
the_stack_data/79115.c
#include <stdio.h> //Referenciación: Es la obtención de la dirección de una variable int main() { int *ptr_intr; char *ptr_char; float *ptr_float; return 0; }
the_stack_data/243892367.c
#include <stdio.h> int main() { printf("Hello World\n"); return 0; }
the_stack_data/796514.c
/* Copyright (C) 2012-2016 A. C. Open Hardware Ideas Lab * * Authors: * Marco Giammarini <[email protected]> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. ******************************************************************************/ /** * @file libohiboard/source/interrupt_K12D5.c * @author Marco Giammarini <[email protected]> * @brief Interrupt implementations for K12D5. */ #if defined (LIBOHIBOARD_K12D5) #include "platforms.h" #include "interrupt.h" #define NVIC_NUM_CORE_VECTORS 16 #define NVIC_NUM_MCU_VECTORS 65 #define NVIC_NUM_VECTORS NVIC_NUM_CORE_VECTORS + NVIC_NUM_MCU_VECTORS System_Errors Interrupt_enable (Interrupt_Vector vectorNumber) { uint8_t div; /* Make sure that the IRQ is an allowable number. */ if (vectorNumber > NVIC_NUM_MCU_VECTORS) return ERRORS_IRQ_NUM_VECTOR_WRONG; /* Determine which of the NVICISERs corresponds to the irq */ div = vectorNumber/32; NVIC->ICPR[div] = 1 << (vectorNumber%32); NVIC->ISER[div] = 1 << (vectorNumber%32); return ERRORS_NO_ERROR; return ERRORS_NO_ERROR; } System_Errors Interrupt_disable (Interrupt_Vector vectorNumber) { uint8_t div; /* Make sure that the IRQ is an allowable number. */ if (vectorNumber > NVIC_NUM_MCU_VECTORS) return ERRORS_IRQ_NUM_VECTOR_WRONG; /* Determine which of the NVICISERs corresponds to the irq */ div = vectorNumber/32; NVIC->ICER[div] = 1 << (vectorNumber%32); return ERRORS_NO_ERROR; } #endif /* LIBOHIBOARD_K10D10 */
the_stack_data/238683.c
#include <stdio.h> void scilab_rt_barh_i0i0d0_(int scalarin0, int scalarin1, double scalarin2) { printf("%d", scalarin0); printf("%d", scalarin1); printf("%f", scalarin2); }
the_stack_data/154829249.c
// taken from https://stackoverflow.com/a/11814544/4634140 #include <stdlib.h> #include <stdio.h> FILE* open_or_exit(const char* fname, const char* mode) { FILE* f = fopen(fname, mode); if (f == NULL) { perror(fname); exit(EXIT_FAILURE); } return f; } int main(int argc, char** argv) { if (argc < 3) { fprintf(stderr, "USAGE: %s {sym} {rsrc}\n\n" " Creates {sym}.c from the contents of {rsrc}\n", argv[0]); return EXIT_FAILURE; } const char* sym = argv[1]; FILE* in = open_or_exit(argv[2], "r"); char symfile[256]; snprintf(symfile, sizeof(symfile), "%s.c", sym); FILE* out = open_or_exit(symfile,"w"); fprintf(out, "#include <stdlib.h>\n"); fprintf(out, "const char %s[] = {\n", sym); unsigned char buf[256]; size_t nread = 0; size_t linecount = 0; do { nread = fread(buf, 1, sizeof(buf), in); size_t i; for (i=0; i < nread; i++) { fprintf(out, "0x%02x, ", buf[i]); if (++linecount == 10) { fprintf(out, "\n"); linecount = 0; } } } while (nread > 0); if (linecount > 0) fprintf(out, "\n"); fprintf(out, "};\n"); fprintf(out, "const size_t %s_len = sizeof(%s);\n\n",sym,sym); fclose(in); fclose(out); return EXIT_SUCCESS; }
the_stack_data/72011600.c
/* PR tree-optimization/64193 */ /* { dg-do compile } */ /* { dg-options "-O -fdump-tree-fre1" } */ double T,T2,E1[5]; int J; void PA(double E[]) { J = 0; L10: E[1] = ( E[1] + E[2] + E[3] - E[4]) * T; E[2] = ( E[1] + E[2] - E[3] + E[4]) * T; E[3] = ( E[1] - E[2] + E[3] + E[4]) * T; E[4] = (-E[1] + E[2] + E[3] + E[4]) / T2; J += 1; if (J < 6) goto L10; } /* We should remove 15 dead loads and some related stmts, fully propagating their replacements with exactly 4 loads and 4 stores from/to E remaining. */ /* { dg-final { scan-tree-dump-times "MEM" 8 "fre1" } } */
the_stack_data/242331830.c
int is_prime(unsigned int n, unsigned int i) { if (n % i == 0) return (0); if (i * i > n) return (1); return (is_prime(n, i + 1)); } int ft_is_prime(int nb) { if (nb < 2) return (0); if (nb == 2) return (1); return (is_prime((unsigned int)nb, 2)); } #include <stdio.h> int main() { int x; x = -200; while (x <= 336893) { if (ft_is_prime(x)) printf(" %d is prime\n",x); x++; } return (0); }
the_stack_data/99453.c
/* { dg-do compile } */ /* { dg-options "-std=c99 -Wpedantic" } */ enum e { A }; struct { enum e b: 2; } s1; struct { signed char b: 2; } s2; struct { unsigned char b: 2; } s3; struct { short b: 2; } s4; struct { unsigned short b: 2; } s5; struct { long int b: 2; } s6; struct { unsigned long int b: 2; } s7; struct { long long int b: 2; } s8; struct { unsigned long long int b: 2; } s9;
the_stack_data/536200.c
//Ler um número inteiro N e calcular todos os seus divisores. #include<stdio.h> int main() { int a,i; scanf("%d",&a); for (i = 1; i <=a; i++) { if (a%i==0) { printf("%d\n",i); } } return 0; }
the_stack_data/1246552.c
/* PR middle-end/86123 */ int foo (_Complex unsigned x, _Complex unsigned y) { _Complex unsigned t1 = x / y; int t2 = (t1 != 0); return t2; } int bar (_Complex unsigned x, _Complex unsigned y) { _Complex unsigned t1 = x / y; int t2 = (t1 == 0); return t2; }
the_stack_data/776052.c
#include <unistd.h> void ft_putchar(char c) { write(1, &c, 1); } char ft_aff_a(char *str) { int i; i = 0; while (str[i] != '\0') { if (str[i] == 'a') ft_putchar('a'); i++; } ft_putchar('\n'); return (*str); } int main(int ac, char **av) { if ( ac == 2) { ft_aff_a(av[1]); } else { ft_putchar('a'); ft_putchar('\n'); } return (0); }
the_stack_data/87697.c
/* Chasing bugs related no non-strict pointer typing * * Simplified version of assignment12.c to find bugs related to qq */ void assignment17(int **qq) { int *p; p = *qq; return; }
the_stack_data/955207.c
// RUN: %clang_cc1 -emit-llvm-only %s int main(void) { double _Complex a = 5; double _Complex b = 42; return a * b != b * a; } _Complex double bar(int); void test(_Complex double*); void takecomplex(_Complex double); void test2(int c) { _Complex double X; X = bar(1); test(&X); takecomplex(X); } _Complex double g1, g2; _Complex float cf; double D; void test3() { g1 = g1 + g2; g1 = g1 - g2; g1 = g1 * g2; g1 = +-~g1; double Gr = __real g1; cf += D; D += cf; cf /= g1; g1 = g1 + D; g1 = D + g1; } __complex__ int ci1, ci2; __complex__ short cs; int i; void test3int() { ci1 = ci1 + ci2; ci1 = ci1 - ci2; ci1 = ci1 * ci2; ci1 = +-~ci1; i = __real ci1; cs += i; D += cf; cs /= ci1; ci1 = ci1 + i; ci1 = i + ci1; } void t1() { (__real__ cf) = 4.0; } void t2() { (__imag__ cf) = 4.0; } // PR1960 void t3() { __complex__ long long v = 2; } // PR3131 float _Complex t4(); void t5() { float _Complex x = t4(); } void t6() { g1++; g1--; ++g1; --g1; ci1++; ci1--; ++ci1; --ci1; } // <rdar://problem/7958272> double t7(double _Complex c) { return __builtin_fabs(__real__(c)); } void t8() { __complex__ int *x = &(__complex__ int){1}; } const _Complex double test9const = 0; _Complex double test9func() { return test9const; } // D6217 void t91() { // Check for proper type promotion of conditional expression char c[(int)(sizeof(typeof((0 ? 2.0f : (_Complex double) 2.0f))) - sizeof(_Complex double))]; // Check for proper codegen (0 ? 2.0f : (_Complex double) 2.0f); } void t92() { // Check for proper type promotion of conditional expression char c[(int)(sizeof(typeof((0 ? (_Complex double) 2.0f : 2.0f))) - sizeof(_Complex double))]; // Check for proper codegen (0 ? (_Complex double) 2.0f : 2.0f); }
the_stack_data/187644238.c
#include <pthread.h> #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <string.h> pthread_mutex_t mutex; int a=99; void *tfn(void *arg) { int i; int ret1, ret2; i = (int)arg; //sleep(i); //通过i来区别每个线程 printf("I'm %dth thread, Thread_ID = %lu\n", i+1, pthread_self()); if(i==0) { printf("begin lock\n"); //pthread_mutex_lock(&mutex); sleep(1); ret1=pthread_mutex_lock(&mutex); if(ret1!=0) { printf("err\n"); printf("lock err:%s",strerror(ret1)); } a=1; printf("lock ok\n"); } if(i==1) { pthread_mutex_destroy(&mutex); printf("begin unlock\n"); ret2=pthread_mutex_unlock(&mutex); if(ret2!=0) { printf("err\n"); printf("unlock err:%s",strerror(ret1)); } printf("unlock ok\n"); } return NULL; } int main(int argc, char *argv[]) { int n = 2, i; pthread_t tid; pthread_mutex_init(&mutex,NULL); for (i = 0; i < n; i++) { pthread_create(&tid, NULL, tfn, (void *)i); } while(1); //sleep(n); //printf("I am main, and I am not a process, I'm a thread!\n" //"main_thread_ID = %lu\n", pthread_self()); return 0; }
the_stack_data/66059.c
/* Given an array of integers, check if there exists two integers N and M such that N is the double of M * (i.e., N = 2 * M) * More formally check if there exists two indices i and j such that: * i != j * 0 <= i, j < arr.length * arr[i] == 2 * arr[j] * * Example 1: * Input: arr = [10,2,5,3] * Output: True * Explanation : N = 10 is the double of M = 5,that is, 10 = 2 * 5. * * Example 2: * Input: arr = [3,1,7,11] * Output: False * Explanation : In this case does not exist N and M, such that N = 2 * M. * * Email : [email protected] * Date : 28.09.2021 * Author : Abinash */ #include<stdio.h> #include<stdlib.h> int checkifExist(int *arr, int size) { for(int i=0; i<size; i++) { for(int j=0; j < arr[i]; arr[i+1]) { if(arr[i] * 2 == j) { printf("true\n"); } } } } int main() { int arr[4], i; int size = sizeof(arr) / sizeof(arr[0]); printf("Enter the 4 elements\n"); for(i=0; i<size; i++) scanf("%d",&arr[i]); checkifExist(arr,size); return 0; }
the_stack_data/168893159.c
#include <stdio.h> int main() { int shape; printf("1.Triangle\n2.rectangle\n3.square\n"); scanf("%d", &shape); switch(shape) { case 1: { int i, b, a = 3, k = 0; for (i = 1; i <= a; ++i, k = 0) { for (b = 1; b <= a - i; ++b) { printf(" "); } while (k != 2 * i - 1) { printf("* "); ++k; } printf("\n"); } } break; case 2: { int i, a; for (i = 1; i <= 3; ++i) { for (a = 1; a <= 10; ++a) { printf("* "); } printf("\n"); } } break; case 3: { int i, a; for (i = 1; i <= 3; ++i) { for (a = 1; a <= 3; ++a) { printf("* "); } printf("\n"); } } break; } }
the_stack_data/789458.c
#include <stdio.h> int main() { int nums[1080], status[1080] = {0}, n, k = 0; scanf("%d", &n); for (int i = 0; i < n; i++) { scanf("%d", nums + i); for (int j = 0; j < i; j++) { if (nums[j] == nums[i]) { status[i] = 1; } } } for (int i = 0; i < n; i++) { if (!status[i]) k += 1; } printf("%d\n", k); for (int i = 0; i < n; i++) { if (!status[i]) printf("%d ", nums[i]); } return 0; }
the_stack_data/148126.c
extern void __VERIFIER_error() __attribute__ ((__noreturn__)); void __VERIFIER_assert(int cond) { if(!(cond)) { ERROR: __VERIFIER_error(); } } #define N 25 int main( ) { int a1[N]; int a2[N]; int a3[N]; int a4[N]; int i; for ( i = 0 ; i < N ; i++ ) { a2[i] = a1[i]; } for ( i = 0 ; i < N ; i++ ) { a3[i] = a2[i]; } for ( i = 0 ; i < N ; i++ ) { a4[i] = a3[i]; } int x; for ( x = 0 ; x < N ; x++ ) { __VERIFIER_assert( a1[x] == a4[x] ); } return 0; }
the_stack_data/40497.c
# include<stdio.h> int main() { int a,b,ans; char inp[5]; scanf("%d%d",&a,&b); ans=(a+b)/2; while(1) { printf("%d\n",ans); fflush(stdout); scanf("%s",inp); if(strcmp(inp,"WIN")==0) { break; } else if(strcmp(inp,"LOW")==0) { a=ans+1; } else b=ans-1; ans=(a+b)/2; } return 0; }
the_stack_data/9513223.c
/* This testcase is part of GDB, the GNU debugger. Copyright 2010, 2011 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ int symbol_without_target_section;
the_stack_data/992007.c
#include <stdlib.h> /** * Note: The returned array must be malloced, assume caller calls free(). */ int* replaceElements(int* arr, int arrSize, int* returnSize) { *returnSize = arrSize; if (arrSize == 0) return arr; int maxsuffix = arr[arrSize - 1]; arr[arrSize - 1] = -1; for (int i = arrSize - 2; i >= 0; --i) { int tmp = arr[i]; arr[i] = maxsuffix; if (tmp > maxsuffix) maxsuffix = tmp; } return arr; }
the_stack_data/1110639.c
#include <stddef.h> // null #include <stdint.h> const char *GlobalName(uint32_t address) { switch(address) { case 0x0008: return "BusErrVct"; case 0x0100: return "MonkeyLives"; case 0x0102: return "ScrVRes"; case 0x0104: return "ScrHRes"; case 0x0106: return "ScreenRow"; case 0x0108: return "MemTop"; case 0x010C: return "BufPtr"; case 0x0110: return "StkLowPt"; case 0x0114: return "HeapEnd"; case 0x0118: return "TheZone"; case 0x011C: return "UTableBase"; case 0x012C: return "DskVerify"; case 0x012D: return "LoadTrap"; case 0x012E: return "MmInOK"; case 0x012F: return "CPUFlag"; case 0x0130: return "ApplLimit"; case 0x0142: return "DskErr"; case 0x0144: return "SysEvtMask"; case 0x0146: return "SysEvtBuf"; case 0x014A: return "EventQueue"; case 0x0154: return "EvtBufCnt"; case 0x0156: return "RndSeed"; case 0x015A: return "SysVersion"; case 0x015C: return "SEvtEnb"; case 0x015D: return "DSWndUpdate"; case 0x015F: return "IntFlag"; case 0x0160: return "VBLQueue"; case 0x016A: return "Ticks"; case 0x016E: return "MBTicks"; case 0x0172: return "MBState"; case 0x0174: return "KeyMapLM"; case 0x017C: return "KeypadMap"; case 0x0184: return "KeyLast"; case 0x0186: return "KeyTime"; case 0x018A: return "KeyRepTime"; case 0x018E: return "KeyThresh"; case 0x0190: return "KeyRepThresh"; case 0x0192: return "Lvl1DT"; case 0x01B2: return "Lvl2DT"; case 0x01D2: return "UnitNtryCnt"; case 0x01D4: return "VIA"; case 0x01D8: return "SCCRd"; case 0x01DC: return "SCCWr"; case 0x01E0: return "IWM"; case 0x01E4: return "GetParam"; //case 0x01E4: return "Scratch20"; //case 0x01F8: return "SPValid"; case 0x01F8: return "SysParam"; case 0x01F9: return "SPATalkA"; case 0x01FA: return "SPATalkB"; case 0x01FB: return "SPConfig"; case 0x01FC: return "SPPortA"; case 0x01FE: return "SPPortB"; case 0x0200: return "SPAlarm"; case 0x0204: return "SPFont"; case 0x0206: return "SPKbd"; case 0x0207: return "SPPrint"; case 0x0208: return "SPVolCtl"; case 0x0209: return "SPClikCaret"; case 0x020A: return "SPMisc1"; case 0x020B: return "PCDeskPat"; //case 0x020B: return "SPMisc2"; case 0x020C: return "TimeLM"; case 0x0210: return "BootDrive"; case 0x0214: return "SFSaveDisk"; case 0x0216: return "HiKeyLast"; //case 0x0216: return "KbdVars"; case 0x0218: return "KbdLast"; case 0x021A: return "JKybdTask"; case 0x021E: return "KbdType"; case 0x021F: return "AlarmState"; case 0x0220: return "MemErr"; case 0x0260: return "SdVolume"; case 0x0262: return "SoundPtr"; case 0x0266: return "SoundBase"; case 0x026A: return "SoundVBL"; case 0x027A: return "SoundDCE"; case 0x027E: return "SoundActive"; case 0x027F: return "SoundLevel"; case 0x0280: return "CurPitch"; case 0x0286: return "SwitcherTPtr"; case 0x028E: return "ROM85"; case 0x0290: return "PortAUse"; case 0x0291: return "PortBUse"; case 0x029A: return "JGNEFilter"; case 0x029E: return "Key1Trans"; case 0x02A2: return "Key2Trans"; case 0x02A6: return "SysZone"; case 0x02AA: return "ApplZone"; case 0x02AE: return "ROMBase"; case 0x02B2: return "RAMBase"; case 0x02B6: return "ExpandMem"; case 0x02BA: return "DSAlertTab"; case 0x02BE: return "ExtStsDT"; case 0x02CE: return "SCCASts"; case 0x02CF: return "SCCBSts"; case 0x02D0: return "SerialVars"; case 0x02D8: return "ABusVars"; case 0x02DC: return "ABusDCE"; case 0x02F0: return "DoubleTime"; case 0x02F4: return "CaretTime"; case 0x02F8: return "ScrDmpEnb"; case 0x02F9: return "ScrDmpType"; case 0x02FA: return "TagData"; case 0x02FC: return "BufTgFNum"; case 0x0300: return "BufTgFFlg"; case 0x0302: return "BufTgFBkNum"; case 0x0304: return "BufTgDate"; case 0x0308: return "DrvQHdr"; case 0x0312: return "PWMBuf2"; case 0x0316: return "HpChk"; case 0x031A: return "Lo3Bytes"; //case 0x031A: return "MaskBC"; //case 0x031A: return "MaskHandle"; //case 0x031A: return "MaskPtr"; case 0x031E: return "MinStack"; case 0x0322: return "DefltStack"; case 0x0326: return "MMDefFlags"; case 0x0328: return "GZRootHnd"; case 0x032C: return "GZRootPtr"; case 0x0330: return "GZMoveHnd"; case 0x0334: return "DSDrawProc"; case 0x0338: return "EjectNotify"; case 0x033C: return "IAZNotify"; case 0x0398: return "CurDirStore"; case 0x03F8: return "DSAlertRect"; case 0x0824: return "ScrnBase"; case 0x0828: return "MTemp"; case 0x082C: return "RawMouse"; case 0x0830: return "Mouse"; case 0x0834: return "CrsrPin"; case 0x083C: return "CrsrRect"; case 0x0844: return "TheCrsr"; case 0x0888: return "CrsrAddr"; case 0x088C: return "CrsrSave"; //case 0x088C: return "JAllocCrsr"; //case 0x088C: return "NewCrsrJTbl"; case 0x0890: return "JSetCCrsr"; case 0x0894: return "JOpcodeProc"; case 0x0898: return "CrsrBase"; case 0x089C: return "CrsrDevice"; case 0x08A0: return "SrcDevice"; case 0x08A4: return "MainDevice"; case 0x08A8: return "DeviceList"; case 0x08AC: return "CrsrRow"; case 0x08B0: return "QDColors"; case 0x08CC: return "CrsrVis"; case 0x08CD: return "CrsrBusy"; case 0x08CE: return "CrsrNew"; case 0x08CF: return "CrsrCouple"; case 0x08D0: return "CrsrState"; case 0x08D2: return "CrsrObscure"; case 0x08D3: return "CrsrScale"; case 0x08D6: return "MouseMask"; case 0x08DA: return "MouseOffset"; case 0x08DE: return "JournalFlag"; case 0x08E8: return "JournalRef"; case 0x08EC: return "CrsrThresh"; case 0x08EE: return "JCrsrTask"; case 0x08F2: return "WWExist"; case 0x08F3: return "QDExist"; case 0x08F4: return "JFetch"; case 0x08F8: return "JStash"; case 0x08FC: return "JIODone"; case 0x0900: return "CurApRefNum"; case 0x0902: return "LaunchFlag"; case 0x0904: return "CurrentA5"; case 0x0908: return "CurStackBase"; case 0x0910: return "CurApName"; case 0x0930: return "SaveSegHandle"; case 0x0934: return "CurJTOffset"; case 0x0936: return "CurPageOption"; case 0x0938: return "HiliteMode"; case 0x093A: return "LoaderPBlock"; //case 0x0960: return "ScrapInfo"; //case 0x0960: return "ScrapSize"; case 0x0960: return "ScrapVars"; case 0x0964: return "ScrapHandle"; case 0x0968: return "ScrapCount"; case 0x096A: return "ScrapState"; case 0x096C: return "ScrapName"; case 0x0970: return "ScrapTag"; case 0x0980: return "ScrapEnd"; case 0x09D6: return "WindowList"; case 0x09DC: return "PaintWhite"; case 0x09DE: return "WMgrPort"; case 0x09EE: return "GrayRgn"; case 0x09F6: return "DragHook"; case 0x09FA: return "Scratch8"; case 0x0A02: return "OneOne"; case 0x0A06: return "MinusOne"; case 0x0A3C: return "DeskPattern"; case 0x0A50: return "TopMapHndl"; case 0x0A54: return "SysMapHndl"; case 0x0A58: return "SysMap"; case 0x0A5A: return "CurMap"; case 0x0A5C: return "ResReadOnly"; case 0x0A5E: return "ResLoad"; case 0x0A60: return "ResErr"; case 0x0A64: return "CurActivate"; case 0x0A68: return "CurDeactive"; case 0x0A6C: return "DeskHook"; case 0x0A70: return "TEDoText"; case 0x0A74: return "TERecal"; case 0x0A84: return "GhostWindow"; //case 0x0A8C: return "RestProc"; case 0x0A8C: return "ResumeProc"; case 0x0AB0: return "TEScrpLength"; case 0x0AB4: return "TEScrpHandle"; case 0x0AD8: return "SysResName"; case 0x0AF0: return "DSErrCode"; case 0x0AF2: return "ResErrProc"; case 0x0AF6: return "TEWdBreak"; case 0x0B04: return "KeyMVars"; case 0x0B06: return "ROMMapHndl"; case 0x0B9E: return "RomMapInsert"; case 0x0B9F: return "TmpResLoad"; case 0x0BA0: return "IntlSpec"; case 0x0BA5: return "WordRedraw"; case 0x0BAA: return "MBarHeight"; case 0x0BAC: return "TESysJust"; case 0x0BAE: return "HiHeapMark"; case 0x0BB2: return "SegHiEnable"; case 0x0BB4: return "CommToolboxGlobals"; case 0x0C00: return "SCSIBase"; case 0x0C04: return "SCSIDMA"; case 0x0C08: return "SCSIHsk"; case 0x0C0C: return "SCSIGlobals"; case 0x0C10: return "RGBBlack"; case 0x0C16: return "RGBWhite"; case 0x0C20: return "RowBits"; case 0x0C22: return "ColLines"; case 0x0C24: return "ScreenBytes"; case 0x0C2C: return "NMIFlag"; case 0x0C2D: return "VidType"; case 0x0C2E: return "VidMode"; case 0x0C2F: return "SCSIPoll"; case 0x0C30: return "SEVarBase"; case 0x0CB0: return "MMUFlags"; case 0x0CB1: return "MMUType"; case 0x0CB2: return "MMU32bit"; case 0x0CB3: return "MMUFluff"; case 0x0CB4: return "MMUTbl"; case 0x0CB8: return "MMUTblSize"; case 0x0CBC: return "SInfoPtr"; case 0x0CC0: return "ASCBase"; case 0x0CC4: return "SMGlobals"; case 0x0CC8: return "TheGDevice"; case 0x0CCC: return "CQDGlobals"; case 0x0CF8: return "ADBBase"; case 0x0CFC: return "WarmStart"; case 0x0D00: return "TimeDBRA"; case 0x0D02: return "TimeSCCDB"; case 0x0D04: return "SlotQDT"; case 0x0D08: return "SlotPrTbl"; case 0x0D0C: return "SlotVBLQ"; case 0x0D10: return "ScrnVBLPtr"; case 0x0D14: return "SlotTICKS"; case 0x0D20: return "TableSeed"; case 0x0D24: return "SRsrcTblPtr"; case 0x0D28: return "JVBLTask"; case 0x0D2C: return "WMgrCPort"; case 0x0D30: return "VertRRate"; case 0x0D60: return "ChunkyDepth"; case 0x0D62: return "CrsrPtr"; case 0x0D66: return "PortList"; case 0x0D6A: return "MickeyBytes"; case 0x0D6E: return "QDErrLM"; case 0x0D70: return "VIA2DT"; case 0x0D90: return "SInitFlags"; //case 0x0D92: return "DTQFlags"; case 0x0D92: return "DTQueue"; case 0x0D94: return "DTskQHdr"; case 0x0D98: return "DTskQTail"; case 0x0D9C: return "JDTInstall"; case 0x0DA0: return "HiliteRGB"; case 0x0DA6: return "TimeSCSIDB"; case 0x0DA8: return "DSCtrAdj"; case 0x0DAC: return "IconTLAddr"; case 0x0DB0: return "VideoInfoOK"; case 0x0DB4: return "EndSRTPtr"; case 0x0DB8: return "SDMJmpTblPtr"; case 0x0DBC: return "JSwapMMU"; case 0x0DC0: return "SdmBusErr"; case 0x0DC4: return "LastTxGDevice"; default: return NULL; } }
the_stack_data/117326910.c
#include<stdio.h> #include<stdlib.h> int main(){ int m,n,i,a=1,b=1; scanf("%d%d",&m,&n); for(i=1;i<=n;i++){ a=a*i; } for(i=0;i<n;i++){ b=b*(m-i); } int num=b/a; printf("%d",num); }
the_stack_data/231392361.c
void g_boxed_copy() {} ; void g_boxed_free() {} ; void g_boxed_type_register_static() {} ; void g_cclosure_marshal_BOOLEAN__FLAGS() {} ; void g_cclosure_marshal_STRING__OBJECT_POINTER() {} ; void g_cclosure_marshal_VOID__BOOLEAN() {} ; void g_cclosure_marshal_VOID__BOXED() {} ; void g_cclosure_marshal_VOID__CHAR() {} ; void g_cclosure_marshal_VOID__DOUBLE() {} ; void g_cclosure_marshal_VOID__ENUM() {} ; void g_cclosure_marshal_VOID__FLAGS() {} ; void g_cclosure_marshal_VOID__FLOAT() {} ; void g_cclosure_marshal_VOID__INT() {} ; void g_cclosure_marshal_VOID__LONG() {} ; void g_cclosure_marshal_VOID__OBJECT() {} ; void g_cclosure_marshal_VOID__PARAM() {} ; void g_cclosure_marshal_VOID__POINTER() {} ; void g_cclosure_marshal_VOID__STRING() {} ; void g_cclosure_marshal_VOID__UCHAR() {} ; void g_cclosure_marshal_VOID__UINT() {} ; void g_cclosure_marshal_VOID__UINT_POINTER() {} ; void g_cclosure_marshal_VOID__ULONG() {} ; void g_cclosure_marshal_VOID__VOID() {} ; void g_cclosure_new() {} ; void g_cclosure_new_object() {} ; void g_cclosure_new_object_swap() {} ; void g_cclosure_new_swap() {} ; void g_closure_add_finalize_notifier() {} ; void g_closure_add_invalidate_notifier() {} ; void g_closure_add_marshal_guards() {} ; void g_closure_get_type() {} ; void g_closure_invalidate() {} ; void g_closure_invoke() {} ; void g_closure_new_object() {} ; void g_closure_new_simple() {} ; void g_closure_ref() {} ; void g_closure_remove_finalize_notifier() {} ; void g_closure_remove_invalidate_notifier() {} ; void g_closure_set_marshal() {} ; void g_closure_set_meta_marshal() {} ; void g_closure_sink() {} ; void g_closure_unref() {} ; void g_enum_complete_type_info() {} ; void g_enum_get_value() {} ; void g_enum_get_value_by_name() {} ; void g_enum_get_value_by_nick() {} ; void g_enum_register_static() {} ; void g_flags_complete_type_info() {} ; void g_flags_get_first_value() {} ; void g_flags_get_value_by_name() {} ; void g_flags_get_value_by_nick() {} ; void g_flags_register_static() {} ; void g_gstring_get_type() {} ; void g_io_channel_get_type() {} ; void g_io_condition_get_type() {} ; void g_object_add_toggle_ref() {} ; void g_object_add_weak_pointer() {} ; void g_object_class_find_property() {} ; void g_object_class_install_property() {} ; void g_object_class_list_properties() {} ; void g_object_class_override_property() {} ; void g_object_connect() {} ; void g_object_disconnect() {} ; void g_object_freeze_notify() {} ; void g_object_get() {} ; void g_object_get_data() {} ; void g_object_get_property() {} ; void g_object_get_qdata() {} ; void g_object_get_valist() {} ; void g_object_interface_find_property() {} ; void g_object_interface_install_property() {} ; void g_object_interface_list_properties() {} ; void g_object_new() {} ; void g_object_new_valist() {} ; void g_object_newv() {} ; void g_object_notify() {} ; void g_object_ref() {} ; void g_object_remove_toggle_ref() {} ; void g_object_remove_weak_pointer() {} ; void g_object_run_dispose() {} ; void g_object_set() {} ; void g_object_set_data() {} ; void g_object_set_data_full() {} ; void g_object_set_property() {} ; void g_object_set_qdata() {} ; void g_object_set_qdata_full() {} ; void g_object_set_valist() {} ; void g_object_steal_data() {} ; void g_object_steal_qdata() {} ; void g_object_thaw_notify() {} ; void g_object_unref() {} ; void g_object_watch_closure() {} ; void g_object_weak_ref() {} ; void g_object_weak_unref() {} ; void g_param_spec_boolean() {} ; void g_param_spec_boxed() {} ; void g_param_spec_char() {} ; void g_param_spec_double() {} ; void g_param_spec_enum() {} ; void g_param_spec_flags() {} ; void g_param_spec_float() {} ; void g_param_spec_get_blurb() {} ; void g_param_spec_get_name() {} ; void g_param_spec_get_nick() {} ; void g_param_spec_get_qdata() {} ; void g_param_spec_get_redirect_target() {} ; void g_param_spec_int() {} ; void g_param_spec_int64() {} ; void g_param_spec_internal() {} ; void g_param_spec_long() {} ; void g_param_spec_object() {} ; void g_param_spec_override() {} ; void g_param_spec_param() {} ; void g_param_spec_pointer() {} ; void g_param_spec_pool_insert() {} ; void g_param_spec_pool_list() {} ; void g_param_spec_pool_list_owned() {} ; void g_param_spec_pool_lookup() {} ; void g_param_spec_pool_new() {} ; void g_param_spec_pool_remove() {} ; void g_param_spec_ref() {} ; void g_param_spec_set_qdata() {} ; void g_param_spec_set_qdata_full() {} ; void g_param_spec_sink() {} ; void g_param_spec_steal_qdata() {} ; void g_param_spec_string() {} ; void g_param_spec_uchar() {} ; void g_param_spec_uint() {} ; void g_param_spec_uint64() {} ; void g_param_spec_ulong() {} ; void g_param_spec_unichar() {} ; void g_param_spec_unref() {} ; void g_param_spec_value_array() {} ; void g_param_type_register_static() {} ; void g_param_value_convert() {} ; void g_param_value_defaults() {} ; void g_param_value_set_default() {} ; void g_param_value_validate() {} ; void g_param_values_cmp() {} ; void g_pointer_type_register_static() {} ; void g_signal_accumulator_true_handled() {} ; void g_signal_add_emission_hook() {} ; void g_signal_chain_from_overridden() {} ; void g_signal_connect_closure() {} ; void g_signal_connect_closure_by_id() {} ; void g_signal_connect_data() {} ; void g_signal_connect_object() {} ; void g_signal_emit() {} ; void g_signal_emit_by_name() {} ; void g_signal_emit_valist() {} ; void g_signal_emitv() {} ; void g_signal_get_invocation_hint() {} ; void g_signal_handler_block() {} ; void g_signal_handler_disconnect() {} ; void g_signal_handler_find() {} ; void g_signal_handler_is_connected() {} ; void g_signal_handler_unblock() {} ; void g_signal_handlers_block_matched() {} ; void g_signal_handlers_disconnect_matched() {} ; void g_signal_handlers_unblock_matched() {} ; void g_signal_has_handler_pending() {} ; void g_signal_list_ids() {} ; void g_signal_lookup() {} ; void g_signal_name() {} ; void g_signal_new() {} ; void g_signal_new_valist() {} ; void g_signal_newv() {} ; void g_signal_override_class_closure() {} ; void g_signal_parse_name() {} ; void g_signal_query() {} ; void g_signal_remove_emission_hook() {} ; void g_signal_stop_emission() {} ; void g_signal_stop_emission_by_name() {} ; void g_signal_type_cclosure_new() {} ; void g_source_set_closure() {} ; void g_strdup_value_contents() {} ; void g_strv_get_type() {} ; void g_type_add_class_cache_func() {} ; void g_type_add_interface_check() {} ; void g_type_add_interface_dynamic() {} ; void g_type_add_interface_static() {} ; void g_type_check_class_cast() {} ; void g_type_check_class_is_a() {} ; void g_type_check_instance() {} ; void g_type_check_instance_cast() {} ; void g_type_check_instance_is_a() {} ; void g_type_check_is_value_type() {} ; void g_type_check_value() {} ; void g_type_check_value_holds() {} ; void g_type_children() {} ; void g_type_class_add_private() {} ; void g_type_class_peek() {} ; void g_type_class_peek_parent() {} ; void g_type_class_peek_static() {} ; void g_type_class_ref() {} ; void g_type_class_unref() {} ; void g_type_class_unref_uncached() {} ; void g_type_create_instance() {} ; void g_type_default_interface_peek() {} ; void g_type_default_interface_ref() {} ; void g_type_default_interface_unref() {} ; void g_type_depth() {} ; void g_type_free_instance() {} ; void g_type_from_name() {} ; void g_type_fundamental() {} ; void g_type_fundamental_next() {} ; void g_type_get_plugin() {} ; void g_type_get_qdata() {} ; void g_type_init() {} ; void g_type_init_with_debug_flags() {} ; void g_type_instance_get_private() {} ; void g_type_interface_add_prerequisite() {} ; void g_type_interface_get_plugin() {} ; void g_type_interface_peek() {} ; void g_type_interface_peek_parent() {} ; void g_type_interface_prerequisites() {} ; void g_type_interfaces() {} ; void g_type_is_a() {} ; void g_type_module_add_interface() {} ; void g_type_module_get_type() {} ; void g_type_module_register_enum() {} ; void g_type_module_register_flags() {} ; void g_type_module_register_type() {} ; void g_type_module_set_name() {} ; void g_type_module_unuse() {} ; void g_type_module_use() {} ; void g_type_name() {} ; void g_type_name_from_class() {} ; void g_type_name_from_instance() {} ; void g_type_next_base() {} ; void g_type_parent() {} ; void g_type_plugin_complete_interface_info() {} ; void g_type_plugin_complete_type_info() {} ; void g_type_plugin_get_type() {} ; void g_type_plugin_unuse() {} ; void g_type_plugin_use() {} ; void g_type_qname() {} ; void g_type_query() {} ; void g_type_register_dynamic() {} ; void g_type_register_fundamental() {} ; void g_type_register_static() {} ; void g_type_remove_class_cache_func() {} ; void g_type_remove_interface_check() {} ; void g_type_set_qdata() {} ; void g_type_test_flags() {} ; void g_type_value_table_peek() {} ; void g_value_array_append() {} ; void g_value_array_copy() {} ; void g_value_array_free() {} ; void g_value_array_get_nth() {} ; void g_value_array_get_type() {} ; void g_value_array_insert() {} ; void g_value_array_new() {} ; void g_value_array_prepend() {} ; void g_value_array_remove() {} ; void g_value_array_sort() {} ; void g_value_array_sort_with_data() {} ; void g_value_copy() {} ; void g_value_dup_boxed() {} ; void g_value_dup_object() {} ; void g_value_dup_param() {} ; void g_value_dup_string() {} ; void g_value_fits_pointer() {} ; void g_value_get_boolean() {} ; void g_value_get_boxed() {} ; void g_value_get_char() {} ; void g_value_get_double() {} ; void g_value_get_enum() {} ; void g_value_get_flags() {} ; void g_value_get_float() {} ; void g_value_get_int() {} ; void g_value_get_int64() {} ; void g_value_get_long() {} ; void g_value_get_object() {} ; void g_value_get_param() {} ; void g_value_get_pointer() {} ; void g_value_get_string() {} ; void g_value_get_type() {} ; void g_value_get_uchar() {} ; void g_value_get_uint() {} ; void g_value_get_uint64() {} ; void g_value_get_ulong() {} ; void g_value_init() {} ; void g_value_peek_pointer() {} ; void g_value_register_transform_func() {} ; void g_value_reset() {} ; void g_value_set_boolean() {} ; void g_value_set_boxed() {} ; void g_value_set_char() {} ; void g_value_set_double() {} ; void g_value_set_enum() {} ; void g_value_set_flags() {} ; void g_value_set_float() {} ; void g_value_set_instance() {} ; void g_value_set_int() {} ; void g_value_set_int64() {} ; void g_value_set_long() {} ; void g_value_set_object() {} ; void g_value_set_param() {} ; void g_value_set_pointer() {} ; void g_value_set_static_boxed() {} ; void g_value_set_static_string() {} ; void g_value_set_string() {} ; void g_value_set_uchar() {} ; void g_value_set_uint() {} ; void g_value_set_uint64() {} ; void g_value_set_ulong() {} ; void g_value_take_boxed() {} ; void g_value_take_object() {} ; void g_value_take_param() {} ; void g_value_take_string() {} ; void g_value_transform() {} ; void g_value_type_compatible() {} ; void g_value_type_transformable() {} ; void g_value_unset() {} ; __asm__(".globl g_param_spec_types; .pushsection .data; .type g_param_spec_types,@object; .size g_param_spec_types, 4; g_param_spec_types: .long 0; .popsection");
the_stack_data/105171.c
//axpy.c #include <stdio.h> #include <stdlib.h> #include <time.h> #include <sys/timeb.h> #include <malloc.h> #define N_RUNS 20 #define N 102400000 // read timer in second double read_timer() { struct timeb tm; ftime(&tm); return (double) tm.time + (double) tm.millitm / 1000.0; } //Create a matrix and a vector and fill with random numbers void init(float *X, float *Y) { for (int i = 0; i<N; i++) { X[i] = (float)rand()/(float)(RAND_MAX/10.0); Y[i] = (float)rand()/(float)(RAND_MAX/10.0); } } //Our sum function- what it does is pretty straight-forward. void axpy(float *X, float *Y, float a) { #pragma omp simd for (int i = 0; i<N; i++) { Y[i] += a * X[i]; } } // Debug functions void axpy_serial(float *X, float *Y, float a) { for (int i = 0; i<N; i++) { Y[i] += a * X[i]; } } void print_vector(float *vector) { printf("["); for (int i = 0; i<8; i++) { printf("%.2f ", vector[i]); } puts("]"); } float check(float *A, float *B){ float difference = 0; for(int i = 0;i<N; i++){ difference += A[i]- B[i]; } return difference; } int main(int argc, char **argv) { //Set everything up float *X = malloc(sizeof(float)*N); float *Y = malloc(sizeof(float)*N); float *Y_serial = malloc(sizeof(float)*N); float a = 3.14; srand(time(NULL)); init(X, Y); for (int i = 0; i<N; i++) Y_serial[i] = Y[i]; print_vector(Y); print_vector(X); printf("%.2f\n", a); puts("=\n"); //warming up axpy(X, Y, a); axpy_serial(X, Y_serial, a); init(X, Y); for (int i = 0; i<N; i++) Y_serial[i] = Y[i]; double t = 0; double start = read_timer(); for (int i = 0; i<N_RUNS; i++) axpy(X, Y, a); t += (read_timer() - start); double t_serial = 0; double start_serial = read_timer(); for (int i = 0; i<N_RUNS; i++) axpy_serial(X, Y_serial, a); t_serial += (read_timer() - start_serial); print_vector(Y); puts("---------------------------------"); print_vector(Y_serial); double gflops = ((2.0 * N) * N * N_RUNS) / (1.0e9 * t); double gflops_serial = ((2.0 * N) * N * N_RUNS) / (1.0e9 * t_serial); printf("==================================================================\n"); printf("Performance:\t\t\tRuntime (s)\t GFLOPS\n"); printf("------------------------------------------------------------------\n"); printf("AXPY (SIMD):\t\t%4f\t%4f\n", t/N_RUNS, gflops); printf("AXPY (Serial):\t\t%4f\t%4f\n", t_serial/N_RUNS, gflops_serial); printf("Correctness check: %f\n", check(Y,Y_serial)); free(X); free(Y); free(Y_serial); return 0; }
the_stack_data/90765329.c
#include <math.h> #include <stdlib.h> #include <string.h> #include <stdio.h> #include <complex.h> #ifdef complex #undef complex #endif #ifdef I #undef I #endif #if defined(_WIN64) typedef long long BLASLONG; typedef unsigned long long BLASULONG; #else typedef long BLASLONG; typedef unsigned long BLASULONG; #endif #ifdef LAPACK_ILP64 typedef BLASLONG blasint; #if defined(_WIN64) #define blasabs(x) llabs(x) #else #define blasabs(x) labs(x) #endif #else typedef int blasint; #define blasabs(x) abs(x) #endif typedef blasint integer; typedef unsigned int uinteger; typedef char *address; typedef short int shortint; typedef float real; typedef double doublereal; typedef struct { real r, i; } complex; typedef struct { doublereal r, i; } doublecomplex; #ifdef _MSC_VER static inline _Fcomplex Cf(complex *z) {_Fcomplex zz={z->r , z->i}; return zz;} static inline _Dcomplex Cd(doublecomplex *z) {_Dcomplex zz={z->r , z->i};return zz;} static inline _Fcomplex * _pCf(complex *z) {return (_Fcomplex*)z;} static inline _Dcomplex * _pCd(doublecomplex *z) {return (_Dcomplex*)z;} #else static inline _Complex float Cf(complex *z) {return z->r + z->i*_Complex_I;} static inline _Complex double Cd(doublecomplex *z) {return z->r + z->i*_Complex_I;} static inline _Complex float * _pCf(complex *z) {return (_Complex float*)z;} static inline _Complex double * _pCd(doublecomplex *z) {return (_Complex double*)z;} #endif #define pCf(z) (*_pCf(z)) #define pCd(z) (*_pCd(z)) typedef int logical; typedef short int shortlogical; typedef char logical1; typedef char integer1; #define TRUE_ (1) #define FALSE_ (0) /* Extern is for use with -E */ #ifndef Extern #define Extern extern #endif /* I/O stuff */ typedef int flag; typedef int ftnlen; typedef int ftnint; /*external read, write*/ typedef struct { flag cierr; ftnint ciunit; flag ciend; char *cifmt; ftnint cirec; } cilist; /*internal read, write*/ typedef struct { flag icierr; char *iciunit; flag iciend; char *icifmt; ftnint icirlen; ftnint icirnum; } icilist; /*open*/ typedef struct { flag oerr; ftnint ounit; char *ofnm; ftnlen ofnmlen; char *osta; char *oacc; char *ofm; ftnint orl; char *oblnk; } olist; /*close*/ typedef struct { flag cerr; ftnint cunit; char *csta; } cllist; /*rewind, backspace, endfile*/ typedef struct { flag aerr; ftnint aunit; } alist; /* inquire */ typedef struct { flag inerr; ftnint inunit; char *infile; ftnlen infilen; ftnint *inex; /*parameters in standard's order*/ ftnint *inopen; ftnint *innum; ftnint *innamed; char *inname; ftnlen innamlen; char *inacc; ftnlen inacclen; char *inseq; ftnlen inseqlen; char *indir; ftnlen indirlen; char *infmt; ftnlen infmtlen; char *inform; ftnint informlen; char *inunf; ftnlen inunflen; ftnint *inrecl; ftnint *innrec; char *inblank; ftnlen inblanklen; } inlist; #define VOID void union Multitype { /* for multiple entry points */ integer1 g; shortint h; integer i; /* longint j; */ real r; doublereal d; complex c; doublecomplex z; }; typedef union Multitype Multitype; struct Vardesc { /* for Namelist */ char *name; char *addr; ftnlen *dims; int type; }; typedef struct Vardesc Vardesc; struct Namelist { char *name; Vardesc **vars; int nvars; }; typedef struct Namelist Namelist; #define abs(x) ((x) >= 0 ? (x) : -(x)) #define dabs(x) (fabs(x)) #define f2cmin(a,b) ((a) <= (b) ? (a) : (b)) #define f2cmax(a,b) ((a) >= (b) ? (a) : (b)) #define dmin(a,b) (f2cmin(a,b)) #define dmax(a,b) (f2cmax(a,b)) #define bit_test(a,b) ((a) >> (b) & 1) #define bit_clear(a,b) ((a) & ~((uinteger)1 << (b))) #define bit_set(a,b) ((a) | ((uinteger)1 << (b))) #define abort_() { sig_die("Fortran abort routine called", 1); } #define c_abs(z) (cabsf(Cf(z))) #define c_cos(R,Z) { pCf(R)=ccos(Cf(Z)); } #ifdef _MSC_VER #define c_div(c, a, b) {Cf(c)._Val[0] = (Cf(a)._Val[0]/Cf(b)._Val[0]); Cf(c)._Val[1]=(Cf(a)._Val[1]/Cf(b)._Val[1]);} #define z_div(c, a, b) {Cd(c)._Val[0] = (Cd(a)._Val[0]/Cd(b)._Val[0]); Cd(c)._Val[1]=(Cd(a)._Val[1]/df(b)._Val[1]);} #else #define c_div(c, a, b) {pCf(c) = Cf(a)/Cf(b);} #define z_div(c, a, b) {pCd(c) = Cd(a)/Cd(b);} #endif #define c_exp(R, Z) {pCf(R) = cexpf(Cf(Z));} #define c_log(R, Z) {pCf(R) = clogf(Cf(Z));} #define c_sin(R, Z) {pCf(R) = csinf(Cf(Z));} //#define c_sqrt(R, Z) {*(R) = csqrtf(Cf(Z));} #define c_sqrt(R, Z) {pCf(R) = csqrtf(Cf(Z));} #define d_abs(x) (fabs(*(x))) #define d_acos(x) (acos(*(x))) #define d_asin(x) (asin(*(x))) #define d_atan(x) (atan(*(x))) #define d_atn2(x, y) (atan2(*(x),*(y))) #define d_cnjg(R, Z) { pCd(R) = conj(Cd(Z)); } #define r_cnjg(R, Z) { pCf(R) = conjf(Cf(Z)); } #define d_cos(x) (cos(*(x))) #define d_cosh(x) (cosh(*(x))) #define d_dim(__a, __b) ( *(__a) > *(__b) ? *(__a) - *(__b) : 0.0 ) #define d_exp(x) (exp(*(x))) #define d_imag(z) (cimag(Cd(z))) #define r_imag(z) (cimagf(Cf(z))) #define d_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x))) #define r_int(__x) (*(__x)>0 ? floor(*(__x)) : -floor(- *(__x))) #define d_lg10(x) ( 0.43429448190325182765 * log(*(x)) ) #define r_lg10(x) ( 0.43429448190325182765 * log(*(x)) ) #define d_log(x) (log(*(x))) #define d_mod(x, y) (fmod(*(x), *(y))) #define u_nint(__x) ((__x)>=0 ? floor((__x) + .5) : -floor(.5 - (__x))) #define d_nint(x) u_nint(*(x)) #define u_sign(__a,__b) ((__b) >= 0 ? ((__a) >= 0 ? (__a) : -(__a)) : -((__a) >= 0 ? (__a) : -(__a))) #define d_sign(a,b) u_sign(*(a),*(b)) #define r_sign(a,b) u_sign(*(a),*(b)) #define d_sin(x) (sin(*(x))) #define d_sinh(x) (sinh(*(x))) #define d_sqrt(x) (sqrt(*(x))) #define d_tan(x) (tan(*(x))) #define d_tanh(x) (tanh(*(x))) #define i_abs(x) abs(*(x)) #define i_dnnt(x) ((integer)u_nint(*(x))) #define i_len(s, n) (n) #define i_nint(x) ((integer)u_nint(*(x))) #define i_sign(a,b) ((integer)u_sign((integer)*(a),(integer)*(b))) #define pow_dd(ap, bp) ( pow(*(ap), *(bp))) #define pow_si(B,E) spow_ui(*(B),*(E)) #define pow_ri(B,E) spow_ui(*(B),*(E)) #define pow_di(B,E) dpow_ui(*(B),*(E)) #define pow_zi(p, a, b) {pCd(p) = zpow_ui(Cd(a), *(b));} #define pow_ci(p, a, b) {pCf(p) = cpow_ui(Cf(a), *(b));} #define pow_zz(R,A,B) {pCd(R) = cpow(Cd(A),*(B));} #define s_cat(lpp, rpp, rnp, np, llp) { ftnlen i, nc, ll; char *f__rp, *lp; ll = (llp); lp = (lpp); for(i=0; i < (int)*(np); ++i) { nc = ll; if((rnp)[i] < nc) nc = (rnp)[i]; ll -= nc; f__rp = (rpp)[i]; while(--nc >= 0) *lp++ = *(f__rp)++; } while(--ll >= 0) *lp++ = ' '; } #define s_cmp(a,b,c,d) ((integer)strncmp((a),(b),f2cmin((c),(d)))) #define s_copy(A,B,C,D) { int __i,__m; for (__i=0, __m=f2cmin((C),(D)); __i<__m && (B)[__i] != 0; ++__i) (A)[__i] = (B)[__i]; } #define sig_die(s, kill) { exit(1); } #define s_stop(s, n) {exit(0);} static char junk[] = "\n@(#)LIBF77 VERSION 19990503\n"; #define z_abs(z) (cabs(Cd(z))) #define z_exp(R, Z) {pCd(R) = cexp(Cd(Z));} #define z_sqrt(R, Z) {pCd(R) = csqrt(Cd(Z));} #define myexit_() break; #define mycycle() continue; #define myceiling(w) {ceil(w)} #define myhuge(w) {HUGE_VAL} //#define mymaxloc_(w,s,e,n) {if (sizeof(*(w)) == sizeof(double)) dmaxloc_((w),*(s),*(e),n); else dmaxloc_((w),*(s),*(e),n);} #define mymaxloc(w,s,e,n) {dmaxloc_(w,*(s),*(e),n)} /* procedure parameter types for -A and -C++ */ #define F2C_proc_par_types 1 #ifdef __cplusplus typedef logical (*L_fp)(...); #else typedef logical (*L_fp)(); #endif static float spow_ui(float x, integer n) { float pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } static double dpow_ui(double x, integer n) { double pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } #ifdef _MSC_VER static _Fcomplex cpow_ui(complex x, integer n) { complex pow={1.0,0.0}; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x.r = 1/x.r, x.i=1/x.i; for(u = n; ; ) { if(u & 01) pow.r *= x.r, pow.i *= x.i; if(u >>= 1) x.r *= x.r, x.i *= x.i; else break; } } _Fcomplex p={pow.r, pow.i}; return p; } #else static _Complex float cpow_ui(_Complex float x, integer n) { _Complex float pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } #endif #ifdef _MSC_VER static _Dcomplex zpow_ui(_Dcomplex x, integer n) { _Dcomplex pow={1.0,0.0}; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x._Val[0] = 1/x._Val[0], x._Val[1] =1/x._Val[1]; for(u = n; ; ) { if(u & 01) pow._Val[0] *= x._Val[0], pow._Val[1] *= x._Val[1]; if(u >>= 1) x._Val[0] *= x._Val[0], x._Val[1] *= x._Val[1]; else break; } } _Dcomplex p = {pow._Val[0], pow._Val[1]}; return p; } #else static _Complex double zpow_ui(_Complex double x, integer n) { _Complex double pow=1.0; unsigned long int u; if(n != 0) { if(n < 0) n = -n, x = 1/x; for(u = n; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } #endif static integer pow_ii(integer x, integer n) { integer pow; unsigned long int u; if (n <= 0) { if (n == 0 || x == 1) pow = 1; else if (x != -1) pow = x == 0 ? 1/x : 0; else n = -n; } if ((n > 0) || !(n == 0 || x == 1 || x != -1)) { u = n; for(pow = 1; ; ) { if(u & 01) pow *= x; if(u >>= 1) x *= x; else break; } } return pow; } static integer dmaxloc_(double *w, integer s, integer e, integer *n) { double m; integer i, mi; for(m=w[s-1], mi=s, i=s+1; i<=e; i++) if (w[i-1]>m) mi=i ,m=w[i-1]; return mi-s+1; } static integer smaxloc_(float *w, integer s, integer e, integer *n) { float m; integer i, mi; for(m=w[s-1], mi=s, i=s+1; i<=e; i++) if (w[i-1]>m) mi=i ,m=w[i-1]; return mi-s+1; } static inline void cdotc_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Fcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conjf(Cf(&x[i]))._Val[0] * Cf(&y[i])._Val[0]; zdotc._Val[1] += conjf(Cf(&x[i]))._Val[1] * Cf(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conjf(Cf(&x[i*incx]))._Val[0] * Cf(&y[i*incy])._Val[0]; zdotc._Val[1] += conjf(Cf(&x[i*incx]))._Val[1] * Cf(&y[i*incy])._Val[1]; } } pCf(z) = zdotc; } #else _Complex float zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conjf(Cf(&x[i])) * Cf(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conjf(Cf(&x[i*incx])) * Cf(&y[i*incy]); } } pCf(z) = zdotc; } #endif static inline void zdotc_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Dcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conj(Cd(&x[i]))._Val[0] * Cd(&y[i])._Val[0]; zdotc._Val[1] += conj(Cd(&x[i]))._Val[1] * Cd(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += conj(Cd(&x[i*incx]))._Val[0] * Cd(&y[i*incy])._Val[0]; zdotc._Val[1] += conj(Cd(&x[i*incx]))._Val[1] * Cd(&y[i*incy])._Val[1]; } } pCd(z) = zdotc; } #else _Complex double zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conj(Cd(&x[i])) * Cd(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += conj(Cd(&x[i*incx])) * Cd(&y[i*incy]); } } pCd(z) = zdotc; } #endif static inline void cdotu_(complex *z, integer *n_, complex *x, integer *incx_, complex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Fcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cf(&x[i])._Val[0] * Cf(&y[i])._Val[0]; zdotc._Val[1] += Cf(&x[i])._Val[1] * Cf(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cf(&x[i*incx])._Val[0] * Cf(&y[i*incy])._Val[0]; zdotc._Val[1] += Cf(&x[i*incx])._Val[1] * Cf(&y[i*incy])._Val[1]; } } pCf(z) = zdotc; } #else _Complex float zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cf(&x[i]) * Cf(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cf(&x[i*incx]) * Cf(&y[i*incy]); } } pCf(z) = zdotc; } #endif static inline void zdotu_(doublecomplex *z, integer *n_, doublecomplex *x, integer *incx_, doublecomplex *y, integer *incy_) { integer n = *n_, incx = *incx_, incy = *incy_, i; #ifdef _MSC_VER _Dcomplex zdotc = {0.0, 0.0}; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cd(&x[i])._Val[0] * Cd(&y[i])._Val[0]; zdotc._Val[1] += Cd(&x[i])._Val[1] * Cd(&y[i])._Val[1]; } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc._Val[0] += Cd(&x[i*incx])._Val[0] * Cd(&y[i*incy])._Val[0]; zdotc._Val[1] += Cd(&x[i*incx])._Val[1] * Cd(&y[i*incy])._Val[1]; } } pCd(z) = zdotc; } #else _Complex double zdotc = 0.0; if (incx == 1 && incy == 1) { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cd(&x[i]) * Cd(&y[i]); } } else { for (i=0;i<n;i++) { /* zdotc = zdotc + dconjg(x(i))* y(i) */ zdotc += Cd(&x[i*incx]) * Cd(&y[i*incy]); } } pCd(z) = zdotc; } #endif /* -- translated by f2c (version 20000121). You must link the resulting object file with the libraries: -lf2c -lm (in that order) */ /* Table of constant values */ static integer c__1 = 1; /* > \brief \b CHB2ST_KERNELS */ /* @generated from zhb2st_kernels.f, fortran z -> c, Wed Dec 7 08:22:40 2016 */ /* =========== DOCUMENTATION =========== */ /* Online html documentation available at */ /* http://www.netlib.org/lapack/explore-html/ */ /* > \htmlonly */ /* > Download CHB2ST_KERNELS + dependencies */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.tgz?format=tgz&filename=/lapack/lapack_routine/chb2st_ kernels.f"> */ /* > [TGZ]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.zip?format=zip&filename=/lapack/lapack_routine/chb2st_ kernels.f"> */ /* > [ZIP]</a> */ /* > <a href="http://www.netlib.org/cgi-bin/netlibfiles.txt?format=txt&filename=/lapack/lapack_routine/chb2st_ kernels.f"> */ /* > [TXT]</a> */ /* > \endhtmlonly */ /* Definition: */ /* =========== */ /* SUBROUTINE CHB2ST_KERNELS( UPLO, WANTZ, TTYPE, */ /* ST, ED, SWEEP, N, NB, IB, */ /* A, LDA, V, TAU, LDVT, WORK) */ /* IMPLICIT NONE */ /* CHARACTER UPLO */ /* LOGICAL WANTZ */ /* INTEGER TTYPE, ST, ED, SWEEP, N, NB, IB, LDA, LDVT */ /* COMPLEX A( LDA, * ), V( * ), */ /* TAU( * ), WORK( * ) */ /* > \par Purpose: */ /* ============= */ /* > */ /* > \verbatim */ /* > */ /* > CHB2ST_KERNELS is an internal routine used by the CHETRD_HB2ST */ /* > subroutine. */ /* > \endverbatim */ /* Arguments: */ /* ========== */ /* > \param[in] UPLO */ /* > \verbatim */ /* > UPLO is CHARACTER*1 */ /* > \endverbatim */ /* > */ /* > \param[in] WANTZ */ /* > \verbatim */ /* > WANTZ is LOGICAL which indicate if Eigenvalue are requested or both */ /* > Eigenvalue/Eigenvectors. */ /* > \endverbatim */ /* > */ /* > \param[in] TTYPE */ /* > \verbatim */ /* > TTYPE is INTEGER */ /* > \endverbatim */ /* > */ /* > \param[in] ST */ /* > \verbatim */ /* > ST is INTEGER */ /* > internal parameter for indices. */ /* > \endverbatim */ /* > */ /* > \param[in] ED */ /* > \verbatim */ /* > ED is INTEGER */ /* > internal parameter for indices. */ /* > \endverbatim */ /* > */ /* > \param[in] SWEEP */ /* > \verbatim */ /* > SWEEP is INTEGER */ /* > internal parameter for indices. */ /* > \endverbatim */ /* > */ /* > \param[in] N */ /* > \verbatim */ /* > N is INTEGER. The order of the matrix A. */ /* > \endverbatim */ /* > */ /* > \param[in] NB */ /* > \verbatim */ /* > NB is INTEGER. The size of the band. */ /* > \endverbatim */ /* > */ /* > \param[in] IB */ /* > \verbatim */ /* > IB is INTEGER. */ /* > \endverbatim */ /* > */ /* > \param[in, out] A */ /* > \verbatim */ /* > A is COMPLEX array. A pointer to the matrix A. */ /* > \endverbatim */ /* > */ /* > \param[in] LDA */ /* > \verbatim */ /* > LDA is INTEGER. The leading dimension of the matrix A. */ /* > \endverbatim */ /* > */ /* > \param[out] V */ /* > \verbatim */ /* > V is COMPLEX array, dimension 2*n if eigenvalues only are */ /* > requested or to be queried for vectors. */ /* > \endverbatim */ /* > */ /* > \param[out] TAU */ /* > \verbatim */ /* > TAU is COMPLEX array, dimension (2*n). */ /* > The scalar factors of the Householder reflectors are stored */ /* > in this array. */ /* > \endverbatim */ /* > */ /* > \param[in] LDVT */ /* > \verbatim */ /* > LDVT is INTEGER. */ /* > \endverbatim */ /* > */ /* > \param[out] WORK */ /* > \verbatim */ /* > WORK is COMPLEX array. Workspace of size nb. */ /* > \endverbatim */ /* > */ /* > \par Further Details: */ /* ===================== */ /* > */ /* > \verbatim */ /* > */ /* > Implemented by Azzam Haidar. */ /* > */ /* > All details are available on technical report, SC11, SC13 papers. */ /* > */ /* > Azzam Haidar, Hatem Ltaief, and Jack Dongarra. */ /* > Parallel reduction to condensed forms for symmetric eigenvalue problems */ /* > using aggregated fine-grained and memory-aware kernels. In Proceedings */ /* > of 2011 International Conference for High Performance Computing, */ /* > Networking, Storage and Analysis (SC '11), New York, NY, USA, */ /* > Article 8 , 11 pages. */ /* > http://doi.acm.org/10.1145/2063384.2063394 */ /* > */ /* > A. Haidar, J. Kurzak, P. Luszczek, 2013. */ /* > An improved parallel singular value algorithm and its implementation */ /* > for multicore hardware, In Proceedings of 2013 International Conference */ /* > for High Performance Computing, Networking, Storage and Analysis (SC '13). */ /* > Denver, Colorado, USA, 2013. */ /* > Article 90, 12 pages. */ /* > http://doi.acm.org/10.1145/2503210.2503292 */ /* > */ /* > A. Haidar, R. Solca, S. Tomov, T. Schulthess and J. Dongarra. */ /* > A novel hybrid CPU-GPU generalized eigensolver for electronic structure */ /* > calculations based on fine-grained memory aware tasks. */ /* > International Journal of High Performance Computing Applications. */ /* > Volume 28 Issue 2, Pages 196-209, May 2014. */ /* > http://hpc.sagepub.com/content/28/2/196 */ /* > */ /* > \endverbatim */ /* > */ /* ===================================================================== */ /* Subroutine */ int chb2st_kernels_(char *uplo, logical *wantz, integer * ttype, integer *st, integer *ed, integer *sweep, integer *n, integer * nb, integer *ib, complex *a, integer *lda, complex *v, complex *tau, integer *ldvt, complex *work) { /* System generated locals */ integer a_dim1, a_offset, i__1, i__2, i__3; complex q__1; /* Local variables */ complex ctmp; integer dpos, vpos, i__; extern logical lsame_(char *, char *); logical upper; integer j1, j2, lm, ln; extern /* Subroutine */ int clarfg_(integer *, complex *, complex *, integer *, complex *); integer ajeter; extern /* Subroutine */ int clarfx_(char *, integer *, integer *, complex *, complex *, complex *, integer *, complex *), clarfy_( char *, integer *, complex *, integer *, complex *, complex *, integer *, complex *); integer ofdpos, taupos; /* -- LAPACK computational routine (version 3.7.1) -- */ /* -- LAPACK is a software package provided by Univ. of Tennessee, -- */ /* -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- */ /* June 2017 */ /* ===================================================================== */ /* Parameter adjustments */ a_dim1 = *lda; a_offset = 1 + a_dim1 * 1; a -= a_offset; --v; --tau; --work; /* Function Body */ ajeter = *ib + *ldvt; upper = lsame_(uplo, "U"); if (upper) { dpos = (*nb << 1) + 1; ofdpos = *nb << 1; } else { dpos = 1; ofdpos = 2; } /* Upper case */ if (upper) { if (*wantz) { vpos = (*sweep - 1) % 2 * *n + *st; taupos = (*sweep - 1) % 2 * *n + *st; } else { vpos = (*sweep - 1) % 2 * *n + *st; taupos = (*sweep - 1) % 2 * *n + *st; } if (*ttype == 1) { lm = *ed - *st + 1; i__1 = vpos; v[i__1].r = 1.f, v[i__1].i = 0.f; i__1 = lm - 1; for (i__ = 1; i__ <= i__1; ++i__) { i__2 = vpos + i__; r_cnjg(&q__1, &a[ofdpos - i__ + (*st + i__) * a_dim1]); v[i__2].r = q__1.r, v[i__2].i = q__1.i; i__2 = ofdpos - i__ + (*st + i__) * a_dim1; a[i__2].r = 0.f, a[i__2].i = 0.f; /* L10: */ } r_cnjg(&q__1, &a[ofdpos + *st * a_dim1]); ctmp.r = q__1.r, ctmp.i = q__1.i; clarfg_(&lm, &ctmp, &v[vpos + 1], &c__1, &tau[taupos]); i__1 = ofdpos + *st * a_dim1; a[i__1].r = ctmp.r, a[i__1].i = ctmp.i; lm = *ed - *st + 1; r_cnjg(&q__1, &tau[taupos]); i__1 = *lda - 1; clarfy_(uplo, &lm, &v[vpos], &c__1, &q__1, &a[dpos + *st * a_dim1] , &i__1, &work[1]); } if (*ttype == 3) { lm = *ed - *st + 1; r_cnjg(&q__1, &tau[taupos]); i__1 = *lda - 1; clarfy_(uplo, &lm, &v[vpos], &c__1, &q__1, &a[dpos + *st * a_dim1] , &i__1, &work[1]); } if (*ttype == 2) { j1 = *ed + 1; /* Computing MIN */ i__1 = *ed + *nb; j2 = f2cmin(i__1,*n); ln = *ed - *st + 1; lm = j2 - j1 + 1; if (lm > 0) { r_cnjg(&q__1, &tau[taupos]); i__1 = *lda - 1; clarfx_("Left", &ln, &lm, &v[vpos], &q__1, &a[dpos - *nb + j1 * a_dim1], &i__1, &work[1]); if (*wantz) { vpos = (*sweep - 1) % 2 * *n + j1; taupos = (*sweep - 1) % 2 * *n + j1; } else { vpos = (*sweep - 1) % 2 * *n + j1; taupos = (*sweep - 1) % 2 * *n + j1; } i__1 = vpos; v[i__1].r = 1.f, v[i__1].i = 0.f; i__1 = lm - 1; for (i__ = 1; i__ <= i__1; ++i__) { i__2 = vpos + i__; r_cnjg(&q__1, &a[dpos - *nb - i__ + (j1 + i__) * a_dim1]); v[i__2].r = q__1.r, v[i__2].i = q__1.i; i__2 = dpos - *nb - i__ + (j1 + i__) * a_dim1; a[i__2].r = 0.f, a[i__2].i = 0.f; /* L30: */ } r_cnjg(&q__1, &a[dpos - *nb + j1 * a_dim1]); ctmp.r = q__1.r, ctmp.i = q__1.i; clarfg_(&lm, &ctmp, &v[vpos + 1], &c__1, &tau[taupos]); i__1 = dpos - *nb + j1 * a_dim1; a[i__1].r = ctmp.r, a[i__1].i = ctmp.i; i__1 = ln - 1; i__2 = *lda - 1; clarfx_("Right", &i__1, &lm, &v[vpos], &tau[taupos], &a[dpos - *nb + 1 + j1 * a_dim1], &i__2, &work[1]); } } /* Lower case */ } else { if (*wantz) { vpos = (*sweep - 1) % 2 * *n + *st; taupos = (*sweep - 1) % 2 * *n + *st; } else { vpos = (*sweep - 1) % 2 * *n + *st; taupos = (*sweep - 1) % 2 * *n + *st; } if (*ttype == 1) { lm = *ed - *st + 1; i__1 = vpos; v[i__1].r = 1.f, v[i__1].i = 0.f; i__1 = lm - 1; for (i__ = 1; i__ <= i__1; ++i__) { i__2 = vpos + i__; i__3 = ofdpos + i__ + (*st - 1) * a_dim1; v[i__2].r = a[i__3].r, v[i__2].i = a[i__3].i; i__2 = ofdpos + i__ + (*st - 1) * a_dim1; a[i__2].r = 0.f, a[i__2].i = 0.f; /* L20: */ } clarfg_(&lm, &a[ofdpos + (*st - 1) * a_dim1], &v[vpos + 1], &c__1, &tau[taupos]); lm = *ed - *st + 1; r_cnjg(&q__1, &tau[taupos]); i__1 = *lda - 1; clarfy_(uplo, &lm, &v[vpos], &c__1, &q__1, &a[dpos + *st * a_dim1] , &i__1, &work[1]); } if (*ttype == 3) { lm = *ed - *st + 1; r_cnjg(&q__1, &tau[taupos]); i__1 = *lda - 1; clarfy_(uplo, &lm, &v[vpos], &c__1, &q__1, &a[dpos + *st * a_dim1] , &i__1, &work[1]); } if (*ttype == 2) { j1 = *ed + 1; /* Computing MIN */ i__1 = *ed + *nb; j2 = f2cmin(i__1,*n); ln = *ed - *st + 1; lm = j2 - j1 + 1; if (lm > 0) { i__1 = *lda - 1; clarfx_("Right", &lm, &ln, &v[vpos], &tau[taupos], &a[dpos + * nb + *st * a_dim1], &i__1, &work[1]); if (*wantz) { vpos = (*sweep - 1) % 2 * *n + j1; taupos = (*sweep - 1) % 2 * *n + j1; } else { vpos = (*sweep - 1) % 2 * *n + j1; taupos = (*sweep - 1) % 2 * *n + j1; } i__1 = vpos; v[i__1].r = 1.f, v[i__1].i = 0.f; i__1 = lm - 1; for (i__ = 1; i__ <= i__1; ++i__) { i__2 = vpos + i__; i__3 = dpos + *nb + i__ + *st * a_dim1; v[i__2].r = a[i__3].r, v[i__2].i = a[i__3].i; i__2 = dpos + *nb + i__ + *st * a_dim1; a[i__2].r = 0.f, a[i__2].i = 0.f; /* L40: */ } clarfg_(&lm, &a[dpos + *nb + *st * a_dim1], &v[vpos + 1], & c__1, &tau[taupos]); i__1 = ln - 1; r_cnjg(&q__1, &tau[taupos]); i__2 = *lda - 1; clarfx_("Left", &lm, &i__1, &v[vpos], &q__1, &a[dpos + *nb - 1 + (*st + 1) * a_dim1], &i__2, &work[1]); } } } return 0; /* END OF CHB2ST_KERNELS */ } /* chb2st_kernels__ */
the_stack_data/122637.c
#include <stdio.h> #include <math.h> void model_(int *CurSet, int *NoOfParams, int *NoOfDerived, int *TotalDataValues, int *MaxNoOfDataValues, int *NoOfDataCols, int *NoOfAbscissaCols, int *NoOfModelVectors, double Params[], double Derived[], double Abscissa[], double Signal[]){ int CurEntry, tindex, cindex; double R, K2, k2a, dt, DVR; R = Params[0]; K2 = Params[1]; k2a = Params[2]; DVR = K2/k2a; Derived[0] = DVR; //K2 = (K2sum + K2diff)/2; //k2a = (K2sum - K2diff)/2; for (CurEntry = 0; CurEntry < *TotalDataValues; CurEntry++) { tindex = 2*CurEntry; cindex = 2*CurEntry + 1; if ( CurEntry < 1 ){ dt = Abscissa[tindex]; Signal[CurEntry] = R*(Abscissa[cindex]); } else { dt = Abscissa[tindex] - Abscissa[tindex-2]; Signal[CurEntry] = Signal[CurEntry-1] + R*(Abscissa[cindex] - Abscissa[cindex-2]) + K2*dt*Abscissa[cindex-2]-dt*Signal[CurEntry-1]*k2a; } } return; }
the_stack_data/159514261.c
// Create a doubly linked list. // Delete 3 elements from the end of the linked list. Display the elements of the resulting doubly linked list in reverse order. // Sample Input/Output // Input // 84 19 32 45 25 39 -999 // Output // 32 19 84 // Author: Kurian Benoy //Done on: 23rd September, 2021 #include<stdio.h> #include<stdlib.h> struct Node { int data; struct Node *prev; struct Node *next; }; void deleteLast(struct Node **ptr) { struct Node * temp = (struct Node *)malloc(sizeof(struct Node)); if(ptr == NULL){ printf("Underflow"); } else { while((*ptr)->next != NULL) { temp = ptr; *ptr = (*ptr)->next; } if((*ptr)->next == NULL) { *ptr = (*ptr)->prev; (*ptr)->next = NULL; // free(*temp); } } } void display(struct Node *temp) { struct Node * last; while(temp != NULL) { // printf("%d ", temp->data); last = temp; temp = temp->next; } printf("\n"); while(last != NULL) { printf("%d ", last->data); last = last->prev; } } int main() { struct Node * head = NULL, *ptr, *prevptr; int data, flag=0; int element1, element2, element3; scanf("%d", &data); if(data==-999){ printf("Underflow"); flag = 1; } while(data != -999) { ptr = (struct Node *)malloc(sizeof(struct Node)); ptr->data = data; if(head == NULL) { head = ptr; head->prev = NULL; } else { prevptr->next = ptr; ptr->prev = prevptr; } prevptr = ptr; scanf("%d", &data); } deleteLast(&head); deleteLast(&head); deleteLast(&head); display(head); }
the_stack_data/6386757.c
#include <stdio.h> #include <wchar.h> #include <locale.h> #include <stdint.h> #include <inttypes.h> extern uint64_t scheme_entry(); #define int_tag 0b00 #define int_bitmask 0b00000011 #define boolean_tag 0b0011111 #define boolean_mask 0b1111111 #define char_tag 0b00001111 #define char_mask 0b11111111 #define empty_list 0b00101111 #define pair_tag 0b00000001 #define pair_mask 0b00000111 int printPrimitive(uint64_t result) { if ((result & int_bitmask) == int_tag) { result = result >> 2; printf("%d", result); return 0; } else if ((result & boolean_mask) == boolean_tag) { result = result >> 7; if (result == 1) { printf("true"); return 0; } printf("false"); return 0; } else if (result == empty_list) { printf("()"); return 0; } else if ((result & char_mask) == char_tag) { result = result >> 8; setlocale(LC_CTYPE, ""); wchar_t test = result; wprintf(L"#\\%lc", test); return 0; } return 1; } int printHeapValue(uint64_t result) { if ((result & pair_mask) == pair_tag) { int64_t *car_addr = (uint64_t *)(result - 1); int64_t *cdr_addr = (uint64_t *)(result + 7); printf("("); if (printHeapValue(*car_addr)) { printf("Unknown value type %d", result); return 1; } printf(" "); printHeapValue(*cdr_addr); // Need to recurse here too printf(")"); } else { if (printPrimitive(result) != 0) { printf("Unknown value type %d", result); return 1; } } return 0; } int main(void) { uint64_t result = scheme_entry(); return printHeapValue(result); }
the_stack_data/632070.c
#include <stdlib.h> #include <stdio.h> #include <unistd.h> int main(void) { char *tty; tty = ttyname(STDIN_FILENO); if (tty == NULL) { perror("tty"); return (EXIT_FAILURE); } puts(tty); return (EXIT_SUCCESS); }
the_stack_data/13604.c
/* APPLE LOCAL file radar 5155743, mainline candidate */ /* { dg-do run } */ /* PR target/28197 */ #include <setjmp.h> jmp_buf env; void f (int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8) { longjmp (env, 1); } int main() { if (setjmp (env) == 0) { void *p = __builtin_alloca (4); f (1,2,3,4,5,6,7,8); } return 0; }
the_stack_data/34142.c
int foo() { return 0; } int bar(char* str) { return 0; }
the_stack_data/59513335.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <CL/cl.h> unsigned char *read_buffer(char *file_name, size_t *size_ptr) { FILE *f; unsigned char *buf; size_t size; /* Open file */ f = fopen(file_name, "rb"); if (!f) return NULL; /* Obtain file size */ fseek(f, 0, SEEK_END); size = ftell(f); fseek(f, 0, SEEK_SET); /* Allocate and read buffer */ buf = malloc(size + 1); fread(buf, 1, size, f); buf[size] = '\0'; /* Return size of buffer */ if (size_ptr) *size_ptr = size; /* Return buffer */ return buf; } void write_buffer(char *file_name, const char *buffer, size_t buffer_size) { FILE *f; /* Open file */ f = fopen(file_name, "w+"); /* Write buffer */ if(buffer) fwrite(buffer, 1, buffer_size, f); /* Close file */ fclose(f); } int main(int argc, char const *argv[]) { /* Get platform */ cl_platform_id platform; cl_uint num_platforms; cl_int ret = clGetPlatformIDs(1, &platform, &num_platforms); if (ret != CL_SUCCESS) { printf("error: call to 'clGetPlatformIDs' failed\n"); exit(1); } printf("Number of platforms: %d\n", num_platforms); printf("platform=%p\n", platform); /* Get platform name */ char platform_name[100]; ret = clGetPlatformInfo(platform, CL_PLATFORM_NAME, sizeof(platform_name), platform_name, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clGetPlatformInfo' failed\n"); exit(1); } printf("platform.name='%s'\n\n", platform_name); /* Get device */ cl_device_id device; cl_uint num_devices; ret = clGetDeviceIDs(platform, CL_DEVICE_TYPE_GPU, 1, &device, &num_devices); if (ret != CL_SUCCESS) { printf("error: call to 'clGetDeviceIDs' failed\n"); exit(1); } printf("Number of devices: %d\n", num_devices); printf("device=%p\n", device); /* Get device name */ char device_name[100]; ret = clGetDeviceInfo(device, CL_DEVICE_NAME, sizeof(device_name), device_name, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clGetDeviceInfo' failed\n"); exit(1); } printf("device.name='%s'\n", device_name); printf("\n"); /* Create a Context Object */ cl_context context; context = clCreateContext(NULL, 1, &device, NULL, NULL, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateContext' failed\n"); exit(1); } printf("context=%p\n", context); /* Create a Command Queue Object*/ cl_command_queue command_queue; command_queue = clCreateCommandQueue(context, device, 0, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateCommandQueue' failed\n"); exit(1); } printf("command_queue=%p\n", command_queue); printf("\n"); /* Program source */ unsigned char *source_code; size_t source_length; /* Read program from 'max_ushort16ushort16.cl' */ source_code = read_buffer("max_ushort16ushort16.cl", &source_length); /* Create a program */ cl_program program; program = clCreateProgramWithSource(context, 1, (const char **)&source_code, &source_length, &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateProgramWithSource' failed\n"); exit(1); } printf("program=%p\n", program); /* Build program */ ret = clBuildProgram(program, 1, &device, NULL, NULL, NULL); if (ret != CL_SUCCESS ) { size_t size; char *log; /* Get log size */ clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,0, NULL, &size); /* Allocate log and print */ log = malloc(size); clGetProgramBuildInfo(program, device, CL_PROGRAM_BUILD_LOG,size, log, NULL); printf("error: call to 'clBuildProgram' failed:\n%s\n", log); /* Free log and exit */ free(log); exit(1); } printf("program built\n"); printf("\n"); /* Create a Kernel Object */ cl_kernel kernel; kernel = clCreateKernel(program, "max_ushort16ushort16", &ret); if (ret != CL_SUCCESS) { printf("error: call to 'clCreateKernel' failed\n"); exit(1); } /* Create and allocate host buffers */ size_t num_elem = 10; /* Create and init host side src buffer 0 */ cl_ushort16 *src_0_host_buffer; src_0_host_buffer = malloc(num_elem * sizeof(cl_ushort16)); for (int i = 0; i < num_elem; i++) src_0_host_buffer[i] = (cl_ushort16){{2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2}}; /* Create and init device side src buffer 0 */ cl_mem src_0_device_buffer; src_0_device_buffer = clCreateBuffer(context, CL_MEM_READ_ONLY, num_elem * sizeof(cl_ushort16), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create source buffer\n"); exit(1); } ret = clEnqueueWriteBuffer(command_queue, src_0_device_buffer, CL_TRUE, 0, num_elem * sizeof(cl_ushort16), src_0_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueWriteBuffer' failed\n"); exit(1); } /* Create and init host side src buffer 1 */ cl_ushort16 *src_1_host_buffer; src_1_host_buffer = malloc(num_elem * sizeof(cl_ushort16)); for (int i = 0; i < num_elem; i++) src_1_host_buffer[i] = (cl_ushort16){{2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2}}; /* Create and init device side src buffer 1 */ cl_mem src_1_device_buffer; src_1_device_buffer = clCreateBuffer(context, CL_MEM_READ_ONLY, num_elem * sizeof(cl_ushort16), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create source buffer\n"); exit(1); } ret = clEnqueueWriteBuffer(command_queue, src_1_device_buffer, CL_TRUE, 0, num_elem * sizeof(cl_ushort16), src_1_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueWriteBuffer' failed\n"); exit(1); } /* Create host dst buffer */ cl_ushort16 *dst_host_buffer; dst_host_buffer = malloc(num_elem * sizeof(cl_ushort16)); memset((void *)dst_host_buffer, 1, num_elem * sizeof(cl_ushort16)); /* Create device dst buffer */ cl_mem dst_device_buffer; dst_device_buffer = clCreateBuffer(context, CL_MEM_WRITE_ONLY, num_elem *sizeof(cl_ushort16), NULL, &ret); if (ret != CL_SUCCESS) { printf("error: could not create dst buffer\n"); exit(1); } /* Set kernel arguments */ ret = CL_SUCCESS; ret |= clSetKernelArg(kernel, 0, sizeof(cl_mem), &src_0_device_buffer); ret |= clSetKernelArg(kernel, 1, sizeof(cl_mem), &src_1_device_buffer); ret |= clSetKernelArg(kernel, 2, sizeof(cl_mem), &dst_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clSetKernelArg' failed\n"); exit(1); } /* Launch the kernel */ size_t global_work_size = num_elem; size_t local_work_size = num_elem; ret = clEnqueueNDRangeKernel(command_queue, kernel, 1, NULL, &global_work_size, &local_work_size, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueNDRangeKernel' failed\n"); exit(1); } /* Wait for it to finish */ clFinish(command_queue); /* Read results from GPU */ ret = clEnqueueReadBuffer(command_queue, dst_device_buffer, CL_TRUE,0, num_elem * sizeof(cl_ushort16), dst_host_buffer, 0, NULL, NULL); if (ret != CL_SUCCESS) { printf("error: call to 'clEnqueueReadBuffer' failed\n"); exit(1); } /* Dump dst buffer to file */ char dump_file[100]; sprintf((char *)&dump_file, "%s.result", argv[0]); write_buffer(dump_file, (const char *)dst_host_buffer, num_elem * sizeof(cl_ushort16)); printf("Result dumped to %s\n", dump_file); /* Free host dst buffer */ free(dst_host_buffer); /* Free device dst buffer */ ret = clReleaseMemObject(dst_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Free host side src buffer 0 */ free(src_0_host_buffer); /* Free device side src buffer 0 */ ret = clReleaseMemObject(src_0_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Free host side src buffer 1 */ free(src_1_host_buffer); /* Free device side src buffer 1 */ ret = clReleaseMemObject(src_1_device_buffer); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseMemObject' failed\n"); exit(1); } /* Release kernel */ ret = clReleaseKernel(kernel); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseKernel' failed\n"); exit(1); } /* Release program */ ret = clReleaseProgram(program); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseProgram' failed\n"); exit(1); } /* Release command queue */ ret = clReleaseCommandQueue(command_queue); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseCommandQueue' failed\n"); exit(1); } /* Release context */ ret = clReleaseContext(context); if (ret != CL_SUCCESS) { printf("error: call to 'clReleaseContext' failed\n"); exit(1); } return 0; }
the_stack_data/94916.c
/* Write a function setbits(s,p,n,y) that returns x with the n bits that begin at position p set to the rightmost n bits of y, leaving the other bits unchanged. */ #include <stdio.h> int setbits(int x, int p, int n, int y); int main(void) { int x, p, n, y; printf("Enter x: "); scanf("%d", &x); printf("Enter y: "); scanf("%d", &y); printf("Enter position p: "); scanf("%d", &p); printf("Enter number of bits n: "); scanf("%d", &n); printf("The processed number is: %d\n", setbits(x, p, n, y)); return 0; } int setbits(int x, int p, int n, int y) { y = y >> (p-1); // move the bits starting at pos p to the end y = y & ~(~0 << n); // null all the bits from a pos higher than n x = x & (~0 << n); // null the last n bits return (x | y); }
the_stack_data/64201137.c
#include <stdio.h> #include <stdlib.h> #include <locale.h> #include <math.h> int main() { setlocale(LC_ALL, ""); int a, i, q; double g = 0, v = 1, r; scanf("%d", &q); while (q) { scanf("%d", &a); for (i = 1; i <= a; i++) { v = v * 2; } //printf("%d\n", v); //v = 0; g = v / 12; g = g / 1000; r = floor(g); printf("%.0lf kg\n", r); g = 0, v = 1; q = q - 1; } return 0; }
the_stack_data/132952054.c
#include<stdio.h> #include<stdlib.h> struct node{ int data; struct node *link; }; struct node *p; void add(struct node **q,int num){ struct node *temp,*r; temp = (struct node *)malloc(sizeof(struct node)); temp->data = num; temp->link = *q; *q = temp; display(p); } void display(struct node *q){ while(q != NULL){ printf("%d ",q->data); q = q->link; } printf("\n\n"); } int main(){ p = NULL; add(&p,56); add(&p,67); add(&p,88); return 0; }
the_stack_data/156392894.c
#include<stdio.h> #include<stdlib.h> typedef struct node { int info; struct node *next; }node; node *front=NULL,*rear=NULL,*temp; void create_end() { node *newnode; newnode=(struct node*)malloc(sizeof(struct node)); printf("\nEnter the value of the node : "); scanf("%d",&newnode->info); newnode->next=NULL; if(rear==NULL) front=rear=newnode; else { rear->next=newnode; rear=newnode; } rear->next=front; } void create_start() { node *newnode; newnode=(struct node*)malloc(sizeof(struct node)); printf("\nEnter the value of the node : "); scanf("%d",&newnode->info); if(front==NULL) { front=rear=newnode; } else { rear->next=newnode; newnode->next=front; front=newnode; } } void delete_start() { temp=front; if(front==NULL) printf("\nUnderflow!!"); else { if(front==rear) printf("\n%d",front->info); else { printf("\n%d",front->info); front=front->next; rear->next=front; } temp->next=NULL; free(temp); } } void delete_end() { if(front==NULL) printf("Underflow!!"); else { temp=front->next; while(temp->next!=rear) temp=temp->next; rear=temp; temp=temp->next; printf("\n%d",temp->info); rear->next=front; free(temp); } } void display() { temp=front; if(front==NULL) printf("\nEmpty!!"); else { printf("\n"); do { printf("%d ",temp->info); temp=temp->next; }while(temp!=front); } } int main() { int ch; do { printf("\n1: Create a element at the start: "); printf("\n2: Create a element at the end: "); printf("\n3: Delete a element at the start: "); printf("\n4: Delete a element at the end: "); printf("\n5: Display all elements : "); printf("\n6: Quit"); printf("\nEnter your choice : "); scanf("%d",&ch); switch(ch) { case 1: create_start(); break; case 2: create_end(); break; case 3: delete_start(); break; case 4: delete_end(); break; case 5: display(); break; case 6: break; default: printf("\nWrong Choice!!"); } }while(ch!=6); return 0; }
the_stack_data/87636531.c
struct sk_buff { int valuable_information; }; struct foo { int x; }; struct ture { struct sk_buff *skb; }; struct wrap1 { struct ture *a; }; struct wrap2 { struct foo *c; struct wrap1 *b; }; struct wrap3 { struct foo *c; }; struct sk_buff *skb; struct sk_buff **ptr; struct ture *x; struct ture xx; struct wrap1 *u; struct wrap2 *y; struct wrap3 *z; void kfree(void *data); void func (void) { kfree(skb); kfree(x->skb); kfree(xx.skb); kfree(y->c); kfree(u->a->skb); kfree(u->a); kfree(y->b->a->skb); kfree(z->c); kfree(ptr); } /* * check-name: kfree_skb() test * check-command: smatch -p=kernel sm_skb.c * * check-output-start sm_skb.c:34 func() error: use kfree_skb() here instead of kfree(skb) sm_skb.c:35 func() error: use kfree_skb() here instead of kfree(x->skb) sm_skb.c:36 func() error: use kfree_skb() here instead of kfree(xx.skb) sm_skb.c:38 func() error: use kfree_skb() here instead of kfree(u->a->skb) sm_skb.c:40 func() error: use kfree_skb() here instead of kfree(y->b->a->skb) * check-output-end */
the_stack_data/86076298.c
/*numPass=2, numTotal=6 Verdict:WRONG_ANSWER, Visibility:1, Input:"1 0 0 1", ExpOutput:"(0.000,0.000) ", Output:"(0.000,-0.000)" Verdict:ACCEPTED, Visibility:1, Input:"1 0 1 0", ExpOutput:"INF ", Output:"INF" Verdict:WRONG_ANSWER, Visibility:1, Input:"100 100 -1 -101", ExpOutput:"(-2.010,102.010) ", Output:"(-2.010,-102.010)" Verdict:WRONG_ANSWER, Visibility:0, Input:"1000 000 1 -1", ExpOutput:"(1.000,0.000) ", Output:"(1.000,-0.000)" Verdict:WRONG_ANSWER, Visibility:0, Input:"-1 -2 -3 -4", ExpOutput:"(3.000,-8.000) ", Output:"(3.000,8.000)" Verdict:ACCEPTED, Visibility:0, Input:"0 0 000 0000", ExpOutput:"INF ", Output:"INF" */ #include<stdio.h> int main(){ float a1,b1,a2,b2; scanf("%f %f %f %f",&a1,&b1,&a2,&b2); float x,y; if(a1*b2==b1*a2) { printf("INF"); } else { y=((a1-a2)*(b1*b2))/((a1*b2)-(b1*a2)); x=((b1-b2)*(a1*a2))/((a1*b2)-(a2*b1)); printf("(%.3f,%.3f)",-x, -y); } return 0; }
the_stack_data/839575.c
#include <stdio.h> int main() { volatile double x = 0; while(x < 10.0){ x += 0.2; } printf("%.20g\n", x); }
the_stack_data/24018.c
/* * OpenVPN -- An application to securely tunnel IP networks * over a single UDP port, with support for SSL/TLS-based * session authentication and key exchange, * packet encryption, packet authentication, and * packet compression. * * Copyright (C) 2016-2017 Fox Crypto B.V. <[email protected]> * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifdef HAVE_CONFIG_H #include "config.h" #elif defined(_MSC_VER) #include "config-msvc.h" #endif #ifdef ENABLE_CRYPTO #include "syshead.h" #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <stdarg.h> #include <string.h> #include <setjmp.h> #include <cmocka.h> #include "tls_crypt.h" #include "mock_msg.h" #define TESTBUF_SIZE 128 const char plaintext_short[1]; struct test_context { struct crypto_options co; struct key_type kt; struct buffer source; struct buffer ciphertext; struct buffer unwrapped; }; static int setup(void **state) { struct test_context *ctx = calloc(1, sizeof(*ctx)); *state = ctx; ctx->kt.cipher = cipher_kt_get("AES-256-CTR"); ctx->kt.digest = md_kt_get("SHA256"); if (!ctx->kt.cipher) { printf("No AES-256-CTR support, skipping test.\n"); return 0; } if (!ctx->kt.digest) { printf("No HMAC-SHA256 support, skipping test.\n"); return 0; } ctx->kt.cipher_length = cipher_kt_key_size(ctx->kt.cipher); ctx->kt.hmac_length = md_kt_size(ctx->kt.digest); struct key key = { 0 }; init_key_ctx(&ctx->co.key_ctx_bi.encrypt, &key, &ctx->kt, true, "TEST"); init_key_ctx(&ctx->co.key_ctx_bi.decrypt, &key, &ctx->kt, false, "TEST"); packet_id_init(&ctx->co.packet_id, 0, 0, "test", 0); ctx->source = alloc_buf(TESTBUF_SIZE); ctx->ciphertext = alloc_buf(TESTBUF_SIZE); ctx->unwrapped = alloc_buf(TESTBUF_SIZE); /* Write test plaintext */ buf_write(&ctx->source, plaintext_short, sizeof(plaintext_short)); /* Write dummy opcode and session id */ buf_write(&ctx->ciphertext, "012345678", 1 + 8); return 0; } static int teardown(void **state) { struct test_context *ctx = (struct test_context *) *state; free_buf(&ctx->source); free_buf(&ctx->ciphertext); free_buf(&ctx->unwrapped); free_key_ctx_bi(&ctx->co.key_ctx_bi); free(ctx); return 0; } static void skip_if_tls_crypt_not_supported(struct test_context *ctx) { if (!ctx->kt.cipher || !ctx->kt.digest) { skip(); } } /** * Check that short messages are successfully wrapped-and-unwrapped. */ static void tls_crypt_loopback(void **state) { struct test_context *ctx = (struct test_context *) *state; skip_if_tls_crypt_not_supported(ctx); assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co)); assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext)); assert_true(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co)); assert_int_equal(BLEN(&ctx->source), BLEN(&ctx->unwrapped)); assert_memory_equal(BPTR(&ctx->source), BPTR(&ctx->unwrapped), BLEN(&ctx->source)); } /** * Check that zero-byte messages are successfully wrapped-and-unwrapped. */ static void tls_crypt_loopback_zero_len(void **state) { struct test_context *ctx = (struct test_context *) *state; skip_if_tls_crypt_not_supported(ctx); buf_clear(&ctx->source); assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co)); assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext)); assert_true(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co)); assert_int_equal(BLEN(&ctx->source), BLEN(&ctx->unwrapped)); assert_memory_equal(BPTR(&ctx->source), BPTR(&ctx->unwrapped), BLEN(&ctx->source)); } /** * Check that max-length messages are successfully wrapped-and-unwrapped. */ static void tls_crypt_loopback_max_len(void **state) { struct test_context *ctx = (struct test_context *) *state; skip_if_tls_crypt_not_supported(ctx); buf_clear(&ctx->source); assert_non_null(buf_write_alloc(&ctx->source, TESTBUF_SIZE - BLEN(&ctx->ciphertext) - tls_crypt_buf_overhead())); assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co)); assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext)); assert_true(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co)); assert_int_equal(BLEN(&ctx->source), BLEN(&ctx->unwrapped)); assert_memory_equal(BPTR(&ctx->source), BPTR(&ctx->unwrapped), BLEN(&ctx->source)); } /** * Check that too-long messages are gracefully rejected. */ static void tls_crypt_fail_msg_too_long(void **state) { struct test_context *ctx = (struct test_context *) *state; skip_if_tls_crypt_not_supported(ctx); buf_clear(&ctx->source); assert_non_null(buf_write_alloc(&ctx->source, TESTBUF_SIZE - BLEN(&ctx->ciphertext) - tls_crypt_buf_overhead() + 1)); assert_false(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co)); } /** * Check that packets that were wrapped (or unwrapped) with a different key * are not accepted. */ static void tls_crypt_fail_invalid_key(void **state) { struct test_context *ctx = (struct test_context *) *state; skip_if_tls_crypt_not_supported(ctx); /* Change decrypt key */ struct key key = { { 1 } }; free_key_ctx(&ctx->co.key_ctx_bi.decrypt); init_key_ctx(&ctx->co.key_ctx_bi.decrypt, &key, &ctx->kt, false, "TEST"); assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co)); assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext)); assert_false(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co)); } /** * Check that replayed packets are not accepted. */ static void tls_crypt_fail_replay(void **state) { struct test_context *ctx = (struct test_context *) *state; skip_if_tls_crypt_not_supported(ctx); assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co)); assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext)); struct buffer tmp = ctx->ciphertext; assert_true(tls_crypt_unwrap(&tmp, &ctx->unwrapped, &ctx->co)); buf_clear(&ctx->unwrapped); assert_false(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co)); } /** * Check that packet replays are accepted when CO_IGNORE_PACKET_ID is set. This * is used for the first control channel packet that arrives, because we don't * know the packet ID yet. */ static void tls_crypt_ignore_replay(void **state) { struct test_context *ctx = (struct test_context *) *state; skip_if_tls_crypt_not_supported(ctx); ctx->co.flags |= CO_IGNORE_PACKET_ID; assert_true(tls_crypt_wrap(&ctx->source, &ctx->ciphertext, &ctx->co)); assert_true(BLEN(&ctx->source) < BLEN(&ctx->ciphertext)); struct buffer tmp = ctx->ciphertext; assert_true(tls_crypt_unwrap(&tmp, &ctx->unwrapped, &ctx->co)); buf_clear(&ctx->unwrapped); assert_true(tls_crypt_unwrap(&ctx->ciphertext, &ctx->unwrapped, &ctx->co)); } int main(void) { const struct CMUnitTest tests[] = { cmocka_unit_test_setup_teardown(tls_crypt_loopback, setup, teardown), cmocka_unit_test_setup_teardown(tls_crypt_loopback_zero_len, setup, teardown), cmocka_unit_test_setup_teardown(tls_crypt_loopback_max_len, setup, teardown), cmocka_unit_test_setup_teardown(tls_crypt_fail_msg_too_long, setup, teardown), cmocka_unit_test_setup_teardown(tls_crypt_fail_invalid_key, setup, teardown), cmocka_unit_test_setup_teardown(tls_crypt_fail_replay, setup, teardown), cmocka_unit_test_setup_teardown(tls_crypt_ignore_replay, setup, teardown), }; #if defined(ENABLE_CRYPTO_OPENSSL) OpenSSL_add_all_algorithms(); #endif int ret = cmocka_run_group_tests_name("tls-crypt tests", tests, NULL, NULL); #if defined(ENABLE_CRYPTO_OPENSSL) EVP_cleanup(); #endif return ret; } #endif /* ENABLE_CRYPTO */
the_stack_data/930500.c
#include <stdio.h> #include <math.h> int main() { // User Input long input; // Vektor Array für Primfaktoren long vektor[1024]; // User Eingabe scanf("%ld", &input); // IF Userinput = 1 if(input == 1) { printf("%ld is Ungueltig", input); return 0; } // Prim Faktor pro durchlauf long t = 2; // Array Index Counter int vektor_count = 0; // Berechnung Primfaktoren while (input % 2 == 0) { // Speichern des Primfaktors im Array vektor[vektor_count] = 2; // Array Index erhöhen vektor_count++; input = input /= 2; } for (int i = 3; i <= sqrt(input); i += 2) { while (input % i == 0) { // Speichern des Primfaktors im Array vektor[vektor_count] = i; // Array Index erhöhen vektor_count++; input = input /= i; } } if (input > 2) { // Speichern des Primfaktors im Array vektor[vektor_count] = input; // Array Index erhöhen vektor_count++; } // Ausgabe der Werte des Arrays for(int i = 0; i<vektor_count; i++) { if(vektor[i] > 0) { printf("%ld \n", vektor[i]); } } }
the_stack_data/25390.c
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef struct _member_info member_info; struct _member_info { int age; char name[32]; char phone[32]; char city[32]; char street[128]; char detail[128]; }; int total_member; member_info *init_member_info(void) { member_info *tmp = (member_info *)malloc(sizeof(member_info) * 64); } void input_info(member_info *mi) { bool run = true; int num; while (run) { printf("회원 정보를 계속 입력하시겠습니까 ? 1(yes), 0(no)\n"); scanf("%d", &num); switch (num) { case 1: printf("회원 정보를 입력해주세요.\n이름: "); scanf("%s", mi[total_member].name); printf("나이: "); scanf("%d", &mi[total_member].age); printf("전화 번호: "); scanf("%s", mi[total_member].phone); printf("도시: "); scanf("%s", mi[total_member].city); printf("도로명: "); scanf("%s", mi[total_member].street); printf("상세 주소: "); scanf("%s", mi[total_member].detail); total_member++; break; case 0: printf("회원 입력을 종료합니다.\n"); run = false; break; } } } void print_member_info(member_info *mi) { int i; if (mi->name) { for (i = 0; i < total_member; i++) { printf("이름: %s, 나이: %d, 전화번호: %s\n거주지: %s시 %s %s\n", mi[i].name, mi[i].age, mi[i].phone, mi[i].city, mi[i].street, mi[i].detail); } } } int main(void) { member_info *mi; mi = init_member_info(); input_info(mi); print_member_info(mi); free(mi); }
the_stack_data/89509.c
/* Fontname: -gnu-Unifont-Medium-R-Normal-Sans-16-160-75-75-c-80-iso10646-1 Copyright: Copyright (C) 1998-2019 Roman Czyborra, Paul Hardy, Qianqian Fang, Andrew Miller, Johnnie Weaver, David Corbett, et al. License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html> with the GNU Font Embedding Exception. Glyphs: 2446/57086 BBX Build Mode: 0 */ #ifdef U8G2_USE_LARGE_FONTS const uint8_t u8g2_font_unifont_t_korean2[70709] U8G2_FONT_SECTION("u8g2_font_unifont_t_korean2") = "\216\0\4\3\5\5\4\5\6\20\20\0\376\12\376\13\377\1\304\3~\5X \6\0\240G\1!\10A" "\61D\341B\0\42\11\205(F!F\233\0#\16F%D%O.B\262\70\311\23\0$\24G%" "D'\250\42$D$hl(D$EQ\14\0%\31G%DCF$\42ID\210DTXT" "\204HDHD\22\31\11\0&\26G%De&IL\212 \241\210\20\231\10\241\210\30\221\221\0'" "\7\201\60F\201\0(\16\203\355C%\42$\42$oBb\2)\17\203\351C!&$&$/B" "\42B\0*\17\347dD'I\212lf\42\62I\23\3+\14\347dD',\315MX\32\0,\12" "\202\254CA\42B\2\0-\7$(E\201\0.\7B,D\201\0/\16F%D+Q\252\240\250" "\240TQ\0\60\26F%DE&$\42Hf$B\42dF(\42$F\4\0\61\14E)D%" "F$\42(\237\24\62\20F%D\203\42H(*F&(U\224\1\63\22F%D\203\42H(*" "d,JH(\202\2\0\64\23F%D)H&\42$ELDL\204QT\12\0\65\17F%D" "\341*UYT\224P\4\5\0\66\20F%De$(*\252\42H\243\10\12\0\67\15F%D\301" "*QT\242\250L\0\70\20F%D\203\42HQ\4E\220F\21\24\0\71\17F%D\203\42HQ" "DUF!#\0:\10\342lD\201\214\0;\13\42\355C\201L\42B\2\0<\11%)D)&" "W\71=\11\246\244D\301\36\306\0>\12%%D!*\67\71\2\77\20F%D\203\42H(*(" "UlT\10\0@\26F%De$F$B\42b\42D\42D\42Dd\42\214\0A\17F%D" "E&$\213 \241\203 \215\2B\16F%D\241\42H\221E\220F\26\0C\16F%D\203\42H" "U\216\204\42(\0D\16F%D\201$&\42H\337D\220\0E\14F%D\341*UETV\6" "F\14F%D\341*UET\256\0G\17F%D\203\42HU\22\42\65\22\23\1H\14F%D" "!H\243\203 \35\5I\12E)D\241$(\77)J\17G%D\245(,ObBbbf\0" "K\25F%D!H&\42$E\214\220PDLH\232\210\240\0L\11F%D!*\177eM\16" "F%D!Hh\204dBG\32\5N\24F%D!hfF\42D\42D$B$BfQ\0" "O\14F%D\203\42H\77\212\240\0P\15F%D\241\42H\221ET\256\0Q\32g\345C\203$" "(\42(\42(\42(\42(\42(\42B\42BD\204N\0R\22F%D\241\42H\221EH\232\210" "\230\210 \241\0S\16F%D\203\42H\231FB\21\24\0T\12G%D\341&,\177\3U\13F" "%D!H\177\24A\1V\25G%D!JUDLHLHL\212\240\210\250\260\30\0W\16F" "%D!H\27Z\214\220\14\11\5X\22F%D!H(\42$\33!\231\220,\202\204\2Y\21G" "%D!J*\42&$&ETXn\0Z\13F%D\301*Q^E\31[\12\203\361C\201$" "\377d\0\134\16F%D!*,UXTX\252\0]\12\203\345Ca$\377\204\0^\13fdF" "E&$\42(\0_\7'\344C\341\0`\10c\250F!&\1a\17\6%D\203\42(*\302H" "\215\304D\0b\20f%D!*\213\11\31!\215f$&\0c\15\6%D\203\42H*G\21\24" "\0d\16f%D+\213\11\231!\335HL\4e\17\6%D\203\42H\350 *Q\4\5\0f\15" "e%DG$(IIP\236\0g\26f\245C+bB&\42&\42&d&\212\42H(\202\2" "\0h\15f%D!*\213\11\31!=\12i\13e)D%(P(\237\24j\15\245\245C)\241" "P>\22\11\21\1k\24f%D!*\233\210\220\24\61B\21\61!i\42\202\2l\12e)DC" "(\377\244\0m\26\7%DaB\42$D$D$D$D$D$D$\1n\14\6%D!" "bBFH\217\2o\14\6%D\203\42H\217\42(\0p\21F\245C!bBFH\243\31\211\211" "\250(\0q\16F\245CcBfH\67\22\23Q\11r\15\6%D!bBFH*W\0s\15" "\6%D\203\42HL\243\10\12\0t\14E%D%(IIP\256\4u\13\6%D!H\337H" "L\4v\16\6%D!HQDH\336\10\211\0w\25\7%D!J$D$D$D$D$" "D$\205\12\0x\22\6%D!H(\42$FH&$\42H(\0y\17F\245C!HG\21" "!*\242RP\0z\12\6%D\301*(\257\14{\21\244\251CE\42&(&$Q\232\220\230 " "\1|\7\301\261C\341\1}\22\244\251CA(&$&(I\232\240\230\10\21\0~\14g$FC" "F$DF\2\0\177'\20\242\203!\42\277\207\220G \17\61B\21\63\22\21\24\25\22A\21\63\22" "\21\24\65Ba\217@\36\201<D\376\0\0\0\0\134\255 \13\234\256\315\13B\260\254\14\35\262|\12" "\67\263\344\12-\266\30\13Z\270d\13\17\272H\13\277\274\34\14&\275\370\14h\300\265\13]\302\17\13" "\235\304\20\13\354\305\330\14H\307\24\14\210\310I\13o\312\24\13\270\314\304\14/\316\370\13X\321\61\12" "\370\323\71\13@\325\204\14(\377\377\254\0\34\254\355\203\61\66\306$\60$\60$\60\204(&.&," "(*\215Xl\32\0\254\1\31\315\351\203\65\244*,*,*\331H\134\210`p<\314ApN\0" "\254\4\31\315\351\203\65\244*,*,*\331H\134\210`p\242\340\214\17D\0\254\7\32\315\351\203\65" "\244*,*,*\331H\134\210`p<\320Yp\342\23\0\254\10\36\315\351\203\65\244*,*,*" "\331H\134\210`p<\314Ap\324AT\360A\10\0\254\11 \315\351\203\65\244*,*,*\331H" "\134\210`p<@EYTHUHdHU\10\0\254\12#\315\351\203\65\244*,*,*\331H" "\134\210`p<@EYDLHELHTLHE\11\0\254\20\36\315\351\203\65\244*,*," "*\331H\134\210`p<\320YTXTXT\330\11\0\254\21\36\315\351\203\65\244*,*,*\331" "H\134\210`p<PTXT\330YT\330\11\0\254\22!\315\351\203\65\244*,*,*\331H\134" "\210`p<DLPL\242\230\242\230,B*d\2\254\23\34\315\351\203\65\244*,*,*\331H" "\134\210`p<dpR\211\70\241\10\0\254\24!\315\351\203\65\244*,*,*\331H\134\210`p" "<\134HdH`D\272\230\210 \21\231\0\254\25\33\315\351\203\65\244*,*,*\331H\134\210`" "p<\22\263Taa\66\0\254\26\35\315\351\203\65\244*,*,*\331H\134\210`p<\320ip" "\250D\234P\10\0\254\27\35\315\351\203\65\244*,*,*\331H\134\210`p<\134\344elD\240" "\214\10\0\254\31\33\315\351\203\65\244*,*,*\331H\134\210`p<\320Y\360Y\360\11\0\254\32" "\36\315\351\203\65\244*,*,*\331H\134\210`p<\202\3\261\230\300\230\260\3\21\0\254\33\35\315" "\351\203\65\244*,*,*\331H\134\210`p<X\340\201X]T\134\21\0\254\34#\254\355\203\61" "$\60\344$UH\252\220T!D\61!A\61!\61A!\251B\306B\2C\2C\2\254\35\35\313" "\351\203\61\302&\42(&\42(&\42&h$*b,\42\60\42\374 \64\7\254 \313\351\203\61" "\302&\42(&\42(&\42&h$*b,\42\60\42\60\42$\64\323\3\1\254$\42\313\351\203\61" "\302&\42(&\42(&\42&h$*b,\42\60\42\374 \64\346 &\364 \0\254,#\313\351" "\203\61\302&\42(&\42(&\42&h$*b,\42\60\42\36\340(*(*(*\350\0\254-" "#\313\351\203\61\302&\42(&\42(&\42&h$*b,\42\60\42\36 *(*\350(*\350" "\0\254/#\315\351\203\61\42\244&\42,&\42,&\42*h(*\42D,\42\64\42\36\64\70\251" "D\234P\0\254\60)\315\351\203\61\42\244&\42,&\42,&\42*h(*\42D,\42\64\42\36" ".$\62$\60\42]LD\220\210L\0\254\61!\313\351\203\61\302&\42(&\42(&\42&h$" "*b,\42\60\42\36\270*QTT\5\0\254\70\34\254\355\203\61\66\306$\60$\60\204*$.&" ".\206&(*\215Xl\32\0\254\71\31\315\351\203\65\244*,*,j&,(\256\60\70\36\346 " "\70'\0\254<\32\315\351\203\65\244*,*,j&,(\256\60\70\36$\70\343\3\21\0\254@\36" "\315\351\203\65\244*,*,j&,(\256\60\70\36\346 \70\352 *\370 \4\0\254K\34\315\351" "\203\65\244*,*,j&,(\256\60\70\36\62\70\251D\234P\4\0\254M\33\315\351\203\65\244*" ",*,j&,(\256\60\70\36\211Y\252\260\60\33\0\254T\42\254\355\203\61$\60\344$UH\252" "\20\252\220D\61!A\61\64A!\251B\306B\2C\2C\2\254X\37\313\351\203\61\302&\42(&" "\42(f&(\42$\252,\42\60\42\60\42$\64\323\3\1\254\134!\313\351\203\61\302&\42(&\42" "(f&(\42$\252,\42\60\42\374 \64\346 &\364 \0\254p\25\254\355\203\67\366*\237\20\205" "\5\205\305\304\205\4N\306&\254q\27\313\351\203\325*(*(*&h$n\60\64\36\364 \64\3" "\254t\30\313\351\203\325*(*(*&h$n\60\64\36\60\64\351\301\0\254w\30\313\351\203\325*" "(*(*&h$n\60\64\36\340(\64\351\1\254x\33\313\351\203\325*(*(*&h$n" "\60\64\374 \64\346 &\364 \0\254z\35\313\351\203\325*(*(*&h$n\60\64\266\242(" "\42\306\42F*\306\242\0\254\200\34\313\351\203\325*(*(*&h$n\60\64\36\340(*(*" "(*\350\0\254\201\34\313\351\203\325*(*(*&h$n\60\64\36 *(*\350(*\350\0" "\254\203\30\314\351\203\65\242*\217\202f\342\42\4c\343\341bSJ\204\11\5\254\204!\315\351\203\65\244" "*,*,*\321P\134\210`p<\134HdH`D\272\230\210 \21\231\0\254\205\33\313\351\203\325" "*(*(*&h$n\60\64\36\326(,&,\310\2\0\254\206\33\313\351\203\325*(*(*" "&h$n\60\64\36\340\60\64P\42J(\0\254\211\31\313\351\203\325*(*(*&h$n\60" "\64\36\340(\364(\364\0\254\212\34\313\351\203\325*(*(*&h$n\60\64\36\362@(&," "&\350@\0\254\213\33\313\351\203\325*(*(*&h$n\60\64\36$\354@\250*U\11\0\254" "\214&\254\355\203\63\42\62\342&\42*&\42*&\42*b\42(EP\212\230\250\210\220\260\210\271\210" "\310\210\310\210\0\254\220\37\313\351\203\61\302&\42(&\42(&\42&d\42$*b,\42\60\42:" "\64\323\3\1\254\224#\313\351\203\61\302&\42(&\42(&\42&d\42$*b,\42\60\42\374 " "\64\346 &\364 \0\254\234$\313\351\203\61\302&\42(&\42(&\42&d\42$*b,\42\60" "\42\36\340(*(*(*\350\0\254\235$\313\351\203\61\302&\42(&\42(&\42&d\42$*" "b,\42\60\42\36 *(*\350(*\350\0\254\237$\315\351\203\61\42\244&\42,&\42,&\42" "*d\42(*\42D,\42\64\42\36\64\70\251D\234P\0\254\240*\315\351\203\61\42\244&\42,&" "\42,&\42*d\42(*\42D,\42\64\42\36.$\62$\60\42]LD\220\210L\0\254\241\42" "\313\351\203\61\302&\42(&\42(&\42&d\42$*b,\42\60\42\36\270*QTT\5\0\254" "\250\26\254\355\203\67\366*'T\211\302\202bh\342B\2'c\23\254\251\27\313\351\203\325*(*(" "f&,$\252\60\64\36\364 \64\3\254\252\34\313\351\203\325*(*(f&,$\252\60\64\36\256" "\242(*(*(*\0\254\254\27\313\351\203\325*(*(f&,$\252\60\64qh\322\203\1\254" "\257\30\313\351\203\325*(*(f&,$\252\60\64\36\340(\64\351\1\254\260\33\313\351\203\325*(" "*(f&,$\252\60\64\374 \64\346 &\364 \0\254\270\34\313\351\203\325*(*(f&," "$\252\60\64\36\340(*(*(*\350\0\254\271\34\313\351\203\325*(*(f&,$\252\60\64" "\36 *(*\350(*\350\0\254\273\31\314\351\203\65\242*\67Ca\61Q\23\202\261\361p\261)%" "\302\204\2\254\274\42\315\351\203\65\244*,*,f*,(jD\60\70\36.$\62$\60\42]L" "D\220\210L\0\254\275\33\313\351\203\325*(*(f&,$\252\60\64\36\326(,&,\310\2\0" "\254\301\31\313\351\203\325*(*(f&,$\252\60\64\36\340(\364(\364\0\254\304'\254\355\203\63" "\42\62\342&\42*&\42*b\42*&\42(EP\310DLTDHX\304\134DdDdD\0" "\254\310!\313\351\203\61\302&\42(&\42(b\42&(\42$fb,\42\60\42\60\42$\64\323\3" "\1\254\314#\313\351\203\61\302&\42(&\42(b\42&(\42$fb,\42\60\42\374 \64\346 " "&\364 \0\254\325$\313\351\203\61\302&\42(&\42(b\42&(\42$fb,\42\60\42\36 " "*(*\350(*\350\0\254\327$\315\351\203\61\42\244&\42,&\42,b\42*(\42(f\42D" ",\42\64\42\36\64\70\251D\234P\0\254\340\20M%\204\343`\70wAq\301\351\16\14\254\341\24\255" "\345\203\345@\70\303\230\300\260\3{\200\3\341\234\0\254\344\25\255\345\203\345@\70\303\230\300\260\3{\350" "\340\304\7\42\0\254\347\27\255\345\203\345@\70\303\230\300\260\3{\200\3\241\340\304\7\42\0\254\350\31\255" "\345\203\345@\70\303\230\300\260\3{\200\3\341\240\3\241\340\3\21\0\254\352\35\255\345\203\345@\70\303\230" "\300\260\3\363\212\262\210\230\220\212\230\220\250\230\220\212\12\0\254\354\33\255\345\203\345@\70\303\230\300\260\3" "\363\242\270\240\230\242\230\270\210\220\12\231\0\254\357\33\255\345\203\345@\70\303\230\300\260\3\363\232\300\203\210" "\222\231\250\230\220\222\21\0\254\360\33\255\345\203\345@\70\303\230\300\260\3{\200\3\241\270\240\270\240\270\240" "\3\21\0\254\361\33\255\345\203\345@\70\303\230\300\260\3{\200\270\240\270\240\3\241\270\240\3\21\0\254\363" "\27\255\345\203\345@\70\303\230\300\260\3{$\301\261\21\201\62A\0\254\365\27\255\345\203\345@\70\303\230" "\300\260\3{\4uQaQqE\0\254\366\27\255\345\203\345@\70\303\230\300\260\3{\4\246\261\21\201" "\62\61\0\254\374\36\256\345\203\65:\350 \42\66\42\66\42\66\202(&\42.*.*\346@\42:\33" "\0\254\375\34\316\345\203\67\310&\62&\62f.&,$&,\311\301D<\324AtN\0\255\0\35" "\316\345\203\67\310&\62&\62f.&,$&,\311\301D<Pt\326\7\42\0\255\4!\316\345\203" "\67\310&\62&\62f.&,$&,\311\301D<\324At\330AX\364A\10\0\255\6%\316\345" "\203\67\310&\62&\62f.&,$&,\311\301D<HE]DLLEL\252\230\230\212\22\0" "\255\14!\316\345\203\67\310&\62&\62f.&,$&,\311\301D<\330]T\134T\134T\334\11" "\0\255\15!\316\345\203\67\310&\62&\62f.&,$&,\311\301D<XT\134T\334]T\334" "\11\0\255\17\37\316\345\203\67\310&\62&\62f.&,$&,\311\301D<ltZ\211@\241\10" "\0\255\21\35\316\345\203\67\310&\62&\62f.&,$&,\311\301D<*\273\260\354l\0\255\30" "*\256\345\203\65$\64$\342 \42$\60\42$\60\42$\60\202(&\42$(*$(*\344`\42" "$\64$\64$\64$\0\255\34\36\314\345\203\63\42\304\42]D\272\210\271\210D!\21\211R\34H\244" "\7\210\315\366@\0\255 !\314\345\203\63\42\304\42]D\272\210\271\210D!\21\211R\34H\244\207\70" "\210\15:\10\212=\10\255)\37\314\345\203\63\42\304\42]D\272\210\271\210D!\21\211R\34H\244\7" "\211\312\352*\325\1\255,'\316\345\203\63\42\310\42eD\312\210\311\210d!\21\311\202\42B\16\42\322" "C\206\204\206DF$\214\211\210\22\221\11\255- \314\345\203\63\42\304\42]D\272\210\271\210D!\21" "\211R\34H\244\7\267\12\13\12\213\262\0\255\64\32\255\345\203\71\305AL`L`L`LPL\242" "\270\240\270\203\212\340\14\255\65\33\314\345\203\67\304&.&.&.&($&(\354\200\42\36\342 " "\66\7\255\70\34\314\345\203\67\304&.&.&.&($&(\354\200\42\36 \66\333\3\1\255<" " \314\345\203\67\304&.&.&.&($&(\354\200\42\36\342 \66\350 (\366 \0\255D" "\33\314\345\203\67\304&.&.&.&($&(\354\200\42\36\344*_\35\255E\35\314\345\203\67" "\304&.&.&.&($&(\354\200\42\36$*\253\253T\7\255G\37\315\345\203\67\306&\60" "&\60&\60&*$&*,\342`\42\36\62\70\251D\234P\0\255I\37\314\345\203\67\304&.&" ".&.&($&(\354\200\42\36\334*,(,\312\2\0\255P\25M%\204\343`\70W\61!" "Q\61\201\61\201\61Q\7\6\255T\26\255\345\203\345@\70\263\220d!Q\7\366\320\301\211\17D\0\255" "X\32\255\345\203\345@\70\263\220d!Q\7\366\0\7\302A\7B\301\7\42\0\255a\34\255\345\203\345" "@\70\263\220d!Q\7\366\0qAqA\7BqA\7\42\0\255c\30\255\345\203\345@\70\263\220" "d!Q\7\366H\202c#\2e\202\0\255l\17\213\351\203\341@\64\257\17\250B\263\2\255m\23\255" "\345\203\345@\70{\200\3\263\340\300\3\341\234\0\255p\26\255\345\203\345@\70{\350\3\263\340\300\230\300" "\340\340\3\21\0\255s\26\255\345\203\345@\70{\200\3\263\340\300\3\241\340\304\7\42\0\255t\30\255\345" "\203\345@\70{\200\3\263\340\300\3\341\240\3\241\340\3\21\0\255u\32\255\345\203\345@\70{\200\3\263" "\340\270\212\262\250\220\252\220\310\220\252\10\0\255v\35\255\345\203\345@\70{\200\3\263\340\270\212\262\210\230" "\220\212\230\220\250\230\220\212\12\0\255{\33\255\345\203\345@\70{\200\3\263\340\270\232\300\203\210\222\231\250" "\230\220\222\21\0\255|\32\255\345\203\345@\70{\200\3\263\340\300\3\241\270\240\270\240\270\240\3\21\0\255" "}\32\255\345\203\345@\70{\200\3\263\340\300\270\240\270\240\3\241\270\240\3\21\0\255\177\27\255\345\203\345" "@\70{\200\3\263\340x\320\340\330\210@\231 \0\255\201\27\255\345\203\345@\70{\200\3\263\340x\300" "\272\250\260\250\270\42\0\255\202\27\255\345\203\345@\70{\200\3\263\340x@\323\330\210@\231\30\0\255\210" "\36\314\345\203\67\213\3\211\310\210\310\210\310\210\310\210\330\3\212\240\260\240\220\242\260\240\260\0\255\211\31\354" "\345\203\67\205QXPXPX\320\1ET\10Uz\350\203\330\14\255\214\32\354\345\203\67\205QXP" "XPXP\354\1ET\10UNb\323\36\14\255\220\36\354\345\203\67\205QXPXPX\320\1E" "T\10Uz\210\203\330\240\203\240\330\203\0\255\234%\356\345\203\67:\306(\60(\60(\60(\344`\42" ".\204.*\36\62$\64$\62\42aLD\224\210L\0\255\235\35\354\345\203\67\205QXPXPX" "\320\1ET\10Uzp\253\260\240\260(\13\0\255\244(\316\345\203\67\42\66\42\66\42\342@\42eD" "\312\210\224\21)#\322F\34P$\12\213\10\212\241\10\12\213\10\12\213\10\255\267'\355\345\203\63\42\64" "\42\304$\42.$\42.$\42.$\42\342 \42U\4ETPD<dpR\211\70\241\0\255\300" "\36\314\345\203\67\213\3\211\310\210\310\210\310\210\310\210\330\3\212\240\260\240\260\240\260\240\260\0\255\301\27\354" "\345\203\67\205QXPXPX\320\1ET\366\210\16b\63\255\304\32\354\345\203\67\205QXPXP" "XP\354\1ET>\11\14\211\215=\30\255\310\34\354\345\203\67\205QXPXPX\320\1ET\366" "p\7\261A\7A\261\7\1\255\320\30\354\345\203\67\205QXPXPX\320\1ET\366\200W\371\352" "\0\255\321\31\354\345\203\67\205QXPXPX\320\1ET\366\200QY]\245:\255\323\36\355\345\203" "\67\70\304(.(.(.(\342`\42,*,\36ApR\211\70\241\0\255\334\26\215\345\203\343@" "\70\357!\16\214b\2c\2c\2c\202\0\255\340\31\255\345\203\345@\70{\350\3\243\230\300\230\260\210" "\230\260\340\340\3\21\0\255\344\32\255\345\203\345@\70{\200\3\243\230\300\230\260\3\341\240\3\241\340\3\21" "\0\255\370\15\15\245\204\343`\70\357\1\16\14\255\371\22\255\345\203\345@\70\367\0\7\366\0\7\302\71\1" "\255\374\23\255\345\203\345@\70\367\0\7\366\320\301\211\17D\0\255\377\25\255\345\203\345@\70\367\0\7\366" "\0\7B\301\211\17D\0\256\0\27\255\345\203\345@\70\367\0\7\366\0\7\302A\7B\301\7\42\0\256" "\1\30\255\345\203\345@\70\367\0\7\346\25eQ!U!\221!U\21\0\256\10\31\255\345\203\345@\70" "\367\0\7\366\0\7BqAqAqA\7\42\0\256\11\31\255\345\203\345@\70\367\0\7\366\0qA" "qA\7BqA\7\42\0\256\13\25\255\345\203\345@\70\367\0\7\366H\202c#\2e\202\0\256\15" "\25\255\345\203\345@\70\367\0\7\366\10\352\242\302\242\342\212\0\256\24\30\254\345\203\67\305AH`H`" "H`H`Hl\354\1El\6\256\60\27\252\355\203\63\362&*&*&*&(\67Q!as" "\221\11\256\61\27\313\351\203\325*(*(*&,$n\60\64\36\364 \64\3\256\64\27\313\351\203\325" "*(*(*&,$n\60\64qh\322\203\1\256\67\30\313\351\203\325*(*(*&,$n" "\60\64\36\340(\64\351\1\256\70\33\313\351\203\325*(*(*&,$n\60\64\374 \64\346 &" "\364 \0\256:\35\313\351\203\325*(*(*&,$n\60\64\266\242(\42\306\42F*\306\242\0" "\256@\34\313\351\203\325*(*(*&,$n\60\64\36\340(*(*(*\350\0\256A\34\313" "\351\203\325*(*(*&,$n\60\64\36 *(*\350(*\350\0\256C\30\314\351\203\65\242" "*\217\302b\342\42\4c\343\341bSJ\204\11\5\256E\33\313\351\203\325*(*(*&,$n" "\60\64\36\326(,&,\310\2\0\256F\33\313\351\203\325*(*(*&,$n\60\64\36\340\60" "\64P\42J(\0\256J\34\313\351\203\325*(*(*&,$n\60\64\36\362@(&,&\350" "@\0\256L!\256\345\203\65:\206b$,&$,&$,&\204$&UL\242\230\240\230Ta" "\251\323\0\256M\37\317\341\203\71\204\202&*(&*(&*(f$(\211\214Tx<\334Ax" "N\0\256N$\317\341\203\71\204\202&*(&*(&*(f$(\211\214Tx<\242\212\302\250" "\300\250\300\250\20\0\256P\37\317\341\203\71\204\202&*(&*(&*(f$(\211\214Tx\262" "\360\314\17D\0\256T$\317\341\203\71\204\202&*(&*(&*(f$(\211\214Tx<\334" "Ax\334A\134\370A\10\0\256V)\317\341\203\71\204\202&*(&*(&*(f$(\211\214" "Tx<PEaDLPELPTLPE\11\0\256\134$\317\341\203\71\204\202&*(&*" "(&*(f$(\211\214Tx<\340aT`T`T\340\11\0\256]$\317\341\203\71\204\202&" "*(&*(&*(f$(\211\214Tx<`T`T\340aT\340\11\0\256_\42\317\341\203" "\71\204\202&*(&*(&*(f$(\211\214Tx<txb\211H\241\10\0\256`'\317" "\341\203\71\204\202&*(&*(&*(f$(\211\214Tx<lHlHhD\312\230\210\60" "\21\231\0\256a\42\317\341\203\71\204\202&*(&*(&*(f$(\211\214Tx<B\303\260" "\270\260@\33\0\256e!\317\341\203\71\204\202&*(&*(&*(f$(\211\214Tx<\340" "a\370a\370\11\0\256h'\256\345\203\65$\64\244b$M\222\64I\322$!\211I\222&IDL" "P\210LTHLXHhHhH\0\256i!\315\341\203\65\242\202\42MPD\232\240\210\64A\21" "#A!\21\63\62\21\241\21\361\60\7\301\71\256l#\315\341\203\65\242\202\42MPD\232\240\210\64A" "\21#A!\21\63\62\21\241\21\241\21A\301\31\37\10\256p&\315\341\203\65\242\202\42MPD\232\240" "\210\64A\21#A!\21\63\62\21\241\21\361\60\7\301Q\7Q\301\7\1\256x&\315\341\203\65\242\202" "\42MPD\232\240\210\64A\21#A!\21\63\62\21\241\21\361@gQaQaQa\7\256y&" "\315\341\203\65\242\202\42MPD\232\240\210\64A\21#A!\21\63\62\21\241\21\361@QaQag" "Qa\7\256{$\317\341\203\65\42\204\202\42UPD\252\240\210TA\21CI\42Bdd\42\202#" "\342\301\63\226\210\24\12\256|+\317\341\203\65\42\204\202\42UPD\252\240\210TA\21CI\42Bd" "d\42\202#\342aCbCB#R\306D\204\211\310\4\256}%\315\341\203\65\242\202\42MPD\232" "\240\210\64A\21#A!\21\63\62\21\241\21\361h\352\242\302\242\342*\0\256\204!\256\345\203\65:\206" "b$,&$,&\204&ITL\252\230\30\212\230\240\230Ta\251\323\0\256\205\36\317\341\203\71\204" "\202&*(&*(f&(&(Q\215Tx<\334AxN\0\256\214#\317\341\203\71\204\202&" "*(&*(f&(&(Q\215Tx<\334Ax\334A\134\370A\10\0\256\274\37\256\345\203;" "\272b*&UL\252\230$$\61a!\61a\21\61q\62\201\61\221\321\11\256\275\32\315\341\203\271\202" "&QL\242\230D\21#AA\63R\301\361(\16\202\63\256\276\37\315\341\203\271\202&QL\242\230D" "\21#AA\63R\301\361\320\25eQaQaQ\1\256\300\33\315\341\203\271\202&QL\242\230D\21" "#AA\63R\301\361\340\301\211\17\6\256\304\37\315\341\203\271\202&QL\242\230D\21#AA\63R" "\301\361\60\7\301Q\7Q\301\7\1\256\314\37\315\341\203\271\202&QL\242\230D\21#AA\63R\301" "\361@gQaQaQa\7\256\315\37\315\341\203\271\202&QL\242\230D\21#AA\63R\301\361" "@QaQagQa\7\256\317\35\316\341\203\71\202MP\232\240\64A)f\202R\310HE\307\303" "F\247\225\10\24\12\256\320&\317\341\203\71\204\202&*(&*(&*(b(\23\31\251\360x\330" "\220\330\220\320\210\224\61\21a\42\62\1\256\321\35\315\341\203\271\202&QL\242\230D\21#AA\63R" "\301\361H\314R\205\205Y\0\256\330*\256\345\203\67\42\66\242b&\42&\213\230,bRL\204\304\4" "E\204\304\4E\244\211\212\220\11\213\210\211\213\210\215\210\215\10\256\331!\315\341\203\65\242\202\42MPD" "\232\240\210\64A\23!A!\21\63\62\21\241\21\361\60\7\301\71\256\334\42\315\341\203\65\242\202\42MP" "D\232\240\210\64A\23!A!\21\63\62\21\241\21\361 \301\31\37\10\256\350&\315\341\203\65\242\202\42" "MPD\232\240\210\64A\23!A!\21\63\62\21\241\21\361@gQaQaQa\7\256\353$\317" "\341\203\65\42\204\202\42UPD\252\240\210TA\23AI\42Bdd\42\202#\342\301\63\226\210\24\12" "\256\355%\315\341\203\65\242\202\42MPD\232\240\210\64A\23!A!\21\63\62\21\241\21\361h\352\242" "\302\242\342*\0\256\364\37\256\345\203;\272b*&UL\22\232T!\61a!\61\61\24\61q\62\201" "\61\221\321\11\256\370\34\315\341\203\271\202&QL\242\210\231\240\230\220\240\220\32\251\340\364\20\301\211\17\6" "\256\374 \315\341\203\271\202&QL\242\210\231\240\230\220\240\220\32\251\340x\230\203\340\250\203\250\340\203\0" "\257\7\35\316\341\203\71\202MP\232\240\24Ci\22\205L\310HE\307\303F\247\225\10\24\12\257\10'" "\317\341\203\71\204\202&*(&*(b*(&(\311\210\214Tx<lHlHhD\312\230\210" "\60\21\231\0\257\15\35\315\341\203\271\202&QL\242\210\231\240\230\220\240\220\32\251\340x\240\263\340\263\340" "\3\257\20*\256\345\203\67\42\66\242b&\42&\213\230\24\23\61Y\204\304\4E\204\304\204L\244\211\212" "\220\11\213\210\211\213\210\215\210\215\10\257,\25M%\204\243YTXTXTXT<Tp\262\3\3" "\257-\27\255\345\203\243YTXTXT\134p\330\201=\300\201pN\0\257\60\30\255\345\203\243YT" "XTXT\134p\330\201=tp\342\3\21\0\257\62\36\255\345\203\243YTXTXT\134p\330\201" "y\134P\320E\330LTLH\311\10\0\257\64\34\255\345\203\243YTXTXT\134p\330\201=\300" "\201p\320\201P\360\201\10\0\257<\36\255\345\203\243YTXTXT\134p\330\201=\300\201P\134P" "\134P\134\320\201\10\0\257=\36\255\345\203\243YTXTXT\134p\330\201=@\134P\134\320\201P" "\134\320\201\10\0\257\77\32\255\345\203\243YTXTXT\134p\330\201=\222\340\330\210@\231 \0\257" "A\32\255\345\203\243YTXTXT\134p\330\201=\202\272\250\260\250\270\42\0\257B\32\255\345\203\243" "YTXTXT\134p\330\201=\2\323\330\210@\231\30\0\257C\33\255\345\203\243YTXTXT" "\134p\330\201=T\244ilD\240L\14\0\257H\42\316\345\203\65:\15\5EXPDXPDX" "P\4MPDt\134T\134T\314\201Dt\32\0\257I\42\317\341\203\71\204\202&*(&*(f" "&(&*\42$&.,\346`\42\36\356 <'\0\257P'\317\341\203\71\204\202&*(&*" "(f&(&*\42$&.,\346`\42\36\356 <\356 .\374 \4\0\257\134*\317\341\203\71" "\204\202&*(&*(f&(&*\42$&.,\346`\42\36\66$\66$\64\42eLD\230" "\210L\0\257]%\317\341\203\71\204\202&*(&*(f&(&*\42$&.,\346`\42\36" "\241aX\134X\240\15\0\257d.\316\345\203\65$\64$\64\244\202\42$&(\42$&(\42$&" "(\202&(\42$\64$(*$(*\344`\42$\64$\64$\0\257e#\315\341\203\65\242\202\42" "MPD\232\240\210\231\240\210\64\21!\21\251\202\42\42\16\42\322\303\34\4\347\0\257y%\315\341\203\65" "\242\202\42MPD\232\240\210\231\240\210\64\21!\21\251\202\42\42\16\42\322#\61K\25\26f\1\257\200" "\37\314\345\203\67m\5ILPHLPHLPHLPHlPXP\330\1El\2\257\204\35" "\315\341\203\271\202&QL\242\230D\61)Bb\242\302\42\16&\342A\202\63>\20\257\210!\315\341\203" "\271\202&QL\242\230D\61)Bb\242\302\42\16&\342a\16\202\243\16\242\202\17\2\257\220!\315\341" "\203\271\202&QL\242\230D\61)Bb\242\302\42\16&\342\201\316\242\302\242\302\242\302\16\257\221!\315" "\341\203\271\202&QL\242\230D\61)Bb\242\302\42\16&\342\201\242\302\242\302\316\242\302\16\257\225\37" "\315\341\203\271\202&QL\242\230D\61)Bb\242\302\42\16&\342\221\230\245\12\13\263\0\257\234\31M" "%\204\243YTXTXTXT\232\300\230\300\230\300\230\240\3\3\257\270\20l\345\203\241\242*\177~" "@\26\233\25\0\257\271\26\255\345\203\243YTXTXT\370\201Yp\340\201pN\0\257\274\32\255\345" "\203\243YTXTXT<\360\201Yp`L`p\360\201\10\0\257\300\33\255\345\203\243YTXT" "XT\370\201Yp\340\201p\320\201P\360\201\10\0\257\307\36\255\345\203\243YTXTXT\370\201Y" "p\134M\340AD\311LTLH\311\10\0\257\310\35\255\345\203\243YTXTXT\370\201Yp\340" "\201P\134P\134P\134\320\201\10\0\257\311\35\255\345\203\243YTXTXT\370\201Yp`\134P\134" "\320\201P\134\320\201\10\0\257\313\32\255\345\203\243YTXTXT\370\201Yp<hplD\240L" "\20\0\257\315\32\255\345\203\243YTXTXT\370\201Yp<`]TXT\134\21\0\257\316\32\255" "\345\203\243YTXTXT\370\201Yp<\240ilD\240L\14\0\257\324 \314\345\203\67m\5I" "LPHLPHLPHl\354\1EPXPHQXPX\0\257\334!\355\341\203\71\270\202&" "QL\242\230D\61\21\7\23a!dQ\361\60\7\301Q\7Q\301\7\1\257\350)\357\341\203\71<\204" "\202&*(&*(&*(&\346`\42\60\204\60*\36\66$\66$\64\42eLD\230\210L\0" "\257\351\37\355\341\203\71\270\202&QL\242\230D\61\21\7\23a!dQ\361H\314R\205\205Y\0\257" "\360.\316\345\203\67\42\66\42\66\242\202$\42&($\42&($\42&($\42\66\42\66\342\200\42" "QXDP\14EPXDPXD\0\257\361$\355\341\203\65\42\64\242\202\42MPD\232\240\210\64" "A\21)\16\42REPD\5E\304\243\70\10\316\0\257\364,\355\341\203\65\42\64\242\202\42MPD" "\232\240\210\64A\21I#\42\16\42R\5EDEPD\5E\304D\4E\304\4\7\37\14\257\370(" "\355\341\203\65\42\64\242\202\42MPD\232\240\210\64A\21)\16\42REPD\5E\304\303\34\4G" "\35D\5\37\4\260\0(\355\341\203\65\42\64\242\202\42MPD\232\240\210\64A\21)\16\42REP" "D\5E\304\3\235E\205E\205E\205\35\260\1(\355\341\203\65\42\64\242\202\42MPD\232\240\210\64" "A\21)\16\42REPD\5E\304\3E\205E\205\235E\205\35\260\4-\357\341\203\65\42\70\42\204" "\202\42UPD\252\240\210TA\21i\16\42\322EP\304\5E\304\303\206\304\206\204F\244\214\211\10\23" "\221\11\260\14 \314\345\203\67m\5ILPHLPHLPHl\354\1EPXPXPXP" "X\0\260\20!\355\341\203\71\270\202&QL\242\230D\61\301\21\7\23aQaQaQ\61\201\61\301" "\301\7\3\260\24 \355\341\203\71\270\202&QL\242\230D\61\21\7\23aQa\361\220\7\301Q\7Q" "\301\7\1\260\34 \355\341\203\71\270\202&QL\242\230D\61\21\7\23aQa\361\240gQaQa" "Qa\7\260\35 \355\341\203\71\270\202&QL\242\230D\61\21\7\23aQa\361\240QaQag" "Qa\7\260(\35m\345\203\241\242,*,*,*,*\36\340\300(&\60&\60&\60&\10\0" "\260D\23\15\245\204\243YTXTXTXT<\360\201\1\260E\26\255\345\203\243YTXTXT" "<\360\201=\300\201pN\0\260H\27\255\345\203\243YTXTXT<\360\201=tp\342\3\21\0" "\260J\35\255\345\203\243YTXTXT<\360\201y\134P\320E\330LTLH\311\10\0\260L\33" "\255\345\203\243YTXTXT<\360\201=\300\201p\320\201P\360\201\10\0\260N\37\255\345\203\243Y" "TXTXT<\360\201yEYDLHELHTLHE\5\0\260S\35\255\345\203\243YT" "XTXT<\360\201yM\340AD\311LTLH\311\10\0\260T\35\255\345\203\243YTXTX" "T<\360\201=\300\201P\134P\134P\134\320\201\10\0\260U\35\255\345\203\243YTXTXT<\360" "\201=@\134P\134\320\201P\134\320\201\10\0\260W\31\255\345\203\243YTXTXT<\360\201=\222" "\340\330\210@\231 \0\260Y\31\255\345\203\243YTXTXT<\360\201=\202\272\250\260\250\270\42\0" "\260]\33\255\345\203\243YTXTXT<\360\201=\300\201P\360\201P\360\201\10\0\260|\32\254\345" "\203\67\266b&\377ILPHLPDL\224LXL\134l\2\260}\32\315\341\203\271\202&QL" "\242\230D\61!AA\63R\301\361(\16\202\63\260\200\33\315\341\203\271\202&QL\242\230D\61!A" "A\63R\301\351!\202\23\37\14\260\204\37\315\341\203\271\202&QL\242\230D\61!AA\63R\301\361" "\60\7\301Q\7Q\301\7\1\260\214\37\315\341\203\271\202&QL\242\230D\61!AA\63R\301\361@" "gQaQaQa\7\260\215\37\315\341\203\271\202&QL\242\230D\61!AA\63R\301\361@Q" "aQagQa\7\260\217\34\316\341\203\71\202MP\232\240\64Ai\22\245\220\221\212\216\207\215N+" "\21(\24\260\221\35\315\341\203\271\202&QL\242\230D\61!AA\63R\301\361H\314R\205\205Y\0" "\260\230\31\256\345\203\65:MdLdLdeLdLd\314AHt\66\0\260\231\27\316\345\203\67" ":IhH(iHh\210U<\324AtN\0\260\232\33\316\345\203\67:IhH(iHh\210" "U<\212vQqQqQ!\0\260\234\30\316\345\203\67:IhH(iHh\210UtTt\326" "\7\42\0\260\237\30\316\345\203\67:IhH(iHh\210U<\330]t\352\23\0\260\240\34\316\345" "\203\67:IhH(iHh\210U<\324At\330AX\364A\10\0\260\241\36\316\345\203\67:I" "hH(iHh\210U<HE]TLULdLU\10\0\260\242 \316\345\203\67:IhH" "(iHh\210U<HE]DLLEL\252\230\230\212\22\0\260\250\34\316\345\203\67:IhH" "(iHh\210U<\330]T\134T\134T\334\11\0\260\251\34\316\345\203\67:IhH(iHh" "\210U<XT\134T\334]T\334\11\0\260\253\32\316\345\203\67:IhH(iHh\210U<l" "tZ\211@\241\10\0\260\254\37\316\345\203\67:IhH(iHh\210U<dHhHdD\302" "\230\210(\21\231\0\260\255\30\316\345\203\67:IhH(iHh\210U<*\273\260\354l\0\260\256" "\33\316\345\203\67:IhH(iHh\210U<\330mt\254D\240P\10\0\260\257\33\316\345\203\67" ":IhH(iHh\210U<d\350ipD\244\214\10\0\260\261\31\316\345\203\67:IhH(" "iHh\210U<\330]\364]\364\11\0\260\263\33\316\345\203\67:IhH(iHh\210U<`" "\344\201\134aT`\21\0\260\264 \256\345\203\65$\64$\64D\62D\62D\262\62D\62D\62\344@" "$iHhHhH\0\260\265\32\314\345\203\63\42\62\42\62B\60B\220\60B\60\342&\42\36\342 " "\66\7\260\270\34\314\345\203\63\42\62\42\62B\60B\220\60B\60\342&\42\62\42&\66\333\3\1\260\274" "\37\314\345\203\63\42\62\42\62B\60B\220\60B\60\342&\42\36\342 \66\350 (\366 \0\260\304\32" "\314\345\203\63\42\62\42\62B\60B\220\60B\60\342&\42\36\344*_\35\260\305\34\314\345\203\63\42\62" "\42\62B\60B\220\60B\60\342&\42\36$*\253\253T\7\260\307\42\316\345\203\63\42\66\42\66\42$" "\60\42$p$\60\42$\60\42\304&\42\36\70:\255D\240P\0\260\310(\316\345\203\63\42\66\42\66" "\42$\60\42$p$\60\42$\60\42\304&\42\36\62$\64$\62\42aLD\224\210L\0\260\311\34" "\314\345\203\63\42\62\42\62B\60B\220\60B\60\342&\42\36AYTf\25\0\260\320\30\256\345\203\65" ":MdLdeLdLde\314AHt\66\0\260\321\26\316\345\203\67:I(iH(i\210" "U<\324AtN\0\260\324\27\316\345\203\67:I(iH(i\210U<Pt\326\7\42\0\260\330" "\33\316\345\203\67:I(iH(i\210U<\324At\330AX\364A\10\0\260\340\33\316\345\203\67" ":I(iH(i\210U<\330]T\134T\134T\334\11\0\260\345\27\316\345\203\67:I(iH" "(i\210U<*\273\260\354l\0\261\10\20\256\345\203;\265\260\312b\305\7R\321\31\261\11\22\314\345" "\203\67\255\250 \251\350U<\364Al\6\261\13\36\316\345\203\67:IhH\340HhHh\210U<" "\222\242\300\240\300\230\210\270\10\231\0\261\14\22\314\345\203\67\255\250 \251\350U<l\266\7\3\261\20\27" "\314\345\203\67\255\250 \251\350U<\304Al\320AP\354A\0\261\22\32\314\345\203\67\255\250 \251\350" "UtEUDLDELDTLD\3\261\23\31\314\345\203\67\255\250 \251\350UtELTD" "LD\213\250\230\210\6\261\30\22\314\345\203\67\255\250 \251\350U<\310U\276:\261\31\24\314\345\203\67" "\255\250 \251\350U<HTVW\251\16\261\33\32\315\345\203\67\70EhD\340DhDh\204U<" "dpR\211\70\241\0\261\34 \316\345\203\67:IhH\340HhHh\210U<dHhHdD" "\302\230\210(\21\231\0\261\35\26\314\345\203\67\255\250 \251\350U<\270UXPX\224\5\0\261#\27" "\314\345\203\67\255\250 \251\350U<P\334\201TYTX\11\0\261$\42\256\345\203\67\42\66\42\66B" "\64B\64BpB\64B\64B\64\342@&\42\66\42\66\42\66\42\0\261%\33\314\345\203\63\42\62\42" "\62B\60BlB\60B\60\342&\42\36\342 \66\7\261(\34\314\345\203\63\42\62\42\62B\60Bl" "B\60B\60\342&\42\36 \66\333\3\1\261, \314\345\203\63\42\62\42\62B\60BlB\60B\60" "\342&\42\36\342 \66\350 (\366 \0\261\64\33\314\345\203\63\42\62\42\62B\60BlB\60B\60" "\342&\42\36\344*_\35\261\65\35\314\345\203\63\42\62\42\62B\60BlB\60B\60\342&\42\36$" "*\253\253T\7\261\67#\316\345\203\63\42\66\42\66\42$\60\42$l\42$\60\42$\60\42\304&\42" "\36\70:\255D\240P\0\261\70)\316\345\203\63\42\66\42\66\42$\60\42$l\42$\60\42$\60\42" "\304&\42\36\62$\64$\62\42aLD\224\210L\0\261\71\35\314\345\203\63\42\62\42\62B\60Bl" "B\60B\60\342&\42\36AYTf\25\0\261@\21\256\345\203;\265\260d\261\312\342\3\251\350\14\261" "A\22\314\345\203\67\255 \251 \351U<\364Al\6\261D\23\314\345\203\67\255 \251 \351Ulx" "l\332\203\1\261H\27\314\345\203\67\255 \251 \351U<\304Al\320AP\354A\0\261P\22\314\345" "\203\67\255 \251 \351U<\310U\276:\261Q\24\314\345\203\67\255 \251 \351U<HTVW\251" "\16\261T \316\345\203\67:I\340HhH\340Hh\210U<dHhHdD\302\230\210(\21\231" "\0\261U\26\314\345\203\67\255 \251 \351U<\270UXPX\224\5\0\261X\23\314\345\203\67\255 " "\251 \351U<\310m\324m\2\261\134\42\256\345\203\67\42\66\42\66B\64BpB\64B\64BpB" "\64\342@&\42\66\42\66\42\66\42\0\261`\35\314\345\203\63\42\62\42\62BlB\60BlB\60\342" "&\42\62\42&\66\333\3\1\261x\20\215%\204#\70\307\7\364h\202\223\35\30\261y\24\255\345\203%" "\70\361\201`p\330\201=\300\201pN\0\261|\25\255\345\203%\70\361\201`p\330\201=tp\342\3" "\21\0\261\200\31\255\345\203%\70\361\201`p\330\201=\300\201p\320\201P\360\201\10\0\261\202\35\255\345" "\203%\70\361\201`p\330\201yEYDLHELHTLHE\5\0\261\210\33\255\345\203%\70" "\361\201`p\330\201=\300\201P\134P\134P\134\320\201\10\0\261\211\33\255\345\203%\70\361\201`p\330" "\201=@\134P\134\320\201P\134\320\201\10\0\261\213\27\255\345\203%\70\361\201`p\330\201=\222\340\330" "\210@\231 \0\261\215\27\255\345\203%\70\361\201`p\330\201=\202\272\250\260\250\270\42\0\261\222\31\255" "\345\203%\70\361\201`p\330\201=\364\201XL`L\330\201\10\0\261\223\30\255\345\203%\70\361\201`" "p\330\201=P\340\201X]T\134\21\0\261\224\37\316\345\203\65:&\62&\62&\62&\62&\362\240" "$:.*.*\346@\42:\15\0\261\230\34\316\345\203\67&\62&\62&r\42\62\346&,\311\301" "D<Pt\326\7\42\0\261\234 \316\345\203\67&\62&\62&r\42\62\346&,\311\301D<\324A" "t\330AX\364A\10\0\261\250#\316\345\203\67&\62&\62&r\42\62\346&,\311\301D<dH" "hHdD\302\230\210(\21\231\0\261\314\25\314\345\203\67VT\247\7\62\261AaAa\7\24\261\11" "\261\320\33\314\345\203\67\42\62\42\62\42\62\42\62\342&(\354\200\42\36 \66\333\3\1\261\324\37\314\345" "\203\67\42\62\42\62\42\62\42\62\342&(\354\200\42\36\342 \66\350 (\366 \0\261\334\32\314\345\203" "\67\42\62\42\62\42\62\42\62\342&(\354\200\42\36\344*_\35\261\335\34\314\345\203\67\42\62\42\62\42" "\62\42\62\342&(\354\200\42\36$*\253\253T\7\261\337\36\315\345\203\67$\62$\62$\62$\62\344" "&*,\342`\42\36\62\70\251D\234P\0\261\350\25\215%\204#\70\307\7\364\60\11c\2c\2c" "\202\16\14\261\351\26\255\345\203%\70\361\201XL`L\320\201=\300\201pN\0\261\354\27\255\345\203%" "\70\361\201XL`L\320\201=tp\342\3\21\0\261\360\33\255\345\203%\70\361\201XL`L\320\201" "=\300\201p\320\201P\360\201\10\0\261\371\35\255\345\203%\70\361\201XL`L\320\201=@\134P\134" "\320\201P\134\320\201\10\0\261\373\31\255\345\203%\70\361\201XL`L\320\201=\222\340\330\210@\231 " "\0\261\375\31\255\345\203%\70\361\201XL`L\320\201=\202\272\250\260\250\270\42\0\262\4\21\253\351\203" "!\64\247\7\364p\7T\241Y\1\262\5\24\255\345\203%\70\361\201<\300\201Yp\340\201pN\0\262" "\10\27\255\345\203%\70\361\201<\364\201Yp`L`p\360\201\10\0\262\13\27\255\345\203%\70\361\201" "<\300\201Yp\340\201Pp\342\3\21\0\262\14\31\255\345\203%\70\361\201<\300\201Yp\340\201p\320" "\201P\360\201\10\0\262\24\33\255\345\203%\70\361\201<\300\201Yp\340\201P\134P\134P\134\320\201\10" "\0\262\25\33\255\345\203%\70\361\201<\300\201Yp`\134P\134\320\201P\134\320\201\10\0\262\27\30\255" "\345\203%\70\361\201<\300\201Yp<hplD\240L\20\0\262\31\30\255\345\203%\70\361\201<\300" "\201Yp<`]TXT\134\21\0\262 \31\314\345\203\67VT\323\3\231\330\330\3\212\240\260\240\220" "\242\260\240\260\0\262\64%\356\345\203\67&\62&\62&\62\346&:\344`\42.\204.*\36\62$\64" "$\62\42aLD\224\210L\0\262<(\316\345\203\67\42\66B\64B\64B\64B\64\342@&\42\66" "\42\66\342\200\42QXDP\14EPXDPXD\0\262X\31\314\345\203\67VT\323\3\231\330\330" "\3\212\240\260\240\260\240\260\240\260\0\262\134\33\354\345\203\67\42\62\42\62\42\62\342&\66\366\200\42*\237" "\4\206\304\306\36\14\262`\35\354\345\203\67\42\62\42\62\42\62\342&\366\200\42*{\270\203\330\240\203\240" "\330\203\0\262h\30\354\345\203\67\42\62\42\62\42\62\342&\366\200\42*{\300\253|u\262i\32\354\345" "\203\67\42\62\42\62\42\62\342&\366\200\42*{\300\250\254\256R\35\262t\27\255\345\203#\70\307\7\364" "\300\7F\61\201\61\201\61\201\61A\0\262u\26\255\345\203%\70\361\201<\300\201QL`L\330\201p" "N\0\262|\33\255\345\203%\70\361\201<\300\201QL`L\330\201p\320\201P\360\201\10\0\262\204\35" "\255\345\203%\70\361\201<\300\201QL`L\330\201P\134P\134P\134\320\201\10\0\262\205\35\255\345\203" "%\70\361\201<\300\201QL`LX\134P\134\320\201P\134\320\201\10\0\262\211\32\255\345\203%\70\361" "\201<\300\201QL`L<X]TXT\134\21\0\262\220\16M\245\204#\70\307\7\364H\17\14\262" "\221\23\255\345\203%\70\361\201<\364\201=\300\201pN\0\262\224\24\255\345\203%\70\361\201<\364\201=" "tp\342\3\21\0\262\230\30\255\345\203%\70\361\201<\364\201=\300\201p\320\201P\360\201\10\0\262\231" "\31\255\345\203%\70\361\201<\364\201yEYTHUHdHU\4\0\262\232\34\255\345\203%\70\361" "\201<\364\201yEYDLHELHTLHE\5\0\262\240\32\255\345\203%\70\361\201<\364\201" "=\300\201P\134P\134P\134\320\201\10\0\262\241\32\255\345\203%\70\361\201<\364\201=@\134P\134\320" "\201P\134\320\201\10\0\262\243\26\255\345\203%\70\361\201<\364\201=\222\340\330\210@\231 \0\262\245\26" "\255\345\203%\70\361\201<\364\201=\202\272\250\260\250\270\42\0\262\246\26\255\345\203%\70\361\201<\364\201" "=\2\323\330\210@\231\30\0\262\252\30\255\345\203%\70\361\201<\364\201=\364\201XL`L\330\201\10" "\0\262\254\22\314\345\203\67VT\247\7\62\261\261\7\24\261\31\262\260\32\314\345\203\67\42\62\42\62\42\62" "\42\62\342&\366\200\42\36 \66\333\3\1\262\264\36\314\345\203\67\42\62\42\62\42\62\42\62\342&\366\200" "\42\36\342 \66\350 (\366 \0\262\310\16\254\345\203\67\255\250\236\36\310\304f\262\311\20\314\345\203\67" "\255\250\246W\361\320\7\261\31\262\314\21\314\345\203\67\255\250\246W\261\341\261i\17\6\262\320\25\314\345\203" "\67\255\250\246W\361\20\7\261A\7A\261\7\1\262\322\30\314\345\203\67\255\250\246W\321\25U\21\61\21" "\25\61\21Q\61\21\15\262\330\21\314\345\203\67\255\250\246W\361 W\371\352\0\262\331\22\314\345\203\67\255" "\250\246W\361 QY]\245:\262\333\32\315\345\203\67\70EhDhDhDh\204U<dpR" "\211\70\241\0\262\335\24\314\345\203\67\255\250\246W\361\340VaAaQ\26\0\262\342\25\314\345\203\67\255" "\250\246W\361\300\7R\61q\61Q\7\2\262\344\32\256\345\203\65:\346 $&\62&\62&\262\62&" "\62\346 $:\67\0\262\345\30\316\345\203\67:\304*$\64$\224\64\304*:\36\352 :'\0\262" "\346\34\316\345\203\67:\304*$\64$\224\64\304*:\36E\273\250\270\250\270\250\20\0\262\350\30\316\345" "\203\67:\304*$\64$\224\64\304*:Ut\326\7\42\0\262\353\31\316\345\203\67:\304*$\64$" "\224\64\304*:\36\354.:\365\11\0\262\354\35\316\345\203\67:\304*$\64$\224\64\304*:\36\352" " :\354 ,\372 \4\0\262\355\37\316\345\203\67:\304*$\64$\224\64\304*:\36\244\242.*" "\246*&\62\246*\4\0\262\356!\316\345\203\67:\304*$\64$\224\64\304*:\36\244\242.\42&" "\246\42&ULLE\11\0\262\357\42\316\345\203\67:\304*$\64$\224\64\304*:\36\244\42&." "\42&\246\242&*&\246\242\4\0\262\363!\317\345\203\67<\306*&\64&t\42\64\306*<\36\252" "(\62\342\244f(,&\246f\4\0\262\364\35\316\345\203\67:\304*$\64$\224\64\304*:\36\354" ".*.*.*\356\4\0\262\365\35\316\345\203\67:\304*$\64$\224\64\304*:\36,*.*" "\356.*\356\4\0\262\367\33\316\345\203\67:\304*$\64$\224\64\304*:\36\66:\255D\240P\4" "\0\262\370 \316\345\203\67:\304*$\64$\224\64\304*:\36\62$\64$\62\42aLD\224\210L" "\0\262\371\31\316\345\203\67:\304*$\64$\224\64\304*:\36\225]Xv\66\0\262\372\34\316\345\203" "\67:\304*$\64$\224\64\304*:\36\354\66:V\42P(\4\0\262\373\34\316\345\203\67:\304*" "$\64$\224\64\304*:\36\62\364\64\70\42RF\4\0\262\377\34\316\345\203\67:\304*$\64$\224" "\64\304*:\36\60\362@\256\60*\260\10\0\263\0!\256\345\203\65$\64\344@$D\62D\62D\262" "\62D\62\344@$iHhHhHhH\0\263\1\32\314\345\203\63\42\62\342&B\60B\220\60\342" "&\42\62\42\36\342 \66\7\263\4\34\314\345\203\63\42\62\342&B\60B\220\60\342&\42\62\42\62\42" "&\66\333\3\1\263\10\37\314\345\203\63\42\62\342&B\60B\220\60\342&\42\62\42\36\342 \66\350 " "(\366 \0\263\20\32\314\345\203\63\42\62\342&B\60B\220\60\342&\42\62\42\36\344*_\35\263\21" "\34\314\345\203\63\42\62\342&B\60B\220\60\342&\42\62\42\36$*\253\253T\7\263\23\42\316\345\203" "\63\42\66\42\304&\42$\60\42$p$\60\42\304&\42\66\42\36\70:\255D\240P\0\263\24(\316" "\345\203\63\42\66\42\304&\42$\60\42$p$\60\42\304&\42\66\42\36\62$\64$\62\42aLD" "\224\210L\0\263\25\34\314\345\203\63\42\62\342&B\60B\220\60\342&\42\62\42\36AYTf\25\0" "\263\34\31\256\345\203\65:\346 $&\62&\262\62&\62&\362\240$:\67\0\263T\22\256\345\203;" "\372@JXe\261\360\201Tt\16\263U\23\314\345\203\67\366JT\220\364*\66\36\372 \66\3\263V" "\23\314\345\203\67\366JT\220\364*\66\36\264\242*\37\263X\23\314\345\203\67\366JT\220\364*\66\36" "\66\333\203\1\263[\24\314\345\203\67\366JT\220\364*\66\36\344*\66\355\1\263\134\30\314\345\203\67\366" "JT\220\364*\66\36\342 \66\350 (\366 \0\263^\33\314\345\203\67\366JT\220\364*\66\272\242" "*\42&\242\42&\42*&\242\1\263_\32\314\345\203\67\366JT\220\364*\66\272\42&*\42&\242" "ETLD\3\263d\23\314\345\203\67\366JT\220\364*\66\36\344*_\35\263e\25\314\345\203\67\366" "JT\220\364*\66\36$*\253\253T\7\263g\33\315\345\203\67\70\302*\42\64\42p\42\64\302*\70" "\36\62\70\251D\234P\0\263i\27\314\345\203\67\366JT\220\364*\66\36\334*,(,\312\2\0\263" "k\27\314\345\203\67\366JT\220\364*\66\36*\360\60\64\42NF\0\263n\30\314\345\203\67\366JT" "\220\364*\66\36\370@*&.&\352@\0\263p#\256\345\203\67\42\66\342@&B\64B\64Bp" "B\64B\64\342@&\42\66\42\66\42\66\42\66\42\0\263q\33\314\345\203\63\42\62\342&B\60Bl" "B\60\342&\42\62\42\36\342 \66\7\263t\34\314\345\203\63\42\62\342&B\60BlB\60\342&\42" "\62\42\36 \66\333\3\1\263x \314\345\203\63\42\62\342&B\60BlB\60\342&\42\62\42\36\342" " \66\350 (\366 \0\263\200\33\314\345\203\63\42\62\342&B\60BlB\60\342&\42\62\42\36\344" "*_\35\263\201\35\314\345\203\63\42\62\342&B\60BlB\60\342&\42\62\42\36$*\253\253T\7" "\263\203#\316\345\203\63\42\66\42\304&\42$\60\42$l\42$\60\42\304&\42\66\42\36\70:\255D" "\240P\0\263\204)\316\345\203\63\42\66\42\304&\42$\60\42$l\42$\60\42\304&\42\66\42\36\62" "$\64$\62\42aLD\224\210L\0\263\205\35\314\345\203\63\42\62\342&B\60BlB\60\342&\42" "\62\42\36AYTf\25\0\263\214\22\256\345\203;\372@JX\262X\345AUt\16\263\220\24\314\345" "\203\67\366J\220T\360@*\66yl\332\203\1\263\224\31\314\345\203\67\366J\220T\360@*\66\36\342" " \66\350 (\366 \0\263\240!\316\345\203\67:\304*$p$\64$p\304*:\36\62$\64$" "\62\42aLD\224\210L\0\263\241\30\314\345\203\67\366J\220T\360@*\66\36\334*,(,\312\2" "\0\263\250#\256\345\203\67\42\66\342@&B\64BpB\64B\64Bp\342@&\42\66\42\66\42\66" "\42\66\42\0\263\254\35\314\345\203\63\42\62\342&BlB\60Bl\342&\42\62\42\62\42&\66\333\3" "\1\263\304\22\215%\204\343\200$\70\343\3z\64\301\311\16\14\263\305\26\255\345\203\345@(\70\370@\60" "\70\354\300\36\340@\70'\0\263\310\27\255\345\203\345@(\70\370@\60\70\354\300\36:\70\361\201\10\0" "\263\313\31\255\345\203\345@(\70\370@\60\70\354\300\36\340@(\70\361\201\10\0\263\314\33\255\345\203\345" "@(\70\370@\60\70\354\300\36\340@\70\350@(\370@\4\0\263\316\37\255\345\203\345@(\70\370@" "\60\70\354\300\274\242,\42&\244\42&$*&\244\242\2\0\263\320\35\255\345\203\345@(\70\370@\60" "\70\354\300\274(.(\246(&.\42\244B&\0\263\324\35\255\345\203\345@(\70\370@\60\70\354\300" "\36\340@(.(.(.\350@\4\0\263\325\35\255\345\203\345@(\70\370@\60\70\354\300\36 ." "(.\350@(.\350@\4\0\263\327\31\255\345\203\345@(\70\370@\60\70\354\300\36IplD\240" "L\20\0\263\331\31\255\345\203\345@(\70\370@\60\70\354\300\36A]TXT\134\21\0\263\333\32\255" "\345\203\345@(\70\370@\60\70\354\300\36*\322\64\66\42P&\6\0\263\335\33\255\345\203\345@(\70" "\370@\60\70\354\300\36\340@(\370@(\370@\4\0\263\340 \316\345\203\65:\346 $&\62&\62" "&\62\346 \204\64:.*.*\346@\42:\15\0\263\344\31\316\345\203\67\346&eL\344\304MX" "N\16&\342\201\242\263>\20\1\263\350\35\316\345\203\67\346&eL\344\304MXN\16&\342\241\16\242" "\303\16\302\242\17B\0\263\374'\316\345\203\65$\64\344@$D\62D\62D\62\344@\204\64$\64$" "(*$(*\344`\42$\64$\64$\0\264\20(\316\345\203\63\42\346\42M\134DL\334\314E\262" "\240\210\260\240\210\220\203\210\364\220!\241!\221\21\11c\42\242Dd\2\264\30\27\314\345\203\67\366@F" "T\351\201Ll\242\260\240\260\3\212\330\4\264\34\33\314\345\203\67\342&\42\62\42\62\342&(,(\354" "\200\42\36 \66\333\3\1\264 \37\314\345\203\67\342&\42\62\42\62\342&(,(\354\200\42\36\342 " "\66\350 (\366 \0\264(\32\314\345\203\67\342&\42\62\42\62\342&(,(\354\200\42\36\344*_" "\35\264)\34\314\345\203\67\342&\42\62\42\62\342&(,(\354\200\42\36$*\253\253T\7\264+\36" "\315\345\203\67\344&$\62$\62\344&*,*,\342`\42\36\62\70\251D\234P\0\264\64\27\215%" "\204\343\200$\70\343\3z\230\204\61\201\61\201\61A\7\6\264P\22\253\351\203\341\240\64\323\3z\270\3" "\252\320\254\0\264Q\26\255\345\203\345@(\70\370@\36\340\300,\70\360@\70'\0\264T\31\255\345\203" "\345@(\70\370@\36\372\300,\70\60&\60\70\370@\4\0\264X\33\255\345\203\345@(\70\370@\36" "\340\300,\70\360@\70\350@(\370@\4\0\264`\35\255\345\203\345@(\70\370@\36\340\300,\70\360" "@(.(.(.\350@\4\0\264a\35\255\345\203\345@(\70\370@\36\340\300,\70\60.(." "\350@(.\350@\4\0\264c\32\255\345\203\345@(\70\370@\36\340\300,\70\36\64\70\66\42P&" "\10\0\264e\32\255\345\203\345@(\70\370@\36\340\300,\70\36\260.*,*\256\10\0\264l\33\314" "\345\203\67\366`DT\351\301Hl\354\1EPXPHQXPX\0\264\200$\356\345\203\67\346&" "eLd\314Mt\310\301D\134\10]T<dHhHdD\302\230\210(\21\231\0\264\210)\316\345" "\203\67\42\66\342`$B\64B\64B\64\342`$\42\66\42\66\342\200\42QXDP\14EPXD" "PXD\0\264\235\42\354\345\203\63\42\342\42\273\210t\21\21\27)#\16$\22EP\4\245\210\7\267" "\12\13\12\213\262\0\264\244\33\314\345\203\67\366`DT\351\301Hl\354\1EPXPXPXPX" "\0\264\250\33\354\345\203\67\342&\42\62\42\62\342&\66\366\200\42*\237\4\206\304\306\36\14\264\254\35\354" "\345\203\67\342&\42\62\42\62\342&\366\200\42*{\270\203\330\240\203\240\330\203\0\264\265\32\354\345\203\67" "\342&\42\62\42\62\342&\366\200\42*{\300\250\254\256R\35\264\267\36\355\345\203\67\344&$\62$\62" "\344&\70\342`\42,*,\36ApR\211\70\241\0\264\271\34\354\345\203\67\342&\42\62\42\62\342&" "\366\200\42*{TVaAaQ\26\0\264\300\31\255\345\203\343\200$\70\343\3z\340\3\243\230\300\230" "\300\230\300\230 \0\264\304\34\255\345\203\345@(\70\370@\36\372\300(&\60&,\42&,\70\370@" "\4\0\264\310\35\255\345\203\345@(\70\370@\36\340\300(&\60&\354@\70\350@(\370@\4\0\264" "\320\37\255\345\203\345@(\70\370@\36\340\300(&\60&\354@(.(.(.\350@\4\0\264\325" "\34\255\345\203\345@(\70\370@\36\340\300(&\60&\36\254.*,*\256\10\0\264\334\20M\245\204" "\343\200$\70\343\3z\244\7\6\264\335\25\255\345\203\345@(\70\370@\36\372\300\36\340@\70'\0\264" "\340\26\255\345\203\345@(\70\370@\36\372\300\36:\70\361\201\10\0\264\343\30\255\345\203\345@(\70\370" "@\36\372\300\36\340@(\70\361\201\10\0\264\344\32\255\345\203\345@(\70\370@\36\372\300\36\340@\70" "\350@(\370@\4\0\264\346\36\255\345\203\345@(\70\370@\36\372\300\274\242,\42&\244\42&$*" "&\244\242\2\0\264\354\34\255\345\203\345@(\70\370@\36\372\300\36\340@(.(.(.\350@\4" "\0\264\355\34\255\345\203\345@(\70\370@\36\372\300\36 .(.\350@(.\350@\4\0\264\357\30" "\255\345\203\345@(\70\370@\36\372\300\36IplD\240L\20\0\264\361\30\255\345\203\345@(\70\370" "@\36\372\300\36A]TXT\134\21\0\264\370\24\314\345\203\67\366@FT\351\201Ll\332\3\212\330" "\14\265\24\20\254\345\203\67\366@FT\247\7\62\261\71\265\25\22\314\345\203\67\366JT\351Ul<\364" "Al\6\265\30\22\314\345\203\67\366JT\351Ul\362\330\264\7\3\265\33\23\314\345\203\67\366JT\351" "Ul<\310Ul\332\3\265\34\27\314\345\203\67\366JT\351Ul<\304Al\320AP\354A\0\265" "$\22\314\345\203\67\366JT\351Ul<\310U\276:\265%\24\314\345\203\67\366JT\351Ul<H" "TVW\251\16\265'\33\315\345\203\67\70\302*\42\64\42\64\42\64\302*\70\36\62\70\251D\234P\0" "\265(!\316\345\203\67:\304*$\64$\64$\64\304*:\36\62$\64$\62\42aLD\224\210L" "\0\265)\26\314\345\203\67\366JT\351Ul<\270UXPX\224\5\0\265*\26\314\345\203\67\366J" "T\351Ul<\310el\244D\230P\0\265\60\33\256\345\203\65:\206\202\42&(MP\232\240\240\242" "\64Ai((\242s\3\265\61\35\316\345\203\67:db($&,$&\214&,db(:\36" "\352 :'\0\265\64\35\316\345\203\67:db($&,$&\214&,db(:Ut\326\7" "\42\0\265\70\42\316\345\203\67:db($&,$&\214&,db(:\36\352 :\354 ," "\372 \4\0\265@\42\316\345\203\67:db($&,$&\214&,db(:\36\354.*." "*.*\356\4\0\265A\42\316\345\203\67:db($&,$&\214&,db(:\36,*" ".*\356.*\356\4\0\265C \316\345\203\67:db($&,$&\214&,db(:\36" "\66:\255D\240P\4\0\265D%\316\345\203\67:db($&,$&\214&,db(:\36" "\62$\64$\62\42aLD\224\210L\0\265E\36\316\345\203\67:db($&,$&\214&," "db(:\36\225]Xv\66\0\265K!\316\345\203\67:db($&,$&\214&,db" "(:\36\60\362@\256\60*\260\10\0\265L#\256\345\203\65$\64\244\202\42D(\211P\22\241\240\242" "$BI*(BBCBCBCBC\2\265M\37\314\345\203\63\42\62\202b$B&(B&" "\210&(\202b$\42\62\42\36\342 \66\7\265P!\314\345\203\63\42\62\202b$B&(B&\210" "&(\202b$\42\62\42\62\42&\66\333\3\1\265T$\314\345\203\63\42\62\202b$B&(B&" "\210&(\202b$\42\62\42\36\342 \66\350 (\366 \0\265\134\37\314\345\203\63\42\62\202b$B" "&(B&\210&(\202b$\42\62\42\36\344*_\35\265]!\314\345\203\63\42\62\202b$B&" "(B&\210&(\202b$\42\62\42\36$*\253\253T\7\265_'\316\345\203\63\42\66\42db$" "\42$&(\42$&h$&(\42db$\42\66\42\36\70:\255D\240P\0\265`-\316\345\203" "\63\42\66\42db$\42$&(\42$&h$&(\42db$\42\66\42\36\62$\64$\62\42" "aLD\224\210L\0\265a!\314\345\203\63\42\62\202b$B&(B&\210&(\202b$\42\62" "\42\36AYTf\25\0\265\240\30\256\345\203;\272\202H(N(N(\250(N(\256\202(:\7" "\265\241\30\314\345\203\67\226bH&L&\210&\214b(\66\36\372 \66\3\265\244\30\314\345\203\67\226" "bH&L&\210&\214b(\66\36\66\333\203\1\265\250\35\314\345\203\67\226bH&L&\210&\214" "b(\66\36\342 \66\350 (\366 \0\265\252 \314\345\203\67\226bH&L&\210&\214b(\66" "\272\242*\42&\242\42&\42*&\242\1\265\253\37\314\345\203\67\226bH&L&\210&\214b(\66" "\272\42&*\42&\242ETLD\3\265\260\30\314\345\203\67\226bH&L&\210&\214b(\66\36" "\344*_\35\265\261\32\314\345\203\67\226bH&L&\210&\214b(\66\36$*\253\253T\7\265\263" "\36\315\345\203\67\70bQDLXDL\320DLX\304\242\340x\310\340\244\22qB\1\265\264&\316" "\345\203\67:db($&,$&h$&,db(:\36\62$\64$\62\42aLD\224\210" "L\0\265\265\34\314\345\203\67\226bH&L&\210&\214b(\66\36\334*,(,\312\2\0\265\273" "\35\314\345\203\67\226bH&L&\210&\214b(\66\36(\356@\252,*\254\4\0\265\274(\256\345" "\203\67\42\66\242\202$B(*B(*B(fB(*B(*\242\202$\42\66\42\66\42\66\42" "\66\42\0\265\275 \314\345\203\63\42\62\202b$B&(B&dB&(\202b$\42\62\42\36\342" " \66\7\265\300!\314\345\203\63\42\62\202b$B&(B&dB&(\202b$\42\62\42\36 " "\66\333\3\1\265\304%\314\345\203\63\42\62\202b$B&(B&dB&(\202b$\42\62\42\36" "\342 \66\350 (\366 \0\265\314 \314\345\203\63\42\62\202b$B&(B&dB&(\202b" "$\42\62\42\36\344*_\35\265\315\42\314\345\203\63\42\62\202b$B&(B&dB&(\202b" "$\42\62\42\36$*\253\253T\7\265\317(\316\345\203\63\42\66\42db$\42$&(\42$&d" "\42$&(\42db$\42\66\42\36\70:\255D\240P\0\265\320.\316\345\203\63\42\66\42db$" "\42$&(\42$&d\42$&(\42db$\42\66\42\36\62$\64$\62\42aLD\224\210L" "\0\265\321\42\314\345\203\63\42\62\202b$B&(B&dB&(\202b$\42\62\42\36AYT" "f\25\0\265\330\31\256\345\203;\272\202H(N(\250(N(N(\350 \202(:\7\265\354&\316" "\345\203\67:db($&h$&,$&hdb(:\36\62$\64$\62\42aLD\224\210" "L\0\266\20\27\215%\204\243ITXTXTXTXE=\232\340d\7\6\266\21\27\255\345\203\205" "\202(]P\34\5ap\330\201=\300\201pN\0\266\24\30\255\345\203\205\202(]P\34\5ap\330" "\201=tp\342\3\21\0\266\30\34\255\345\203\205\202(]P\34\5ap\330\201=\300\201p\320\201P" "\360\201\10\0\266%\32\255\345\203\205\202(]P\34\5ap\330\201=\202\272\250\260\250\270\42\0\266," "\42\316\345\203\65:\206\202\42&(MP\232\240\64AA\7\21\24\321qQqQ\61\7\22\321i\0" "\266\64\36\316\345\203\67fb&\253\230T\23k\302rr\60\21\17u\20\35v\20\26}\20\2\266H" ")\316\345\203\65$\64\244\202\42D(\211P\22\241$BA\7\21\24!\241!AQ!AQ!\7" "\23!\241!\241!\1\266d\35\314\345\203\67\266\202D(J(J(J(\252\202$\66(,(\354" "\200\42\66\1\266h\35\314\345\203\67bMDLTDLT\304\232\240\260\240\260\3\212x\200\330l\17" "\4\266\234\30\253\351\203\241\302*(*(*(*\250\242\36\356\200*\64+\0\266\235\27\255\345\203\205" "\202(]P\34\5=\300\201Yp\340\201pN\0\266\240\32\255\345\203\205\202(]P\34\5=\364\201" "Yp`L`p\360\201\10\0\266\244\34\255\345\203\205\202(]P\34\5=\300\201Yp\340\201p\320" "\201P\360\201\10\0\266\253\37\255\345\203\205\202(]P\34\5=\300\201Yp\134M\340AD\311LT" "LH\311\10\0\266\254\36\255\345\203\205\202(]P\34\5=\300\201Yp\340\201P\134P\134P\134\320" "\201\10\0\266\261\33\255\345\203\205\202(]P\34\5=\300\201Yp<`]TXT\134\21\0\266\324" "-\316\345\203\67\242\202$B(*B(*B(*B(*\242\202$\42\66\42\66\342\200\42QX" "DP\14EPXDPXD\0\266\360 \314\345\203\267\202D(J(J(J(\252\202$\66\366" "\200\42(,(,(,(,\0\266\364\33\354\345\203\227bH&L&\214b(\66\366\200\42*\237" "\4\206\304\306\36\14\266\370\35\354\345\203\227bH&L&\214b(\366\200\42*{\270\203\330\240\203\240" "\330\203\0\267\0\30\354\345\203\227bH&L&\214b(\366\200\42*{\300\253|u\267\1\32\354\345" "\203\227bH&L&\214b(\366\200\42*{\300\250\254\256R\35\267\5\34\354\345\203\227bH&L" "&\214b(\366\200\42*{TVaAaQ\26\0\267(\25M\245\204\243ITXTXTXT" "XE=\322\3\3\267)\26\255\345\203\205\202(]P\34\5=\364\201=\300\201pN\0\267,\27\255" "\345\203\205\202(]P\34\5=\364\201=tp\342\3\21\0\267/\31\255\345\203\205\202(]P\34\5" "=\364\201=\300\201Pp\342\3\21\0\267\60\33\255\345\203\205\202(]P\34\5=\364\201=\300\201p" "\320\201P\360\201\10\0\267\70\35\255\345\203\205\202(]P\34\5=\364\201=\300\201P\134P\134P\134" "\320\201\10\0\267\71\35\255\345\203\205\202(]P\34\5=\364\201=@\134P\134\320\201P\134\320\201\10" "\0\267;\31\255\345\203\205\202(]P\34\5=\364\201=\222\340\330\210@\231 \0\267D\32\314\345\203" "\67\266\202D(J(J(J(\252\202$\66\366\200\42\66\3\267H\33\314\345\203\67bMDLT" "DLT\304\232\330\330\3\212x\200\330l\17\4\267L\37\314\345\203\67bMDLTDLT\304\232" "\330\330\3\212x\210\203\330\240\203\240\330\203\0\267T\32\314\345\203\67bMDLTDLT\304\232\330" "\330\3\212x\220\253|u\267U\34\314\345\203\67bMDLTDLT\304\232\330\330\3\212x\220\250" "\254\256R\35\267`\30\254\345\203\67\266\202D(J(J(J(J(\252\202$\66\7\267d\30\314" "\345\203\67\226bH&L&L&\214b(\66yl\332\203\1\267h\35\314\345\203\67\226bH&L" "&L&\214b(\66\36\342 \66\350 (\366 \0\267p\30\314\345\203\67\226bH&L&L&" "\214b(\66\36\344*_\35\267q\32\314\345\203\67\226bH&L&L&\214b(\66\36$*\253" "\253T\7\267s\36\315\345\203\67\70bQDLXDLXDLX\304\242\340x\310\340\244\22qB" "\1\267u\34\314\345\203\67\226bH&L&L&\214b(\66\36\334*,(,\312\2\0\267|\32" "\255\351\203\63\70\346$\62$\62$\346\244\60&\60&\60\346$\70\33\0\267}\30\315\351\203\65\70\304" "(.(\304\210\62\304(\70\36\346 \70'\0\267\200\30\315\351\203\65\70\304(.(\304\210\62\304(" "\70Qp\306\7\42\0\267\204\35\315\351\203\65\70\304(.(\304\210\62\304(\70\36\346 \70\352 *" "\370 \4\0\267\214\35\315\351\203\65\70\304(.(\304\210\62\304(\70\36\350,*,*,*\354\4" "\0\267\215\35\315\351\203\65\70\304(.(\304\210\62\304(\70\36(*,*\354,*\354\4\0\267\217" "\33\315\351\203\65\70\304(.(\304\210\62\304(\70\36\62\70\251D\234P\4\0\267\220 \315\351\203\65" "\70\304(.(\304\210\62\304(\70\36.$\62$\60\42]LD\220\210L\0\267\221\32\315\351\203\65" "\70\304(.(\304\210\62\304(\70\36\211Y\252\260\60\33\0\267\222\34\315\351\203\65\70\304(.(\304" "\210\62\304(\70\36\350\64\70T\42N(\4\0\267\226\35\315\351\203\65\70\304(.(\304\210\62\304(" "\70\36\301\201XL`L\330\201\10\0\267\227\34\315\351\203\65\70\304(.(\304\210\62\304(\70\36," "\360@\254.*\256\10\0\267\230\42\255\351\203\63$\62\344 $YH\262\220\220\203\220\302\20\301\20\301" "\220\203\220\224!\221!\221!\1\267\231\32\313\351\203\61\42\60\342$\42*$\342\204.\342$\42\60\42" "\374 \64\7\267\234\35\313\351\203\61\42\60\342$\42*$\342\204.\342$\42\60\42\60\42$\64\323\3" "\1\267\240\37\313\351\203\61\42\60\342$\42*$\342\204.\342$\42\60\42\374 \64\346 &\364 \0" "\267\250 \313\351\203\61\42\60\342$\42*$\342\204.\342$\42\60\42\36\340(*(*(*\350\0" "\267\251 \313\351\203\61\42\60\342$\42*$\342\204.\342$\42\60\42\36 *(*\350(*\350\0" "\267\253\42\315\351\203\61\42\64\42\304$\42.$\42\304d$.\42\304$\42\64\42\36\64\70\251D\234" "P\0\267\254(\315\351\203\61\42\64\42\304$\42.$\42\304d$.\42\304$\42\64\42\36.$\62" "$\60\42]LD\220\210L\0\267\255\36\313\351\203\61\42\60\342$\42*$\342\204.\342$\42\60\42" "\36\270*QTT\5\0\267\264\32\255\351\203\63\70\346$\62$\62\344\200$&\60&\260\60\346$\70" "\33\0\267\265\31\315\351\203\65\70\304(.\350@($\362@(\70\36\346 \70'\0\267\270\32\315\351" "\203\65\70\304(.\350@($\362@(\70\36$\70\343\3\21\0\267\307\34\315\351\203\65\70\304(." "\350@($\362@(\70\36\62\70\251D\234P\4\0\267\311\33\315\351\203\65\70\304(.\350@($" "\362@(\70\36\211Y\252\260\60\33\0\267\354\26\255\351\203\71\370 *,*,\352 \244V\355AT" "p\6\267\355\24\313\351\203\65\364(*\350\204\362(\64\36\364 \64\3\267\360\25\313\351\203\65\364(*" "\350\204\362(\64\36\60\64\351\301\0\267\364\30\313\351\203\65\364(*\350\204\362(\64\374 \64\346 &" "\364 \0\267\374\31\313\351\203\65\364(*\350\204\362(\64\36\340(*(*(*\350\0\267\375\31\313" "\351\203\65\364(*\350\204\362(\64\36 *(*\350(*\350\0\267\377\33\314\351\203\65\66\302(," "(\302d\42\62\302(\66\36.\66\245D\230P\0\270\0!\315\351\203\65\70\304(.(\304d$\62" "\304(\70\36.$\62$\60\42]LD\220\210L\0\270\1\30\313\351\203\65\364(*\350\204\362(\64" "\36\326(,&,\310\2\0\270\7\30\313\351\203\65\364(*\350\204\362(\64\36$\354@\250*U\11" "\0\270\10&\255\351\203\65\42\64\342 &\42,&\42,&\342 bB\62B\62B\62\342 &\42" "\64\42\64\42\64\42\0\270\11\33\313\351\203\61\42\60\342$\42*$\342`B.\342$\42\60\42\374 " "\64\7\270\14\34\313\351\203\61\42\60\342$\42*$\342`B.\342$\42\60\42:\64\323\3\1\270\20" " \313\351\203\61\42\60\342$\42*$\342`B.\342$\42\60\42\374 \64\346 &\364 \0\270\30" "!\313\351\203\61\42\60\342$\42*$\342`B.\342$\42\60\42\36\340(*(*(*\350\0\270" "\31!\313\351\203\61\42\60\342$\42*$\342`B.\342$\42\60\42\36 *(*\350(*\350\0" "\270\33#\315\351\203\61\42\64\42\304$\42.$\42\344@\42$.\42\304$\42\64\42\36\64\70\251D" "\234P\0\270\35\37\313\351\203\61\42\60\342$\42*$\342`B.\342$\42\60\42\36\270*QTT" "\5\0\270$\27\255\351\203\71\370 *,*,\344\200JV\260\366 *\70\3\270%\26\313\351\203\65" "\364(*\344@H\356@(\64\36\364 \64\3\270(\26\313\351\203\65\364(*\344@H\356@(\64" "qh\322\203\1\270,\32\313\351\203\65\364(*\344@H\356@(\64\374 \64\346 &\364 \0\270" "\64\33\313\351\203\65\364(*\344@H\356@(\64\36\340(*(*(*\350\0\270\65\33\313\351\203" "\65\364(*\344@H\356@(\64\36 *(*\350(*\350\0\270\67\33\314\351\203\65\66\302(," "d\302(\42n\302(\66\36.\66\245D\230P\0\270\70!\315\351\203\65\70\304(.d\304($n" "\304(\70\36.$\62$\60\42]LD\220\210L\0\270\71\32\313\351\203\65\364(*\344@H\356@" "(\64\36\326(,&,\310\2\0\270@&\255\351\203\65\42\64\342 &\42,&\42,b\342 &" "B\62BnB\62\342 &\42\64\42\64\42\64\42\0\270D\35\313\351\203\61\42\60\342$\42\212\342$" "Bj\342$\42\60\42\60\42$\64\323\3\1\270Q \313\351\203\61\42\60\342$\42\212\342$Bj\342" "$\42\60\42\36 *(*\350(*\350\0\270S\42\315\351\203\61\42\64\42\304$\42\216\42\304$\42" "$j\42\304$\42\64\42\36\64\70\251D\234P\0\270\134\25\215%\204\345@\70\321\201Pp\360\201<" "Xp\262\3\3\270]\30\315\345\203\345@\70\350@(\370@\60\70\354\300\36\340@\70'\0\270`\31" "\315\345\203\345@\70\350@(\370@\60\70\354\300\36:\70\361\201\10\0\270d\35\315\345\203\345@\70\350" "@(\370@\60\70\354\300\36\340@\70\350@(\370@\4\0\270l\37\315\345\203\345@\70\350@(\370" "@\60\70\354\300\36\340@(.(.(.\350@\4\0\270m\37\315\345\203\345@\70\350@(\370@" "\60\70\354\300\36 .(.\350@(.\350@\4\0\270o\33\315\345\203\345@\70\350@(\370@\60" "\70\354\300\36IplD\240L\20\0\270q\33\315\345\203\345@\70\350@(\370@\60\70\354\300\36A" "]TXT\134\21\0\270x \316\345\203\65:\350$\64$\64$\350$(\220\42\60\350$.*." "*\346@\42:\15\0\270|\34\316\345\203\67\346&\62&\346f\42\62\346&,\311\301D<Pt\326" "\7\42\0\270\215\34\316\345\203\67\346&\62&\346f\42\62\346&,\311\301D<*\273\260\354l\0\270" "\250'\316\345\203\63\42\346\42eD\232\213\231\270\210\230\213dA\21!\7\21\351!CBC\42#\22" "\306DD\211\310\4\270\260\35\314\345\203\67\305M\134L\134L\304MDdDd\304MPXP\330\1" "El\2\270\264\33\314\345\203\67\342&.&\342&\42\62\342&(\354\200\42\36 \66\333\3\1\270\270" "\37\314\345\203\67\342&.&\342&\42\62\342&(\354\200\42\36\342 \66\350 (\366 \0\270\300\32" "\314\345\203\67\342&.&\342&\42\62\342&(\354\200\42\36\344*_\35\270\301\34\314\345\203\67\342&" ".&\342&\42\62\342&(\354\200\42\36$*\253\253T\7\270\303\36\315\345\203\67\344&\60&\344&" "$\62\344&*,\342`\42\36\62\70\251D\234P\0\270\305\36\314\345\203\67\342&.&\342&\42\62" "\342&(\354\200\42\36\334*,(,\312\2\0\270\314\32\215%\204\345@\70\321\201Pp\360\201XL" "`L`L`L\320\201\1\270\320\33\315\345\203\345@\70\350@(\370@,&\60&\350\300\36:\70" "\361\201\10\0\270\324\37\315\345\203\345@\70\350@(\370@,&\60&\350\300\36\340@\70\350@(\370" "@\4\0\270\335!\315\345\203\345@\70\350@(\370@,&\60&\350\300\36 .(.\350@(." "\350@\4\0\270\337\35\315\345\203\345@\70\350@(\370@,&\60&\350\300\36IplD\240L\20" "\0\270\341\35\315\345\203\345@\70\350@(\370@,&\60&\350\300\36A]TXT\134\21\0\270\350" "\25\253\351\203\343@\64\311\201Hh\350\201\360\1UhV\0\270\351\30\315\345\203\345@\70\350@(\370" "@\36\340\300,\70\360@\70'\0\270\354\33\315\345\203\345@\70\350@(\370@\36\372\300,\70\60&" "\60\70\370@\4\0\270\360\35\315\345\203\345@\70\350@(\370@\36\340\300,\70\360@\70\350@(\370" "@\4\0\270\370\37\315\345\203\345@\70\350@(\370@\36\340\300,\70\360@(.(.(.\350@" "\4\0\270\371\37\315\345\203\345@\70\350@(\370@\36\340\300,\70\60.(.\350@(.\350@\4" "\0\270\373\34\315\345\203\345@\70\350@(\370@\36\340\300,\70\36\64\70\66\42P&\10\0\270\375\34" "\315\345\203\345@\70\350@(\370@\36\340\300,\70\36\260.*,*\256\10\0\271\4$\314\345\203\67" "\342 $\60$\60$\342 $\42\62\42\62\342 $\366\200\42(,(\244(,(,\0\271\30)" "\356\345\203\341 &\62&\344 &$\64\344 &:\344`\42.\204.*\36\62$\64$\62\42a" "LD\224\210L\0\271 /\316\345\203\67\42\342 $\42\60$\42\60$\42\342 $\42eD\312\210" "\210\203\220\210\330\210\3\212Da\21A\61\24Aa\21Aa\21\1\271<$\314\345\203\67\342 $\60" "$\60$\342 $\42\62\42\62\342 $\366\200\42(,(,(,(,\0\271=\31\354\345\203\341" " &.\346@F\364@&\366\200\42*{D\7\261\31\271@\34\354\345\203\341 &.\346@F\364" "@&\66\366\200\42*\237\4\206\304\306\36\14\271D\36\354\345\203\341 &.\346@F\364@&\366\200" "\42*{\270\203\330\240\203\240\330\203\0\271L\31\354\345\203\341 &.\346@F\364@&\366\200\42*" "{\300\253|u\271O\42\355\345\203\341 &\60&\342 &\42\64\342 &\70\342`\42,*,\36" "ApR\211\70\241\0\271Q\35\354\345\203\341 &.\346@F\364@&\366\200\42*{TVaA" "aQ\26\0\271X\34\255\345\203\345@\70\321\201Pp\360\201<\300\201QL`L`L`L\20\0" "\271Y\32\315\345\203\345@\70\350@(\370@\36\340\300(&\60&\354@\70'\0\271\134\36\315\345\203" "\345@\70\350@(\370@\36\372\300(&\60&,\42&,\70\370@\4\0\271`\37\315\345\203\345@" "\70\350@(\370@\36\340\300(&\60&\354@\70\350@(\370@\4\0\271h!\315\345\203\345@\70" "\350@(\370@\36\340\300(&\60&\354@(.(.(.\350@\4\0\271i!\315\345\203\345@" "\70\350@(\370@\36\340\300(&\60&,.(.\350@(.\350@\4\0\271k\36\315\345\203\345" "@\70\350@(\370@\36\340\300(&\60&\36\60\70\66\42P&\10\0\271m\36\315\345\203\345@\70" "\350@(\370@\36\340\300(&\60&\36\254.*,*\256\10\0\271t\23M\245\204\345@\70\321\201" "Pp\360\201<\364\201\1\271u\27\315\345\203\345@\70\350@(\370@\36\372\300\36\340@\70'\0\271" "x\30\315\345\203\345@\70\350@(\370@\36\372\300\36:\70\361\201\10\0\271|\34\315\345\203\345@\70" "\350@(\370@\36\372\300\36\340@\70\350@(\370@\4\0\271\204\36\315\345\203\345@\70\350@(\370" "@\36\372\300\36\340@(.(.(.\350@\4\0\271\205\36\315\345\203\345@\70\350@(\370@\36" "\372\300\36 .(.\350@(.\350@\4\0\271\207\32\315\345\203\345@\70\350@(\370@\36\372\300" "\36IplD\240L\20\0\271\211\32\315\345\203\345@\70\350@(\370@\36\372\300\36A]TXT" "\134\21\0\271\212\32\315\345\203\345@\70\350@(\370@\36\372\300\36\201ilD\240L\14\0\271\215\34" "\315\345\203\345@\70\350@(\370@\36\372\300\36\340@(\370@(\370@\4\0\271\216\34\315\345\203\345" "@\70\350@(\370@\36\372\300\36\372@,&\60&\354@\4\0\271\254\26\253\351\203\65\364 &," "&,\346 FR\345ALh\6\271\255\24\313\351\203\65\364(*\350H\362(\64\36\364 \64\3\271" "\260\24\313\351\203\65\364(*\350H\362(\64qh\322\203\1\271\264\30\313\351\203\65\364(*\350H\362" "(\64\374 \64\346 &\364 \0\271\274\31\313\351\203\65\364(*\350H\362(\64\36\340(*(*" "(*\350\0\271\275\31\313\351\203\65\364(*\350H\362(\64\36 *(*\350(*\350\0\271\277\33" "\314\351\203\65\66\302(,(\302(\42\62\302(\66\36.\66\245D\230P\0\271\301\30\313\351\203\65\364" "(*\350H\362(\64\36\326(,&,\310\2\0\271\310\42\256\345\203\65:\346 $&,$&," "$&,\244,$&,$&,$\346 $:\33\0\271\311\35\316\345\203\67\304*$(*$(" "*$(\212(*\304*:\36\352 :'\0\271\314\35\316\345\203\67\304*$(*$(*$(" "\212(*\304*:Ut\326\7\42\0\271\316%\317\345\203\67\306*&(*&(*&(j\42(" "*\306*<\36,.,\350&l*MP\311\10\0\271\317\36\316\345\203\67\304*$(*$(*" "$(\212(*\304*:\36\354.:\365\11\0\271\320\42\316\345\203\67\304*$(*$(*$(" "\212(*\304*:\36\352 :\354 ,\372 \4\0\271\321$\316\345\203\67\304*$(*$(*" "$(\212(*\304*:\36\244\242.*\246*&\62\246*\4\0\271\322&\316\345\203\67\304*$(" "*$(*$(\212(*\304*:\36\244\242.\42&\246\42&ULLE\11\0\271\330\42\316\345" "\203\67\304*$(*$(*$(\212(*\304*:\36\354.*.*.*\356\4\0\271\331\42" "\316\345\203\67\304*$(*$(*$(\212(*\304*:\36,*.*\356.*\356\4\0\271" "\333 \316\345\203\67\304*$(*$(*$(\212(*\304*:\36\66:\255D\240P\4\0\271" "\335\36\316\345\203\67\304*$(*$(*$(\212(*\304*:\36\225]Xv\66\0\271\336!" "\316\345\203\67\304*$(*$(*$(\212(*\304*:\36\354\66:V\42P(\4\0\271\341" "\37\316\345\203\67\304*$(*$(*$(\212(*\304*:\36\354.\372.\372\4\0\271\343!" "\316\345\203\67\304*$(*$(*$(\212(*\304*:\36\60\362@\256\60*\260\10\0\271\344" "'\256\345\203\65$\64\344@$D,$D,$D,\244,$D,$D,$\344@$iH" "hHhH\0\271\345\36\314\345\203\63\342&B(&B(&B(\206(&\342&\42\62\42\36\342" " \66\7\271\350 \314\345\203\63\342&B(&B(&B(\206(&\342&\42\62\42\62\42&\66" "\333\3\1\271\354#\314\345\203\63\342&B(&B(&B(\206(&\342&\42\62\42\36\342 \66" "\350 (\366 \0\271\364\36\314\345\203\63\342&B(&B(&B(\206(&\342&\42\62\42\36" "\344*_\35\271\365 \314\345\203\63\342&B(&B(&B(\206(&\342&\42\62\42\36$*" "\253\253T\7\271\367'\316\345\203\63\42\304&\42$(&\42$(&\42$(f$(&\42\304&" "\42\66\42\36\70:\255D\240P\0\271\370-\316\345\203\63\42\304&\42$(&\42$(&\42$(" "f$(&\42\304&\42\66\42\36\62$\64$\62\42aLD\224\210L\0\271\371 \314\345\203\63\342" "&B(&B(&B(\206(&\342&\42\62\42\36AYTf\25\0\271\372\42\314\345\203\63\342" "&B(&B(&B(\206(&\342&\42\62\42\36\344\62\66R\42L(\0\272\0!\256\345\203" "\65:\346 $&,$&,\244,$&,$&,\244,$\346 $:\33\0\272\1\35\316\345" "\203\67\304*$(*$(\212(*$(\352@*:\36\352 :'\0\272\10\42\316\345\203\67\304" "*$(*$(\212(*$(\352@*:\36\352 :\354 ,\372 \4\0\272\25\36\316\345\203" "\67\304*$(*$(\212(*$(\352@*:\36\225]Xv\66\0\272\70\32\256\345\203;\372" "@J,J,J,\244,J,J,\352@*:\3\272\71\27\314\345\203\367J(J(J(\206" "(\352*\66\36\372 \66\3\272<\27\314\345\203\367J(J(J(\206(\352*\66\36\66\333\203\1" "\272@\34\314\345\203\367J(J(J(\206(\352*\66\36\342 \66\350 (\366 \0\272B\37\314" "\345\203\367J(J(J(\206(\352*\66\272\242*\42&\242\42&\42*&\242\1\272H\27\314\345" "\203\367J(J(J(\206(\352*\66\36\344*_\35\272I\31\314\345\203\367J(J(J(\206" "(\352*\66\36$*\253\253T\7\272K \315\345\203\67\302*\42(*\42(*\42(f\42(*" "\302*\70\36\62\70\251D\234P\0\272M\33\314\345\203\367J(J(J(\206(\352*\66\36\334*" ",(,\312\2\0\272N\33\314\345\203\367J(J(J(\206(\352*\66\36\344\62\66R\42L(" "\0\272S\34\314\345\203\367J(J(J(\206(\352*\66\36(\356@\252,*\254\4\0\272T)" "\256\345\203\67\42\66\342@&B,&B,&B,bB,&B,&B,&\342@&\42\66" "\42\66\42\66\42\0\272U\37\314\345\203\63\342&B(&B(&B(bB(&\342&\42\62\42" "\36\342 \66\7\272X \314\345\203\63\342&B(&B(&B(bB(&\342&\42\62\42\36" " \66\333\3\1\272\134$\314\345\203\63\342&B(&B(&B(bB(&\342&\42\62\42\36" "\342 \66\350 (\366 \0\272d\37\314\345\203\63\342&B(&B(&B(bB(&\342&" "\42\62\42\36\344*_\35\272e!\314\345\203\63\342&B(&B(&B(bB(&\342&\42" "\62\42\36$*\253\253T\7\272g(\316\345\203\63\42\304&\42$(&\42$(&\42$(b\42" "$(&\42\304&\42\66\42\36\70:\255D\240P\0\272h.\316\345\203\63\42\304&\42$(&\42" "$(&\42$(b\42$(&\42\304&\42\66\42\36\62$\64$\62\42aLD\224\210L\0\272" "i!\314\345\203\63\342&B(&B(&B(bB(&\342&\42\62\42\36AYTf\25\0" "\272p\32\256\345\203;\372@J,J,\244,J,J,\244,\352@*:\3\272q\30\314\345\203" "\367J(J(\206(J(\346@*\66\36\372 \66\3\272t\30\314\345\203\367J(J(\206(J" "(\346@*\66yl\332\203\1\272x\35\314\345\203\367J(J(\206(J(\346@*\66\36\342 " "\66\350 (\366 \0\272\203 \315\345\203\67\302*\42(*\42(f\42(*\42(f\302*\70\36" "\62\70\251D\234P\0\272\204&\316\345\203\67\304*$(*$(f$(*$(f\304*:\36" "\62$\64$\62\42aLD\224\210L\0\272\205\34\314\345\203\367J(J(\206(J(\346@*\66" "\36\334*,(,\312\2\0\272\207\34\314\345\203\367J(J(\206(J(\346@*\66\36*\360\60" "\64\42NF\0\272\214)\256\345\203\67\42\66\342@&B,&B,bB,&B,&B,b" "B,&\342@&\42\66\42\66\42\66\42\0\272\250\30\215%\204\343\200$\62$\62$\62$\62\344\200" "\36Mp\262\3\3\272\251\32\315\345\203\345@(.(.(.\350@\60\70\354\300\36\340@\70'\0" "\272\253 \315\345\203\345@(.(.(.\350@\60\70\354\300\36\232(.(.&\42,B&\0" "\272\254\33\315\345\203\345@(.(.(.\350@\60\70\354\300\36:\70\361\201\10\0\272\260\37\315\345" "\203\345@(.(.(.\350@\60\70\354\300\36\340@\70\350@(\370@\4\0\272\262#\315\345\203" "\345@(.(.(.\350@\60\70\354\300\274\242,\42&\244\42&$*&\244\242\2\0\272\270!" "\315\345\203\345@(.(.(.\350@\60\70\354\300\36\340@(.(.(.\350@\4\0\272\271" "!\315\345\203\345@(.(.(.\350@\60\70\354\300\36 .(.\350@(.\350@\4\0\272" "\273\35\315\345\203\345@(.(.(.\350@\60\70\354\300\36IplD\240L\20\0\272\275\35\315" "\345\203\345@(.(.(.\350@\60\70\354\300\36A]TXT\134\21\0\272\304%\316\345\203\65" ":\350$(*$(*$(*$(*\204\42*$\350$.*.*\346@\42:\15\0\272\310" "\35\316\345\203\67\346&UL\252\230\211\250\230\230\233\260$\7\23\361@\321Y\37\210\0\272\330$\316\345" "\203\67\346&UL\252\230\211\250\230\230\233\260$\7\23\361\220!\241!\221\21\11c\42\242Dd\2\272" "\331\35\316\345\203\67\346&UL\252\230\211\250\230\230\233\260$\7\23\361\250\354\302\262\263\1\272\374\42\314" "\345\203\67\305MDTLDTLDTLDTLDTL\304MPXP\330\1El\2\273\0" "\36\314\345\203\67\342&\42*&\42*&\42*&\342&(\354\200\42\36 \66\333\3\1\273\4\42\314" "\345\203\67\342&\42*&\42*&\42*&\342&(\354\200\42\36\342 \66\350 (\366 \0\273\15" "\37\314\345\203\67\342&\42*&\42*&\42*&\342&(\354\200\42\36$*\253\253T\7\273\17!" "\315\345\203\67\344&$*&$*&$*&\344&*,\342`\42\36\62\70\251D\234P\0\273\21" "!\314\345\203\67\342&\42*&\42*&\42*&\342&(\354\200\42\36\334*,(,\312\2\0\273" "\30\35\215%\204\343\200$\62$\62$\62$\62\344\200\36&aL`L`L\320\201\1\273\34\35\315" "\345\203\345@(.(.(.\350@,&\60&\350\300\36:\70\361\201\10\0\273 !\315\345\203\345" "@(.(.(.\350@,&\60&\350\300\36\340@\70\350@(\370@\4\0\273)#\315\345\203" "\345@(.(.(.\350@,&\60&\350\300\36 .(.\350@(.\350@\4\0\273+\37" "\315\345\203\345@(.(.(.\350@,&\60&\350\300\36IplD\240L\20\0\273\64\21\253" "\351\203\341\240R\227\7\265\7T\241Y\1\273\65\32\315\345\203\345@(.(.(.\350@\36\340\300" ",\70\360@\70'\0\273\66 \315\345\203\345@(.(.(.\350@\36\340\300,\70\36\252\242," "*,*,*\2\0\273\70\35\315\345\203\345@(.(.(.\350@\36\372\300,\70\60&\60\70" "\370@\4\0\273;\35\315\345\203\345@(.(.(.\350@\36\340\300,\70\360@(\70\361\201\10" "\0\273<\37\315\345\203\345@(.(.(.\350@\36\340\300,\70\360@\70\350@(\370@\4\0" "\273=!\315\345\203\345@(.(.(.\350@\36\340\300,\70\256\242,*\244*$\62\244*\2" "\0\273>$\315\345\203\345@(.(.(.\350@\36\340\300,\70\256\242,\42&\244\42&$*" "&\244\242\2\0\273D!\315\345\203\345@(.(.(.\350@\36\340\300,\70\360@(.(." "(.\350@\4\0\273E!\315\345\203\345@(.(.(.\350@\36\340\300,\70\60.(.\350" "@(.\350@\4\0\273G\36\315\345\203\345@(.(.(.\350@\36\340\300,\70\36\64\70\66" "\42P&\10\0\273I\36\315\345\203\345@(.(.(.\350@\36\340\300,\70\36\260.*,*" "\256\10\0\273M\37\315\345\203\345@(.(.(.\350@\36\340\300,\70\360@(\370@(\370@" "\4\0\273O\35\315\345\203\345@(.(.(.\350@\36\340\300,\70\341\201X]T\134\21\0\273" "P(\314\345\203\67\342 $\42,$\42,$\42,$\42,$\42,$\342 $\366\200\42(," "(\244(,(,\0\273T\35\354\345\203\67\342&\42*&\42*&\342&\66\366\200\42*\204*'" "\261i\17\6\273X!\354\345\203\67\342&\42*&\42*&\342&\366\200\42*\204*=\304Al\320" "AP\354A\0\273a\36\354\345\203\67\342&\42*&\42*&\342&\366\200\42*\204*=HTV" "W\251\16\273c!\355\345\203\67\344&$*&$*&\344&\70\342`\42,\204,*\36\62\70\251" "D\234P\0\273l\60\316\345\203\67\42\342 $\42YHD\262\220\210d!\21\311B\42\222\205DD" "\34\204D\304F\34P$\12\213\10\212\241\10\12\213\10\12\213\10\273\210(\314\345\203\67\342 $\42," "$\42,$\42,$\42,$\42,$\342 $\366\200\42(,(,(,(,\0\273\214\35\354" "\345\203\67\342&\42*&\42*&\342&\66\366\200\42*\237\4\206\304\306\36\14\273\220\37\354\345\203\67" "\342&\42*&\42*&\342&\366\200\42*{\270\203\330\240\203\240\330\203\0\273\244 \255\345\203\343\200" "$\62$\62$\62$\62$\62\344\200\374\300(&\60&\60&\60&\10\0\273\250 \315\345\203\345@" "(.(.(.\350@\36\372\300(&\60&,\42&,\70\370@\4\0\273\254!\315\345\203\345@" "(.(.(.\350@\36\340\300(&\60&\354@\70\350@(\370@\4\0\273\264#\315\345\203\345" "@(.(.(.\350@\36\340\300(&\60&\354@(.(.(.\350@\4\0\273\267 \315" "\345\203\345@(.(.(.\350@\36\340\300(&\60&\36\60\70\66\42P&\10\0\273\300\26M" "\245\204\343\200$\62$\62$\62$\62\344\200\36\351\201\1\273\304\32\315\345\203\345@(.(.(." "\350@\36\372\300\36:\70\361\201\10\0\273\310\36\315\345\203\345@(.(.(.\350@\36\372\300\36" "\340@\70\350@(\370@\4\0\273\320 \315\345\203\345@(.(.(.\350@\36\372\300\36\340@" "(.(.(.\350@\4\0\273\323\34\315\345\203\345@(.(.(.\350@\36\372\300\36Ip" "lD\240L\20\0\273\370\32\254\345\203\67\366@F,F,F,F,F,F,\346@&\66\3" "\273\371\27\314\345\203\367J(J(J(J(\352*\66\36\372 \66\3\273\374\27\314\345\203\367J(" "J(J(J(\352*\66yl\332\203\1\273\377\30\314\345\203\367J(J(J(J(\352*\66" "\36\344*\66\355\1\274\0\34\314\345\203\367J(J(J(J(\352*\66\36\342 \66\350 (\366" " \0\274\2\37\314\345\203\367J(J(J(J(\352*\66\272\242*\42&\242\42&\42*&\242" "\1\274\10\27\314\345\203\367J(J(J(J(\352*\66\36\344*_\35\274\11\31\314\345\203\367J" "(J(J(J(\352*\66\36$*\253\253T\7\274\13 \315\345\203\67\302*\42(*\42(*" "\42(*\42(*\302*\70\36\62\70\251D\234P\0\274\14&\316\345\203\67\304*$(*$(*" "$(*$(*\304*:\36\62$\64$\62\42aLD\224\210L\0\274\15\33\314\345\203\367J(" "J(J(J(\352*\66\36\334*,(,\312\2\0\274\17\33\314\345\203\367J(J(J(J" "(\352*\66\36*\360\60\64\42NF\0\274\21\31\314\345\203\367J(J(J(J(\352*\66\36" "\344*\366*\366\0\274\24 \255\351\203\63\70&*$&*$&*$\346\244*$&*$&*" "$\346$\70\33\0\274\25\33\316\345\203\67:$(*$(*\304\212(*\304*:\36\352 :'" "\0\274\26\37\316\345\203\67:$(*$(*\304\212(*\304*:\36E\273\250\270\250\270\250\20\0" "\274\27!\316\345\203\67:$(*$(*\304\212(*\304*:\36IQ`P`LD\134\204L" "\0\274\30\33\316\345\203\67:$(*$(*\304\212(*\304*:Ut\326\7\42\0\274\33\34\316" "\345\203\67:$(*$(*\304\212(*\304*:\36\354.:\365\11\0\274\34 \316\345\203\67:" "$(*$(*\304\212(*\304*:\36\352 :\354 ,\372 \4\0\274\35\42\316\345\203\67:" "$(*$(*\304\212(*\304*:\36\244\242.*\246*&\62\246*\4\0\274\36$\316\345\203" "\67:$(*$(*\304\212(*\304*:\36\244\242.\42&\246\42&ULLE\11\0\274\37" "%\316\345\203\67:$(*$(*\304\212(*\304*:\36\244\42&.\42&\246\242&*&\246" "\242\4\0\274$ \316\345\203\67:$(*$(*\304\212(*\304*:\36\354.*.*.*" "\356\4\0\274% \316\345\203\67:$(*$(*\304\212(*\304*:\36,*.*\356.*" "\356\4\0\274'\36\316\345\203\67:$(*$(*\304\212(*\304*:\36\66:\255D\240P\4" "\0\274)\34\316\345\203\67:$(*$(*\304\212(*\304*:\36\225]Xv\66\0\274-\35" "\316\345\203\67:$(*$(*\304\212(*\304*:\36\354.\372.\372\4\0\274\60'\255\351\203" "\63$\62D*$D*$D*$\344 \244*$D*$D*$\344 $eHdHdH" "\0\274\61\35\314\345\203\63\42\62B(&B(&\342\206(&\342&\42\62\42\36\342 \66\7\274\64" "\37\314\345\203\63\42\62B(&B(&\342\206(&\342&\42\62\42\62\42&\66\333\3\1\274\70\42" "\314\345\203\63\42\62B(&B(&\342\206(&\342&\42\62\42\36\342 \66\350 (\366 \0\274" "@\35\314\345\203\63\42\62B(&B(&\342\206(&\342&\42\62\42\36\344*_\35\274A\37\314" "\345\203\63\42\62B(&B(&\342\206(&\342&\42\62\42\36$*\253\253T\7\274C%\316\345" "\203\63\42\66\42$(&\42$(&\42\304f$(&\42\304&\42\66\42\36\70:\255D\240P\0" "\274D+\316\345\203\63\42\66\42$(&\42$(&\42\304f$(&\42\304&\42\66\42\36\62$" "\64$\62\42aLD\224\210L\0\274E\37\314\345\203\63\42\62B(&B(&\342\206(&\342&" "\42\62\42\36AYTf\25\0\274I\37\314\345\203\63\42\62B(&B(&\342\206(&\342&\42" "\62\42\36\344*\366*\366\0\274L \255\351\203\63\70&*$&*$&*\344\200$&*$&" "*\244*$\346$\70\33\0\274M\34\316\345\203\67:$(*$(\352@*$(\352@*:\36" "\352 :'\0\274P\35\316\345\203\67:$(*$(\352@*$(\352@*:\36(:\353\3" "\21\0\274]!\316\345\203\67:$(*$(\352@*$(\352@*:\36,*.*\356.*" "\356\4\0\274\204\32\255\351\203\71X*J*J*\352 \244*J*J*\352 *\70\3\274\205\26" "\314\345\203\67V(J(\352\206(\352*\66\36\372 \66\3\274\210\26\314\345\203\67V(J(\352\206" "(\352*\66\36\66\333\203\1\274\213\27\314\345\203\67V(J(\352\206(\352*\66\36\344*\66\355\1" "\274\214\33\314\345\203\67V(J(\352\206(\352*\66\36\342 \66\350 (\366 \0\274\216\36\314\345" "\203\67V(J(\352\206(\352*\66\272\242*\42&\242\42&\42*&\242\1\274\224\26\314\345\203\67" "V(J(\352\206(\352*\66\36\344*_\35\274\225\30\314\345\203\67V(J(\352\206(\352*\66" "\36$*\253\253T\7\274\227\36\315\345\203\67\70\42(*\42(*\302f\42(*\302*\70\36\62\70" "\251D\234P\0\274\231\32\314\345\203\67V(J(\352\206(\352*\66\36\334*,(,\312\2\0\274" "\232\32\314\345\203\67V(J(\352\206(\352*\66\36\344\62\66R\42L(\0\274\240)\255\351\203\65" "\42\64B*&B*&B*&\342 bB*&B*&B*&\342 &\42\64\42\64\42\64" "\42\0\274\241\36\314\345\203\63\42\62B(&B(&\342bB(&\342&\42\62\42\36\342 \66\7" "\274\244\37\314\345\203\63\42\62B(&B(&\342bB(&\342&\42\62\42\36 \66\333\3\1\274" "\247\37\314\345\203\63\42\62B(&B(&\342bB(&\342&\42\62\42\36\344*\66\355\1\274\250" "#\314\345\203\63\42\62B(&B(&\342bB(&\342&\42\62\42\36\342 \66\350 (\366 " "\0\274\260\36\314\345\203\63\42\62B(&B(&\342bB(&\342&\42\62\42\36\344*_\35\274" "\261 \314\345\203\63\42\62B(&B(&\342bB(&\342&\42\62\42\36$*\253\253T\7\274" "\263&\316\345\203\63\42\66\42$(&\42$(&\42\304b\42$(&\42\304&\42\66\42\36\70:" "\255D\240P\0\274\264,\316\345\203\63\42\66\42$(&\42$(&\42\304b\42$(&\42\304&" "\42\66\42\36\62$\64$\62\42aLD\224\210L\0\274\265 \314\345\203\63\42\62B(&B(&" "\342bB(&\342&\42\62\42\36AYTf\25\0\274\274\32\255\351\203\71X*J*J*\344\200" "J*J*\244*\352 *\70\3\274\275\30\314\345\203\67V(J(\346@J(\346@*\66\36\372" " \66\3\274\300\30\314\345\203\67V(J(\346@J(\346@*\66yl\332\203\1\274\304\35\314\345" "\203\67V(J(\346@J(\346@*\66\36\342 \66\350 (\366 \0\274\315\32\314\345\203\67V" "(J(\346@J(\346@*\66\36$*\253\253T\7\274\317\36\315\345\203\67\70\42(*\42(f" "\302*\42(f\302*\70\36\62\70\251D\234P\0\274\320$\316\345\203\67:$(*$(f\304*" "$(f\304*:\36\62$\64$\62\42aLD\224\210L\0\274\321\34\314\345\203\67V(J(\346" "@J(\346@*\66\36\334*,(,\312\2\0\274\325\32\314\345\203\67V(J(\346@J(\346" "@*\66\36\344*\366*\366\0\274\330)\255\351\203\65\42\64B*&B*&B*b\342 &B" "*&B*bB*&\342 &\42\64\42\64\42\64\42\0\274\334 \314\345\203\63\42\62B(&B" "(b\342&B(b\342&\42\62\42\62\42&\66\333\3\1\274\364\32\215%\204%.(.(.\350" "@(.(.\350@\36,\70\331\201\1\274\365\32\315\345\203%.(.\350@(.\350@\60\70\354" "\300\36\340@\70'\0\274\366\37\315\345\203%.(.\350@(.\350@\60\70\354\300\36\270\242,*" ",*,*\2\0\274\370\33\315\345\203%.(.\350@(.\350@\60\70\354\300\36:\70\361\201\10" "\0\274\374\37\315\345\203%.(.\350@(.\350@\60\70\354\300\36\340@\70\350@(\370@\4\0" "\275\4!\315\345\203%.(.\350@(.\350@\60\70\354\300\36\340@(.(.(.\350@\4" "\0\275\5!\315\345\203%.(.\350@(.\350@\60\70\354\300\36 .(.\350@(.\350@" "\4\0\275\7\35\315\345\203%.(.\350@(.\350@\60\70\354\300\36IplD\240L\20\0\275" "\11\35\315\345\203%.(.\350@(.\350@\60\70\354\300\36A]TXT\134\21\0\275\20%\316" "\345\203\65:(*$(*$(*$\350$(*\204\42*$\350$.*.*\346@\42:\15" "\0\275\24\36\316\345\203\67&*&UL\314\315DTL\314MX\222\203\211x\240\350\254\17D\0\275" "$%\316\345\203\67&*&UL\314\315DTL\314MX\222\203\211x\310\220\320\220\310\210\204\61\21" "Q\42\62\1\275,+\316\345\203\65$\64$\42*$ETH\212\250\220\24')\242B(\242BR" "\234$\212\12\11\212\12\71\230\10\11\15\11\15\11\275@)\316\345\203\63\42&*\42MTD\232\213\231" "\250\210\64\27\311\202\42B\16\42\322C\206\204\206DF$\214\211\210\22\221\11\275H\42\314\345\203\67E" "TLDTLDTL\304MDTLDTL\304MPXP\330\1El\2\275I\35\314\345\203" "\67\42*&\42*&\342&\42*&\342&(\354\200\42\36\342 \66\7\275L\36\314\345\203\67\42*" "&\42*&\342&\42*&\342&(\354\200\42\36 \66\333\3\1\275P\42\314\345\203\67\42*&\42" "*&\342&\42*&\342&(\354\200\42\36\342 \66\350 (\366 \0\275X\35\314\345\203\67\42*" "&\42*&\342&\42*&\342&(\354\200\42\36\344*_\35\275Y\37\314\345\203\67\42*&\42*" "&\342&\42*&\342&(\354\200\42\36$*\253\253T\7\275d\37\215%\204%.(.(.\350" "@(.(.\350@,&\60&\60&\60&\350\300\0\275h\35\315\345\203%.(.\350@(." "\350@,&\60&\350\300\36:\70\361\201\10\0\275\200\32\253\351\203#.$.$.\344@$.$" ".\344@\370\200*\64+\0\275\201\32\315\345\203%.(.\350@(.\350@\36\340\300,\70\360@" "\70'\0\275\204\35\315\345\203%.(.\350@(.\350@\36\372\300,\70\60&\60\70\370@\4\0" "\275\207\35\315\345\203%.(.\350@(.\350@\36\340\300,\70\360@(\70\361\201\10\0\275\210\37" "\315\345\203%.(.\350@(.\350@\36\340\300,\70\360@\70\350@(\370@\4\0\275\211!\315" "\345\203%.(.\350@(.\350@\36\340\300,\70\256\242,*\244*$\62\244*\2\0\275\212$" "\315\345\203%.(.\350@(.\350@\36\340\300,\70\256\242,\42&\244\42&$*&\244\242\2" "\0\275\220!\315\345\203%.(.\350@(.\350@\36\340\300,\70\360@(.(.(.\350@" "\4\0\275\221!\315\345\203%.(.\350@(.\350@\36\340\300,\70\60.(.\350@(.\350" "@\4\0\275\223\36\315\345\203%.(.\350@(.\350@\36\340\300,\70\36\64\70\66\42P&\10" "\0\275\225\36\315\345\203%.(.\350@(.\350@\36\340\300,\70\36\260.*,*\256\10\0\275" "\231\37\315\345\203%.(.\350@(.\350@\36\340\300,\70\360@(\370@(\370@\4\0\275\232" " \315\345\203%.(.\350@(.\350@\36\340\300,\70\36\354@,&\60&\354@\4\0\275\234" "&\314\345\203\67\42*&\42*&\42*&\342&\42*&\42*&\342&\366\200\42(,(\244(" ",(,\0\275\244#\354\345\203#*&\42*&\342&\42*&\342&\366\200\42*\204*=\304A" "l\320AP\354A\0\275\260'\356\345\203#*&UL\314M\252\230\230\233\350\220\203\211\270\20\272\250" "x\310\220\320\220\310\210\204\61\21Q\42\62\1\275\270.\316\345\203\67\42ULD\252\230\210T\61\21\21" "\67\21\251b\42R\305DD\334D\304F\34P$\12\213\10\212\241\10\12\213\10\12\213\10\275\324&\314" "\345\203\67\42*&\42*&\42*&\342&\42*&\42*&\342&\366\200\42(,(,(,(" ",\0\275\325\34\354\345\203#*&\42*&\342&\42*&\342&\366\200\42*{D\7\261\31\275\330" "\37\354\345\203#*&\42*&\342&\42*&\342&\66\366\200\42*\237\4\206\304\306\36\14\275\334!" "\354\345\203#*&\42*&\342&\42*&\342&\366\200\42*{\270\203\330\240\203\240\330\203\0\275\351" " \354\345\203#*&\42*&\342&\42*&\342&\366\200\42*{TVaAaQ\26\0\275\360" "!\255\345\203%.(.(.\350@(.(.\350@\36\340\300(&\60&\60&\60&\10\0\275" "\364 \315\345\203%.(.\350@(.\350@\36\372\300(&\60&,\42&,\70\370@\4\0\275" "\370!\315\345\203%.(.\350@(.\350@\36\340\300(&\60&\354@\70\350@(\370@\4\0" "\276\0#\315\345\203%.(.\350@(.\350@\36\340\300(&\60&\354@(.(.(.\350" "@\4\0\276\3 \315\345\203%.(.\350@(.\350@\36\340\300(&\60&\36\60\70\66\42P" "&\10\0\276\5 \315\345\203%.(.\350@(.\350@\36\340\300(&\60&\36\254.*,*" "\256\10\0\276\14\30M\245\204%.(.(.\350@(.(.\350@\36\372\300\0\276\15\31\315\345" "\203%.(.\350@(.\350@\36\372\300\36\340@\70'\0\276\20\32\315\345\203%.(.\350@" "(.\350@\36\372\300\36:\70\361\201\10\0\276\24\36\315\345\203%.(.\350@(.\350@\36\372" "\300\36\340@\70\350@(\370@\4\0\276\34 \315\345\203%.(.\350@(.\350@\36\372\300\36" "\340@(.(.(.\350@\4\0\276\35 \315\345\203%.(.\350@(.\350@\36\372\300\36" " .(.\350@(.\350@\4\0\276\37\34\315\345\203%.(.\350@(.\350@\36\372\300\36" "IplD\240L\20\0\276D\32\253\351\203\65T*F*F*\346 F*F*F*\346 &" "\64\3\276E\26\314\345\203\67V(J(\352J(\352*\66\36\372 \66\3\276H\26\314\345\203\67V" "(J(\352J(\352*\66yl\332\203\1\276L\33\314\345\203\67V(J(\352J(\352*\66\36" "\342 \66\350 (\366 \0\276N\36\314\345\203\67V(J(\352J(\352*\66\272\242*\42&\242" "\42&\42*&\242\1\276T\26\314\345\203\67V(J(\352J(\352*\66\36\344*_\35\276U\30" "\314\345\203\67V(J(\352J(\352*\66\36$*\253\253T\7\276W\36\315\345\203\67\70\42(*" "\42(*\302*\42(*\302*\70\36\62\70\251D\234P\0\276Y\32\314\345\203\67V(J(\352J" "(\352*\66\36\334*,(,\312\2\0\276Z\32\314\345\203\67V(J(\352J(\352*\66\36\344" "\62\66R\42L(\0\276[\32\314\345\203\67V(J(\352J(\352*\66\36*\360\60\64\42NF" "\0\276`\31\255\351\203\63\70&$\233\220lB\262\71)\311&$\233\223\340\334\0\276a\33\316\345\203" "\67$\243\220\214B\62\12\71\42I\24r\24\35\17u\20\235\23\0\276d\33\316\345\203\67$\243\220\214" "B\62\12\71\42I\24r\24\235*:\353\3\21\0\276h\37\316\345\203\67$\243\220\214B\62\12\71\42" "I\24r\24\35\17u\20\35v\20\26}\20\2\276j$\316\345\203\67$\243\220\214B\62\12\71\42I" "\24r\24\35\17RQ\27\21\23S\21\223*&\246\242\4\0\276p\37\316\345\203\67$\243\220\214B\62" "\12\71\42I\24r\24\35\17v\27\25\27\25\27\25w\2\276q\37\316\345\203\67$\243\220\214B\62\12" "\71\42I\24r\24\35\17\26\25\27\25w\27\25w\2\276s\36\316\345\203\67$\243\220\214B\62\12\71" "\42I\24r\24\35\17\33\235V\42P(\2\0\276t#\316\345\203\67$\243\220\214B\62\12\71\42I" "\24r\24\35\17\31\22\32\22\31\221\60&\42JD&\0\276u\34\316\345\203\67$\243\220\214B\62\12" "\71\42I\24r\24\35\217\312.,;\33\0\276{\36\316\345\203\67$\243\220\214B\62\12\71\42I\24" "r\24\35\17\30y W\30\25X\4\276|\42\255\351\203\63$\62D$\23\221LD\62\71\10)\311" "D$\223\203\220\224!\221!\221!\221!\1\276}\35\314\345\203\63B$\13\221,D\262\70\10!\311" "\342 $\42\62\42\36\342 \66\7\276\200\37\314\345\203\63B$\13\221,D\262\70\10!\311\342 $" "\42\62\42\62\42&\66\333\3\1\276\204\42\314\345\203\63B$\13\221,D\262\70\10!\311\342 $\42" "\62\42\36\342 \66\350 (\366 \0\276\214\35\314\345\203\63B$\13\221,D\262\70\10!\311\342 " "$\42\62\42\36\344*_\35\276\215\37\314\345\203\63B$\13\221,D\262\70\10!\311\342 $\42\62" "\42\36$*\253\253T\7\276\217 \316\345\203\63\42$\27!\271\10\311E\310\311H.BN\42b#" "\342\201\243\323J\4\12\5\276\220&\316\345\203\63\42$\27!\271\10\311E\310\311H.BN\42b#" "\342!CBC\42#\22\306DD\211\310\4\276\221\37\314\345\203\63B$\13\221,D\262\70\10!\311" "\342 $\42\62\42\36AYTf\25\0\276\230\34\255\351\203\63\70&$\233\220lB\222\34\220\304\204" "d\23\222\344\200$\70\67\0\276\231\33\316\345\203\67$\243\220\214B\62:\30\12\311\350`(:\36\352" " :'\0\276\250 \316\345\203\67$\243\220\214B\62:\30\12\311\350`(:\36\354.*.*." "*\356\4\0\276\320\31\255\351\203\71X$\225H*\221T\7!%\251DR\35D\5\347\0\276\321\31" "\314\345\203W$\221H\42\221D\7!$\211\16\202b\343\241\17b\63\276\324\31\314\345\203W$\221H" "\42\221D\7!$\211\16\202b\343a\263=\30\276\327\32\314\345\203W$\221H\42\221D\7!$\211" "\16\202b\343A\256b\323\36\276\330\36\314\345\203W$\221H\42\221D\7!$\211\16\202b\343!\16" "b\203\16\202b\17\2\276\340\32\314\345\203W$\221H\42\221D\7!$\211\16\202b\343A\256\362\325" "\1\276\343 \315\345\203\67\42$QDH\242\210\220D\21'\23!\211\42\216\202\343!\203\223J\304\11" "\5\276\344#\316\345\203\67$\243\220\214B\62\12\71\31\311(\344(:\36\62$\64$\62\42aLD" "\224\210L\0\276\345\35\314\345\203W$\221H\42\221D\7!$\211\16\202b\343\301\255\302\202\302\242," "\0\276\354(\255\351\203\65\42\64B$M\204H\232\10\221\64\21\7\21\23\42i\42D\322D\34\304D" "\204F\204F\204F\204F\4\277\1\37\314\345\203\63B$\13\221,D\262\70\240\20\311\342 $\42\62" "\42\36AYTf\25\0\277\10\31\255\351\203\71X$\225H*\221$\7T\42\251D\222\34P\5\347" "\0\277\11\31\314\345\203W$\221H\42\221$\7C\42I\16\206b\343\241\17b\63\277\30\32\314\345\203" "W$\221H\42\221$\7C\42I\16\206b\343A\256\362\325\1\277\31\33\314\345\203W$\221H\42\221" "$\7C\42I\16\206b\343A\242\262\272Ju\277\33 \315\345\203\67\42$QDH\242\210\220$\23" "G\21!I&\216\202\343!\203\223J\304\11\5\277\34#\316\345\203\67$\243\220\214B\62\31\71\12\311" "d\344(:\36\62$\64$\62\42aLD\224\210L\0\277\35\35\314\345\203W$\221H\42\221$\7" "C\42I\16\206b\343\301\255\302\202\302\242,\0\277@\32\215%\204#(IP\222\240$\7$AI" "\202\222\34\320C\5';\60\277A\32\315\345\203#(IP\222\3\222\240$\7t\301a\7\366\0\7" "\302\71\1\277D\33\315\345\203#(IP\222\3\222\240$\7t\301a\7\366\320\301\211\17D\0\277H" "\37\315\345\203#(IP\222\3\222\240$\7t\301a\7\366\0\7\302A\7B\301\7\42\0\277P!" "\315\345\203#(IP\222\3\222\240$\7t\301a\7\366\0\7BqAqAqA\7\42\0\277Q" "!\315\345\203#(IP\222\3\222\240$\7t\301a\7\366\0qAqA\7BqA\7\42\0\277" "U\35\315\345\203#(IP\222\3\222\240$\7t\301a\7\366\10\352\242\302\242\342\212\0\277\224\36\314" "\345\203\67V&\211L\22\231$\7#\62Id\222\34\214\4\205\5\205\35P\304&\277\260\37\215%\204" "#(IP\222\240$\7$AI\202\222\34P\305\4\306\4\306\4\306\4\35\30\277\305\37\315\345\203#" "(IP\222\3\222\240$\7T\61\201\61A\7\366\10\352\242\302\242\342\212\0\277\314\31\253\351\203!(" "H(H(\350\300(H(\350\240\366\200*\64+\0\277\315\31\315\345\203#(IP\222\3\222\240$" "\7\344\7f\301\201\7\302\71\1\277\320\35\315\345\203#(IP\222\3\222\240$\7\364\300\7f\301\201" "\61\201\301\301\7\42\0\277\324\36\315\345\203#(IP\222\3\222\240$\7\344\7f\301\201\7\302A\7" "B\301\7\42\0\277\334 \315\345\203#(IP\222\3\222\240$\7\344\7f\301\201\7BqAqA" "qA\7\42\0\277\337\35\315\345\203#(IP\222\3\222\240$\7\344\7f\301\361\240\301\261\21\201\62" "A\0\277\341\35\315\345\203#(IP\222\3\222\240$\7\344\7f\301\361\200uQaQqE\0\300" "< \255\345\203#(IP\222\240$\7$AI\202\222\34\220\37\30\305\4\306\4\306\4\306\4\1\300" "Q\37\315\345\203#(IP\222\3\222\240$\7\344\7F\61\201\61\361`uQaQqE\0\300X" "\30M\245\204#(IP\222\240$\7$AI\202\222\34\320\3\37\30\300\134\32\315\345\203#(IP" "\222\3\222\240$\7\364\300\7\366\320\301\211\17D\0\300`\36\315\345\203#(IP\222\3\222\240$\7" "\364\300\7\366\0\7\302A\7B\301\7\42\0\300h \315\345\203#(IP\222\3\222\240$\7\364\300" "\7\366\0\7BqAqAqA\7\42\0\300i \315\345\203#(IP\222\3\222\240$\7\364\300" "\7\366\0qAqA\7BqA\7\42\0\300\220\31\253\351\203\65T$\215H\32\221\64\7\61\42i" "D\322\34\304\204\346\0\300\221\31\314\345\203W$\221H\42\221D\7A\42\211\16\202b\343\241\17b\63" "\300\224\31\314\345\203W$\221H\42\221D\7A\42\211\16\202b\223\307\246=\30\300\230\36\314\345\203W" "$\221H\42\221D\7A\42\211\16\202b\343!\16b\203\16\202b\17\2\300\240\32\314\345\203W$\221" "H\42\221D\7A\42\211\16\202b\343A\256\362\325\1\300\241\33\314\345\203W$\221H\42\221D\7A" "\42\211\16\202b\343A\242\262\272Ju\300\243 \315\345\203\67\42$QDH\242\210\220D\21G\21!" "\211\42\216\202\343!\203\223J\304\11\5\300\245\35\314\345\203W$\221H\42\221D\7A\42\211\16\202b" "\343\301\255\302\202\302\242,\0\300\254\33\256\345\203\65:\60(\60(.*.\212&\42(*&\215T" "Htn\0\300\255\27\316\345\203\67:,Wb#\251B\204R\307C\35D\347\4\0\300\257\34\316\345" "\203\67:,Wb#\251B\204R\307#)\12\14\12\214\211\210\213\220\11\300\260\27\316\345\203\67:," "Wb#\251B\204R\247\212\316\372@\4\0\300\263\27\316\345\203\67:,Wb#\251B\204R\307\203" "\335E\247>\1\300\264\33\316\345\203\67:,Wb#\251B\204R\307C\35D\207\35\204E\37\204\0" "\300\265\35\316\345\203\67:,Wb#\251B\204R\307\203T\324E\305T\305D\306T\205\0\300\266\37" "\316\345\203\67:,Wb#\251B\204R\307\203T\324E\304\304T\304\244\212\211\251(\1\300\274\33\316" "\345\203\67:,Wb#\251B\204R\307\203\335E\305E\305E\305\235\0\300\275\33\316\345\203\67:," "Wb#\251B\204R\307\203E\305E\305\335E\305\235\0\300\277\31\316\345\203\67:,Wb#\251B" "\204R\307\303F\247\225\10\24\212\0\300\300\36\316\345\203\67:,Wb#\251B\204R\307C\206\204\206" "DF$\214\211\210\22\221\11\300\301\30\316\345\203\67:,Wb#\251B\204R\307\243\262\13\313\316\6" "\0\300\305\30\316\345\203\67:,Wb#\251B\204R\307\203\335E\337E\237\0\300\310&\256\345\203\65" "$\64$*($*($(*$(\212&\42($M\222\251\220\244!\241!\241!\241!\1\300" "\311\35\314\345\203\63\42\62\42(EP\212\30\241\221\64\21C!\21\221\21\361\20\7\261\71\300\314\37\314" "\345\203\63\42\62\42(EP\212\30\241\221\64\21C!\21\221\21\221\21\61\261\331\36\10\300\320\42\314\345" "\203\63\42\62\42(EP\212\30\241\221\64\21C!\21\221\21\361\20\7\261A\7A\261\7\1\300\330\36" "\314\345\203\63\42\62\42(EP\212\30\241\221\64\21C!\21\221\21\361 W\371\352\0\300\331\37\314\345" "\203\63\42\62\42(EP\212\30\241\221\64\21C!\21\221\21\361 QY]\245:\300\333$\316\345\203" "\63\42\66\42,(\42,(\42Jh($&\42D($\42\66\42\36\70:\255D\240P\0\300\334" "*\316\345\203\63\42\66\42,(\42,(\42Jh($&\42D($\42\66\42\36\62$\64$\62" "\42aLD\224\210L\0\300\335\37\314\345\203\63\42\62\42(EP\212\30\241\221\64\21C!\21\221\21" "\361\10\312\242\62\253\0\300\344\33\256\345\203\65:\60(\60(.\212(*,\42(*&\306*$:" "\67\0\300\345\27\316\345\203\67:,\263\31\261\240\220\250\242\324\361P\7\321\71\1\300\350\30\316\345\203\67" ":,\263\31\261\240\220\250\242\324\361@\321Y\37\210\0\300\354\34\316\345\203\67:,\263\31\261\240\220\250" "\242\324\361P\7\321a\7a\321\7!\0\300\364\34\316\345\203\67:,\263\31\261\240\220\250\242\324\361`" "wQqQqQq'\0\300\365\34\316\345\203\67:,\263\31\261\240\220\250\242\324\361`QqQq" "wQq'\0\300\367\32\316\345\203\67:,\263\31\261\240\220\250\242\324\361\260\321i%\2\205\42\0\300" "\371\30\316\345\203\67:,\263\31\261\240\220\250\242\324\361\250\354\302\262\263\1\301\0&\256\345\203\65$\64" "$*($*($(\212(*$&\42($M\214UH\322\220\320\220\320\220\320\220\0\301\4\37" "\314\345\203\63\42\62\42(EP\320\214PDH\232\242\220\210\310\210\310\210\230\330l\17\4\301\10\42\314" "\345\203\63\42\62\42(EP\320\214PDH\232\242\220\210\310\210x\210\203\330\240\203\240\330\203\0\301\20" "\35\314\345\203\63\42\62\42(EP\320\214PDH\232\242\220\210\310\210x\220\253|u\301\25\37\314\345" "\203\63\42\62\42(EP\320\214PDH\232\242\220\210\310\210x\4eQ\231U\0\301\34\30\256\345\203" ";U\134T\134P`P\24MD\134HL\330T\352\34\301\35\26\314\345\203\67QXPX\214\320H" "\252\241\264\361\320\7\261\31\301\36\27\314\345\203\67QXPX\214\320H\252\241\264\361\240\25U\371\0\301" "\37\35\316\345\203\67:,WBC!Q!B\251\343\221\24\5\6\5\306D\304E\310\4\301 \26\314" "\345\203\67QXPX\214\320H\252\241\264\361\260\331\36\14\301#\27\314\345\203\67QXPX\214\320H" "\252\241\264\361 W\261i\17\301$\33\314\345\203\67QXPX\214\320H\252\241\264\361\20\7\261A\7" "A\261\7\1\301&\36\314\345\203\67QXPX\214\320H\252\241\264\321\25U\21\61\21\25\61\21Q\61" "\21\15\301'\35\314\345\203\67QXPX\214\320H\252\241\264\321\25\61Q\21\61\21-\242b\42\32\301" ",\27\314\345\203\67QXPX\214\320H\252\241\264\361 W\371\352\0\301-\30\314\345\203\67QXP" "X\214\320H\252\241\264\361 QY]\245:\301/\34\315\345\203\67\70*,*,Hh&$*B" "(q<dpR\211\70\241\0\301\60\37\316\345\203\67:,WBC!Q!B\251\343!CBC" "\42#\22\306DD\211\310\4\301\61\32\314\345\203\67QXPX\214\320H\252\241\264\361\340VaAa" "Q\26\0\301\66\33\314\345\203\67QXPX\214\320H\252\241\264\361\300\7R\61q\61Q\7\2\301\70" "(\256\345\203\67\42\66\42*ET\212\240\260\210\240\240\211\230\210\250\210\220\230\240\210\251\230\210\330\210\330" "\210\330\210\330\210\0\301\71\36\314\345\203\63\42\62\42(EP\212\30\221\211\220\64\21C!\21\221\21\361" "\20\7\261\71\301<\37\314\345\203\63\42\62\42(EP\212\30\221\211\220\64\21C!\21\221\21\361\0\261" "\331\36\10\301@#\314\345\203\63\42\62\42(EP\212\30\221\211\220\64\21C!\21\221\21\361\20\7\261" "A\7A\261\7\1\301H\37\314\345\203\63\42\62\42(EP\212\30\221\211\220\64\21C!\21\221\21\361" " W\371\352\0\301I \314\345\203\63\42\62\42(EP\212\30\221\211\220\64\21C!\21\221\21\361 " "QY]\245:\301K%\316\345\203\63\42\66\42,(\42,(\42Jd\42($&\42D($\42" "\66\42\36\70:\255D\240P\0\301L+\316\345\203\63\42\66\42,(\42,(\42Jd\42($&" "\42D($\42\66\42\36\62$\64$\62\42aLD\224\210L\0\301M \314\345\203\63\42\62\42(" "EP\212\30\221\211\220\64\21C!\21\221\21\361\10\312\242\62\253\0\301T\30\256\345\203;U\134T\134" "P\24Q`LD\134HL\214U\352\34\301U\26\314\345\203\67QXP\320\214XH\232\242\264\361\320" "\7\261\31\301X\26\314\345\203\67QXP\320\214XH\232\242\264\311c\323\36\14\301\134\33\314\345\203\67" "QXP\320\214XH\232\242\264\361\20\7\261A\7A\261\7\1\301d\27\314\345\203\67QXP\320\214" "XH\232\242\264\361 W\371\352\0\301e\30\314\345\203\67QXP\320\214XH\232\242\264\361 QY" "]\245:\301g\34\315\345\203\67\70*,*hH,&$fB(q<dpR\211\70\241\0\301" "h \316\345\203\67:,\243)\261\240\220\230\21\241\324\361\220!\241!\221\21\11c\42\242Dd\2\301" "i\32\314\345\203\67QXP\320\214XH\232\242\264\361\340VaAaQ\26\0\301p(\256\345\203\67" "\42\66\42*ET\212\240\240\211\240\260\210\230\210\250\210\220\230\220\211\251\230\210\330\210\330\210\330\210\330\210" "\0\301t \314\345\203\63\42\62\42(EP\310D\214PDH\212E!\21\221\21\221\21\61\261\331\36" "\10\301x#\314\345\203\63\42\62\42(EP\310D\214PDH\212E!\21\221\21\361\20\7\261A\7" "A\261\7\1\301\205 \314\345\203\63\42\62\42(EP\310D\214PDH\212E!\21\221\21\361\10\312" "\242\62\253\0\301\214\26\215%\204/\70\66\70\66\42\62&L*\36.\70\331\201\1\301\215\27\315\345\203" "/\70V\64$N(\62\70\354\300\36\340@\70'\0\301\216\34\315\345\203/\70V\64$N(\62\70" "\354\300\36\270\242,*,*,*\2\0\301\220\30\315\345\203/\70V\64$N(\62\70\354\300\36:" "\70\361\201\10\0\301\224\34\315\345\203/\70V\64$N(\62\70\354\300\36\340@\70\350@(\370@\4" "\0\301\226 \315\345\203/\70V\64$N(\62\70\354\300\274\242,\42&\244\42&$*&\244\242\2" "\0\301\234\36\315\345\203/\70V\64$N(\62\70\354\300\36\340@(.(.(.\350@\4\0\301" "\235\36\315\345\203/\70V\64$N(\62\70\354\300\36 .(.\350@(.\350@\4\0\301\237\32" "\315\345\203/\70V\64$N(\62\70\354\300\36IplD\240L\20\0\301\241\32\315\345\203/\70V" "\64$N(\62\70\354\300\36A]TXT\134\21\0\301\245\34\315\345\203/\70V\64$N(\62\70" "\354\300\36\340@(\370@(\370@\4\0\301\250\42\316\345\203\65:\60(\60(.*.*,\42\210" "$&\215TH\134T\134T\314\201Dt\32\0\301\251\33\316\345\203+]T\230T\222\240\11\241\230\260" "\234\34L\304C\35D\347\4\0\301\254\33\316\345\203+]T\230T\222\240\11\241\230\260\234\34L\304\3" "Eg} \2\301\260\37\316\345\203+]T\230T\222\240\11\241\230\260\234\34L\304C\35D\207\35\204" "E\37\204\0\301\275\34\316\345\203+]T\230T\222\240\11\241\230\260\234\34L\304\243\262\13\313\316\6\0" "\301\304,\316\345\203\65$\64$*($*($(*$(*$&\42\210$&\311TH\242\250" "\220\240\250\220\203\211\220\320\220\320\220\0\301\310!\314\345\203+&\42*&\42H&\42&$dB(" "\42Q\212\240\24\7\22\351\1b\263=\20\301\314%\314\345\203+&\42*&\42H&\42&$dB" "(\42Q\212\240\24\7\22\351!\16b\203\16\202b\17\2\301\324!\314\345\203+&\42*&\42H&" "\42&$dB(\42Q\212\240\24\7\22\351A\256\362\325\1\301\327&\315\345\203+&\42,&\42J" "&\42($dD(\42UPDTPD\304ADz\310\340\244\22qB\1\301\330,\316\345\203+" "&\42.&\42L&\42*$dF(\42YPDXPD\310ADz\310\220\320\220\310\210\204\61" "\21Q\42\62\1\301\340\34\314\345\203\67U\216\302\202\302b\42\242Bb\202\246b\202\302\202\302\16(b" "\23\301\344\33\314\345\203+GR\61!A\21B\61AaAa\7\24\361\0\261\331\36\10\301\350\37\314" "\345\203+GR\61!A\21B\61AaAa\7\24\361\20\7\261A\7A\261\7\1\301\360\33\314\345" "\203+GR\61!A\21B\61AaAa\7\24\361 W\371\352\0\301\361\34\314\345\203+GR\61" "!A\21B\61AaAa\7\24\361 QY]\245:\301\363 \315\345\203+YT\224TPHP" "\210PLTXTX\304\301D<dpR\211\70\241\0\301\374\33\215%\204/\70\66\70\66\42\62&" "L*.&\60&\60&\60&\350\300\0\301\375\31\315\345\203/\70V\64$N(.&\60&\350\300" "\36\340@\70'\0\302\0\32\315\345\203/\70V\64$N(.&\60&\350\300\36:\70\361\201\10\0" "\302\4\36\315\345\203/\70V\64$N(.&\60&\350\300\36\340@\70\350@(\370@\4\0\302\14" " \315\345\203/\70V\64$N(.&\60&\350\300\36\340@(.(.(.\350@\4\0\302\15" " \315\345\203/\70V\64$N(.&\60&\350\300\36 .(.\350@(.\350@\4\0\302\17" "\34\315\345\203/\70V\64$N(.&\60&\350\300\36IplD\240L\20\0\302\21\34\315\345\203" "/\70V\64$N(.&\60&\350\300\36A]TXT\134\21\0\302\30\26\253\351\203-\64\62\64" "\62\42.&H*\372\200*\64+\0\302\31\27\315\345\203/\70V\64$N(\36\342\300,\70\360@" "\70'\0\302\34\32\315\345\203/\70V\64$N(\36\374\300,\70\60&\60\70\370@\4\0\302\37\32" "\315\345\203/\70V\64$N(\36\342\300,\70\360@(\70\361\201\10\0\302 \34\315\345\203/\70V" "\64$N(\36\342\300,\70\360@\70\350@(\370@\4\0\302(\36\315\345\203/\70V\64$N(" "\36\342\300,\70\360@(.(.(.\350@\4\0\302)\36\315\345\203/\70V\64$N(\36\342" "\300,\70\60.(.\350@(.\350@\4\0\302+\33\315\345\203/\70V\64$N(\36\342\300," "\70\36\64\70\66\42P&\10\0\302-\33\315\345\203/\70V\64$N(\36\342\300,\70\36\260.*" ",*\256\10\0\302/\33\315\345\203/\70V\64$N(\36\342\300,\70:\322\64\66\42P&\6\0" "\302\61\34\315\345\203/\70V\64$N(\36\342\300,\70\360@(\370@(\370@\4\0\302\62\35\315" "\345\203/\70V\64$N(\36\342\300,\70\36\354@,&\60&\354@\4\0\302\64 \314\345\203\67" "*GaAa\61\21Q!\61AS\61\261\7\24AaA!EaAa\1\302H&\356\345\203+" "]T\230T\222\240\30\241\230\350\220\203\211\270\20\272\250x\310\220\320\220\310\210\204\61\21Q\42\62\1\302" "P.\316\345\203\67\42*ET\212\240\260\210\240\260\210\230\210\250\210\220\230\240\210\251\230\210\330\210\3\212" "Da\21A\61\24Aa\21Aa\21\1\302Q#\354\345\203+&\42*&\42H&\42&$E\204" "PD\312\210\3\211D\21\24A)\342\241\17b\63\302T+\354\345\203+&\42*&\42H&\42&" "$E\204PD\312\210\310\210\3\211D)\202\42(\202R\204D\4E\204\304\306\36\14\302X(\354\345" "\203+&\42*&\42H&\42&$E\204PD\312\210\3\211D\21\24A)\342!\16b\203\16\202" "b\17\2\302`$\354\345\203+&\42*&\42H&\42&$E\204PD\312\210\3\211D\21\24A" ")\342A\256\362\325\1\302e'\354\345\203+&\42*&\42H&\42&$E\204PD\312\210\3\211" "D\21\24A)\342\301\255\302\202\302\242,\0\302l \314\345\203\67*GaAa\61\21Q!\61A" "S\61\261\7\24AaAaAaAa\1\302m\31\354\345\203+GR\61!A\21B\61\261\7\24" "Q\331#:\210\315\0\302p\34\354\345\203+GR\61!A\21B\61\261\261\7\24Q\371$\60$\66" "\366`\0\302t\35\354\345\203+GR\61!A\21B\61\261\7\24Q\331\303\35\304\6\35\4\305\36\4" "\302|\31\354\345\203+GR\61!A\21B\61\261\7\24Q\331\3^\345\253\3\302}\33\354\345\203+" "GR\61!A\21B\61\261\7\24Q\331\3Feu\225\352\0\302\177 \355\345\203+YT\224TP" "HP\210PLp\304\301DXTX<\202\340\244\22qB\1\302\201\34\354\345\203+GR\61!A" "\21B\61\261\7\24Q\331\243\262\12\13\12\213\262\0\302\210\35\255\345\203/\70\66\70\66\42\62&L*" "\36\342\300(&\60&\60&\60&\10\0\302\211\31\315\345\203/\70V\64$N(\36\342\300(&\60" "&\354@\70'\0\302\220\36\315\345\203/\70V\64$N(\36\342\300(&\60&\354@\70\350@(" "\370@\4\0\302\230 \315\345\203/\70V\64$N(\36\342\300(&\60&\354@(.(.(." "\350@\4\0\302\233\35\315\345\203/\70V\64$N(\36\342\300(&\60&\36\60\70\66\42P&\10" "\0\302\235\35\315\345\203/\70V\64$N(\36\342\300(&\60&\36\254.*,*\256\10\0\302\244" "\24M\245\204/\70\66\70\66\42\62&L*\36\374\300\0\302\245\26\315\345\203/\70V\64$N(\36" "\374\300\36\340@\70'\0\302\250\27\315\345\203/\70V\64$N(\36\374\300\36:\70\361\201\10\0\302" "\254\33\315\345\203/\70V\64$N(\36\374\300\36\340@\70\350@(\370@\4\0\302\255\34\315\345\203" "/\70V\64$N(\36\374\300\274\242,*\244*$\62\244*\2\0\302\264\35\315\345\203/\70V\64" "$N(\36\374\300\36\340@(.(.(.\350@\4\0\302\265\35\315\345\203/\70V\64$N(" "\36\374\300\36 .(.\350@(.\350@\4\0\302\267\31\315\345\203/\70V\64$N(\36\374\300" "\36IplD\240L\20\0\302\271\31\315\345\203/\70V\64$N(\36\374\300\36A]TXT\134" "\21\0\302\334\26\254\345\203\67U\216\302\202\302b\42\242Bb\202\246bbs\302\335\26\314\345\203\67Q" "XPX\214XH\252\241\264\361\320\7\261\31\302\340\26\314\345\203\67QXPX\214XH\252\241\264\311" "c\323\36\14\302\343\27\314\345\203\67QXPX\214XH\252\241\264\361 W\261i\17\302\344\33\314\345" "\203\67QXPX\214XH\252\241\264\361\20\7\261A\7A\261\7\1\302\353\37\316\345\203\67:,W" "bA!Q!B\251\343A\212\2#.jf\302bBjF\0\302\354\27\314\345\203\67QXPX" "\214XH\252\241\264\361 W\371\352\0\302\355\30\314\345\203\67QXPX\214XH\252\241\264\361 Q" "Y]\245:\302\357\34\315\345\203\67\70*,*,H,&$*B(q<dpR\211\70\241\0" "\302\361\32\314\345\203\67QXPX\214XH\252\241\264\361\340VaAaQ\26\0\302\366\33\314\345\203" "\67QXPX\214XH\252\241\264\361\300\7R\61q\61Q\7\2\302\370\42\257\341\203\67<.&$" ".&$.&$L$\206&\42MTLDH\214\210LDxn\0\302\371\34\316\345\203\67:(" "$*($*F\42l\42\253\220\214\242\343\241\16\242s\2\302\373\42\316\345\203\67:($*($" "*F\42l\42\253\220\214\242\343\221\24\5\6\5\306D\304E\310\4\302\374\34\316\345\203\67:($*" "($*F\42l\42\253\220\214\242SEg} \2\303\0!\316\345\203\67:($*($*F" "\42l\42\253\220\214\242\343\241\16\242\303\16\302\242\17B\0\303\10!\316\345\203\67:($*($*" "F\42l\42\253\220\214\242\343\301\356\242\342\242\342\242\342N\0\303\11!\316\345\203\67:($*($" "*F\42l\42\253\220\214\242\343\301\242\342\242\342\356\242\342N\0\303\14$\316\345\203\67:($*(" "$*F\42l\42\253\220\214\242\343!CBC\42#\22\306DD\211\310\4\303\15\35\316\345\203\67:" "($*($*F\42l\42\253\220\214\242\343Q\331\205eg\3\303\23 \316\345\203\67:($*" "($*F\42l\42\253\220\214\242\343\1#\17\344\12\243\2\213\0\303\24+\257\341\203\67$\66$(" "&$QLH\242\230\220\64\42\61\64\21iB\322D\204\204\214\310D\204\304\206\304\206\304\206\304\206\4" "\303\25 \314\345\203\63\42\62\42$MDH\232\210\10\211\240\211l\42D\262\210\214\210\207\70\210\315\1" "\303\30\42\314\345\203\63\42\62\42$MDH\232\210\10\211\240\211l\42D\262\210\214\210\214\210\211\315\366" "@\0\303\34$\314\345\203\63\42\62\42$MDH\232\210\10\211\240\211l\42D\262\210\214\210\207\70\210" "\15:\10\212=\10\303$ \314\345\203\63\42\62\42$MDH\232\210\10\211\240\211l\42D\262\210\214" "\210\7\271\312W\7\303%\42\314\345\203\63\42\62\42$MDH\232\210\10\211\240\211l\42D\262\210\214" "\210\7\211\312\352*\325\1\303(+\316\345\203\63\42\66\42($&\42($&\42F\42h&\42M" "DH.b#\342!CBC\42#\22\306DD\211\310\4\303)\42\314\345\203\63\42\62\42$MD" "H\232\210\10\211\240\211l\42D\262\210\214\210GP\26\225Y\5\0\303E\36\316\345\203\67:($*" "($jB\42,&\42\25I\242\350xTva\331\331\0\303h\37\257\341\203=QLTPLT" "PLT\214H\14MD\262\220\230\210\250\21\231\240\360\34\303i\31\314\345\203\67I\252\220T\21\22A" "\23Y\211$\212\215\207>\210\315\0\303l\31\314\345\203\67I\252\220T\21\22A\23Y\211$\212\215\207" "\315\366`\0\303p\35\314\345\203\67I\252\220T\21\22A\23Y\211$\212\215\207\70\210\15:\10\212=" "\10\303r \314\345\203\67I\252\220T\21\22A\23Y\211$\212\215\256\250\212\210\211\250\210\211\210\212\211" "h\303x\31\314\345\203\67I\252\220T\21\22A\23Y\211$\212\215\7\271\312W\7\303y\33\314\345\203" "\67I\252\220T\21\22A\23Y\211$\212\215\7\211\312\352*\325\1\303|%\316\345\203\67:($*" "($*F\42h&\42UHF\321\361\220!\241!\221\21\11c\42\242Dd\2\303}\34\314\345\203" "\67I\252\220T\21\22A\23Y\211$\212\215\7\267\12\13\12\213\262\0\303\204-\257\341\203\71\42\70\42" "(&EPL\212\240\230\24\61\42!\23\61\21\211\42Bb\42b\42FdB\42\202#\202#\202#" "\202#\2\303\210!\314\345\203\63\42\62\42$MDH\232\210\10\211\220\211\334D\210d\21\31\21\17\20" "\233\355\201\0\303\214$\314\345\203\63\42\62\42$MDH\232\210\10\211\220\211\334D\210d\21\31\21\17" "q\20\33t\20\24{\20\303\300\42\314\345\203\63\42\62\42$MDH\212\211\10\211\240\210\134L\210d" "\21\31\21\31\21\23\233\355\201\0\303\330\33m%\204+&\60&\60&N$\60\42]LD\220\210L" "`p\262\3\3\303\331\31\255\345\203+&\60&.&.\42\253\230\204a\7\366\0\7\302\71\1\303\334" "\32\255\345\203+&\60&.&.\42\253\230\204a\7\366\320\301\211\17D\0\303\337\34\255\345\203+&" "\60&.&.\42\253\230\204a\7\366\0\7B\301\211\17D\0\303\340\36\255\345\203+&\60&.&" ".\42\253\230\204a\7\366\0\7\302A\7B\301\7\42\0\303\342\42\255\345\203+&\60&.&.\42" "\253\230\204a\7\346\25e\21\61!\25\61!Q\61!\25\25\0\303\350 \255\345\203+&\60&.&" ".\42\253\230\204a\7\366\0\7BqAqAqA\7\42\0\303\351 \255\345\203+&\60&.&" ".\42\253\230\204a\7\366\0qAqA\7BqA\7\42\0\303\355\34\255\345\203+&\60&.&" ".\42\253\230\204a\7\366\10\352\242\302\242\342\212\0\303\364)\317\341\203\67<.&$.&$.&" "$L$&,\42\15ILDH\214\210LD`T`T\320\201Dx\32\0\303\365\34\316\345\203'" "\253\230D\61A\61\21\331\320$\11\313\311\301D<\324AtN\0\303\370\35\316\345\203'\253\230D\61" "A\61\21\331\320$\11\313\311\301D<Pt\326\7\42\0\304\10$\316\345\203'\253\230D\61A\61\21" "\331\320$\11\313\311\301D<dHhHdD\302\230\210(\21\231\0\304\20\60\317\341\203\67$\66$" "(&$QLH\242\230\220\64\42\61!\61\21iHb\42BBFd\42B\242\222D%\211\70\220" "\10\211\15\211\15\11\304$-\316\345\203'E\252\230\210D\61!\21\61\21Y\214\304\304H\204\5E\204" "\5E\204\34D\244\207\14\11\15\211\214H\30\23\21%\42\23\304,#\315\341\203\71QL\242\230D\61" "iD\202b\42\22\205\304D\304\214\310\204D\205E\205E\34L\4'\304\60\33\314\345\203'\237\304\4" "E\344F&IPXP\330\1E<@l\266\7\2\304\64\37\314\345\203'\237\304\4E\344F&I" "PXP\330\1E<\304Al\320AP\354A\0\304<\32\314\345\203'\237\304\4E\344F&IP" "XP\330\1E<\310U\276:\304=\34\314\345\203'\237\304\4E\344F&IPXP\330\1E<" "HTVW\251\16\304H\37m%\204+&\60&\60&N$\60\42]LD\220\304D\262\230\300\230" "\300\230\240\3\3\304d\33\253\351\203)&,&,&J$,\42ULD\210\232\340\3\252\320\254\0" "\304e\31\255\345\203+&\60&.&.\42\253\230$\7f\301\201\7\302\71\1\304h\35\255\345\203+" "&\60&.&.\42\253\230\364\0\7f\301\201\61\201\301\301\7\42\0\304l\36\255\345\203+&\60&" ".&.\42\253\230$\7f\301\201\7\302A\7B\301\7\42\0\304t \255\345\203+&\60&.&" ".\42\253\230$\7f\301\201\7BqAqAqA\7\42\0\304u \255\345\203+&\60&.&" ".\42\253\230$\7f\301\201qAqA\7BqA\7\42\0\304y\35\255\345\203+&\60&.&" ".\42\253\230$\7f\301\361\200uQaQqE\0\304\200'\315\341\203\71(&QL\242\230\64\42" "A\61\21\211Bb\42bFdB\202#\16&\242\302\242B\252\302\242\302\2\304\224)\356\345\203\67*" "&UL\242\230\240\230\210lBb\222\204\34L\304\205\320E\305C\206\204\206DF$\214\211\210\22\221" "\11\304\234\64\317\341\203\71\42(&EPL\212\240\230\24\61\42A\21\61\21\211\42Bb\42b\42F" "dB\42\202#\42\16&R\205ED\305PD\205ED\205E\4\304\270'\315\341\203\71(&QL" "\242\230\64\42A\61\21\211Bb\42bFdB\202#\16&\242\302\242\302\242\302\242\302\2\304\274\33\354" "\345\203\67&\237\304\4E\344F&I\354\1ET>\11\14\211\215=\30\304\351\37\255\345\203+&\60" "&.&.\42\253\230$\7F\61\201\61\361`uQaQqE\0\304\360\32-\245\204+&\60&" "\60&N$\60\42]LD\220\210L<\300\201\1\304\361\31\255\345\203+&\60&.&.\42\253\230" "\364\0\7\366\0\7\302\71\1\304\364\32\255\345\203+&\60&.&.\42\253\230\364\0\7\366\320\301\211" "\17D\0\304\370\36\255\345\203+&\60&.&.\42\253\230\364\0\7\366\0\7\302A\7B\301\7\42" "\0\304\372\42\255\345\203+&\60&.&.\42\253\230\364\0\7\346\25e\21\61!\25\61!Q\61!" "\25\25\0\304\377 \255\345\203+&\60&.&.\42\253\230\364\0\7\346\65\201\7\21%\63Q\61!" "%#\0\305\0 \255\345\203+&\60&.&.\42\253\230\364\0\7\366\0\7BqAqAqA" "\7\42\0\305\1 \255\345\203+&\60&.&.\42\253\230\364\0\7\366\0qAqA\7BqA" "\7\42\0\305\14 \315\341\203\71QL\242\230D\61iD\202b\42\22\205\304D\304\214\310\204\4G\34" "L\4g\305\20\31\314\345\203'\237\304\4E\344F&Il\354\1E<@l\266\7\2\305\24\35\314" "\345\203'\237\304\4E\344F&Il\354\1E<\304Al\320AP\354A\0\305\34\30\314\345\203'" "\237\304\4E\344F&Il\354\1E<\310U\276:\305(\35\255\341\203\71QL\242\230D\61iD" "\202b\42\22\205\304D\304\214\310\204\4\347\0\305)\31\314\345\203\67I\252\220T\21\22a\21Y\211$" "\212\215\207>\210\315\0\305,\31\314\345\203\67I\252\220T\21\22a\21Y\211$\212M\36\233\366`\0" "\305\60\35\314\345\203\67I\252\220T\21\22a\21Y\211$\212\215\207\70\210\15:\10\212=\10\305\70\31" "\314\345\203\67I\252\220T\21\22a\21Y\211$\212\215\7\271\312W\7\305\71\33\314\345\203\67I\252\220" "T\21\22a\21Y\211$\212\215\7\211\312\352*\325\1\305; \315\345\203\67\70&$*&$*D" "\42,$\42UDH\242\340x\310\340\244\22qB\1\305=\34\314\345\203\67I\252\220T\21\22a\21" "Y\211$\212\215\7\267\12\13\12\213\262\0\305D\31\256\345\203\65:\212(\233d!\61a!e!A" "i\242\210\242s\3\305E\32\315\351\203\65\206*$(IP\222\240 \242\64T\301\361\60\7\301\71\1" "\305H\32\315\351\203\65\206*$(IP\222\240 \242\64T\301\211\202\63>\20\1\305I \315\351\203" "\65\206*$(IP\222\240 \242\64T\301\361\340A\65qAaB\24\42\22\0\305J#\316\351\203" "\65\210*&(MP\232\240\240\211\240DT\321\361@qQA'aCQ\61\61%#\0\305L\37" "\315\351\203\65\206*$(IP\222\240 \242\64T\301\361\60\7\301Q\7Q\301\7!\0\305M!\315" "\351\203\65\206*$(IP\222\240 \242\64T\301\361\0\25eQ!U!\221!U!\0\305N$" "\315\351\203\65\206*$(IP\222\240 \242\64T\301\361\0\25e\21\61!\25\61!Q\61!\25%" "\0\305S#\316\351\203\65\210*&(MP\232\240\240\211\240DT\321\361\60E\201\21\27\65\63a\61" "!\65#\0\305T\37\315\351\203\65\206*$(IP\222\240 \242\64T\301\361@gQaQaQ" "a'\0\305U\37\315\351\203\65\206*$(IP\222\240 \242\64T\301\361@QaQagQa" "'\0\305W\35\315\351\203\65\206*$(IP\222\240 \242\64T\301\361\220\301I%\342\204\42\0\305" "X\42\315\351\203\65\206*$(IP\222\240 \242\64T\301\361p!\221!\201\21\351b\42\202Dd" "\2\305Y\34\315\351\203\65\206*$(IP\222\240 \242\64T\301\361H\314R\205\205\331\0\305]\34" "\315\351\203\65\206*$(IP\222\240 \242\64T\301\361@g\301g\301'\0\305^\37\315\351\203\65" "\206*$(IP\222\240 \242\64T\301\361\10\16\304b\2c\302\16D\0\305`(\256\345\203\65$" "\64$\204($\42(&D,$D,\244,$EPLH\10QHhHhHhHhH\0" "\305a\37\313\351\203\61\42\202&B($B($B(\204($\42\202&\42\60\42\374 \64\7\305" "d\42\313\351\203\61\42\202&B($B($B(\204($\42\202&\42\60\42\60\42$\64\323\3" "\1\305h$\313\351\203\61\42\202&B($B($B(\204($\42\202&\42\60\42\374 \64\346" " &\364 \0\305p%\313\351\203\61\42\202&B($B($B(\204($\42\202&\42\60\42" "\36\340(*(*(*\350\0\305q%\313\351\203\61\42\202&B($B($B(\204($\42" "\202&\42\60\42\36 *(*\350(*\350\0\305s'\315\351\203\61\42\206&\42$($\42$(" "$\42$(d$($\42\206&\42\64\42\36\64\70\251D\234P\0\305t-\315\351\203\61\42\206&" "\42$($\42$($\42$(d$($\42\206&\42\64\42\36.$\62$\60\42]LD\220" "\210L\0\305u#\313\351\203\61\42\202&B($B($B(\204($\42\202&\42\60\42\36\270" "*QTT\5\0\305|\31\256\345\203\65:\212(\233d!e!\61a!AiH\210\242s\3\305" "}\33\315\351\203\65\206*$(IP\20Q\222\240\240\11\252\340x\230\203\340\234\0\305\200\34\315\351\203" "\65\206*$(IP\20Q\222\240\240\11\252\340x\220\340\214\17D\0\305\204 \315\351\203\65\206*$" "(IP\20Q\222\240\240\11\252\340x\230\203\340\250\203\250\340\203\20\0\305\207%\315\351\203\65\206*$" "(IP\20Q\222\240\240\11\252\340x\200\212\230\260\210\230\220\212\222\250\230\220\212\22\0\305\214 \315\351" "\203\65\206*$(IP\20Q\222\240\240\11\252\340x\240\263\250\260\250\260\250\260\23\0\305\215 \315\351" "\203\65\206*$(IP\20Q\222\240\240\11\252\340x\240\250\260\250\260\263\250\260\23\0\305\217\36\315\351" "\203\65\206*$(IP\20Q\222\240\240\11\252\340x\310\340\244\22qB\21\0\305\221\35\315\351\203\65" "\206*$(IP\20Q\222\240\240\11\252\340x$f\251\302\302l\0\305\225\35\315\351\203\65\206*$" "(IP\20Q\222\240\240\11\252\340x\240\263\340\263\340\23\0\305\227\37\315\351\203\65\206*$(IP" "\20Q\222\240\240\11\252\340x\260\300\3\261\272\250\270\42\0\305\230'\256\345\203\65$\64$\204($\42" "(&D,\244,$D,$EP\14\11QHhHhHhHhH\0\305\234!\313\351\203\61" "\42\202&B($B(\204($B(d\202&\42\60\42\60\42$\64\323\3\1\305\240#\313\351\203" "\61\42\202&B($B(\204($B(d\202&\42\60\42\374 \64\346 &\364 \0\305\251$" "\313\351\203\61\42\202&B($B(\204($B(d\202&\42\60\42\36 *(*\350(*\350" "\0\305\264\31\256\345\203;\11]DP\230X\224XHYTDPX\10]t\16\305\265\30\313\351\203" "\65\202J(H(H(\204(\5Uh<\350Ah\6\305\270\31\313\351\203\65\202J(H(H(" "\204(\5Uh<`h\322\203\1\305\271 \314\351\203\65\204*\42(EP\212\240\220\211\240$T\261" "\361\240Q\25\201!q\42\25\42\2\305\273\31\313\351\203\65\202J(H(H(\204(\5Uh<\300" "Qh\322\3\305\274\34\313\351\203\65\202J(H(H(\204(\5Uh\370Ah\314AL\350A\0" "\305\275\33\313\351\203\65\202J(H(H(\204(\5UhlEQ\224\225\244U\0\305\276\36\313\351" "\203\65\202J(H(H(\204(\5UhlEQD\214E\214T\214E\1\305\304\35\313\351\203\65" "\202J(H(H(\204(\5Uh<\300QTPTPT\320\1\305\305\35\313\351\203\65\202J(" "H(H(\204(\5Uh<@TPT\320QT\320\1\305\306$\315\351\203\65\206*$(IP" "\222\240\220\221\240\64T\301\361\0AI\202\222\30\205\4\305DDX\310\4\305\307\35\314\351\203\65\204*" "\42(EP\212\240\220\211\240$T\261\361p\261)%\302\204\2\305\310#\315\351\203\65\206*$(I" "P\222\240\220\221\240\64T\301\361p!\221!\201\21\351b\42\202Dd\2\305\311\34\313\351\203\65\202J" "(H(H(\204(\5Uh<\254QXLX\220\5\0\305\312\34\313\351\203\65\202J(H(H" "(\204(\5Uh<\300ah\240D\224P\0\305\314\31\313\351\203\65\202J(H(H(\204(\5" "Uh<\300i\320i\2\305\316\35\313\351\203\65\202J(H(H(\204(\5Uh<\344\201PL" "XL\320\201\0\305\320&\256\345\203\67\42\66\42\204*\42Q\12\261\230\10\261\210\11\261\230\210D)B" "\250\42b#b#b#b#\2\305\321\37\313\351\203\61\42\202&B($B($B\210B($" "\42\202&\42\60\42\374 \64\7\305\324 \313\351\203\61\42\202&B($B($B\210B($\42" "\202&\42\60\42:\64\323\3\1\305\330$\313\351\203\61\42\202&B($B($B\210B($\42" "\202&\42\60\42\374 \64\346 &\364 \0\305\340%\313\351\203\61\42\202&B($B($B\210" "B($\42\202&\42\60\42\36\340(*(*(*\350\0\305\341%\313\351\203\61\42\202&B($" "B($B\210B($\42\202&\42\60\42\36 *(*\350(*\350\0\305\343'\315\351\203\61\42" "\206&\42$($\42$($\42$\210\42$($\42\206&\42\64\42\36\64\70\251D\234P\0\305" "\345#\313\351\203\61\42\202&B($B($B\210B($\42\202&\42\60\42\36\270*QTT" "\5\0\305\354\31\256\345\203;\11]DP\230XHY\224XTDP\14\11]t\16\305\355\31\313\351" "\203\65\202J(H(\204(H(d\202*\64\36\364 \64\3\305\356\36\313\351\203\65\202J(H(" "\204(H(d\202*\64\36\256\242(*(*(*\0\305\360\31\313\351\203\65\202J(H(\204(" "H(d\202*\64qh\322\203\1\305\364\35\313\351\203\65\202J(H(\204(H(d\202*\64\374" " \64\346 &\364 \0\305\366\37\313\351\203\65\202J(H(\204(H(d\202*\64\266\242(\42" "\306\42F*\306\242\0\305\367\37\313\351\203\65\202J(H(\204(H(d\202*\64\266\42&(\42" "\306\302*\306\242\0\305\374\36\313\351\203\65\202J(H(\204(H(d\202*\64\36\340(*(*" "(*\350\0\305\375\36\313\351\203\65\202J(H(\204(H(d\202*\64\36 *(*\350(*" "\350\0\305\376%\315\351\203\65\206*$(IP\310HP\222\240\220\31\252\340x\200\240$AI\214B" "\202b\42\42,d\2\305\377\36\314\351\203\65\204*\42(EP\310DP\212\240\220\21\252\330x\270\330" "\224\22aB\1\306\0$\315\351\203\65\206*$(IP\310HP\222\240\220\31\252\340x\270\220\310\220" "\300\210t\61\21A\42\62\1\306\1\35\313\351\203\65\202J(H(\204(H(d\202*\64\36\326(" ",&,\310\2\0\306\5\33\313\351\203\65\202J(H(\204(H(d\202*\64\36\340(\364(\364" "\0\306\6\36\313\351\203\65\202J(H(\204(H(d\202*\64\36\362@(&,&\350@\0\306" "\7\35\313\351\203\65\202J(H(\204(H(d\202*\64\36$\354@\250*U\11\0\306\10'\256" "\345\203\67\42\66\42\204*\42Q\12\261\210\11\261\230\10\261\230\210D!\23!T\21\261\21\261\21\261\21" "\261\21\1\306\14!\313\351\203\61\42\202&B($B\210B($B\210\42\202&\42\60\42\60\42$" "\64\323\3\1\306\20#\313\351\203\61\42\202&B($B\210B($B\210\42\202&\42\60\42\374 " "\64\346 &\364 \0\306\30$\313\351\203\61\42\202&B($B\210B($B\210\42\202&\42\60" "\42\36\340(*(*(*\350\0\306\31$\313\351\203\61\42\202&B($B\210B($B\210\42" "\202&\42\60\42\36 *(*\350(*\350\0\306\33&\315\351\203\61\42\206&\42$($\42$\210" "\42$($\42$\210\42\206&\42\64\42\36\64\70\251D\234P\0\306\34,\315\351\203\61\42\206&\42" "$($\42$\210\42$($\42$\210\42\206&\42\64\42\36.$\62$\60\42]LD\220\210L" "\0\306$\26\255%\204\251.*]P\134P\134T\272zd\301\311\16\14\306%\30\315\345\203\251.*" ",*,*\256\64\70\354\300\36\340@\70'\0\306(\31\315\345\203\251.*,*,*\256\64\70\354" "\300\36:\70\361\201\10\0\306,\35\315\345\203\251.*,*,*\256\64\70\354\300\36\340@\70\350@" "(\370@\4\0\306-\36\315\345\203\251.*,*,*\256\64\70\354\300\274\242,*\244*$\62\244" "*\2\0\306.!\315\345\203\251.*,*,*\256\64\70\354\300\274\242,\42&\244\42&$*&" "\244\242\2\0\306\60\37\315\345\203\251.*,*,*\256\64\70\354\300\274(.(\246(&.\42\244" "B&\0\306\63\37\315\345\203\251.*,*,*\256\64\70\354\300\274&\360 \242d&*&\244d" "\4\0\306\64\37\315\345\203\251.*,*,*\256\64\70\354\300\36\340@(.(.(.\350@\4" "\0\306\65\37\315\345\203\251.*,*,*\256\64\70\354\300\36 .(.\350@(.\350@\4\0" "\306\67\33\315\345\203\251.*,*,*\256\64\70\354\300\36IplD\240L\20\0\306\71\33\315\345" "\203\251.*,*,*\256\64\70\354\300\36A]TXT\134\21\0\306;\34\315\345\203\251.*," "*,*\256\64\70\354\300\36*\322\64\66\42P&\6\0\306@%\316\345\203\65:\252&(*$&" ".\42&.\42&.\202\42*$\252&.*.*\346@\42:\15\0\306A\35\316\345\203\67\250(" "&*&U\314DTLPQX\222\203\211x\250\203\350\234\0\306D\36\316\345\203\67\250(&*&" "U\314DTLPQX\222\203\211x\240\350\254\17D\0\306H\42\316\345\203\67\250(&*&U\314" "DTLPQX\222\203\211x\250\203\350\260\203\260\350\203\20\0\306P\42\316\345\203\67\250(&*&" "U\314DTLPQX\222\203\211x\260\273\250\270\250\270\250\270\23\0\306Q\42\316\345\203\67\250(&" "*&U\314DTLPQX\222\203\211x\260\250\270\250\270\273\250\270\23\0\306S \316\345\203\67\250" "(&*&U\314DTLPQX\222\203\211x\330\350\264\22\201B\21\0\306T%\316\345\203\67\250" "(&*&U\314DTLPQX\222\203\211x\310\220\320\220\310\210\204\61\21Q\42\62\1\306U\36" "\316\345\203\67\250(&*&U\314DTLPQX\222\203\211xTva\331\331\0\306\134-\316\345" "\203\65$\64$\244&$\42*$D.\42D.\42D.\202\42*$IMHPTHPT\310" "\301DHhHhH\0\306]\37\314\345\203\63\42\244$\42UDV\21\23Q\21IJ\42\202R\34" "H\244\207\70\210\315\1\306` \314\345\203\63\42\244$\42UDV\21\23Q\21IJ\42\202R\34H" "\244\7\210\315\366@\0\306l\37\314\345\203\63\42\244$\42UDV\21\23Q\21IJ\42\202R\34H" "\244\7\271\312W\7\306o%\315\345\203\63\42\246$\42$*\42IT\304HTD\232\222\210\250\240\210" "\210\203\210\364\220\301I%\342\204\2\306q\42\314\345\203\63\42\244$\42UDV\21\23Q\21IJ\42" "\202R\34H\244\7\267\12\13\12\213\262\0\306x\36\314\345\203\67IQDT\214\134\210\134\210\134HD" "TLHQ\262\240\260\3\212\330\4\306y\34\314\345\203\67\244(\42*&\42*&\42*&\244(\331" "\1E<\304Al\16\306|\35\314\345\203\67\244(\42*&\42*&\42*&\244(\331\1E<@" "l\266\7\2\306\200!\314\345\203\67\244(\42*&\42*&\42*&\244(\331\1E<\304Al\320" "AP\354A\0\306\210\34\314\345\203\67\244(\42*&\42*&\42*&\244(\331\1E<\310U\276" ":\306\211\36\314\345\203\67\244(\42*&\42*&\42*&\244(\331\1E<HTVW\251\16\306" "\213!\315\345\203\67\246($*&$*&$*&\246(*,\342`\42\36\62\70\251D\234P\0" "\306\215 \314\345\203\67\244(\42*&\42*&\42*&\244(\331\1E<\270UXPX\224\5\0" "\306\224\34\255%\204\251.*]P\134P\134T\272z\260\230\300\230\300\230\300\230\240\3\3\306\225\32\315" "\345\203\251.*,*,*\256\60&\60&\350\300\36\340@\70'\0\306\230\33\315\345\203\251.*," "*,*\256\60&\60&\350\300\36:\70\361\201\10\0\306\234\37\315\345\203\251.*,*,*\256\60" "&\60&\350\300\36\340@\70\350@(\370@\4\0\306\244!\315\345\203\251.*,*,*\256\60&" "\60&\350\300\36\340@(.(.(.\350@\4\0\306\245!\315\345\203\251.*,*,*\256\60" "&\60&\350\300\36 .(.\350@(.\350@\4\0\306\247\35\315\345\203\251.*,*,*\256" "\60&\60&\350\300\36IplD\240L\20\0\306\251\35\315\345\203\251.*,*,*\256\60&\60" "&\350\300\36A]TXT\134\21\0\306\260\27\253\351\203\247*M\134H\134H\134LTT\371\1U" "hV\0\306\261\30\315\345\203\251.*,*,*\256\36\344\300,\70\360@\70'\0\306\264\33\315\345" "\203\251.*,*,*\256\36\301\201Yp`L`p\360\201\10\0\306\270\35\315\345\203\251.*," "*,*\256\36\344\300,\70\360@\70\350@(\370@\4\0\306\271\37\315\345\203\251.*,*,*" "\256\36\344\300,\70\256\242,*\244*$\62\244*\2\0\306\272\42\315\345\203\251.*,*,*\256" "\36\344\300,\70\256\242,\42&\244\42&$*&\244\242\2\0\306\300\37\315\345\203\251.*,*," "*\256\36\344\300,\70\360@(.(.(.\350@\4\0\306\301\37\315\345\203\251.*,*,*" "\256\36\344\300,\70\60.(.\350@(.\350@\4\0\306\303\34\315\345\203\251.*,*,*\256" "\36\344\300,\70\36\64\70\66\42P&\10\0\306\305\34\315\345\203\251.*,*,*\256\36\344\300," "\70\36\260.*,*\256\10\0\306\314#\314\345\203\67\244(\42*F.D.D.$\42*&\244" "(\366\200\42(,(\244(,(,\0\306\315\36\354\345\203\245(\42*&\42*&\42*&\244(" "\366\200\42*\204*=\364Al\6\306\320\37\354\345\203\245(\42*&\42*&\42*&\244(\66\366" "\200\42*\204*'\261i\17\6\306\324#\354\345\203\245(\42*&\42*&\42*&\244(\366\200\42" "*\204*=\304Al\320AP\354A\0\306\334\36\354\345\203\245(\42*&\42*&\42*&\244(" "\366\200\42*\204*=\310U\276:\306\335 \354\345\203\245(\42*&\42*&\42*&\244(\366\200" "\42*\204*=HTVW\251\16\306\340'\356\345\203\245(&*&UL\252\230\240\242\350\220\203\211" "\270\20\272\250x\310\220\320\220\310\210\204\61\21Q\42\62\1\306\341\42\354\345\203\245(\42*&\42*&" "\42*&\244(\366\200\42*\204*=\270UXPX\224\5\0\306\350.\316\345\203\67\42\244(\42U" "L\204\134H\204\134H\204\134HD\252\230\210\220\242\210\330\210\3\212Da\21A\61\24Aa\21Aa" "\21\1\306\351!\354\345\203\245$\42UDV\21YE$)\211\210\214\70\220H\24A\21\224\42\36\372" " \66\3\306\354)\354\345\203\245$\42UDV\21YE$)\211\210\214\210\214\70\220H\224\42(\202" "\42(EHDPDHl\354\301\0\306\360&\354\345\203\245$\42UDV\21YE$)\211\210\214" "\70\220H\24A\21\224\42\36\342 \66\350 (\366 \0\306\370!\354\345\203\245$\42UDV\21Y" "E$)\211\210\214\70\220H\24A\21\224\42\36\344*_\35\306\371#\354\345\203\245$\42UDV\21" "YE$)\211\210\214\70\220H\24A\21\224\42\36$*\253\253T\7\306\375%\354\345\203\245$\42U" "DV\21YE$)\211\210\214\70\220H\24A\21\224\42\36\334*,(,\312\2\0\307\4#\314\345" "\203\67\244(\42*F.D.D.$\42*&\244(\366\200\42(,(,(,(,\0\307\5" "\34\354\345\203\245(\42*&\42*&\42*&\244(\366\200\42*{D\7\261\31\307\10\37\354\345\203" "\245(\42*&\42*&\42*&\244(\66\366\200\42*\237\4\206\304\306\36\14\307\14!\354\345\203\245" "(\42*&\42*&\42*&\244(\366\200\42*{\270\203\330\240\203\240\330\203\0\307\24\34\354\345\203" "\245(\42*&\42*&\42*&\244(\366\200\42*{\300\253|u\307\25\36\354\345\203\245(\42*" "&\42*&\42*&\244(\366\200\42*{\300\250\254\256R\35\307\27\42\355\345\203\245($*&$" "*&$*&\246(\70\342`\42,*,\36ApR\211\70\241\0\307\31 \354\345\203\245(\42*" "&\42*&\42*&\244(\366\200\42*{TVaAaQ\26\0\307 \35\255\345\203\251.*]" "P\134P\134T\272z\220\3\243\230\300\230\300\230\300\230 \0\307!\32\315\345\203\251.*,*,*" "\256\36\344\300(&\60&\354@\70'\0\307$\36\315\345\203\251.*,*,*\256\36\301\201QL" "`LXDLXp\360\201\10\0\307(\37\315\345\203\251.*,*,*\256\36\344\300(&\60&" "\354@\70\350@(\370@\4\0\307\60!\315\345\203\251.*,*,*\256\36\344\300(&\60&\354" "@(.(.(.\350@\4\0\307\61!\315\345\203\251.*,*,*\256\36\344\300(&\60&" ",.(.\350@(.\350@\4\0\307\63\36\315\345\203\251.*,*,*\256\36\344\300(&\60" "&\36\60\70\66\42P&\10\0\307\65\36\315\345\203\251.*,*,*\256\36\344\300(&\60&\36" "\254.*,*\256\10\0\307\67\36\315\345\203\251.*,*,*\256\36\344\300(&\60&\66\322\64" "\66\42P&\6\0\307<\24m\245\204\251.*]P\134P\134T\272z\324\7\6\307=\27\315\345\203" "\251.*,*,*\256\36\301\201=\300\201pN\0\307@\30\315\345\203\251.*,*,*\256\36" "\301\201=tp\342\3\21\0\307D\34\315\345\203\251.*,*,*\256\36\301\201=\300\201p\320\201" "P\360\201\10\0\307J\34\315\345\203\251.*,*,*\256\36\301\201y\205UH\222\222\314BB*" "\14\307L\36\315\345\203\251.*,*,*\256\36\301\201=\300\201P\134P\134P\134\320\201\10\0\307" "M\36\315\345\203\251.*,*,*\256\36\301\201=@\134P\134\320\201P\134\320\201\10\0\307O\32" "\315\345\203\251.*,*,*\256\36\301\201=\222\340\330\210@\231 \0\307Q\32\315\345\203\251.*" ",*,*\256\36\301\201=\202\272\250\260\250\270\42\0\307R\32\315\345\203\251.*,*,*\256\36" "\301\201=\2\323\330\210@\231\30\0\307S\33\315\345\203\251.*,*,*\256\36\301\201=T\244i" "lD\240L\14\0\307T\32\315\345\203\251.*,*,*\256\36\301\201=\300\201p\320\201p\22\0" "\307U\34\315\345\203\251.*,*,*\256\36\301\201=\300\201P\360\201P\360\201\10\0\307V\34\315" "\345\203\251.*,*,*\256\36\301\201=\364\201XL`L\330\201\10\0\307W\33\315\345\203\251." "*,*,*\256\36\301\201=P\340\201X]T\134\21\0\307X\34\314\345\203\67IQDT\214\134" "\210\134\210\134HDTLHQ\354\1El\6\307\134\35\314\345\203\67\244(\42*&\42*&\42*" "&\244(\366\200\42\36 \66\333\3\1\307`!\314\345\203\67\244(\42*&\42*&\42*&\244(" "\366\200\42\36\342 \66\350 (\366 \0\307h\34\314\345\203\67\244(\42*&\42*&\42*&\244" "(\366\200\42\36\344*_\35\307k \315\345\203\67\246($*&$*&$*&\246(\70\342`" "\42\36\62\70\251D\234P\0\307t\30\254\345\203\67\11UDP\220X\214X\214XLDP\22\252\330" "\34\307u\30\313\351\203\65\202J(H(H(H(\5Uh<\350Ah\6\307x\30\313\351\203\65" "\202J(H(H(H(\5Uh\342\320\244\7\3\307|\34\313\351\203\65\202J(H(H(H" "(\5Uh\370Ah\314AL\350A\0\307}\33\313\351\203\65\202J(H(H(H(\5Uh" "lEQ\224\225\244U\0\307~\36\313\351\203\65\202J(H(H(H(\5UhlEQD\214" "E\214T\214E\1\307\203\42\315\351\203\65\206*$(IP\222\240$Ai\250\202\343\1\212\342\42\16" "jF\302b\42jF\0\307\204\35\313\351\203\65\202J(H(H(H(\5Uh<\300QTP" "TPT\320\1\307\205\35\313\351\203\65\202J(H(H(H(\5Uh<@TPT\320QT" "\320\1\307\207\34\314\351\203\65\204*\42(EP\212\240\24AI\250b\343\341bSJ\204\11\5\307\210" "\42\315\351\203\65\206*$(IP\222\240$Ai\250\202\343\341B\42C\2#\322\305D\4\211\310\4" "\307\211\34\313\351\203\65\202J(H(H(H(\5Uh<\254QXLX\220\5\0\307\212\34\313" "\351\203\65\202J(H(H(H(\5Uh<\300ah\240D\224P\0\307\216\35\313\351\203\65\202" "J(H(H(H(\5Uh<\344\201PLXL\320\201\0\307\220\33\255\351\203\63\70\346$\60" "&\60&.\210F(*$&F($\70\67\0\307\221\30\316\345\203\67:\304*,\263\21\211\250\20" "\241\324\361P\7\321\71\1\307\224\30\316\345\203\67:\304*,\263\21\211\250\20\241\324\251\242\263>\20\1" "\307\226!\317\345\203\67<\306*.,.lF\42*F(y<X\134X\320M\330T\232\240\222\21" "\0\307\227\31\316\345\203\67:\304*,\263\21\211\250\20\241\324\361`w\321\251O\0\307\230\35\316\345\203" "\67:\304*,\263\21\211\250\20\241\324\361P\7\321a\7a\321\7!\0\307\232!\316\345\203\67:\304" "*,\263\21\211\250\20\241\324\361 \25u\21\61\61\25\61\251bb*J\0\307\240\35\316\345\203\67:" "\304*,\263\21\211\250\20\241\324\361`wQqQqQq'\0\307\241\35\316\345\203\67:\304*," "\263\21\211\250\20\241\324\361`QqQqwQq'\0\307\243\33\316\345\203\67:\304*,\263\21\211" "\250\20\241\324\361\260\321i%\2\205\42\0\307\244 \316\345\203\67:\304*,\263\21\211\250\20\241\324\361" "\220!\241!\221\21\11c\42\242Dd\2\307\245\31\316\345\203\67:\304*,\263\21\211\250\20\241\324\361" "\250\354\302\262\263\1\307\246\34\316\345\203\67:\304*,\263\21\211\250\20\241\324\361`\267\321\261\22\201B" "!\0\307\254$\255\351\203\63$\62\344 $ULHTLHP\20\215PH\66!C!)C\42" "C\42C\42C\2\307\255\36\314\345\203\63\42\62\342&\42(EP\320\210DL\304PHDdD<" "\304Al\16\307\260 \314\345\203\63\42\62\342&\42(EP\320\210DL\304PHDdDdDL" "l\266\7\2\307\264#\314\345\203\63\42\62\342&\42(EP\320\210DL\304PHDdD<\304A" "l\320AP\354A\0\307\274\36\314\345\203\63\42\62\342&\42(EP\320\210DL\304PHDdD" "<\310U\276:\307\275 \314\345\203\63\42\62\342&\42(EP\320\210DL\304PHDdD<H" "TVW\251\16\307\277$\316\345\203\63\42\66\42\304&\42,(\42,hH\42&\42D($\42\66" "\42\36\70:\255D\240P\0\307\300*\316\345\203\63\42\66\42\304&\42,(\42,hH\42&\42D" "($\42\66\42\36\62$\64$\62\42aLD\224\210L\0\307\301 \314\345\203\63\42\62\342&\42(" "EP\320\210DL\304PHDdD<\202\262\250\314*\0\307\310\31\255\351\203\63\70\346$\60&\60" "\206(\231PTH\214QHpn\0\307\311\31\316\345\203\67:\304*,l(,H\42\252(u<" "\324AtN\0\307\314\32\316\345\203\67:\304*,l(,H\42\252(u<Pt\326\7\42\0\307" "\316!\317\345\203\67<\306*.l*,J\42jB(y<X\134X\320M\330T\232\240\222\21\0" "\307\320\36\316\345\203\67:\304*,l(,H\42\252(u<\324At\330AX\364A\10\0\307\330" "\36\316\345\203\67:\304*,l(,H\42\252(u<\330]T\134T\134T\334\11\0\307\335\32\316" "\345\203\67:\304*,l(,H\42\252(u<*\273\260\354l\0\307\344\42\255\351\203\63$\62\344" " $ULHT\14Q\222\30\241\220l\214BR\206D\206D\206D\206\4\307\350\37\314\345\203\63\42" "\62\342&\42(h(E\210DLQHDdDdDLl\266\7\2\307\354\42\314\345\203\63\42\62" "\342&\42(h(E\210DLQHDdD<\304Al\320AP\354A\0\310\0\27\255\351\203\71" "\370 *YTXP\20\215\134H\262\241\250\340\34\310\1\27\314\345\203\67\366*(,(hD\42j" "(m<\364Al\6\310\4\27\314\345\203\67\366*(,(hD\42j(m<l\266\7\3\310\10" "\34\314\345\203\67\366*(,(hD\42j(m<\304Al\320AP\354A\0\310\12\37\314\345\203" "\67\366*(,(hD\42j(mtEUDLDELDTLD\3\310\20\27\314\345\203\67" "\366*(,(hD\42j(m<\310U\276:\310\21\31\314\345\203\67\366*(,(hD\42j" "(m<HTVW\251\16\310\23\33\315\345\203\67\70\302*YT\320\214DT\204P\342x\310\340\244" "\22qB\1\310\25\33\314\345\203\67\366*(,(hD\42j(m<\270UXPX\224\5\0\310" "\26\33\314\345\203\67\366*(,(hD\42j(m<\310el\244D\230P\0\310\34(\255\351\203" "\65\42\64\342 &\42*(\42*(\42(f\42F*\42$Q\304PLDhDhDhDh" "D\0\310\35\37\314\345\203\63\42\62\342&\42(EP\310D\210DL\304PHDdD<\304Al" "\16\310 \314\345\203\63\42\62\342&\42(EP\310D\210DL\304PHDdD<@l\266\7" "\2\310$$\314\345\203\63\42\62\342&\42(EP\310D\210DL\304PHDdD<\304Al\320" "AP\354A\0\310,\37\314\345\203\63\42\62\342&\42(EP\310D\210DL\304PHDdD<" "\310U\276:\310-!\314\345\203\63\42\62\342&\42(EP\310D\210DL\304PHDdD<H" "TVW\251\16\310/%\316\345\203\63\42\66\42\304&\42,(\42,d\42H\42&\42D($\42" "\66\42\36\70:\255D\240P\0\310\61!\314\345\203\63\42\62\342&\42(EP\310D\210DL\304P" "HDdD<\202\262\250\314*\0\310\70\27\255\351\203\71\370 *YT\14Q\134\214\134H\32\243\250" "\340\34\310<\27\314\345\203\67\366*(h(,D\42\246(m\362\330\264\7\3\310@\34\314\345\203\67" "\366*(h(,D\42\246(m<\304Al\320AP\354A\0\310H\27\314\345\203\67\366*(h" "(,D\42\246(m<\310U\276:\310I\31\314\345\203\67\366*(h(,D\42\246(m<H" "TVW\251\16\310L!\316\345\203\67:\304*,h,\221D\314\210P\352x\310\220\320\220\310\210\204" "\61\21Q\42\62\1\310M\33\314\345\203\67\366*(h(,D\42\246(m<\270UXPX\224\5" "\0\310T(\255\351\203\65\42\64\342 &\42*(\42*d\42(*\42F*\42$\311\304PLD" "hDhDhDhD\0\310p\25\215%\204\347\66\70\66V\64$N(\36.\70\331\201\1\310q" "\27\315\345\203\307\66T\42N(\36.\70\354\300\36\340@\70'\0\310t\30\315\345\203\307\66T\42N" "(\36.\70\354\300\36:\70\361\201\10\0\310x\34\315\345\203\307\66T\42N(\36.\70\354\300\36\340" "@\70\350@(\370@\4\0\310z \315\345\203\307\66T\42N(\36.\70\354\300\274\242,\42&\244" "\42&$*&\244\242\2\0\310\200\36\315\345\203\307\66T\42N(\36.\70\354\300\36\340@(.(" ".(.\350@\4\0\310\201\36\315\345\203\307\66T\42N(\36.\70\354\300\36 .(.\350@(" ".\350@\4\0\310\203\32\315\345\203\307\66T\42N(\36.\70\354\300\36IplD\240L\20\0\310" "\205\32\315\345\203\307\66T\42N(\36.\70\354\300\36A]TXT\134\21\0\310\206\32\315\345\203\307" "\66T\42N(\36.\70\354\300\36\201ilD\240L\14\0\310\207\33\315\345\203\307\66T\42N(\36" ".\70\354\300\36*\322\64\66\42P&\6\0\310\213\33\315\345\203\307\66T\42N(\36.\70\354\300\36" "(\360@\254.*\256\10\0\310\214\42\316\345\203\65:\350$\62&\62&\60(N\210&$&H(" "$.*.*\346@\42:\15\0\310\215\33\316\345\203\67\306(.*J\42hB(&,'\7\23" "\361P\7\321\71\1\310\224 \316\345\203\67\306(.*J\42hB(&,'\7\23\361P\7\321a" "\7a\321\7!\0\310\235 \316\345\203\67\306(.*J\42hB(&,'\7\23\361`QqQ" "qwQq'\0\310\237\36\316\345\203\67\306(.*J\42hB(&,'\7\23\361\260\321i%" "\2\205\42\0\310\241\34\316\345\203\67\306(.*J\42hB(&,'\7\23\361\250\354\302\262\263\1" "\310\250,\316\345\203\65$\64$\342$YLHXLHTPH\220\20MHLH\204PH\242\250" "\220\240\250\220\203\211\220\320\220\320\220\0\310\274+\316\345\203\63\42\306$\42.&\42J\42dF(\42" "YPDXPD\310ADz\310\220\320\220\310\210\204\61\21Q\42\62\1\310\275#\314\345\203\63\42\302" "$\42*&\42F\42dB(\42Q\212\240\24\7\22\351\301\255\302\202\302\242,\0\310\304\36\314\345\203" "\67\305MXPXPT\42\251\230\220\240\10\241\230\240\260\240\260\3\212\330\4\310\310\34\314\345\203\67\302" "(*\215DP\204PLPXP\330\1E<@l\266\7\2\310\314 \314\345\203\67\302(*\215D" "P\204PLPXP\330\1E<\304Al\320AP\354A\0\310\324\33\314\345\203\67\302(*\215D" "P\204PLPXP\330\1E<\310U\276:\310\325\35\314\345\203\67\302(*\215DP\204PLP" "XP\330\1E<HTVW\251\16\310\327 \315\345\203\67\304(,*H\42(D(&*,*" ",\342`\42\36\62\70\251D\234P\0\310\331\37\314\345\203\67\302(*\215DP\204PLPXP\330" "\1E<\270UXPX\224\5\0\310\340\32\215%\204\347\66\70\66V\64$N(.&\60&\60&" "\60&\350\300\0\310\341\31\315\345\203\307\66T\42N(\36*&\60&\350\300\36\340@\70'\0\310\344" "\32\315\345\203\307\66T\42N(\36*&\60&\350\300\36:\70\361\201\10\0\310\365\34\315\345\203\307\66" "T\42N(\36*&\60&\350\300\36A]TXT\134\21\0\310\374\25\253\351\203\345\62\64\62R\60" "$J(\372\200*\64+\0\310\375\27\315\345\203\307\66\70T\42N(\36\342\300,\70\360@\70'\0" "\311\0\32\315\345\203\307\66\70T\42N(\36\374\300,\70\60&\60\70\370@\4\0\311\4\34\315\345\203" "\307\66\70T\42N(\36\342\300,\70\360@\70\350@(\370@\4\0\311\5\36\315\345\203\307\66\70T" "\42N(\36\342\300,\70\256\242,*\244*$\62\244*\2\0\311\6!\315\345\203\307\66\70T\42N" "(\36\342\300,\70\256\242,\42&\244\42&$*&\244\242\2\0\311\14\36\315\345\203\307\66\70T\42" "N(\36\342\300,\70\360@(.(.(.\350@\4\0\311\15\36\315\345\203\307\66\70T\42N(" "\36\342\300,\70\60.(.\350@(.\350@\4\0\311\17\33\315\345\203\307\66\70T\42N(\36\342" "\300,\70\36\64\70\66\42P&\10\0\311\21\33\315\345\203\307\66\70T\42N(\36\342\300,\70\36\260" ".*,*\256\10\0\311\30\42\314\345\203\67\342&,(,(*\221TLHP\204PL\354\1E" "PXPHQXPX\0\311,(\356\345\203\303(.*.*J\42(F(&:\344`\42." "\204.*\36\62$\64$\62\42aLD\224\210L\0\311\64/\316\345\203\67\42\342&\42,(\42," "(\42*E\220TDLHPD\204PLDl\304\1E\242\260\210\240\30\212\240\260\210\240\260\210\0" "\311P\42\314\345\203\67\342&,(,(*\221TLHP\204PL\354\1EPXPXPXP" "X\0\311Q\31\354\345\203\303(*\67\22A\21B\61\261\7\24Q\331#:\210\315\0\311T\34\354\345" "\203\303(*\67\22A\21B\61\261\261\7\24Q\371$\60$\66\366`\0\311X\35\354\345\203\303(*" "\67\22A\21B\61\261\7\24Q\331\303\35\304\6\35\4\305\36\4\311`\31\354\345\203\303(*\67\22A" "\21B\61\261\7\24Q\331\3^\345\253\3\311a\33\354\345\203\303(*\67\22A\21B\61\261\7\24Q" "\331\3Feu\225\352\0\311c!\355\345\203\303(,*,*H\42(D(&\70\342`\42,*" ",\36ApR\211\70\241\0\311l\34\255\345\203\347\66\70\66V\64$N(\36\342\300(&\60&\60" "&\60&\10\0\311p\35\315\345\203\307\66\70T\42N(\36\374\300(&\60&,\42&,\70\370@" "\4\0\311t\36\315\345\203\307\66\70T\42N(\36\342\300(&\60&\354@\70\350@(\370@\4\0" "\311| \315\345\203\307\66\70T\42N(\36\342\300(&\60&\354@(.(.(.\350@\4\0" "\311\210\23M\245\204\347\66\70\66V\64$N(\36\374\300\0\311\211\25\315\345\203\307\66T\42N(\36" "\361\201=\300\201pN\0\311\214\26\315\345\203\307\66T\42N(\36\361\201=tp\342\3\21\0\311\220" "\32\315\345\203\307\66T\42N(\36\361\201=\300\201p\320\201P\360\201\10\0\311\230\34\315\345\203\307\66" "T\42N(\36\361\201=\300\201P\134P\134P\134\320\201\10\0\311\231\34\315\345\203\307\66T\42N(" "\36\361\201=@\134P\134\320\201P\134\320\201\10\0\311\233\30\315\345\203\307\66T\42N(\36\361\201=" "\222\340\330\210@\231 \0\311\235\30\315\345\203\307\66T\42N(\36\361\201=\202\272\250\260\250\270\42\0" "\311\300\27\253\351\203\65\364 &*(*(U\214TH\242\241\230\320\34\311\301\27\314\345\203\67\366*" "(,(,D\42j(m<\364Al\6\311\304\27\314\345\203\67\366*(,(,D\42j(m" "\362\330\264\7\3\311\307\30\314\345\203\67\366*(,(,D\42j(m<\310Ul\332\3\311\310\34" "\314\345\203\67\366*(,(,D\42j(m<\304Al\320AP\354A\0\311\312\37\314\345\203\67" "\366*(,(,D\42j(mtEUDLDELDTLD\3\311\320\27\314\345\203\67\366" "*(,(,D\42j(m<\310U\276:\311\321\31\314\345\203\67\366*(,(,D\42j(" "m<HTVW\251\16\311\323\33\315\345\203\67\70\302*YTX\214DT\204P\342x\310\340\244\22" "qB\1\311\325\33\314\345\203\67\366*(,(,D\42j(m<\270UXPX\224\5\0\311\326" "\33\314\345\203\67\366*(,(,D\42j(m<\310el\244D\230P\0\311\331\31\314\345\203\67" "\366*(,(,D\42j(m<\310U\354U\354\1\311\332\34\314\345\203\67\366*(,(,D" "\42j(m<\360\201TL\134L\324\201\0\311\334\42\257\341\203\67<\210b$.&$.&$L" "$\206&\42MTLDH\214\210LDxn\0\311\335\34\317\341\203\71<fb(MTPL\324" "D\216Bb\62\217\207;\10\317\11\0\311\340\34\317\341\203\71<fb(MTPL\324D\216Bb" "\62O\26\236\371\201\10\0\311\342$\320\341\203\71\36 hb(*&*M\324HDF\61\271\7\210" "\7\214Kt\24\66\26\25\23U\62\2\311\344 \317\341\203\71<fb(MTPL\324D\216Bb" "\62\217\207;\10\217;\210\13\77\10\1\311\347%\317\341\203\71<fb(MTPL\324D\216Bb" "\62\217\7\252\210\11\214\210\11\252(\212\212\11\252(\1\311\354 \317\341\203\71<fb(MTPL" "\324D\216Bb\62\217\7<\214\12\214\12\214\12<\1\311\355 \317\341\203\71<fb(MTPL" "\324D\216Bb\62\217\7\214\12\214\12<\214\12<\1\311\357\36\317\341\203\71<fb(MTPL" "\324D\216Bb\62\217\207\16O,\21)\24\1\311\360#\317\341\203\71<fb(MTPL\324D" "\216Bb\62\217\207\15\211\15\11\215H\31\23\21&\42\23\311\361\36\317\341\203\71<fb(MTP" "L\324D\216Bb\62\217Gh\30\26\27\26h\3\311\370+\257\341\203\67$\66$\202b$QLH" "\242\230\220\64\42\61\64\21iB\322D\204\204\214\310D\204\304\206\304\206\304\206\304\206\4\311\371 \315\341" "\203\65\42\64\42bIDHL\212\220\230\230\211\234D\310\244H\32\21\17s\20\234\3\311\374\42\315\341" "\203\65\42\64\42bIDHL\212\220\230\230\211\234D\310\244H\32\21\32\21\24\234\361\201\0\312\0$" "\315\341\203\65\42\64\42bIDHL\212\220\230\230\211\234D\310\244H\32\21\17s\20\34u\20\25|" "\20\312\10$\315\341\203\65\42\64\42bIDHL\212\220\230\230\211\234D\310\244H\32\21\17t\26\25" "\26\25\26\25v\312\11$\315\341\203\65\42\64\42bIDHL\212\220\230\230\211\234D\310\244H\32\21" "\17\24\25\26\25v\26\25v\312\13$\317\341\203\65\42\70\42fb$\42(&EPL\314LD&" "\21!\61)\22G\304\203g,\21)\24\312\14+\317\341\203\65\42\70\42fb$\42(&EPL" "\314LD&\21!\61)\22G\304\303\206\304\206\204F\244\214\211\10\23\221\11\312\15$\315\341\203\65\42" "\64\42bIDHL\212\220\230\230\211\234D\310\244H\32\21\217\246.*,*\256\2\0\312\24!\257" "\341\203\67<\210b$.&$.&\204F$&,\42MTLD\210\211LDxn\0\312\30\34" "\317\341\203\71<fb(M\324HLTLDF\64\231\307\203\205g~ \2\312)\36\317\341\203\71" "<fb(M\324HLTLDF\64\231\307#\64\14\213\13\13\264\1\312L\37\257\341\203=\5\305" "TPLTPLT\214H\14MD\262\220\230\210\250\21\231\240\360\34\312M\31\315\341\203\71\305\242\220" "\230\250\220\230\230\211\34\311d\34\217\342 \70\3\312P\32\315\341\203\71\305\242\220\230\250\220\230\230\211\34" "\311d\34\17\36\234\370`\0\312T\35\315\341\203\71\305\242\220\230\250\220\230\230\211\34\311d\34\17s\20" "\34u\20\25|\20\312\134\35\315\341\203\71\305\242\220\230\250\220\230\230\211\34\311d\34\17t\26\25\26\25" "\26\25v\312]\35\315\341\203\71\305\242\220\230\250\220\230\230\211\34\311d\34\17\24\25\26\25v\26\25v" "\312_\35\316\341\203\71:db(&UL\232\221\210\214\42b\262\216\207\215N+\21(\24\312`$" "\317\341\203\71<fb(MTPL\314LDF!\61\231\307\303\206\304\206\204F\244\214\211\10\23\221" "\11\312a\34\315\341\203\71\305\242\220\230\250\220\230\230\211\34\311d\34\217\304,UX\230\5\0\312h." "\257\341\203\71\42\70\42\202b&\42(&EPL\212\30\221\220\211\230\210D\21!\61\21\61\21#\62" "!\21\301\21\301\21\301\21\301\21\1\312}$\315\341\203\65\42\64\42bIDHL\212\220\230\210\211<" "\211\220I\221\64\42\36M]TXT\134\5\0\312\204\37\257\341\203=\5\305TPLTPL\10\215" "HXLD\262\220\230\210\20\23\231\240\360\34\312\230$\317\341\203\71<fb(M\314PLTLD" "&#\61\231\307\303\206\304\206\204F\244\214\211\10\23\221\11\312\274\33m%\204\205b\60&\60&N$" "\60\42]LD\220\210L`p\262\3\3\312\275\31\315\345\203\203]L\134L\134DV\61)\203\303\16" "\354\1\16\204s\2\312\300\32\315\345\203\203]L\134L\134DV\61)\203\303\16\354\241\203\23\37\210\0" "\312\304\36\315\345\203\203]L\134L\134DV\61)\203\303\16\354\1\16\204\203\16\204\202\17D\0\312\314" " \315\345\203\203]L\134L\134DV\61)\203\303\16\354\1\16\204\342\202\342\202\342\202\16D\0\312\315" " \315\345\203\203]L\134L\134DV\61)\203\303\16\354\1\342\202\342\202\16\204\342\202\16D\0\312\317" "\34\315\345\203\203]L\134L\134DV\61)\203\303\16\354\221\4\307F\4\312\4\1\312\321\34\315\345\203" "\203]L\134L\134DV\61)\203\303\16\354\21\324E\205E\305\25\1\312\323\35\315\345\203\203]L\134" "L\134DV\61)\203\303\16\354\241\42Mc#\2eb\0\312\330)\317\341\203\67<\210b$.&" "$.&$L$&,\42\15ILDH\214\210LD`T`T\320\201Dx\32\0\312\331\36\316" "\345\203\201\202$*&QLPLD\66\64I\302rr\60\21\17u\20\235\23\0\312\340\42\316\345\203" "\201\202$*&QLPLD\66\64I\302rr\60\21\17u\20\35v\20\26}\20\2\312\354&\316" "\345\203\201\202$*&QLPLD\66\64I\302rr\60\21\17\31\22\32\22\31\221\60&\42JD" "&\0\312\364\60\317\341\203\67$\66$\202b$QLH\242\230\220\64\42\61!\61\21iHb\42B" "BFd\42B\242\222D%\211\70\220\10\211\15\211\15\11\313\10.\316\345\203\201\242\42*&\42QL" "HDLD\26#\61\61\22aA\21aA\21!\7\21\351!CBC\42#\22\306DD\211\310\4" "\313\20$\315\341\203\71\5\305LPL\242\230\64\42A\61\21\211Bb\42bFdB\242\302\242\302\42" "\16&\202\23\313\24\36\314\345\203\201\202$&\223\230\240\210\334\310$\11\12\13\12;\240\210\7\210\315\366" "@\0\313\30!\314\345\203\201\202$&\223\230\240\210\334\310$\11\12\13\12;\240\210\207\70\210\15:\10" "\212=\10\313 \35\314\345\203\201\202$&\223\230\240\210\334\310$\11\12\13\12;\240\210\7\271\312W\7" "\313!\37\314\345\203\201\202$&\223\230\240\210\334\310$\11\12\13\12;\240\210\7\211\312\352*\325\1\313" "A\36\315\345\203\203]L\134L\134DV\61\351b\2c\202\16\354\21\324E\205E\305\25\1\313H\33" "\253\351\203\203b,&,&J$,\42ULD\210\232\340\3\252\320\254\0\313I\31\315\345\203\203]" "L\134L\134DV\61\351!\16\314\202\3\17\204s\2\313L\34\315\345\203\203]L\134L\134DV\61" "\351\301\17\314\202\3c\2\203\203\17D\0\313P\36\315\345\203\203]L\134L\134DV\61\351!\16\314" "\202\3\17\204\203\16\204\202\17D\0\313X \315\345\203\203]L\134L\134DV\61\351!\16\314\202\3" "\17\204\342\202\342\202\342\202\16D\0\313Y \315\345\203\203]L\134L\134DV\61\351!\16\314\202\3" "\343\202\342\202\16\204\342\202\16D\0\313]\35\315\345\203\203]L\134L\134DV\61\351!\16\314\202\343" "\1\353\242\302\242\342\212\0\313d(\315\341\203\71\202b&(&QL\32\221\240\230\210D!\61\21\61" "#\62!\301\21\7\23QaQ!UaQa\1\313x*\356\345\203\201\202$*&QLPLD" "\66!\61I\242C\16&\342B\350\242\342!CBC\42#\22\306DD\211\310\4\313y \354\345\203" "\201\202$&\223\230\240\210\334\310$\211=\240\210\12\241J\17n\25\26\24\26e\1\313\234(\315\341\203" "\71\202b&(&QL\32\221\240\230\210D!\61\21\61#\62!\301\21\7\23QaQaQaQ" "a\1\313\270#\255\345\203\205b\60&\60&N$\60\42]LD\220\210L<\300\201QL`L`" "L`L\20\0\313\324\32-\245\204\205b\60&\60&N$\60\42]LD\220\210L<\300\201\1\313" "\344\37\315\345\203\203]L\134L\134DV\61\351\301\17\354\1\16\204\342\202\342\202\342\202\16D\0\313\347" "\33\315\345\203\203]L\134L\134DV\61\351\301\17\354\221\4\307F\4\312\4\1\313\351\33\315\345\203\203" "]L\134L\134DV\61\351\301\17\354\21\324E\205E\305\25\1\314\14\35\255\341\203\71\5\305LPL" "\242\230\64\42A\61\21\211Bb\42bFdB\202s\314\15\31\315\341\203\71\305\242\220\230\250\220\230\250" "\210\34\311d\34\217\342 \70\3\314\20\32\315\341\203\71\305\242\220\230\250\220\230\250\210\34\311d\234\36\42" "\70\361\301\0\314\24\35\315\341\203\71\305\242\220\230\250\220\230\250\210\34\311d\34\17s\20\34u\20\25|" "\20\314\34\35\315\341\203\71\305\242\220\230\250\220\230\250\210\34\311d\34\17t\26\25\26\25\26\25v\314\35" "\35\315\341\203\71\305\242\220\230\250\220\230\250\210\34\311d\34\17\24\25\26\25v\26\25v\314!\34\315\341" "\203\71\305\242\220\230\250\220\230\250\210\34\311d\34\217\304,UX\230\5\0\314\42\34\315\341\203\71\305\242" "\220\230\250\220\230\250\210\34\311d\34\17t\32\34*\21'\24\314'\35\315\341\203\71\305\242\220\230\250\220" "\230\250\210\34\311d\34\17\26x V\27\25W\2\314(\34\255\351\203\63,*,*\346$\60&." "\210F(*$&F($\70\67\0\314)\32\316\345\203\67:*.\304*\335HDX\210LTt" "<\324AtN\0\314,\32\316\345\203\67:*.\304*\335HDX\210LTt\252\350\254\17D\0" "\314.\42\317\345\203\67<,.\306*,n&\42,F&*<\36,.,\350&l*MP\311" "\10\0\314\60\37\316\345\203\67:*.\304*\335HDX\210LTt<\324At\330AX\364A\10" "\0\314\70\37\316\345\203\67:*.\304*\335HDX\210LTt<\330]T\134T\134T\334\11\0" "\314\71\37\316\345\203\67:*.\304*\335HDX\210LTt<XT\134T\334]T\334\11\0\314" ";\35\316\345\203\67:*.\304*\335HDX\210LTt<ltZ\211@\241\10\0\314<\42\316" "\345\203\67:*.\304*\335HDX\210LTt<dHhHdD\302\230\210(\21\231\0\314=" "\33\316\345\203\67:*.\304*\335HDX\210LTt<*\273\260\354l\0\314>\36\316\345\203\67" ":*.\304*\335HDX\210LTt<\330mt\254D\240P\10\0\314D%\255\351\203\63$&" "*$&*\344 $ULHP\20\215PH\66!C!)C\42C\42C\42C\2\314E\36\314" "\345\203\63\42\62\42&*\342&\42&j$\42(b&EdD<\304Al\16\314H \314\345\203" "\63\42\62\42&*\342&\42&j$\42(b&EdDdDLl\266\7\2\314L#\314\345\203" "\63\42\62\42&*\342&\42&j$\42(b&EdD<\304Al\320AP\354A\0\314T\36" "\314\345\203\63\42\62\42&*\342&\42&j$\42(b&EdD<\310U\276:\314U \314\345" "\203\63\42\62\42&*\342&\42&j$\42(b&EdD<HTVW\251\16\314W\42\316\345" "\203\63\42\66\42*E\210MDT\324PDPD\210L\212\330\210x\340\350\264\22\201B\1\314X(" "\316\345\203\63\42\66\42*E\210MDT\324PDPD\210L\212\330\210x\310\220\320\220\310\210\204\61" "\21Q\42\62\1\314Y \314\345\203\63\42\62\42&*\342&\42&j$\42(b&EdD<\202" "\262\250\314*\0\314`\32\255\351\203\63,*,*\346$\60\206(\231PTH\214QHpn\0\314" "d\33\316\345\203\67:*.\304j&.(\42\254&*:\36(:\353\3\21\0\314f\42\317\345\203" "\67<,.\306j(.*\42lB&*<\36,.,\350&l*MP\311\10\0\314h\37\316" "\345\203\67:*.\304j&.(\42\254&*:\36\352 :\354 ,\372 \4\0\314p\37\316\345" "\203\67:*.\304j&.(\42\254&*:\36\354.*.*.*\356\4\0\314u\33\316\345\203" "\67:*.\304j&.(\42\254&*:\36\225]Xv\66\0\314\230\30\255\351\203\71&\60&\360" " *YP\20\215\134H\262\241\250\340\34\314\231\27\314\345\203\67M\334UL\324HD\330LTl<" "\364Al\6\314\234\27\314\345\203\67M\334UL\324HD\330LTl<l\266\7\3\314\240\34\314\345" "\203\67M\334UL\324HD\330LTl<\304Al\320AP\354A\0\314\250\27\314\345\203\67M\334" "UL\324HD\330LTl<\310U\276:\314\251\31\314\345\203\67M\334UL\324HD\330LTl" "<HTVW\251\16\314\253\35\315\345\203\67\70(.\302*(j&\42,B&*\70\36\62\70\251" "D\234P\0\314\254\42\316\345\203\67:*.\304*\325PDX\210LTt<dHhHdD\302" "\230\210(\21\231\0\314\255\33\314\345\203\67M\334UL\324HD\330LTl<\270UXPX\224\5" "\0\314\264)\255\351\203\65\42&,\42&,\342 &\42*(\42(f\42F*\42$Q\304PL" "DhDhDhDhD\0\314\265\37\314\345\203\63\42\62\42&*\342&\42&f\42$\42(b" "&EdD<\304Al\16\314\270 \314\345\203\63\42\62\42&*\342&\42&f\42$\42(b&" "EdD<@l\266\7\2\314\274$\314\345\203\63\42\62\42&*\342&\42&f\42$\42(b&" "EdD<\304Al\320AP\354A\0\314\304\37\314\345\203\63\42\62\42&*\342&\42&f\42$" "\42(b&EdD<\310U\276:\314\305!\314\345\203\63\42\62\42&*\342&\42&f\42$\42" "(b&EdD<HTVW\251\16\314\307#\316\345\203\63\42\66\42*E\210MDT\314DP" "DPD\210L\212\330\210x\340\350\264\22\201B\1\314\311!\314\345\203\63\42\62\42&*\342&\42&" "f\42$\42(b&EdD<\202\262\250\314*\0\314\320\30\255\351\203\71&\60&\360 *\15Q" "\134\214\134H\32\243\250\340\34\314\324\27\314\345\203\67M\334\315L\134HDPMTl\362\330\264\7\3" "\314\344#\316\345\203\67:*.\304f*.(\42hD&*:\36\62$\64$\62\42aLD\224" "\210L\0\314\354)\255\351\203\65\42&,\42&,\342 &\42*d\42(*\42F*\42$\311\304" "PLDhDhDhDhD\0\314\360!\314\345\203\63\42\62\42&*\342b\42&*\42$\42" "db&EdDdDLl\266\7\2\315\1!\314\345\203\63\42\62\42&*\342b\42&*\42$" "\42db&EdD<\202\262\250\314*\0\315\10\25\255%\204-\70\362\66\255hH\234P<\134p" "\262\3\3\315\11\27\315\345\203-\322\64\66\42P&\64\70\354\300\36\340@\70'\0\315\14\30\315\345\203" "-\322\64\66\42P&\64\70\354\300\36:\70\361\201\10\0\315\20\34\315\345\203-\322\64\66\42P&\64" "\70\354\300\36\340@\70\350@(\370@\4\0\315\30\36\315\345\203-\322\64\66\42P&\64\70\354\300\36" "\340@(.(.(.\350@\4\0\315\31\36\315\345\203-\322\64\66\42P&\64\70\354\300\36 ." "(.\350@(.\350@\4\0\315\33\32\315\345\203-\322\64\66\42P&\64\70\354\300\36IplD" "\240L\20\0\315\35\32\315\345\203-\322\64\66\42P&\64\70\354\300\36A]TXT\134\21\0\315$" "#\316\345\203\65.*.*\350$\62&\60(N\210&$&H($.*.*\346@\42:\15" "\0\315(\33\316\345\203+\221M\134TXD\320\210L\262\234\34L\304\3Eg} \2\315,\37\316" "\345\203+\221M\134TXD\320\210L\262\234\34L\304C\35D\207\35\204E\37\204\0\315\71\34\316\345" "\203+\221M\134TXD\320\210L\262\234\34L\304\243\262\13\313\316\6\0\315\134 \314\345\203\67(," "(,\342&,(*\221TLHP\204PLPXP\330\1El\2\315`\33\314\345\203+\211M" "T\242\210\240\20\231DaAa\7\24\361\0\261\331\36\10\315d\37\314\345\203+\211MT\242\210\240\20" "\231DaAa\7\24\361\20\7\261A\7A\261\7\1\315l\33\314\345\203+\211MT\242\210\240\20\231" "DaAa\7\24\361 W\371\352\0\315m\34\314\345\203+\211MT\242\210\240\20\231DaAa\7" "\24\361 QY]\245:\315o\36\315\345\203+\215MXT\212\240\30\231TaQa\21\7\23\361\220" "\301I%\342\204\2\315q\36\314\345\203+\211MT\242\210\240\20\231DaAa\7\24\361\340VaA" "aQ\26\0\315x\32\255%\204-\70\362\66\255hH\234P\134L`L`L`L\320\201\1\315\210" " \315\345\203-\322\64\66\42P&\60&\60&\350\300\36\340@(.(.(.\350@\4\0\315\224" "\25\313\351\203-\64\356\62\245`H\224P\360\1UhV\0\315\225\27\315\345\203-\322\64\66\42P&" "\36\344\300,\70\360@\70'\0\315\230\32\315\345\203-\322\64\66\42P&\36\301\201Yp`L`p" "\360\201\10\0\315\234\34\315\345\203-\322\64\66\42P&\36\344\300,\70\360@\70\350@(\370@\4\0" "\315\244\36\315\345\203-\322\64\66\42P&\36\344\300,\70\360@(.(.(.\350@\4\0\315\245" "\36\315\345\203-\322\64\66\42P&\36\344\300,\70\60.(.\350@(.\350@\4\0\315\247\33\315" "\345\203-\322\64\66\42P&\36\344\300,\70\36\64\70\66\42P&\10\0\315\251\33\315\345\203-\322\64" "\66\42P&\36\344\300,\70\36\260.*,*\256\10\0\315\260#\314\345\203),(,\342&,(" "*\221TLHP\204PL\354\1EPXPHQXPX\0\315\304'\356\345\203),\306(," "UDT\214LPt\310\301D\134\10]T<dHhHdD\302\230\210(\21\231\0\315\314\60\316" "\345\203),\42(,\42\342&\42,(\42*E\220TDLHPD\204PLDl\304\1E\242" "\260\210\240\30\212\240\260\210\240\260\210\0\315\320+\354\345\203)E\204IDP\212\230\210\230\210\10\231\220" "\210\310\210\310\210\3\211D)\202\42(\202R\204D\4E\204\304\306\36\14\315\350#\314\345\203),(" ",\342&,(*\221TLHP\204PL\354\1EPXPXPXPX\0\315\354\35\354\345\203" "),\302(YLDT\204LPl\354\1ET>\11\14\211\215=\30\315\360\37\354\345\203),\302" "(YLDT\204LP\354\1ET\366p\7\261A\7A\261\7\1\315\370\33\354\345\203),\302(" "YLDT\204LP\354\1ET\366\200W\371\352\0\315\371\34\354\345\203),\302(YLDT\204" "LP\354\1ET\366\200QY]\245:\315\373!\355\345\203),\304(*,(\42*D&(\70" "\342`\42,*,\36ApR\211\70\241\0\315\375\36\354\345\203),\302(YLDT\204LP\354" "\1ET\366\250\254\302\202\302\242,\0\316\4\34\315\345\203/\70\362\66\255hH\234P<\300\201QL" "`L`L`L\20\0\316\10\35\315\345\203-\322\64\66\42P&\36\301\201QL`LXDLX" "p\360\201\10\0\316\14\36\315\345\203-\322\64\66\42P&\36\344\300(&\60&\354@\70\350@(\370" "@\4\0\316\24 \315\345\203-\322\64\66\42P&\36\344\300(&\60&\354@(.(.(.\350" "@\4\0\316\31\35\315\345\203-\322\64\66\42P&\36\344\300(&\60&\36\254.*,*\256\10\0" "\316 \23m\245\204-\70\362\66\255hH\234P<\370\201\1\316!\26\315\345\203-\322\64\66\42P&" "\36\301\201=\300\201pN\0\316$\27\315\345\203-\322\64\66\42P&\36\301\201=tp\342\3\21\0" "\316(\33\315\345\203-\322\64\66\42P&\36\301\201=\300\201p\320\201P\360\201\10\0\316\60\35\315\345" "\203-\322\64\66\42P&\36\301\201=\300\201P\134P\134P\134\320\201\10\0\316\61\35\315\345\203-\322" "\64\66\42P&\36\301\201=@\134P\134\320\201P\134\320\201\10\0\316\63\31\315\345\203-\322\64\66\42" "P&\36\301\201=\222\340\330\210@\231 \0\316\65\31\315\345\203-\322\64\66\42P&\36\301\201=\202" "\272\250\260\250\270\42\0\316X\30\253\351\203\65&,&\354 &*(U\214TH\242\241\230\320\34\316" "Y\27\314\345\203\67M\334UL\134HD\330LTl<\364Al\6\316\134\27\314\345\203\67M\334U" "L\134HD\330LTl\362\330\264\7\3\316_\30\314\345\203\67M\334UL\134HD\330LTl<" "\310Ul\332\3\316`\34\314\345\203\67M\334UL\134HD\330LTl<\304Al\320AP\354A" "\0\316a\34\314\345\203\67M\334UL\134HD\330LTltEU\212\252\210\310\210\252\0\316h\27" "\314\345\203\67M\334UL\134HD\330LTl<\310U\276:\316i\31\314\345\203\67M\334UL\134" "HD\330LTl<HTVW\251\16\316k\35\315\345\203\67\70(.\302*(.&\42,B&" "*\70\36\62\70\251D\234P\0\316m\33\314\345\203\67M\334UL\134HD\330LTl<\270UX" "PX\224\5\0\316t\34\254\355\203\61\66\306$\60$\60$\60\344@&.&,(*\215Xl\32" "\0\316u\33\316\345\203\67\304*.*.*\304j(,H.D\62\36\352 :'\0\316x\34\316" "\345\203\67\304*.*.*\304j(,H.D\62:*:\353\3\21\0\316| \316\345\203\67\304" "*.*.*\304j(,H.D\62\36\352 :\354 ,\372 \4\0\316\204 \316\345\203\67\304" "*.*.*\304j(,H.D\62\36\354.*.*.*\356\4\0\316\205 \316\345\203\67\304" "*.*.*\304j(,H.D\62\36,*.*\356.*\356\4\0\316\207\36\316\345\203\67\304" "*.*.*\304j(,H.D\62\36\66:\255D\240P\4\0\316\211\34\316\345\203\67\304*." "*.*\304j(,H.D\62\36\225]Xv\66\0\316\220#\254\355\203\61$\60\344$UH\252" "\220T!\7\62!A\61!\61A!\251B\306B\2C\2C\2\316\221\35\314\345\203\63\342&\42*" "&\42*&\342f(E\210T\304\134D<\304Al\16\316\224\37\314\345\203\63\342&\42*&\42*" "&\342f(E\210T\304\134DdDLl\266\7\2\316\230\42\314\345\203\63\342&\42*&\42*&" "\342f(E\210T\304\134D<\304Al\320AP\354A\0\316\240\35\314\345\203\63\342&\42*&\42" "*&\342f(E\210T\304\134D<\310U\276:\316\241\37\314\345\203\63\342&\42*&\42*&\342" "f(E\210T\304\134D<HTVW\251\16\316\243$\316\345\203\63\42\304&\42.&\42.&\42" "\304f,(\42H*\42D.\42\36\70:\255D\240P\0\316\244*\316\345\203\63\42\304&\42.&" "\42.&\42\304f,(\42H*\42D.\42\36\62$\64$\62\42aLD\224\210L\0\316\245\37" "\314\345\203\63\342&\42*&\42*&\342f(E\210T\304\134D<\202\262\250\314*\0\316\254\34\254" "\355\203\61\66\306$\60$\60\204*$\246&.\206&(*\215Xl\32\0\316\255\33\316\345\203\67\304" "*.*.\352@*,lD.D\62\36\352 :'\0\316\301\34\316\345\203\67\304*.*.\352" "@*,lD.D\62\36\225]Xv\66\0\316\344\25\254\355\203\67\366*\237\34\210\5\205\305\304\205" "\4N\306&\316\345\24\314\345\203\367*W\67Ca!r\223\361\320\7\261\31\316\350\24\314\345\203\367*" "W\67Ca!r\223\361\260\331\36\14\316\353\25\314\345\203\367*W\67Ca!r\223\361 W\261i" "\17\316\354\31\314\345\203\367*W\67Ca!r\223\361\20\7\261A\7A\261\7\1\316\364\25\314\345\203" "\367*W\67Ca!r\223\361 W\371\352\0\316\365\26\314\345\203\367*W\67Ca!r\223\361 " "QY]\245:\316\367\35\315\345\203\67\302*,*,*\302f*,F.B\62\36\62\70\251D\234" "P\0\316\370\42\316\345\203\67\304*.*.*\304f,\221\134\210d<dHhHdD\302\230\210" "(\21\231\0\316\371\30\314\345\203\367*W\67Ca!r\223\361\340VaAaQ\26\0\317\0&\254" "\355\203\63\42\62\342&\42*&\42*&\42*b\302(\42(ELTDHX\304\134DdDd" "D\0\317\1\36\314\345\203\63\342&\42*&\42*&\342b\42(E\210T\304\134D<\304Al\16" "\317\4\37\314\345\203\63\342&\42*&\42*&\342b\42(E\210T\304\134D<@l\266\7\2\317" "\10#\314\345\203\63\342&\42*&\42*&\342b\42(E\210T\304\134D<\304Al\320AP\354" "A\0\317\20\36\314\345\203\63\342&\42*&\42*&\342b\42(E\210T\304\134D<\310U\276:" "\317\21 \314\345\203\63\342&\42*&\42*&\342b\42(E\210T\304\134D<HTVW\251\16" "\317\23%\316\345\203\63\42\304&\42.&\42.&\42\304b\42,(\42H*\42D.\42\36\70:" "\255D\240P\0\317\25 \314\345\203\63\342&\42*&\42*&\342b\42(E\210T\304\134D<\202" "\262\250\314*\0\317\34\26\254\355\203\67\366*'TQfA\61\64q!\201\223\261\11\317 \26\314\345" "\203\367*\67\7RAA#r\223\261\341\261i\17\6\317$\32\314\345\203\367*\67\7RAA#r" "\223\361\20\7\261A\7A\261\7\1\317,\26\314\345\203\367*\67\7RAA#r\223\361 W\371\352" "\0\317-\27\314\345\203\367*\67\7RAA#r\223\361 QY]\245:\317/\34\315\345\203\67\302" "*,*,f\302*\321\214\134\204d<dpR\211\70\241\0\317\60#\316\345\203\67\304*.*." "f\304*,hH.D\62\36\62$\64$\62\42aLD\224\210L\0\317\61\31\314\345\203\367*\67" "\7RAA#r\223\361\340VaAaQ\26\0\317\70'\254\355\203\63\42\62\342&\42*&\42*" "b\42*&\302(\42(d\42&*\42$,b.\42\62\42\62\42\0\317T\25M%\204\343\200\70" "\311\1qXTXTXp\334\201\1\317U\27\255\345\203\345@\70\350@\70\60&\60\354\300\36\340@" "\70'\0\317X\30\255\345\203\345@\70\350@\70\60&\60\354\300\36:\70\361\201\10\0\317\134\34\255\345" "\203\345@\70\350@\70\60&\60\354\300\36\340@\70\350@(\370@\4\0\317d\36\255\345\203\345@\70" "\350@\70\60&\60\354\300\36\340@(.(.(.\350@\4\0\317e\36\255\345\203\345@\70\350@" "\70\60&\60\354\300\36 .(.\350@(.\350@\4\0\317g\32\255\345\203\345@\70\350@\70\60" "&\60\354\300\36IplD\240L\20\0\317i\32\255\345\203\345@\70\350@\70\60&\60\354\300\36A" "]TXT\134\21\0\317p \256\345\203\65:\350 \42\66\42\66\42\350 \202(&\42.&\42." "*\346@\42:\33\0\317q\34\316\345\203\67\346&\62&\346f.&,$&,\311\301D<\324A" "tN\0\317t\35\316\345\203\67\346&\62&\346f.&,$&,\311\301D<Pt\326\7\42\0" "\317x!\316\345\203\67\346&\62&\346f.&,$&,\311\301D<\324At\330AX\364A\10" "\0\317\200!\316\345\203\67\346&\62&\346f.&,$&,\311\301D<\330]T\134T\134T\334" "\11\0\317\205\35\316\345\203\67\346&\62&\346f.&,$&,\311\301D<*\273\260\354l\0\317" "\214,\256\345\203\65$\64$\342 \42$\60\42$\60\42$\342 \202(&\42$(&\42$(*" "\344`\42$\64$\64$\64$\0\317\241 \314\345\203\63\42\342\42]D\212\213\271\210D!\21\211R" "\34H\244\7\267\12\13\12\213\262\0\317\250\33\255\345\203\71\305AL`L`L\304ALPL\242\230" "Dq\7\25\301\31\317\260 \314\345\203\67\342&.&\342&.&($&(\354\200\42\36\342 \66" "\350 (\366 \0\317\304\27M%\204\343\200\70\311\1qPL\242\230D\61\201\61Q\7\6\317\340\22" "\213\351\203\341\200\64\364\240\64\355\1UhV\0\317\341\25\255\345\203\345@\70\350@\70\311\201Yp\340" "\201pN\0\317\344\31\255\345\203\345@\70\350@\70=\300\201Yp`L`p\360\201\10\0\317\350\32" "\255\345\203\345@\70\350@\70\311\201Yp\340\201p\320\201P\360\201\10\0\317\360\34\255\345\203\345@\70" "\350@\70\311\201Yp\340\201P\134P\134P\134\320\201\10\0\317\361\34\255\345\203\345@\70\350@\70\311" "\201Yp`\134P\134\320\201P\134\320\201\10\0\317\363\31\255\345\203\345@\70\350@\70\311\201Yp<" "hplD\240L\20\0\317\365\31\255\345\203\345@\70\350@\70\311\201Yp<`]TXT\134\21" "\0\317\374!\314\345\203\67\305AH`H`H\304AH`H`H\354\1EPXPHQXP" "X\0\320\0\34\354\345\203\67\342&.&\342&.&.&\366\200\42*\204*'\261i\17\6\320\4" " \354\345\203\67\342&.&\342&.&.\346\200\42*\204*=\304Al\320AP\354A\0\320\21" "\37\354\345\203\67\342&.&\342&.&.\346\200\42*\204*=\270UXPX\224\5\0\320\30/" "\316\345\203\67\42\66\42\342 $\42\60$\42\60$\42\342 $\42\60$\42\60$\42\66\342\200\42Q" "XDP\14EPXDPXD\0\320-#\354\345\203\63\42\342\42]D\212\213t\21\351\42\42\16" "$\22EP\4\245\210\7\267\12\13\12\213\262\0\320\64!\314\345\203\67\305AH`H`H\304AH" "`H`H\354\1EPXPXPXPX\0\320\65\31\354\345\203\67\342&.&\342&.&." "\346\200\42*{D\7\261\31\320\70\34\354\345\203\67\342&.&\342&.&.&\366\200\42*\237\4" "\206\304\306\36\14\320<\36\354\345\203\67\342&.&\342&.&.\346\200\42*{\270\203\330\240\203\240" "\330\203\0\320D\31\354\345\203\67\342&.&\342&.&.\346\200\42*{\300\253|u\320E\33\354" "\345\203\67\342&.&\342&.&.\346\200\42*{\300\250\254\256R\35\320G\37\355\345\203\67\344&" "\60&\344&\60&\60&\342`\42,*,\36ApR\211\70\241\0\320I\35\354\345\203\67\342&." "&\342&.&.\346\200\42*{TVaAaQ\26\0\320P\30\215\345\203\343\200\70\311\1q\362" "\3\243\230\300\230\300\230\300\230 \0\320T\34\255\345\203\345@\70\350@\70=\300\201QL`LXD" "LXp\360\201\10\0\320X\34\255\345\203\345@\70\350@\70\311\201QL`L\330\201p\320\201P\360" "\201\10\0\320`\36\255\345\203\345@\70\350@\70\311\201QL`L\330\201P\134P\134P\134\320\201\10" "\0\320l\17\15\245\204\343\200\70\311\1q\26\7\6\320m\25\255\345\203\345@\70\350@\70=\300\201=" "\300\201pN\0\320p\26\255\345\203\345@\70\350@\70=\300\201=tp\342\3\21\0\320t\32\255\345" "\203\345@\70\350@\70=\300\201=\300\201p\320\201P\360\201\10\0\320|\34\255\345\203\345@\70\350@" "\70=\300\201=\300\201P\134P\134P\134\320\201\10\0\320}\34\255\345\203\345@\70\350@\70=\300\201" "=@\134P\134\320\201P\134\320\201\10\0\320\201\30\255\345\203\345@\70\350@\70=\300\201=\202\272\250" "\260\250\270\42\0\320\244\27\252\355\203\63\362&*&*&*\306(\233\250\220\260\271\310\4\320\245\24\314" "\345\203\367*WWAa!r\223\361\320\7\261\31\320\250\25\314\345\203\367*WWAa!r\223\261" "\341\261i\17\6\320\254\31\314\345\203\367*WWAa!r\223\361\20\7\261A\7A\261\7\1\320\264" "\25\314\345\203\367*WWAa!r\223\361 W\371\352\0\320\265\26\314\345\203\367*WWAa!" "r\223\361 QY]\245:\320\267\34\315\345\203\67\302*,*,*\302*Y\214\134\204d<dp" "R\211\70\241\0\320\271\30\314\345\203\367*WWAa!r\223\361\340VaAaQ\26\0\320\300\30" "\255\351\203\63\70\346$&\60&\60\346\244\60&\60\346$\70\67\0\320\301\30\316\345\203\67:\304*$" "\64\304\212\64\304*:\36\352 :'\0\320\304\30\316\345\203\67:\304*$\64\304\212\64\304*:U" "t\326\7\42\0\320\310\35\316\345\203\67:\304*$\64\304\212\64\304*:\36\352 :\354 ,\372 " "\4\0\320\311\37\316\345\203\67:\304*$\64\304\212\64\304*:\36\244\242.*\246*&\62\246*\4" "\0\320\320\35\316\345\203\67:\304*$\64\304\212\64\304*:\36\354.*.*.*\356\4\0\320\321" "\35\316\345\203\67:\304*$\64\304\212\64\304*:\36,*.*\356.*\356\4\0\320\323\33\316\345" "\203\67:\304*$\64\304\212\64\304*:\36\66:\255D\240P\4\0\320\324 \316\345\203\67:\304*" "$\64\304\212\64\304*:\36\62$\64$\62\42aLD\224\210L\0\320\325\31\316\345\203\67:\304*" "$\64\304\212\64\304*:\36\225]Xv\66\0\320\334\42\255\351\203\63$\62\344 $D\60D\60\344" " \244\60D\60\344 $eHdHdHdH\0\320\335\32\314\345\203\63\42\62\342&B\60\342\206" "\60\342&\42\62\42\36\342 \66\7\320\340\34\314\345\203\63\42\62\342&B\60\342\206\60\342&\42\62\42" "\62\42&\66\333\3\1\320\344\37\314\345\203\63\42\62\342&B\60\342\206\60\342&\42\62\42\36\342 \66" "\350 (\366 \0\320\354\32\314\345\203\63\42\62\342&B\60\342\206\60\342&\42\62\42\36\344*_\35" "\320\355\34\314\345\203\63\42\62\342&B\60\342\206\60\342&\42\62\42\36$*\253\253T\7\320\357\42\316" "\345\203\63\42\66\42\304&\42$\60\42\304f$\60\42\304&\42\66\42\36\70:\255D\240P\0\320\360" "(\316\345\203\63\42\66\42\304&\42$\60\42\304f$\60\42\304&\42\66\42\36\62$\64$\62\42a" "LD\224\210L\0\320\361\34\314\345\203\63\42\62\342&B\60\342\206\60\342&\42\62\42\36AYTf" "\25\0\320\370\31\255\351\203\63\70\346$&\60&\360\200$&\60&\360\200$\70\67\0\321\15\32\316\345" "\203\67:\304*$\364@*$\364@*:\36\225]Xv\66\0\321\60\24\255\351\203\71\370 JV" "\366 \244V\366 *\70\7\321\61\23\314\345\203\67\366J\364\206\364*\66\36\372 \66\3\321\64\23\314" "\345\203\67\366J\364\206\364*\66\36\66\333\203\1\321\70\30\314\345\203\67\366J\364\206\364*\66\36\342 " "\66\350 (\366 \0\321:\33\314\345\203\67\366J\364\206\364*\66\272\242*\42&\242\42&\42*&" "\242\1\321@\23\314\345\203\67\366J\364\206\364*\66\36\344*_\35\321A\25\314\345\203\67\366J\364\206" "\364*\66\36$*\253\253T\7\321C\33\315\345\203\67\70\302*\42\64\302f\42\64\302*\70\36\62\70" "\251D\234P\0\321D!\316\345\203\67:\304*$\64\304f$\64\304*:\36\62$\64$\62\42a" "LD\224\210L\0\321E\27\314\345\203\67\366J\364\206\364*\66\36\334*,(,\312\2\0\321L$" "\255\351\203\65\42\64\342 &B\62B\62\342 bB\62B\62\342 &\42\64\42\64\42\64\42\64\42" "\0\321M\33\314\345\203\63\42\62\342&B\60\342bB\60\342&\42\62\42\36\342 \66\7\321P\34\314" "\345\203\63\42\62\342&B\60\342bB\60\342&\42\62\42\36 \66\333\3\1\321T \314\345\203\63\42" "\62\342&B\60\342bB\60\342&\42\62\42\36\342 \66\350 (\366 \0\321\134\33\314\345\203\63\42" "\62\342&B\60\342bB\60\342&\42\62\42\36\344*_\35\321]\35\314\345\203\63\42\62\342&B\60" "\342bB\60\342&\42\62\42\36$*\253\253T\7\321_#\316\345\203\63\42\66\42\304&\42$\60\42" "\304b\42$\60\42\304&\42\66\42\36\70:\255D\240P\0\321a\35\314\345\203\63\42\62\342&B\60" "\342bB\60\342&\42\62\42\36AYTf\25\0\321h\24\255\351\203\71\370 JV\360\200JV\360" "\200*\70\7\321l\25\314\345\203\67\366J\360@J\360@*\66yl\332\203\1\321|!\316\345\203\67" ":\304*$p\304*$p\304*:\36\62$\64$\62\42aLD\224\210L\0\321\204$\255\351\203" "\65\42\64\342 &B\62Bn\342 &B\62Bn\342 &\42\64\42\64\42\64\42\64\42\0\321\210" "\35\314\345\203\63\42\62\342&Bl\342&Bl\342&\42\62\42\62\42&\66\333\3\1\321\240\26\255%" "\204\343\200$\70\370\200$\70\370\200\36Mp\262\3\3\321\241\30\315\345\203\345@(\370@(\370@\60" "\70\354\300\36\340@\70'\0\321\244\31\315\345\203\345@(\370@(\370@\60\70\354\300\36:\70\361\201" "\10\0\321\250\35\315\345\203\345@(\370@(\370@\60\70\354\300\36\340@\70\350@(\370@\4\0\321" "\260\37\315\345\203\345@(\370@(\370@\60\70\354\300\36\340@(.(.(.\350@\4\0\321\261" "\37\315\345\203\345@(\370@(\370@\60\70\354\300\36 .(.\350@(.\350@\4\0\321\263\33" "\315\345\203\345@(\370@(\370@\60\70\354\300\36IplD\240L\20\0\321\265\33\315\345\203\345@" "(\370@(\370@\60\70\354\300\36A]TXT\134\21\0\321\272\35\315\345\203\345@(\370@(\370" "@\60\70\354\300\36\372@,&\60&\354@\4\0\321\274#\316\345\203\65\350 \42(\60(\60\350 " "\42(\60(\220\342 \42:.*.*\346@\42:\15\0\321\300\33\316\345\203\67\344($\64\344\210" "\64\344(,\311\301D<Pt\326\7\42\0\321\330/\316\345\203\65$\342 \42$\42\60$\42\60$" "\342 \42$\42\60$\42\220\342 \42$\64$(*$(*\344`\42$\64$\64$\0\321\364!" "\314\345\203\67\342 $\42\62\42\62\342 $\42\62\42\62\342 $\66(,(\354\200\42\66\1\321\370" "\30\314\345\203\367 H\364 H\364 (\331\1E<@l\266\7\2\322\7\36\315\345\203\67\342(\42" "\64\342(\42\64\342(*,\342`\42\36\62\70\251D\234P\0\322\11\33\314\345\203\367 H\364 H" "\364 (\331\1E<\270UXPX\224\5\0\322\20\33\255%\204\343\200$\70\370\200$\70\370\200\36" "&aL`L`L\320\201\1\322,\24\253\351\203\341\240\64\364\240\64\364\200\366\200*\64+\0\322-" "\30\315\345\203\345@(\370@(\370@\36\340\300,\70\360@\70'\0\322\60\33\315\345\203\345@(\370" "@(\370@\36\372\300,\70\60&\60\70\370@\4\0\322\64\35\315\345\203\345@(\370@(\370@\36" "\340\300,\70\360@\70\350@(\370@\4\0\322<\37\315\345\203\345@(\370@(\370@\36\340\300," "\70\360@(.(.(.\350@\4\0\322=\37\315\345\203\345@(\370@(\370@\36\340\300,\70" "\60.(.\350@(.\350@\4\0\322\77\34\315\345\203\345@(\370@(\370@\36\340\300,\70\36" "\64\70\66\42P&\10\0\322A\34\315\345\203\345@(\370@(\370@\36\340\300,\70\36\260.*," "*\256\10\0\322H$\314\345\203\67\342 $\42\62\42\62\342 $\42\62\42\62\342 $\366\200\42(" ",(\244(,(,\0\322\134)\356\345\203\341 &$\64\344 &$\64\344 &:\344`\42." "\204.*\36\62$\64$\62\42aLD\224\210L\0\322d-\316\345\203\67\42\342 $\42eD\312" "\210\210\203\220\210\224\21)#\42\16B\42b#\16(\22\205E\4\305P\4\205E\4\205E\4\322\200" "$\314\345\203\67\342 $\42\62\42\62\342 $\42\62\42\62\342 $\366\200\42(,(,(,(" ",\0\322\201\30\354\345\203\341 F\364@F\364@&\366\200\42*{D\7\261\31\322\204\33\354\345\203" "\341 F\364@F\364@&\66\366\200\42*\237\4\206\304\306\36\14\322\210\35\354\345\203\341 F\364@" "F\364@&\366\200\42*{\270\203\330\240\203\240\330\203\0\322\220\30\354\345\203\341 F\364@F\364@" "&\366\200\42*{\300\253|u\322\221\32\354\345\203\341 F\364@F\364@&\366\200\42*{\300\250" "\254\256R\35\322\225\34\354\345\203\341 F\364@F\364@&\366\200\42*{TVaAaQ\26\0" "\322\234\34\255\345\203\343\200$\70\370\200$\70\370\200\374\300(&\60&\60&\60&\10\0\322\240\36\315" "\345\203\345@(\370@(\370@\36\372\300(&\60&,\42&,\70\370@\4\0\322\244\37\315\345\203" "\345@(\370@(\370@\36\340\300(&\60&\354@\70\350@(\370@\4\0\322\254!\315\345\203\345" "@(\370@(\370@\36\340\300(&\60&\354@(.(.(.\350@\4\0\322\261\36\315\345\203" "\345@(\370@(\370@\36\340\300(&\60&\36\254.*,*\256\10\0\322\270\24m\245\204\343\200" "$\70\370\200$\70\370\200\36\351\201\1\322\271\27\315\345\203\345@(\370@(\370@\36\372\300\36\340@" "\70'\0\322\274\30\315\345\203\345@(\370@(\370@\36\372\300\36:\70\361\201\10\0\322\277\32\315\345" "\203\345@(\370@(\370@\36\372\300\36\340@(\70\361\201\10\0\322\300\34\315\345\203\345@(\370@" "(\370@\36\372\300\36\340@\70\350@(\370@\4\0\322\302 \315\345\203\345@(\370@(\370@\36" "\372\300\274\242,\42&\244\42&$*&\244\242\2\0\322\310\36\315\345\203\345@(\370@(\370@\36" "\372\300\36\340@(.(.(.\350@\4\0\322\311\36\315\345\203\345@(\370@(\370@\36\372\300" "\36 .(.\350@(.\350@\4\0\322\313\32\315\345\203\345@(\370@(\370@\36\372\300\36I" "plD\240L\20\0\322\324\36\314\345\203\67\342 $\42\62\42\62\342 $\42\62\42\62\342 $\66" "\366\200\42\66\3\322\330\30\314\345\203\367 H\364 H\364 (\366\200\42\36 \66\333\3\1\322\334\34" "\314\345\203\367 H\364 H\364 (\366\200\42\36\342 \66\350 (\366 \0\322\344\27\314\345\203\367" " H\364 H\364 (\366\200\42\36\344*_\35\322\345\31\314\345\203\367 H\364 H\364 (\366" "\200\42\36$*\253\253T\7\322\360\24\253\351\203\65\364 FR\362 FR\362 &\64\7\322\361\23" "\314\345\203\67\366J\364J\364*\66\36\372 \66\3\322\364\23\314\345\203\67\366J\364J\364*\66yl" "\332\203\1\322\370\30\314\345\203\67\366J\364J\364*\66\36\342 \66\350 (\366 \0\323\0\23\314\345" "\203\67\366J\364J\364*\66\36\344*_\35\323\1\25\314\345\203\67\366J\364J\364*\66\36$*\253" "\253T\7\323\3\33\315\345\203\67\70\302*\42\64\302*\42\64\302*\70\36\62\70\251D\234P\0\323\5" "\27\314\345\203\67\366J\364J\364*\66\36\334*,(,\312\2\0\323\14\34\256\345\203\65:\346@\42" "*&UL\252\230\30\222\230T\61i\16$\242s\3\323\15\35\316\345\203\67:\344 &($*(" "$j$U\310ALt<\324AtN\0\323\16!\316\345\203\67:\344 &($*($j$" "U\310ALt<\212vQqQqQ!\0\323\20\35\316\345\203\67:\344 &($*($j" "$U\310ALt\252\350\254\17D\0\323\24\42\316\345\203\67:\344 &($*($j$U\310" "ALt<\324At\330AX\364A\10\0\323\26&\316\345\203\67:\344 &($*($j$" "U\310ALt<HE]DLLEL\252\230\230\212\22\0\323\34\42\316\345\203\67:\344 &(" "$*($j$U\310ALt<\330]T\134T\134T\334\11\0\323\35\42\316\345\203\67:\344 " "&($*($j$U\310ALt<XT\134T\334]T\334\11\0\323\37 \316\345\203\67:" "\344 &($*($j$U\310ALt<ltZ\211@\241\10\0\323 %\316\345\203\67:" "\344 &($*($j$U\310ALt<dHhHdD\302\230\210(\21\231\0\323!\36" "\316\345\203\67:\344 &($*($j$U\310ALt<*\273\260\354l\0\323%\37\316\345" "\203\67:\344 &($*($j$U\310ALt<\330]\364]\364\11\0\323(%\256\345\203" "\65$\64\344`\42$M\222\64I\322\304\220\304$I\223\344`\42$\64$\64$\64$\64$\0\323" ")\36\314\345\203\63\42\62\342@\42I\232\210\220\64#i\42\16$RF\304C\34\304\346\0\323,\37" "\314\345\203\63\42\62\342@\42I\232\210\220\64#i\42\16$RFDF\304\304f{ \323\60\42\314" "\345\203\63\42\62\342@\42I\232\210\220\64#i\42\16$RF\304C\34\304\6\35\4\305\36\4\323\70" "\36\314\345\203\63\42\62\342@\42I\232\210\220\64#i\42\16$RF\304\203\134\345\253\3\323\71 \314" "\345\203\63\42\62\342@\42I\232\210\220\64#i\42\16$RF\304\203Deu\225\352\0\323;%\316" "\345\203\63\42\66\42\344 \42QHLDPH\314PHLD\310AD\332\210x\340\350\264\22\201B" "\1\323<+\316\345\203\63\42\66\42\344 \42QHLDPH\314PHLD\310AD\332\210x\310" "\220\320\220\310\210\204\61\21Q\42\62\1\323= \314\345\203\63\42\62\342@\42I\232\210\220\64#i\42" "\16$RF\304#(\213\312\254\2\0\323D\34\256\345\203\65:\346@\42*&UL\14IL\252\230" "T\61\61\7\26\321\271\1\323E\34\316\345\203\67:\344 &($j$UPH\324\1Mt<\324" "AtN\0\323|\35\256\345\203;\372`($&,$&,$&\206$&,$&\354`(:" "\7\323}\30\314\345\203\67\366@&$UH\232\221T\7\62\261\361\320\7\261\31\323\200\30\314\345\203\67" "\366@&$UH\232\221T\7\62\261\361\260\331\36\14\323\204\35\314\345\203\67\366@&$UH\232\221" "T\7\62\261\361\20\7\261A\7A\261\7\1\323\214\31\314\345\203\67\366@&$UH\232\221T\7\62" "\261\361 W\371\352\0\323\215\32\314\345\203\67\366@&$UH\232\221T\7\62\261\361 QY]\245" ":\323\217\37\315\345\203\67\70\342 &ITLH\314LHT\304ALp<dpR\211\70\241\0" "\323\220&\316\345\203\67:\344 &($*($f($*\344 &:\36\62$\64$\62\42a" "LD\224\210L\0\323\221\34\314\345\203\67\366@&$UH\232\221T\7\62\261\361\340VaAaQ" "\26\0\323\230-\256\345\203\67\42\66\342`$\42$&(\42$&(\42$&d\42$&(\42$" "&(\342`$\42\66\42\66\42\66\42\66\42\0\323\231\37\314\345\203\63\42\62\342@\42I\232\210\220\24" "\23!i\42\16$RF\304C\34\304\346\0\323\234\37\314\345\203\63\42\62\342@\42I\232\210\220\24\23" "!i\42\16$RF\304\3\304f{ \323\240#\314\345\203\63\42\62\342@\42I\232\210\220\24\23!" "i\42\16$RF\304C\34\304\6\35\4\305\36\4\323\250\37\314\345\203\63\42\62\342@\42I\232\210\220" "\24\23!i\42\16$RF\304\203\134\345\253\3\323\251!\314\345\203\63\42\62\342@\42I\232\210\220\24" "\23!i\42\16$RF\304\203Deu\225\352\0\323\253&\316\345\203\63\42\66\42\344 \42QHL" "DPH\304DPHLD\310AD\332\210x\340\350\264\22\201B\1\323\255!\314\345\203\63\42\62\342" "@\42I\232\210\220\24\23!i\42\16$RF\304#(\213\312\254\2\0\323\264\35\256\345\203;\372`" "($&,$&\206$&,$&,$&\346\300(:\7\323\270\30\314\345\203\67\366@&$\315" "H\252\220\64\7\64\261\311c\323\36\14\323\274\35\314\345\203\67\366@&$\315H\252\220\64\7\64\261\361" "\20\7\261A\7A\261\7\1\323\304\31\314\345\203\67\366@&$\315H\252\220\64\7\64\261\361 W\371" "\352\0\323\305\32\314\345\203\67\366@&$\315H\252\220\64\7\64\261\361 QY]\245:\323\310&\316" "\345\203\67:\344 &($f($*($f\344 &:\36\62$\64$\62\42aLD\224\210" "L\0\323\311\34\314\345\203\67\366@&$\315H\252\220\64\7\64\261\361\340VaAaQ\26\0\323\320" "-\256\345\203\67\42\66\342`$\42$&(\42$&d\42$&(\42$&(\42$&d\342`" "$\42\66\42\66\42\66\42\66\42\0\323\330#\314\345\203\63\42\62\342@\42I\212\211\220\64\21!)&" "\16$RF\304C\34\304\6\35\4\305\36\4\323\341!\314\345\203\63\42\62\342@\42I\212\211\220\64\21" "!)&\16$RF\304\203Deu\225\352\0\323\343&\316\345\203\63\42\66\42\344 \42QH\304D" "PHLDPH\304D\310AD\332\210x\340\350\264\22\201B\1\323\354\30\215%\204\343\200(*," "*,*,*\350\200\36Mp\262\3\3\323\355\32\315\345\203\345@,&\60&\60&\354@\60\70\354" "\300\36\340@\70'\0\323\360\33\315\345\203\345@,&\60&\60&\354@\60\70\354\300\36:\70\361\201" "\10\0\323\364\37\315\345\203\345@,&\60&\60&\354@\60\70\354\300\36\340@\70\350@(\370@\4" "\0\323\374!\315\345\203\345@,&\60&\60&\354@\60\70\354\300\36\340@(.(.(.\350@" "\4\0\323\375!\315\345\203\345@,&\60&\60&\354@\60\70\354\300\36 .(.\350@(.\350" "@\4\0\323\377\35\315\345\203\345@,&\60&\60&\354@\60\70\354\300\36IplD\240L\20\0" "\324\1\35\315\345\203\345@,&\60&\60&\354@\60\70\354\300\36A]TXT\134\21\0\324\10!" "\316\345\203\65:\315\201DTL\252\230T\61\61$\61i\16$\342\242\342\242b\16$\242\323\0\324\35" "\33\316\345\203\67\346&(&(M\320\304MXN\16&\342Q\331\205eg\3\324@\37\314\345\203\67" "\355\301H\232\240\220\230\240\220\230\240\220\230\240\203\221\240\260\240\260\3\212\330\4\324D\35\314\345\203\67\342" "&$&($&(\342&(,(\354\200\42\36 \66\333\3\1\324\134\35\215%\204\343\200(*," "*,*,*\350\200\36&aL`L`L\320\201\1\324`\35\315\345\203\345@,&\60&\60&" "\354@,&\60&\350\300\36:\70\361\201\10\0\324d!\315\345\203\345@,&\60&\60&\354@," "&\60&\350\300\36\340@\70\350@(\370@\4\0\324m#\315\345\203\345@,&\60&\60&\354@" ",&\60&\350\300\36 .(.\350@(.\350@\4\0\324o\37\315\345\203\345@,&\60&\60" "&\354@,&\60&\350\300\36IplD\240L\20\0\324x\31\253\351\203\341\200$*(*(*" "(*\344\200\36\356\200*\64+\0\324y\32\315\345\203\345@,&\60&\60&\354@\36\340\300,\70" "\360@\70'\0\324|\35\315\345\203\345@,&\60&\60&\354@\36\372\300,\70\60&\60\70\370@" "\4\0\324\177\35\315\345\203\345@,&\60&\60&\354@\36\340\300,\70\360@(\70\361\201\10\0\324" "\200\37\315\345\203\345@,&\60&\60&\354@\36\340\300,\70\360@\70\350@(\370@\4\0\324\202" "$\315\345\203\345@,&\60&\60&\354@\36\340\300,\70\256\242,\42&\244\42&$*&\244\242" "\2\0\324\210!\315\345\203\345@,&\60&\60&\354@\36\340\300,\70\360@(.(.(.\350" "@\4\0\324\211!\315\345\203\345@,&\60&\60&\354@\36\340\300,\70\60.(.\350@(." "\350@\4\0\324\213\36\315\345\203\345@,&\60&\60&\354@\36\340\300,\70\36\64\70\66\42P&" "\10\0\324\215\36\315\345\203\345@,&\60&\60&\354@\36\340\300,\70\36\260.*,*\256\10\0" "\324\224#\314\345\203\67\366`$MPHLPHLPHL\320\301H\354\1EPXPHQX" "PX\0\324\251 \354\345\203\67\342&$&($&(\342&\366\200\42*\204*=\270UXPX" "\224\5\0\324\314#\314\345\203\67\366`$MPHLPHLPHL\320\301H\354\1EPXP" "XPXPX\0\324\320\35\354\345\203\67\342&$&($&(\342&\66\366\200\42*\237\4\206\304" "\306\36\14\324\324\37\354\345\203\67\342&$&($&(\342&\366\200\42*{\270\203\330\240\203\240\330" "\203\0\324\334\32\354\345\203\67\342&$&($&(\342&\366\200\42*{\300\253|u\324\337\35\355" "\345\203\67\344&\243\230D!\67\301\21\7\23aQa\361\10\202\223J\304\11\5\324\350\37\255\345\203\343" "\200(*,*,*,*\350\200\36\370\300(&\60&\60&\60&\10\0\324\354 \315\345\203\345@" ",&\60&\60&\354@\36\372\300(&\60&,\42&,\70\370@\4\0\324\360!\315\345\203\345@" ",&\60&\60&\354@\36\340\300(&\60&\354@\70\350@(\370@\4\0\324\370#\315\345\203\345" "@,&\60&\60&\354@\36\340\300(&\60&\354@(.(.(.\350@\4\0\324\373 \315" "\345\203\345@,&\60&\60&\354@\36\340\300(&\60&\36\60\70\66\42P&\10\0\324\375 \315" "\345\203\345@,&\60&\60&\354@\36\340\300(&\60&\36\254.*,*\256\10\0\325\4\26M" "\245\204\343\200(*,*,*,*\350\200\36\351\201\1\325\10\32\315\345\203\345@,&\60&\60&" "\354@\36\372\300\36:\70\361\201\10\0\325\14\36\315\345\203\345@,&\60&\60&\354@\36\372\300\36" "\340@\70\350@(\370@\4\0\325\24 \315\345\203\345@,&\60&\60&\354@\36\372\300\36\340@" "(.(.(.\350@\4\0\325\25 \315\345\203\345@,&\60&\60&\354@\36\372\300\36 ." "(.\350@(.\350@\4\0\325\27\34\315\345\203\345@,&\60&\60&\354@\36\372\300\36Ip" "lD\240L\20\0\325<\34\254\345\203\67\366`$MPHLPHLPHLPHL\320\301H" "l\16\325=\30\314\345\203\67\366@&$UH\252\220T\7\62\261\361\320\7\261\31\325@\30\314\345\203" "\67\366@&$UH\252\220T\7\62\261\311c\323\36\14\325D\35\314\345\203\67\366@&$UH\252" "\220T\7\62\261\361\20\7\261A\7A\261\7\1\325L\31\314\345\203\67\366@&$UH\252\220T\7" "\62\261\361 W\371\352\0\325M\32\314\345\203\67\366@&$UH\252\220T\7\62\261\361 QY]" "\245:\325O\37\315\345\203\67\70\342 &ITLHTLHT\304ALp<dpR\211\70\241" "\0\325Q\34\314\345\203\67\366@&$UH\252\220T\7\62\261\361\340VaAaQ\26\0\325X\35" "\255\351\203'*,*\346$j(MV!U!\61Q!A\61\251\206\202\263\1\325Y\34\316\345\203" "'.\344(h,&UL\252\211\230\250\240\261\350x\250\203\350\234\0\325\134\34\316\345\203'.\344(" "h,&UL\252\211\230\250\240\261\350T\321Y\37\210\0\325`!\316\345\203'.\344(h,&U" "L\252\211\230\250\240\261\350x\250\203\350\260\203\260\350\203\20\0\325e#\316\345\203'.\344(h,&" "UL\252\211\230\250\240\261\350x\220\212\272\210\270\212\232\250\270\212\22\0\325h!\316\345\203'.\344(" "h,&UL\252\211\230\250\240\261\350x\260\273\250\270\250\270\250\270\23\0\325i!\316\345\203'.\344" "(h,&UL\252\211\230\250\240\261\350x\260\250\270\250\270\273\250\270\23\0\325k\37\316\345\203'." "\344(h,&UL\252\211\230\250\240\261\350x\330\350\264\22\201B\21\0\325m\35\316\345\203'.\344" "(h,&UL\252\211\230\250\240\261\350xTva\331\331\0\325t(\255\351\203'*$&*\344" " $\311PHDL\22\251\220\252\220\20\251\220\24\61IB\206B\42C\42C\42C\2\325u \314" "\345\203'*\342 $\42d(\42M\212\64\61\23\61)B\206\42\42#\342!\16bs\325x\42\314" "\345\203'*\342 $\42d(\42M\212\64\61\23\61)B\206\42\42#\42#bb\263=\20\325|" "%\314\345\203'*\342 $\42d(\42M\212\64\61\23\61)B\206\42\42#\342!\16b\203\16\202" "b\17\2\325\204!\314\345\203'*\342 $\42d(\42M\212\64\61\23\61)B\206\42\42#\342A" "\256\362\325\1\325\205\42\314\345\203'*\342 $\42d(\42M\212\64\61\23\61)B\206\42\42#\342" "A\242\262\272Ju\325\207\42\316\345\203'*\42\344$\42h(\42&\213\230\64\63Y\4\15E\304F" "\304\3G\247\225\10\24\12\325\210(\316\345\203'*\42\344$\42h(\42&\213\230\64\63Y\4\15E" "\304F\304C\206\204\206DF$\214\211\210\22\221\11\325\211\42\314\345\203'*\342 $\42d(\42M" "\212\64\61\23\61)B\206\42\42#\342\21\224EeV\1\325\220\37\255\351\203'*,*\346$j(" "MLUHLTHLT\10EL\252\241\340l\0\325\245\35\316\345\203'.\344(h,&\325D" "LTL\252\221\261\350xTva\331\331\0\325\310\35\255\351\203'\60&\360 *d.\42&L*" "\244*J*ELX\310\134p\6\325\311\35\314\345\203'\356 (d,\42&*\42&f\42&*" "d,\66\36\372 \66\3\325\314\35\314\345\203'\356 (d,\42&*\42&f\42&*d,\66" "\36\66\333\203\1\325\320\42\314\345\203'\356 (d,\42&*\42&f\42&*d,\66\36\342 " "\66\350 (\366 \0\325\322%\314\345\203'\356 (d,\42&*\42&f\42&*d,\66\272" "\242*\42&\242\42&\42*&\242\1\325\330\35\314\345\203'\356 (d,\42&*\42&f\42&" "*d,\66\36\344*_\35\325\331\37\314\345\203'\356 (d,\42&*\42&f\42&*d," "\66\36$*\253\253T\7\325\333 \315\345\203'.\342(f,$&*$&f$&*f,\70" "\36\62\70\251D\234P\0\325\335!\314\345\203'\356 (d,\42&*\42&f\42&*d,\66" "\36\334*,(,\312\2\0\325\344+\255\351\203',\42&,\342 &\42d*\42MP\204T\304" "\204TL\204TLD\232\240\210\220\251\210\320\210\320\210\320\210\0\325\345!\314\345\203'*\342 $\42" "d(\42M\212\64\21\23iR\204\14EDF\304C\34\304\346\0\325\350!\314\345\203'*\342 $" "\42d(\42M\212\64\21\23iR\204\14EDF\304\3\304f{ \325\354%\314\345\203'*\342 " "$\42d(\42M\212\64\21\23iR\204\14EDF\304C\34\304\6\35\4\305\36\4\325\364!\314\345" "\203'*\342 $\42d(\42M\212\64\21\23iR\204\14EDF\304\203\134\345\253\3\325\365#\314" "\345\203'*\342 $\42d(\42M\212\64\21\23iR\204\14EDF\304\203Deu\225\352\0\325" "\367#\316\345\203'*\42\344$\42h(\42&\213\230\24\23\61Y\4\15E\304F\304\3G\247\225\10" "\24\12\325\371#\314\345\203'*\342 $\42d(\42M\212\64\21\23iR\204\14EDF\304#(" "\213\312\254\2\0\326\0\36\255\351\203'\60&\360 *d.\42&\246*J*J*\204\42&,d" ".\70\3\326\1\35\314\345\203'\356 (d,\42&f\42&*\42&fd,\66\36\372 \66\3" "\326\4\35\314\345\203'\356 (d,\42&f\42&*\42&fd,\66yl\332\203\1\326\10\42" "\314\345\203'\356 (d,\42&f\42&*\42&fd,\66\36\342 \66\350 (\366 \0\326" "\20\35\314\345\203'\356 (d,\42&f\42&*\42&fd,\66\36\344*_\35\326\21\37\314" "\345\203'\356 (d,\42&f\42&*\42&fd,\66\36$*\253\253T\7\326\23\37\315\345" "\203'.\342(f,$&f$&*$&fYp<dpR\211\70\241\0\326\24#\316\345\203" "'.\344(h,&\315L\252\230\64Cc\321\361\220!\241!\221\21\11c\42\242Dd\2\326\25!" "\314\345\203'\356 (d,\42&f\42&*\42&fd,\66\36\334*,(,\312\2\0\326\34" "+\255\351\203',\42&,\342 &\42d*\42M\310\204TL\204TL\204T\304D\232\240\210\220" "\251\210\320\210\320\210\320\210\0\326 #\314\345\203'*\342 $\42d(\42M\304D\232\24i\42&" "B\206\42\42#\42#bb\263=\20\326$&\314\345\203'*\342 $\42d(\42M\304D\232\24" "i\42&B\206\42\42#\342!\16b\203\16\202b\17\2\326-#\314\345\203'*\342 $\42d(" "\42M\304D\232\24i\42&B\206\42\42#\342A\242\262\272Ju\326\70\26\255%\204-\70\362\36\252" ".*,*\256\36\60\70\331\201\1\326\71\30\355\345\203-\362\256.*,*\256\64\70\354\300\36\340@" "\70'\0\326<\31\355\345\203-\362\256.*,*\256\64\70\354\300\36:\70\361\201\10\0\326@\35\355" "\345\203-\362\256.*,*\256\64\70\354\300\36\340@\70\350@(\370@\4\0\326E\36\355\345\203-" "\362\256.*,*\256\64\70\354\300\274\242,\42\254\242$*\254\242\2\0\326H\37\355\345\203-\362\256" ".*,*\256\64\70\354\300\36\340@(.(.(.\350@\4\0\326I\37\355\345\203-\362\256." "*,*\256\64\70\354\300\36 .(.\350@(.\350@\4\0\326K\33\355\345\203-\362\256.*" ",*\256\64\70\354\300\36IplD\240L\20\0\326M\33\355\345\203-\362\256.*,*\256\64\70" "\354\300\36A]TXT\134\21\0\326Q\35\355\345\203-\362\256.*,*\256\64\70\354\300\36\340@" "(\370@(\370@\4\0\326T\42\316\345\203\65.*.*\350$:\252&(*\204\42*$\252&" ".*.*\346@\42:\15\0\326U\36\316\345\203),\346&j*(&h$&(j*,\311" "\301D<\324AtN\0\326X\37\316\345\203),\346&j*(&h$&(j*,\311\301D" "<Pt\326\7\42\0\326\134#\316\345\203),\346&j*(&h$&(j*,\311\301D<" "\324At\330AX\364A\10\0\326g!\316\345\203),\346&j*(&h$&(j*,\311" "\301D<ltZ\211@\241\10\0\326i\37\316\345\203),\346&j*(&h$&(j*," "\311\301D<*\273\260\354l\0\326p,\316\345\203\65$(*$(*$\342$iHHMHD" "T\10ETH\222\232\220\240\250\220\240\250\220\203\211\220\320\220\320\220\0\326q \314\345\203)E\304E" "\232\231\210\220\230\220\221\230\220\210\230\231\210\240\24\7\22\351!\16bs\326t!\314\345\203)E\304E" "\232\231\210\220\230\220\221\230\220\210\230\231\210\240\24\7\22\351\1b\263=\20\326\203#\315\345\203)E\310" "E\242\231\210\230$\63I\42\202f\42\242\202\42\42\16\42\322C\6'\225\210\23\12\326\205$\314\345\203" ")E\304E\232\231\210\220\230\220\221\230\220\210\230\231\210\240\24\7\22\351\301\255\302\202\302\242,\0\326\214" "\37\314\345\203\67(,(,\342&\66\244(\42*&\42*&\244(YP\330\1El\2\326\215\35" "\314\345\203),\342&f*$&($&(f*(\354\200\42\36\342 \66\7\326\220\36\314\345\203" "),\342&f*$&($&(f*(\354\200\42\36 \66\333\3\1\326\224\42\314\345\203)," "\342&f*$&($&(f*(\354\200\42\36\342 \66\350 (\366 \0\326\235\37\314\345\203" "),\342&f*$&($&(f*(\354\200\42\36$*\253\253T\7\326\237\36\315\345\203)" ",\344&h*&QL\242\240\251d\21\7\23\361\220\301I%\342\204\2\326\241!\314\345\203),\342" "&f*$&($&(f*(\354\200\42\36\334*,(,\312\2\0\326\250\33\255%\204-\70" "\362\36\252.*,*\256\60&\60&\60&\60&\350\300\0\326\254\33\355\345\203-\362\256.*,*" "\256\60&\60&\350\300\36:\70\361\201\10\0\326\260\37\355\345\203-\362\256.*,*\256\60&\60&" "\350\300\36\340@\70\350@(\370@\4\0\326\271!\355\345\203-\362\256.*,*\256\60&\60&\350" "\300\36 .(.\350@(.\350@\4\0\326\273\35\355\345\203-\362\256.*,*\256\60&\60&" "\350\300\36IplD\240L\20\0\326\304\25\313\351\203+\64\356\36\242*QTT\371\1UhV\0" "\326\305\30\355\345\203-\362\256.*,*\256\36\344\300,\70\360@\70'\0\326\310\33\355\345\203-\362" "\256.*,*\256\36\301\201Yp`L`p\360\201\10\0\326\314\35\355\345\203-\362\256.*,*" "\256\36\344\300,\70\360@\70\350@(\370@\4\0\326\321\37\355\345\203-\362\256.*,*\256\36\344" "\300,\70\256\242,\42\254\242$*\254\242\2\0\326\324\37\355\345\203-\362\256.*,*\256\36\344\300" ",\70\360@(.(.(.\350@\4\0\326\327\34\355\345\203-\362\256.*,*\256\36\344\300," "\70\36\64\70\66\42P&\10\0\326\331\34\355\345\203-\362\256.*,*\256\36\344\300,\70\36\260." "*,*\256\10\0\326\340#\314\345\203),(,\342&\66\244(\42*&\42*&\244(\366\200\42" "(,(\244(,(,\0\326\344\35\354\345\203),\342&f*$&(f*\66\366\200\42*\204" "*'\261i\17\6\326\350!\354\345\203),\342&f*$&(f*\366\200\42*\204*=\304A" "l\320AP\354A\0\326\360\34\354\345\203),\342&f*$&(f*\366\200\42*\204*=\310" "U\276:\326\365 \354\345\203),\342&f*$&(f*\366\200\42*\204*=\270UXPX" "\224\5\0\326\374.\316\345\203),\42(,\42\342&\42\66\42\244(\42ULD\252\230\210\220\242\210" "\330\210\3\212Da\21A\61\24Aa\21Aa\21\1\326\375\42\354\345\203)E\304E\232\231\210\220\230" "\220\210\230\231\210\310\210\3\211D\21\24A)\342\241\17b\63\327\0*\354\345\203)E\304E\232\231\210" "\220\230\220\210\230\231\210\310\210\310\210\3\211D)\202\42(\202R\204D\4E\204\304\306\36\14\327\4'" "\354\345\203)E\304E\232\231\210\220\230\220\210\230\231\210\310\210\3\211D\21\24A)\342!\16b\203\16" "\202b\17\2\327\21&\354\345\203)E\304E\232\231\210\220\230\220\210\230\231\210\310\210\3\211D\21\24A" ")\342\301\255\302\202\302\242,\0\327\30#\314\345\203),(,\342&\66\244(\42*&\42*&\244" "(\366\200\42(,(,(,(,\0\327\31\32\354\345\203),\342&f*$&(f*\366\200" "\42*{D\7\261\31\327\34\35\354\345\203),\342&f*$&(f*\66\366\200\42*\237\4\206" "\304\306\36\14\327 \37\354\345\203),\342&f*$&(f*\366\200\42*{\270\203\330\240\203\240" "\330\203\0\327(\32\354\345\203),\342&f*$&(f*\366\200\42*{\300\253|u\327)\34" "\354\345\203),\342&f*$&(f*\366\200\42*{\300\250\254\256R\35\327+\37\355\345\203)" ",\344&h*&Q\320Tp\304\301DXTX<\202\340\244\22qB\1\327-\36\354\345\203)," "\342&f*$&(f*\366\200\42*{TVaAaQ\26\0\327\64\35\315\345\203-\70\362\36" "\252.*,*\256\36\344\300(&\60&\60&\60&\10\0\327\65\32\355\345\203-\362\256.*,*" "\256\36\344\300(&\60&\354@\70'\0\327\70\36\355\345\203-\362\256.*,*\256\36\301\201QL" "`LXDLXp\360\201\10\0\327<\37\355\345\203-\362\256.*,*\256\36\344\300(&\60&" "\354@\70\350@(\370@\4\0\327D!\355\345\203-\362\256.*,*\256\36\344\300(&\60&\354" "@(.(.(.\350@\4\0\327G\36\355\345\203-\362\256.*,*\256\36\344\300(&\60&" "\36\60\70\66\42P&\10\0\327I\36\355\345\203-\362\256.*,*\256\36\344\300(&\60&\36\254" ".*,*\256\10\0\327P\24m\245\204-\70\362\36\252.*,*\256\36\301\201\1\327Q\27\355\345" "\203-\362\256.*,*\256\36\301\201=\300\201pN\0\327T\30\355\345\203-\362\256.*,*\256" "\36\301\201=tp\342\3\21\0\327V\36\355\345\203-\362\256.*,*\256\36\301\201y\134P\320E" "\330LTLH\311\10\0\327W\32\355\345\203-\362\256.*,*\256\36\301\201=\300\201Pp\342\3" "\21\0\327X\34\355\345\203-\362\256.*,*\256\36\301\201=\300\201p\320\201P\360\201\10\0\327Y" "\35\355\345\203-\362\256.*,*\256\36\301\201yEYTHUHdHU\4\0\327`\36\355\345" "\203-\362\256.*,*\256\36\301\201=\300\201P\134P\134P\134\320\201\10\0\327a\36\355\345\203-" "\362\256.*,*\256\36\301\201=@\134P\134\320\201P\134\320\201\10\0\327c\32\355\345\203-\362\256" ".*,*\256\36\301\201=\222\340\330\210@\231 \0\327e\32\355\345\203-\362\256.*,*\256\36" "\301\201=\202\272\250\260\250\270\42\0\327i\34\355\345\203-\362\256.*,*\256\36\301\201=\300\201P" "\360\201P\360\201\10\0\327l\35\314\345\203\67(,(,\342&\66\244(\42*&\42*&\244(\366" "\200\42\66\3\327p\35\314\345\203),\342&f*$&($&(f*\366\200\42\36 \66\333\3" "\1\327t!\314\345\203),\342&f*$&($&(f*\366\200\42\36\342 \66\350 (\366" " \0\327|\34\314\345\203),\342&f*$&($&(f*\366\200\42\36\344*_\35\327}" "\36\314\345\203),\342&f*$&($&(f*\366\200\42\36$*\253\253T\7\327\201 \314" "\345\203),\342&f*$&($&(f*\366\200\42\36\334*,(,\312\2\0\327\210\36\253" "\351\203',&\354 &d*\42&H*F*F*&\42&(d*\64\3\327\211\35\314\345\203" "'\356 (d,\42&*\42&*\42&*d,\66\36\372 \66\3\327\214\35\314\345\203'\356 " "(d,\42&*\42&*\42&*d,\66yl\332\203\1\327\220\42\314\345\203'\356 (d," "\42&*\42&*\42&*d,\66\36\342 \66\350 (\366 \0\327\230\35\314\345\203'\356 (" "d,\42&*\42&*\42&*d,\66\36\344*_\35\327\231\37\314\345\203'\356 (d,\42" "&*\42&*\42&*d,\66\36$*\253\253T\7\327\233 \315\345\203'.\342(f,$&" "*$&*$&*f,\70\36\62\70\251D\234P\0\327\235!\314\345\203'\356 (d,\42&" "*\42&*\42&*d,\66\36\334*,(,\312\2\0\0"; #endif /* U8G2_USE_LARGE_FONTS */
the_stack_data/111079446.c
#include <stdio.h> #include <assert.h> #define FSW_ENVIRONMENT_REAL 0 #define FSW_ENVIRONMENT_TEST 1 #define FSW_ENVIRONMENT FSW_ENVIRONMENT_REAL #define NUMBER_OF_MAJOR_COLORS 5 #define NUMBER_OF_MINOR_COLORS 5 int formColorMap(); int formColorMapStub(); #if(FSW_ENVIRONMENT == FSW_ENVIRONMENT_REAL) int (*colorMapMaker)() = &formColorMap; #else int (*colorMapMaker)() = &formColorMapStub; #endif const char* majorColor[] = {"White", "Red", "Black", "Yellow", "Violet"}; const char* minorColor[] = {"Blue", "Orange", "Green", "Brown", "Slate"}; struct colorPair { int pairNumber; const char* majorCol; const char* minorCol; }ColorPairs[NUMBER_OF_MAJOR_COLORS * NUMBER_OF_MINOR_COLORS]; int formColorMapStub(){ int i = 0, j = 0; for(i = 0; i < NUMBER_OF_MAJOR_COLORS; i++) { for(j = 0; j < NUMBER_OF_MINOR_COLORS; j++) { ColorPairs[(i * 5) + j].pairNumber = i * 5 + j; ColorPairs[(i * 5) + j].majorCol = majorColor[i]; ColorPairs[(i * 5) + j].minorCol = minorColor[i]; } } return i * j; } int index2String(int majorNumber, int minorNumber) { return (majorNumber * 5) + minorNumber + 1; } const char* majorIndex2Color(int majorIndex) { return majorColor[majorIndex]; } const char* minorIndex2Color(int minorIndex) { return minorColor[minorIndex]; } //function to generate correct mapping int formColorMap(){ int i = 0, j = 0; for(i = 0; i < NUMBER_OF_MAJOR_COLORS; i++) { for(j = 0; j < NUMBER_OF_MINOR_COLORS; j++) { ColorPairs[(i * 5) + j].pairNumber = index2String(i,j); ColorPairs[(i * 5) + j].majorCol = majorIndex2Color(i); ColorPairs[(i * 5) + j].minorCol = minorIndex2Color(j); } } return i * j; } const char* formatInfo(int pairNumber, const char* majorColorName, const char* minorColorName) { static char rowInfo[80]; sprintf(rowInfo, "%11d | %-11s | %-14s \n", pairNumber, majorColorName, minorColorName); return rowInfo; } void printColorMap() { static int i = 0; static const char* rowInfo; printf("\n---------Color Codes Table-------------\n"); printf("Pair number | Major Color | Minor color\n"); printf("---------------------------------------\n"); for(i = 0; i < NUMBER_OF_MAJOR_COLORS * NUMBER_OF_MINOR_COLORS; i++) { rowInfo = formatInfo(ColorPairs[i].pairNumber, ColorPairs[i].majorCol, ColorPairs[i].minorCol); printf("%s", rowInfo); } } void testColorMap() { int i=0, j=0; for(i=0; i<NUMBER_OF_MAJOR_COLORS ;i++) { for(j=0 ; j<NUMBER_OF_MINOR_COLORS ; j++) { assert(ColorPairs[(i * 5) + j].pairNumber == (i * 5) + j + 1); assert(ColorPairs[(i * 5) + j].majorCol == majorColor[i]); assert(ColorPairs[(i * 5) + j].minorCol == minorColor[j]); } } } int main() { int result = (*colorMapMaker)(); assert(result == 25); printColorMap(); testColorMap(); printf("All is well (maybe!)\n"); return 0; }
the_stack_data/147130.c
/* * Copyright 2014 The Native Client Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* * Stub routine for `socket' for porting support. */ #include <errno.h> int socket(int domain, int type, int protocol) { errno = ENOSYS; return -1; }
the_stack_data/20450135.c
#include <stdio.h> void main(void) { unsigned long num; unsigned long factorial(unsigned long); printf("Ingrese el numero del que desea el factorial: "); scanf("%u",&num); printf("El resultado es: %u\n",factorial(num)); } unsigned long factorial(unsigned long n) { unsigned long res=1,i; if((n==0)||(n==1)) return(1); for (i=2;i<(n+1);i++) res=res*i; return(res); }
the_stack_data/173577898.c
// File: 8.4.c // Author: iBug #include <stdio.h> #include <stdlib.h> void shift(int* a, int n, int m){ int *b = malloc(n * sizeof(*b)), i; for (i = 0; i < m; i ++) b[i] = a[n-m+i]; for (i = m; i < n; i ++) b[i] = a[i-m]; for (i = 0; i < n; i ++) a[i] = b[i]; free(b); } int main(){ int n, m, *a, i; printf("Enter array length: "); scanf("%d", &n); a = malloc(n * sizeof(*a)); printf("Enter array: "); for (i = 0; i < n; i ++) scanf("%d", &a[i]); printf("Enter shift distance: "); scanf("%d", &m); shift(a, n, m); printf("The shifted array is: "); for (i = 0; i < n; i ++) printf("%d ", a[i]); printf("\n"); free(a); return 0; }
the_stack_data/88681.c
/*------------------------------------------------------------------------- | rxtx is a native interface to serial ports in java. | Copyright 1997-2004 by Trent Jarvi [email protected] | | This library is free software; you can redistribute it and/or | modify it under the terms of the GNU Library General Public | License as published by the Free Software Foundation; either | version 2 of the License, or (at your option) any later version. | | This 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 | Library General Public License for more details. | | You should have received a copy of the GNU Library General Public | License along with this library; if not, write to the Free | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --------------------------------------------------------------------------*/ #include <termios.h> #include <unistd.h> #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <stdlib.h> int main(int argc, char *argv[]) { int i, fd ; struct termios ttyset; if (argc < 1 ) { printf("usage ./testSerial /dev/ttyS0\n"); exit(1); } fd = open (argv[1], O_RDWR | O_NOCTTY | O_NONBLOCK ); // wait for minicom/rxtx to start and user to press a key // You can set up the port in minicom/rxtx now. Dont // exit minicom until you have hit a key to continue. fgetc(stdin); // get the attributes. tcgetattr( fd, &ttyset ); /* print the attributes */ fprintf(stderr, "c_iflag=%#x\n", ttyset.c_iflag); fprintf(stderr, "c_lflag=%#x\n", ttyset.c_lflag); fprintf(stderr, "c_oflag=%#x\n", ttyset.c_oflag); fprintf(stderr, "c_cflag=%#x\n", ttyset.c_cflag); fprintf(stderr, "c_cc[]: "); for(i=0; i<NCCS; i++) { fprintf(stderr,"%d=%x ", i, ttyset.c_cc[i]); } fprintf(stderr,"\n" ); exit(0); }
the_stack_data/588890.c
#include <stdio.h> void swap(int arr[], int i, int j) { int temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } // Find the maximum element position in unsorted array int findMaximumPos(int arr[], int n) { int max = arr[0]; int pos = 0; int i; for (i = 1; i < n; i++) { if (arr[i] > max) { max = arr[i]; pos = i; } } return pos; } void selectionSort(int arr[], int n) { // 从右到左循环遍历 n - 1 次数组 while (n > 1) { int pos = findMaximumPos(arr, n); swap(arr, pos, n - 1); n--; } } // Function to print an array void printArray(int arr[], int size) { int i; for (i = 0; i < size; i++) { printf("%d ", arr[i]); } printf("\n"); } void selectSort2(int arr[], int n) { int i, j, minIndex, temp; // 外循环规定遍历次数,最后只剩一个元素则不需再遍历 // 所以外循环遍历 n - 1 次数组 for (i = 0; i < n - 1; ++i) { // 当前遍历数组最小元素的角标,初始时令其等于 i minIndex = i; // 将剩余未排序元素当成新的数组,与该数组首位元素比较 // 比较后记录最小元素的角标 for (j = i + 1; j < n; j++) { //比较 if (arr[j] < arr[minIndex]) { minIndex = j; } } // 根据最小元素的角标,将其放到当前数组的首位 if (minIndex != i) { temp = arr[minIndex]; arr[minIndex] = arr[i]; arr[i] = temp; } } } // Driver program to test above functions int main() { int arr[] = {7, 6, 5, 0}; int n = sizeof(arr) / sizeof(arr[0]); printf("Array before sorting: \n"); printArray(arr, n); selectionSort(arr, n); printf("\nArray after sorting: \n"); printArray(arr, n); return 0; }
the_stack_data/96445.c
// RUN: %clang %s -### \ // RUN: -fuse-ld=/usr/local/bin/or1k-linux-ld 2>&1 \ // RUN: | FileCheck %s --check-prefix=CHECK-ABSOLUTE-LD // CHECK-ABSOLUTE-LD: /usr/local/bin/or1k-linux-ld // RUN: %clang %s -### \ // RUN: -target x86_64-unknown-freebsd 2>&1 \ // RUN: | FileCheck %s --check-prefix=CHECK-FREEBSD-LD // CHECK-FREEBSD-LD: ld // RUN: %clang %s -### -fuse-ld=bfd \ // RUN: --sysroot=%S/Inputs/basic_freebsd_tree \ // RUN: -target x86_64-unknown-freebsd \ // RUN: -B%S/Inputs/basic_freebsd_tree/usr/bin 2>&1 \ // RUN: | FileCheck %s -check-prefix=CHECK-FREEBSD-BFD // CHECK-FREEBSD-BFD: Inputs/basic_freebsd_tree/usr/bin{{/|\\+}}ld.bfd // RUN: %clang %s -### -fuse-ld=gold \ // RUN: --sysroot=%S/Inputs/basic_freebsd_tree \ // RUN: -target x86_64-unknown-freebsd \ // RUN: -B%S/Inputs/basic_freebsd_tree/usr/bin 2>&1 \ // RUN: | FileCheck %s -check-prefix=CHECK-FREEBSD-GOLD // CHECK-FREEBSD-GOLD: Inputs/basic_freebsd_tree/usr/bin{{/|\\+}}ld.gold // RUN: %clang %s -### -fuse-ld=plib \ // RUN: --sysroot=%S/Inputs/basic_freebsd_tree \ // RUN: -target x86_64-unknown-freebsd \ // RUN: -B%S/Inputs/basic_freebsd_tree/usr/bin 2>&1 \ // RUN: | FileCheck %s -check-prefix=CHECK-FREEBSD-PLIB // CHECK-FREEBSD-PLIB: error: invalid linker name // RUN: %clang %s -### -fuse-ld=ld \ // RUN: -target arm-linux-androideabi \ // RUN: -B%S/Inputs/basic_android_tree/bin 2>&1 \ // RUN: | FileCheck %s --check-prefix=CHECK-ANDROID-ARM-LD // CHECK-ANDROID-ARM-LD: Inputs/basic_android_tree/bin{{/|\\+}}arm-linux-androideabi-ld // RUN: %clang %s -### -fuse-ld=bfd \ // RUN: -target arm-linux-androideabi \ // RUN: -B%S/Inputs/basic_android_tree/bin 2>&1 \ // RUN: | FileCheck %s -check-prefix=CHECK-ANDROID-ARM-BFD // CHECK-ANDROID-ARM-BFD: Inputs/basic_android_tree/bin{{/|\\+}}arm-linux-androideabi-ld.bfd // RUN: %clang %s -### -fuse-ld=gold \ // RUN: -target arm-linux-androideabi \ // RUN: -B%S/Inputs/basic_android_tree/bin 2>&1 \ // RUN: | FileCheck %s -check-prefix=CHECK-ANDROID-ARM-GOLD // CHECK-ANDROID-ARM-GOLD: Inputs/basic_android_tree/bin{{/|\\+}}arm-linux-androideabi-ld.gold // RUN: %clang %s -### -fuse-ld=ld \ // RUN: -target arm-linux-androideabi \ // RUN: -gcc-toolchain %S/Inputs/basic_android_tree 2>&1 \ // RUN: | FileCheck %s --check-prefix=CHECK-ANDROID-ARM-LD-TC // CHECK-ANDROID-ARM-LD-TC: Inputs/basic_android_tree/lib/gcc/arm-linux-androideabi/4.4.3/../../../../arm-linux-androideabi/bin{{/|\\+}}ld // RUN: %clang %s -### -fuse-ld=bfd \ // RUN: -target arm-linux-androideabi \ // RUN: -gcc-toolchain %S/Inputs/basic_android_tree 2>&1 \ // RUN: | FileCheck %s -check-prefix=CHECK-ANDROID-ARM-BFD-TC // CHECK-ANDROID-ARM-BFD-TC: Inputs/basic_android_tree/lib/gcc/arm-linux-androideabi/4.4.3/../../../../arm-linux-androideabi/bin{{/|\\+}}ld.bfd // RUN: %clang %s -### -fuse-ld=gold \ // RUN: -target arm-linux-androideabi \ // RUN: -gcc-toolchain %S/Inputs/basic_android_tree 2>&1 \ // RUN: | FileCheck %s -check-prefix=CHECK-ANDROID-ARM-GOLD-TC // CHECK-ANDROID-ARM-GOLD-TC: Inputs/basic_android_tree/lib/gcc/arm-linux-androideabi/4.4.3/../../../../arm-linux-androideabi/bin{{/|\\+}}ld.gold // RUN: %clang %s -### -fuse-ld=link \ // RUN: -target i686-unknown-windows-msvc 2>&1 \ // RUN: | FileCheck %s --check-prefix CHECK-WINDOWS-MSVC-LINK // CHECK-WINDOWS-MSVC-LINK: "{{.*}}link.exe" // CHECK-WINDOWS-MSVC-LINK-SAME: "-out:{{.*}}" // RUN: %clang %s -### -fuse-ld=lld \ // RUN: -target i686-unknown-windows-msvc 2>&1 \ // RUN: | FileCheck %s --check-prefix CHECK-WINDOWS-MSVC-LLD // CHECK-WINDOWS-MSVC-LLD: "{{.*}}lld-link" // CHECK-WINDOWS-MSVC-LLD-SAME: "-out:{{.*}}" // RUN: %clang %s -### -fuse-ld=lld-link \ // RUN: -target i686-unknown-windows-msvc 2>&1 \ // RUN: | FileCheck %s --check-prefix CHECK-WINDOWS-MSVC-LLD-LINK // CHECK-WINDOWS-MSVC-LLD-LINK: "{{.*}}lld-link" // CHECK-WINDOWS-MSVC-LLD-LINK-SAME: "-out:{{.*}}" // RUN: %clang %s -### -fuse-ld=bfd \ // RUN: -target i686-unknown-windows-msvc \ // RUN: -B %S/Inputs/Windows/usr/bin 2>&1 \ // RUN: | FileCheck %s --check-prefix CHECK-WINDOWS-MSVC-BFD // CHECK-WINDOWS-MSVC-BFD: "{{.*}}ld.bfd" // CHECK-WINDOWS-MSVC-BFD-SAME: "-o"
the_stack_data/1127025.c
/* * Copyright 1998 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ /* * Copyright (c) 1980 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ #pragma ident "%Z%%M% %I% %E% SMI" /* t..c : external declarations */ # include "stdio.h" # include "ctype.h" # define MAXLIN 200 # define MAXHEAD 100 # define MAXCOL 20 # define MAXCHS 2000 # define MAXSTR 1024 # define MAXRPT 100 # define CLLEN 10 # define SHORTLINE 4 # define BIGBUF 8192 extern char *gets1(char *, int); extern int nlin, ncol, iline, nclin, nslin; extern int style[MAXHEAD][MAXCOL]; extern int ctop[MAXHEAD][MAXCOL]; extern char font[MAXHEAD][MAXCOL][2]; extern char csize[MAXHEAD][MAXCOL][4]; extern char vsize[MAXHEAD][MAXCOL][4]; extern char cll[MAXCOL][CLLEN]; extern int stynum[]; extern int F1, F2; extern int lefline[MAXHEAD][MAXCOL]; extern int fullbot[]; extern char *instead[]; extern int expflg; extern int ctrflg; extern int evenflg; extern int evenup[]; extern int boxflg; extern int dboxflg; extern int linsize; extern int tab; extern int pr1403; extern int linsize, delim1, delim2; extern int allflg; extern int textflg; extern int left1flg; extern int rightl; struct colstr {char *col, *rcol;}; extern struct colstr *table[]; extern int *alocv(int); extern char *cspace, *cstore; extern char *chspace(void); extern char *maknew(char *); extern char *exstore, *exlim; extern int sep[]; extern int used[], lused[], rused[]; extern int linestop[]; extern char *leftover; extern char *last, *ifile; extern int texname; extern int texct; extern char texstr[]; extern int linstart; extern FILE *tabin, *tabout; # define CRIGHT 80 # define CLEFT 40 # define CMID 60 # define S1 31 # define S2 32 # define TMP 38 # define SF 35 # define SL 34 # define LSIZE 33 # define SIND 37 # define SVS 36 /* this refers to the relative position of lines */ # define LEFT 1 # define RIGHT 2 # define THRU 3 # define TOP 1 # define BOT 2
the_stack_data/220456264.c
/* File: trap.c * Purpose: Calculate definite integral using trapezoidal * rule. * * Input: a, b, n * Output: Estimate of integral from a to b of f(x) * using n trapezoids. * * Compile: gcc -g -Wall -o trap trap.c * Usage: ./trap * * Note: The function f(x) is hardwired. * * IPP: Section 3.2.1 (pp. 94 and ff.) and 5.2 (p. 216) */ #include <stdio.h> double f(double x); /* Function we're integrating */ double Trap(double a, double b, int n, double h); int main(void) { double integral; /* Store result in integral */ double a, b; /* Left and right endpoints */ int n; /* Number of trapezoids */ double h; /* Height of trapezoids */ printf("Enter a, b, and n\n"); scanf("%lf", &a); scanf("%lf", &b); scanf("%d", &n); h = (b-a)/n; integral = Trap(a, b, n, h); printf("With n = %d trapezoids, our estimate\n", n); printf("of the integral from %f to %f = %.15f\n", a, b, integral); return 0; } /* main */ /*------------------------------------------------------------------ * Function: Trap * Purpose: Estimate integral from a to b of f using trap rule and * n trapezoids * Input args: a, b, n, h * Return val: Estimate of the integral */ double Trap(double a, double b, int n, double h) { double integral; int k; integral = (f(a) + f(b))/2.0; for (k = 1; k <= n-1; k++) { integral += f(a+k*h); } integral = integral*h; return integral; } /* Trap */ /*------------------------------------------------------------------ * Function: f * Purpose: Compute value of function to be integrated * Input args: x */ double f(double x) { double return_val; return_val = x*x; return return_val; } /* f */
the_stack_data/170453228.c
#include <stdio.h> int main() { signed char aX, aY, bX, bY; scanf("%hhd %hhd %hhd %hhd", &aX, &aY, &bX, &bY); if(aX * aX + aY * aY < bX * bX + bY * bY) printf("A"); else printf("B"); return 0; }
the_stack_data/167331552.c
/* */ /* FreeType trigonometric functions (body). */ /* */ /* Copyright 2001, 2002, 2003, 2004, 2005 by */ /* David Turner, Robert Wilhelm, and Werner Lemberg. */ /* */
the_stack_data/76103.c
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /* * File: main.c * Author: aluno * * Created on 2 de Novembro de 2017, 12:06 */ #include <stdio.h> #include <stdlib.h> /* * */ void factorial(int valor){ int i; int resultado=1; for(i=1; i<= valor; ++i){ resultado= resultado *i; } printf("Resultado: %d", resultado); } int main(int argc, char** argv) { int valor; printf("Introduza um valor: "); scanf("%d", &valor); factorial(valor); return (EXIT_SUCCESS); }
the_stack_data/458821.c
void test(int d, int e, int b, int c, int a){ if ( ( a < b && a < c ) && a < d ) { e = a ; } else if ( ( b < a && b < c ) && b < d ) { e = b ; } else if ( ( c < a && c < b ) && c < d ) { e = c ; } else { e = d ; } }
the_stack_data/179832046.c
#include <stdio.h> #include <stdlib.h> /*Program to display the pattern 00 01 02 ............97 98 99*/ int main() { unsigned int i,j; //i and j are the loop controllers system("reset"); for(i=0;i<10;i++) { for(j=0;j<10;j++) { printf("%u%u ",i,j); } printf("\n"); } printf("\nPress Enter..... "); getchar(); return 0; }
the_stack_data/51645.c
/** stdio - Standard library i/o * @file * * This source file is part of the Cone Programming Language C compiler * See Copyright Notice in conec.h */ #include <stdint.h> #include <inttypes.h> #include <stdio.h> void __vprintCStr(const char* str) { printf("%s", str); } void __vprintI64(int64_t x) { printf("%d", x); } void __vprintBool(int8_t x) { if (x) { printf("true"); } else { printf("false"); } } // //void printStr(char *p, size_t len) { // fwrite(p, len, 1, stdout); // assert(false); //} // //void printInt(int64_t nbr) { // printf("%"PRId64, nbr); //} // //void printFloat(double nbr) { // printf("%g", nbr); //} // //void printChar(uint64_t code) { // char result[6]; // char *p = &result[0]; // // if (code<0x80) // *p++ = (unsigned char) code; // else if (code<0x800) { // *p++ = 0xC0 | (unsigned char)(code >> 6); // *p++ = 0x80 | (code & 0x3f); // } // else if (code<0x10000) { // *p++ = 0xE0 | (unsigned char)(code >> 12); // *p++ = 0x80 | ((code >> 6) & 0x3F); // *p++ = 0x80 | (code & 0x3f); // } // else if (code<0x110000) { // *p++ = 0xF0 | (unsigned char)(code >> 18); // *p++ = 0x80 | ((code >> 12) & 0x3F); // *p++ = 0x80 | ((code >> 6) & 0x3F); // *p++ = 0x80 | (code & 0x3f); // } // *p = '\0'; // printf("%s", result); //}
the_stack_data/9742.c
/* Simple utility to generate a source file containing the raw VDSO image that * we compile into the kernel */ #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <fcntl.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/mman.h> #define PAGESIZE 4096 #define die(fmt, args...) {\ fprintf(stderr, fmt, ##args);\ exit(EXIT_FAILURE);\ } static void write_header(FILE * fp) { fprintf(fp, "/* This file is automatically generated by vdsogen\n"); fprintf(fp, " * - DO NOT MODIFY -\n"); fprintf(fp, " */\n"); fprintf(fp, "const unsigned char vdso_raw[] __attribute__((aligned (%d))) = {", PAGESIZE); } static void write_footer(FILE * fp, unsigned long total) { fprintf(fp, "\n"); fprintf(fp, "};\n"); fprintf(fp, "const unsigned long vdso_raw_length = %ld;\n", total); } int main(int argc, char ** argv) { int fd; FILE * fp_out; unsigned long total; struct stat st; if (argc != 3) die("usage: %s <vdso.so> <output.c>\n", *argv); fd = open(argv[1], O_RDONLY); if (fd == -1) die("failed to open %s: %s\n", argv[1], strerror(errno)); if (fstat(fd, &st) == -1) die("failed to stat %s: %s\n", argv[1], strerror(errno)); fp_out = fopen(argv[2], "w"); if (fp_out == NULL) die("failed to open %s: %s\n", argv[2], strerror(errno)); write_header(fp_out); for (total = 0; ; total++) { unsigned char byte; ssize_t ret; ret = read(fd, &byte, sizeof(unsigned char)); if (ret == -1) die("failed to read %s: %s\n", argv[1], strerror(errno)); if (ret == 0) break; if (ret != sizeof(unsigned char)) die("read %ld bytes instead of %ld\n", ret, sizeof(unsigned char)); fprintf(fp_out, "%s0x%02X,%s", (total % 8 == 0) ? "\n " : "", byte, (total % 8 != 7) ? " " : "" ); } /* pad to multiple of page size */ unsigned long rem = total & (PAGESIZE - 1); if (rem != 0) { unsigned long end = total + (PAGESIZE - rem); for (; total < end; total++) { fprintf(fp_out, "%s0x00,%s", (total % 8 == 0) ? "\n " : "", (total % 8 != 7) ? " " : ""); } } write_footer(fp_out, total); fclose(fp_out); close(fd); exit(EXIT_SUCCESS); }
the_stack_data/551854.c
#include <stdio.h> #include <stdlib.h> #include <math.h> double average(double *x, int n_points); double average_sq(double *x, int n_points); double func(double x); int main(int argc, char **argv){ int n_points; double x; double *f; int i; double integral; n_points = atoi(argv[1]); if(!(f = malloc(n_points * sizeof(double)))){ fprintf(stderr, "problem with f allocation\n"); exit(1); } for(i=0; i<n_points; i++){ x = drand48(); f[i] = func(x); } integral = average(f, n_points); fprintf(stdout, "the integral is: %f\n", integral); return 0; } double average(double *x, int n_points){ int i; double a; a = 0.0; for(i=0;i<n_points;i++){ a += x[i]; } a /= n_points; return a; } double average_sq(double *x, int n_points){ int i; double a; a = 0.0; for(i=0;i<n_points;i++){ a += x[i]*x[i]; } a /= n_points; return a; } double func(double x){ return exp(x); }
the_stack_data/115160.c
#include <stdint.h> uint32_t shift(const uint32_t a, const uint32_t b) { return a << b; } int main(int argc, char *argv[]) { (void) argc; (void) argv; return shift(22, 32); }
the_stack_data/132626.c
struct { unsigned char a : 1; unsigned char b : 3; unsigned char c : 3; } x = { 3, 1, 2 }; int main() { return x.a + x.b + x.c; }
the_stack_data/150140535.c
#include <stdio.h> #include <ctype.h> #include <stdlib.h> #include <string.h> int c(long i, long j , char ** words, long words_no, int w){/*c is the cost to get words ito j into one line*/ int k, wij=0; for(k=i-1; k<j;k++){ wij = wij + strlen(words[k]) + 1; if(wij-1>w)break; } if(wij-1>w)return -1;/* we cant put all these words in a single line*/ if(j==words_no)return 0;/* its the last line*/ return (w - wij + 1)*(w - wij + 1); } int f(long j, char ** words, long words_no, int w, int * min_i){/*f is the function which you find the minimum cost for a text of j words*/ int i=0, min=-1, temp; int temp_min_i ; if(j==0)return 0; for(i=1;i<=j;i++){ temp = c(i, j, words, words_no, w);/*we split f(i-1)+cij in two, first temp=cij*/ if(temp == -1 ) continue;/*if we can't put words from i to j in a single line continue*/ if(temp >= min && min!=-1)continue;/*if already temp=cij >= min then cij+f(i-1) would also be*/ temp = temp + f(i-1, words, words_no, w, &temp_min_i);/*here we add to temp f(i-1) and we finaly have f(j)=f(i-1)+cij*/ if( temp < min || min == -1 ){/*check for the minimum*/ min = temp; *min_i = i;/*the i of the minimum cost*/ } } return min; } int wrap(char ** words,long words_no,int w, char * allages){ int i ; int cost=0, min_i; i = words_no;/*we first compute f(j) , j=words count*/ while(i>1){ if(i==words_no)/*we save the result*/ cost=f(i, words, words_no, w, &min_i); else /*else we just call the f*/ f(i, words, words_no, w, &min_i); i = min_i - 1 ;/*we put the words i(the i which f had found the min cost) to j in a line and we go to find the previous line*/ allages[i] = 1;/*if allages[i]==1 , a \n would be printed before the i word*/ } return cost; }
the_stack_data/6388582.c
static unsigned char increment(unsigned char x); extern int bpf_give_increment_value(); int program(void *buff) { unsigned char c = ((unsigned char *)buff)[0]; unsigned char d; d = increment(c); return d; } static unsigned char increment(unsigned char x) { unsigned char n = bpf_give_increment_value(); return x + n; }
the_stack_data/908241.c
//Background converted using Mollusk's PAImageConverter //This Background uses title_bg2_Pal int title_bg2_Width = 256; int title_bg2_Height = 192; const unsigned short title_bg2_Map[768] __attribute__ ((aligned (4))) = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 0, 0, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 0, 0, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 0, 0, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 0, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 0, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 0, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 0, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; const unsigned char title_bg2_Tiles[32192] __attribute__ ((aligned (4))) = { 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, 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, 2, 3, 3, 4, 5, 5, 3, 5, 3, 4, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 5, 5, 5, 3, 3, 5, 5, 8, 6, 5, 5, 3, 3, 3, 5, 6, 6, 7, 5, 3, 4, 3, 5, 5, 5, 8, 6, 3, 4, 5, 5, 5, 5, 7, 8, 6, 6, 6, 6, 6, 7, 8, 9, 5, 5, 6, 6, 8, 7, 9, 7, 5, 5, 6, 6, 8, 7, 9, 9, 5, 6, 8, 8, 7, 7, 9, 9, 8, 8, 7, 7, 7, 7, 9, 7, 8, 8, 7, 9, 9, 9, 9, 9, 8, 8, 8, 7, 6, 7, 7, 7, 9, 7, 8, 9, 7, 8, 8, 8, 9, 10, 10, 9, 9, 9, 9, 11, 9, 10, 9, 9, 10, 10, 9, 7, 7, 9, 10, 10, 11, 9, 9, 9, 9, 9, 10, 9, 9, 9, 9, 11, 9, 10, 9, 9, 9, 9, 9, 9, 9, 10, 9, 9, 9, 9, 9, 9, 8, 9, 9, 9, 9, 9, 11, 9, 7, 7, 9, 9, 9, 9, 11, 11, 9, 9, 8, 8, 11, 9, 9, 12, 9, 11, 11, 8, 11, 12, 9, 12, 7, 7, 11, 9, 9, 9, 9, 12, 11, 7, 11, 11, 9, 12, 11, 12, 11, 11, 11, 11, 9, 12, 12, 9, 9, 11, 11, 11, 11, 12, 12, 12, 9, 9, 11, 9, 9, 12, 12, 9, 9, 9, 9, 11, 11, 12, 12, 9, 10, 12, 10, 13, 10, 9, 9, 9, 12, 10, 12, 10, 10, 10, 9, 9, 12, 12, 10, 10, 10, 10, 9, 9, 12, 12, 12, 10, 10, 10, 9, 9, 9, 12, 12, 10, 10, 9, 10, 10, 9, 9, 9, 10, 9, 10, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 9, 7, 7, 7, 7, 7, 7, 8, 6, 9, 7, 7, 8, 8, 8, 8, 6, 9, 9, 7, 7, 8, 8, 8, 6, 9, 9, 7, 7, 7, 8, 8, 5, 10, 10, 7, 9, 7, 8, 5, 5, 10, 10, 10, 8, 7, 6, 5, 5, 9, 13, 9, 7, 8, 6, 5, 5, 10, 10, 10, 7, 8, 6, 5, 5, 5, 5, 14, 15, 15, 15, 16, 16, 5, 3, 14, 15, 16, 15, 16, 16, 5, 3, 14, 14, 16, 16, 16, 16, 5, 3, 14, 14, 16, 16, 16, 16, 3, 3, 14, 15, 16, 16, 16, 16, 3, 14, 14, 15, 16, 16, 16, 16, 14, 14, 15, 16, 16, 16, 16, 17, 3, 14, 16, 17, 17, 17, 16, 17, 17, 17, 17, 17, 18, 18, 19, 20, 17, 17, 17, 17, 18, 18, 19, 19, 16, 17, 17, 17, 18, 17, 18, 18, 17, 17, 17, 17, 18, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 16, 16, 16, 16, 17, 17, 17, 16, 16, 16, 16, 16, 16, 17, 16, 16, 16, 16, 16, 16, 17, 21, 21, 21, 21, 21, 22, 1, 1, 19, 21, 21, 21, 20, 21, 22, 1, 19, 19, 19, 19, 20, 20, 21, 21, 18, 18, 19, 19, 19, 19, 20, 21, 18, 18, 17, 17, 19, 19, 20, 20, 17, 17, 17, 16, 17, 19, 19, 20, 17, 17, 17, 16, 16, 17, 19, 19, 16, 17, 17, 18, 17, 17, 17, 18, 22, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 22, 1, 1, 22, 1, 22, 22, 1, 1, 22, 22, 21, 22, 22, 21, 21, 1, 20, 1, 21, 21, 20, 20, 19, 21, 1, 21, 20, 20, 19, 19, 20, 20, 19, 19, 19, 20, 19, 19, 19, 17, 19, 20, 19, 19, 19, 19, 19, 17, 19, 19, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 22, 22, 1, 22, 21, 20, 20, 21, 22, 22, 1, 21, 20, 20, 20, 20, 20, 21, 21, 20, 20, 19, 19, 20, 20, 20, 20, 20, 20, 19, 19, 20, 20, 19, 20, 19, 19, 18, 19, 19, 19, 19, 17, 18, 18, 18, 18, 1, 1, 1, 1, 23, 23, 1, 1, 22, 22, 22, 22, 22, 1, 1, 1, 20, 20, 20, 20, 20, 22, 22, 22, 20, 20, 20, 20, 19, 22, 22, 22, 20, 20, 20, 19, 18, 21, 21, 22, 19, 20, 19, 19, 19, 18, 20, 22, 18, 18, 19, 19, 18, 19, 19, 20, 19, 19, 18, 19, 18, 18, 19, 19, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 23, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 1, 23, 1, 1, 23, 1, 22, 22, 1, 23, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 22, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 1, 1, 1, 1, 23, 23, 1, 1, 1, 23, 1, 23, 1, 23, 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, 23, 23, 1, 1, 22, 22, 1, 1, 1, 1, 1, 23, 1, 1, 23, 1, 1, 1, 1, 23, 23, 1, 23, 23, 1, 1, 23, 23, 23, 1, 1, 1, 1, 23, 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, 23, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 23, 23, 1, 23, 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, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 23, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 22, 1, 23, 22, 21, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 22, 1, 1, 1, 23, 1, 1, 1, 23, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 23, 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, 22, 22, 1, 1, 1, 1, 1, 1, 1, 22, 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, 22, 22, 1, 22, 1, 1, 1, 1, 1, 21, 22, 1, 22, 1, 1, 1, 1, 21, 21, 22, 1, 1, 1, 1, 1, 22, 21, 22, 1, 22, 1, 1, 22, 1, 22, 22, 22, 1, 1, 22, 1, 1, 1, 1, 22, 1, 22, 1, 22, 1, 22, 1, 1, 22, 1, 1, 1, 22, 1, 1, 22, 22, 1, 22, 1, 22, 21, 21, 20, 21, 21, 22, 1, 21, 22, 21, 20, 20, 20, 1, 1, 22, 22, 22, 21, 21, 21, 1, 22, 1, 1, 22, 22, 20, 21, 1, 1, 1, 1, 1, 22, 21, 21, 1, 22, 22, 1, 1, 21, 21, 20, 1, 1, 1, 22, 1, 21, 20, 21, 1, 1, 1, 1, 1, 22, 21, 21, 21, 20, 19, 19, 20, 20, 19, 20, 21, 20, 20, 19, 20, 19, 19, 19, 21, 21, 20, 19, 19, 19, 19, 19, 21, 20, 19, 19, 20, 20, 20, 19, 21, 21, 20, 20, 20, 19, 19, 19, 21, 21, 20, 19, 19, 19, 19, 19, 21, 20, 20, 20, 19, 19, 19, 20, 21, 21, 20, 19, 20, 19, 19, 19, 20, 19, 19, 19, 18, 18, 18, 19, 20, 20, 19, 19, 19, 18, 19, 18, 19, 19, 19, 19, 19, 19, 19, 18, 18, 19, 18, 19, 19, 19, 19, 18, 19, 19, 19, 19, 19, 19, 19, 19, 18, 18, 19, 18, 19, 19, 19, 20, 20, 19, 18, 19, 19, 19, 19, 19, 20, 19, 19, 18, 18, 19, 18, 19, 19, 18, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 18, 19, 18, 18, 18, 19, 19, 18, 17, 19, 19, 19, 19, 18, 17, 17, 17, 19, 19, 19, 18, 17, 16, 16, 16, 20, 19, 18, 17, 17, 16, 15, 15, 19, 19, 18, 17, 16, 15, 15, 14, 19, 20, 19, 19, 18, 18, 17, 16, 19, 19, 19, 18, 17, 17, 16, 16, 17, 17, 17, 17, 17, 16, 16, 16, 17, 16, 16, 17, 17, 16, 16, 16, 16, 15, 16, 16, 17, 16, 16, 14, 15, 14, 16, 15, 16, 16, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 3, 14, 3, 3, 14, 16, 16, 16, 16, 15, 14, 14, 14, 16, 16, 16, 16, 15, 16, 14, 14, 16, 16, 16, 16, 16, 16, 14, 14, 16, 16, 16, 16, 16, 16, 16, 14, 14, 14, 14, 16, 16, 16, 16, 14, 14, 14, 14, 14, 16, 16, 16, 16, 3, 14, 14, 14, 15, 16, 14, 14, 14, 24, 14, 14, 14, 14, 14, 3, 16, 15, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 3, 14, 14, 15, 2, 14, 3, 3, 3, 14, 14, 14, 2, 3, 3, 3, 3, 14, 14, 3, 3, 3, 3, 4, 4, 14, 14, 2, 2, 3, 3, 3, 3, 14, 3, 2, 2, 3, 3, 3, 4, 3, 3, 3, 2, 14, 14, 3, 4, 3, 5, 5, 5, 5, 5, 8, 8, 3, 5, 5, 5, 5, 5, 5, 11, 5, 5, 6, 6, 6, 6, 8, 11, 5, 5, 6, 6, 7, 8, 8, 8, 3, 3, 5, 6, 6, 8, 7, 11, 3, 3, 5, 6, 6, 6, 8, 6, 5, 3, 5, 5, 6, 6, 5, 5, 5, 6, 5, 6, 6, 5, 5, 5, 9, 9, 9, 7, 7, 7, 8, 8, 9, 11, 9, 10, 7, 7, 7, 7, 9, 12, 9, 9, 10, 9, 9, 9, 9, 11, 10, 10, 10, 9, 9, 9, 7, 7, 9, 9, 9, 9, 9, 9, 8, 7, 9, 9, 9, 10, 9, 10, 5, 6, 7, 7, 9, 9, 9, 10, 5, 6, 8, 7, 9, 9, 9, 7, 7, 9, 9, 9, 9, 9, 9, 8, 7, 9, 9, 10, 9, 9, 9, 9, 7, 9, 10, 9, 10, 9, 10, 9, 9, 10, 9, 10, 10, 10, 10, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 9, 9, 9, 10, 9, 12, 12, 9, 9, 9, 10, 9, 10, 12, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 26, 10, 10, 26, 10, 10, 10, 10, 26, 10, 10, 26, 10, 26, 12, 9, 9, 9, 9, 9, 9, 13, 10, 10, 12, 9, 9, 9, 10, 10, 10, 10, 10, 10, 9, 10, 10, 9, 10, 26, 10, 10, 10, 10, 10, 9, 10, 10, 26, 26, 26, 10, 13, 10, 10, 10, 10, 26, 10, 10, 13, 9, 10, 26, 26, 10, 26, 10, 10, 9, 26, 26, 10, 26, 10, 12, 9, 7, 9, 10, 9, 9, 8, 6, 5, 3, 13, 7, 9, 7, 8, 5, 5, 3, 9, 10, 7, 7, 8, 6, 3, 14, 9, 7, 9, 8, 8, 6, 5, 3, 7, 7, 8, 8, 6, 5, 5, 5, 7, 6, 6, 6, 5, 5, 3, 5, 8, 8, 6, 5, 5, 3, 3, 14, 8, 6, 5, 5, 5, 3, 3, 3, 14, 14, 15, 16, 17, 17, 17, 16, 14, 14, 15, 16, 17, 17, 16, 16, 14, 14, 15, 16, 17, 16, 16, 16, 14, 14, 15, 16, 16, 16, 17, 16, 14, 14, 15, 16, 16, 16, 16, 16, 14, 14, 15, 16, 16, 16, 16, 16, 14, 14, 15, 16, 16, 14, 14, 16, 14, 15, 15, 16, 16, 16, 14, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 17, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 3, 14, 3, 14, 16, 16, 16, 14, 16, 16, 16, 16, 17, 17, 18, 17, 16, 16, 16, 16, 16, 17, 17, 17, 16, 16, 16, 16, 16, 16, 16, 17, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 24, 24, 16, 14, 14, 14, 14, 24, 24, 14, 14, 16, 3, 14, 3, 14, 14, 14, 16, 3, 14, 14, 3, 24, 4, 5, 19, 19, 19, 19, 17, 17, 19, 19, 17, 19, 19, 17, 19, 17, 19, 19, 17, 17, 17, 17, 17, 25, 17, 19, 16, 16, 16, 17, 25, 25, 17, 17, 14, 14, 25, 17, 17, 17, 17, 17, 14, 2, 14, 14, 16, 25, 17, 17, 4, 14, 14, 14, 25, 25, 17, 17, 4, 4, 14, 14, 16, 25, 25, 25, 19, 19, 17, 17, 17, 17, 18, 18, 19, 17, 17, 17, 17, 17, 18, 18, 17, 19, 17, 25, 17, 17, 16, 17, 19, 25, 25, 17, 17, 17, 16, 17, 17, 25, 25, 16, 17, 17, 17, 16, 17, 25, 25, 17, 17, 16, 15, 16, 17, 17, 25, 17, 17, 17, 16, 16, 17, 17, 17, 18, 18, 17, 17, 16, 19, 18, 18, 18, 18, 18, 19, 20, 18, 18, 18, 18, 18, 18, 18, 19, 17, 17, 17, 17, 18, 19, 20, 20, 17, 17, 17, 17, 18, 19, 20, 20, 16, 16, 17, 17, 18, 19, 20, 22, 16, 16, 16, 17, 19, 19, 20, 22, 16, 17, 16, 17, 18, 20, 21, 22, 16, 17, 18, 18, 18, 19, 20, 22, 20, 22, 1, 1, 1, 1, 1, 1, 20, 21, 22, 23, 1, 1, 1, 1, 21, 21, 22, 1, 1, 1, 1, 1, 21, 1, 23, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 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, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 22, 1, 1, 1, 23, 1, 1, 1, 1, 1, 23, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 23, 1, 22, 22, 23, 23, 1, 1, 1, 22, 20, 20, 21, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 23, 23, 23, 1, 1, 1, 1, 1, 1, 1, 23, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 1, 1, 1, 1, 23, 1, 1, 23, 1, 1, 1, 23, 1, 23, 1, 1, 1, 23, 1, 22, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 23, 1, 1, 23, 1, 22, 1, 1, 23, 1, 1, 1, 23, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 23, 1, 1, 23, 22, 1, 1, 23, 23, 23, 23, 1, 1, 1, 1, 23, 1, 1, 1, 1, 23, 1, 1, 23, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 23, 1, 23, 23, 1, 1, 1, 1, 22, 23, 1, 1, 1, 1, 1, 23, 1, 22, 1, 1, 1, 23, 1, 22, 22, 22, 1, 1, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 23, 23, 1, 1, 22, 22, 1, 1, 23, 23, 23, 1, 1, 22, 1, 23, 23, 1, 23, 23, 23, 22, 23, 1, 1, 23, 1, 23, 1, 20, 22, 1, 1, 1, 23, 23, 23, 23, 22, 22, 1, 1, 1, 1, 23, 23, 22, 22, 22, 1, 23, 1, 1, 23, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 23, 22, 22, 22, 22, 1, 1, 1, 1, 22, 22, 22, 22, 1, 1, 1, 1, 22, 22, 22, 22, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 23, 1, 1, 22, 1, 1, 23, 1, 23, 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, 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, 23, 23, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 22, 1, 22, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 23, 1, 22, 22, 1, 22, 22, 23, 1, 1, 22, 1, 1, 22, 22, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 22, 1, 1, 22, 1, 1, 22, 1, 1, 1, 1, 22, 22, 1, 22, 22, 1, 22, 22, 22, 22, 1, 1, 22, 22, 22, 22, 1, 1, 22, 1, 1, 1, 22, 1, 1, 22, 1, 1, 1, 1, 21, 21, 21, 21, 20, 19, 19, 1, 1, 21, 21, 21, 20, 19, 20, 1, 1, 22, 22, 22, 21, 20, 20, 22, 1, 1, 1, 1, 22, 21, 20, 1, 1, 1, 1, 1, 1, 21, 20, 1, 1, 1, 1, 22, 1, 21, 20, 1, 1, 1, 1, 1, 22, 21, 20, 1, 1, 1, 1, 22, 22, 22, 21, 19, 19, 19, 19, 18, 19, 18, 19, 19, 19, 19, 19, 18, 18, 18, 18, 19, 19, 19, 19, 19, 18, 18, 17, 21, 20, 20, 19, 19, 19, 18, 17, 21, 20, 20, 20, 19, 19, 18, 17, 20, 22, 21, 19, 20, 19, 17, 16, 20, 21, 20, 20, 19, 19, 18, 17, 21, 20, 20, 20, 19, 19, 18, 17, 19, 18, 18, 17, 15, 15, 15, 15, 18, 18, 17, 16, 16, 15, 15, 14, 17, 17, 17, 16, 16, 16, 14, 14, 17, 17, 16, 17, 16, 16, 14, 14, 17, 16, 16, 16, 15, 15, 14, 14, 16, 16, 16, 16, 14, 14, 24, 24, 16, 14, 14, 14, 14, 3, 3, 5, 16, 15, 14, 14, 3, 3, 5, 5, 15, 14, 3, 3, 3, 3, 3, 3, 14, 2, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 5, 3, 3, 3, 3, 2, 5, 5, 5, 3, 3, 3, 3, 3, 5, 5, 6, 5, 3, 3, 3, 5, 5, 5, 5, 5, 5, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 3, 24, 2, 24, 24, 14, 3, 3, 3, 3, 3, 3, 24, 14, 14, 3, 3, 3, 3, 3, 3, 14, 3, 3, 3, 3, 3, 24, 3, 3, 3, 3, 3, 4, 5, 3, 3, 3, 3, 3, 3, 4, 4, 4, 5, 3, 3, 3, 3, 3, 4, 5, 5, 5, 5, 8, 3, 4, 4, 4, 6, 6, 6, 8, 5, 4, 3, 2, 14, 14, 3, 14, 3, 4, 3, 3, 14, 14, 3, 14, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 2, 3, 3, 4, 5, 5, 4, 5, 5, 3, 5, 4, 5, 8, 6, 6, 5, 4, 5, 5, 4, 8, 5, 3, 5, 4, 3, 5, 5, 6, 6, 6, 6, 5, 5, 5, 5, 5, 6, 8, 6, 5, 5, 5, 5, 6, 6, 6, 6, 6, 5, 8, 6, 6, 5, 6, 6, 5, 5, 8, 6, 5, 5, 5, 5, 6, 6, 5, 5, 3, 5, 5, 6, 6, 6, 5, 5, 5, 5, 5, 6, 6, 6, 8, 5, 5, 5, 6, 5, 6, 6, 5, 6, 5, 5, 8, 8, 7, 9, 9, 7, 5, 6, 8, 8, 7, 9, 7, 9, 5, 6, 8, 8, 7, 7, 9, 9, 5, 6, 8, 8, 7, 9, 9, 9, 5, 6, 8, 8, 7, 7, 9, 9, 5, 6, 8, 8, 7, 7, 9, 9, 5, 6, 5, 6, 8, 7, 9, 9, 8, 5, 8, 6, 7, 7, 9, 10, 9, 9, 10, 10, 10, 10, 10, 27, 9, 9, 10, 10, 10, 10, 10, 10, 9, 9, 7, 9, 9, 9, 9, 9, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 11, 11, 11, 9, 9, 9, 9, 7, 7, 11, 11, 9, 10, 9, 9, 9, 7, 11, 11, 11, 10, 10, 9, 10, 9, 9, 9, 9, 10, 26, 9, 10, 10, 10, 26, 10, 26, 9, 10, 10, 26, 26, 26, 26, 9, 9, 9, 10, 10, 10, 26, 26, 9, 10, 10, 11, 10, 10, 10, 10, 9, 10, 10, 9, 11, 10, 10, 26, 9, 9, 10, 9, 11, 9, 10, 10, 9, 11, 9, 9, 10, 9, 9, 10, 9, 11, 7, 10, 9, 10, 9, 9, 26, 26, 26, 10, 10, 12, 9, 8, 26, 26, 26, 26, 12, 9, 7, 8, 26, 26, 26, 26, 10, 9, 7, 6, 26, 10, 26, 26, 10, 12, 6, 5, 10, 10, 10, 10, 10, 9, 8, 5, 10, 10, 10, 10, 9, 9, 6, 5, 10, 10, 10, 12, 12, 7, 8, 6, 10, 26, 10, 12, 9, 9, 7, 6, 5, 5, 5, 5, 3, 5, 3, 14, 6, 3, 2, 2, 3, 24, 14, 14, 5, 3, 2, 2, 24, 14, 14, 15, 5, 3, 14, 14, 24, 14, 14, 14, 5, 3, 2, 14, 14, 14, 14, 14, 6, 5, 3, 14, 24, 14, 14, 15, 8, 6, 5, 3, 14, 14, 15, 16, 6, 6, 6, 5, 14, 14, 15, 16, 14, 16, 15, 16, 16, 16, 16, 16, 14, 14, 16, 16, 16, 16, 16, 16, 16, 15, 16, 16, 16, 16, 16, 14, 15, 16, 16, 16, 16, 16, 14, 14, 15, 15, 16, 16, 16, 16, 16, 14, 15, 16, 16, 16, 16, 16, 16, 14, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 3, 14, 3, 14, 14, 16, 16, 16, 16, 3, 3, 3, 14, 14, 16, 14, 16, 14, 3, 3, 3, 14, 16, 16, 14, 14, 14, 3, 3, 3, 14, 14, 14, 14, 14, 3, 3, 3, 14, 14, 14, 14, 14, 14, 5, 3, 3, 3, 14, 14, 14, 14, 14, 5, 5, 3, 14, 14, 14, 14, 14, 5, 5, 5, 3, 3, 3, 5, 4, 5, 4, 4, 14, 3, 3, 5, 6, 6, 4, 4, 14, 3, 3, 5, 6, 6, 5, 4, 14, 14, 3, 3, 8, 6, 5, 6, 14, 3, 14, 3, 6, 6, 6, 3, 14, 3, 3, 14, 4, 8, 6, 3, 3, 3, 3, 4, 4, 4, 6, 5, 3, 3, 5, 6, 7, 4, 4, 6, 4, 2, 14, 24, 14, 16, 25, 17, 5, 2, 14, 14, 14, 16, 25, 17, 3, 2, 14, 14, 16, 16, 16, 17, 2, 2, 14, 14, 16, 16, 16, 25, 4, 5, 24, 14, 14, 16, 16, 16, 5, 3, 24, 14, 15, 15, 16, 15, 2, 5, 24, 14, 15, 15, 16, 25, 5, 2, 14, 16, 16, 16, 16, 25, 25, 17, 18, 18, 18, 18, 18, 17, 17, 17, 18, 18, 17, 18, 18, 18, 17, 17, 17, 17, 17, 17, 17, 18, 25, 25, 17, 18, 17, 18, 18, 19, 25, 25, 17, 17, 17, 18, 18, 19, 25, 18, 17, 17, 18, 18, 19, 20, 16, 17, 17, 17, 18, 19, 19, 20, 15, 17, 17, 18, 18, 19, 20, 20, 17, 17, 18, 19, 19, 20, 21, 1, 18, 18, 18, 19, 20, 22, 1, 1, 18, 19, 20, 21, 22, 1, 22, 1, 19, 19, 20, 22, 22, 23, 22, 1, 20, 20, 20, 22, 1, 1, 1, 1, 20, 20, 21, 1, 1, 1, 23, 1, 20, 21, 22, 22, 23, 23, 1, 1, 20, 21, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 23, 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, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 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, 23, 22, 22, 21, 20, 22, 22, 1, 1, 22, 20, 20, 20, 22, 22, 1, 23, 1, 21, 20, 22, 22, 1, 1, 22, 22, 22, 22, 22, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 23, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 23, 1, 23, 23, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 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, 23, 23, 23, 1, 1, 1, 1, 23, 23, 23, 23, 1, 1, 1, 1, 23, 23, 23, 23, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 1, 1, 1, 23, 1, 22, 22, 1, 1, 23, 1, 1, 22, 22, 22, 22, 1, 1, 23, 1, 22, 22, 22, 22, 1, 1, 1, 1, 22, 22, 22, 22, 1, 1, 1, 1, 1, 22, 22, 22, 1, 22, 1, 1, 1, 22, 22, 1, 1, 23, 1, 23, 1, 1, 23, 22, 23, 23, 23, 1, 22, 22, 23, 1, 23, 1, 23, 23, 23, 23, 22, 20, 22, 1, 1, 23, 23, 1, 21, 22, 21, 21, 22, 1, 1, 22, 20, 22, 20, 20, 22, 22, 1, 22, 20, 20, 22, 21, 22, 22, 1, 22, 22, 22, 22, 22, 22, 22, 1, 22, 1, 1, 22, 22, 22, 1, 1, 22, 22, 22, 1, 1, 22, 22, 1, 21, 21, 22, 21, 22, 1, 22, 22, 23, 1, 1, 22, 22, 22, 22, 22, 1, 1, 22, 22, 22, 22, 22, 22, 22, 22, 22, 21, 20, 22, 22, 22, 22, 22, 1, 20, 20, 20, 21, 22, 22, 22, 22, 23, 22, 22, 22, 22, 22, 22, 21, 22, 1, 23, 22, 22, 22, 22, 22, 21, 22, 1, 1, 22, 1, 22, 1, 22, 22, 22, 1, 23, 23, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 22, 1, 22, 1, 23, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 22, 22, 22, 22, 1, 1, 22, 22, 22, 22, 22, 22, 1, 1, 21, 21, 22, 22, 22, 1, 1, 1, 1, 21, 21, 22, 22, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 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, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 1, 22, 22, 1, 1, 1, 23, 1, 22, 22, 21, 1, 1, 1, 22, 22, 22, 21, 21, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 22, 22, 22, 22, 22, 1, 23, 1, 22, 22, 20, 20, 20, 22, 22, 1, 20, 20, 20, 20, 20, 20, 20, 21, 20, 20, 20, 20, 20, 20, 20, 20, 23, 23, 1, 1, 22, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 22, 1, 23, 23, 1, 1, 1, 22, 22, 22, 1, 23, 22, 1, 22, 22, 22, 1, 22, 1, 22, 22, 22, 22, 1, 22, 1, 1, 1, 1, 21, 21, 20, 20, 20, 20, 20, 20, 21, 21, 20, 20, 1, 1, 1, 1, 22, 22, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 22, 22, 22, 1, 22, 1, 1, 21, 22, 22, 21, 22, 22, 22, 22, 22, 22, 21, 1, 22, 22, 21, 21, 22, 21, 20, 20, 20, 21, 21, 21, 21, 20, 20, 20, 20, 20, 21, 21, 20, 20, 20, 1, 1, 1, 22, 1, 1, 22, 21, 1, 1, 1, 1, 22, 21, 22, 21, 22, 22, 1, 22, 21, 22, 22, 21, 22, 22, 21, 21, 21, 21, 20, 20, 21, 20, 21, 20, 20, 20, 21, 19, 20, 19, 19, 21, 19, 20, 19, 20, 19, 19, 19, 19, 19, 19, 18, 19, 19, 19, 19, 19, 19, 19, 18, 18, 20, 21, 20, 20, 20, 19, 18, 18, 21, 21, 20, 19, 18, 18, 18, 18, 21, 20, 20, 19, 19, 18, 19, 18, 20, 19, 19, 18, 19, 18, 18, 17, 20, 19, 18, 18, 18, 17, 17, 17, 19, 19, 18, 17, 17, 17, 16, 16, 18, 18, 18, 17, 17, 16, 16, 15, 18, 18, 18, 16, 16, 16, 16, 15, 18, 16, 14, 14, 3, 3, 5, 5, 17, 16, 15, 3, 14, 3, 5, 5, 17, 15, 14, 14, 14, 24, 5, 5, 16, 15, 14, 14, 14, 3, 5, 6, 16, 14, 14, 14, 3, 5, 6, 6, 16, 3, 5, 14, 3, 5, 6, 6, 15, 3, 5, 5, 5, 6, 8, 8, 3, 5, 3, 5, 6, 6, 8, 7, 6, 5, 5, 5, 3, 5, 6, 6, 5, 5, 5, 5, 5, 5, 6, 6, 5, 5, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 6, 6, 8, 8, 7, 7, 8, 6, 6, 6, 7, 8, 7, 7, 8, 8, 7, 7, 11, 8, 8, 7, 8, 7, 11, 9, 9, 5, 4, 4, 4, 5, 8, 8, 8, 5, 5, 4, 4, 5, 6, 6, 8, 5, 5, 4, 5, 6, 8, 8, 7, 5, 5, 5, 6, 8, 6, 6, 8, 8, 8, 6, 8, 8, 8, 6, 8, 11, 7, 8, 7, 8, 8, 6, 8, 11, 11, 7, 7, 7, 8, 8, 8, 11, 11, 9, 9, 7, 7, 7, 7, 8, 5, 3, 3, 5, 5, 4, 4, 8, 6, 5, 6, 5, 5, 4, 4, 7, 6, 6, 6, 5, 5, 5, 4, 7, 6, 6, 5, 5, 5, 4, 5, 8, 8, 6, 5, 5, 5, 4, 4, 5, 5, 6, 5, 5, 5, 4, 4, 8, 6, 6, 5, 5, 5, 3, 4, 7, 6, 6, 6, 5, 5, 4, 3, 5, 6, 5, 5, 5, 5, 5, 5, 3, 4, 5, 5, 5, 5, 6, 5, 5, 5, 4, 5, 5, 5, 6, 6, 3, 5, 5, 5, 5, 5, 6, 6, 3, 4, 5, 5, 5, 6, 6, 6, 5, 5, 5, 5, 6, 6, 5, 8, 5, 4, 6, 5, 6, 8, 8, 8, 5, 5, 5, 6, 8, 8, 11, 11, 8, 6, 8, 8, 7, 7, 9, 9, 5, 5, 5, 7, 7, 9, 9, 9, 5, 5, 5, 7, 7, 7, 7, 7, 8, 6, 7, 7, 7, 7, 7, 7, 7, 8, 7, 7, 7, 7, 7, 7, 11, 11, 7, 7, 8, 7, 7, 7, 11, 11, 9, 7, 9, 9, 9, 9, 9, 12, 12, 11, 9, 9, 10, 10, 9, 10, 10, 10, 10, 10, 10, 9, 9, 10, 9, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 29, 27, 27, 9, 9, 10, 10, 10, 10, 10, 10, 7, 9, 7, 9, 10, 10, 10, 27, 9, 7, 9, 9, 9, 10, 10, 27, 9, 9, 9, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 27, 27, 10, 10, 9, 7, 10, 9, 10, 10, 10, 10, 9, 11, 11, 10, 10, 10, 27, 27, 10, 9, 9, 10, 26, 26, 27, 27, 27, 26, 10, 10, 11, 11, 27, 27, 27, 26, 26, 26, 10, 10, 27, 27, 27, 30, 26, 26, 26, 26, 27, 27, 27, 26, 30, 30, 26, 26, 27, 27, 27, 30, 26, 26, 26, 26, 12, 10, 10, 10, 9, 9, 8, 6, 12, 12, 11, 12, 12, 9, 7, 8, 10, 10, 10, 9, 8, 8, 7, 6, 11, 11, 8, 8, 8, 6, 8, 6, 10, 12, 9, 9, 9, 8, 6, 5, 10, 12, 9, 12, 9, 11, 6, 5, 26, 10, 9, 9, 11, 11, 7, 6, 26, 26, 10, 12, 11, 12, 7, 8, 8, 5, 6, 5, 5, 14, 15, 15, 8, 8, 3, 3, 5, 3, 15, 15, 5, 8, 6, 3, 3, 3, 14, 14, 5, 5, 5, 5, 3, 14, 3, 14, 5, 5, 3, 5, 5, 14, 14, 3, 5, 5, 3, 14, 5, 5, 5, 3, 5, 5, 3, 14, 14, 5, 3, 14, 5, 5, 3, 3, 14, 3, 14, 14, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 14, 16, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 3, 3, 14, 14, 14, 14, 14, 14, 14, 14, 3, 14, 3, 14, 14, 16, 16, 14, 3, 3, 3, 3, 3, 16, 16, 14, 5, 3, 3, 3, 3, 3, 3, 14, 14, 5, 3, 3, 3, 14, 14, 3, 5, 5, 5, 3, 5, 14, 14, 14, 3, 5, 3, 3, 3, 14, 3, 3, 3, 5, 5, 5, 8, 14, 3, 3, 3, 3, 3, 8, 7, 14, 14, 3, 3, 3, 3, 5, 7, 14, 14, 14, 3, 3, 5, 8, 5, 14, 3, 14, 14, 14, 3, 8, 5, 3, 3, 3, 3, 14, 14, 5, 5, 7, 8, 8, 8, 6, 4, 3, 6, 7, 8, 6, 6, 7, 7, 7, 6, 7, 7, 7, 8, 8, 8, 8, 8, 8, 7, 4, 4, 4, 4, 5, 5, 3, 3, 4, 3, 3, 5, 6, 5, 3, 3, 3, 3, 3, 3, 5, 6, 3, 14, 24, 3, 3, 3, 3, 6, 14, 16, 14, 14, 3, 2, 3, 5, 5, 24, 3, 16, 16, 16, 16, 25, 5, 4, 24, 3, 16, 25, 25, 16, 5, 4, 4, 24, 24, 16, 25, 25, 5, 4, 4, 3, 24, 15, 25, 25, 5, 4, 3, 3, 24, 24, 15, 25, 5, 4, 4, 3, 24, 24, 14, 16, 8, 5, 4, 3, 24, 14, 15, 16, 6, 8, 4, 3, 24, 14, 16, 16, 25, 16, 17, 18, 18, 19, 20, 20, 16, 17, 17, 18, 18, 19, 20, 20, 18, 17, 17, 18, 19, 20, 20, 22, 17, 18, 19, 19, 19, 20, 20, 22, 17, 17, 18, 19, 20, 20, 22, 22, 17, 18, 18, 20, 20, 20, 20, 22, 17, 18, 19, 19, 20, 20, 20, 22, 18, 17, 18, 19, 22, 22, 22, 22, 21, 22, 22, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 28, 1, 28, 1, 1, 1, 1, 1, 1, 1, 1, 28, 1, 1, 1, 1, 1, 1, 22, 1, 1, 28, 1, 28, 1, 1, 22, 1, 1, 1, 1, 28, 1, 22, 22, 22, 22, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 28, 28, 28, 1, 1, 1, 1, 1, 28, 1, 1, 22, 22, 22, 22, 22, 1, 22, 22, 22, 21, 21, 21, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 28, 1, 1, 28, 1, 1, 28, 1, 1, 1, 1, 1, 22, 22, 22, 1, 1, 28, 1, 22, 22, 21, 22, 20, 20, 22, 22, 21, 21, 20, 19, 19, 20, 21, 20, 20, 19, 19, 19, 18, 19, 20, 20, 19, 19, 18, 18, 18, 18, 23, 1, 1, 1, 1, 23, 23, 22, 28, 22, 1, 1, 1, 22, 21, 22, 22, 22, 22, 22, 21, 21, 20, 20, 1, 20, 20, 20, 19, 19, 19, 18, 20, 22, 19, 19, 19, 19, 18, 18, 19, 19, 19, 19, 18, 19, 18, 18, 19, 18, 18, 18, 18, 18, 18, 18, 18, 17, 17, 17, 18, 18, 18, 18, 22, 22, 1, 1, 23, 1, 22, 1, 21, 21, 20, 22, 22, 22, 1, 1, 20, 19, 19, 19, 22, 21, 21, 22, 19, 18, 19, 19, 19, 20, 20, 19, 18, 19, 18, 18, 18, 18, 18, 17, 18, 18, 19, 18, 18, 18, 18, 17, 19, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 17, 17, 1, 1, 22, 22, 22, 22, 22, 22, 22, 22, 22, 21, 22, 22, 22, 22, 21, 22, 1, 1, 1, 22, 22, 22, 20, 20, 21, 22, 1, 1, 22, 22, 17, 17, 18, 20, 22, 1, 1, 22, 17, 17, 17, 18, 20, 21, 22, 1, 17, 17, 17, 17, 18, 19, 20, 22, 17, 17, 17, 17, 17, 17, 18, 20, 22, 22, 22, 1, 23, 1, 23, 1, 22, 22, 22, 22, 22, 22, 23, 23, 22, 22, 22, 22, 22, 21, 23, 1, 22, 22, 22, 22, 21, 22, 22, 22, 22, 22, 22, 1, 22, 22, 21, 21, 22, 22, 22, 1, 21, 22, 21, 21, 22, 22, 21, 22, 1, 22, 22, 22, 22, 22, 22, 22, 20, 20, 22, 22, 1, 1, 22, 22, 22, 22, 1, 1, 23, 23, 1, 22, 22, 22, 22, 1, 1, 1, 22, 22, 22, 22, 22, 1, 1, 22, 22, 22, 22, 22, 22, 1, 22, 1, 1, 1, 22, 22, 1, 1, 21, 22, 22, 1, 1, 1, 1, 1, 22, 21, 22, 22, 1, 1, 1, 1, 22, 22, 21, 22, 1, 23, 23, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 23, 23, 23, 23, 23, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 23, 1, 1, 22, 22, 22, 22, 1, 1, 1, 22, 22, 22, 21, 20, 23, 22, 1, 22, 22, 22, 21, 20, 1, 1, 1, 1, 1, 22, 22, 20, 1, 1, 1, 23, 1, 1, 22, 22, 1, 23, 23, 1, 1, 1, 22, 22, 23, 23, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 22, 1, 1, 22, 22, 22, 1, 1, 1, 1, 1, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 22, 20, 20, 20, 20, 20, 20, 20, 22, 22, 20, 20, 20, 20, 20, 19, 22, 22, 20, 20, 20, 20, 19, 17, 22, 22, 20, 20, 20, 19, 19, 17, 22, 22, 20, 20, 19, 17, 17, 17, 20, 20, 20, 20, 20, 20, 20, 20, 19, 20, 20, 20, 19, 19, 19, 19, 20, 20, 20, 20, 20, 19, 20, 19, 20, 19, 20, 20, 19, 19, 19, 20, 19, 19, 19, 19, 19, 19, 19, 19, 17, 17, 19, 17, 19, 19, 19, 19, 17, 17, 17, 17, 17, 17, 19, 17, 17, 17, 17, 17, 19, 17, 17, 17, 19, 19, 19, 19, 20, 19, 19, 19, 20, 19, 19, 18, 18, 19, 19, 19, 20, 19, 19, 19, 19, 18, 18, 19, 20, 19, 19, 18, 18, 18, 18, 19, 19, 19, 18, 18, 18, 18, 19, 18, 19, 19, 18, 17, 17, 18, 18, 18, 19, 19, 18, 18, 17, 18, 18, 18, 19, 19, 18, 18, 17, 18, 18, 18, 19, 19, 19, 19, 19, 19, 18, 19, 18, 19, 19, 19, 19, 18, 18, 18, 18, 18, 19, 19, 19, 18, 18, 18, 19, 19, 19, 19, 19, 19, 18, 18, 19, 19, 19, 19, 19, 19, 19, 18, 18, 18, 18, 18, 18, 19, 19, 18, 18, 19, 18, 19, 18, 18, 17, 17, 18, 18, 18, 18, 18, 17, 17, 17, 18, 17, 17, 16, 16, 16, 14, 14, 17, 17, 16, 16, 16, 14, 3, 3, 17, 17, 17, 16, 14, 14, 3, 3, 18, 18, 16, 14, 3, 3, 14, 14, 17, 17, 16, 16, 14, 3, 3, 14, 18, 17, 16, 16, 14, 14, 3, 5, 16, 17, 16, 16, 16, 14, 3, 3, 16, 16, 16, 16, 16, 15, 14, 3, 5, 6, 5, 6, 8, 8, 8, 8, 5, 6, 5, 8, 8, 8, 6, 6, 3, 5, 6, 6, 8, 8, 8, 8, 3, 5, 8, 6, 6, 8, 8, 8, 3, 5, 8, 8, 5, 8, 8, 8, 3, 5, 6, 8, 5, 6, 8, 8, 5, 5, 5, 8, 7, 5, 6, 8, 5, 6, 5, 6, 7, 7, 5, 8, 8, 8, 8, 7, 11, 9, 9, 9, 8, 8, 8, 7, 9, 9, 10, 9, 8, 8, 9, 9, 11, 9, 10, 9, 8, 7, 9, 9, 12, 9, 9, 9, 7, 9, 12, 12, 12, 9, 9, 9, 7, 10, 12, 12, 12, 9, 9, 9, 7, 10, 12, 10, 12, 9, 9, 9, 9, 9, 12, 10, 12, 9, 9, 9, 9, 9, 9, 9, 7, 7, 8, 7, 9, 11, 7, 9, 9, 9, 11, 7, 9, 11, 9, 7, 9, 9, 7, 11, 9, 9, 9, 9, 9, 9, 11, 11, 9, 9, 9, 9, 9, 9, 11, 11, 9, 9, 9, 9, 9, 7, 9, 11, 9, 9, 9, 9, 9, 9, 7, 11, 9, 9, 9, 9, 9, 9, 7, 11, 7, 6, 6, 6, 6, 5, 4, 4, 7, 8, 6, 8, 8, 5, 4, 3, 11, 8, 8, 6, 8, 5, 4, 3, 11, 11, 8, 6, 6, 5, 3, 3, 11, 11, 8, 6, 5, 3, 3, 3, 11, 11, 7, 8, 6, 5, 3, 3, 11, 11, 6, 6, 6, 5, 4, 3, 9, 9, 8, 6, 6, 5, 4, 3, 6, 5, 6, 6, 6, 11, 11, 9, 6, 8, 8, 6, 8, 8, 11, 11, 7, 7, 7, 8, 8, 8, 11, 11, 9, 9, 7, 11, 7, 11, 11, 11, 9, 9, 9, 9, 9, 11, 9, 9, 10, 10, 9, 9, 9, 9, 9, 9, 9, 10, 31, 9, 9, 9, 9, 9, 10, 10, 31, 31, 31, 9, 9, 29, 11, 12, 12, 12, 10, 10, 10, 10, 9, 12, 12, 12, 10, 10, 10, 10, 9, 12, 12, 12, 10, 10, 10, 10, 9, 12, 12, 12, 10, 10, 10, 10, 9, 9, 12, 12, 10, 10, 10, 10, 29, 29, 29, 29, 10, 10, 29, 10, 29, 9, 29, 12, 29, 29, 29, 29, 9, 29, 29, 29, 29, 10, 29, 29, 10, 10, 10, 10, 10, 29, 10, 27, 10, 10, 29, 10, 29, 29, 29, 27, 10, 29, 10, 29, 10, 29, 29, 29, 10, 10, 10, 10, 10, 29, 29, 29, 29, 29, 29, 9, 10, 10, 29, 29, 10, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 30, 29, 29, 29, 29, 29, 29, 29, 29, 30, 27, 27, 27, 26, 30, 26, 30, 26, 27, 27, 27, 26, 26, 30, 26, 26, 27, 27, 27, 30, 26, 26, 26, 26, 27, 30, 27, 26, 26, 30, 26, 26, 27, 27, 27, 30, 30, 26, 26, 26, 27, 30, 27, 30, 30, 26, 26, 26, 27, 30, 30, 30, 30, 26, 26, 26, 30, 30, 30, 30, 27, 26, 26, 26, 26, 26, 10, 10, 12, 11, 7, 8, 26, 26, 26, 10, 12, 12, 7, 7, 26, 10, 10, 10, 12, 12, 9, 8, 10, 10, 10, 10, 10, 12, 12, 9, 10, 10, 10, 8, 7, 8, 6, 5, 10, 10, 9, 7, 7, 8, 5, 6, 10, 10, 10, 10, 7, 5, 9, 7, 10, 10, 11, 11, 6, 5, 9, 9, 8, 5, 5, 5, 5, 14, 5, 3, 6, 5, 3, 5, 5, 3, 3, 3, 5, 5, 5, 5, 3, 3, 3, 3, 5, 5, 5, 8, 5, 6, 5, 5, 5, 7, 6, 6, 8, 5, 5, 8, 12, 11, 11, 7, 7, 5, 6, 6, 9, 8, 7, 7, 6, 8, 8, 8, 9, 6, 6, 5, 6, 7, 7, 7, 3, 3, 3, 14, 14, 6, 3, 3, 3, 3, 3, 3, 3, 3, 6, 3, 3, 3, 3, 3, 5, 3, 14, 5, 5, 3, 3, 3, 3, 3, 3, 5, 8, 6, 3, 3, 3, 3, 3, 3, 8, 8, 5, 3, 3, 3, 3, 3, 8, 6, 8, 3, 3, 3, 3, 3, 8, 7, 6, 6, 5, 3, 3, 3, 3, 3, 3, 3, 3, 14, 14, 3, 3, 3, 3, 3, 3, 14, 14, 14, 3, 3, 3, 5, 3, 3, 14, 14, 3, 5, 5, 5, 5, 5, 3, 3, 5, 3, 8, 5, 5, 5, 3, 3, 3, 5, 3, 3, 8, 8, 5, 5, 3, 5, 5, 3, 3, 5, 5, 4, 3, 3, 5, 5, 3, 5, 5, 5, 14, 16, 16, 14, 2, 2, 2, 3, 5, 16, 16, 16, 14, 14, 14, 14, 14, 16, 16, 16, 16, 16, 14, 14, 14, 3, 16, 16, 16, 16, 25, 25, 24, 24, 5, 16, 16, 25, 25, 25, 3, 24, 24, 14, 16, 16, 25, 25, 3, 24, 24, 5, 16, 25, 16, 25, 4, 3, 24, 3, 14, 25, 25, 25, 4, 4, 3, 24, 14, 15, 16, 17, 24, 24, 14, 15, 15, 16, 25, 18, 14, 16, 25, 25, 16, 25, 18, 18, 25, 17, 17, 17, 17, 17, 18, 19, 25, 17, 17, 17, 17, 19, 19, 20, 25, 17, 17, 19, 19, 20, 20, 20, 17, 17, 17, 19, 20, 20, 22, 22, 17, 17, 19, 20, 20, 20, 22, 22, 18, 19, 18, 20, 22, 22, 22, 1, 18, 19, 20, 19, 20, 20, 22, 1, 19, 20, 20, 22, 22, 22, 23, 1, 20, 20, 20, 22, 22, 1, 1, 1, 20, 20, 22, 22, 1, 1, 1, 1, 20, 22, 22, 1, 23, 1, 1, 1, 22, 22, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 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, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 1, 1, 1, 1, 1, 23, 22, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 23, 22, 1, 1, 1, 1, 1, 1, 1, 22, 20, 20, 1, 1, 1, 1, 23, 21, 19, 19, 1, 1, 1, 1, 22, 21, 22, 19, 1, 1, 1, 1, 23, 21, 20, 18, 1, 1, 1, 1, 1, 22, 20, 18, 1, 1, 1, 22, 22, 21, 20, 20, 22, 22, 22, 22, 1, 28, 28, 1, 22, 20, 21, 22, 1, 22, 1, 22, 20, 20, 22, 22, 22, 22, 22, 21, 19, 20, 22, 22, 22, 22, 22, 21, 19, 20, 21, 22, 1, 1, 22, 22, 20, 20, 20, 22, 22, 22, 22, 22, 19, 20, 20, 21, 21, 20, 20, 21, 20, 20, 20, 20, 20, 20, 20, 20, 1, 22, 22, 22, 21, 20, 21, 21, 22, 22, 21, 21, 20, 20, 19, 21, 21, 21, 20, 20, 21, 20, 19, 19, 20, 20, 20, 20, 21, 21, 20, 20, 21, 20, 20, 21, 22, 22, 21, 20, 22, 21, 21, 22, 22, 28, 22, 21, 22, 20, 21, 22, 22, 1, 1, 21, 20, 20, 20, 21, 22, 22, 22, 22, 20, 19, 19, 18, 18, 17, 17, 17, 20, 19, 18, 18, 18, 17, 17, 16, 20, 19, 19, 18, 19, 17, 16, 16, 19, 19, 18, 19, 18, 17, 17, 16, 19, 19, 20, 19, 19, 17, 16, 16, 19, 19, 20, 19, 19, 19, 17, 16, 20, 19, 19, 19, 19, 17, 17, 16, 20, 19, 19, 19, 19, 17, 17, 16, 17, 17, 17, 17, 18, 18, 18, 18, 17, 17, 16, 17, 17, 17, 18, 17, 16, 16, 16, 17, 17, 17, 17, 17, 16, 16, 16, 16, 17, 17, 17, 17, 16, 16, 16, 16, 16, 16, 16, 17, 15, 15, 16, 16, 16, 16, 16, 16, 15, 15, 16, 16, 16, 16, 16, 16, 15, 15, 15, 15, 15, 16, 16, 16, 18, 18, 18, 18, 18, 17, 17, 18, 18, 18, 18, 18, 18, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 17, 17, 17, 17, 17, 18, 17, 18, 17, 16, 17, 17, 17, 17, 17, 18, 18, 16, 16, 17, 17, 17, 18, 17, 18, 16, 16, 17, 17, 17, 18, 18, 18, 16, 17, 16, 17, 17, 18, 18, 18, 17, 17, 17, 17, 17, 18, 17, 18, 17, 17, 17, 17, 17, 18, 17, 19, 17, 17, 17, 18, 17, 17, 17, 17, 17, 17, 18, 17, 18, 18, 17, 17, 18, 18, 17, 18, 18, 18, 18, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 19, 18, 18, 18, 19, 18, 18, 19, 19, 19, 18, 19, 19, 18, 20, 22, 20, 20, 18, 18, 19, 22, 20, 20, 18, 18, 18, 18, 18, 19, 19, 18, 17, 17, 18, 18, 18, 18, 17, 17, 17, 17, 17, 17, 17, 18, 17, 17, 17, 17, 17, 17, 17, 18, 17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 17, 18, 17, 18, 18, 18, 18, 17, 18, 18, 18, 18, 18, 1, 22, 22, 22, 1, 1, 23, 23, 22, 22, 22, 21, 22, 22, 1, 1, 19, 21, 1, 22, 21, 22, 21, 22, 18, 19, 20, 22, 22, 20, 20, 21, 18, 19, 19, 21, 20, 22, 20, 20, 18, 19, 19, 19, 21, 20, 20, 20, 19, 18, 19, 19, 19, 20, 21, 20, 18, 18, 18, 19, 19, 20, 21, 21, 23, 1, 22, 22, 22, 22, 22, 22, 22, 1, 22, 22, 22, 22, 22, 22, 21, 22, 22, 22, 22, 22, 22, 22, 21, 21, 22, 1, 1, 22, 21, 21, 20, 22, 22, 22, 1, 22, 21, 21, 20, 20, 22, 22, 22, 1, 22, 20, 20, 20, 23, 1, 22, 1, 22, 21, 22, 22, 23, 1, 1, 23, 22, 22, 22, 22, 22, 22, 1, 1, 22, 22, 21, 21, 22, 22, 22, 22, 22, 20, 21, 20, 21, 22, 21, 20, 20, 19, 20, 20, 20, 20, 20, 19, 19, 18, 20, 20, 20, 20, 19, 19, 18, 18, 20, 20, 19, 19, 19, 18, 18, 17, 20, 19, 19, 18, 18, 18, 17, 17, 19, 19, 18, 18, 18, 18, 17, 16, 22, 20, 20, 20, 19, 17, 17, 17, 20, 20, 19, 19, 18, 17, 25, 25, 19, 19, 18, 18, 18, 25, 25, 25, 18, 17, 17, 17, 16, 25, 16, 16, 17, 16, 16, 15, 16, 15, 16, 16, 16, 15, 15, 14, 14, 14, 15, 15, 16, 15, 14, 14, 14, 14, 14, 24, 15, 14, 14, 14, 14, 24, 24, 24, 17, 17, 17, 17, 17, 17, 17, 17, 25, 25, 25, 25, 25, 17, 17, 17, 16, 16, 25, 16, 25, 25, 17, 17, 16, 15, 14, 14, 16, 16, 16, 16, 15, 15, 14, 14, 14, 16, 16, 16, 15, 14, 14, 14, 14, 14, 16, 16, 14, 14, 14, 14, 14, 14, 16, 16, 24, 14, 14, 14, 14, 14, 16, 16, 17, 18, 17, 18, 17, 18, 18, 18, 19, 18, 17, 17, 17, 16, 17, 17, 19, 18, 17, 17, 17, 16, 16, 17, 17, 18, 18, 17, 17, 16, 16, 16, 17, 17, 18, 17, 17, 16, 16, 16, 17, 17, 17, 17, 17, 16, 16, 16, 17, 17, 17, 17, 17, 17, 16, 16, 16, 17, 17, 17, 18, 17, 17, 16, 18, 18, 18, 18, 17, 18, 17, 16, 17, 17, 17, 18, 18, 17, 17, 17, 17, 17, 17, 18, 18, 18, 17, 16, 17, 17, 18, 18, 18, 18, 17, 16, 16, 17, 17, 18, 18, 17, 17, 17, 16, 16, 18, 17, 17, 17, 16, 16, 16, 16, 17, 17, 17, 16, 16, 16, 16, 14, 16, 17, 16, 16, 16, 14, 16, 16, 16, 16, 16, 15, 14, 14, 16, 16, 16, 16, 16, 15, 14, 14, 16, 16, 16, 16, 16, 15, 14, 3, 16, 16, 14, 14, 14, 15, 14, 14, 16, 16, 14, 14, 15, 14, 14, 14, 16, 14, 14, 14, 14, 14, 14, 14, 14, 16, 14, 14, 14, 14, 14, 3, 14, 14, 16, 15, 15, 3, 14, 5, 5, 5, 6, 8, 8, 8, 8, 5, 3, 5, 6, 8, 8, 6, 5, 6, 3, 8, 8, 6, 5, 8, 8, 6, 5, 8, 6, 5, 6, 8, 8, 9, 5, 6, 8, 6, 7, 7, 7, 9, 3, 8, 5, 7, 7, 7, 7, 9, 5, 5, 8, 7, 9, 7, 9, 9, 6, 3, 6, 7, 9, 9, 9, 9, 7, 10, 12, 10, 12, 9, 9, 9, 9, 9, 12, 10, 12, 9, 10, 10, 9, 10, 12, 10, 10, 10, 10, 10, 8, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 12, 10, 26, 10, 10, 10, 10, 10, 10, 26, 26, 26, 10, 10, 10, 10, 10, 10, 26, 26, 9, 13, 10, 10, 10, 26, 26, 26, 10, 10, 10, 10, 10, 10, 9, 11, 9, 10, 10, 10, 10, 10, 10, 12, 10, 10, 29, 29, 10, 29, 29, 12, 10, 10, 29, 10, 29, 29, 29, 29, 10, 10, 29, 29, 29, 29, 29, 29, 27, 29, 29, 29, 29, 30, 29, 29, 27, 29, 29, 30, 30, 29, 29, 29, 30, 29, 30, 30, 29, 30, 32, 32, 9, 11, 8, 8, 6, 5, 5, 4, 9, 11, 8, 8, 7, 8, 8, 5, 9, 11, 7, 7, 7, 7, 7, 7, 29, 29, 9, 7, 9, 9, 9, 7, 29, 29, 29, 9, 9, 9, 9, 9, 29, 29, 29, 31, 10, 9, 9, 9, 29, 29, 29, 31, 10, 10, 10, 10, 29, 29, 29, 31, 10, 10, 10, 9, 33, 10, 31, 31, 31, 13, 29, 29, 10, 10, 31, 31, 31, 13, 29, 29, 10, 10, 31, 10, 31, 13, 29, 29, 10, 10, 31, 10, 31, 13, 29, 32, 10, 10, 31, 10, 31, 33, 29, 29, 10, 10, 31, 10, 33, 13, 33, 32, 10, 10, 31, 10, 31, 13, 29, 29, 10, 10, 9, 10, 31, 13, 29, 29, 29, 29, 29, 29, 29, 29, 10, 29, 29, 32, 32, 32, 29, 29, 29, 29, 32, 32, 32, 32, 32, 32, 29, 32, 29, 32, 32, 32, 32, 32, 32, 32, 29, 32, 32, 32, 32, 32, 32, 32, 29, 32, 32, 32, 32, 32, 32, 32, 29, 29, 32, 32, 32, 32, 32, 32, 33, 29, 32, 32, 32, 32, 32, 32, 29, 29, 29, 29, 29, 30, 30, 30, 29, 29, 30, 30, 30, 29, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 27, 26, 26, 26, 30, 30, 30, 30, 27, 26, 26, 10, 30, 30, 30, 30, 27, 26, 26, 26, 30, 30, 30, 30, 27, 26, 26, 26, 30, 30, 30, 30, 30, 26, 26, 26, 30, 30, 30, 30, 30, 30, 26, 26, 30, 30, 30, 30, 30, 30, 30, 26, 30, 30, 30, 30, 30, 30, 30, 30, 10, 10, 9, 8, 7, 11, 9, 9, 10, 10, 10, 7, 11, 9, 12, 12, 10, 10, 9, 11, 12, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 26, 26, 26, 10, 10, 10, 26, 26, 26, 10, 26, 26, 26, 10, 26, 26, 26, 26, 26, 10, 26, 26, 26, 34, 26, 26, 26, 26, 10, 26, 26, 26, 26, 11, 7, 6, 8, 11, 11, 9, 11, 12, 8, 12, 9, 9, 9, 10, 10, 12, 11, 12, 9, 10, 10, 10, 10, 10, 12, 10, 10, 10, 10, 26, 26, 26, 10, 10, 10, 10, 26, 10, 26, 26, 10, 10, 26, 10, 26, 26, 26, 10, 26, 26, 10, 26, 10, 26, 10, 26, 26, 26, 10, 26, 26, 10, 10, 7, 8, 7, 6, 6, 5, 3, 3, 11, 11, 6, 8, 8, 5, 5, 5, 10, 11, 11, 6, 8, 8, 8, 7, 10, 10, 11, 6, 11, 7, 7, 9, 10, 26, 10, 8, 7, 11, 11, 9, 26, 9, 9, 6, 7, 9, 9, 10, 10, 9, 11, 11, 11, 9, 10, 10, 10, 11, 6, 7, 9, 9, 10, 10, 3, 3, 3, 5, 5, 5, 5, 4, 5, 5, 5, 3, 5, 8, 5, 5, 7, 8, 8, 5, 3, 5, 5, 4, 8, 5, 5, 5, 5, 3, 24, 24, 7, 8, 5, 3, 3, 3, 24, 24, 9, 7, 8, 5, 5, 3, 24, 14, 10, 8, 5, 5, 5, 5, 14, 14, 10, 9, 8, 5, 5, 3, 3, 14, 6, 4, 2, 2, 3, 25, 25, 25, 4, 3, 3, 2, 2, 16, 16, 25, 5, 4, 3, 3, 2, 14, 25, 17, 24, 4, 4, 3, 3, 14, 25, 25, 14, 2, 3, 3, 3, 14, 25, 25, 14, 14, 14, 14, 14, 16, 16, 16, 14, 14, 14, 14, 16, 14, 15, 16, 16, 16, 14, 14, 14, 14, 15, 15, 17, 19, 19, 20, 20, 22, 22, 1, 17, 17, 19, 20, 20, 22, 22, 1, 17, 17, 19, 20, 20, 22, 22, 1, 25, 17, 19, 19, 20, 22, 22, 1, 25, 17, 17, 19, 20, 22, 22, 1, 25, 25, 17, 17, 20, 20, 22, 1, 16, 25, 17, 17, 19, 20, 20, 22, 16, 25, 25, 17, 18, 19, 20, 22, 1, 23, 1, 1, 23, 1, 1, 1, 23, 1, 23, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 23, 1, 1, 23, 23, 1, 1, 23, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 22, 23, 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, 21, 21, 20, 19, 19, 1, 22, 1, 21, 21, 20, 20, 18, 1, 1, 22, 20, 20, 20, 19, 19, 22, 22, 21, 22, 21, 20, 18, 18, 22, 21, 22, 22, 22, 21, 20, 18, 1, 1, 22, 22, 22, 22, 21, 20, 1, 1, 1, 22, 22, 22, 22, 21, 1, 1, 23, 1, 22, 22, 22, 22, 20, 19, 20, 20, 20, 20, 20, 20, 18, 19, 19, 20, 20, 20, 19, 20, 18, 18, 19, 20, 20, 19, 19, 19, 18, 18, 19, 20, 20, 19, 18, 18, 18, 19, 19, 20, 19, 19, 19, 19, 18, 18, 19, 19, 20, 19, 18, 18, 20, 18, 18, 19, 19, 19, 19, 19, 21, 22, 21, 20, 19, 19, 18, 19, 21, 21, 20, 20, 21, 21, 21, 20, 20, 20, 20, 20, 20, 20, 21, 21, 19, 19, 19, 19, 19, 19, 21, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 17, 19, 19, 19, 19, 19, 19, 17, 17, 17, 17, 19, 19, 19, 17, 17, 17, 17, 17, 20, 19, 19, 19, 17, 17, 25, 25, 19, 19, 19, 19, 17, 25, 25, 16, 19, 19, 19, 17, 25, 17, 25, 16, 19, 17, 17, 17, 25, 16, 16, 16, 17, 17, 17, 25, 16, 16, 16, 16, 17, 17, 25, 16, 16, 16, 16, 16, 17, 17, 25, 16, 16, 16, 16, 16, 25, 25, 16, 16, 16, 16, 16, 16, 16, 16, 16, 15, 15, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 25, 16, 16, 16, 25, 16, 16, 16, 16, 16, 16, 17, 16, 17, 19, 18, 19, 16, 16, 16, 17, 17, 17, 19, 19, 16, 25, 17, 17, 19, 19, 19, 19, 25, 25, 25, 19, 17, 19, 19, 19, 25, 25, 17, 17, 19, 19, 19, 19, 25, 25, 17, 17, 19, 19, 19, 19, 16, 17, 17, 17, 17, 19, 19, 19, 25, 17, 17, 19, 17, 17, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 18, 19, 19, 19, 19, 19, 19, 19, 18, 19, 19, 19, 19, 19, 19, 19, 18, 19, 19, 19, 19, 19, 19, 18, 18, 19, 19, 19, 19, 19, 19, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 19, 18, 18, 18, 18, 18, 19, 18, 19, 19, 18, 18, 18, 18, 18, 19, 18, 18, 19, 19, 19, 18, 18, 18, 18, 18, 19, 19, 19, 19, 19, 19, 19, 19, 19, 18, 18, 19, 19, 18, 18, 18, 18, 18, 18, 18, 18, 18, 19, 18, 18, 18, 18, 18, 18, 18, 19, 18, 19, 19, 19, 20, 21, 20, 19, 18, 18, 19, 19, 20, 22, 20, 18, 19, 18, 19, 19, 20, 22, 1, 19, 18, 19, 19, 20, 20, 19, 1, 19, 18, 18, 18, 19, 21, 21, 1, 18, 18, 18, 18, 18, 19, 22, 20, 18, 18, 18, 18, 17, 17, 19, 21, 18, 18, 18, 18, 17, 16, 16, 19, 1, 1, 1, 1, 23, 22, 22, 21, 1, 1, 1, 22, 22, 21, 21, 20, 23, 1, 22, 22, 21, 21, 20, 19, 1, 22, 20, 20, 20, 20, 19, 18, 21, 20, 19, 19, 18, 18, 19, 18, 20, 19, 19, 18, 18, 18, 18, 17, 20, 19, 18, 18, 18, 17, 17, 17, 20, 18, 18, 17, 17, 17, 17, 17, 20, 19, 18, 18, 18, 17, 16, 16, 19, 18, 18, 17, 17, 17, 16, 15, 18, 18, 17, 17, 16, 16, 16, 15, 17, 17, 16, 16, 16, 16, 14, 14, 17, 17, 16, 16, 16, 16, 14, 14, 17, 16, 17, 16, 16, 16, 14, 3, 17, 17, 17, 16, 16, 16, 14, 14, 16, 16, 16, 16, 17, 16, 14, 14, 15, 14, 14, 14, 3, 3, 24, 24, 15, 14, 14, 14, 3, 3, 3, 3, 14, 14, 3, 3, 3, 3, 3, 3, 14, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 14, 3, 3, 4, 4, 3, 3, 14, 14, 3, 4, 4, 3, 3, 3, 24, 24, 2, 2, 14, 14, 14, 16, 3, 3, 2, 2, 2, 14, 14, 14, 3, 3, 3, 3, 2, 24, 24, 24, 3, 3, 5, 3, 3, 3, 24, 24, 3, 4, 5, 4, 3, 3, 3, 3, 3, 5, 5, 5, 5, 4, 4, 4, 24, 3, 5, 5, 5, 5, 4, 4, 3, 5, 5, 5, 5, 6, 5, 4, 16, 16, 16, 17, 17, 17, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 14, 14, 14, 14, 14, 14, 14, 14, 24, 3, 3, 3, 3, 3, 3, 14, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 8, 8, 8, 5, 5, 5, 8, 8, 8, 7, 7, 16, 14, 14, 16, 16, 16, 14, 14, 16, 16, 16, 16, 16, 16, 14, 14, 16, 14, 16, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 3, 3, 3, 14, 14, 14, 14, 14, 5, 5, 3, 3, 3, 3, 3, 3, 8, 8, 6, 6, 5, 3, 3, 3, 7, 7, 8, 8, 6, 6, 6, 5, 14, 14, 14, 15, 15, 14, 5, 5, 14, 14, 14, 14, 14, 14, 5, 8, 3, 3, 14, 14, 14, 3, 6, 8, 3, 3, 3, 3, 3, 8, 8, 8, 3, 3, 5, 5, 5, 8, 8, 8, 3, 3, 5, 6, 6, 6, 8, 8, 3, 3, 5, 6, 8, 8, 7, 7, 3, 3, 5, 6, 5, 8, 8, 6, 5, 5, 5, 8, 9, 9, 9, 10, 3, 5, 3, 5, 8, 9, 10, 10, 8, 2, 5, 5, 5, 7, 9, 10, 8, 8, 3, 5, 5, 5, 9, 10, 8, 2, 3, 3, 5, 8, 9, 13, 8, 6, 3, 6, 8, 8, 10, 13, 8, 5, 7, 10, 10, 10, 13, 10, 6, 6, 9, 10, 26, 13, 26, 26, 10, 13, 10, 10, 26, 26, 26, 26, 9, 10, 10, 26, 26, 26, 30, 30, 9, 13, 26, 26, 10, 34, 26, 30, 13, 13, 26, 26, 10, 26, 30, 30, 13, 26, 10, 13, 26, 34, 30, 26, 26, 10, 10, 13, 26, 34, 30, 26, 13, 13, 10, 26, 26, 26, 30, 30, 13, 13, 10, 26, 26, 26, 30, 26, 27, 30, 29, 30, 30, 29, 29, 29, 30, 30, 29, 30, 30, 30, 32, 29, 30, 30, 30, 29, 29, 30, 29, 32, 27, 30, 29, 30, 29, 30, 32, 29, 30, 27, 30, 29, 30, 30, 29, 29, 30, 27, 30, 30, 29, 30, 29, 29, 27, 30, 27, 29, 30, 29, 29, 32, 27, 27, 27, 30, 29, 29, 29, 29, 32, 29, 29, 31, 10, 10, 10, 10, 29, 32, 29, 31, 10, 10, 10, 26, 32, 29, 29, 33, 33, 33, 26, 33, 29, 29, 33, 33, 10, 10, 10, 10, 32, 29, 29, 31, 10, 10, 26, 10, 29, 32, 29, 31, 10, 10, 10, 10, 29, 29, 29, 31, 10, 10, 10, 10, 29, 32, 29, 31, 10, 10, 10, 10, 10, 10, 9, 10, 31, 13, 29, 29, 10, 10, 10, 10, 31, 13, 29, 32, 10, 10, 9, 10, 31, 13, 29, 32, 10, 9, 9, 9, 31, 13, 33, 29, 9, 9, 9, 9, 9, 9, 29, 29, 7, 7, 7, 7, 9, 9, 29, 29, 6, 8, 7, 7, 7, 9, 29, 29, 6, 7, 7, 8, 7, 7, 9, 29, 29, 32, 32, 32, 32, 32, 32, 32, 33, 32, 32, 32, 32, 32, 32, 32, 29, 32, 32, 32, 32, 32, 32, 32, 29, 32, 32, 32, 32, 32, 32, 32, 33, 32, 32, 32, 32, 32, 32, 32, 33, 32, 32, 32, 32, 32, 32, 32, 29, 29, 32, 29, 32, 32, 32, 32, 33, 29, 29, 29, 29, 29, 29, 32, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 29, 29, 30, 32, 30, 30, 30, 30, 29, 29, 29, 32, 30, 30, 30, 29, 29, 29, 29, 32, 30, 30, 30, 29, 29, 29, 29, 32, 30, 29, 29, 29, 29, 29, 10, 30, 30, 30, 30, 30, 30, 30, 26, 30, 30, 30, 30, 30, 30, 30, 30, 30, 27, 30, 30, 30, 30, 26, 26, 29, 30, 29, 27, 30, 30, 26, 26, 29, 30, 30, 30, 27, 26, 30, 30, 30, 29, 29, 27, 30, 26, 26, 30, 29, 29, 29, 27, 27, 27, 26, 27, 10, 29, 29, 10, 10, 27, 26, 30, 30, 26, 26, 26, 26, 26, 34, 26, 26, 30, 26, 26, 26, 34, 30, 34, 26, 30, 30, 30, 34, 26, 30, 34, 30, 30, 26, 30, 34, 34, 30, 34, 26, 30, 30, 30, 34, 34, 30, 34, 30, 26, 30, 30, 34, 30, 30, 34, 30, 30, 30, 30, 34, 30, 30, 34, 30, 30, 30, 30, 34, 30, 30, 34, 26, 26, 26, 26, 26, 26, 10, 10, 34, 34, 34, 26, 26, 26, 10, 10, 26, 34, 34, 34, 26, 26, 10, 10, 34, 34, 34, 26, 26, 26, 26, 10, 34, 34, 34, 26, 34, 26, 26, 26, 34, 34, 26, 34, 26, 30, 26, 26, 34, 34, 34, 34, 26, 30, 26, 26, 34, 34, 26, 34, 26, 30, 26, 30, 9, 11, 11, 9, 9, 10, 9, 10, 9, 9, 9, 9, 10, 9, 10, 9, 9, 9, 10, 10, 9, 9, 9, 9, 10, 9, 11, 26, 10, 10, 9, 9, 10, 9, 9, 10, 10, 9, 9, 9, 26, 10, 10, 10, 27, 10, 9, 9, 26, 26, 10, 9, 10, 27, 9, 9, 26, 26, 26, 9, 9, 27, 9, 9, 10, 10, 9, 5, 5, 3, 24, 24, 10, 10, 9, 9, 8, 3, 24, 24, 9, 10, 10, 9, 8, 5, 24, 24, 10, 10, 10, 10, 9, 6, 5, 3, 9, 10, 9, 9, 9, 7, 7, 6, 9, 9, 10, 9, 9, 9, 7, 8, 9, 9, 10, 9, 9, 9, 9, 7, 9, 10, 9, 10, 9, 7, 7, 9, 16, 16, 14, 2, 14, 14, 14, 15, 2, 14, 14, 2, 3, 24, 14, 15, 2, 2, 2, 3, 3, 3, 24, 14, 4, 4, 3, 3, 3, 24, 14, 14, 5, 5, 5, 3, 3, 24, 14, 14, 6, 5, 5, 4, 3, 24, 14, 14, 8, 6, 5, 4, 3, 24, 24, 14, 7, 8, 6, 4, 4, 24, 24, 14, 16, 25, 25, 17, 17, 19, 20, 20, 16, 16, 16, 17, 17, 18, 19, 20, 15, 16, 25, 16, 17, 18, 19, 19, 15, 15, 16, 16, 16, 17, 18, 19, 15, 15, 16, 16, 17, 16, 17, 18, 14, 15, 16, 16, 16, 16, 17, 17, 14, 15, 16, 16, 16, 16, 16, 17, 14, 15, 17, 16, 16, 16, 16, 17, 22, 22, 22, 22, 22, 1, 23, 1, 20, 20, 22, 22, 22, 1, 23, 1, 20, 20, 22, 22, 22, 1, 23, 1, 19, 20, 21, 22, 22, 1, 1, 23, 19, 20, 20, 21, 22, 1, 1, 1, 18, 19, 20, 21, 22, 1, 23, 1, 17, 18, 20, 20, 22, 1, 1, 1, 17, 18, 19, 20, 21, 22, 23, 1, 1, 1, 1, 22, 20, 19, 19, 19, 1, 1, 1, 1, 1, 21, 19, 19, 1, 1, 1, 1, 28, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 20, 1, 1, 1, 1, 1, 1, 22, 21, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 28, 1, 22, 22, 19, 19, 19, 19, 17, 17, 17, 17, 20, 20, 19, 19, 17, 17, 25, 25, 20, 20, 20, 20, 19, 17, 25, 17, 20, 19, 19, 20, 21, 19, 17, 17, 20, 20, 20, 20, 19, 21, 21, 20, 20, 20, 20, 21, 21, 19, 20, 20, 21, 20, 20, 21, 21, 19, 19, 19, 22, 21, 20, 21, 21, 21, 20, 19, 25, 25, 16, 16, 16, 16, 16, 16, 17, 25, 16, 16, 16, 16, 16, 16, 17, 17, 16, 16, 16, 16, 16, 16, 17, 17, 25, 16, 16, 16, 25, 16, 20, 20, 17, 17, 25, 16, 25, 16, 20, 19, 19, 17, 25, 25, 16, 25, 19, 19, 19, 20, 25, 17, 25, 25, 19, 19, 19, 17, 20, 25, 17, 25, 16, 16, 16, 16, 16, 25, 25, 25, 16, 16, 25, 16, 16, 16, 25, 25, 16, 25, 25, 16, 16, 16, 16, 25, 16, 16, 16, 16, 16, 16, 16, 25, 16, 16, 16, 16, 16, 16, 16, 25, 25, 16, 16, 16, 16, 25, 25, 25, 25, 16, 16, 16, 16, 16, 17, 17, 25, 16, 16, 16, 16, 25, 17, 17, 25, 17, 17, 17, 17, 17, 17, 17, 17, 17, 19, 17, 25, 17, 17, 17, 25, 25, 17, 17, 25, 25, 17, 17, 25, 17, 17, 17, 17, 17, 25, 17, 17, 25, 25, 17, 17, 25, 17, 17, 17, 17, 17, 17, 25, 17, 17, 25, 17, 19, 19, 17, 17, 25, 17, 17, 17, 19, 17, 17, 25, 17, 17, 17, 19, 17, 17, 19, 19, 19, 18, 18, 17, 17, 17, 19, 17, 18, 18, 18, 17, 25, 17, 17, 19, 18, 18, 18, 17, 17, 16, 17, 17, 17, 18, 18, 25, 17, 17, 17, 17, 17, 18, 18, 17, 17, 17, 17, 17, 17, 17, 18, 25, 16, 17, 16, 17, 16, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 19, 18, 18, 18, 18, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 18, 18, 18, 18, 18, 17, 18, 19, 19, 18, 18, 18, 18, 18, 18, 18, 19, 18, 18, 18, 17, 18, 18, 18, 18, 18, 18, 18, 17, 18, 18, 18, 18, 18, 18, 18, 17, 18, 18, 18, 18, 18, 17, 17, 18, 17, 18, 18, 18, 18, 17, 16, 17, 19, 17, 17, 17, 18, 18, 17, 16, 18, 17, 17, 17, 18, 18, 17, 16, 16, 17, 17, 17, 18, 17, 18, 17, 17, 16, 17, 17, 17, 18, 18, 17, 17, 18, 17, 17, 17, 18, 18, 18, 17, 17, 17, 17, 18, 18, 17, 18, 18, 21, 17, 17, 17, 17, 17, 17, 16, 20, 18, 17, 17, 17, 16, 17, 17, 18, 20, 17, 16, 16, 16, 17, 16, 17, 18, 20, 18, 16, 17, 16, 16, 18, 18, 19, 20, 18, 16, 16, 16, 16, 18, 18, 19, 18, 18, 17, 17, 17, 16, 18, 18, 19, 20, 19, 18, 16, 17, 16, 17, 18, 18, 19, 19, 16, 16, 16, 16, 16, 16, 15, 14, 16, 16, 16, 16, 16, 16, 14, 14, 16, 16, 16, 16, 16, 14, 14, 3, 16, 16, 16, 16, 16, 14, 14, 3, 16, 16, 16, 14, 14, 14, 14, 3, 17, 16, 16, 14, 14, 14, 14, 3, 18, 18, 18, 14, 14, 14, 3, 3, 19, 19, 19, 18, 14, 14, 14, 3, 14, 3, 3, 4, 4, 3, 3, 3, 3, 3, 4, 5, 4, 4, 3, 3, 3, 4, 5, 5, 5, 4, 4, 4, 3, 5, 5, 5, 5, 4, 4, 5, 3, 5, 5, 5, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 4, 6, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 4, 5, 5, 5, 3, 5, 4, 5, 5, 5, 5, 5, 3, 5, 4, 4, 5, 4, 5, 5, 5, 5, 4, 4, 4, 4, 5, 8, 5, 5, 4, 3, 4, 4, 5, 8, 5, 5, 4, 4, 4, 4, 5, 8, 6, 5, 5, 5, 4, 4, 5, 8, 6, 6, 6, 6, 5, 5, 5, 8, 5, 6, 6, 6, 6, 6, 5, 8, 5, 5, 5, 8, 7, 11, 11, 11, 8, 8, 8, 7, 11, 9, 11, 9, 8, 7, 7, 11, 9, 9, 9, 9, 7, 11, 11, 11, 9, 9, 9, 10, 7, 11, 11, 11, 9, 9, 9, 10, 7, 11, 11, 11, 10, 10, 10, 10, 7, 11, 11, 11, 11, 9, 9, 10, 8, 7, 11, 11, 11, 9, 9, 10, 11, 11, 7, 7, 8, 8, 8, 6, 9, 9, 11, 11, 7, 8, 8, 6, 9, 9, 9, 11, 7, 7, 8, 8, 10, 9, 9, 11, 11, 7, 7, 8, 9, 9, 11, 11, 11, 11, 9, 9, 10, 10, 10, 9, 9, 10, 9, 9, 9, 11, 11, 11, 9, 9, 11, 9, 10, 10, 10, 9, 9, 9, 10, 10, 3, 5, 5, 5, 12, 7, 12, 12, 6, 6, 7, 7, 11, 7, 12, 9, 8, 6, 12, 12, 11, 12, 7, 12, 9, 11, 11, 12, 12, 9, 12, 9, 11, 11, 11, 12, 12, 12, 12, 12, 11, 9, 12, 12, 11, 9, 12, 10, 11, 11, 12, 12, 12, 12, 12, 12, 9, 12, 12, 12, 12, 10, 10, 10, 9, 9, 10, 10, 26, 26, 26, 26, 12, 10, 10, 10, 13, 26, 34, 26, 12, 10, 10, 10, 13, 26, 26, 34, 10, 10, 10, 10, 13, 26, 34, 34, 10, 10, 10, 26, 13, 26, 26, 26, 10, 10, 10, 13, 26, 26, 26, 34, 10, 10, 10, 26, 26, 26, 26, 26, 10, 10, 26, 26, 26, 26, 34, 34, 26, 13, 26, 26, 26, 34, 26, 26, 26, 26, 26, 26, 26, 26, 30, 26, 34, 26, 34, 34, 26, 26, 26, 26, 26, 34, 34, 26, 34, 34, 26, 26, 34, 26, 34, 34, 34, 26, 26, 26, 34, 34, 34, 26, 34, 26, 26, 26, 34, 34, 26, 34, 26, 26, 26, 10, 34, 26, 34, 26, 26, 26, 26, 10, 26, 27, 27, 29, 29, 29, 29, 29, 26, 27, 27, 29, 29, 29, 29, 29, 10, 10, 10, 29, 29, 10, 10, 12, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 26, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 29, 29, 29, 31, 10, 10, 10, 10, 29, 29, 29, 31, 31, 10, 10, 10, 29, 29, 29, 9, 31, 10, 10, 10, 12, 9, 9, 9, 31, 9, 10, 9, 12, 29, 9, 9, 9, 9, 9, 7, 12, 11, 11, 7, 7, 7, 7, 7, 11, 11, 8, 8, 6, 6, 8, 8, 12, 11, 8, 6, 5, 5, 5, 5, 6, 7, 7, 7, 8, 7, 9, 29, 6, 8, 7, 8, 7, 7, 9, 9, 6, 5, 8, 7, 8, 8, 7, 9, 5, 5, 8, 8, 8, 8, 7, 9, 5, 8, 7, 8, 8, 8, 7, 9, 5, 5, 8, 6, 6, 8, 7, 9, 6, 8, 8, 5, 8, 8, 7, 11, 6, 8, 5, 6, 6, 8, 8, 8, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 12, 29, 29, 29, 29, 9, 9, 9, 12, 12, 10, 29, 9, 9, 11, 11, 12, 12, 10, 10, 9, 11, 11, 11, 11, 11, 10, 9, 7, 9, 11, 11, 8, 11, 9, 9, 7, 11, 11, 8, 8, 8, 9, 7, 7, 8, 7, 6, 8, 8, 7, 8, 29, 29, 29, 29, 10, 10, 10, 10, 29, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 9, 10, 10, 10, 9, 9, 7, 9, 9, 7, 7, 9, 7, 7, 7, 8, 8, 8, 7, 8, 8, 8, 6, 6, 5, 5, 8, 8, 6, 5, 5, 5, 4, 5, 6, 5, 5, 5, 3, 4, 4, 4, 10, 10, 29, 9, 10, 10, 26, 27, 9, 10, 10, 27, 9, 9, 10, 27, 9, 9, 10, 10, 10, 9, 9, 10, 8, 8, 11, 10, 10, 9, 9, 10, 8, 8, 7, 11, 11, 9, 9, 11, 5, 5, 8, 8, 8, 7, 11, 11, 5, 5, 5, 5, 5, 7, 11, 11, 5, 5, 5, 5, 5, 5, 8, 8, 30, 30, 30, 30, 34, 30, 30, 34, 10, 30, 26, 30, 26, 30, 26, 26, 10, 26, 26, 26, 26, 26, 26, 26, 10, 26, 26, 26, 26, 26, 26, 10, 9, 9, 10, 10, 10, 10, 10, 10, 9, 9, 9, 10, 9, 9, 10, 10, 11, 9, 9, 9, 9, 9, 12, 10, 11, 9, 9, 11, 11, 9, 10, 9, 34, 26, 26, 26, 26, 26, 30, 26, 26, 26, 26, 26, 26, 26, 26, 30, 26, 26, 26, 26, 26, 26, 26, 26, 26, 10, 26, 26, 26, 26, 26, 26, 10, 10, 10, 10, 26, 26, 26, 26, 10, 26, 10, 10, 10, 26, 10, 26, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 9, 9, 9, 9, 26, 26, 26, 10, 9, 10, 27, 10, 26, 26, 26, 10, 10, 9, 10, 27, 26, 26, 26, 27, 10, 10, 9, 27, 26, 26, 27, 10, 27, 27, 10, 10, 26, 10, 27, 27, 10, 10, 10, 10, 26, 10, 10, 10, 27, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 10, 9, 10, 9, 9, 9, 9, 7, 7, 10, 10, 10, 9, 9, 9, 9, 7, 10, 9, 10, 9, 9, 9, 9, 9, 27, 10, 10, 9, 9, 9, 9, 9, 9, 29, 10, 9, 9, 7, 9, 7, 10, 10, 10, 9, 7, 7, 7, 7, 10, 8, 10, 9, 7, 7, 9, 9, 9, 9, 7, 10, 9, 9, 8, 6, 9, 7, 6, 5, 4, 3, 24, 14, 7, 8, 8, 6, 4, 24, 24, 14, 8, 8, 8, 6, 4, 3, 24, 14, 8, 8, 6, 6, 4, 3, 3, 14, 8, 6, 5, 6, 5, 4, 24, 14, 8, 6, 6, 6, 5, 4, 14, 14, 8, 8, 6, 6, 5, 4, 14, 14, 9, 7, 8, 6, 5, 4, 14, 14, 14, 15, 16, 17, 16, 16, 16, 16, 15, 15, 15, 16, 16, 16, 17, 16, 15, 15, 15, 17, 17, 17, 17, 16, 16, 15, 16, 17, 17, 17, 17, 17, 15, 16, 16, 17, 17, 18, 18, 18, 14, 16, 16, 17, 17, 18, 18, 18, 14, 15, 17, 17, 17, 18, 18, 18, 14, 15, 16, 17, 17, 18, 18, 18, 17, 18, 19, 20, 22, 22, 1, 1, 17, 17, 18, 20, 21, 22, 22, 1, 17, 18, 18, 20, 21, 22, 22, 1, 17, 18, 18, 20, 20, 22, 22, 1, 18, 18, 18, 20, 20, 22, 22, 22, 18, 18, 19, 20, 20, 22, 22, 22, 19, 19, 20, 20, 20, 21, 22, 22, 18, 19, 20, 21, 21, 22, 22, 22, 23, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 23, 1, 1, 1, 23, 1, 22, 20, 20, 20, 20, 1, 23, 22, 19, 18, 19, 19, 19, 22, 1, 20, 19, 19, 18, 18, 18, 22, 22, 20, 20, 18, 18, 17, 18, 21, 21, 20, 19, 18, 18, 18, 18, 21, 21, 22, 18, 18, 18, 18, 18, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 21, 21, 21, 22, 1, 1, 1, 1, 20, 19, 20, 21, 22, 1, 1, 28, 19, 19, 20, 20, 20, 21, 22, 28, 19, 21, 20, 20, 20, 20, 21, 22, 19, 19, 20, 20, 20, 19, 20, 21, 19, 19, 20, 20, 20, 20, 19, 19, 1, 1, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 22, 22, 22, 22, 1, 1, 1, 28, 1, 1, 1, 1, 1, 1, 1, 28, 1, 1, 1, 22, 28, 1, 28, 28, 28, 1, 22, 22, 1, 1, 28, 1, 1, 1, 22, 22, 21, 22, 28, 1, 22, 22, 22, 22, 21, 21, 28, 1, 1, 22, 1, 22, 22, 22, 20, 21, 21, 21, 20, 20, 22, 22, 21, 21, 21, 20, 20, 20, 22, 22, 21, 21, 21, 20, 20, 20, 22, 22, 21, 21, 21, 20, 20, 20, 22, 22, 21, 21, 21, 20, 19, 19, 22, 22, 21, 21, 21, 19, 20, 19, 22, 21, 21, 21, 20, 19, 19, 19, 22, 21, 21, 21, 19, 19, 19, 19, 20, 19, 19, 19, 17, 19, 25, 17, 20, 19, 19, 19, 17, 19, 19, 25, 19, 19, 19, 19, 19, 19, 19, 17, 19, 19, 19, 19, 17, 20, 19, 17, 19, 19, 19, 19, 17, 20, 19, 19, 19, 19, 19, 19, 17, 17, 21, 19, 19, 19, 19, 19, 19, 17, 20, 19, 19, 19, 19, 17, 19, 19, 19, 20, 17, 25, 25, 25, 17, 25, 25, 17, 17, 25, 25, 17, 17, 17, 17, 17, 25, 25, 25, 17, 17, 19, 17, 17, 17, 17, 17, 17, 17, 19, 19, 19, 17, 19, 19, 19, 19, 17, 19, 19, 19, 19, 19, 19, 17, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 17, 17, 17, 17, 17, 17, 17, 19, 17, 17, 17, 17, 17, 17, 17, 19, 17, 17, 17, 25, 17, 17, 17, 19, 19, 19, 19, 17, 17, 17, 17, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 17, 19, 19, 19, 17, 17, 16, 16, 17, 17, 17, 17, 17, 17, 16, 17, 16, 17, 17, 17, 17, 16, 17, 17, 17, 17, 17, 19, 17, 17, 17, 17, 17, 18, 17, 19, 17, 19, 18, 17, 18, 18, 18, 19, 19, 19, 18, 18, 18, 17, 18, 19, 19, 18, 19, 19, 19, 18, 18, 19, 17, 18, 18, 19, 20, 20, 19, 17, 17, 18, 18, 18, 18, 18, 17, 17, 18, 18, 18, 18, 18, 18, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 18, 19, 18, 18, 19, 18, 19, 19, 19, 18, 18, 18, 18, 18, 19, 19, 19, 18, 18, 18, 18, 18, 19, 19, 19, 18, 18, 19, 18, 18, 18, 19, 19, 19, 18, 18, 17, 17, 17, 18, 17, 18, 18, 18, 17, 16, 17, 18, 18, 17, 17, 18, 18, 18, 17, 18, 18, 18, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 17, 18, 18, 18, 18, 18, 18, 18, 17, 18, 18, 18, 18, 18, 17, 18, 18, 18, 18, 19, 19, 19, 18, 18, 18, 18, 18, 19, 19, 17, 17, 17, 16, 17, 17, 16, 16, 17, 17, 16, 16, 16, 17, 16, 17, 17, 17, 17, 17, 17, 18, 17, 17, 17, 17, 17, 17, 17, 16, 18, 16, 18, 18, 18, 18, 18, 17, 18, 18, 18, 18, 18, 18, 18, 19, 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 19, 19, 19, 18, 19, 19, 19, 20, 16, 17, 17, 18, 17, 14, 3, 3, 16, 16, 16, 17, 18, 18, 3, 3, 16, 16, 14, 14, 17, 17, 17, 3, 16, 16, 14, 14, 15, 16, 17, 25, 17, 17, 16, 14, 14, 15, 16, 25, 18, 17, 16, 16, 15, 14, 15, 25, 19, 18, 18, 17, 16, 16, 15, 25, 19, 19, 18, 18, 18, 17, 16, 25, 4, 5, 4, 4, 4, 5, 5, 5, 4, 4, 4, 3, 4, 5, 4, 5, 3, 4, 4, 4, 3, 4, 5, 5, 3, 3, 3, 24, 3, 3, 5, 5, 25, 24, 24, 24, 24, 24, 3, 3, 19, 15, 24, 14, 14, 14, 2, 3, 17, 25, 15, 14, 14, 14, 14, 2, 25, 19, 25, 14, 14, 14, 14, 14, 5, 6, 6, 8, 6, 6, 8, 8, 5, 5, 6, 6, 8, 8, 8, 8, 5, 6, 6, 6, 6, 8, 8, 8, 5, 5, 5, 6, 6, 8, 8, 7, 4, 5, 5, 5, 5, 8, 8, 7, 4, 5, 5, 5, 5, 5, 8, 8, 3, 4, 5, 5, 5, 5, 5, 8, 2, 3, 4, 4, 3, 3, 3, 3, 8, 7, 9, 11, 11, 11, 9, 10, 8, 7, 9, 9, 8, 11, 10, 9, 8, 7, 9, 9, 8, 9, 9, 9, 7, 11, 9, 11, 7, 9, 9, 11, 11, 9, 9, 8, 11, 11, 9, 7, 7, 11, 11, 5, 11, 9, 9, 7, 8, 8, 5, 3, 8, 9, 9, 9, 5, 3, 3, 5, 5, 11, 7, 11, 9, 10, 10, 9, 9, 9, 10, 9, 11, 9, 10, 10, 10, 9, 9, 10, 7, 11, 11, 10, 9, 10, 11, 9, 7, 7, 7, 11, 9, 9, 7, 7, 7, 7, 8, 8, 7, 11, 8, 8, 8, 7, 7, 8, 8, 8, 7, 7, 7, 8, 8, 7, 8, 8, 8, 7, 11, 8, 8, 7, 7, 8, 8, 7, 9, 12, 12, 12, 12, 12, 10, 10, 9, 12, 12, 12, 10, 10, 12, 10, 9, 12, 10, 10, 10, 10, 10, 10, 7, 12, 12, 10, 12, 10, 10, 26, 7, 11, 11, 12, 12, 10, 10, 10, 7, 11, 11, 12, 12, 12, 10, 10, 7, 7, 7, 7, 12, 12, 10, 10, 11, 7, 7, 7, 9, 12, 10, 10, 26, 26, 13, 26, 26, 34, 26, 34, 10, 26, 26, 26, 26, 26, 26, 26, 10, 10, 26, 26, 26, 26, 26, 26, 10, 26, 26, 26, 26, 26, 26, 26, 10, 26, 13, 26, 26, 26, 13, 26, 10, 13, 26, 13, 26, 13, 26, 26, 10, 13, 13, 13, 13, 13, 26, 26, 10, 13, 13, 13, 13, 26, 26, 29, 26, 26, 26, 26, 26, 26, 10, 10, 34, 26, 26, 26, 26, 26, 10, 26, 26, 26, 26, 26, 26, 26, 26, 10, 26, 26, 26, 26, 26, 26, 10, 26, 26, 34, 26, 34, 26, 26, 26, 10, 26, 26, 26, 26, 26, 26, 10, 26, 26, 26, 26, 26, 10, 26, 10, 10, 26, 26, 13, 13, 10, 10, 10, 26, 26, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 9, 9, 10, 10, 10, 10, 9, 9, 9, 9, 10, 10, 10, 9, 9, 9, 9, 7, 10, 10, 9, 9, 10, 9, 9, 9, 26, 10, 10, 10, 10, 10, 9, 9, 10, 10, 10, 10, 10, 10, 10, 9, 12, 11, 8, 6, 5, 5, 4, 5, 11, 11, 6, 5, 5, 4, 4, 4, 11, 7, 7, 5, 5, 4, 4, 4, 11, 7, 6, 6, 5, 5, 4, 4, 7, 7, 7, 8, 6, 6, 5, 5, 11, 7, 7, 8, 8, 8, 8, 8, 11, 11, 11, 8, 8, 8, 8, 6, 12, 12, 9, 11, 7, 8, 8, 6, 6, 8, 8, 6, 6, 6, 8, 8, 6, 5, 8, 6, 6, 6, 6, 8, 6, 6, 6, 8, 8, 6, 8, 8, 6, 5, 6, 6, 6, 8, 8, 11, 6, 5, 6, 6, 6, 6, 6, 11, 6, 6, 8, 8, 8, 8, 8, 3, 6, 6, 7, 8, 8, 6, 6, 6, 6, 6, 5, 3, 3, 4, 5, 5, 8, 8, 4, 5, 5, 8, 5, 5, 8, 6, 4, 5, 5, 5, 3, 4, 7, 5, 3, 3, 3, 4, 3, 3, 8, 5, 3, 3, 3, 3, 3, 14, 6, 5, 4, 3, 3, 3, 14, 14, 6, 5, 4, 3, 3, 14, 14, 15, 3, 3, 3, 3, 3, 14, 16, 14, 5, 3, 3, 3, 3, 14, 14, 15, 5, 5, 4, 3, 3, 3, 3, 4, 3, 3, 3, 2, 24, 24, 3, 3, 14, 24, 24, 14, 24, 24, 3, 3, 14, 14, 14, 14, 14, 24, 2, 3, 14, 14, 14, 14, 14, 14, 2, 3, 14, 24, 14, 14, 14, 2, 2, 3, 14, 24, 14, 2, 14, 2, 2, 24, 14, 14, 14, 24, 24, 2, 2, 24, 5, 5, 3, 5, 5, 5, 6, 8, 3, 3, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 3, 3, 3, 5, 3, 3, 14, 14, 14, 3, 14, 3, 3, 14, 14, 14, 14, 14, 14, 3, 3, 14, 14, 14, 16, 16, 14, 3, 14, 14, 14, 14, 14, 16, 16, 3, 14, 14, 14, 14, 14, 14, 14, 7, 11, 11, 11, 7, 11, 9, 11, 6, 8, 7, 7, 7, 7, 7, 11, 3, 5, 8, 7, 7, 7, 7, 7, 3, 3, 3, 8, 7, 7, 7, 7, 14, 3, 3, 3, 8, 7, 8, 8, 14, 3, 3, 5, 5, 8, 7, 7, 14, 3, 3, 5, 5, 6, 8, 8, 14, 14, 3, 3, 6, 6, 8, 6, 9, 9, 9, 9, 9, 9, 9, 11, 11, 9, 9, 11, 9, 11, 11, 11, 11, 11, 11, 11, 7, 11, 11, 7, 7, 7, 11, 11, 7, 7, 11, 7, 8, 7, 7, 7, 7, 7, 7, 7, 8, 7, 8, 8, 8, 8, 7, 8, 8, 6, 8, 8, 8, 6, 5, 8, 6, 6, 7, 8, 8, 8, 5, 5, 9, 11, 9, 9, 10, 9, 9, 9, 11, 9, 9, 11, 9, 9, 9, 9, 7, 11, 11, 11, 9, 9, 11, 9, 8, 8, 8, 7, 7, 11, 9, 7, 8, 5, 5, 8, 11, 11, 9, 9, 8, 8, 8, 7, 7, 11, 11, 9, 5, 5, 5, 8, 7, 7, 8, 9, 5, 5, 5, 5, 5, 8, 8, 9, 9, 10, 8, 8, 7, 7, 7, 5, 9, 10, 9, 6, 8, 8, 6, 8, 9, 9, 10, 9, 6, 8, 8, 6, 9, 9, 10, 9, 7, 5, 6, 6, 7, 9, 10, 10, 7, 5, 5, 5, 10, 10, 10, 9, 8, 6, 5, 7, 9, 10, 9, 9, 6, 6, 9, 8, 9, 10, 9, 7, 6, 6, 7, 5, 3, 3, 3, 5, 3, 3, 14, 14, 4, 3, 3, 24, 15, 15, 15, 14, 8, 24, 3, 3, 14, 15, 25, 17, 5, 5, 14, 24, 14, 15, 15, 17, 6, 6, 4, 24, 14, 14, 15, 16, 6, 6, 5, 6, 24, 15, 16, 16, 6, 6, 5, 5, 5, 14, 15, 16, 5, 5, 5, 5, 4, 3, 3, 14, 14, 15, 17, 17, 18, 18, 19, 19, 15, 17, 18, 18, 18, 19, 20, 19, 18, 15, 18, 18, 20, 18, 19, 20, 17, 19, 17, 19, 20, 22, 19, 19, 17, 18, 19, 17, 19, 20, 22, 18, 17, 18, 18, 20, 17, 19, 19, 21, 16, 18, 18, 19, 20, 18, 20, 20, 14, 14, 16, 16, 17, 17, 17, 18, 19, 19, 20, 20, 21, 21, 22, 21, 19, 20, 20, 21, 21, 20, 20, 21, 19, 20, 20, 20, 20, 20, 20, 21, 19, 19, 20, 20, 20, 20, 20, 21, 19, 19, 19, 19, 19, 20, 20, 22, 18, 18, 19, 18, 19, 20, 22, 22, 18, 18, 18, 19, 19, 20, 22, 21, 17, 18, 18, 18, 19, 19, 20, 20, 22, 1, 20, 18, 18, 19, 18, 19, 22, 1, 18, 18, 18, 18, 18, 19, 20, 20, 18, 18, 18, 19, 19, 19, 20, 20, 20, 18, 19, 19, 19, 19, 20, 17, 18, 19, 19, 19, 20, 20, 19, 17, 18, 20, 20, 20, 19, 20, 18, 18, 18, 20, 21, 21, 20, 20, 19, 18, 18, 20, 21, 21, 20, 20, 19, 19, 19, 19, 20, 20, 20, 20, 19, 19, 20, 20, 19, 21, 20, 21, 20, 20, 20, 20, 20, 20, 21, 20, 20, 20, 21, 20, 20, 20, 20, 21, 20, 21, 22, 21, 21, 21, 22, 22, 20, 21, 22, 22, 22, 21, 22, 21, 20, 20, 22, 22, 22, 1, 22, 20, 20, 21, 22, 22, 22, 22, 21, 20, 19, 20, 22, 1, 1, 22, 22, 22, 19, 19, 20, 22, 1, 22, 22, 20, 20, 19, 20, 21, 1, 22, 21, 20, 21, 20, 20, 22, 22, 22, 21, 21, 20, 20, 20, 22, 22, 22, 21, 20, 20, 20, 20, 21, 22, 22, 20, 20, 20, 20, 21, 21, 21, 20, 20, 20, 21, 21, 20, 20, 20, 20, 20, 20, 21, 21, 21, 19, 19, 19, 19, 19, 20, 21, 21, 21, 19, 21, 19, 21, 21, 19, 19, 19, 19, 21, 19, 19, 20, 19, 19, 19, 20, 21, 19, 21, 20, 19, 20, 20, 21, 21, 22, 22, 19, 19, 19, 21, 20, 20, 20, 21, 19, 20, 20, 21, 21, 20, 21, 21, 19, 20, 20, 20, 20, 21, 22, 22, 19, 19, 19, 19, 19, 19, 20, 20, 21, 19, 19, 19, 19, 19, 20, 22, 21, 21, 19, 19, 19, 19, 19, 20, 21, 21, 19, 19, 19, 19, 19, 19, 20, 21, 21, 21, 21, 19, 19, 22, 22, 21, 22, 22, 22, 1, 1, 1, 21, 22, 22, 22, 22, 22, 22, 20, 22, 21, 21, 22, 22, 22, 21, 21, 19, 19, 19, 19, 19, 19, 19, 19, 20, 19, 19, 19, 19, 19, 19, 19, 20, 20, 19, 19, 19, 19, 19, 19, 21, 20, 19, 19, 19, 19, 19, 19, 19, 19, 19, 21, 21, 19, 20, 19, 21, 19, 21, 21, 21, 21, 19, 19, 20, 20, 21, 21, 19, 19, 19, 19, 20, 21, 21, 20, 20, 19, 19, 19, 19, 19, 19, 19, 19, 19, 17, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 20, 19, 19, 19, 19, 19, 19, 20, 20, 19, 19, 19, 19, 19, 19, 20, 21, 19, 19, 19, 19, 19, 20, 22, 22, 19, 19, 19, 19, 20, 22, 22, 1, 19, 19, 18, 19, 19, 20, 19, 20, 19, 19, 19, 19, 19, 19, 20, 19, 19, 20, 20, 20, 20, 20, 20, 20, 19, 20, 20, 22, 21, 21, 21, 20, 20, 20, 22, 22, 22, 22, 22, 22, 21, 22, 22, 28, 28, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 19, 18, 19, 19, 20, 19, 19, 18, 19, 19, 19, 20, 19, 19, 20, 19, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 22, 1, 22, 22, 22, 22, 22, 22, 1, 1, 28, 1, 1, 1, 22, 22, 28, 1, 1, 28, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 19, 19, 18, 18, 18, 18, 19, 20, 19, 19, 19, 19, 18, 19, 20, 20, 19, 19, 20, 20, 19, 19, 20, 20, 20, 20, 20, 21, 20, 20, 20, 20, 21, 21, 21, 22, 22, 21, 21, 21, 22, 20, 20, 22, 22, 22, 22, 22, 22, 22, 21, 21, 22, 22, 1, 1, 1, 1, 22, 22, 22, 22, 1, 23, 20, 19, 19, 19, 19, 18, 19, 20, 20, 20, 19, 19, 19, 19, 20, 20, 21, 20, 19, 19, 20, 20, 20, 20, 21, 20, 20, 20, 20, 22, 22, 22, 21, 21, 21, 20, 22, 22, 22, 22, 22, 22, 22, 21, 21, 1, 1, 1, 22, 22, 22, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 20, 20, 20, 19, 19, 17, 25, 16, 20, 20, 20, 20, 20, 20, 17, 17, 20, 20, 20, 20, 22, 20, 20, 19, 22, 20, 20, 22, 22, 21, 21, 20, 22, 22, 22, 22, 22, 21, 22, 21, 23, 1, 23, 1, 1, 1, 1, 22, 1, 1, 1, 23, 23, 23, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 25, 19, 19, 25, 16, 16, 14, 14, 17, 20, 20, 17, 17, 16, 16, 14, 20, 21, 21, 19, 17, 17, 16, 16, 20, 1, 22, 21, 22, 19, 16, 16, 20, 20, 21, 22, 1, 1, 19, 16, 1, 21, 21, 21, 21, 1, 22, 19, 22, 1, 1, 1, 22, 21, 19, 22, 1, 1, 22, 22, 1, 22, 21, 19, 14, 24, 3, 3, 3, 14, 14, 14, 14, 14, 14, 24, 3, 16, 3, 3, 16, 14, 14, 14, 14, 16, 3, 3, 16, 16, 18, 17, 17, 16, 14, 3, 16, 16, 17, 17, 16, 16, 14, 14, 16, 16, 17, 16, 16, 16, 16, 16, 21, 21, 17, 17, 17, 16, 14, 14, 1, 20, 18, 17, 17, 16, 16, 14, 14, 3, 3, 3, 5, 5, 8, 11, 3, 5, 5, 3, 5, 8, 6, 8, 3, 3, 5, 8, 5, 8, 6, 8, 3, 3, 3, 5, 5, 6, 8, 6, 3, 3, 3, 5, 5, 5, 6, 8, 3, 3, 3, 5, 5, 5, 5, 3, 14, 14, 14, 14, 3, 5, 5, 3, 14, 14, 3, 14, 14, 3, 3, 3, 11, 11, 8, 8, 8, 7, 7, 7, 8, 11, 7, 7, 7, 11, 11, 11, 8, 8, 7, 7, 7, 11, 11, 11, 6, 8, 8, 8, 8, 7, 11, 11, 8, 6, 6, 8, 8, 11, 11, 8, 3, 3, 5, 6, 8, 7, 11, 11, 3, 3, 5, 6, 6, 7, 7, 11, 14, 3, 3, 3, 8, 7, 7, 11, 7, 7, 8, 7, 12, 9, 9, 9, 11, 7, 9, 9, 9, 10, 9, 9, 11, 7, 7, 7, 9, 9, 9, 10, 7, 7, 7, 7, 7, 9, 10, 10, 8, 8, 7, 7, 9, 9, 10, 10, 8, 7, 7, 9, 9, 10, 9, 9, 11, 9, 9, 9, 10, 10, 10, 10, 12, 12, 12, 12, 10, 10, 10, 10, 9, 10, 10, 13, 13, 13, 13, 29, 9, 9, 10, 10, 13, 13, 13, 29, 10, 10, 10, 10, 13, 13, 29, 29, 10, 10, 10, 13, 13, 13, 10, 10, 10, 10, 10, 10, 13, 13, 29, 10, 10, 10, 10, 10, 10, 13, 10, 10, 10, 10, 10, 10, 10, 29, 29, 29, 10, 10, 10, 9, 10, 29, 10, 10, 26, 29, 26, 13, 10, 10, 10, 10, 29, 29, 13, 13, 10, 10, 10, 26, 29, 29, 13, 13, 13, 10, 10, 10, 29, 29, 13, 13, 13, 10, 10, 10, 29, 29, 26, 13, 13, 10, 12, 9, 29, 29, 13, 26, 13, 10, 12, 9, 29, 29, 13, 29, 13, 10, 10, 9, 29, 29, 13, 29, 13, 10, 12, 9, 10, 10, 27, 10, 10, 10, 10, 10, 26, 10, 27, 29, 10, 10, 10, 10, 10, 27, 10, 10, 29, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 29, 9, 10, 10, 10, 10, 10, 10, 10, 9, 10, 10, 10, 10, 10, 10, 29, 10, 10, 10, 10, 10, 10, 10, 10, 9, 9, 10, 9, 9, 10, 10, 10, 12, 12, 9, 9, 7, 7, 7, 7, 29, 12, 9, 11, 9, 7, 7, 7, 29, 12, 9, 9, 7, 7, 7, 6, 29, 12, 9, 9, 9, 7, 7, 7, 10, 29, 9, 9, 9, 7, 7, 7, 10, 12, 9, 9, 7, 7, 7, 7, 10, 12, 9, 9, 7, 8, 8, 6, 11, 11, 11, 11, 7, 8, 8, 6, 6, 5, 3, 3, 24, 2, 2, 3, 4, 3, 3, 3, 24, 14, 2, 3, 3, 3, 3, 3, 24, 2, 3, 3, 3, 3, 3, 3, 24, 2, 2, 3, 3, 14, 3, 14, 24, 2, 2, 3, 4, 5, 3, 14, 14, 2, 2, 3, 4, 3, 5, 3, 3, 15, 14, 14, 3, 3, 5, 3, 3, 2, 15, 14, 3, 3, 14, 14, 14, 14, 14, 14, 3, 14, 14, 14, 14, 14, 14, 14, 3, 3, 14, 14, 14, 14, 14, 14, 3, 14, 14, 14, 14, 14, 14, 14, 3, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 3, 14, 3, 3, 14, 3, 3, 14, 14, 14, 14, 14, 3, 3, 14, 3, 14, 14, 14, 24, 24, 14, 14, 14, 14, 24, 24, 24, 14, 14, 14, 14, 14, 24, 24, 24, 14, 14, 16, 16, 15, 24, 24, 24, 24, 14, 14, 16, 14, 14, 24, 24, 24, 14, 14, 16, 14, 14, 24, 24, 14, 14, 14, 16, 14, 14, 14, 14, 14, 14, 16, 16, 14, 24, 24, 14, 14, 14, 16, 16, 14, 3, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 16, 14, 14, 14, 3, 14, 14, 14, 16, 16, 14, 14, 3, 14, 14, 14, 16, 16, 16, 14, 14, 14, 14, 14, 16, 16, 16, 16, 14, 14, 3, 14, 16, 16, 16, 16, 16, 14, 3, 3, 16, 16, 16, 16, 16, 14, 3, 3, 16, 16, 14, 3, 5, 6, 6, 8, 16, 14, 14, 3, 3, 8, 8, 8, 14, 14, 14, 3, 3, 5, 6, 8, 14, 14, 14, 14, 3, 5, 6, 8, 3, 14, 14, 5, 5, 5, 6, 6, 3, 14, 3, 5, 5, 5, 5, 6, 3, 3, 3, 3, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 6, 6, 8, 7, 8, 6, 5, 5, 8, 8, 8, 8, 8, 6, 5, 5, 8, 8, 8, 6, 6, 5, 5, 5, 6, 6, 6, 3, 3, 3, 5, 5, 6, 5, 5, 5, 3, 14, 3, 3, 6, 6, 5, 3, 3, 3, 3, 3, 6, 6, 5, 3, 3, 3, 3, 3, 6, 6, 6, 6, 5, 5, 3, 3, 5, 5, 5, 5, 5, 7, 7, 9, 5, 5, 5, 5, 5, 7, 7, 7, 5, 5, 8, 8, 8, 8, 7, 9, 3, 5, 8, 8, 7, 8, 8, 9, 5, 5, 8, 8, 7, 7, 7, 9, 5, 8, 8, 7, 7, 7, 7, 7, 5, 8, 8, 7, 11, 8, 8, 7, 5, 5, 7, 7, 7, 8, 8, 7, 9, 10, 8, 6, 6, 8, 7, 8, 8, 8, 8, 8, 8, 6, 6, 8, 9, 10, 9, 9, 9, 9, 8, 8, 7, 10, 9, 10, 10, 10, 7, 8, 10, 9, 10, 9, 10, 9, 9, 6, 10, 9, 6, 7, 7, 9, 7, 7, 9, 9, 7, 5, 8, 8, 8, 8, 7, 7, 7, 6, 5, 6, 8, 6, 4, 4, 5, 5, 4, 3, 3, 3, 4, 4, 5, 5, 4, 3, 3, 3, 5, 4, 5, 5, 4, 3, 3, 3, 4, 4, 5, 4, 4, 3, 3, 3, 4, 4, 4, 4, 4, 3, 3, 3, 4, 4, 4, 4, 4, 3, 4, 4, 8, 8, 6, 6, 5, 5, 4, 4, 8, 8, 6, 4, 3, 3, 4, 3, 3, 3, 14, 14, 14, 16, 16, 17, 3, 14, 14, 14, 14, 14, 16, 16, 3, 14, 14, 14, 14, 14, 16, 16, 3, 14, 14, 14, 14, 16, 16, 16, 3, 14, 14, 14, 14, 16, 16, 17, 3, 14, 14, 14, 14, 16, 16, 17, 3, 14, 14, 14, 14, 16, 16, 17, 3, 14, 14, 16, 16, 16, 16, 17, 17, 17, 18, 18, 18, 19, 20, 22, 16, 17, 18, 18, 19, 19, 20, 22, 17, 18, 19, 19, 19, 20, 20, 20, 17, 18, 19, 20, 19, 20, 20, 20, 18, 18, 19, 19, 19, 20, 20, 20, 17, 18, 19, 19, 19, 19, 19, 22, 17, 18, 18, 19, 19, 19, 19, 21, 17, 18, 18, 18, 18, 19, 18, 20, 17, 18, 20, 20, 22, 22, 22, 21, 17, 19, 19, 21, 22, 22, 21, 21, 17, 18, 19, 20, 20, 22, 20, 21, 17, 17, 18, 19, 20, 20, 22, 22, 16, 17, 18, 19, 19, 21, 21, 22, 16, 17, 18, 18, 20, 20, 21, 22, 17, 16, 18, 19, 19, 20, 20, 21, 17, 16, 17, 18, 19, 19, 21, 22, 21, 22, 22, 22, 1, 21, 21, 22, 21, 21, 22, 22, 22, 20, 21, 22, 21, 20, 20, 22, 22, 20, 21, 22, 21, 21, 20, 22, 22, 21, 21, 21, 22, 21, 20, 21, 22, 21, 20, 20, 22, 21, 20, 20, 22, 22, 21, 20, 21, 21, 21, 20, 20, 22, 22, 20, 21, 21, 20, 20, 20, 20, 22, 20, 21, 21, 21, 20, 21, 20, 20, 20, 22, 22, 21, 21, 20, 20, 20, 20, 22, 22, 22, 21, 20, 20, 21, 21, 22, 22, 22, 22, 21, 20, 21, 21, 22, 22, 22, 22, 21, 21, 21, 21, 21, 21, 21, 21, 21, 22, 21, 22, 20, 21, 20, 20, 20, 21, 22, 22, 19, 20, 21, 20, 21, 22, 22, 22, 20, 20, 20, 21, 20, 21, 21, 22, 20, 20, 20, 21, 20, 21, 22, 22, 21, 21, 22, 21, 22, 21, 21, 22, 22, 22, 22, 22, 22, 21, 21, 22, 22, 22, 22, 21, 22, 22, 21, 22, 22, 22, 22, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 21, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 1, 1, 22, 22, 22, 22, 22, 22, 22, 1, 22, 22, 22, 22, 22, 22, 22, 1, 22, 22, 21, 22, 22, 22, 1, 1, 28, 21, 22, 22, 1, 1, 1, 1, 22, 22, 22, 22, 22, 1, 1, 1, 22, 22, 22, 22, 22, 22, 1, 1, 1, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 21, 21, 20, 20, 20, 20, 20, 20, 21, 21, 20, 20, 20, 20, 22, 21, 22, 22, 22, 22, 21, 21, 1, 22, 22, 22, 22, 22, 22, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 28, 28, 28, 1, 22, 22, 22, 28, 1, 1, 28, 28, 19, 19, 19, 20, 19, 21, 22, 22, 20, 19, 19, 20, 20, 20, 22, 22, 21, 21, 20, 20, 20, 20, 20, 22, 21, 21, 21, 20, 20, 20, 20, 21, 22, 22, 21, 20, 19, 19, 20, 21, 1, 22, 22, 20, 20, 20, 20, 21, 1, 28, 1, 22, 21, 21, 20, 20, 1, 1, 1, 1, 22, 21, 21, 22, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 28, 1, 1, 1, 1, 1, 1, 1, 28, 1, 1, 1, 1, 1, 1, 22, 22, 1, 28, 1, 1, 28, 28, 22, 22, 1, 28, 28, 1, 1, 28, 21, 22, 22, 22, 20, 1, 1, 1, 21, 21, 21, 21, 21, 20, 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, 28, 1, 1, 1, 1, 1, 1, 1, 28, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 28, 1, 1, 1, 1, 1, 1, 1, 1, 28, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 22, 23, 1, 1, 1, 22, 22, 22, 22, 23, 1, 1, 1, 1, 22, 22, 22, 23, 1, 1, 1, 22, 22, 22, 22, 1, 23, 1, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 22, 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, 23, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 1, 1, 1, 1, 23, 23, 1, 23, 1, 1, 1, 1, 23, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 22, 21, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 21, 1, 1, 1, 22, 1, 22, 22, 22, 1, 1, 1, 1, 22, 1, 22, 20, 1, 1, 1, 1, 1, 22, 22, 21, 22, 22, 1, 1, 22, 1, 22, 21, 1, 22, 1, 1, 1, 1, 1, 22, 20, 21, 21, 19, 17, 16, 16, 16, 21, 20, 21, 19, 19, 18, 16, 16, 22, 19, 19, 22, 21, 20, 18, 16, 20, 21, 20, 19, 22, 21, 20, 19, 20, 21, 1, 22, 22, 22, 21, 19, 21, 21, 22, 1, 1, 1, 1, 22, 20, 21, 22, 1, 1, 1, 1, 22, 21, 21, 22, 1, 1, 1, 1, 1, 16, 14, 14, 14, 14, 16, 16, 16, 16, 16, 16, 16, 14, 14, 16, 16, 16, 17, 19, 18, 16, 16, 16, 16, 18, 17, 19, 18, 17, 17, 16, 16, 21, 20, 18, 18, 18, 17, 16, 16, 19, 21, 20, 19, 18, 17, 16, 16, 1, 21, 21, 20, 19, 17, 16, 16, 22, 21, 21, 20, 19, 17, 17, 16, 14, 14, 3, 3, 8, 7, 11, 12, 16, 14, 3, 6, 7, 11, 12, 12, 14, 3, 3, 8, 7, 11, 12, 12, 14, 3, 6, 8, 11, 11, 12, 12, 14, 3, 6, 8, 7, 11, 12, 12, 14, 3, 6, 8, 8, 7, 11, 12, 14, 3, 5, 6, 6, 8, 11, 9, 14, 3, 5, 5, 6, 6, 7, 9, 12, 12, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 12, 10, 10, 10, 26, 10, 13, 10, 10, 10, 26, 10, 10, 10, 13, 10, 10, 10, 10, 10, 10, 10, 13, 10, 12, 10, 10, 10, 10, 10, 13, 13, 12, 12, 10, 10, 10, 10, 10, 13, 12, 12, 10, 10, 10, 13, 13, 13, 10, 10, 10, 10, 13, 29, 29, 10, 10, 10, 9, 10, 10, 10, 29, 29, 10, 10, 9, 10, 10, 10, 29, 10, 10, 10, 10, 9, 29, 10, 10, 10, 10, 10, 10, 10, 10, 29, 29, 10, 10, 13, 10, 13, 29, 29, 10, 10, 13, 13, 13, 13, 29, 29, 29, 29, 13, 13, 26, 26, 29, 26, 29, 29, 10, 29, 10, 29, 13, 12, 12, 9, 10, 10, 10, 29, 10, 10, 12, 11, 29, 10, 10, 29, 10, 12, 12, 12, 10, 10, 10, 10, 10, 12, 12, 12, 10, 10, 10, 9, 10, 9, 12, 12, 9, 9, 10, 10, 9, 12, 9, 7, 10, 9, 9, 9, 9, 7, 7, 7, 29, 29, 9, 11, 7, 7, 8, 8, 10, 10, 10, 10, 9, 7, 9, 7, 9, 10, 10, 10, 9, 7, 7, 8, 9, 11, 10, 9, 9, 7, 7, 8, 9, 9, 11, 9, 11, 7, 7, 7, 11, 9, 9, 7, 11, 7, 7, 7, 11, 11, 11, 11, 11, 7, 8, 7, 7, 11, 11, 7, 11, 7, 7, 6, 8, 8, 7, 8, 8, 7, 7, 8, 7, 7, 8, 6, 8, 8, 6, 6, 8, 5, 5, 5, 6, 5, 5, 5, 6, 5, 4, 5, 5, 5, 3, 3, 6, 5, 4, 5, 5, 3, 3, 3, 7, 7, 5, 5, 5, 3, 24, 14, 7, 7, 8, 5, 5, 5, 6, 5, 6, 5, 5, 5, 5, 5, 5, 5, 6, 5, 8, 6, 6, 6, 5, 5, 3, 3, 3, 3, 24, 2, 2, 14, 3, 3, 3, 14, 24, 2, 2, 24, 14, 3, 3, 3, 24, 2, 14, 24, 3, 14, 14, 3, 3, 2, 2, 24, 3, 3, 14, 14, 3, 3, 3, 3, 14, 3, 14, 14, 24, 2, 2, 2, 16, 14, 14, 14, 14, 2, 2, 2, 16, 16, 14, 14, 3, 3, 2, 2, 14, 14, 14, 14, 3, 3, 3, 14, 15, 14, 3, 3, 3, 3, 3, 3, 3, 14, 14, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 3, 14, 3, 3, 14, 24, 24, 14, 14, 14, 14, 16, 14, 3, 24, 14, 14, 14, 14, 14, 3, 3, 3, 14, 24, 14, 2, 14, 3, 4, 4, 3, 3, 2, 2, 24, 3, 5, 4, 3, 4, 3, 3, 24, 4, 5, 4, 3, 4, 5, 2, 24, 3, 4, 5, 5, 4, 5, 3, 3, 3, 3, 3, 3, 3, 5, 5, 4, 16, 16, 16, 16, 14, 3, 3, 5, 16, 16, 16, 14, 3, 3, 3, 5, 16, 16, 14, 14, 3, 3, 3, 5, 14, 14, 14, 3, 3, 3, 3, 3, 14, 14, 14, 3, 3, 3, 3, 3, 24, 14, 24, 3, 3, 5, 5, 5, 24, 2, 3, 3, 3, 5, 5, 5, 3, 3, 4, 5, 5, 8, 8, 8, 5, 5, 6, 3, 3, 5, 5, 5, 5, 5, 5, 3, 3, 3, 5, 6, 5, 5, 5, 5, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 8, 5, 5, 5, 5, 5, 6, 8, 5, 5, 6, 6, 5, 5, 5, 5, 6, 6, 6, 5, 5, 5, 5, 8, 6, 6, 5, 5, 5, 5, 8, 8, 3, 5, 5, 5, 5, 5, 5, 8, 3, 3, 5, 5, 5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 8, 5, 5, 5, 5, 5, 5, 5, 8, 8, 6, 6, 5, 5, 5, 5, 8, 7, 8, 8, 7, 11, 8, 8, 6, 8, 8, 7, 7, 7, 8, 8, 6, 5, 8, 8, 7, 7, 8, 6, 5, 5, 8, 7, 8, 8, 8, 5, 5, 5, 8, 8, 7, 5, 5, 4, 4, 5, 5, 5, 5, 5, 5, 4, 4, 5, 5, 5, 5, 5, 5, 5, 6, 5, 8, 5, 3, 5, 4, 5, 6, 6, 8, 8, 7, 5, 6, 3, 6, 6, 6, 6, 8, 6, 6, 6, 4, 4, 5, 6, 8, 6, 6, 6, 5, 5, 5, 6, 8, 8, 6, 6, 6, 5, 6, 6, 6, 6, 6, 6, 6, 5, 5, 6, 6, 6, 6, 6, 5, 5, 5, 5, 5, 6, 5, 5, 4, 5, 6, 5, 5, 6, 6, 5, 4, 3, 5, 5, 4, 4, 3, 3, 14, 15, 4, 4, 4, 5, 14, 14, 14, 16, 4, 5, 5, 6, 5, 15, 15, 16, 5, 5, 5, 6, 5, 5, 15, 16, 5, 6, 5, 5, 5, 5, 4, 16, 5, 5, 5, 5, 6, 6, 5, 4, 5, 4, 3, 5, 5, 5, 3, 3, 4, 4, 3, 3, 4, 3, 14, 16, 14, 14, 14, 16, 16, 16, 17, 17, 16, 14, 14, 16, 16, 16, 17, 17, 17, 16, 14, 14, 16, 16, 17, 17, 16, 17, 17, 14, 16, 16, 17, 17, 16, 17, 17, 14, 16, 16, 17, 18, 17, 17, 16, 14, 16, 17, 16, 17, 16, 14, 14, 14, 16, 17, 17, 17, 14, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, 18, 19, 18, 17, 18, 18, 18, 19, 18, 18, 19, 18, 18, 19, 19, 19, 19, 19, 19, 18, 18, 19, 19, 19, 19, 19, 20, 18, 18, 19, 19, 19, 20, 20, 20, 18, 18, 19, 19, 19, 20, 20, 21, 17, 18, 18, 18, 19, 19, 20, 21, 17, 17, 18, 18, 19, 19, 20, 21, 19, 17, 17, 18, 18, 20, 20, 22, 22, 16, 17, 18, 19, 18, 19, 20, 22, 18, 17, 18, 18, 19, 19, 18, 20, 21, 17, 18, 18, 18, 18, 18, 21, 23, 20, 17, 18, 18, 18, 19, 21, 21, 1, 20, 17, 18, 18, 18, 21, 21, 20, 22, 20, 18, 17, 18, 20, 20, 20, 20, 22, 19, 18, 17, 21, 20, 21, 20, 20, 20, 20, 20, 21, 20, 20, 20, 20, 20, 20, 20, 19, 19, 19, 20, 20, 20, 20, 20, 19, 18, 19, 20, 20, 20, 21, 21, 18, 19, 18, 19, 20, 20, 21, 22, 18, 18, 18, 18, 19, 20, 20, 21, 18, 17, 18, 18, 18, 19, 20, 20, 17, 17, 17, 18, 19, 18, 19, 20, 19, 20, 21, 22, 22, 22, 22, 22, 20, 20, 20, 21, 22, 1, 1, 1, 21, 21, 21, 21, 22, 22, 22, 1, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 21, 22, 1, 22, 22, 22, 1, 22, 22, 22, 22, 20, 22, 22, 22, 22, 22, 22, 22, 20, 21, 22, 1, 1, 22, 22, 22, 22, 22, 22, 22, 22, 22, 1, 22, 1, 1, 1, 1, 1, 22, 22, 22, 28, 1, 1, 22, 22, 22, 22, 22, 1, 1, 22, 22, 22, 22, 22, 1, 1, 1, 22, 22, 22, 1, 22, 1, 22, 22, 22, 1, 22, 23, 1, 1, 22, 22, 22, 22, 1, 1, 1, 1, 21, 22, 22, 22, 1, 1, 1, 1, 22, 22, 22, 22, 22, 22, 1, 22, 22, 22, 22, 22, 22, 22, 22, 1, 1, 1, 1, 22, 22, 22, 22, 22, 1, 1, 1, 22, 22, 22, 22, 22, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 22, 22, 22, 22, 22, 22, 22, 1, 1, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 1, 22, 22, 21, 22, 22, 22, 22, 28, 1, 22, 22, 22, 22, 22, 22, 1, 28, 1, 1, 22, 21, 22, 22, 28, 28, 1, 22, 21, 20, 21, 20, 22, 21, 21, 20, 21, 20, 20, 20, 22, 22, 21, 20, 20, 20, 20, 20, 21, 21, 22, 21, 20, 19, 19, 18, 21, 22, 22, 21, 20, 21, 20, 20, 22, 22, 22, 22, 21, 20, 21, 21, 22, 22, 22, 22, 22, 20, 21, 22, 22, 20, 20, 20, 19, 22, 22, 28, 21, 20, 19, 19, 21, 22, 22, 1, 20, 20, 20, 20, 20, 22, 22, 1, 20, 20, 20, 20, 20, 22, 22, 1, 19, 21, 21, 20, 21, 21, 22, 28, 19, 20, 21, 21, 21, 21, 22, 28, 20, 20, 22, 1, 22, 1, 28, 1, 22, 22, 20, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 28, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 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, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 23, 23, 23, 1, 1, 1, 1, 22, 23, 1, 1, 1, 22, 1, 22, 22, 23, 1, 1, 22, 22, 1, 1, 22, 23, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 22, 1, 22, 22, 1, 1, 1, 1, 1, 1, 21, 21, 21, 23, 1, 1, 1, 22, 1, 21, 21, 1, 22, 22, 1, 22, 22, 22, 22, 22, 22, 22, 22, 1, 1, 1, 22, 22, 22, 1, 22, 21, 22, 1, 22, 22, 22, 22, 22, 21, 22, 22, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 22, 22, 1, 22, 1, 1, 22, 1, 22, 1, 1, 21, 22, 1, 1, 1, 1, 22, 21, 22, 21, 1, 1, 1, 1, 22, 1, 22, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 21, 1, 21, 21, 1, 1, 22, 22, 19, 19, 21, 20, 21, 22, 22, 21, 19, 18, 18, 20, 19, 19, 22, 21, 19, 19, 19, 18, 18, 17, 21, 20, 19, 19, 18, 18, 17, 16, 22, 21, 21, 21, 19, 18, 16, 16, 22, 21, 21, 20, 19, 18, 16, 16, 22, 21, 20, 19, 18, 17, 16, 16, 22, 21, 20, 18, 18, 17, 16, 14, 22, 20, 18, 17, 17, 17, 16, 16, 19, 19, 18, 17, 16, 16, 16, 14, 17, 17, 18, 17, 17, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 14, 3, 5, 5, 8, 8, 9, 14, 14, 3, 5, 6, 8, 7, 9, 14, 3, 3, 5, 5, 7, 9, 12, 14, 3, 3, 5, 6, 8, 12, 10, 14, 3, 5, 5, 8, 7, 9, 10, 14, 14, 5, 6, 8, 11, 9, 12, 14, 3, 5, 6, 8, 9, 12, 12, 14, 3, 5, 8, 7, 9, 9, 12, 9, 12, 10, 10, 10, 13, 13, 13, 9, 12, 10, 10, 26, 13, 26, 26, 12, 10, 10, 26, 26, 26, 26, 26, 10, 10, 26, 26, 26, 26, 26, 26, 10, 26, 26, 26, 26, 26, 34, 26, 26, 26, 26, 26, 26, 26, 26, 34, 10, 26, 26, 26, 26, 34, 26, 26, 10, 10, 26, 26, 26, 26, 26, 26, 26, 26, 26, 29, 26, 26, 26, 29, 13, 26, 26, 26, 26, 29, 29, 29, 26, 26, 13, 26, 26, 26, 29, 29, 26, 26, 26, 26, 26, 29, 29, 29, 26, 34, 26, 26, 26, 29, 29, 10, 26, 26, 26, 26, 29, 29, 29, 10, 26, 26, 26, 26, 29, 29, 29, 29, 26, 26, 26, 29, 29, 10, 29, 29, 29, 29, 29, 29, 7, 9, 8, 7, 29, 29, 29, 10, 10, 8, 7, 6, 29, 29, 10, 29, 10, 9, 7, 8, 10, 10, 10, 10, 10, 7, 7, 8, 10, 10, 10, 10, 10, 8, 8, 8, 10, 10, 10, 9, 9, 7, 5, 5, 29, 10, 10, 9, 9, 9, 7, 5, 29, 29, 10, 9, 9, 7, 8, 8, 6, 6, 8, 8, 8, 5, 8, 6, 8, 6, 6, 5, 5, 5, 5, 5, 6, 6, 5, 5, 5, 5, 5, 5, 6, 5, 5, 3, 3, 5, 5, 5, 6, 5, 3, 5, 3, 5, 4, 5, 5, 5, 6, 3, 3, 5, 4, 3, 5, 5, 5, 3, 3, 3, 3, 5, 6, 6, 6, 3, 3, 3, 3, 3, 6, 5, 5, 5, 5, 5, 5, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 3, 5, 4, 5, 3, 3, 3, 3, 14, 3, 4, 3, 3, 3, 24, 14, 14, 3, 3, 3, 14, 14, 14, 14, 14, 3, 3, 14, 3, 14, 14, 15, 16, 24, 14, 14, 14, 16, 16, 15, 16, 16, 16, 16, 14, 24, 3, 3, 2, 16, 16, 16, 16, 14, 24, 3, 3, 16, 16, 16, 16, 14, 14, 2, 3, 16, 16, 16, 14, 15, 14, 2, 3, 16, 16, 16, 16, 14, 14, 2, 2, 16, 16, 16, 14, 14, 14, 14, 2, 16, 16, 16, 16, 14, 14, 2, 14, 14, 14, 14, 14, 14, 14, 14, 14, 3, 3, 3, 3, 3, 3, 14, 14, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 14, 3, 3, 5, 3, 3, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 3, 3, 5, 3, 3, 3, 3, 3, 3, 4, 5, 14, 14, 3, 3, 3, 4, 4, 5, 3, 3, 14, 14, 24, 3, 5, 5, 14, 3, 4, 3, 3, 5, 5, 5, 3, 3, 5, 3, 3, 5, 5, 5, 3, 3, 5, 5, 4, 5, 5, 5, 5, 6, 4, 5, 5, 5, 3, 5, 5, 6, 6, 5, 4, 5, 3, 5, 5, 6, 6, 5, 3, 3, 3, 5, 8, 6, 6, 5, 3, 5, 3, 5, 5, 4, 4, 5, 5, 5, 8, 5, 6, 5, 4, 5, 5, 5, 8, 8, 6, 5, 4, 5, 5, 8, 5, 5, 6, 5, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 3, 5, 5, 6, 5, 5, 4, 5, 3, 5, 6, 5, 5, 4, 5, 5, 5, 5, 5, 5, 5, 4, 5, 5, 5, 8, 8, 5, 8, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 3, 3, 5, 5, 3, 5, 5, 5, 5, 5, 3, 5, 5, 5, 8, 5, 5, 6, 6, 5, 8, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7, 11, 11, 6, 6, 5, 5, 5, 5, 8, 8, 6, 5, 5, 5, 5, 5, 5, 8, 6, 5, 5, 5, 5, 5, 5, 8, 3, 5, 5, 8, 8, 5, 5, 5, 3, 5, 5, 7, 8, 5, 5, 5, 6, 5, 7, 7, 7, 8, 5, 3, 8, 7, 7, 7, 7, 5, 5, 3, 7, 7, 11, 7, 8, 8, 5, 3, 8, 5, 5, 5, 4, 5, 5, 6, 8, 5, 5, 5, 4, 4, 4, 5, 5, 5, 5, 5, 4, 4, 4, 4, 5, 5, 3, 4, 5, 5, 4, 4, 5, 5, 5, 5, 5, 5, 5, 4, 3, 5, 5, 5, 5, 6, 6, 5, 3, 3, 5, 5, 6, 6, 6, 6, 3, 3, 4, 5, 6, 8, 6, 8, 6, 6, 5, 6, 6, 5, 5, 4, 5, 5, 5, 6, 5, 5, 5, 4, 4, 5, 4, 5, 6, 6, 6, 5, 5, 5, 4, 4, 6, 6, 6, 5, 5, 5, 4, 5, 6, 6, 6, 6, 5, 5, 5, 6, 6, 6, 5, 4, 6, 5, 6, 5, 6, 6, 6, 4, 6, 6, 6, 6, 5, 6, 5, 3, 3, 4, 3, 3, 4, 4, 14, 16, 4, 4, 3, 3, 4, 4, 4, 16, 4, 4, 3, 5, 5, 5, 3, 3, 5, 3, 3, 4, 4, 4, 4, 4, 5, 3, 3, 4, 4, 3, 4, 4, 5, 3, 3, 3, 3, 3, 3, 4, 3, 3, 3, 3, 14, 14, 14, 3, 3, 3, 3, 3, 14, 14, 14, 14, 16, 14, 16, 16, 16, 16, 17, 17, 16, 14, 14, 14, 16, 16, 16, 17, 16, 16, 16, 16, 16, 16, 16, 16, 3, 16, 17, 16, 14, 14, 16, 16, 4, 14, 16, 16, 14, 16, 16, 16, 4, 3, 14, 16, 14, 14, 16, 16, 4, 4, 3, 14, 17, 14, 14, 16, 3, 3, 3, 3, 16, 16, 14, 14, 18, 17, 18, 18, 19, 20, 21, 21, 18, 17, 18, 18, 20, 22, 22, 22, 17, 18, 18, 17, 19, 19, 20, 21, 17, 17, 18, 16, 19, 20, 21, 20, 16, 17, 18, 17, 19, 19, 18, 18, 17, 17, 17, 17, 19, 18, 16, 16, 16, 16, 16, 16, 19, 18, 14, 14, 16, 16, 14, 14, 14, 17, 5, 5, 21, 20, 21, 20, 20, 22, 19, 17, 21, 21, 20, 20, 20, 20, 21, 16, 22, 20, 19, 19, 19, 19, 20, 21, 21, 22, 21, 20, 18, 19, 19, 20, 19, 20, 20, 20, 21, 18, 19, 20, 14, 14, 17, 19, 19, 21, 18, 20, 14, 14, 14, 16, 18, 19, 20, 18, 5, 14, 14, 14, 16, 17, 19, 20, 17, 17, 17, 18, 18, 18, 19, 20, 16, 17, 17, 17, 18, 18, 19, 20, 16, 17, 17, 17, 18, 18, 19, 19, 20, 17, 18, 18, 18, 18, 18, 18, 21, 17, 17, 18, 18, 17, 18, 17, 22, 19, 16, 17, 18, 18, 17, 17, 20, 22, 19, 16, 17, 16, 17, 17, 19, 19, 20, 18, 16, 16, 16, 16, 20, 20, 22, 22, 22, 22, 22, 21, 20, 20, 21, 20, 21, 20, 21, 21, 19, 20, 19, 20, 19, 19, 20, 21, 18, 18, 19, 19, 19, 20, 20, 20, 18, 18, 20, 21, 19, 19, 20, 20, 18, 18, 17, 18, 21, 18, 19, 20, 17, 19, 19, 17, 18, 20, 20, 19, 16, 19, 20, 20, 18, 17, 18, 20, 21, 20, 22, 22, 1, 1, 23, 1, 20, 21, 21, 22, 1, 1, 23, 1, 22, 21, 22, 22, 23, 23, 23, 22, 21, 22, 21, 22, 22, 1, 1, 22, 21, 21, 21, 22, 22, 1, 1, 22, 20, 22, 22, 22, 1, 1, 22, 22, 20, 21, 22, 1, 22, 22, 22, 20, 20, 21, 21, 1, 22, 22, 21, 20, 22, 22, 1, 23, 23, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 21, 22, 1, 1, 1, 1, 1, 1, 21, 22, 23, 1, 1, 1, 1, 1, 21, 21, 22, 23, 1, 1, 1, 1, 20, 20, 21, 1, 1, 1, 1, 1, 20, 21, 20, 22, 23, 1, 1, 1, 1, 1, 22, 22, 22, 22, 22, 22, 1, 23, 22, 22, 22, 22, 22, 22, 23, 1, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 1, 23, 22, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 22, 22, 22, 21, 21, 22, 22, 21, 21, 20, 20, 22, 21, 22, 22, 21, 20, 20, 20, 21, 22, 22, 22, 22, 21, 21, 21, 21, 22, 22, 1, 1, 1, 1, 1, 1, 23, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 23, 1, 22, 23, 1, 1, 1, 1, 1, 22, 1, 22, 22, 1, 1, 1, 1, 1, 1, 28, 1, 1, 1, 28, 1, 1, 1, 1, 1, 1, 28, 28, 1, 1, 1, 1, 1, 1, 28, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 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, 23, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 22, 20, 23, 1, 22, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 22, 22, 22, 22, 22, 1, 22, 1, 1, 22, 1, 22, 22, 1, 22, 22, 1, 1, 1, 22, 22, 1, 1, 1, 22, 1, 1, 1, 21, 1, 22, 1, 22, 21, 21, 21, 22, 20, 20, 22, 1, 1, 1, 21, 21, 20, 19, 21, 22, 1, 1, 21, 20, 21, 20, 20, 21, 22, 1, 21, 20, 22, 21, 20, 20, 21, 21, 21, 19, 21, 21, 21, 19, 19, 20, 19, 19, 21, 21, 19, 19, 19, 19, 19, 18, 21, 20, 19, 19, 19, 18, 18, 17, 21, 19, 19, 19, 19, 18, 18, 17, 20, 20, 19, 19, 19, 17, 16, 16, 19, 19, 19, 19, 18, 17, 16, 16, 19, 19, 18, 18, 17, 17, 16, 16, 19, 18, 19, 17, 17, 16, 16, 16, 19, 19, 18, 17, 16, 16, 16, 16, 19, 18, 17, 17, 16, 16, 16, 16, 18, 17, 17, 17, 17, 16, 16, 14, 16, 17, 17, 16, 17, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 17, 16, 16, 14, 16, 16, 16, 16, 17, 16, 14, 14, 16, 16, 16, 16, 16, 16, 14, 14, 16, 16, 16, 16, 16, 16, 16, 14, 14, 14, 14, 14, 16, 16, 16, 15, 14, 3, 3, 3, 16, 16, 16, 15, 14, 3, 5, 6, 8, 9, 9, 12, 14, 3, 5, 6, 8, 7, 9, 9, 14, 14, 5, 5, 6, 8, 7, 9, 14, 3, 3, 5, 6, 6, 8, 7, 3, 3, 5, 5, 6, 6, 8, 7, 14, 3, 5, 3, 5, 5, 6, 8, 14, 14, 3, 14, 24, 3, 5, 8, 15, 14, 14, 14, 24, 3, 5, 6, 10, 10, 26, 26, 26, 26, 34, 26, 10, 10, 26, 26, 26, 26, 26, 26, 9, 10, 26, 26, 26, 26, 26, 26, 10, 10, 26, 26, 26, 26, 26, 26, 9, 10, 13, 26, 26, 13, 26, 26, 7, 10, 13, 13, 26, 26, 26, 26, 7, 9, 10, 13, 26, 26, 13, 26, 8, 7, 9, 10, 13, 26, 26, 13, 26, 26, 29, 29, 29, 10, 29, 29, 13, 26, 26, 29, 29, 29, 10, 29, 26, 29, 26, 29, 29, 29, 29, 10, 26, 26, 26, 29, 29, 29, 29, 10, 26, 29, 29, 29, 26, 29, 10, 10, 26, 26, 26, 29, 29, 29, 29, 10, 29, 26, 29, 26, 29, 29, 29, 10, 26, 29, 26, 26, 29, 29, 10, 10, 29, 10, 10, 9, 9, 8, 8, 8, 29, 29, 10, 10, 9, 7, 7, 8, 10, 10, 10, 10, 9, 9, 7, 8, 10, 10, 10, 10, 9, 9, 7, 8, 10, 9, 10, 9, 9, 9, 7, 7, 10, 10, 10, 9, 9, 9, 7, 8, 10, 10, 9, 10, 9, 9, 7, 7, 9, 9, 9, 9, 9, 9, 7, 7, 8, 6, 6, 5, 3, 3, 3, 24, 7, 6, 5, 5, 3, 3, 3, 24, 8, 6, 5, 3, 3, 5, 3, 24, 8, 6, 5, 5, 5, 3, 3, 14, 8, 8, 6, 6, 3, 3, 3, 24, 8, 8, 8, 8, 3, 3, 3, 24, 7, 8, 6, 5, 5, 3, 3, 24, 8, 8, 6, 5, 3, 3, 3, 3, 14, 15, 14, 16, 14, 16, 16, 16, 14, 15, 16, 16, 14, 16, 16, 16, 14, 15, 16, 16, 16, 16, 16, 25, 14, 15, 16, 14, 16, 14, 16, 25, 14, 14, 14, 14, 14, 14, 15, 16, 24, 14, 14, 16, 14, 14, 14, 16, 24, 14, 14, 14, 14, 14, 14, 16, 24, 3, 14, 14, 14, 14, 14, 16, 14, 16, 16, 14, 14, 14, 14, 15, 14, 14, 16, 14, 16, 16, 16, 15, 14, 14, 14, 14, 16, 16, 16, 15, 14, 14, 14, 14, 16, 16, 16, 16, 14, 14, 16, 16, 16, 16, 16, 16, 14, 14, 14, 16, 16, 25, 16, 16, 14, 14, 16, 16, 16, 16, 16, 16, 14, 14, 14, 16, 16, 16, 16, 16, 15, 14, 3, 3, 3, 4, 5, 6, 15, 14, 3, 3, 3, 5, 4, 5, 15, 14, 14, 3, 3, 5, 5, 5, 16, 14, 14, 3, 3, 3, 5, 5, 16, 16, 14, 3, 3, 3, 4, 5, 16, 16, 15, 14, 3, 3, 4, 5, 16, 14, 15, 14, 3, 3, 4, 5, 15, 15, 14, 3, 3, 5, 4, 5, 8, 6, 5, 5, 4, 3, 5, 5, 5, 6, 5, 6, 6, 3, 5, 5, 5, 6, 8, 6, 6, 6, 3, 5, 5, 6, 5, 6, 4, 5, 5, 6, 5, 5, 5, 5, 5, 3, 5, 6, 5, 5, 8, 5, 4, 3, 5, 6, 5, 6, 5, 5, 4, 5, 5, 6, 5, 6, 8, 5, 5, 3, 6, 8, 5, 5, 5, 5, 4, 5, 8, 8, 6, 6, 6, 6, 5, 8, 8, 8, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 7, 7, 7, 7, 7, 8, 8, 7, 7, 9, 9, 9, 7, 7, 8, 8, 7, 9, 9, 9, 9, 9, 8, 7, 7, 9, 9, 9, 10, 10, 7, 7, 7, 9, 9, 10, 10, 10, 8, 7, 8, 8, 7, 7, 11, 11, 7, 7, 8, 11, 11, 11, 11, 9, 7, 7, 8, 11, 11, 11, 11, 11, 7, 7, 8, 11, 11, 11, 11, 11, 11, 11, 11, 11, 7, 11, 11, 11, 9, 11, 9, 9, 11, 11, 11, 7, 10, 10, 9, 10, 9, 9, 11, 11, 10, 10, 10, 10, 10, 10, 9, 9, 11, 11, 11, 7, 7, 8, 5, 3, 9, 11, 11, 11, 7, 8, 5, 5, 9, 11, 11, 11, 7, 8, 5, 5, 7, 9, 11, 11, 8, 8, 8, 5, 7, 7, 11, 7, 8, 5, 5, 5, 11, 11, 11, 8, 8, 8, 5, 5, 11, 11, 7, 8, 8, 5, 5, 5, 11, 11, 11, 7, 8, 8, 8, 5, 3, 3, 4, 5, 6, 8, 8, 8, 3, 3, 3, 4, 6, 6, 8, 8, 3, 3, 3, 3, 5, 6, 6, 8, 5, 3, 3, 3, 3, 5, 6, 6, 5, 3, 3, 4, 3, 3, 5, 5, 5, 3, 3, 3, 3, 3, 5, 5, 5, 24, 3, 3, 3, 4, 5, 5, 5, 3, 24, 3, 4, 3, 5, 5, 6, 6, 8, 8, 5, 5, 4, 3, 6, 8, 8, 8, 5, 4, 3, 3, 8, 8, 8, 6, 4, 3, 3, 3, 6, 8, 8, 6, 4, 3, 3, 3, 5, 5, 4, 4, 4, 3, 3, 24, 5, 5, 4, 3, 3, 3, 3, 3, 5, 4, 4, 3, 24, 24, 3, 24, 2, 3, 5, 14, 2, 24, 14, 16, 14, 14, 15, 14, 14, 14, 14, 14, 14, 14, 15, 16, 17, 17, 17, 16, 14, 14, 14, 16, 25, 19, 19, 18, 24, 24, 24, 14, 25, 17, 20, 20, 16, 25, 16, 14, 15, 17, 19, 20, 16, 25, 17, 25, 17, 19, 20, 20, 25, 17, 19, 17, 17, 19, 20, 21, 25, 17, 19, 19, 19, 19, 19, 20, 14, 14, 17, 16, 16, 17, 16, 14, 14, 14, 17, 16, 16, 17, 16, 14, 17, 17, 16, 16, 17, 17, 17, 14, 19, 25, 16, 16, 16, 17, 17, 14, 20, 19, 19, 16, 16, 16, 25, 16, 20, 17, 19, 19, 19, 25, 17, 25, 20, 19, 19, 19, 17, 17, 25, 25, 20, 20, 20, 20, 19, 17, 19, 25, 16, 16, 14, 14, 3, 16, 14, 5, 15, 14, 14, 14, 14, 16, 16, 14, 15, 15, 14, 14, 15, 14, 17, 16, 14, 15, 14, 14, 15, 14, 14, 18, 14, 14, 14, 14, 15, 16, 16, 16, 16, 14, 14, 14, 15, 16, 17, 17, 16, 14, 14, 14, 15, 16, 17, 17, 25, 14, 14, 15, 16, 25, 17, 19, 5, 5, 3, 3, 14, 16, 16, 18, 5, 5, 4, 14, 14, 14, 16, 16, 14, 4, 4, 3, 14, 14, 14, 16, 17, 15, 4, 14, 14, 14, 14, 14, 18, 19, 16, 16, 14, 15, 14, 14, 17, 17, 16, 17, 18, 17, 17, 14, 18, 18, 17, 17, 16, 16, 16, 14, 19, 19, 17, 25, 16, 14, 15, 15, 18, 19, 20, 18, 18, 16, 16, 16, 17, 18, 20, 17, 19, 18, 16, 16, 16, 17, 17, 19, 18, 18, 18, 17, 16, 16, 17, 17, 18, 17, 17, 18, 14, 16, 16, 16, 17, 16, 16, 17, 14, 14, 15, 17, 17, 16, 16, 16, 14, 14, 3, 17, 17, 15, 15, 17, 3, 3, 15, 16, 16, 15, 14, 17, 16, 18, 18, 20, 19, 20, 17, 19, 16, 18, 17, 19, 19, 19, 21, 18, 17, 18, 17, 18, 20, 21, 22, 22, 17, 18, 17, 19, 20, 22, 21, 21, 18, 18, 18, 19, 19, 20, 20, 20, 17, 17, 17, 18, 19, 20, 20, 22, 16, 16, 17, 17, 18, 20, 22, 22, 18, 16, 17, 18, 18, 19, 22, 22, 20, 20, 21, 22, 22, 21, 21, 20, 20, 20, 21, 22, 22, 20, 20, 20, 20, 22, 22, 22, 22, 22, 20, 19, 21, 22, 22, 22, 22, 22, 22, 22, 22, 22, 1, 22, 22, 22, 1, 22, 1, 22, 1, 22, 1, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 20, 20, 21, 22, 1, 1, 1, 1, 20, 20, 21, 22, 1, 23, 1, 1, 19, 21, 21, 22, 22, 1, 1, 1, 20, 21, 22, 22, 1, 23, 1, 1, 1, 22, 22, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 23, 23, 1, 1, 23, 1, 1, 1, 1, 1, 23, 23, 23, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 23, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 22, 1, 1, 1, 23, 1, 1, 1, 23, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 23, 1, 1, 1, 1, 1, 1, 22, 1, 1, 23, 1, 1, 1, 23, 23, 23, 23, 23, 1, 1, 1, 1, 1, 1, 23, 23, 23, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 22, 1, 1, 1, 1, 23, 1, 1, 1, 23, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 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, 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, 1, 1, 1, 1, 1, 1, 23, 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, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 23, 1, 1, 1, 1, 22, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 23, 23, 1, 22, 1, 1, 1, 21, 20, 19, 20, 21, 1, 1, 1, 22, 21, 20, 19, 19, 1, 1, 22, 22, 21, 19, 19, 19, 1, 22, 1, 22, 21, 19, 19, 17, 1, 1, 1, 22, 21, 19, 17, 17, 1, 21, 21, 21, 20, 19, 17, 16, 22, 20, 20, 19, 19, 19, 17, 16, 20, 20, 19, 19, 19, 17, 17, 16, 21, 19, 19, 18, 18, 17, 17, 17, 19, 19, 19, 17, 18, 17, 17, 16, 19, 19, 17, 17, 16, 16, 16, 16, 19, 19, 17, 17, 16, 16, 16, 16, 17, 17, 17, 17, 17, 16, 16, 16, 17, 17, 17, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 14, 14, 16, 14, 16, 16, 14, 14, 3, 3, 14, 3, 16, 16, 14, 3, 3, 3, 3, 3, 14, 14, 14, 3, 3, 3, 3, 3, 14, 14, 14, 14, 3, 3, 5, 3, 14, 14, 14, 14, 14, 3, 3, 5, 3, 3, 5, 5, 14, 16, 15, 15, 3, 3, 5, 5, 3, 16, 16, 15, 14, 3, 3, 3, 14, 14, 15, 15, 3, 3, 3, 3, 3, 14, 14, 14, 3, 3, 3, 3, 3, 3, 3, 14, 3, 6, 5, 5, 5, 5, 3, 5, 3, 6, 6, 3, 3, 3, 5, 5, 3, 6, 8, 6, 5, 5, 3, 5, 15, 15, 14, 14, 3, 3, 5, 5, 14, 14, 14, 24, 2, 3, 5, 5, 14, 3, 14, 3, 3, 5, 5, 6, 14, 3, 3, 5, 5, 5, 6, 8, 14, 3, 5, 6, 6, 8, 8, 8, 3, 5, 5, 6, 8, 8, 7, 7, 5, 5, 5, 8, 7, 7, 7, 9, 5, 6, 5, 8, 9, 9, 9, 9, 6, 7, 9, 10, 13, 13, 26, 26, 6, 8, 9, 10, 13, 13, 26, 26, 8, 7, 9, 10, 10, 13, 13, 29, 8, 9, 9, 10, 10, 13, 13, 29, 7, 9, 9, 10, 10, 10, 13, 29, 9, 9, 10, 10, 10, 10, 10, 10, 9, 10, 10, 13, 10, 10, 10, 9, 10, 9, 10, 10, 10, 10, 9, 10, 26, 26, 29, 29, 29, 10, 9, 10, 26, 26, 26, 29, 29, 10, 9, 11, 26, 26, 26, 29, 29, 10, 11, 11, 29, 29, 29, 29, 29, 9, 11, 7, 29, 10, 29, 29, 10, 9, 11, 7, 10, 10, 10, 10, 10, 10, 9, 9, 10, 9, 9, 9, 10, 10, 10, 9, 10, 11, 9, 9, 9, 10, 10, 10, 9, 11, 11, 11, 8, 11, 7, 8, 11, 11, 7, 11, 8, 8, 8, 8, 11, 11, 11, 7, 8, 8, 8, 5, 7, 8, 8, 8, 6, 8, 8, 6, 8, 8, 6, 5, 3, 6, 8, 5, 8, 6, 6, 3, 3, 5, 5, 5, 7, 6, 5, 3, 3, 5, 5, 5, 7, 8, 6, 3, 3, 3, 3, 5, 6, 6, 6, 5, 5, 3, 3, 24, 6, 6, 5, 6, 5, 5, 3, 3, 6, 6, 6, 3, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 3, 3, 5, 3, 5, 5, 6, 5, 3, 3, 5, 5, 5, 6, 3, 3, 3, 24, 5, 5, 5, 3, 3, 14, 3, 3, 5, 5, 5, 3, 3, 14, 14, 3, 3, 3, 3, 3, 14, 14, 14, 14, 3, 3, 4, 3, 14, 14, 14, 14, 3, 3, 3, 14, 14, 14, 14, 14, 3, 14, 14, 14, 14, 14, 24, 14, 24, 14, 14, 14, 14, 3, 24, 2, 24, 14, 14, 14, 14, 3, 14, 2, 3, 14, 14, 14, 14, 14, 24, 14, 3, 4, 3, 3, 14, 3, 24, 14, 14, 14, 14, 14, 16, 16, 16, 16, 3, 14, 14, 14, 14, 16, 16, 14, 3, 3, 14, 14, 14, 14, 16, 14, 5, 4, 3, 3, 14, 14, 14, 14, 5, 5, 4, 3, 14, 14, 14, 2, 5, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 14, 3, 3, 3, 3, 3, 3, 15, 14, 14, 3, 3, 5, 4, 5, 14, 2, 14, 3, 3, 5, 5, 5, 14, 14, 2, 3, 3, 5, 4, 5, 2, 2, 2, 3, 3, 5, 5, 5, 14, 3, 4, 3, 5, 5, 5, 5, 3, 4, 5, 5, 5, 5, 5, 4, 3, 4, 5, 5, 5, 5, 4, 5, 2, 4, 5, 6, 6, 5, 6, 5, 5, 5, 5, 6, 4, 6, 5, 8, 5, 5, 5, 6, 6, 5, 8, 8, 5, 5, 5, 6, 6, 6, 6, 7, 5, 5, 5, 6, 6, 8, 8, 7, 5, 5, 5, 6, 8, 8, 7, 7, 5, 5, 5, 6, 8, 7, 9, 9, 5, 6, 8, 8, 7, 7, 9, 10, 5, 5, 8, 8, 9, 9, 10, 10, 7, 9, 9, 9, 10, 10, 10, 10, 7, 9, 9, 10, 10, 10, 10, 29, 9, 10, 10, 10, 10, 29, 29, 29, 9, 10, 10, 10, 29, 10, 29, 29, 9, 10, 10, 29, 29, 29, 29, 29, 9, 10, 29, 10, 29, 29, 29, 29, 10, 10, 29, 29, 10, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 27, 10, 10, 10, 10, 10, 10, 29, 29, 29, 27, 10, 10, 27, 10, 29, 29, 29, 27, 27, 27, 10, 26, 29, 29, 29, 27, 27, 10, 27, 27, 29, 29, 29, 27, 27, 27, 27, 10, 29, 29, 30, 27, 27, 27, 27, 27, 29, 29, 30, 29, 27, 27, 27, 27, 29, 29, 30, 29, 27, 27, 27, 27, 9, 11, 7, 7, 8, 8, 5, 5, 10, 9, 11, 11, 7, 8, 5, 5, 10, 10, 9, 11, 11, 8, 8, 5, 10, 10, 9, 9, 9, 5, 5, 5, 10, 10, 10, 11, 11, 7, 8, 8, 27, 27, 9, 9, 11, 9, 11, 8, 27, 27, 10, 11, 11, 9, 11, 8, 27, 27, 10, 10, 11, 9, 9, 8, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 4, 4, 4, 4, 4, 4, 24, 14, 14, 5, 5, 5, 4, 4, 14, 14, 14, 8, 5, 5, 5, 5, 14, 24, 14, 5, 5, 3, 3, 3, 3, 14, 14, 5, 5, 5, 3, 3, 14, 16, 16, 5, 5, 5, 3, 3, 14, 16, 16, 3, 2, 2, 2, 14, 16, 25, 17, 3, 2, 2, 14, 16, 16, 25, 19, 14, 14, 14, 14, 16, 16, 16, 19, 14, 14, 16, 16, 16, 17, 19, 19, 14, 14, 16, 16, 17, 19, 19, 20, 16, 16, 17, 17, 18, 1, 1, 1, 16, 17, 18, 20, 1, 1, 1, 1, 17, 18, 19, 21, 22, 1, 1, 1, 17, 19, 19, 19, 20, 21, 20, 21, 19, 19, 19, 20, 21, 21, 21, 21, 20, 21, 21, 20, 21, 21, 22, 1, 21, 1, 1, 22, 1, 1, 22, 22, 20, 21, 21, 22, 1, 22, 22, 1, 1, 1, 1, 22, 22, 1, 21, 22, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 22, 22, 20, 20, 20, 20, 19, 19, 17, 17, 21, 21, 19, 19, 19, 19, 17, 17, 1, 22, 21, 19, 19, 17, 19, 19, 22, 1, 22, 22, 19, 19, 20, 19, 1, 1, 1, 1, 19, 19, 20, 19, 1, 1, 1, 1, 21, 20, 19, 19, 1, 22, 1, 1, 22, 21, 19, 20, 1, 21, 1, 1, 1, 22, 1, 21, 15, 14, 15, 15, 16, 25, 17, 19, 25, 15, 16, 16, 16, 17, 19, 20, 17, 25, 16, 16, 25, 17, 17, 19, 19, 19, 19, 25, 25, 25, 19, 19, 19, 19, 19, 17, 17, 17, 17, 17, 19, 19, 19, 19, 17, 17, 25, 17, 19, 19, 17, 17, 25, 17, 17, 17, 20, 19, 17, 17, 16, 14, 14, 2, 19, 17, 17, 16, 16, 15, 14, 14, 19, 17, 25, 16, 15, 15, 15, 14, 19, 25, 25, 16, 14, 14, 24, 3, 17, 25, 25, 17, 14, 24, 24, 3, 17, 19, 17, 16, 14, 3, 3, 24, 17, 14, 24, 14, 5, 4, 5, 3, 14, 3, 5, 5, 6, 6, 6, 8, 2, 5, 5, 6, 6, 6, 8, 6, 14, 14, 15, 15, 16, 17, 14, 17, 14, 3, 3, 15, 15, 16, 17, 16, 24, 3, 4, 3, 15, 16, 25, 25, 3, 5, 4, 3, 24, 16, 17, 17, 3, 3, 5, 4, 24, 15, 16, 25, 3, 3, 24, 4, 24, 15, 16, 17, 5, 4, 24, 16, 24, 14, 14, 25, 5, 4, 3, 14, 16, 14, 16, 25, 18, 17, 17, 18, 19, 20, 20, 22, 18, 19, 18, 18, 19, 20, 22, 22, 25, 19, 20, 18, 19, 19, 22, 1, 17, 19, 19, 19, 19, 20, 22, 22, 17, 17, 19, 19, 20, 20, 20, 22, 19, 19, 19, 20, 20, 20, 20, 22, 19, 19, 17, 19, 19, 20, 21, 22, 17, 19, 19, 19, 19, 20, 20, 20, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 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, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 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, 22, 22, 22, 22, 1, 1, 1, 22, 22, 22, 22, 22, 22, 1, 1, 22, 22, 22, 1, 1, 1, 1, 1, 1, 22, 23, 1, 1, 23, 1, 23, 23, 23, 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, 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, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 23, 1, 1, 23, 1, 22, 1, 1, 23, 23, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 22, 22, 1, 23, 23, 1, 23, 22, 22, 22, 1, 1, 1, 23, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 22, 22, 1, 1, 1, 1, 22, 23, 23, 1, 1, 1, 1, 22, 21, 1, 1, 22, 1, 22, 22, 22, 21, 1, 1, 22, 22, 21, 21, 21, 22, 1, 1, 22, 22, 21, 20, 20, 20, 22, 1, 1, 1, 1, 22, 20, 21, 23, 1, 1, 1, 22, 1, 1, 20, 22, 1, 22, 21, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 20, 20, 19, 19, 19, 17, 17, 16, 20, 20, 19, 19, 19, 17, 17, 17, 20, 19, 19, 19, 19, 19, 17, 19, 20, 19, 19, 19, 19, 19, 17, 17, 20, 19, 19, 19, 19, 19, 17, 17, 20, 21, 20, 20, 19, 19, 19, 19, 22, 21, 22, 20, 21, 20, 19, 20, 1, 22, 22, 22, 19, 20, 20, 19, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14, 16, 16, 16, 16, 16, 16, 16, 14, 17, 16, 16, 16, 16, 16, 16, 16, 17, 18, 17, 16, 16, 14, 14, 16, 17, 17, 17, 16, 16, 14, 14, 16, 19, 17, 16, 16, 16, 16, 16, 16, 20, 20, 17, 17, 16, 16, 17, 16, 14, 14, 14, 14, 14, 3, 3, 3, 14, 3, 14, 14, 14, 3, 3, 5, 14, 3, 14, 3, 3, 3, 3, 3, 14, 14, 14, 3, 3, 3, 3, 3, 16, 14, 14, 14, 3, 3, 3, 3, 16, 16, 14, 14, 14, 14, 14, 3, 16, 16, 14, 14, 14, 16, 14, 14, 16, 16, 16, 16, 14, 14, 14, 3, 5, 5, 8, 8, 6, 5, 5, 5, 5, 6, 5, 8, 8, 6, 6, 6, 5, 5, 5, 6, 6, 8, 8, 7, 3, 3, 3, 5, 6, 8, 8, 7, 3, 3, 3, 3, 5, 6, 7, 11, 3, 3, 3, 5, 5, 6, 7, 12, 3, 3, 5, 5, 6, 8, 11, 12, 3, 5, 5, 6, 8, 7, 7, 11, 5, 8, 8, 7, 9, 10, 10, 10, 5, 8, 7, 9, 9, 10, 10, 10, 8, 7, 7, 7, 9, 10, 10, 13, 7, 9, 9, 9, 9, 10, 10, 13, 9, 12, 9, 9, 10, 10, 10, 13, 12, 12, 12, 10, 10, 10, 10, 13, 12, 10, 10, 10, 10, 10, 13, 13, 12, 10, 12, 10, 10, 10, 13, 13, 10, 10, 10, 10, 10, 10, 11, 11, 13, 10, 13, 10, 10, 9, 11, 8, 13, 10, 10, 10, 10, 9, 9, 8, 13, 13, 10, 10, 10, 9, 9, 11, 13, 13, 13, 10, 9, 9, 9, 11, 13, 13, 10, 10, 9, 10, 9, 11, 10, 13, 10, 10, 9, 9, 11, 11, 10, 10, 9, 9, 9, 11, 11, 11, 9, 9, 11, 11, 11, 9, 9, 9, 8, 9, 11, 7, 7, 7, 7, 7, 8, 8, 7, 7, 8, 7, 6, 7, 8, 7, 7, 8, 8, 7, 7, 7, 8, 7, 8, 8, 8, 8, 8, 7, 8, 8, 6, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 8, 8, 8, 11, 7, 6, 6, 6, 7, 7, 8, 11, 8, 6, 5, 5, 5, 3, 3, 11, 7, 6, 6, 6, 3, 5, 3, 8, 7, 8, 8, 6, 5, 3, 3, 7, 8, 8, 8, 8, 6, 5, 3, 7, 7, 8, 8, 8, 6, 5, 3, 8, 7, 11, 8, 8, 8, 5, 3, 8, 7, 7, 7, 6, 6, 5, 5, 8, 8, 7, 8, 5, 3, 5, 5, 3, 5, 3, 3, 3, 3, 14, 24, 3, 3, 3, 3, 3, 3, 3, 24, 3, 3, 5, 3, 3, 3, 3, 3, 2, 3, 3, 3, 5, 5, 3, 3, 3, 3, 5, 3, 5, 5, 5, 5, 2, 3, 3, 3, 5, 5, 5, 5, 3, 3, 5, 3, 5, 5, 5, 5, 5, 5, 3, 3, 3, 5, 5, 4, 3, 4, 3, 3, 3, 3, 24, 2, 24, 3, 3, 5, 3, 5, 3, 3, 24, 14, 3, 3, 3, 5, 4, 4, 4, 3, 3, 3, 5, 5, 5, 5, 5, 5, 3, 5, 5, 5, 5, 5, 5, 5, 5, 3, 5, 3, 4, 5, 5, 6, 5, 5, 14, 3, 3, 4, 5, 5, 5, 3, 3, 14, 3, 4, 14, 3, 14, 3, 3, 5, 3, 3, 14, 14, 3, 3, 3, 3, 3, 3, 14, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 3, 5, 5, 6, 6, 6, 7, 4, 4, 3, 5, 6, 6, 8, 7, 4, 5, 5, 6, 6, 8, 8, 7, 5, 5, 3, 6, 8, 8, 7, 11, 4, 3, 3, 6, 8, 11, 7, 11, 4, 5, 6, 8, 11, 11, 9, 29, 4, 6, 8, 7, 9, 9, 29, 29, 5, 6, 7, 9, 9, 9, 29, 29, 8, 6, 8, 8, 10, 10, 10, 29, 8, 7, 8, 11, 10, 10, 29, 29, 9, 11, 11, 11, 10, 29, 29, 29, 11, 9, 29, 12, 29, 29, 29, 29, 9, 9, 29, 29, 29, 29, 29, 29, 29, 29, 29, 32, 32, 29, 29, 32, 29, 32, 32, 32, 29, 32, 32, 32, 33, 32, 29, 32, 32, 32, 32, 32, 29, 29, 29, 30, 29, 29, 29, 29, 29, 29, 29, 29, 30, 29, 29, 30, 29, 30, 29, 30, 29, 30, 29, 29, 29, 29, 30, 29, 30, 29, 30, 29, 29, 30, 29, 30, 30, 30, 30, 30, 32, 30, 30, 29, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 29, 29, 30, 29, 27, 27, 27, 27, 29, 29, 29, 30, 27, 27, 27, 27, 29, 29, 30, 29, 30, 27, 27, 26, 30, 29, 30, 30, 30, 27, 30, 26, 30, 30, 30, 30, 30, 27, 27, 30, 29, 30, 30, 30, 30, 27, 26, 26, 30, 30, 30, 30, 30, 27, 26, 26, 30, 30, 27, 30, 26, 27, 26, 26, 27, 27, 27, 10, 9, 9, 11, 11, 27, 27, 10, 10, 9, 9, 11, 11, 26, 26, 26, 10, 9, 10, 9, 9, 26, 26, 26, 26, 9, 9, 9, 11, 26, 26, 10, 10, 9, 10, 9, 11, 26, 26, 26, 10, 10, 10, 9, 7, 26, 26, 26, 10, 10, 10, 9, 9, 26, 26, 26, 26, 10, 9, 9, 9, 5, 5, 5, 3, 14, 16, 16, 17, 8, 5, 3, 3, 14, 16, 16, 17, 7, 5, 3, 3, 14, 16, 16, 17, 8, 5, 3, 3, 16, 16, 17, 18, 7, 5, 5, 3, 16, 16, 17, 19, 8, 8, 5, 3, 16, 16, 18, 19, 7, 8, 5, 3, 16, 16, 17, 19, 11, 8, 3, 3, 14, 16, 18, 19, 17, 19, 20, 1, 1, 1, 1, 1, 18, 19, 22, 1, 22, 22, 1, 1, 19, 21, 21, 22, 22, 1, 1, 1, 20, 21, 21, 21, 1, 1, 1, 1, 21, 21, 21, 21, 1, 1, 1, 1, 22, 21, 22, 22, 1, 1, 1, 1, 22, 22, 1, 22, 1, 1, 1, 1, 22, 22, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 22, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 20, 1, 1, 1, 1, 1, 21, 22, 21, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 21, 1, 1, 22, 1, 1, 22, 21, 21, 1, 1, 1, 1, 1, 22, 21, 21, 21, 1, 22, 1, 1, 22, 22, 1, 22, 20, 21, 1, 1, 22, 1, 1, 1, 21, 20, 20, 19, 17, 16, 16, 14, 14, 2, 21, 19, 18, 16, 16, 14, 14, 24, 22, 19, 18, 16, 16, 16, 14, 14, 20, 19, 18, 17, 16, 16, 16, 14, 20, 19, 18, 17, 17, 16, 16, 16, 22, 19, 18, 18, 17, 16, 16, 16, 22, 21, 18, 17, 17, 17, 16, 16, 20, 20, 19, 18, 17, 17, 16, 16, 2, 3, 5, 6, 8, 6, 6, 5, 24, 3, 5, 6, 6, 6, 6, 6, 14, 3, 4, 5, 5, 5, 5, 5, 14, 3, 3, 3, 4, 5, 5, 5, 14, 14, 24, 3, 3, 5, 5, 5, 14, 14, 3, 3, 3, 4, 5, 5, 14, 14, 3, 3, 3, 5, 5, 5, 14, 14, 3, 3, 3, 5, 5, 5, 5, 5, 3, 3, 14, 25, 14, 25, 4, 5, 5, 3, 2, 16, 17, 17, 5, 4, 5, 4, 2, 2, 16, 19, 4, 4, 4, 4, 3, 14, 14, 16, 5, 4, 4, 3, 3, 24, 14, 14, 5, 4, 3, 4, 3, 24, 14, 14, 5, 4, 3, 24, 3, 3, 24, 14, 5, 5, 5, 3, 3, 3, 24, 14, 17, 19, 17, 19, 19, 19, 20, 21, 19, 19, 19, 19, 19, 19, 19, 20, 19, 19, 19, 19, 19, 19, 19, 21, 16, 17, 19, 19, 19, 21, 20, 21, 16, 17, 19, 20, 21, 22, 22, 22, 16, 16, 19, 21, 1, 22, 22, 22, 16, 16, 17, 21, 1, 22, 1, 22, 16, 16, 17, 19, 22, 22, 1, 1, 21, 22, 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, 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, 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, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 22, 22, 1, 22, 1, 1, 22, 1, 1, 22, 21, 20, 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, 22, 1, 1, 1, 1, 1, 1, 22, 21, 22, 1, 22, 1, 1, 1, 20, 21, 21, 21, 1, 1, 1, 1, 19, 20, 21, 1, 1, 22, 20, 20, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 20, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 23, 1, 22, 22, 22, 1, 1, 1, 22, 22, 1, 1, 1, 1, 23, 1, 22, 22, 22, 1, 1, 1, 1, 22, 1, 22, 1, 22, 1, 1, 1, 22, 1, 23, 1, 1, 23, 1, 1, 22, 1, 23, 23, 1, 1, 1, 1, 22, 1, 23, 23, 23, 1, 1, 1, 1, 1, 23, 23, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 22, 22, 1, 22, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 22, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 23, 22, 22, 22, 1, 1, 1, 1, 23, 22, 22, 1, 1, 1, 1, 22, 1, 1, 1, 21, 20, 20, 1, 1, 22, 1, 22, 21, 21, 21, 1, 22, 1, 1, 22, 22, 22, 21, 1, 1, 1, 1, 21, 20, 20, 20, 22, 1, 1, 22, 22, 20, 19, 19, 1, 1, 22, 21, 1, 21, 20, 18, 1, 21, 1, 1, 1, 22, 21, 20, 22, 22, 1, 22, 1, 22, 21, 20, 20, 19, 18, 17, 16, 16, 16, 16, 19, 19, 18, 18, 18, 17, 17, 17, 20, 19, 18, 18, 18, 18, 17, 17, 18, 20, 19, 18, 18, 17, 17, 18, 19, 18, 18, 18, 18, 17, 18, 18, 19, 18, 18, 17, 17, 17, 18, 17, 19, 18, 17, 17, 17, 17, 17, 17, 20, 18, 17, 18, 17, 17, 17, 17, 16, 16, 16, 16, 16, 14, 3, 3, 16, 16, 16, 16, 14, 3, 3, 3, 17, 17, 16, 16, 14, 3, 3, 3, 17, 17, 17, 16, 16, 14, 3, 3, 18, 17, 17, 17, 16, 14, 3, 3, 17, 18, 17, 17, 17, 14, 3, 3, 17, 17, 17, 17, 16, 14, 3, 3, 16, 17, 17, 16, 16, 14, 14, 3, 3, 3, 5, 6, 8, 7, 7, 7, 3, 3, 5, 6, 6, 8, 7, 7, 3, 3, 6, 5, 5, 6, 8, 7, 3, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 3, 5, 5, 3, 5, 5, 5, 3, 3, 3, 5, 3, 5, 5, 5, 5, 5, 5, 3, 3, 5, 5, 5, 3, 5, 3, 3, 9, 12, 10, 10, 10, 10, 13, 13, 7, 9, 10, 10, 10, 13, 13, 13, 8, 9, 9, 10, 10, 13, 13, 13, 8, 8, 7, 9, 10, 13, 13, 10, 5, 8, 8, 7, 9, 10, 10, 10, 5, 5, 6, 8, 7, 9, 10, 10, 5, 5, 5, 6, 8, 7, 9, 9, 2, 3, 5, 5, 6, 8, 7, 9, 10, 9, 9, 9, 11, 11, 8, 11, 10, 10, 9, 7, 11, 8, 11, 8, 13, 10, 9, 11, 8, 8, 8, 8, 13, 10, 10, 9, 8, 8, 11, 8, 13, 10, 10, 9, 11, 8, 11, 8, 10, 10, 10, 9, 11, 8, 11, 7, 10, 9, 9, 9, 11, 8, 8, 8, 9, 9, 9, 11, 8, 8, 8, 8, 7, 8, 8, 6, 6, 8, 8, 8, 11, 8, 8, 8, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 8, 6, 6, 6, 8, 7, 8, 8, 8, 6, 5, 6, 8, 7, 7, 8, 8, 6, 8, 5, 6, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 8, 7, 8, 6, 5, 6, 8, 6, 8, 9, 8, 8, 8, 5, 3, 5, 5, 5, 8, 7, 7, 7, 6, 6, 5, 6, 6, 8, 7, 11, 7, 8, 8, 8, 7, 8, 7, 7, 11, 11, 11, 9, 8, 7, 7, 11, 11, 9, 9, 9, 7, 11, 11, 9, 9, 10, 10, 10, 9, 9, 9, 10, 10, 10, 9, 10, 9, 10, 10, 10, 10, 9, 9, 10, 5, 5, 5, 3, 3, 5, 5, 4, 6, 5, 5, 3, 5, 3, 5, 5, 8, 6, 6, 5, 5, 5, 5, 5, 7, 7, 7, 7, 8, 8, 5, 6, 7, 9, 11, 11, 8, 8, 8, 6, 9, 7, 11, 11, 7, 8, 8, 8, 9, 9, 7, 11, 7, 8, 8, 8, 9, 9, 9, 7, 11, 8, 8, 8, 5, 6, 5, 4, 14, 3, 24, 2, 5, 5, 3, 3, 3, 14, 14, 3, 5, 4, 3, 4, 3, 3, 14, 2, 5, 5, 3, 4, 3, 3, 24, 2, 5, 5, 5, 5, 3, 3, 3, 3, 6, 6, 5, 5, 4, 3, 4, 3, 6, 6, 5, 4, 4, 4, 3, 3, 6, 6, 5, 5, 4, 3, 3, 3, 14, 14, 14, 3, 3, 3, 5, 5, 14, 14, 14, 14, 3, 3, 5, 6, 14, 14, 14, 14, 3, 3, 3, 5, 16, 16, 16, 14, 14, 14, 3, 5, 16, 16, 16, 16, 14, 14, 3, 5, 16, 16, 16, 14, 14, 14, 3, 5, 16, 16, 16, 14, 14, 3, 3, 5, 14, 14, 14, 14, 14, 3, 3, 5, 6, 6, 8, 7, 9, 9, 29, 29, 6, 6, 8, 9, 13, 29, 29, 29, 5, 6, 8, 7, 9, 29, 29, 29, 6, 6, 8, 7, 11, 9, 33, 29, 6, 8, 8, 7, 11, 9, 29, 29, 8, 8, 8, 7, 11, 9, 29, 29, 5, 7, 8, 7, 8, 7, 9, 29, 5, 7, 8, 7, 8, 7, 11, 9, 29, 29, 32, 32, 32, 32, 32, 32, 33, 32, 32, 32, 32, 32, 32, 32, 29, 32, 32, 32, 32, 32, 32, 32, 29, 32, 32, 32, 32, 32, 32, 32, 33, 32, 32, 32, 32, 32, 32, 30, 29, 32, 32, 32, 32, 32, 32, 30, 29, 29, 32, 32, 32, 32, 32, 30, 29, 29, 29, 29, 29, 32, 29, 29, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 32, 30, 30, 30, 30, 30, 30, 30, 29, 30, 30, 30, 30, 30, 30, 30, 29, 29, 30, 30, 30, 30, 27, 27, 29, 29, 29, 29, 29, 27, 27, 27, 30, 30, 30, 30, 26, 30, 26, 26, 30, 30, 30, 27, 30, 26, 26, 26, 30, 30, 30, 30, 30, 26, 26, 26, 30, 30, 30, 30, 26, 26, 26, 26, 30, 30, 27, 26, 26, 26, 26, 26, 30, 30, 30, 30, 26, 30, 26, 10, 27, 27, 30, 26, 26, 26, 26, 26, 30, 26, 26, 26, 26, 26, 26, 10, 26, 26, 26, 10, 26, 10, 9, 11, 26, 26, 26, 26, 10, 10, 11, 11, 26, 26, 26, 26, 26, 10, 10, 7, 26, 26, 26, 26, 26, 10, 10, 11, 10, 10, 10, 26, 10, 10, 9, 11, 10, 10, 10, 10, 10, 9, 11, 7, 12, 10, 12, 12, 11, 7, 7, 8, 10, 12, 12, 12, 7, 8, 6, 5, 7, 8, 3, 3, 16, 16, 18, 19, 7, 6, 3, 14, 16, 16, 18, 19, 8, 6, 3, 14, 16, 16, 18, 20, 6, 6, 5, 14, 16, 17, 18, 21, 7, 3, 3, 14, 16, 17, 19, 20, 8, 5, 3, 16, 16, 17, 18, 21, 5, 5, 5, 14, 17, 17, 18, 19, 5, 5, 3, 3, 16, 18, 19, 19, 21, 1, 1, 22, 1, 1, 1, 1, 22, 1, 1, 22, 1, 1, 1, 1, 22, 1, 22, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 22, 1, 1, 22, 1, 1, 1, 22, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 22, 22, 1, 1, 22, 19, 22, 1, 1, 1, 1, 1, 22, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 21, 21, 1, 1, 1, 21, 1, 1, 21, 21, 22, 1, 1, 22, 1, 1, 21, 21, 1, 1, 1, 22, 1, 1, 1, 22, 22, 1, 22, 22, 1, 1, 1, 22, 1, 22, 22, 22, 1, 1, 1, 1, 1, 22, 1, 22, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 19, 19, 18, 17, 16, 16, 14, 14, 20, 19, 18, 17, 16, 16, 16, 16, 21, 19, 19, 18, 19, 17, 19, 17, 21, 21, 19, 17, 18, 19, 19, 16, 21, 19, 19, 17, 16, 18, 18, 14, 1, 20, 18, 17, 16, 16, 16, 14, 1, 20, 17, 16, 16, 16, 16, 14, 1, 19, 17, 16, 16, 16, 16, 16, 14, 14, 14, 3, 3, 3, 3, 3, 16, 16, 3, 3, 3, 3, 3, 3, 16, 16, 16, 16, 3, 3, 14, 14, 14, 14, 14, 16, 16, 16, 14, 14, 14, 14, 14, 14, 14, 16, 16, 14, 3, 3, 3, 3, 3, 3, 3, 14, 3, 3, 3, 3, 3, 5, 3, 3, 14, 3, 3, 5, 6, 3, 3, 3, 3, 3, 3, 3, 5, 14, 3, 14, 3, 3, 3, 5, 5, 3, 14, 14, 3, 3, 3, 5, 5, 3, 14, 16, 3, 14, 3, 3, 3, 3, 14, 14, 3, 3, 5, 3, 3, 14, 14, 14, 3, 3, 5, 5, 3, 3, 14, 14, 5, 5, 3, 3, 3, 3, 3, 14, 3, 3, 3, 3, 3, 3, 3, 14, 16, 16, 17, 19, 1, 1, 1, 1, 14, 16, 16, 19, 1, 1, 1, 1, 14, 16, 16, 17, 19, 22, 1, 1, 16, 16, 17, 18, 18, 1, 1, 1, 14, 16, 17, 18, 18, 20, 22, 1, 16, 16, 17, 18, 18, 19, 21, 22, 14, 16, 17, 18, 19, 21, 21, 1, 16, 16, 17, 18, 19, 21, 22, 22, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 22, 22, 22, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 22, 22, 22, 22, 1, 22, 22, 1, 22, 1, 22, 22, 22, 22, 1, 1, 1, 1, 1, 1, 22, 22, 22, 1, 1, 1, 1, 1, 22, 22, 21, 1, 1, 22, 1, 21, 21, 22, 21, 1, 1, 1, 1, 22, 21, 20, 19, 1, 1, 1, 22, 21, 20, 19, 19, 22, 22, 1, 21, 20, 19, 19, 19, 22, 1, 22, 21, 19, 19, 19, 19, 1, 1, 21, 20, 19, 19, 19, 19, 1, 22, 21, 19, 19, 19, 18, 19, 21, 22, 21, 19, 19, 18, 18, 18, 21, 20, 20, 19, 19, 19, 18, 19, 19, 22, 1, 1, 19, 19, 19, 20, 19, 22, 1, 19, 20, 19, 19, 20, 20, 20, 1, 19, 19, 19, 21, 1, 19, 19, 22, 21, 19, 19, 22, 1, 19, 19, 19, 22, 21, 19, 20, 1, 19, 19, 19, 20, 21, 19, 20, 1, 19, 19, 19, 18, 21, 19, 20, 22, 18, 18, 20, 18, 22, 20, 20, 19, 20, 20, 20, 1, 1, 1, 1, 1, 20, 21, 20, 19, 20, 22, 1, 1, 22, 22, 21, 22, 19, 20, 21, 20, 1, 1, 1, 1, 1, 22, 20, 21, 22, 1, 1, 1, 1, 1, 1, 22, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 20, 22, 1, 1, 1, 1, 1, 1, 21, 21, 1, 1, 1, 1, 1, 1, 20, 21, 22, 22, 1, 1, 1, 1, 1, 21, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 23, 23, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 1, 1, 1, 1, 1, 1, 22, 1, 1, 1, 1, 22, 1, 1, 22, 1, 1, 1, 22, 22, 1, 22, 22, 1, 1, 1, 1, 1, 22, 1, 22, 1, 1, 1, 21, 1, 1, 22, 22, 1, 22, 1, 1, 22, 22, 22, 22, 23, 1, 23, 1, 1, 22, 1, 1, 23, 22, 22, 1, 1, 22, 1, 1, 1, 1, 22, 1, 22, 21, 22, 22, 22, 1, 21, 21, 21, 1, 1, 22, 1, 1, 21, 22, 22, 21, 22, 1, 1, 1, 22, 22, 22, 22, 22, 22, 22, 1, 1, 1, 1, 22, 22, 21, 22, 22, 1, 1, 1, 22, 22, 22, 1, 1, 22, 22, 22, 22, 21, 19, 22, 1, 1, 1, 22, 1, 21, 19, 22, 1, 1, 1, 1, 22, 21, 19, 22, 1, 1, 1, 1, 1, 21, 19, 1, 1, 1, 1, 1, 22, 21, 19, 22, 22, 22, 1, 22, 1, 21, 20, 21, 21, 21, 21, 1, 1, 22, 21, 21, 20, 20, 21, 22, 21, 21, 21, 19, 19, 18, 18, 17, 17, 17, 16, 19, 18, 18, 17, 17, 18, 17, 16, 18, 18, 19, 19, 18, 17, 18, 17, 18, 17, 18, 18, 18, 18, 17, 18, 18, 18, 18, 18, 19, 18, 18, 18, 19, 18, 18, 18, 19, 19, 18, 18, 21, 20, 19, 19, 20, 20, 19, 20, 21, 19, 21, 21, 21, 21, 20, 20, 16, 16, 17, 16, 17, 16, 14, 14, 17, 16, 17, 17, 17, 16, 16, 14, 17, 16, 17, 17, 17, 17, 16, 16, 17, 18, 18, 18, 18, 17, 17, 16, 18, 18, 18, 19, 18, 19, 18, 17, 18, 19, 18, 19, 19, 18, 18, 17, 19, 19, 19, 19, 19, 18, 18, 18, 21, 19, 19, 19, 19, 19, 19, 19, 14, 14, 3, 3, 3, 3, 3, 3, 14, 14, 14, 14, 14, 24, 24, 14, 14, 14, 15, 15, 15, 14, 14, 14, 15, 16, 16, 16, 16, 15, 15, 14, 16, 16, 16, 16, 16, 15, 15, 15, 18, 17, 18, 17, 17, 17, 16, 16, 18, 19, 19, 19, 17, 17, 18, 16, 21, 20, 19, 18, 17, 17, 17, 17, 3, 3, 5, 6, 6, 8, 8, 7, 2, 3, 5, 5, 5, 8, 8, 8, 14, 2, 3, 3, 3, 5, 5, 8, 14, 14, 2, 14, 14, 14, 5, 5, 14, 14, 14, 14, 14, 14, 14, 3, 14, 14, 14, 16, 16, 16, 14, 3, 16, 16, 16, 17, 17, 16, 16, 14, 16, 17, 17, 17, 17, 17, 16, 16, 7, 7, 11, 11, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 8, 8, 8, 8, 6, 8, 6, 5, 5, 6, 8, 6, 5, 3, 5, 5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 14, 14, 3, 3, 3, 14, 3, 14, 3, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 8, 6, 5, 6, 8, 7, 8, 9, 6, 6, 5, 6, 6, 7, 11, 9, 5, 6, 6, 8, 7, 7, 9, 10, 5, 6, 8, 8, 11, 11, 9, 10, 5, 6, 6, 6, 7, 11, 9, 10, 5, 5, 6, 8, 8, 7, 9, 10, 3, 3, 5, 8, 7, 8, 7, 9, 3, 3, 3, 8, 7, 11, 7, 11, 10, 10, 29, 10, 10, 10, 9, 9, 10, 29, 29, 29, 29, 29, 10, 10, 29, 29, 26, 29, 29, 29, 10, 10, 29, 26, 26, 29, 29, 29, 29, 9, 29, 29, 29, 26, 29, 29, 9, 7, 29, 29, 29, 29, 29, 10, 9, 9, 29, 29, 29, 29, 29, 29, 10, 9, 9, 29, 29, 29, 10, 10, 10, 9, 9, 9, 9, 7, 7, 8, 8, 8, 9, 9, 7, 7, 8, 8, 8, 8, 9, 7, 8, 6, 6, 6, 6, 8, 7, 7, 8, 6, 6, 6, 5, 5, 7, 8, 8, 8, 6, 5, 5, 5, 7, 8, 6, 6, 6, 5, 3, 3, 7, 8, 6, 6, 5, 5, 3, 3, 7, 8, 8, 6, 6, 5, 3, 3, 8, 6, 5, 5, 3, 3, 24, 2, 6, 5, 6, 5, 3, 3, 24, 2, 5, 5, 3, 4, 3, 14, 14, 14, 5, 4, 3, 3, 14, 14, 14, 14, 5, 4, 3, 14, 14, 14, 14, 16, 3, 3, 3, 14, 14, 14, 14, 15, 3, 3, 14, 3, 14, 14, 14, 15, 24, 3, 3, 14, 14, 14, 14, 14 };
the_stack_data/132953297.c
#ifdef COMPILE_FOR_TEST #include <assert.h> #define assume(cond) assert(cond) #endif void main(int argc, char* argv[]) { int x_0_0;//sh_buf.outcnt int x_0_1;//sh_buf.outcnt int x_0_2;//sh_buf.outcnt int x_0_3;//sh_buf.outcnt int x_0_4;//sh_buf.outcnt int x_0_5;//sh_buf.outcnt int x_1_0;//sh_buf.outbuf[0] int x_1_1;//sh_buf.outbuf[0] int x_2_0;//sh_buf.outbuf[1] int x_2_1;//sh_buf.outbuf[1] int x_3_0;//sh_buf.outbuf[2] int x_3_1;//sh_buf.outbuf[2] int x_4_0;//sh_buf.outbuf[3] int x_4_1;//sh_buf.outbuf[3] int x_5_0;//sh_buf.outbuf[4] int x_5_1;//sh_buf.outbuf[4] int x_6_0;//sh_buf.outbuf[5] int x_7_0;//sh_buf.outbuf[6] int x_8_0;//sh_buf.outbuf[7] int x_9_0;//sh_buf.outbuf[8] int x_10_0;//sh_buf.outbuf[9] int x_11_0;//LOG_BUFSIZE int x_11_1;//LOG_BUFSIZE int x_12_0;//CREST_scheduler::lock_0 int x_12_1;//CREST_scheduler::lock_0 int x_12_2;//CREST_scheduler::lock_0 int x_12_3;//CREST_scheduler::lock_0 int x_12_4;//CREST_scheduler::lock_0 int x_13_0;//t3 T0 int x_14_0;//t2 T0 int x_15_0;//arg T0 int x_16_0;//functioncall::param T0 int x_16_1;//functioncall::param T0 int x_17_0;//buffered T0 int x_18_0;//functioncall::param T0 int x_18_1;//functioncall::param T0 int x_19_0;//functioncall::param T0 int x_19_1;//functioncall::param T0 int x_20_0;//functioncall::param T0 int x_20_1;//functioncall::param T0 int x_20_2;//functioncall::param T0 int x_20_3;//functioncall::param T0 int x_21_0;//functioncall::param T0 int x_21_1;//functioncall::param T0 int x_21_2;//functioncall::param T0 int x_22_0;//direction T0 int x_23_0;//functioncall::param T0 int x_23_1;//functioncall::param T0 int x_23_2;//functioncall::param T0 int x_24_0;//functioncall::param T0 int x_24_1;//functioncall::param T0 int x_25_0;//functioncall::param T0 int x_25_1;//functioncall::param T0 int x_26_0;//functioncall::param T0 int x_26_1;//functioncall::param T0 int x_27_0;//functioncall::param T0 int x_27_1;//functioncall::param T0 int x_28_0;//functioncall::param T0 int x_28_1;//functioncall::param T0 int x_29_0;//functioncall::param T0 int x_29_1;//functioncall::param T0 int x_30_0;//functioncall::param T0 int x_30_1;//functioncall::param T0 int x_31_0;//functioncall::param T0 int x_31_1;//functioncall::param T0 int x_32_0;//functioncall::param T0 int x_32_1;//functioncall::param T0 int x_33_0;//functioncall::param T0 int x_33_1;//functioncall::param T0 int x_34_0;//functioncall::param T0 int x_34_1;//functioncall::param T0 int x_35_0;//functioncall::param T1 int x_35_1;//functioncall::param T1 int x_36_0;//functioncall::param T1 int x_36_1;//functioncall::param T1 int x_37_0;//i T1 int x_37_1;//i T1 int x_37_2;//i T1 int x_38_0;//rv T1 int x_39_0;//rv T1 int x_40_0;//blocksize T1 int x_41_0;//functioncall::param T1 int x_41_1;//functioncall::param T1 int x_42_0;//apr_thread_mutex_lock::rv T1 int x_42_1;//apr_thread_mutex_lock::rv T1 int x_43_0;//functioncall::param T1 int x_43_1;//functioncall::param T1 int x_44_0;//status T1 int x_44_1;//status T1 int x_45_0;//functioncall::param T1 int x_45_1;//functioncall::param T1 int x_46_0;//functioncall::param T1 int x_46_1;//functioncall::param T1 int x_47_0;//functioncall::param T1 int x_47_1;//functioncall::param T1 int x_48_0;//functioncall::param T1 int x_48_1;//functioncall::param T1 int x_49_0;//functioncall::param T1 int x_49_1;//functioncall::param T1 int x_50_0;//functioncall::param T1 int x_50_1;//functioncall::param T1 int x_51_0;//functioncall::param T1 int x_51_1;//functioncall::param T1 int x_52_0;//functioncall::param T1 int x_52_1;//functioncall::param T1 int x_53_0;//functioncall::param T2 int x_53_1;//functioncall::param T2 int x_54_0;//functioncall::param T2 int x_54_1;//functioncall::param T2 int x_55_0;//i T2 int x_55_1;//i T2 int x_55_2;//i T2 int x_55_3;//i T2 int x_56_0;//rv T2 int x_57_0;//rv T2 int x_57_1;//rv T2 int x_58_0;//blocksize T2 int x_58_1;//blocksize T2 int x_59_0;//functioncall::param T2 int x_59_1;//functioncall::param T2 int x_59_2;//functioncall::param T2 int x_60_0;//apr_thread_mutex_lock::rv T2 int x_60_1;//apr_thread_mutex_lock::rv T2 int x_61_0;//functioncall::param T2 int x_61_1;//functioncall::param T2 int x_62_0;//status T2 int x_62_1;//status T2 int x_63_0;//functioncall::param T2 int x_63_1;//functioncall::param T2 int x_64_0;//functioncall::param T2 int x_64_1;//functioncall::param T2 int x_65_0;//functioncall::param T2 int x_65_1;//functioncall::param T2 int x_66_0;//functioncall::param T2 int x_66_1;//functioncall::param T2 int x_67_0;//functioncall::param T2 int x_67_1;//functioncall::param T2 int x_67_2;//functioncall::param T2 int x_68_0;//functioncall::param T2 int x_68_1;//functioncall::param T2 T_0_0_0: x_0_0 = 0; T_0_1_0: x_1_0 = 0; T_0_2_0: x_2_0 = 0; T_0_3_0: x_3_0 = 0; T_0_4_0: x_4_0 = 0; T_0_5_0: x_5_0 = 0; T_0_6_0: x_6_0 = 0; T_0_7_0: x_7_0 = 0; T_0_8_0: x_8_0 = 0; T_0_9_0: x_9_0 = 0; T_0_10_0: x_10_0 = 0; T_0_11_0: x_11_0 = 0; T_0_12_0: x_13_0 = 2877999712; T_0_13_0: x_14_0 = 3240125024; T_0_14_0: x_15_0 = 0; T_0_15_0: x_16_0 = 113345850; T_0_16_0: x_16_1 = -1; T_0_17_0: x_17_0 = 0; T_0_18_0: x_18_0 = 562433509; T_0_19_0: x_18_1 = x_17_0; T_0_20_0: x_19_0 = 1822938174; T_0_21_0: x_19_1 = 97; T_0_22_0: x_20_0 = 72847432; T_0_23_0: x_20_1 = 0; T_0_24_0: x_21_0 = 1256682038; T_0_25_0: x_21_1 = 0; T_0_26_0: x_22_0 = -1054846912; T_0_27_0: x_23_0 = 1941983500; T_0_28_0: x_23_1 = x_22_0; T_0_29_0: x_24_0 = 138230812; T_0_30_0: x_24_1 = 0; T_0_31_0: x_12_0 = -1; T_0_32_0: x_0_1 = 5; T_0_33_0: x_1_1 = 72; T_0_34_0: x_2_1 = 69; T_0_35_0: x_3_1 = 76; T_0_36_0: x_4_1 = 76; T_0_37_0: x_5_1 = 79; T_0_38_0: x_25_0 = 2030213659; T_0_39_0: x_25_1 = 83; T_0_40_0: x_26_0 = 2085798299; T_0_41_0: x_26_1 = 1; T_0_42_0: x_27_0 = 790234102; T_0_43_0: x_27_1 = 1; T_0_44_0: x_28_0 = 1164547303; T_0_45_0: x_28_1 = 1; T_0_46_0: x_29_0 = 1390205941; T_0_47_0: x_29_1 = 82; T_0_48_0: x_30_0 = 1679074932; T_0_49_0: x_30_1 = 90; T_0_50_0: x_31_0 = 5458230; T_0_51_0: x_31_1 = 1; T_0_52_0: x_32_0 = 1330703582; T_0_53_0: x_32_1 = 1; T_0_54_0: x_33_0 = 65833944; T_0_55_0: x_33_1 = 2; T_0_56_0: x_34_0 = 1143211766; T_0_57_0: x_34_1 = 2; T_0_58_0: x_11_1 = 3; T_2_59_2: x_53_0 = 1982699063; T_2_60_2: x_53_1 = x_33_1; T_2_61_2: x_54_0 = 709847062; T_2_62_2: x_54_1 = x_34_1; T_2_63_2: x_55_0 = 0; T_2_64_2: x_56_0 = 1004184065; T_2_65_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0) x_57_0 = -1047779408; T_2_66_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0) x_58_0 = 11119; T_2_67_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0) x_59_0 = 1086511992; T_2_68_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0) x_59_1 = x_0_1; T_2_69_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_0_1 == x_59_1) x_60_0 = 0; T_2_70_2: x_35_0 = 1274884262; T_2_71_2: x_35_1 = x_27_1; T_1_72_1: x_36_0 = 1210234708; T_1_73_1: x_36_1 = x_28_1; T_1_74_1: x_37_0 = 0; T_1_75_1: x_38_0 = 1006285313; T_1_76_1: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_0_1 == x_59_1 && 0 == x_12_0 + 1) x_12_1 = 2; T_1_77_1: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_0_1 == x_59_1 && 2 == x_12_1) x_60_1 = 0; T_2_78_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_23_1 == 0 && 2 == x_12_1) x_61_0 = 1439192302; T_2_79_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_23_1 == 0 && 2 == x_12_1) x_61_1 = x_20_1 + -1*x_21_1 + x_24_1; T_2_80_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_23_1 == 0 && 2 == x_12_1) x_20_2 = 0; T_2_81_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_23_1 == 0 && 2 == x_12_1) x_21_2 = 0; T_2_82_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_23_1 == 0 && 2 == x_12_1) x_23_2 = 1; T_2_83_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && 2 == x_12_1) x_57_1 = 0; T_2_84_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && 0 == x_57_1 && 2 == x_12_1) x_58_1 = x_59_1; T_2_85_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && 0 == x_57_1 && 2 == x_12_1) x_20_3 = x_20_2 + x_58_1; T_2_86_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && 0 == x_57_1 && 2 == x_12_1) x_59_2 = -1*x_58_1 + x_59_1; T_2_87_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_59_2 <= 0 && 2 == x_12_1) x_62_0 = 0; T_2_88_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_59_2 <= 0 && 2 == x_12_1) x_12_2 = -1; T_2_89_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_59_2 <= 0) x_62_1 = 0; T_2_90_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0) x_63_0 = 486186165; T_2_91_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0) x_63_1 = x_57_1; T_2_92_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0) x_64_0 = 1650419706; T_2_93_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0) x_64_1 = x_63_1; T_2_94_2: if (x_0_1 + x_54_1 > x_11_1 && x_0_1 != 0) x_0_2 = 0; T_2_95_2: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_39_0 = 0; T_1_96_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0) x_40_0 = 0; T_1_97_1: if (x_54_1 < x_11_1) x_65_0 = 186726175; T_1_98_1: if (x_54_1 < x_11_1) x_65_1 = 47759032149760; T_1_99_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0) x_41_0 = 273767384; T_2_100_2: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0) x_41_1 = x_0_2; T_2_101_2: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_0_2 == x_41_1) x_42_0 = 0; T_2_102_2: if (x_54_1 < x_11_1) x_66_0 = 1553153250; T_1_103_1: if (x_54_1 < x_11_1) x_66_1 = x_0_2 + x_54_1; T_1_104_1: if (x_54_1 < x_11_1) x_55_1 = 0; T_1_105_1: if (x_54_1 < x_11_1 && x_55_1 < x_53_1) x_67_0 = 498702093; T_2_106_2: if (x_54_1 < x_11_1 && x_55_1 < x_53_1) x_67_1 = 47759032149760; T_2_107_2: if (x_54_1 < x_11_1) x_55_2 = 1 + x_55_1; T_2_108_2: if (x_54_1 < x_11_1 && x_55_2 < x_53_1) x_67_2 = 47759032149760; T_2_109_2: if (x_54_1 < x_11_1) x_55_3 = 1 + x_55_2; T_2_110_2: if (x_54_1 < x_11_1) x_68_0 = 1474169632; T_2_111_2: if (x_54_1 < x_11_1) x_68_1 = 47759032149760; T_2_112_2: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_0_2 == x_41_1 && 0 == x_12_2 + 1) x_12_3 = 1; T_2_113_2: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_0_2 == x_41_1 && 1 == x_12_3) x_42_1 = 0; T_2_114_2: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && 1 == x_12_3) x_43_0 = 1968378286; T_2_115_2: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && 1 == x_12_3) x_43_1 = 0; T_1_116_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_41_1 <= 0 && 1 == x_12_3) x_44_0 = 0; T_1_117_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_41_1 <= 0 && 1 == x_12_3) x_12_4 = -1; T_1_118_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0 && x_18_1 != 0 && x_41_1 <= 0) x_44_1 = 0; T_1_119_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_45_0 = 612047943; T_1_120_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_45_1 = x_43_1; T_1_121_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_46_0 = 2036603141; T_1_122_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_46_1 = x_45_1; T_1_123_1: if (x_0_1 + x_36_1 > x_11_1 && x_0_1 != 0) x_0_3 = 0; T_1_124_1: if (x_36_1 < x_11_1) x_47_0 = 1643832812; T_1_125_1: if (x_36_1 < x_11_1) x_47_1 = 47759030048512; T_1_126_1: if (x_54_1 < x_11_1) x_0_4 = x_0_2 + x_54_1; T_1_127_1: if (x_36_1 < x_11_1) x_48_0 = 684895376; T_1_128_1: if (x_36_1 < x_11_1) x_48_1 = x_0_3 + x_36_1; T_1_129_1: if (x_36_1 < x_11_1) x_37_1 = 0; T_1_130_1: if (x_36_1 < x_11_1 && x_37_1 < x_35_1) x_49_0 = 1145801531; T_2_131_2: if (x_36_1 < x_11_1 && x_37_1 < x_35_1) x_49_1 = 47759030048512; T_1_132_1: if (x_36_1 < x_11_1) x_37_2 = 1 + x_37_1; T_1_133_1: if (x_36_1 < x_11_1) x_50_0 = 1438332665; T_1_134_1: if (x_36_1 < x_11_1) x_50_1 = 47759030048512; T_1_135_1: if (x_36_1 < x_11_1) x_0_5 = x_0_4 + x_36_1; T_1_136_1: if (x_36_1 < x_11_1) x_51_0 = 823126188; T_1_137_1: if (x_36_1 < x_11_1) x_51_1 = 47759030048512; T_1_138_1: if (x_36_1 < x_11_1) x_52_0 = 1028531543; T_1_139_1: if (x_36_1 < x_11_1) x_52_1 = 47759030048512; T_1_140_1: if (x_36_1 < x_11_1) assert(x_0_5 == x_48_1); }
the_stack_data/178265376.c
extern void __VERIFIER_error() __attribute__ ((__noreturn__)); //Symmetry-Aware Predicate Abstraction for Shared-Variable Concurrent Programs (Extended Technical Report). CoRR abs/1102.2330 (2011) #include <pthread.h> #define assume(e) __VERIFIER_assume(e) #define assert(e) { if(!(e)) { ERROR: __VERIFIER_error();(void)0; } } unsigned int r = 0; unsigned int s = 0; void __VERIFIER_atomic_inc_r() { /* reachable */ assume(r!=-1); //to avoid overflows r = r + 1; } void* thr1(void* arg){ unsigned int l = 0; __VERIFIER_atomic_inc_r(); if(r == 1){ L3: /* invariant: l >= 0 */ s = s + 1; l = l + 1; /* assert not proved */ assert(s == l); goto L3; } /* reachable */ return 0; } int main(){ pthread_t t; /* reachable */ while(1){ /* reachable */ pthread_create(&t, 0, thr1, 0); } /* UNREACHABLE */ }
the_stack_data/67324944.c
#include<stdio.h> #include<stdlib.h> #include<limits.h> int main() { int b[100],p[100]; int bno,pno,i,j; scanf("%d",&bno); scanf("%d",&pno); printf("enter the block size\n"); for(i=0;i<bno;i++) scanf("%d",&b[i]); printf("enter the process size\n"); for(i=0;i<pno;i++) scanf("%d",&p[i]); int allot[pno]; for(i=0;i<pno;i++) allot[i]=0; for(i=0;i<pno;i++) { int max=INT_MIN; int index=-1; for(j=0;j<bno;j++) { if(p[i] <= b[j] && b[j]!=0 && max < b[j]) { max=b[j]; index=j; } if(index!=-1 && b[index]!=0) { allot[i]=max; b[index]=0; } } } printf("PNO\tPsize\tBsize\n"); for(i=0;i<pno;i++) { if(allot[i]!=0) printf("%d\t%d\t%d\n",i,p[i],allot[i]); else printf("%d\t%d\tNot alloted\n",i,p[i]); } return 0; }
the_stack_data/285383.c
/*** * This code is a part of EvoApproxLib library (ehw.fit.vutbr.cz/approxlib) distributed under The MIT License. * When used, please cite the following article(s): V. Mrazek, L. Sekanina, Z. Vasicek "Libraries of Approximate Circuits: Automated Design and Application in CNN Accelerators" IEEE Journal on Emerging and Selected Topics in Circuits and Systems, Vol 10, No 4, 2020 * This file contains a circuit from a sub-set of pareto optimal circuits with respect to the pwr and mre parameters ***/ // MAE% = 0.47 % // MAE = 1.2 // WCE% = 1.17 % // WCE = 3.0 // WCRE% = 200.00 % // EP% = 62.50 % // MRE% = 4.89 % // MSE = 2.8 // PDK45_PWR = 0.026 mW // PDK45_AREA = 59.1 um2 // PDK45_DELAY = 0.47 ns #include <stdint.h> #include <stdlib.h> uint64_t add8se_7LN(const uint64_t B,const uint64_t A) { uint64_t dout_16, dout_23, dout_24, dout_28, dout_29, dout_30, dout_31, dout_32, dout_33, dout_34, dout_35, dout_36, dout_37, dout_38, dout_39, dout_40, dout_41, dout_42, dout_43, dout_44, dout_45, dout_46, dout_47, dout_48, dout_49, dout_50, dout_51, dout_52, dout_53, dout_54; uint64_t O; dout_16=((A >> 0)&1)|((B >> 0)&1); dout_23=((A >> 2)&1)^((B >> 2)&1); dout_24=((A >> 2)&1)&((B >> 2)&1); dout_28=((A >> 3)&1)^((B >> 3)&1); dout_29=((A >> 3)&1)&((B >> 3)&1); dout_30=dout_28&dout_24; dout_31=dout_28^dout_24; dout_32=dout_29|dout_30; dout_33=((A >> 4)&1)^((B >> 4)&1); dout_34=((A >> 4)&1)&((B >> 4)&1); dout_35=dout_33&dout_32; dout_36=dout_33^dout_32; dout_37=dout_34|dout_35; dout_38=((A >> 5)&1)^((B >> 5)&1); dout_39=((A >> 5)&1)&((B >> 5)&1); dout_40=dout_38&dout_37; dout_41=dout_38^dout_37; dout_42=dout_39|dout_40; dout_43=((A >> 6)&1)^((B >> 6)&1); dout_44=((A >> 6)&1)&((B >> 6)&1); dout_45=dout_43&dout_42; dout_46=dout_43^dout_42; dout_47=dout_44|dout_45; dout_48=((A >> 7)&1)^((B >> 7)&1); dout_49=((A >> 7)&1)&((B >> 7)&1); dout_50=dout_48&dout_47; dout_51=dout_48^dout_47; dout_52=dout_49|dout_50; dout_53=((A >> 7)&1)^((B >> 7)&1); dout_54=dout_53^dout_52; O = 0; O |= (dout_16&1) << 0; O |= (((A >> 1)&1)&1) << 1; O |= (dout_23&1) << 2; O |= (dout_31&1) << 3; O |= (dout_36&1) << 4; O |= (dout_41&1) << 5; O |= (dout_46&1) << 6; O |= (dout_51&1) << 7; O |= (dout_54&1) << 8; return O; }
the_stack_data/24153.c
/* * strtoul.c -- * * Source code for the "strtoul" library procedure. * * Copyright (c) 1988 The Regents of the University of California. * All rights reserved. * * Permission is hereby granted, without written agreement and without * license or royalty fees, to use, copy, modify, and distribute this * software and its documentation for any purpose, provided that the * above copyright notice and the following two paragraphs appear in * all copies of this software. * * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. */ #ifndef lint static char rcsid[] = "$Header: /home/auspex6/CVSROOT/tcl/compat/strtoul.c,v 1.1.1.1 1993/11/29 10:44:46 a904209 Exp $ SPRITE (Berkeley)"; #endif /* not lint */ #include <ctype.h> /* * The table below is used to convert from ASCII digits to a * numerical equivalent. It maps from '0' through 'z' to integers * (100 for non-digit characters). */ static char cvtIn[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, /* '0' - '9' */ 100, 100, 100, 100, 100, 100, 100, /* punctuation */ 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, /* 'A' - 'Z' */ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 100, 100, 100, 100, 100, 100, /* punctuation */ 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, /* 'a' - 'z' */ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35}; /* *---------------------------------------------------------------------- * * strtoul -- * * Convert an ASCII string into an integer. * * Results: * The return value is the integer equivalent of string. If endPtr * is non-NULL, then *endPtr is filled in with the character * after the last one that was part of the integer. If string * doesn't contain a valid integer value, then zero is returned * and *endPtr is set to string. * * Side effects: * None. * *---------------------------------------------------------------------- */ unsigned long int strtoul(string, endPtr, base) char *string; /* String of ASCII digits, possibly * preceded by white space. For bases * greater than 10, either lower- or * upper-case digits may be used. */ char **endPtr; /* Where to store address of terminating * character, or NULL. */ int base; /* Base for conversion. Must be less * than 37. If 0, then the base is chosen * from the leading characters of string: * "0x" means hex, "0" means octal, anything * else means decimal. */ { register char *p; register unsigned long int result = 0; register unsigned digit; int anyDigits = 0; /* * Skip any leading blanks. */ p = string; while (isspace(*p)) { p += 1; } /* * If no base was provided, pick one from the leading characters * of the string. */ if (base == 0) { if (*p == '0') { p += 1; if (*p == 'x') { p += 1; base = 16; } else { /* * Must set anyDigits here, otherwise "0" produces a * "no digits" error. */ anyDigits = 1; base = 8; } } else base = 10; } else if (base == 16) { /* * Skip a leading "0x" from hex numbers. */ if ((p[0] == '0') && (p[1] == 'x')) { p += 2; } } /* * Sorry this code is so messy, but speed seems important. Do * different things for base 8, 10, 16, and other. */ if (base == 8) { for ( ; ; p += 1) { digit = *p - '0'; if (digit > 7) { break; } result = (result << 3) + digit; anyDigits = 1; } } else if (base == 10) { for ( ; ; p += 1) { digit = *p - '0'; if (digit > 9) { break; } result = (10*result) + digit; anyDigits = 1; } } else if (base == 16) { for ( ; ; p += 1) { digit = *p - '0'; if (digit > ('z' - '0')) { break; } digit = cvtIn[digit]; if (digit > 15) { break; } result = (result << 4) + digit; anyDigits = 1; } } else { for ( ; ; p += 1) { digit = *p - '0'; if (digit > ('z' - '0')) { break; } digit = cvtIn[digit]; if (digit >= base) { break; } result = result*base + digit; anyDigits = 1; } } /* * See if there were any digits at all. */ if (!anyDigits) { p = string; } if (endPtr != 0) { *endPtr = p; } return result; }
the_stack_data/503804.c
#include <stdio.h> #include <math.h> #include <fenv.h> const char *mode(int mode) { switch(mode) { case FE_DOWNWARD: return "FE_DOWNWARD"; case FE_TONEAREST: return "FE_TONEAREST"; case FE_TOWARDZERO: return "FE_TOWARDZERO"; case FE_UPWARD: return "FE_UPWARD"; default: return "Unknown"; } } #define NUMELEMS(x) (sizeof((x)) / sizeof((x)[0])) int main() { printf("Initial rounding mode is %s\n", mode(fegetround())); // The functions round() and roundf() are specced to always round *away* from zero (negative numbers down, positive numbers up) // fesetround() mode dictates what to do when rounding halfway numbers (-0.5, 0.5, 1.5, 2.5, ...) in functions rint(), rintf(), lrint(), lrintf(), llrint() and llrintf(): // FE_DOWNWARD always rounds down to the smaller integer. // FE_TONEAREST performs banker's rounding (always round towards the even number) // FE_TOWARDZERO rounds negative numbers up, and positive numbers down // FE_UPWARD always rounds up to the next higher integer. // const int modes[] = { FE_DOWNWARD, FE_TONEAREST, FE_TOWARDZERO, FE_UPWARD }; // TODO: Currently only supported mode is FE_TONEAREST. const int modes[] = { FE_TONEAREST }; const double interestingDoubles[] = { -4.5, -3.6, -3.5, -3.4, -2.6, -2.5, -2.4, -1.5, -0.5, 0, 0.5, 1.4, 1.5, 1.6, 2.5, 3.5, 4.5 }; const float interestingFloats[] = { -4.5f, -3.6f, -3.5f, -3.4f, -2.6f, -2.5f, -2.4f, -1.5f, -0.5f, 0, 0.5f, 1.4f, 1.5f, 1.6f, 2.5f, 3.5f, 4.5f }; for(int i = 0; i < NUMELEMS(modes); ++i) { int ret = fesetround(modes[i]); int modeAfter = fegetround(); printf("fesetround(%s) returned %d, fegetround() afterwards returns %s. Test results:\n", mode(modes[i]), ret, mode(modeAfter)); for(int j = 0; j < NUMELEMS(interestingDoubles); ++j) printf("%s: round(%.1f)=%.1f\n", mode(modeAfter), interestingDoubles[j], round(interestingDoubles[j])); for(int j = 0; j < NUMELEMS(interestingFloats); ++j) printf("%s: roundf(%.1f)=%.1f\n", mode(modeAfter), interestingFloats[j], roundf(interestingFloats[j])); for(int j = 0; j < NUMELEMS(interestingDoubles); ++j) printf("%s: rint(%.1f)=%.1f\n", mode(modeAfter), interestingDoubles[j], rint(interestingDoubles[j])); for(int j = 0; j < NUMELEMS(interestingDoubles); ++j) printf("%s: rintf(%.1f)=%.1f\n", mode(modeAfter), interestingFloats[j], rint(interestingFloats[j])); for(int j = 0; j < NUMELEMS(interestingDoubles); ++j) printf("%s: lrint(%.1f)=%ld\n", mode(modeAfter), interestingDoubles[j], lrint(interestingDoubles[j])); for(int j = 0; j < NUMELEMS(interestingDoubles); ++j) printf("%s: lrintf(%.1f)=%ld\n", mode(modeAfter), interestingFloats[j], lrintf(interestingFloats[j])); for(int j = 0; j < NUMELEMS(interestingDoubles); ++j) printf("%s: llrint(%.1f)=%lld\n", mode(modeAfter), interestingDoubles[j], llrint(interestingDoubles[j])); for(int j = 0; j < NUMELEMS(interestingDoubles); ++j) printf("%s: llrintf(%.1f)=%lld\n", mode(modeAfter), interestingFloats[j], llrintf(interestingFloats[j])); } double param, fractpart, intpart; param = 3.14159265; fractpart = modf (param , &intpart); printf ("%f = %f + %f\n", param, intpart, fractpart); param = -3.14159265; fractpart = modf (param , &intpart); printf ("%f = %f + %f\n", param, intpart, fractpart); return 0; }
the_stack_data/1017499.c
/** * BOJ 3003번 C언어 소스 코드 * 작성자 : 동동매니저 (DDManager) * * ※ 실행 결과 * 사용 메모리 : 1,116 KB / 131,072 KB * 소요 시간 : 0 ms / 1,000 ms * * Copyright 2019. DDManager all rights reserved. */ #include <stdio.h> int main(void){ int a,b,c,d,e,f; scanf("%d %d %d %d %d %d",&a,&b,&c,&d,&e,&f); printf("%d %d %d %d %d %d\n",1-a,1-b,2-c,2-d,2-e,8-f); return 0; }
the_stack_data/786505.c
int main() { setregid(getegid(), getegid()); system("sh"); }
the_stack_data/228692.c
#include <stdio.h> #include <math.h> #include <malloc.h> typedef struct node{ /*single node of the tree */ int val; struct node *nodeleft, *noderight; }*btree; /* 'cos we wanna make a calloc allocation */ /* destroys everything UNDER given leaf */ void destroy_tree(struct node *leaf); /* Insert new value -- create node if neccesary */ void insert(int key, struct node **leaf); /* Search given tree for the val, returns NULL if nothing is found */ struct node *search(int key, struct node *tree); /* BFS -- travel across all tree */ void bypass(struct node *tree); int main(){ /* FILE *f1; f1 = fopen("input.txt", "ab+"); fprintf(f1, "Hello, world!"); fclose(f1); */ btree mytree = NULL; int i; for(i = 10; i> 0; i--){ insert(i, &mytree); } insert(11, &mytree); insert(12, &mytree); insert(13, &mytree); printf("%d\n", mytree->val); printf("%d\n", mytree->noderight->val); bypass(mytree); // printf("%d\n", mytree.nodeleft->val); return 0; } void insert(int key, struct node **leaf){/* double pointer because we want to allocate memory */ if(*leaf == NULL){ /* Memory is not allocated */ *leaf = (struct node *)malloc(sizeof(struct node)); (*(leaf))->val = key; /*init clild nodes too */ (*leaf)->noderight = NULL; (*leaf)->nodeleft = NULL; } else if((*leaf)->val < key){ /* Key is bigger -- insert to right child */ insert(key, &( (*leaf)->noderight ) ); } else if((*leaf)->val > key){ /* Key is smaller -- insert left */ insert(key, &( (*leaf)->nodeleft ) ); } } void destroy_tree(struct node *leaf){ /* If we actually have smth to destroy */ if(leaf != 0){ /* Do it recursive! */ destroy_tree(leaf->noderight); destroy_tree(leaf->nodeleft); free(leaf); } } struct node *search(int key, struct node *tree){ if(tree != NULL){ if(tree->val == key){ return tree; } else if(tree->val > key){ /* Search left node */ search(key, tree->nodeleft); } else if(tree->val < key){ /* Search right node */ search(key, tree->noderight); } } else return NULL; } void bypass(struct node *tree){ if(tree != NULL){ /* do smth here */ printf("%d ", tree->val); bypass(tree->noderight); bypass(tree->nodeleft); } }
the_stack_data/175142489.c
/* Função: ler um angulo em graus e convertê-lo para radianos Autor: Gabriel Maciel dos Santos Data: 22/03/18 */ #include <stdio.h> float grau_radianos(float); int main(){ float angulo; printf("Informe o valor em graus:\n"); scanf("%f", &angulo); printf("O valor de %.2f em radianos e: %.4f\n", angulo, grau_radianos(angulo)); return 0; } float grau_radianos(float ang){ float pi, radiano; pi = 3.14159265; radiano = (ang * pi) / 180; return radiano; }
the_stack_data/67326417.c
#include<stdio.h> void br(void); void ic(void); int main(void) { br(); printf(", "); ic(); printf("\n"); ic(); printf(", "); printf("\n"); br(); printf("\n"); return 0; } void br(void) { printf("Brazil, Russia"); } void ic(void) { printf("India, China"); }
the_stack_data/69104.c
#include <time.h> #include <string.h> #ifdef AIX # define STRTIM STRTIM #elif defined (__hpux) # define STRTIM strtim #else /* SOLARIS , CONVEX , IRIX , LINUX */ # define STRTIM strtim_ #endif void STRTIM (char *, int *); void STRTIM (char *string, int *maxlen) { time_t t = time (NULL); size_t s = strftime (string, (size_t) *maxlen, "%c", localtime (&t)); int i; for (i = (int) strlen (string); i < *maxlen; i++) *(string + i) = ' '; }
the_stack_data/111078685.c
#include <stdio.h> double sqrt(double n) { double s = n / 2; if (s < 0.0) return 0.0 / 0; if (s == 0.0) return 0.0; for (double t = 0.0; t = (s + n / s) / 2, s != t; s = t); return s; } int main(void) { double n; printf("n = "); if (scanf("%lf", &n) != 1) { return 1; } printf("sqrt(n) = %f\n", sqrt(n)); return 0; }
the_stack_data/175143701.c
#include <stddef.h> #include <assert.h> #include <stdlib.h> //FIXME out gets silently truncated if outsize is too small size_t escape(char* in, char* out, size_t outsize) { size_t l = 0; while(*in && l + 3 < outsize) { switch(*in) { case '\n': *out++ = '\\'; l++; *out = 'n'; break; case '\r': *out++ = '\\'; l++; *out = 'r'; break; case '\t': *out++ = '\\'; l++; *out = 't'; break; case '\\': *out++ = '\\'; l++; *out = '\\'; break; case '"': *out++ = '\\'; l++; *out = '"'; break; case '\v': *out++ = '\\'; l++; *out = 'v'; break; case '\?': *out++ = '\\'; l++; *out = '?'; break; case '\f': *out++ = '\\'; l++; *out = 'f'; break; case '\b': *out++ = '\\'; l++; *out = 'b'; break; case '\a': *out++ = '\\'; l++; *out = 'a'; break; default: *out = *in; } in++; out++; l++; } *out = 0; return l; } size_t unescape(char* in, char *out, size_t outsize) { size_t l = 0; while(*in && l + 1 < outsize) { switch (*in) { case '\\': ++in; assert(*in); switch(*in) { case 'n': *out='\n'; break; case 'r': *out='\r'; break; case 't': *out='\t'; break; case '\\': *out='\\'; break; case '"': *out='"'; break; case 'v': *out='\v'; break; case '?': *out = '\?'; break; case 'f': *out = '\f'; break; case '\'': *out = '\''; break; case 'b': *out = '\b'; break; case 'a': *out = '\a'; break; // FIXME add handling of hex and octal default: abort(); } break; default: *out=*in; } in++; out++; l++; } *out = 0; return l; }
the_stack_data/237643706.c
//Program that calculates the average of the grades, using dynamic allocation //import libraries #include <stdio.h> #include <stdlib.h> //function that returns the average float calculate_average(int *grades, int amount); int main(void) { int amount, *grades; float averageGrades; //reading the amount of grades printf("Type the amout of grades: "); scanf("%d", &amount); //OBS: Now, we can work with 'grades' like a normal vector grades = (int *)malloc(amount*sizeof(int)); //if there is no space for allocation if(grades == NULL) { printf("Insufficient space!!"); return 1; } //reading grades for(int i = 0; i < amount; i++) { printf("Type the grade %d: ", i+1); scanf("%d", &grades[i]); } //calculating average averageGrades = calculate_average(grades, amount); //showing results printf("The average of grades is: %.2f", averageGrades); //releasing memory free(grades); return 0; } float calculate_average(int *grades, int amount) { int sum = 0; for(int i = 0; i < amount; i++) //incrementing grades sum += grades[i]; //returning average return sum / (float)amount; }
the_stack_data/61074404.c
#include <stdio.h> int main() { long int a; printf("int : %d bytes\n", sizeof( int ) ); printf("short int: %d bytes\n", sizeof( short ) ); printf("long int: %d bytes\n", sizeof( a ) ); return 0; }
the_stack_data/89442.c
/* A recursion example */ #include <stdio.h> int main() { int exitstatus ; printf("Everyone should learn coding \n"); printf("Enter 1 to continue and 0 to exit "); scanf("%d",&exitstatus); if (exitstatus==1) main() ; // a recursive call }
the_stack_data/150142866.c
// Write a C program to split number into digits #include<stdio.h> int main() { int n,rev=0; printf("Enter a number\n"); scanf("%d",&n); printf("Digits of %d are ",n); for(int i=n;i>0;i/=10) rev=rev*10+(i%10); for(int j=rev;j>0;j/=10) printf("%d ",j%10); } /*Output: Enter a number 65432 Digits of 65432 are 6 5 4 3 2 */
the_stack_data/778287.c
int main() { int error = -5; if (error == -5) { // clear error return 0; // error is not out of scope } error = -6; // overwrite return 0; // error is out of scope }
the_stack_data/167330791.c
#include <unistd.h> #include <stdio.h> extern char **environ; int main(void) { char **envp; for (envp = environ; *envp; envp++) { puts(*envp); } return 0; }
the_stack_data/212642861.c
int main(void) { //return EXIT_SUCCESS; return 0x42; } //gcc ../example/null.c -o e -I include/ -pie -O3 -Wall -pedantic -std=c11 -Wl,--build-id=none -m64 -mcmodel=large -ffreestanding -nostdlib -nostdinc -fno-builtin
the_stack_data/76048.c
/* * Copyright (c) 1984 Regents of the University of California. * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)ttyslot.c 5.2 (Berkeley) 3/9/86"; #endif LIBC_SCCS and not lint /* * Return the number of the slot in the utmp file * corresponding to the current user: try for file 0, 1, 2. * Definition is the line number in the /etc/ttys file. */ #include <ttyent.h> char *ttyname(); char *rindex(); #define NULL 0 ttyslot() { register struct ttyent *ty; register char *tp, *p; register s; if ((tp = ttyname(0)) == NULL && (tp = ttyname(1)) == NULL && (tp = ttyname(2)) == NULL) return(0); if ((p = rindex(tp, '/')) == NULL) p = tp; else p++; setttyent(); s = 0; while ((ty = getttyent()) != NULL) { s++; if (strcmp(ty->ty_name, p) == 0) { endttyent(); return (s); } } endttyent(); return (0); }
the_stack_data/97686.c
#include <stdio.h> #include <stdlib.h> #include <math.h> /* read a block of data into datablock */ int read_block(FILE *input, int nbits, float *block, int nread) { int i, j, k, s1, s2, s3, s4, iread; unsigned char *charblock; unsigned char *shortblock; long seed = 0; /* decide how to read the data based on the number of bits per sample */ switch(nbits) { case 1: /* read n/8 bytes into character block containing n 1-bit pairs */ charblock = (unsigned char *)malloc(nread/8); iread = fread(charblock, 1, nread/8, input); k = 0; /* unpack 1-bit pairs into the datablock */ for (i = 0;i < iread; i++) { for (j = 0; i < 8; j++) { block[k++] = charblock[i] & 1; charblock[i] >>= 1; } } iread = k; /* this is the number of samples read in */ free(charblock); break; case 2: /* read n/4 bytes into character block containing n 2-bit pairs */ charblock = (unsigned char *)malloc(nread/4); iread = fread(charblock, 1, nread/4, input); j = 0; /* unpack 2-bit pairs into the datablock */ for (i = 0; i < iread; i++) { char2fourints(charblock[i], &s1, &s2, &s3, &s4); block[j++] = (float) s1; block[j++] = (float) s2; block[j++] = (float) s3; block[j++] = (float) s4; } iread *= 2; free(charblock); break; case 4: charblock = (unsigned char *)malloc(nread/2); iread = fread(charblock, 1, nread/2, input); j = 0; for(i = 0;i < iread; i++) { char2ints(charblock[i], &s1, &s2); block[j++] = (float)s1; block[j++] = (float)s2; } iread *= 2; free(charblock); break; case 8: charblock = (unsigned char *)malloc(nread); iread = fread(charblock, 1, nread, input); for (i = 0; i < iread;i++) { block[i] = (float) charblock[i]; } free(charblock); break; case 16: shortblock = (unsigned short *)malloc(2 * nread); iread = fread(shortblock, 2, nread, input); for (i = 0; i < iread; i++) { block[i] = (float)shortblock[i]; } free(shortblock); break; case 32: iread = fread(block, 4, nread, input); break; default: error_message("read_block - nbits can only be 4, 8 ,16 or 32!"); } return iread; }
the_stack_data/9609.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <limits.h> typedef struct { char* str; int size; } string; int best = INT_MAX; int calculatePosition(char* str, char* str2) { int i=0,count=0; while (str[count]) { while (str[count+i]==str2[i]) { i++; if (str[count+i]=='\0') return count; } i=0; count++; } return count; } void rec(string* strs, int count,char* str,int size) { int i; char flag = 0; for (i=0; i<count; i++) { if (strs[i].str) { flag = 1; int position = calculatePosition(str,strs[i].str); strcpy(str+sizeof(char)*position,strs[i].str); char* temp_str = strs[i].str; strs[i].str = NULL; rec(strs,count,str,position+strs[i].size); strs[i].str = temp_str; str[size]='\0'; } } if (!flag) { if (best>size) best=size; } } int main() { int count,i; scanf("%d ",&count); string* strs = (string*) malloc(sizeof(string)*count); for (i=0;i<count;i++) { strs[i].str = (char*) malloc(sizeof(char)*256); scanf("%s",strs[i].str); strs[i].size = (int) strlen(strs[i].str); } rec(strs,count,calloc(sizeof(char), 256*count+1),0); printf("%d",best); return 0; }
the_stack_data/167331419.c
//compile with a gcc readExample.cpp -lmercuryrfid //then a sudo ./a.out //#include <iostream> //#include "rfid.h" #include <stdio.h> void myCallback(const char* message) { printf("%s\n", message); } int main(int argc, char *argv[]) { RFIDinit(&myCallback); int reader = RFIDstartReader("tmr:///dev/rfid"); getchar(); RFIDstopReader(reader); RFIDclose(); return 0; }
the_stack_data/23575946.c
/* * Copyright 1999-2014 University of Chicago * * 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 _WIN32 #include "globus_i_xio_win32.h" /* all taken from DDK */ #ifndef NT_SUCCESS typedef LONG NTSTATUS; #define NT_SUCCESS(status) ((NTSTATUS)(status) >= 0) #endif typedef struct { union { NTSTATUS Status; PVOID Pointer; }; ULONG_PTR Information; } IO_STATUS_BLOCK, *PIO_STATUS_BLOCK; typedef enum { FileModeInformation = 16 } FILE_INFORMATION_CLASS; typedef struct { ULONG Mode; } FILE_MODE_INFORMATION; typedef NTSTATUS (__stdcall *globus_i_xio_win32_mode_nqif_t)( HANDLE FileHandle, PIO_STATUS_BLOCK IoStatusBlock, PVOID FileInformation, ULONG Length, FILE_INFORMATION_CLASS FileInformationClass); static HMODULE globus_i_xio_win32_mode_ntdll; static globus_i_xio_win32_mode_nqif_t globus_i_xio_win32_mode_query; int globus_i_xio_win32_mode_activate(void) { if(globus_i_xio_win32_mode_ntdll == NULL) { globus_i_xio_win32_mode_ntdll = LoadLibrary("ntdll.dll"); if(globus_i_xio_win32_mode_ntdll == NULL) { goto error_load; } globus_i_xio_win32_mode_query = (globus_i_xio_win32_mode_nqif_t) GetProcAddress( globus_i_xio_win32_mode_ntdll, "NtQueryInformationFile"); if(globus_i_xio_win32_mode_query == NULL) { goto error_symbol; } } return GLOBUS_SUCCESS; error_symbol: FreeLibrary(globus_i_xio_win32_mode_ntdll); error_load: return GLOBUS_FAILURE; } globus_bool_t globus_i_xio_win32_mode_is_overlapped( HANDLE handle) { IO_STATUS_BLOCK iosb; FILE_MODE_INFORMATION mode; if(NT_SUCCESS(globus_i_xio_win32_mode_query( handle, &iosb, &mode, sizeof(mode), FileModeInformation)) && NT_SUCCESS(iosb.Status) && (mode.Mode & (FILE_SYNCHRONOUS_IO_ALERT|FILE_SYNCHRONOUS_IO_NONALERT)) == 0) { return GLOBUS_TRUE; } else { return GLOBUS_FALSE; } } #endif /* TARGET_ARCH_WIN32 */
the_stack_data/8581.c
#include <stdio.h> #include <unistd.h> #include <sys/wait.h> int main(int argc, char *argv[]) { pid_t pid; int status; pid = fork(); if (pid == 0) { execlp("ls", "ls", "-l", ".", (char *)0); } waitpid(pid, &status, 0); return 0; }
the_stack_data/1100628.c
main(t,h,b){for(scanf("%d",&t);scanf("%d%d%d",&h,&b,&b),t;t--)printf("%d%02d\n",b%h?b%h:h,b/h+(b%h?1:0));}
the_stack_data/170453363.c
/**ARGS: pragmas --active --locate -DFOO -UBAR */ /**SYSCODE: = 0 */ #ifdef FOO #pragma This /* comment comment */\ is a pragma #endif #ifndef BAR #pragma This is a pragma #endif
the_stack_data/50486.c
#include <stdio.h> #include <dirent.h> #include <string.h> char * search_pattern; int contains_pattern(const char * string, const char * pattern) { int contains; int i; int j; int ps = strlen(pattern); int ds = strlen(string) - ps + 1; for (i = 0; i < ds; ++i) { contains = 1; for (j = 0; j < ps; ++j) { if (string[i + j] != pattern[j]) { contains = 0; break; } } if (contains) return 1; } return 0; } void search(const char * path) { DIR * dir = opendir(path); struct dirent * ent; char path_name[2048]; if (dir != NULL) { while ((ent = readdir(dir)) != NULL) { if (strcmp(ent->d_name, ".") != 0 && strcmp(ent->d_name, "..") != 0) { if (contains_pattern(ent->d_name, search_pattern)) printf("%s/%s\n", path, ent->d_name); if (ent->d_type == DT_DIR) { strcpy(path_name, path); strcat(path_name, "/"); strcat(path_name, ent->d_name); search(path_name); } } } } closedir(dir); } int main(int argc, char ** argv) { if (argc == 2) { search_pattern = ""; search(argv[1]); } else if (argc == 3) { search_pattern = argv[2]; search(argv[1]); } else { search_pattern = ""; search("."); } return 0; }