X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=parser.c;h=95769ad55a7b5164e0b49894ad3850ccc134ad9b;hb=42747fc80391054f0b2c4794645a1db73984b842;hp=58282bd9b7fa4f6c847c603b499958f180ad723a;hpb=0efdc4c5ef60cf4c15e9dddf3658d2115e4d5d93;p=xboard.git diff --git a/parser.c b/parser.c index 58282bd..95769ad 100644 --- a/parser.c +++ b/parser.c @@ -1,70 +1,112 @@ -/* A lexical scanner generated by flex */ -/* Scanner skeleton version: - * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ - */ +#line 3 "parser.c" + +#define YY_INT_ALIGNED short int + +/* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 +#define YY_FLEX_SUBMINOR_VERSION 34 +#if YY_FLEX_SUBMINOR_VERSION > 0 +#define FLEX_BETA +#endif +/* First, we deal with platform-specific or compiler-specific issues. */ + +/* begin standard C headers. */ #include +#include #include +#include -/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */ -#ifdef c_plusplus -#ifndef __cplusplus -#define __cplusplus -#endif -#endif +/* end standard C headers. */ +/* flex integer type definitions */ -#ifdef __cplusplus +#ifndef FLEXINT_H +#define FLEXINT_H -#include -#ifndef _WIN32 -#include +/* C99 systems have . Non-C99 systems may or may not. */ + +#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L + +/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, + * if you want the limit (max/min) macros for int types. + */ +#ifndef __STDC_LIMIT_MACROS +#define __STDC_LIMIT_MACROS 1 #endif -/* Use prototypes in function declarations. */ -#define YY_USE_PROTOS +#include +typedef int8_t flex_int8_t; +typedef uint8_t flex_uint8_t; +typedef int16_t flex_int16_t; +typedef uint16_t flex_uint16_t; +typedef int32_t flex_int32_t; +typedef uint32_t flex_uint32_t; +#else +typedef signed char flex_int8_t; +typedef short int flex_int16_t; +typedef int flex_int32_t; +typedef unsigned char flex_uint8_t; +typedef unsigned short int flex_uint16_t; +typedef unsigned int flex_uint32_t; +#endif /* ! C99 */ + +/* Limits of integral types. */ +#ifndef INT8_MIN +#define INT8_MIN (-128) +#endif +#ifndef INT16_MIN +#define INT16_MIN (-32767-1) +#endif +#ifndef INT32_MIN +#define INT32_MIN (-2147483647-1) +#endif +#ifndef INT8_MAX +#define INT8_MAX (127) +#endif +#ifndef INT16_MAX +#define INT16_MAX (32767) +#endif +#ifndef INT32_MAX +#define INT32_MAX (2147483647) +#endif +#ifndef UINT8_MAX +#define UINT8_MAX (255U) +#endif +#ifndef UINT16_MAX +#define UINT16_MAX (65535U) +#endif +#ifndef UINT32_MAX +#define UINT32_MAX (4294967295U) +#endif + +#endif /* ! FLEXINT_H */ + +#ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ -#if __STDC__ +/* C99 requires __STDC__ to be defined as 1. */ +#if defined (__STDC__) -#define YY_USE_PROTOS #define YY_USE_CONST -#endif /* __STDC__ */ +#endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ -#ifdef __TURBOC__ - #pragma warn -rch - #pragma warn -use -#include -#include -#define YY_USE_CONST -#define YY_USE_PROTOS -#endif - #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif - -#ifdef YY_USE_PROTOS -#define YY_PROTO(proto) proto -#else -#define YY_PROTO(proto) () -#endif - - /* Returned upon end-of-file. */ #define YY_NULL 0 @@ -79,71 +121,77 @@ * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ -#define BEGIN yy_start = 1 + 2 * +#define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ -#define YY_START ((yy_start - 1) / 2) +#define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ -#define YY_NEW_FILE yyrestart( yyin ) +#define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ +#ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 +#endif + +/* The state buf must be large enough to hold one state per character in the main buffer. + */ +#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) +#ifndef YY_TYPEDEF_YY_BUFFER_STATE +#define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; +#endif extern int yyleng; + extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 -/* The funky do-while in the following #define is used to turn the definition - * int a single C statement (which needs a semi-colon terminator). This - * avoids problems with code like: - * - * if ( condition_holds ) - * yyless( 5 ); - * else - * do_something_else(); - * - * Prior to using the do-while the compiler would get upset at the - * "else" because it interpreted the "if" statement as being all - * done when it reached the ';' after the yyless() call. - */ - -/* Return all but the first 'n' matched characters back to the input stream. */ - + #define YY_LESS_LINENO(n) + +/* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ - *yy_cp = yy_hold_char; \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ - yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \ + (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) -#define unput(c) yyunput( c, yytext_ptr ) +#define unput(c) yyunput( c, (yytext_ptr) ) /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). + * Given that the standard has decreed that size_t exists since 1989, + * I guess we can afford to depend on it. Manoj. */ -typedef unsigned int yy_size_t; +#ifndef YY_TYPEDEF_YY_SIZE_T +#define YY_TYPEDEF_YY_SIZE_T +typedef size_t yy_size_t; +#endif +#ifndef YY_STRUCT_YY_BUFFER_STATE +#define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; @@ -180,12 +228,16 @@ struct yy_buffer_state */ int yy_at_bol; + int yy_bs_lineno; /**< The line count. */ + int yy_bs_column; /**< The column count. */ + /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; + #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process @@ -199,28 +251,38 @@ struct yy_buffer_state * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 + }; +#endif /* !YY_STRUCT_YY_BUFFER_STATE */ -static YY_BUFFER_STATE yy_current_buffer = 0; +/* Stack of input buffers. */ +static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ +static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ +static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". + * + * Returns the top of the stack, or NULL. */ -#define YY_CURRENT_BUFFER yy_current_buffer +#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ + ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ + : NULL) +/* Same as previous macro, but useful when we know that the buffer stack is not + * NULL or when we need an lvalue. For internal use only. + */ +#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; - static int yy_n_chars; /* number of characters read into yy_ch_buf */ - - int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; -static int yy_init = 1; /* whether we need to initialize */ +static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches @@ -228,224 +290,250 @@ static int yy_start = 0; /* start state number */ */ static int yy_did_buffer_switch_on_eof; -void yyrestart YY_PROTO(( FILE *input_file )); +void yyrestart (FILE *input_file ); +void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); +YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); +void yy_delete_buffer (YY_BUFFER_STATE b ); +void yy_flush_buffer (YY_BUFFER_STATE b ); +void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); +void yypop_buffer_state (void ); -void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer )); -void yy_load_buffer_state YY_PROTO(( void )); -YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size )); -void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b )); -void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file )); -void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b )); -#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer ) +static void yyensure_buffer_stack (void ); +static void yy_load_buffer_state (void ); +static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); -YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size )); -YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str )); -YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len )); +#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) -static void *yy_flex_alloc YY_PROTO(( yy_size_t )); -static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t )); -static void yy_flex_free YY_PROTO(( void * )); +YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); +YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); +YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); + +void *yyalloc (yy_size_t ); +void *yyrealloc (void *,yy_size_t ); +void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ - if ( ! yy_current_buffer ) \ - yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ - yy_current_buffer->yy_is_interactive = is_interactive; \ + if ( ! YY_CURRENT_BUFFER ){ \ + yyensure_buffer_stack (); \ + YY_CURRENT_BUFFER_LVALUE = \ + yy_create_buffer(yyin,YY_BUF_SIZE ); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ - if ( ! yy_current_buffer ) \ - yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ - yy_current_buffer->yy_at_bol = at_bol; \ + if ( ! YY_CURRENT_BUFFER ){\ + yyensure_buffer_stack (); \ + YY_CURRENT_BUFFER_LVALUE = \ + yy_create_buffer(yyin,YY_BUF_SIZE ); \ + } \ + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } -#define YY_AT_BOL() (yy_current_buffer->yy_at_bol) +#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) +/* Begin user sect3 */ -#define YY_USES_REJECT typedef unsigned char YY_CHAR; + FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; + typedef int yy_state_type; + +extern int yylineno; + +int yylineno = 1; + extern char *yytext; #define yytext_ptr yytext -static yy_state_type yy_get_previous_state YY_PROTO(( void )); -static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state )); -static int yy_get_next_buffer YY_PROTO(( void )); -static void yy_fatal_error YY_PROTO(( yyconst char msg[] )); +static yy_state_type yy_get_previous_state (void ); +static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); +static int yy_get_next_buffer (void ); +static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ - yytext_ptr = yy_bp; \ - yyleng = (int) (yy_cp - yy_bp); \ - yy_hold_char = *yy_cp; \ + (yytext_ptr) = yy_bp; \ + yyleng = (size_t) (yy_cp - yy_bp); \ + (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ - yy_c_buf_p = yy_cp; + (yy_c_buf_p) = yy_cp; -#define YY_NUM_RULES 42 -#define YY_END_OF_BUFFER 43 -static yyconst short int yy_acclist[650] = +#define YY_NUM_RULES 43 +#define YY_END_OF_BUFFER 44 +/* This struct is not used in this scanner, + but its presence is necessary. */ +struct yy_trans_info + { + flex_int32_t yy_verify; + flex_int32_t yy_nxt; + }; +static yyconst flex_int16_t yy_acclist[646] = { 0, - 43, 41, 42, 41, 42, 41, 42, 40, 41, 42, - 41, 42, 25, 41, 42, 41, 42, 40, 41, 42, - 40, 41, 42,16410, 40, 41, 42,16410, 41, 42, - 40, 41, 42, 40, 41, 42, 40, 41, 42, 40, - 41, 42, 40, 41, 42, 40, 41, 42, 40, 41, - 42, 40, 41, 42, 40, 41, 42, 40, 41, 42, - 40, 41, 42, 41, 42, 40, 41, 42, 40, 41, - 42, 40, 41, 42, 40, 41, 42, 40, 41, 42, - 40, 41, 42, 40, 41, 42, 40, 41, 42, 40, - 41, 42, 40, 41, 42, 40, 41, 42, 40, 41, - - 42, 40, 41, 42, 40, 41, 42, 40, 41, 42, - 40, 41, 42, 40, 41, 42, 41, 42, 41, 42, - 40, 41, 42, 40, 41, 42, 40, 41, 42,16410, - 40, 41, 42,16410, 41, 42, 40, 41, 42, 40, - 41, 42, 40, 41, 42, 40, 41, 42, 40, 41, - 42, 40, 41, 42, 40, 41, 42, 40, 41, 42, - 40, 41, 42, 40, 41, 42, 40, 41, 42, 40, - 41, 42, 40, 41, 42, 40, 41, 42, 40, 41, - 42, 40, 41, 42, 40, 41, 42, 40, 41, 42, - 40, 41, 42, 40, 41, 42, 40, 41, 42, 40, - - 41, 42, 40, 41, 42, 40, 41, 42, 40, 41, - 42, 40, 41, 42, 40, 41, 42, 40, 41, 42, - 41, 42, 33, 40, 17, 40, 9, 40, 40, 40, - 16410, 8218, 40, 35, 40, 40, 40, 40, 40, 40, - 40, 40, 40, 40, 40, 9, 40, 40, 40, 40, - 40, 40, 36, 40, 3, 40, 40, 4, 40, 40, - 40, 40, 40, 40, 9, 40, 40, 40, 34, 40, - 40, 9, 40, 40, 40,16410, 8218, 40, 40, 40, - 40, 40, 40, 40, 40, 40, 40, 40, 40, 9, - 40, 40, 40, 40, 40, 40, 40, 3, 40, 40, - - 4, 40, 40, 40, 40, 40, 40, 9, 40, 40, - 40, 15, 9, 40, 23, 40, 23, 8, 40, 8218, - 22, 40, 22, 24, 40, 40, 40, 6, 40, 40, - 40, 40, 40, 40, 40, 9, 40, 40, 40, 40, - 20, 40, 4, 40, 40, 3, 3, 40, 3, 40, - 40, 4, 5, 40, 4, 4, 40, 40, 40, 40, - 9, 40, 40, 34, 39, 9, 40, 23, 40, 8, - 40, 22, 40, 35, 40, 40, 40, 6, 40, 40, - 40, 40, 40, 40, 40, 9, 40, 40, 40, 40, - 20, 40, 4, 40, 40, 3, 40, 3, 40, 40, - - 5, 40, 4, 40, 40, 40, 40, 9, 40, 40, - 38, 38, 37, 25, 25, 6, 40, 10, 6, 40, - 7, 40, 6, 40, 6, 40, 40, 40, 19, 40, - 40, 21, 40, 16, 40, 40, 40, 40, 40, 20, - 20, 40, 20, 40, 36, 3, 3, 2, 40, 5, - 4, 5, 5, 40, 40, 4, 4, 40, 40, 25, - 39, 40, 6, 40, 7, 40, 40, 40, 40, 40, - 19, 40, 40, 21, 40, 16, 40, 40, 40, 40, - 40, 20, 40, 20, 20, 40, 2, 40, 5, 40, - 40, 4, 40, 40, 7, 7, 1, 40, 40, 40, - - 19, 40, 40, 40, 21, 21, 40, 21, 40, 40, - 40, 40, 30, 36, 2, 2, 2, 40, 5, 5, - 5, 40, 39, 1, 40, 40, 40, 19, 40, 40, - 40, 21, 40, 21, 21, 40, 40, 40, 40, 20, - 39, 2, 40, 5, 40, 27, 38, 1, 23, 23, - 22, 22, 24, 24, 1, 1, 40, 20, 21, 40, - 40, 40, 11, 40, 40, 28, 36, 30, 2, 2, - 27, 34, 39, 39, 1, 40, 40, 40, 40, 21, - 39, 11, 40, 40, 20, 39, 18, 1, 24, 1, - 20, 21, 19, 40, 40, 40, 11, 40, 40, 40, - - 40, 21, 39, 40, 11, 40, 40, 12, 40, 40, - 40, 40, 12, 40, 40, 14, 40, 40, 40, 14, - 40, 40, 40, 39, 40, 40, 40, 40, 39, 39, - 40, 40, 31, 40, 39, 39, 31, 40, 13, 31, - 32, 32, 35, 39, 39, 31, 39, 34, 29 + 44, 42, 43, 42, 43, 42, 43, 41, 42, 43, + 42, 43, 26, 42, 43, 42, 43, 41, 42, 43, + 41, 42, 43,16411, 41, 42, 43,16411, 42, 43, + 41, 42, 43, 41, 42, 43, 41, 42, 43, 41, + 42, 43, 41, 42, 43, 41, 42, 43, 41, 42, + 43, 41, 42, 43, 41, 42, 43, 41, 42, 43, + 41, 42, 43, 42, 43, 41, 42, 43, 41, 42, + 43, 41, 42, 43, 41, 42, 43, 41, 42, 43, + 41, 42, 43, 41, 42, 43, 41, 42, 43, 41, + 42, 43, 41, 42, 43, 41, 42, 43, 41, 42, + + 43, 41, 42, 43, 41, 42, 43, 41, 42, 43, + 41, 42, 43, 41, 42, 43, 41, 42, 43, 42, + 43, 42, 43, 41, 42, 43, 41, 42, 43, 41, + 42, 43,16411, 41, 42, 43,16411, 42, 43, 41, + 42, 43, 41, 42, 43, 41, 42, 43, 41, 42, + 43, 41, 42, 43, 41, 42, 43, 41, 42, 43, + 41, 42, 43, 41, 42, 43, 41, 42, 43, 41, + 42, 43, 41, 42, 43, 41, 42, 43, 41, 42, + 43, 41, 42, 43, 41, 42, 43, 41, 42, 43, + 41, 42, 43, 41, 42, 43, 41, 42, 43, 41, + + 42, 43, 41, 42, 43, 41, 42, 43, 41, 42, + 43, 41, 42, 43, 41, 42, 43, 41, 42, 43, + 41, 42, 43, 41, 42, 43, 42, 43, 34, 41, + 18, 41, 10, 41, 41, 41,16411, 8219, 41, 36, + 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, + 41, 10, 41, 41, 41, 41, 37, 41, 4, 41, + 41, 5, 41, 41, 41, 41, 41, 41, 10, 41, + 41, 41, 35, 41, 41, 10, 41, 41, 41,16411, + 8219, 41, 41, 41, 41, 41, 41, 41, 41, 41, + 41, 41, 41, 10, 41, 41, 41, 41, 41, 4, + + 41, 41, 5, 41, 41, 41, 41, 41, 41, 10, + 41, 41, 41, 16, 10, 41, 24, 41, 24, 9, + 41, 8219, 23, 41, 23, 25, 41, 41, 41, 41, + 41, 7, 41, 41, 41, 41, 41, 41, 10, 41, + 41, 41, 41, 5, 41, 41, 4, 4, 41, 4, + 41, 4, 4, 41, 5, 6, 41, 5, 5, 41, + 41, 41, 41, 10, 41, 41, 35, 40, 10, 41, + 24, 41, 9, 41, 23, 41, 36, 41, 41, 41, + 41, 41, 7, 41, 41, 41, 41, 41, 41, 10, + 41, 41, 41, 41, 5, 41, 41, 4, 41, 4, + + 41, 4, 41, 6, 41, 5, 41, 41, 41, 41, + 10, 41, 41, 39, 39, 39, 38, 26, 26, 7, + 41, 11, 7, 41, 3, 41, 8, 41, 7, 41, + 7, 7, 41, 7, 41, 7, 41, 41, 41, 20, + 41, 41, 17, 41, 41, 41, 41, 41, 37, 4, + 41, 2, 41, 6, 5, 6, 6, 41, 6, 41, + 5, 5, 41, 41, 26, 40, 41, 7, 41, 3, + 41, 8, 41, 41, 7, 41, 7, 41, 41, 41, + 41, 20, 41, 41, 17, 41, 41, 41, 41, 41, + 41, 2, 41, 6, 41, 41, 5, 41, 41, 39, + + 8, 7, 7, 3, 8, 8, 41, 8, 1, 41, + 21, 41, 41, 20, 41, 41, 41, 41, 41, 41, + 31, 37, 2, 2, 2, 41, 2, 6, 6, 41, + 40, 8, 41, 1, 41, 41, 41, 20, 41, 41, + 41, 41, 41, 41, 2, 41, 6, 41, 28, 39, + 8, 1, 24, 24, 23, 23, 25, 25, 1, 1, + 41, 1, 22, 21, 41, 41, 41, 12, 41, 41, + 29, 37, 31, 2, 28, 35, 40, 40, 1, 41, + 41, 41, 41, 12, 41, 41, 19, 1, 25, 22, + 20, 41, 41, 41, 12, 41, 41, 41, 41, 41, + + 12, 41, 41, 13, 41, 41, 41, 41, 13, 41, + 41, 15, 41, 41, 41, 15, 41, 41, 41, 40, + 41, 41, 41, 41, 40, 40, 41, 41, 32, 41, + 40, 40, 32, 41, 14, 32, 33, 33, 36, 40, + 40, 32, 40, 35, 30 } ; -static yyconst short int yy_accept[698] = +static yyconst flex_int16_t yy_accept[720] = { 0, 1, 1, 1, 2, 4, 6, 8, 11, 13, 16, 18, 21, 25, 29, 31, 34, 37, 40, 43, 46, 49, 52, 55, 58, 61, 64, 66, 69, 72, 75, 78, 81, 84, 87, 90, 93, 96, 99, 102, 105, - 108, 111, 114, 117, 119, 121, 124, 127, 131, 135, - 137, 140, 143, 146, 149, 152, 155, 158, 161, 164, + 108, 111, 114, 117, 120, 122, 124, 127, 130, 134, + 138, 140, 143, 146, 149, 152, 155, 158, 161, 164, 167, 170, 173, 176, 179, 182, 185, 188, 191, 194, - 197, 200, 203, 206, 209, 212, 215, 218, 221, 223, - 223, 224, 225, 225, 225, 225, 225, 226, 226, 226, - 226, 227, 227, 229, 229, 229, 229, 230, 230, 230, - - 232, 232, 234, 234, 235, 235, 236, 236, 237, 237, - 238, 238, 239, 240, 241, 242, 243, 244, 245, 246, - 248, 249, 250, 251, 252, 253, 253, 253, 253, 253, - 254, 255, 257, 257, 258, 260, 261, 262, 263, 264, - 265, 267, 268, 269, 269, 269, 269, 270, 270, 271, - 271, 272, 274, 274, 275, 277, 277, 279, 279, 280, - 281, 281, 282, 283, 284, 285, 286, 287, 288, 289, - 290, 292, 293, 294, 295, 296, 297, 298, 300, 300, - 301, 303, 304, 305, 306, 307, 308, 310, 311, 312, - 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, - - 312, 313, 313, 313, 313, 313, 313, 315, 317, 318, - 320, 321, 321, 321, 321, 323, 324, 325, 325, 326, - 326, 327, 327, 328, 328, 330, 330, 330, 330, 330, - 331, 332, 333, 334, 335, 336, 338, 339, 340, 341, - 343, 343, 343, 343, 343, 345, 345, 346, 346, 347, - 349, 351, 352, 353, 353, 355, 356, 358, 359, 360, - 361, 363, 364, 365, 365, 365, 365, 365, 366, 368, - 370, 372, 374, 374, 375, 375, 376, 377, 377, 378, - 380, 381, 382, 383, 384, 385, 386, 388, 389, 390, - 391, 393, 395, 396, 396, 398, 400, 401, 403, 405, - - 406, 407, 408, 410, 411, 411, 411, 412, 413, 413, - 413, 414, 414, 414, 415, 415, 416, 416, 417, 417, - 417, 417, 418, 418, 418, 418, 418, 418, 418, 418, - 419, 421, 421, 423, 424, 425, 425, 426, 427, 427, - 427, 427, 427, 428, 429, 431, 431, 432, 434, 436, - 437, 438, 439, 440, 441, 443, 445, 445, 445, 445, - 445, 446, 447, 447, 448, 450, 451, 452, 452, 452, - 453, 455, 456, 457, 457, 459, 460, 460, 461, 461, - 461, 461, 461, 462, 462, 463, 463, 463, 465, 467, - 468, 468, 469, 470, 471, 473, 474, 476, 478, 479, - - 480, 481, 482, 484, 485, 487, 489, 491, 492, 494, - 495, 495, 495, 495, 495, 496, 496, 496, 496, 496, - 496, 496, 496, 496, 496, 497, 499, 499, 499, 499, - 499, 500, 501, 501, 503, 503, 504, 505, 506, 508, - 510, 511, 512, 513, 513, 513, 515, 515, 515, 516, - 516, 517, 519, 520, 520, 521, 521, 523, 523, 523, - 523, 523, 523, 523, 523, 524, 524, 524, 526, 527, - 528, 530, 531, 532, 534, 535, 537, 538, 539, 540, - 542, 544, 546, 546, 546, 548, 548, 549, 549, 550, - 550, 551, 551, 552, 552, 553, 553, 554, 554, 555, - - 555, 555, 555, 556, 558, 558, 558, 560, 560, 561, - 561, 561, 561, 561, 561, 562, 563, 565, 566, 568, - 568, 569, 570, 571, 571, 571, 573, 573, 573, 574, - 575, 575, 575, 577, 578, 579, 580, 582, 584, 585, - 587, 587, 588, 588, 588, 589, 589, 590, 591, 591, - 591, 591, 593, 593, 593, 594, 594, 594, 594, 594, - 595, 596, 597, 599, 600, 600, 600, 600, 600, 600, - 601, 602, 604, 605, 607, 608, 608, 608, 608, 608, - 608, 608, 609, 609, 609, 609, 609, 610, 611, 611, - 611, 611, 611, 612, 613, 613, 613, 613, 613, 614, - - 614, 614, 614, 615, 616, 618, 618, 618, 618, 618, - 619, 619, 620, 622, 622, 622, 622, 622, 623, 624, - 624, 624, 624, 624, 625, 626, 627, 627, 627, 627, - 627, 627, 628, 629, 629, 629, 629, 629, 630, 631, - 632, 633, 633, 633, 633, 633, 633, 635, 635, 635, - 635, 635, 636, 637, 639, 639, 639, 640, 640, 641, - 641, 642, 642, 642, 644, 644, 645, 646, 646, 646, - 646, 646, 648, 648, 648, 648, 648, 648, 648, 648, - 648, 648, 648, 648, 648, 648, 648, 648, 648, 648, - 648, 648, 648, 648, 649, 650, 650 - + 197, 200, 203, 206, 209, 212, 215, 218, 221, 224, + 227, 229, 229, 230, 231, 231, 231, 231, 231, 232, + 232, 232, 232, 233, 233, 235, 235, 235, 235, 236, + + 236, 236, 238, 238, 240, 240, 241, 241, 242, 242, + 243, 243, 244, 244, 245, 246, 247, 248, 249, 250, + 251, 252, 254, 255, 256, 257, 257, 257, 257, 257, + 258, 259, 261, 261, 262, 264, 265, 266, 267, 268, + 269, 271, 272, 273, 273, 273, 273, 274, 274, 275, + 275, 276, 278, 278, 279, 281, 281, 283, 283, 284, + 285, 285, 286, 287, 288, 289, 290, 291, 292, 293, + 294, 296, 297, 298, 299, 300, 302, 302, 303, 305, + 306, 307, 308, 309, 310, 312, 313, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 315, + + 315, 315, 315, 315, 315, 317, 319, 320, 322, 323, + 323, 323, 323, 325, 326, 327, 327, 328, 328, 329, + 329, 330, 331, 331, 332, 334, 334, 334, 334, 334, + 334, 334, 334, 335, 336, 337, 338, 339, 341, 342, + 343, 344, 344, 344, 344, 344, 346, 346, 347, 347, + 348, 350, 352, 353, 355, 356, 356, 358, 359, 361, + 362, 363, 364, 366, 367, 368, 368, 368, 368, 368, + 369, 371, 373, 375, 377, 377, 378, 378, 379, 380, + 380, 381, 382, 383, 385, 385, 386, 387, 388, 389, + 390, 392, 393, 394, 395, 397, 398, 398, 400, 402, + + 404, 406, 408, 409, 410, 411, 413, 414, 414, 414, + 415, 416, 416, 416, 417, 417, 417, 418, 418, 418, + 419, 419, 420, 420, 421, 421, 421, 421, 422, 422, + 422, 422, 422, 422, 422, 422, 423, 425, 425, 425, + 427, 429, 430, 430, 431, 431, 432, 434, 436, 437, + 438, 438, 438, 438, 438, 438, 438, 439, 440, 442, + 442, 443, 445, 446, 447, 448, 449, 449, 449, 449, + 449, 450, 451, 452, 452, 454, 455, 456, 456, 456, + 457, 459, 460, 461, 462, 462, 464, 465, 465, 466, + 466, 466, 466, 466, 467, 467, 468, 468, 468, 470, + + 472, 474, 475, 475, 477, 479, 480, 481, 482, 484, + 485, 487, 488, 489, 490, 491, 492, 494, 496, 497, + 499, 500, 500, 500, 500, 500, 501, 501, 501, 501, + 501, 502, 503, 504, 504, 504, 504, 504, 504, 504, + 504, 504, 504, 505, 505, 506, 508, 509, 511, 511, + 511, 511, 511, 511, 512, 513, 514, 514, 516, 516, + 517, 518, 519, 520, 521, 521, 521, 523, 523, 523, + 524, 524, 525, 527, 528, 529, 529, 529, 531, 531, + 531, 531, 531, 531, 531, 531, 532, 532, 532, 534, + 536, 537, 538, 540, 541, 542, 543, 544, 545, 547, + + 549, 549, 549, 549, 549, 549, 549, 551, 551, 552, + 553, 553, 554, 554, 555, 555, 556, 556, 557, 557, + 558, 558, 559, 559, 559, 559, 560, 562, 563, 563, + 563, 564, 564, 564, 565, 566, 566, 566, 566, 566, + 566, 567, 568, 570, 571, 573, 573, 574, 575, 575, + 575, 577, 577, 577, 578, 579, 579, 579, 581, 582, + 583, 584, 586, 587, 587, 588, 588, 588, 588, 588, + 589, 589, 590, 590, 590, 591, 591, 591, 592, 592, + 592, 592, 592, 593, 594, 595, 597, 598, 598, 598, + 598, 598, 598, 599, 600, 601, 603, 604, 604, 604, + + 604, 604, 604, 604, 605, 605, 605, 605, 605, 606, + 607, 607, 607, 607, 607, 608, 609, 609, 609, 609, + 609, 610, 610, 610, 610, 611, 612, 614, 614, 614, + 614, 614, 615, 615, 616, 618, 618, 618, 618, 618, + 619, 620, 620, 620, 620, 620, 621, 622, 623, 623, + 623, 623, 623, 623, 624, 625, 625, 625, 625, 625, + 626, 627, 628, 629, 629, 629, 629, 629, 629, 631, + 631, 631, 631, 631, 632, 633, 635, 635, 635, 636, + 636, 637, 637, 638, 638, 638, 640, 640, 641, 642, + 642, 642, 642, 642, 644, 644, 644, 644, 644, 644, + + 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, + 644, 644, 644, 644, 644, 644, 645, 646, 646 } ; -static yyconst int yy_ec[256] = +static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -454,13 +542,13 @@ static yyconst int yy_ec[256] = 11, 12, 13, 1, 14, 15, 16, 17, 18, 19, 20, 20, 20, 20, 20, 20, 20, 21, 22, 1, 23, 1, 1, 24, 25, 26, 27, 28, 29, 30, - 31, 32, 33, 33, 34, 35, 36, 37, 38, 34, - 34, 39, 40, 33, 41, 33, 42, 43, 33, 33, - 44, 1, 45, 1, 46, 1, 47, 48, 49, 50, + 31, 32, 33, 33, 34, 35, 36, 37, 38, 39, + 39, 40, 41, 42, 43, 42, 44, 45, 42, 42, + 46, 1, 47, 48, 49, 1, 50, 51, 52, 53, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, - 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, - 71, 68, 72, 1, 73, 1, 1, 1, 1, 1, + 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, + 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, + 74, 71, 75, 1, 76, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -477,707 +565,732 @@ static yyconst int yy_ec[256] = 1, 1, 1, 1, 1 } ; -static yyconst int yy_meta[74] = +static yyconst flex_int32_t yy_meta[77] = { 0, 1, 2, 3, 2, 1, 1, 1, 1, 4, 5, 6, 1, 7, 8, 1, 1, 9, 9, 9, 9, 10, 1, 11, 1, 12, 12, 12, 12, 12, 12, - 12, 12, 13, 12, 13, 13, 12, 12, 12, 13, - 13, 12, 14, 1, 1, 1, 15, 15, 15, 15, - 16, 15, 15, 15, 15, 15, 15, 15, 17, 18, - 18, 18, 18, 18, 17, 17, 17, 17, 17, 19, - 17, 1, 1 + 12, 12, 13, 12, 13, 13, 12, 12, 12, 12, + 13, 13, 13, 12, 14, 1, 1, 15, 1, 16, + 16, 16, 16, 17, 16, 16, 16, 16, 16, 16, + 16, 18, 19, 19, 19, 19, 19, 18, 18, 18, + 18, 18, 20, 18, 1, 1 } ; -static yyconst short int yy_base[784] = +static yyconst flex_int16_t yy_base[807] = { 0, - 0, 73, 2729, 4517, 122, 131, 0, 142, 2724, 140, - 151, 171, 162, 2724, 231, 159, 2672, 2661, 119, 2660, - 2673, 143, 2668, 2652, 211, 301, 361, 212, 209, 279, - 243, 284, 301, 286, 221, 303, 309, 329, 2670, 239, - 2665, 2649, 338, 403, 2710, 149, 380, 475, 348, 190, - 538, 240, 2659, 2648, 236, 2650, 2663, 157, 2658, 2642, - 379, 600, 314, 353, 377, 395, 401, 413, 382, 408, - 513, 424, 516, 423, 562, 448, 544, 607, 612, 2654, - 468, 0, 2696, 309, 617, 174, 4517, 2692, 672, 246, - 353, 2686, 2686, 2680, 517, 661, 2680, 576, 280, 655, - - 2679, 0, 2692, 4517, 0, 696, 0, 741, 0, 580, - 644, 586, 622, 2645, 2640, 2592, 2592, 692, 2617, 2616, - 714, 2606, 680, 720, 2592, 2606, 811, 537, 884, 4517, - 911, 961, 0, 986, 1035, 687, 753, 757, 2584, 2588, - 2587, 2582, 2591, 318, 2568, 825, 2636, 2635, 430, 2634, - 747, 820, 253, 830, 1085, 160, 563, 455, 1148, 1193, - 2633, 784, 843, 850, 760, 603, 692, 844, 854, 2596, - 657, 858, 893, 862, 893, 658, 1217, 1267, 2629, 1292, - 1342, 913, 926, 1157, 831, 894, 915, 918, 895, 845, - 2568, 464, 487, 538, 2620, 556, 1162, 1073, 2619, 2556, - - 4517, 1146, 1209, 2624, 2623, 2622, 2611, 2620, 2619, 0, - 4517, 2618, 2616, 2615, 2614, 2613, 384, 1029, 1062, 1078, - 1367, 1147, 1145, 1167, 1412, 2558, 2551, 2564, 2559, 1240, - 1422, 2540, 756, 651, 2557, 2593, 2551, 2547, 1214, 1482, - 722, 1208, 761, 1555, 1619, 0, 1624, 0, 2594, 2592, - 2591, 1174, 1426, 1490, 1673, 2591, 2589, 560, 2550, 2549, - 2583, 2530, 4517, 1499, 1039, 2591, 725, 2587, 928, 845, - 592, 917, 642, 2585, 1156, 1503, 1716, 2584, 1516, 1761, - 1531, 1564, 1470, 1565, 1464, 1429, 1580, 1490, 1566, 1598, - 1831, 1896, 1901, 2583, 1582, 2573, 1613, 1950, 1587, 1676, - - 1588, 1614, 1581, 1149, 1539, 2528, 4517, 775, 799, 2562, - 4517, 1709, 2557, 2556, 2493, 2492, 1202, 1709, 2546, 2545, - 2544, 2544, 615, 2543, 744, 2542, 1099, 1674, 832, 4517, - 2535, 1719, 2534, 2533, 1955, 1622, 4517, 1410, 2490, 2490, - 2487, 2487, 2494, 2493, 778, 892, 920, 2013, 0, 2511, - 2495, 2496, 2495, 0, 2086, 2159, 940, 1210, 1233, 1309, - 2540, 2533, 1434, 4517, 1776, 1424, 2529, 910, 1615, 1616, - 2528, 1173, 4517, 2476, 0, 2476, 1842, 2532, 1727, 1735, - 2488, 2473, 2530, 1003, 1736, 904, 599, 1216, 1523, 2186, - 2528, 1847, 1726, 1767, 1880, 1771, 2244, 1522, 1813, 1849, - - 1848, 1862, 2317, 2527, 2390, 2029, 1869, 1879, 1713, 2021, - 1747, 2479, 2517, 1595, 2500, 1809, 2511, 2443, 2504, 2441, - 2500, 2433, 2460, 1869, 4517, 2454, 2427, 2423, 2423, 2418, - 2468, 1049, 2006, 2467, 1075, 2440, 2410, 0, 2497, 2570, - 2400, 2394, 2448, 1341, 1756, 4517, 2446, 1803, 1343, 1491, - 1768, 2439, 2438, 1416, 4517, 2386, 0, 2425, 1871, 2421, - 1240, 2416, 2373, 2366, 1454, 1718, 1473, 2635, 1888, 2044, - 1889, 2042, 2023, 2678, 2425, 1990, 1886, 2052, 2063, 2425, - 1870, 1899, 1958, 1000, 4517, 2095, 1777, 2416, 2415, 2351, - 2350, 2411, 2410, 2347, 2346, 2407, 2406, 2343, 2342, 2393, - - 2388, 1840, 2017, 2382, 2320, 2326, 2011, 2298, 2303, 2338, - 2296, 2275, 2316, 2293, 2302, 2270, 2018, 2264, 4517, 2117, - 4517, 2296, 4517, 2290, 2119, 2300, 2251, 2231, 2282, 1960, - 1445, 289, 2107, 2108, 2114, 2068, 2281, 2125, 2131, 2280, - 2139, 4517, 2227, 2176, 2262, 2267, 2258, 4517, 2187, 2173, - 2177, 4517, 2166, 2214, 2211, 2157, 2198, 2148, 2103, 2111, - 2085, 2098, 0, 2077, 2196, 2071, 2002, 827, 1575, 2168, - 2135, 2063, 2170, 2136, 2164, 2203, 2000, 2014, 1683, 1939, - 1931, 2030, 1944, 1630, 1954, 1906, 2751, 1919, 1917, 1913, - 1385, 1565, 2824, 2249, 2204, 1850, 1863, 1832, 4517, 1806, - - 1637, 1912, 2897, 1920, 0, 1775, 1762, 1585, 945, 2970, - 2096, 1949, 2188, 2207, 1772, 1743, 2250, 1745, 1677, 1563, - 1551, 1686, 681, 2260, 1568, 1502, 2258, 1408, 1406, 2243, - 2170, 1358, 1313, 1240, 1258, 1751, 1127, 2261, 2312, 1072, - 926, 2279, 2133, 809, 1969, 2073, 0, 855, 705, 711, - 1429, 2317, 2305, 0, 2284, 631, 4517, 546, 2094, 480, - 4517, 413, 392, 4517, 1794, 2351, 2357, 2298, 325, 206, - 1884, 2303, 2352, 203, 1915, 365, 2138, 2221, 2364, 2365, - 2369, 2370, 2371, 2372, 2373, 2427, 2444, 2451, 2452, 2453, - 2454, 2456, 2296, 179, 4517, 4517, 3040, 3059, 3072, 3086, - - 3105, 3124, 3140, 3159, 3178, 3196, 1267, 1342, 1671, 3214, - 3233, 1702, 3252, 3271, 3290, 3309, 3328, 3347, 3366, 3385, - 3404, 3416, 3435, 3454, 3473, 3492, 3511, 3519, 1896, 3529, - 3545, 3564, 3580, 3599, 3618, 3637, 3656, 3675, 3694, 3713, - 3732, 3744, 3763, 3782, 3801, 3820, 3839, 3858, 3877, 3893, - 3908, 3924, 3943, 3962, 3981, 3997, 4016, 4035, 4054, 4073, - 4092, 4111, 4130, 4149, 4168, 4187, 4206, 4225, 4244, 4259, - 4278, 4297, 4316, 4331, 4345, 4364, 4383, 4402, 4421, 4440, - 4459, 4478, 4497 + 0, 76, 3128, 4684, 128, 137, 0, 148, 3123, 146, + 158, 178, 169, 3120, 241, 165, 3065, 3054, 126, 253, + 249, 270, 257, 261, 300, 357, 420, 260, 272, 281, + 286, 295, 337, 326, 339, 351, 293, 255, 152, 176, + 400, 395, 418, 404, 426, 3116, 317, 446, 501, 478, + 167, 567, 221, 3062, 3051, 164, 403, 439, 471, 494, + 478, 576, 627, 545, 548, 584, 560, 553, 602, 450, + 604, 367, 642, 644, 687, 697, 698, 704, 705, 711, + 724, 3061, 612, 0, 3106, 299, 650, 181, 4684, 3102, + 787, 731, 310, 3096, 3096, 3094, 521, 751, 3094, 671, + + 167, 735, 3093, 0, 3106, 4684, 0, 811, 0, 864, + 0, 925, 971, 3058, 3053, 3056, 3061, 3033, 758, 3033, + 3063, 3062, 3031, 3044, 3035, 3045, 1043, 309, 1119, 4684, + 1146, 1199, 0, 1224, 1277, 762, 766, 770, 3022, 3026, + 3025, 3020, 3029, 310, 3010, 810, 3081, 3080, 426, 3079, + 752, 793, 381, 800, 1350, 338, 445, 448, 1416, 1469, + 3078, 1530, 3031, 3025, 802, 655, 725, 774, 3009, 3039, + 813, 3008, 938, 3017, 1554, 1607, 3070, 1632, 1685, 931, + 944, 1051, 581, 945, 946, 750, 739, 812, 3002, 458, + 473, 567, 679, 720, 1002, 839, 3057, 2991, 4684, 1059, + + 1064, 3062, 3059, 3048, 3033, 3042, 3041, 0, 4684, 3040, + 3039, 3038, 3037, 3036, 578, 857, 893, 954, 1735, 1772, + 972, 985, 1010, 1068, 1825, 1065, 2981, 2974, 2973, 2986, + 2981, 633, 1022, 1094, 2962, 1010, 2979, 3018, 2973, 2969, + 1141, 401, 1145, 719, 1899, 1966, 0, 1971, 0, 3018, + 3016, 3015, 4684, 1134, 1158, 1425, 2023, 3015, 3013, 601, + 2971, 2966, 3003, 2947, 4684, 1169, 1145, 3011, 198, 3011, + 1170, 1135, 947, 1351, 760, 3009, 1060, 1432, 2069, 3008, + 1437, 1536, 1533, 2122, 3007, 1762, 1907, 1419, 1908, 1161, + 1352, 1763, 1162, 1913, 2188, 2193, 3006, 1066, 2998, 1799, + + 2245, 1418, 1417, 948, 1927, 1471, 1067, 1287, 2954, 4684, + 788, 809, 825, 843, 869, 985, 4684, 1559, 2996, 2995, + 2929, 2927, 1306, 2290, 2984, 2983, 2982, 2981, 950, 2976, + 266, 2975, 1098, 1940, 638, 4684, 2354, 1941, 1379, 0, + 2393, 1132, 1608, 2392, 1943, 1686, 2980, 2979, 4684, 1442, + 2914, 2909, 2903, 2901, 2901, 2905, 2907, 2906, 792, 966, + 1004, 0, 2927, 2908, 2909, 2907, 1416, 1417, 1164, 1729, + 2955, 2948, 1498, 1554, 2065, 1895, 2947, 943, 1929, 1930, + 2945, 4684, 1149, 4684, 2889, 0, 2887, 2289, 2946, 1952, + 2352, 2897, 2878, 2938, 1113, 2026, 174, 1182, 2445, 1353, + + 2484, 2524, 2936, 1960, 2928, 2097, 2084, 2293, 2348, 2529, + 1472, 1942, 2349, 2282, 2346, 2482, 2539, 2191, 2392, 1828, + 1949, 2031, 2884, 1006, 2924, 1024, 1096, 1278, 1282, 1582, + 2063, 2923, 2922, 1581, 2921, 2855, 2919, 2853, 2913, 2841, + 2898, 2065, 4684, 2123, 2246, 2904, 4684, 2578, 2859, 2839, + 2306, 2838, 2833, 2820, 2881, 1558, 2496, 2869, 1597, 2843, + 2817, 2796, 2795, 2851, 1764, 2258, 4684, 2846, 2263, 2482, + 2521, 2541, 2836, 4684, 2809, 1233, 2752, 0, 2799, 2551, + 2794, 1951, 2794, 2748, 2734, 1354, 1774, 1770, 2350, 2619, + 2531, 2534, 2661, 2657, 2487, 2071, 2581, 2664, 2660, 2525, + + 2621, 1645, 1423, 2787, 1585, 1612, 4684, 2673, 2786, 2664, + 2784, 2783, 2717, 2714, 2774, 2772, 2705, 2703, 2759, 2749, + 2678, 2677, 2733, 2728, 2665, 2666, 2720, 4684, 2660, 2652, + 2626, 2019, 2648, 4684, 2652, 2689, 2625, 2565, 2609, 2582, + 2593, 2565, 682, 2582, 4684, 2457, 4684, 2620, 2585, 2698, + 2591, 2540, 2533, 2568, 2015, 1599, 428, 2687, 2690, 2698, + 2700, 2701, 2711, 2627, 4684, 2511, 2531, 1690, 2716, 2528, + 2533, 2494, 2434, 2437, 4684, 2406, 2456, 2452, 2393, 2452, + 2376, 2338, 2363, 2310, 2319, 0, 2270, 2725, 2297, 2228, + 1771, 344, 2716, 2720, 2729, 2616, 2737, 2745, 2232, 2221, + + 1799, 2145, 2137, 2244, 2147, 1773, 2128, 2070, 2821, 2058, + 2053, 2012, 1935, 754, 2897, 2742, 2759, 1975, 1983, 1884, + 4684, 1844, 1816, 1888, 2973, 1962, 0, 1813, 1777, 1982, + 2073, 3049, 2203, 2085, 2743, 2762, 1763, 1754, 2542, 1661, + 1490, 1423, 1402, 2196, 586, 2207, 1411, 1374, 2763, 1230, + 1152, 2736, 2537, 1164, 1136, 1120, 1129, 2035, 1938, 2409, + 2753, 1002, 943, 2772, 2308, 929, 2208, 2408, 0, 938, + 832, 830, 2036, 2768, 2784, 0, 2777, 772, 4684, 676, + 2541, 730, 4684, 492, 392, 4684, 2200, 2827, 2810, 2786, + 328, 314, 2293, 2674, 2802, 253, 2669, 1543, 2033, 2165, + + 2804, 2805, 2846, 2847, 2851, 2860, 2872, 2873, 2876, 2879, + 2881, 2886, 2911, 2923, 2334, 158, 4684, 4684, 3122, 3142, + 3156, 3170, 3190, 3210, 3227, 3247, 3267, 3286, 2025, 2188, + 2219, 3305, 3325, 2392, 3345, 3365, 3382, 3402, 3422, 3442, + 3462, 3482, 3502, 3522, 3535, 3555, 3575, 3595, 3615, 3624, + 2398, 3640, 3657, 3677, 3694, 3714, 3734, 3754, 3774, 3794, + 3814, 3834, 3854, 3874, 3894, 3907, 3923, 3938, 3958, 3978, + 3998, 4015, 4031, 4048, 4068, 4085, 4105, 4125, 4145, 4165, + 4185, 4205, 4225, 4241, 4256, 4276, 4296, 4316, 4336, 4356, + 4376, 4396, 4416, 4432, 4452, 4472, 4492, 4508, 4523, 4543, + + 4563, 4583, 4603, 4623, 4643, 4663 } ; -static yyconst short int yy_def[784] = +static yyconst flex_int16_t yy_def[807] = { 0, - 696, 696, 696, 696, 696, 696, 697, 698, 696, 699, - 697, 696, 12, 700, 697, 15, 15, 15, 15, 15, - 15, 15, 15, 15, 15, 701, 697, 27, 27, 27, - 27, 27, 27, 27, 27, 27, 27, 27, 697, 697, - 697, 697, 697, 702, 696, 703, 703, 696, 48, 700, - 703, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 703, 62, 62, 62, 62, 62, 62, 62, 62, - 62, 62, 62, 703, 703, 703, 703, 703, 702, 696, - 696, 697, 704, 705, 704, 696, 696, 696, 696, 696, - 697, 696, 697, 696, 706, 706, 697, 706, 696, 12, - - 696, 697, 700, 696, 707, 697, 708, 697, 709, 108, - 696, 108, 108, 697, 697, 697, 697, 108, 106, 697, - 108, 697, 108, 108, 697, 710, 701, 710, 711, 696, - 697, 696, 712, 697, 697, 697, 697, 697, 697, 697, - 697, 697, 697, 702, 713, 702, 696, 714, 703, 696, - 703, 703, 696, 703, 696, 696, 703, 715, 703, 159, - 709, 160, 160, 160, 703, 703, 703, 703, 160, 159, - 703, 160, 703, 160, 160, 703, 159, 696, 712, 159, - 696, 703, 703, 703, 703, 703, 703, 703, 703, 702, - 696, 716, 717, 717, 718, 719, 716, 716, 720, 721, - - 696, 722, 722, 696, 696, 696, 697, 697, 696, 697, - 696, 696, 696, 696, 697, 696, 696, 696, 697, 696, - 697, 722, 697, 696, 697, 696, 696, 696, 696, 697, - 697, 697, 697, 697, 697, 697, 697, 697, 697, 723, - 724, 725, 726, 727, 697, 728, 697, 729, 728, 697, - 247, 697, 730, 730, 697, 254, 697, 697, 697, 697, - 697, 697, 696, 702, 696, 731, 696, 732, 733, 733, - 733, 733, 734, 731, 735, 733, 733, 222, 733, 277, - 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, - 736, 733, 277, 729, 733, 293, 733, 292, 733, 733, - - 733, 733, 733, 733, 702, 696, 696, 737, 737, 738, - 696, 739, 740, 740, 741, 741, 696, 742, 696, 696, - 696, 697, 696, 696, 696, 696, 696, 696, 696, 696, - 697, 742, 697, 696, 697, 332, 696, 697, 696, 696, - 696, 696, 697, 697, 697, 696, 697, 743, 697, 697, - 697, 697, 697, 744, 745, 745, 746, 746, 747, 748, - 749, 696, 696, 696, 750, 751, 696, 696, 751, 751, - 697, 697, 696, 696, 697, 697, 702, 696, 696, 696, - 696, 696, 752, 696, 733, 753, 753, 733, 733, 293, - 336, 733, 733, 733, 733, 733, 754, 733, 733, 733, - - 733, 733, 755, 744, 755, 756, 733, 733, 733, 733, - 702, 696, 757, 758, 696, 696, 759, 760, 761, 762, - 763, 764, 696, 696, 696, 697, 696, 696, 696, 696, - 697, 697, 696, 697, 696, 697, 697, 765, 766, 766, - 697, 697, 697, 767, 768, 696, 769, 696, 770, 770, - 770, 697, 696, 696, 696, 696, 697, 696, 702, 696, - 696, 696, 696, 696, 771, 772, 772, 733, 733, 733, - 733, 733, 733, 754, 765, 474, 733, 733, 733, 773, - 733, 733, 702, 696, 696, 758, 774, 759, 759, 760, - 760, 761, 761, 762, 762, 763, 763, 764, 764, 696, - - 696, 774, 774, 697, 696, 696, 696, 696, 697, 775, - 696, 696, 696, 696, 697, 697, 697, 697, 696, 696, - 696, 696, 696, 696, 702, 696, 696, 696, 771, 771, - 772, 772, 733, 733, 733, 733, 776, 733, 733, 773, - 702, 696, 696, 758, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 775, 775, 696, 696, 696, 696, 697, - 697, 697, 697, 697, 702, 696, 696, 772, 772, 733, - 733, 776, 733, 733, 733, 702, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 777, 697, 696, 696, - 772, 772, 778, 733, 702, 696, 696, 696, 696, 696, - - 779, 779, 777, 603, 697, 696, 696, 772, 772, 778, - 779, 610, 733, 702, 696, 696, 779, 603, 603, 696, - 696, 772, 772, 780, 610, 610, 702, 696, 696, 779, - 779, 603, 603, 696, 696, 772, 772, 780, 780, 610, - 610, 702, 696, 696, 779, 779, 603, 781, 696, 782, - 772, 780, 780, 610, 702, 696, 696, 696, 779, 781, - 696, 696, 782, 696, 772, 780, 780, 702, 696, 696, - 772, 780, 702, 696, 772, 702, 783, 783, 783, 783, - 783, 783, 783, 783, 783, 783, 783, 783, 783, 783, - 783, 783, 783, 696, 696, 0, 696, 696, 696, 696, - - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696 + 718, 718, 718, 718, 718, 718, 719, 720, 718, 721, + 719, 718, 12, 722, 719, 15, 15, 15, 15, 15, + 15, 15, 15, 15, 15, 723, 15, 27, 27, 27, + 27, 27, 27, 27, 27, 27, 27, 27, 719, 719, + 719, 719, 719, 719, 724, 718, 725, 725, 718, 49, + 722, 725, 52, 52, 52, 52, 52, 52, 52, 52, + 52, 52, 52, 63, 63, 63, 63, 63, 63, 63, + 63, 63, 63, 63, 725, 725, 725, 725, 725, 725, + 724, 718, 718, 719, 726, 727, 726, 718, 718, 718, + 718, 718, 719, 718, 719, 718, 728, 728, 719, 728, + + 718, 12, 718, 719, 722, 718, 729, 719, 730, 718, + 731, 719, 718, 112, 112, 719, 719, 719, 112, 112, + 108, 719, 112, 719, 112, 732, 723, 732, 733, 718, + 719, 718, 734, 719, 718, 719, 719, 719, 719, 719, + 719, 719, 719, 724, 735, 724, 718, 736, 737, 718, + 737, 737, 718, 737, 718, 718, 737, 738, 737, 718, + 731, 159, 162, 162, 737, 737, 737, 162, 162, 159, + 737, 162, 737, 162, 159, 718, 734, 159, 718, 737, + 737, 737, 737, 737, 737, 737, 737, 724, 718, 739, + 740, 740, 741, 742, 739, 739, 743, 744, 718, 745, + + 745, 718, 718, 718, 719, 719, 718, 719, 718, 718, + 718, 718, 719, 718, 718, 718, 719, 718, 719, 718, + 719, 719, 718, 219, 718, 745, 718, 718, 718, 718, + 718, 718, 719, 719, 719, 719, 719, 719, 719, 719, + 719, 746, 747, 748, 749, 719, 750, 719, 751, 750, + 719, 248, 718, 719, 752, 752, 719, 256, 719, 719, + 719, 719, 719, 719, 718, 724, 718, 753, 718, 754, + 755, 755, 755, 755, 756, 753, 757, 755, 755, 220, + 755, 755, 279, 718, 226, 755, 755, 755, 755, 755, + 755, 755, 755, 755, 755, 283, 751, 755, 296, 755, + + 295, 755, 755, 755, 755, 755, 755, 724, 718, 718, + 758, 759, 760, 761, 758, 762, 718, 763, 764, 764, + 765, 765, 718, 718, 718, 718, 718, 719, 718, 718, + 718, 718, 718, 718, 718, 718, 719, 766, 718, 719, + 719, 767, 767, 719, 766, 767, 719, 344, 718, 719, + 718, 718, 718, 718, 718, 718, 719, 719, 719, 718, + 719, 719, 719, 719, 719, 719, 768, 768, 769, 770, + 771, 718, 719, 718, 772, 773, 718, 718, 773, 773, + 719, 718, 719, 718, 718, 719, 719, 724, 718, 718, + 718, 718, 718, 774, 718, 755, 775, 775, 755, 755, + + 399, 755, 345, 755, 402, 755, 755, 755, 755, 755, + 755, 755, 755, 755, 755, 755, 776, 755, 755, 755, + 755, 724, 718, 777, 778, 779, 780, 781, 782, 783, + 784, 718, 345, 718, 785, 786, 787, 788, 789, 790, + 718, 718, 718, 784, 784, 719, 718, 719, 718, 718, + 718, 718, 718, 718, 719, 719, 718, 719, 718, 719, + 719, 719, 719, 719, 791, 792, 718, 793, 718, 794, + 794, 794, 719, 718, 718, 718, 718, 719, 718, 724, + 718, 718, 718, 718, 718, 795, 796, 796, 755, 755, + 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, + + 724, 718, 779, 797, 780, 781, 718, 783, 718, 798, + 785, 785, 786, 786, 787, 787, 788, 788, 789, 789, + 790, 790, 718, 718, 798, 798, 719, 718, 718, 718, + 718, 718, 718, 718, 719, 799, 718, 718, 718, 718, + 719, 719, 719, 719, 718, 718, 718, 718, 718, 724, + 718, 718, 718, 795, 795, 796, 796, 755, 755, 755, + 755, 755, 755, 724, 718, 718, 797, 779, 783, 718, + 718, 718, 718, 718, 718, 718, 799, 799, 718, 718, + 718, 718, 719, 719, 719, 719, 719, 724, 718, 718, + 796, 796, 755, 755, 755, 755, 755, 724, 718, 718, + + 718, 718, 718, 718, 718, 718, 718, 718, 800, 719, + 718, 718, 796, 796, 801, 755, 724, 718, 718, 718, + 718, 718, 802, 802, 800, 625, 719, 718, 718, 796, + 796, 801, 802, 632, 755, 724, 718, 718, 802, 625, + 625, 718, 718, 796, 796, 803, 632, 632, 724, 718, + 718, 802, 802, 625, 625, 718, 718, 796, 796, 803, + 803, 632, 632, 724, 718, 718, 802, 802, 625, 804, + 718, 805, 796, 803, 803, 632, 724, 718, 718, 718, + 802, 804, 718, 718, 805, 718, 796, 803, 803, 724, + 718, 718, 796, 803, 724, 718, 796, 724, 806, 806, + + 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, + 806, 806, 806, 806, 806, 718, 718, 0, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + + 718, 718, 718, 718, 718, 718 } ; -static yyconst short int yy_nxt[4591] = +static yyconst flex_int16_t yy_nxt[4761] = { 0, 4, 4, 4, 5, 4, 4, 6, 4, 7, 8, 4, 9, 10, 7, 4, 4, 11, 12, 13, 13, 4, 14, 4, 4, 15, 16, 17, 18, 15, 15, - 19, 15, 15, 15, 20, 21, 15, 22, 23, 24, - 15, 25, 15, 26, 4, 4, 27, 28, 29, 30, - 31, 32, 33, 34, 35, 36, 37, 38, 39, 7, - 40, 7, 7, 41, 42, 7, 7, 7, 43, 7, - 7, 44, 4, 4, 4, 4, 5, 4, 45, 6, - 45, 7, 8, 4, 9, 10, 46, 4, 4, 47, - 48, 49, 49, 4, 50, 4, 4, 51, 52, 53, - - 54, 51, 51, 55, 51, 51, 51, 56, 57, 51, - 58, 59, 60, 51, 61, 51, 26, 4, 4, 62, - 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, - 73, 74, 46, 75, 46, 46, 76, 77, 46, 46, - 46, 78, 46, 46, 79, 4, 80, 81, 81, 81, - 81, 84, 87, 88, 90, 115, 119, 82, 85, 85, - 85, 85, 111, 268, 91, 95, 92, 93, 80, 150, - 170, 94, 95, 95, 96, 82, 216, 696, 116, 82, - 120, 695, 696, 199, 97, 98, 99, 100, 100, 100, - 100, 101, 104, 158, 171, 102, 102, 102, 102, 102, - - 102, 102, 102, 82, 102, 82, 82, 102, 102, 102, - 82, 82, 102, 82, 111, 111, 112, 102, 102, 102, - 102, 102, 102, 102, 102, 102, 102, 102, 102, 82, - 102, 102, 102, 102, 102, 82, 82, 82, 82, 82, - 82, 82, 105, 111, 106, 200, 107, 108, 108, 108, - 108, 109, 140, 648, 105, 136, 268, 135, 135, 204, - 135, 205, 138, 674, 123, 124, 206, 136, 136, 137, - 209, 125, 166, 106, 135, 135, 135, 110, 110, 110, - 110, 110, 110, 110, 110, 110, 110, 110, 110, 136, - 136, 104, 135, 135, 135, 167, 216, 163, 217, 141, - - 106, 126, 127, 127, 127, 126, 126, 126, 126, 126, - 126, 126, 126, 126, 128, 126, 126, 111, 195, 196, - 145, 126, 126, 126, 126, 136, 136, 135, 135, 135, - 136, 136, 136, 136, 135, 135, 135, 115, 135, 135, - 135, 111, 114, 569, 126, 130, 126, 136, 136, 136, - 136, 95, 135, 135, 135, 136, 136, 135, 135, 135, - 116, 149, 181, 696, 135, 135, 135, 677, 150, 207, - 208, 183, 126, 126, 131, 136, 136, 132, 132, 132, - 132, 133, 111, 90, 542, 135, 135, 328, 82, 117, - 147, 143, 125, 151, 664, 92, 152, 329, 125, 182, - - 153, 181, 181, 134, 329, 145, 184, 135, 135, 136, - 136, 136, 136, 136, 136, 136, 136, 136, 136, 146, - 146, 146, 146, 182, 182, 181, 181, 181, 182, 182, - 134, 82, 174, 175, 181, 181, 181, 147, 82, 176, - 165, 182, 182, 150, 181, 181, 181, 182, 182, 166, - 150, 181, 181, 181, 182, 182, 82, 274, 275, 182, - 182, 181, 181, 181, 181, 181, 181, 670, 150, 185, - 182, 182, 167, 193, 307, 147, 95, 95, 96, 181, - 181, 181, 661, 82, 81, 81, 81, 81, 154, 98, - 99, 155, 155, 155, 155, 156, 195, 308, 188, 157, - - 157, 157, 157, 157, 157, 157, 157, 149, 157, 149, - 149, 157, 157, 157, 149, 149, 157, 149, 95, 95, - 95, 157, 157, 157, 157, 157, 157, 157, 157, 157, - 157, 157, 157, 149, 157, 157, 157, 157, 157, 149, - 149, 149, 149, 149, 149, 149, 82, 195, 308, 105, - 241, 159, 82, 107, 160, 160, 160, 160, 161, 182, - 182, 105, 182, 182, 150, 310, 311, 181, 181, 181, - 82, 82, 181, 181, 374, 186, 168, 95, 95, 95, - 159, 130, 150, 150, 162, 162, 162, 162, 162, 162, - 162, 162, 162, 162, 162, 162, 225, 225, 225, 225, - - 82, 104, 225, 225, 225, 225, 669, 159, 82, 173, - 111, 82, 150, 177, 145, 82, 178, 178, 178, 178, - 179, 375, 187, 150, 417, 190, 193, 150, 146, 146, - 146, 146, 230, 197, 197, 197, 197, 198, 225, 225, - 225, 225, 180, 284, 274, 275, 181, 181, 182, 182, - 182, 182, 182, 182, 182, 182, 182, 182, 95, 467, - 189, 176, 95, 95, 95, 82, 82, 176, 82, 180, - 696, 226, 231, 227, 212, 696, 213, 150, 150, 228, - 657, 214, 229, 104, 147, 109, 418, 107, 202, 202, - 202, 202, 109, 226, 271, 227, 225, 225, 225, 225, - - 82, 348, 228, 255, 255, 255, 255, 229, 225, 225, - 225, 225, 150, 664, 109, 348, 348, 291, 203, 203, - 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, - 225, 225, 225, 225, 239, 358, 225, 225, 225, 225, - 637, 109, 219, 219, 219, 219, 219, 219, 219, 219, - 219, 219, 219, 219, 221, 82, 662, 235, 284, 346, - 216, 222, 217, 269, 270, 360, 130, 150, 82, 255, - 255, 255, 255, 255, 255, 255, 255, 381, 237, 240, - 150, 433, 347, 221, 310, 311, 382, 223, 223, 223, - 223, 223, 223, 223, 223, 223, 223, 223, 223, 259, - - 280, 280, 280, 280, 347, 361, 283, 260, 310, 311, - 221, 126, 127, 127, 127, 126, 126, 126, 126, 126, - 126, 126, 126, 126, 126, 126, 126, 145, 82, 104, - 591, 126, 126, 126, 126, 423, 271, 434, 82, 82, - 150, 146, 146, 146, 146, 264, 272, 145, 323, 424, - 150, 150, 82, 82, 126, 130, 126, 661, 305, 280, - 280, 280, 280, 658, 150, 150, 280, 280, 280, 280, - 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, - 280, 280, 126, 126, 126, 242, 242, 242, 243, 281, - 126, 126, 126, 126, 126, 126, 286, 147, 126, 126, - - 282, 82, 82, 82, 126, 126, 104, 126, 285, 280, - 280, 280, 280, 150, 150, 150, 290, 147, 435, 286, - 327, 82, 288, 82, 374, 82, 82, 126, 130, 298, - 298, 298, 298, 150, 82, 150, 82, 150, 150, 289, - 435, 385, 298, 298, 298, 298, 150, 104, 150, 304, - 466, 436, 291, 358, 303, 126, 126, 245, 245, 245, - 245, 245, 245, 245, 245, 245, 245, 245, 245, 82, - 246, 373, 301, 437, 247, 271, 654, 82, 82, 82, - 82, 248, 288, 249, 130, 250, 250, 250, 250, 250, - 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, - - 250, 250, 250, 251, 465, 623, 465, 252, 252, 252, - 252, 252, 252, 252, 252, 252, 252, 252, 252, 82, - 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, - 247, 82, 135, 135, 135, 135, 135, 135, 135, 135, - 135, 135, 135, 135, 254, 330, 330, 330, 330, 542, - 378, 255, 255, 255, 255, 379, 380, 256, 543, 257, + 19, 15, 15, 15, 15, 20, 21, 22, 21, 23, + 24, 21, 21, 25, 21, 26, 4, 4, 4, 27, + 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, + 38, 39, 40, 41, 40, 40, 42, 43, 40, 40, + 40, 44, 40, 40, 45, 4, 4, 4, 4, 5, + 4, 46, 6, 46, 7, 8, 4, 9, 10, 47, + 4, 4, 48, 49, 50, 50, 4, 51, 4, 4, + + 52, 53, 54, 55, 52, 52, 56, 52, 52, 52, + 52, 57, 58, 59, 58, 60, 61, 58, 58, 62, + 58, 26, 4, 4, 4, 63, 64, 65, 66, 67, + 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, + 76, 76, 78, 79, 76, 76, 76, 80, 76, 76, + 81, 4, 82, 83, 83, 83, 83, 86, 89, 90, + 717, 92, 117, 107, 87, 87, 87, 87, 113, 106, + 158, 93, 97, 94, 95, 107, 106, 82, 96, 97, + 97, 98, 84, 214, 718, 215, 84, 107, 118, 718, + 197, 99, 100, 101, 102, 102, 102, 102, 103, 107, + + 166, 139, 104, 104, 104, 104, 104, 104, 104, 104, + 84, 104, 84, 84, 104, 104, 104, 104, 84, 84, + 84, 104, 84, 487, 113, 114, 167, 104, 104, 104, + 104, 104, 104, 104, 104, 104, 104, 104, 104, 84, + 104, 104, 104, 104, 104, 84, 84, 84, 84, 84, + 84, 84, 107, 392, 108, 198, 109, 110, 110, 110, + 110, 111, 393, 113, 107, 119, 119, 119, 119, 119, + 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, + 119, 163, 214, 121, 215, 108, 119, 119, 119, 119, + 112, 112, 112, 112, 112, 112, 112, 112, 112, 112, + + 112, 112, 120, 113, 136, 136, 670, 122, 193, 194, + 123, 135, 145, 108, 135, 135, 119, 119, 119, 119, + 137, 136, 242, 135, 135, 84, 205, 206, 138, 124, + 136, 136, 135, 135, 135, 136, 136, 150, 135, 135, + 135, 270, 136, 136, 136, 136, 106, 116, 135, 135, + 135, 135, 135, 135, 214, 130, 125, 126, 127, 127, + 127, 126, 126, 126, 126, 126, 126, 126, 126, 126, + 128, 126, 126, 117, 696, 136, 136, 126, 126, 126, + 126, 135, 135, 135, 270, 147, 136, 136, 136, 136, + 565, 135, 135, 135, 686, 135, 135, 135, 207, 118, + + 136, 136, 126, 130, 126, 126, 107, 113, 135, 135, + 135, 107, 614, 140, 368, 107, 180, 180, 107, 168, + 168, 168, 168, 107, 179, 179, 179, 107, 145, 107, + 106, 126, 126, 131, 84, 718, 132, 132, 132, 132, + 133, 107, 146, 146, 146, 146, 150, 130, 142, 92, + 276, 277, 169, 84, 84, 168, 168, 168, 168, 151, + 143, 94, 152, 141, 134, 150, 153, 191, 310, 135, + 135, 136, 136, 136, 136, 136, 136, 136, 136, 136, + 136, 97, 193, 311, 170, 592, 124, 168, 168, 168, + 168, 149, 134, 718, 168, 168, 168, 168, 150, 180, + + 180, 147, 97, 97, 98, 179, 179, 179, 171, 84, + 168, 168, 168, 168, 154, 100, 101, 155, 155, 155, + 155, 156, 97, 97, 97, 157, 157, 157, 157, 157, + 157, 157, 157, 149, 157, 149, 149, 157, 157, 157, + 157, 149, 149, 149, 157, 149, 173, 172, 113, 692, + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 157, 149, 157, 157, 157, 157, 157, 149, 149, + 149, 149, 149, 149, 149, 84, 193, 311, 107, 113, + 159, 334, 109, 160, 160, 160, 160, 161, 106, 84, + 107, 335, 168, 168, 168, 168, 179, 180, 335, 179, + + 179, 150, 180, 180, 182, 181, 179, 179, 179, 180, + 180, 159, 179, 179, 179, 385, 162, 162, 162, 162, + 162, 162, 162, 162, 162, 162, 162, 162, 83, 83, + 83, 83, 174, 180, 180, 179, 179, 179, 166, 159, + 175, 441, 718, 176, 176, 176, 176, 177, 659, 290, + 165, 180, 180, 180, 180, 442, 179, 179, 179, 191, + 179, 179, 179, 84, 167, 386, 195, 195, 195, 195, + 196, 178, 97, 97, 97, 150, 179, 179, 180, 180, + 180, 180, 180, 180, 180, 180, 180, 180, 313, 314, + 356, 180, 180, 180, 180, 84, 356, 289, 107, 178, + + 179, 179, 179, 179, 179, 84, 84, 150, 107, 107, + 107, 184, 84, 84, 113, 107, 107, 150, 150, 84, + 107, 107, 107, 370, 150, 150, 145, 107, 107, 316, + 317, 150, 683, 84, 107, 585, 183, 188, 97, 691, + 146, 146, 146, 146, 202, 150, 203, 84, 84, 586, + 718, 204, 97, 97, 97, 718, 106, 186, 84, 150, + 84, 185, 276, 277, 210, 371, 211, 187, 271, 272, + 150, 212, 150, 173, 84, 84, 84, 84, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, - 257, 257, 257, 257, 257, 257, 257, 257, 331, 331, - 331, 331, 193, 307, 509, 258, 95, 95, 95, 312, - 312, 312, 312, 82, 332, 332, 332, 332, 149, 98, - - 654, 155, 155, 155, 155, 150, 513, 509, 419, 157, - 157, 157, 157, 157, 157, 157, 157, 149, 157, 149, - 149, 157, 157, 157, 149, 149, 157, 149, 514, 104, - 651, 157, 157, 157, 157, 157, 157, 157, 157, 157, - 157, 157, 157, 149, 157, 157, 157, 157, 157, 149, - 149, 149, 149, 149, 149, 149, 82, 82, 104, 222, - 696, 333, 333, 333, 333, 82, 222, 696, 150, 150, - 420, 193, 307, 298, 298, 298, 298, 150, 197, 197, - 197, 197, 198, 334, 334, 334, 334, 456, 222, 696, - 365, 365, 365, 365, 276, 276, 276, 276, 276, 276, - - 276, 276, 276, 276, 276, 276, 277, 302, 386, 242, - 242, 242, 243, 278, 402, 222, 696, 387, 415, 415, - 415, 415, 222, 444, 82, 318, 318, 318, 318, 222, - 333, 333, 333, 333, 457, 277, 150, 360, 337, 279, - 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, - 279, 222, 130, 212, 130, 213, 333, 333, 333, 333, - 214, 649, 277, 292, 292, 292, 292, 292, 292, 292, - 292, 292, 292, 292, 292, 82, 246, 361, 222, 353, - 293, 218, 218, 149, 149, 149, 149, 294, 343, 249, - 648, 295, 295, 295, 295, 295, 295, 295, 295, 295, - - 295, 295, 295, 295, 295, 295, 295, 295, 295, 296, - 445, 445, 445, 297, 297, 297, 297, 297, 297, 297, - 297, 297, 297, 297, 297, 149, 149, 149, 149, 149, - 149, 149, 149, 149, 149, 149, 293, 149, 181, 181, - 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, - 82, 254, 450, 446, 444, 149, 220, 220, 298, 298, - 298, 298, 150, 647, 256, 451, 299, 299, 299, 299, - 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, - 299, 299, 299, 299, 299, 519, 647, 104, 149, 149, - 149, 149, 300, 149, 149, 149, 149, 149, 149, 149, - + 149, 149, 149, 149, 289, 457, 307, 316, 317, 147, + + 111, 84, 109, 200, 200, 200, 200, 111, 84, 273, + 84, 631, 145, 150, 145, 261, 274, 292, 313, 314, + 150, 84, 150, 262, 679, 308, 146, 146, 146, 146, + 266, 111, 686, 150, 425, 426, 201, 201, 201, 201, + 201, 201, 201, 201, 201, 201, 201, 201, 191, 310, + 273, 288, 428, 194, 458, 318, 318, 318, 318, 111, + 217, 217, 217, 217, 217, 217, 217, 217, 217, 217, + 217, 217, 84, 336, 336, 336, 336, 219, 316, 317, + 84, 84, 84, 84, 220, 147, 684, 147, 221, 221, + 221, 221, 221, 221, 221, 221, 221, 221, 221, 84, + + 84, 84, 84, 84, 84, 84, 84, 84, 219, 337, + 337, 337, 337, 222, 222, 222, 222, 222, 222, 222, + 222, 222, 222, 222, 222, 84, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 219, 84, 224, 84, + 683, 225, 225, 225, 225, 226, 84, 301, 301, 301, + 301, 150, 84, 84, 84, 84, 84, 385, 150, 435, + 301, 301, 301, 301, 150, 150, 150, 150, 150, 224, + 338, 338, 338, 338, 222, 222, 222, 222, 222, 222, + 222, 222, 222, 222, 222, 222, 680, 293, 340, 340, + 340, 340, 459, 304, 428, 194, 676, 224, 227, 407, + + 228, 341, 341, 341, 341, 229, 230, 384, 306, 273, + 231, 191, 310, 360, 232, 425, 426, 459, 195, 195, + 195, 195, 196, 227, 436, 228, 342, 342, 342, 342, + 676, 229, 230, 504, 505, 460, 361, 231, 341, 341, + 341, 341, 232, 126, 127, 127, 127, 126, 126, 126, + 126, 126, 126, 126, 126, 126, 126, 126, 126, 84, + 461, 361, 106, 126, 126, 126, 126, 301, 301, 301, + 301, 150, 226, 357, 84, 84, 253, 226, 718, 226, + 324, 324, 324, 324, 226, 718, 150, 150, 126, 130, + 126, 126, 84, 84, 84, 84, 84, 84, 84, 84, + + 84, 84, 84, 226, 305, 428, 194, 437, 226, 718, + 341, 341, 341, 341, 486, 397, 486, 126, 126, 126, + 243, 243, 243, 244, 398, 126, 126, 126, 126, 126, + 126, 226, 671, 126, 126, 415, 226, 718, 329, 126, + 126, 343, 126, 84, 253, 358, 243, 243, 243, 244, + 375, 375, 375, 375, 346, 150, 389, 341, 341, 341, + 341, 390, 391, 477, 126, 130, 126, 256, 370, 84, + 84, 145, 438, 670, 376, 376, 376, 376, 84, 349, + 258, 150, 150, 396, 106, 388, 388, 388, 388, 669, + 150, 130, 669, 126, 126, 246, 246, 246, 246, 246, + + 246, 246, 246, 246, 246, 246, 246, 84, 247, 366, + 371, 378, 248, 478, 411, 84, 84, 84, 84, 249, + 666, 250, 414, 251, 251, 251, 251, 251, 251, 251, + 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, + 251, 251, 251, 252, 147, 488, 253, 477, 254, 254, + 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, + 251, 251, 251, 251, 251, 251, 251, 251, 251, 251, + 251, 252, 251, 135, 135, 135, 135, 135, 135, 135, + 135, 135, 135, 135, 135, 84, 256, 504, 505, 145, + 84, 428, 194, 257, 257, 257, 257, 382, 665, 258, + + 422, 259, 259, 259, 259, 259, 259, 259, 259, 259, + 259, 259, 259, 259, 259, 259, 259, 259, 259, 259, + 259, 259, 431, 431, 431, 431, 84, 84, 84, 84, + 260, 84, 84, 84, 84, 84, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, + 84, 97, 97, 97, 333, 555, 395, 555, 84, 84, + 84, 84, 147, 149, 100, 412, 155, 155, 155, 155, + 150, 150, 150, 150, 157, 157, 157, 157, 157, 157, + 157, 157, 149, 157, 149, 149, 157, 157, 157, 157, + 149, 149, 149, 157, 149, 443, 443, 443, 443, 157, + + 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, + 157, 149, 157, 157, 157, 157, 157, 149, 149, 149, + 149, 149, 149, 149, 84, 84, 84, 84, 384, 368, + 465, 385, 504, 505, 718, 663, 150, 150, 150, 150, + 84, 718, 718, 718, 718, 84, 662, 718, 399, 399, + 399, 399, 150, 400, 400, 400, 400, 150, 448, 448, + 448, 448, 130, 130, 657, 278, 278, 278, 278, 278, + 278, 278, 278, 278, 278, 278, 278, 84, 718, 84, + 84, 420, 279, 656, 421, 149, 149, 149, 149, 280, + 409, 150, 150, 281, 281, 281, 281, 281, 281, 281, + + 281, 281, 281, 281, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 279, 375, 375, 375, 375, 282, 282, + 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, - 149, 149, 149, 223, 223, 223, 223, 223, 223, 223, - 223, 223, 223, 223, 223, 335, 426, 426, 426, 426, - 456, 104, 336, 369, 337, 254, 608, 82, 333, 333, - 333, 333, 366, 366, 366, 366, 370, 104, 256, 150, - 449, 449, 449, 449, 335, 530, 384, 530, 338, 338, - 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, - 344, 644, 82, 643, 454, 104, 368, 455, 82, 398, - 665, 335, 354, 354, 150, 354, 354, 354, 354, 354, - 150, 354, 354, 354, 354, 568, 354, 354, 82, 696, - - 696, 145, 354, 354, 354, 354, 696, 696, 696, 696, - 150, 82, 696, 696, 397, 377, 377, 377, 377, 388, - 388, 388, 388, 150, 82, 354, 354, 354, 397, 397, - 82, 82, 389, 389, 389, 389, 150, 532, 395, 82, - 696, 145, 150, 150, 400, 425, 356, 389, 389, 389, - 389, 150, 411, 354, 354, 126, 242, 242, 242, 243, - 641, 126, 126, 126, 126, 126, 126, 104, 346, 126, - 126, 147, 82, 82, 82, 126, 126, 104, 126, 393, - 389, 389, 389, 389, 150, 150, 150, 104, 82, 82, - 82, 396, 364, 399, 410, 82, 82, 373, 126, 130, - - 150, 150, 150, 640, 193, 485, 82, 150, 150, 486, - 635, 147, 394, 396, 389, 389, 389, 389, 150, 609, - 634, 82, 82, 401, 696, 369, 126, 126, 254, 406, - 406, 406, 406, 150, 150, 696, 393, 696, 696, 622, - 592, 256, 696, 257, 257, 257, 257, 257, 257, 257, - 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, - 257, 257, 394, 402, 696, 696, 696, 617, 511, 258, - 252, 252, 252, 252, 252, 252, 252, 252, 252, 252, - 252, 252, 369, 421, 82, 224, 224, 329, 104, 617, - 374, 696, 421, 511, 329, 370, 150, 371, 371, 371, - - 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, - 371, 371, 371, 371, 371, 371, 253, 253, 193, 307, - 104, 82, 336, 372, 82, 414, 414, 414, 414, 336, - 90, 337, 336, 150, 82, 633, 150, 409, 461, 336, - 460, 696, 92, 636, 82, 422, 150, 94, 462, 145, - 99, 336, 271, 104, 422, 101, 150, 445, 445, 445, - 483, 336, 279, 279, 279, 279, 279, 279, 279, 279, - 279, 279, 279, 279, 390, 82, 531, 450, 336, 82, - 632, 391, 469, 337, 82, 450, 502, 150, 336, 82, - 696, 150, 82, 82, 82, 82, 104, 629, 451, 503, - - 446, 650, 472, 390, 520, 520, 520, 392, 392, 392, - 392, 392, 392, 392, 392, 392, 392, 392, 392, 147, - 628, 82, 621, 470, 473, 487, 487, 487, 487, 620, - 390, 354, 354, 150, 354, 354, 354, 354, 354, 355, - 354, 354, 354, 354, 145, 354, 354, 521, 671, 696, - 271, 404, 354, 354, 354, 82, 82, 82, 459, 459, - 459, 459, 696, 468, 468, 468, 468, 150, 150, 150, - 82, 616, 500, 145, 354, 354, 354, 82, 82, 455, - 523, 599, 150, 433, 501, 525, 104, 82, 82, 150, - 150, 111, 433, 456, 82, 405, 82, 82, 478, 150, - - 150, 477, 354, 354, 82, 254, 150, 82, 150, 150, - 363, 363, 479, 615, 147, 542, 150, 104, 256, 150, - 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, - 299, 299, 299, 299, 299, 299, 299, 299, 299, 471, - 482, 675, 617, 526, 618, 538, 300, 297, 297, 297, - 297, 297, 297, 297, 297, 297, 297, 297, 297, 369, - 145, 530, 384, 530, 617, 650, 619, 607, 606, 605, - 601, 541, 370, 625, 407, 407, 407, 407, 407, 407, - 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, - 407, 407, 407, 601, 600, 626, 582, 659, 597, 617, - - 408, 338, 338, 338, 338, 338, 338, 338, 338, 338, - 338, 338, 338, 438, 438, 510, 438, 438, 438, 438, - 438, 617, 438, 438, 438, 438, 502, 438, 438, 82, - 147, 82, 547, 438, 438, 438, 438, 82, 450, 696, - 476, 150, 149, 150, 511, 149, 149, 149, 149, 150, - 82, 451, 82, 512, 476, 476, 438, 438, 438, 596, - 82, 551, 150, 440, 150, 384, 111, 590, 562, 511, - 535, 82, 150, 536, 589, 552, 82, 440, 440, 534, - 598, 271, 563, 150, 438, 438, 354, 354, 150, 354, - 354, 354, 354, 354, 599, 354, 354, 354, 354, 624, - - 354, 354, 534, 617, 193, 307, 354, 354, 354, 354, - 539, 544, 544, 544, 544, 82, 82, 548, 520, 520, - 520, 145, 82, 659, 617, 617, 617, 150, 150, 354, - 354, 354, 571, 82, 150, 565, 565, 565, 565, 82, - 679, 145, 588, 82, 82, 150, 617, 563, 617, 587, - 587, 150, 576, 570, 185, 150, 150, 354, 354, 354, - 354, 521, 354, 354, 354, 354, 354, 586, 354, 354, - 354, 354, 82, 354, 354, 573, 82, 575, 82, 354, - 354, 354, 354, 656, 150, 193, 485, 585, 150, 574, - 150, 147, 544, 544, 544, 544, 82, 657, 145, 593, - - 617, 584, 354, 354, 354, 145, 145, 593, 150, 145, - 263, 147, 565, 565, 565, 565, 595, 614, 583, 574, - 627, 555, 617, 679, 555, 582, 552, 581, 646, 594, - 354, 354, 392, 392, 392, 392, 392, 392, 392, 392, - 392, 392, 392, 392, 438, 438, 580, 438, 438, 438, - 438, 438, 439, 438, 438, 438, 438, 82, 438, 438, - 145, 579, 384, 384, 475, 438, 438, 438, 526, 150, - 578, 642, 548, 617, 630, 147, 147, 577, 645, 147, - 617, 145, 384, 384, 384, 567, 145, 438, 438, 438, - 639, 639, 655, 263, 476, 617, 631, 668, 679, 613, - - 145, 566, 617, 265, 455, 384, 523, 384, 476, 476, - 564, 673, 639, 639, 384, 438, 438, 354, 354, 384, - 354, 354, 354, 354, 354, 355, 354, 354, 354, 354, - 147, 354, 354, 639, 561, 639, 652, 404, 354, 354, - 354, 560, 639, 559, 558, 557, 556, 639, 555, 139, - 553, 147, 666, 384, 145, 639, 147, 639, 653, 384, - 354, 354, 354, 667, 639, 676, 679, 679, 694, 639, - 147, 679, 679, 679, 679, 679, 550, 680, 681, 672, - 549, 639, 682, 683, 684, 685, 686, 639, 354, 354, - 354, 354, 548, 354, 354, 354, 354, 354, 355, 354, - - 354, 354, 354, 639, 354, 354, 547, 672, 546, 639, - 404, 354, 354, 354, 499, 499, 497, 497, 495, 495, - 493, 493, 491, 491, 147, 489, 489, 384, 537, 679, - 528, 527, 216, 354, 354, 354, 263, 263, 209, 373, - 687, 263, 263, 263, 263, 263, 679, 524, 455, 523, - 448, 111, 518, 679, 679, 679, 679, 688, 679, 517, - 516, 354, 354, 502, 689, 690, 691, 692, 515, 693, - 433, 111, 508, 507, 506, 505, 503, 424, 504, 504, - 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, - 504, 504, 504, 504, 504, 504, 504, 438, 438, 263, - - 438, 438, 438, 438, 438, 499, 438, 438, 438, 438, - 497, 438, 438, 495, 493, 491, 263, 438, 438, 438, - 438, 489, 425, 263, 263, 263, 263, 196, 263, 484, - 480, 268, 384, 464, 463, 86, 210, 458, 455, 373, - 438, 438, 438, 364, 448, 443, 442, 441, 210, 432, - 431, 430, 429, 428, 427, 337, 425, 337, 216, 216, - 210, 209, 209, 209, 316, 316, 314, 314, 438, 438, - 438, 438, 196, 438, 438, 438, 438, 438, 412, 438, - 438, 438, 438, 364, 438, 438, 268, 268, 267, 384, - 438, 438, 438, 438, 267, 353, 376, 344, 343, 373, - - 254, 364, 364, 246, 352, 351, 350, 349, 345, 342, - 341, 340, 339, 438, 438, 438, 327, 327, 326, 325, - 440, 324, 323, 323, 322, 321, 320, 319, 316, 314, - 307, 306, 268, 287, 440, 440, 268, 268, 267, 265, - 263, 438, 438, 82, 502, 262, 237, 210, 261, 235, - 130, 240, 238, 210, 236, 150, 234, 503, 233, 533, - 533, 533, 533, 533, 533, 533, 533, 533, 533, 533, - 533, 533, 533, 533, 533, 533, 533, 533, 438, 438, - 233, 438, 438, 438, 438, 438, 439, 438, 438, 438, - 438, 232, 438, 438, 104, 216, 215, 209, 475, 438, - - 438, 438, 210, 209, 201, 193, 191, 173, 172, 169, - 168, 165, 164, 148, 122, 142, 139, 122, 121, 118, - 117, 438, 438, 438, 114, 113, 104, 86, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 438, - 438, 602, 602, 696, 602, 602, 602, 602, 602, 696, - 602, 602, 602, 602, 696, 602, 602, 696, 696, 696, - 696, 602, 602, 602, 602, 696, 696, 696, 696, 696, - 696, 604, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 602, 602, 602, 696, 696, 696, - - 696, 696, 696, 604, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 602, 602, 602, 602, 696, 602, 602, 602, - 602, 602, 603, 602, 602, 602, 602, 696, 602, 602, - 696, 696, 696, 696, 611, 602, 602, 602, 696, 696, - 696, 696, 696, 696, 612, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 602, 602, 602, - 696, 696, 696, 696, 696, 696, 612, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 602, 602, 602, 602, 696, - - 602, 602, 602, 602, 602, 696, 602, 602, 602, 602, - 696, 602, 602, 696, 696, 696, 696, 602, 602, 602, - 602, 696, 696, 696, 696, 696, 696, 604, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 602, 602, 602, 696, 696, 696, 696, 696, 696, 604, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 602, 602, - 602, 602, 696, 602, 602, 602, 602, 602, 603, 602, - 602, 602, 602, 696, 602, 602, 696, 696, 696, 696, - 611, 602, 602, 602, 696, 696, 696, 696, 696, 696, - - 612, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 602, 602, 602, 696, 696, 696, 696, - 696, 696, 612, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 602, 602, 82, 696, 696, 696, 82, 82, 696, - 696, 82, 82, 82, 82, 82, 82, 82, 82, 83, - 83, 83, 83, 83, 696, 83, 83, 83, 83, 83, - 83, 83, 83, 83, 83, 83, 83, 83, 89, 89, - 696, 696, 696, 89, 89, 89, 103, 103, 103, 103, - 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, - - 103, 103, 103, 103, 103, 129, 129, 129, 129, 129, + 149, 279, 149, 283, 84, 699, 284, 284, 284, 284, + 285, 655, 401, 401, 401, 401, 150, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 191, 310, + 470, 470, 470, 470, 283, 430, 430, 430, 430, 282, + 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, + 282, 191, 507, 535, 428, 194, 508, 510, 510, 510, + + 510, 106, 283, 295, 295, 295, 295, 295, 295, 295, + 295, 295, 295, 295, 295, 84, 247, 718, 147, 535, + 296, 504, 505, 149, 149, 149, 149, 297, 539, 250, + 718, 298, 298, 298, 298, 298, 298, 298, 298, 298, + 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, + 298, 299, 591, 540, 253, 718, 300, 300, 300, 300, + 300, 300, 300, 300, 300, 300, 300, 300, 298, 298, + 298, 298, 298, 298, 298, 298, 298, 298, 298, 299, + 298, 179, 179, 179, 179, 179, 179, 179, 179, 179, + 179, 179, 179, 84, 256, 343, 654, 565, 149, 504, + + 505, 301, 301, 301, 301, 150, 566, 258, 718, 302, + 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, + 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, + 466, 466, 466, 718, 149, 149, 149, 149, 303, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 149, 149, 149, 149, 149, 221, + 221, 221, 221, 221, 221, 221, 221, 221, 221, 221, + 84, 84, 106, 106, 613, 467, 106, 465, 401, 401, + 401, 401, 150, 150, 222, 222, 222, 222, 222, 222, + 222, 222, 222, 222, 222, 222, 339, 339, 339, 339, + + 339, 339, 339, 339, 339, 339, 339, 84, 439, 253, + 545, 651, 537, 407, 650, 417, 417, 417, 417, 150, + 413, 323, 323, 323, 323, 323, 323, 323, 323, 323, + 323, 323, 323, 84, 343, 556, 84, 557, 344, 537, + 643, 84, 84, 84, 84, 345, 639, 346, 150, 347, + 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, + 347, 347, 347, 347, 347, 347, 347, 347, 347, 348, + 642, 639, 349, 440, 350, 350, 350, 350, 350, 350, + 350, 350, 350, 350, 350, 350, 84, 84, 84, 84, + 84, 84, 84, 84, 84, 84, 84, 344, 84, 126, + + 243, 243, 243, 244, 379, 126, 126, 126, 126, 126, + 126, 360, 638, 126, 126, 84, 84, 380, 639, 126, + 126, 84, 126, 401, 401, 401, 401, 150, 150, 401, + 401, 401, 401, 150, 410, 84, 621, 106, 718, 379, + 106, 673, 382, 639, 126, 130, 126, 150, 476, 439, + 84, 718, 718, 335, 345, 92, 718, 84, 408, 410, + 335, 345, 150, 718, 210, 481, 211, 94, 84, 150, + 349, 212, 96, 126, 126, 256, 718, 718, 408, 273, + 150, 415, 718, 718, 106, 345, 640, 718, 258, 630, + 259, 259, 259, 259, 259, 259, 259, 259, 259, 259, + + 259, 259, 259, 259, 259, 259, 259, 259, 259, 259, + 259, 641, 273, 345, 440, 718, 555, 395, 555, 260, + 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, + 373, 373, 379, 145, 84, 701, 637, 106, 106, 644, + 216, 216, 273, 565, 501, 380, 150, 381, 381, 381, + 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, + 381, 381, 381, 381, 381, 381, 381, 381, 523, 629, + 382, 575, 444, 84, 471, 106, 383, 84, 84, 84, + 524, 84, 84, 84, 84, 445, 534, 472, 672, 150, + 687, 150, 84, 281, 281, 281, 281, 281, 281, 281, + + 281, 281, 281, 281, 150, 84, 147, 628, 265, 647, + 447, 627, 474, 490, 490, 490, 490, 150, 282, 282, + 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, + 84, 343, 718, 562, 648, 402, 645, 623, 149, 149, + 149, 149, 403, 491, 346, 718, 404, 404, 404, 404, + 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, + 404, 404, 404, 404, 404, 404, 405, 701, 623, 349, + 718, 406, 406, 406, 406, 406, 406, 406, 406, 406, + 406, 406, 406, 149, 149, 149, 149, 149, 149, 149, + 149, 149, 149, 149, 402, 149, 84, 256, 106, 84, + + 622, 382, 106, 218, 218, 604, 646, 619, 150, 395, + 258, 150, 302, 302, 302, 302, 302, 302, 302, 302, + 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, + 302, 302, 302, 639, 223, 223, 681, 661, 639, 572, + 265, 303, 416, 416, 416, 416, 416, 416, 416, 416, + 416, 416, 416, 416, 379, 444, 658, 693, 639, 466, + 466, 466, 661, 639, 546, 546, 546, 380, 718, 418, + 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, + 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, + 84, 145, 382, 718, 618, 106, 612, 620, 419, 343, + + 611, 84, 150, 345, 467, 480, 480, 480, 480, 547, + 345, 621, 346, 150, 432, 432, 432, 432, 432, 432, + 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, + 432, 432, 432, 432, 433, 497, 701, 349, 610, 434, + 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, + 434, 457, 492, 697, 84, 482, 84, 84, 84, 531, + 447, 678, 345, 343, 147, 483, 150, 101, 150, 150, + 150, 586, 103, 531, 531, 679, 346, 609, 347, 347, + 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, + 347, 347, 347, 347, 347, 347, 347, 347, 347, 498, + + 84, 349, 444, 609, 496, 608, 477, 255, 255, 716, + 493, 395, 150, 374, 374, 445, 607, 446, 446, 446, + 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, + 446, 446, 446, 446, 446, 446, 446, 446, 639, 661, + 447, 350, 350, 350, 350, 350, 350, 350, 350, 350, + 350, 350, 350, 84, 343, 606, 500, 605, 546, 546, + 546, 681, 578, 639, 661, 150, 578, 346, 604, 404, + 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, + 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, + 84, 471, 349, 444, 603, 84, 602, 601, 417, 417, + + 417, 417, 150, 547, 472, 536, 445, 150, 489, 489, + 489, 489, 489, 489, 489, 489, 489, 489, 489, 489, + 489, 489, 489, 489, 489, 489, 489, 489, 489, 474, + 718, 447, 84, 84, 113, 537, 600, 84, 528, 84, + 561, 568, 84, 718, 150, 150, 538, 84, 471, 150, + 471, 150, 149, 145, 150, 149, 149, 149, 149, 150, + 494, 472, 537, 718, 599, 550, 652, 639, 718, 559, + 395, 639, 639, 406, 406, 406, 406, 406, 406, 406, + 406, 406, 406, 406, 406, 495, 474, 525, 718, 84, + 590, 653, 639, 589, 267, 559, 639, 639, 668, 382, + + 526, 150, 527, 527, 527, 527, 527, 527, 527, 527, + 527, 527, 527, 527, 527, 527, 527, 527, 527, 527, + 527, 527, 527, 145, 84, 528, 551, 84, 525, 145, + 474, 587, 584, 583, 564, 582, 150, 581, 580, 150, + 598, 526, 563, 558, 558, 558, 558, 558, 558, 558, + 558, 558, 558, 558, 558, 558, 558, 558, 558, 558, + 558, 558, 558, 558, 457, 84, 528, 113, 84, 84, + 474, 106, 84, 525, 718, 525, 395, 150, 579, 531, + 150, 150, 191, 310, 150, 560, 526, 718, 718, 569, + 569, 569, 569, 531, 531, 84, 147, 528, 84, 578, + + 145, 139, 147, 576, 661, 574, 84, 150, 84, 84, + 150, 528, 718, 718, 588, 588, 588, 588, 150, 84, + 150, 150, 672, 573, 84, 191, 507, 145, 84, 661, + 528, 150, 569, 569, 569, 569, 150, 84, 593, 183, + 150, 588, 588, 588, 588, 84, 572, 145, 571, 150, + 84, 84, 522, 522, 595, 395, 615, 150, 617, 520, + 597, 145, 150, 150, 145, 145, 639, 594, 596, 520, + 395, 667, 636, 147, 145, 649, 664, 674, 518, 145, + 518, 596, 516, 661, 516, 677, 395, 615, 145, 514, + 690, 639, 514, 512, 512, 635, 447, 568, 661, 695, + + 551, 553, 675, 688, 145, 616, 701, 701, 661, 552, + 214, 207, 395, 384, 661, 698, 549, 702, 703, 382, + 147, 624, 624, 661, 624, 624, 624, 624, 624, 395, + 624, 624, 624, 624, 147, 624, 624, 147, 147, 661, + 661, 624, 624, 624, 624, 689, 474, 147, 701, 701, + 469, 626, 147, 701, 113, 694, 544, 661, 543, 704, + 705, 147, 701, 694, 706, 661, 624, 624, 624, 624, + 542, 541, 457, 707, 701, 701, 626, 147, 701, 265, + 265, 701, 661, 701, 113, 708, 709, 534, 701, 710, + 533, 532, 711, 530, 712, 624, 624, 624, 624, 713, + + 624, 624, 624, 624, 624, 625, 624, 624, 624, 624, + 529, 624, 624, 701, 447, 442, 522, 633, 624, 624, + 624, 265, 265, 520, 714, 701, 265, 634, 518, 516, + 514, 512, 349, 349, 310, 265, 715, 502, 349, 270, + 395, 485, 624, 624, 624, 624, 484, 265, 265, 88, + 208, 265, 634, 479, 265, 382, 265, 384, 253, 469, + 464, 265, 463, 462, 208, 456, 455, 454, 453, 452, + 451, 624, 624, 624, 624, 450, 624, 624, 624, 624, + 624, 449, 624, 624, 624, 624, 265, 624, 624, 349, + 349, 214, 214, 624, 624, 624, 624, 208, 265, 207, + + 207, 207, 322, 626, 322, 320, 320, 423, 253, 270, + 270, 270, 269, 395, 269, 366, 387, 358, 624, 624, + 624, 624, 357, 384, 256, 253, 253, 247, 626, 365, + 364, 363, 362, 359, 355, 354, 353, 352, 351, 333, + 333, 332, 331, 330, 329, 329, 328, 624, 624, 624, + 624, 327, 624, 624, 624, 624, 624, 625, 624, 624, + 624, 624, 326, 624, 624, 325, 322, 320, 309, 633, + 624, 624, 624, 270, 294, 292, 291, 290, 287, 634, + 286, 270, 270, 269, 267, 265, 264, 239, 208, 263, + 237, 130, 241, 240, 624, 624, 624, 624, 239, 208, + + 238, 237, 236, 236, 634, 235, 234, 233, 106, 214, + 213, 207, 208, 207, 199, 191, 189, 165, 164, 148, + 116, 115, 106, 624, 624, 84, 88, 718, 718, 84, + 84, 718, 718, 84, 84, 84, 718, 84, 84, 84, + 84, 84, 85, 85, 85, 85, 85, 718, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 91, 91, 718, 718, 718, 91, 91, 91, + 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, + 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, - 129, 129, 129, 129, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, - 144, 144, 144, 149, 696, 696, 696, 149, 149, 149, - 696, 149, 149, 149, 149, 149, 149, 149, 149, 192, - 192, 192, 192, 192, 696, 192, 192, 192, 192, 192, - 192, 192, 192, 192, 192, 192, 192, 192, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 211, 211, 696, - - 696, 696, 696, 696, 696, 696, 696, 211, 696, 696, - 211, 211, 696, 211, 126, 126, 126, 126, 126, 126, + 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, + 149, 718, 718, 718, 149, 149, 149, 718, 149, 149, + 149, 718, 149, 149, 149, 149, 149, 190, 190, 190, + 190, 190, 718, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 192, 192, 192, + 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, + 192, 192, 192, 192, 192, 192, 192, 209, 209, 718, + 718, 718, 718, 718, 718, 718, 718, 209, 718, 718, + + 718, 209, 209, 718, 209, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, - 126, 126, 126, 244, 244, 244, 244, 244, 244, 244, - 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, - 244, 244, 145, 145, 145, 145, 145, 145, 145, 145, + 126, 126, 126, 126, 126, 245, 245, 245, 245, 245, + 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, + 245, 245, 245, 245, 245, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, - 145, 266, 266, 266, 266, 266, 266, 266, 266, 266, - 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, - 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, - - 273, 273, 273, 273, 273, 273, 273, 273, 273, 192, + 145, 145, 145, 145, 145, 268, 268, 268, 268, 268, + 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, + 268, 268, 268, 268, 268, 149, 718, 718, 718, 149, + 149, 149, 718, 149, 149, 149, 718, 149, 149, 149, + + 149, 149, 275, 275, 275, 275, 275, 275, 275, 275, + 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, + 275, 275, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, - 192, 192, 192, 192, 192, 192, 192, 192, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, - 194, 194, 194, 194, 194, 194, 194, 195, 195, 195, - 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - 195, 195, 195, 195, 195, 195, 309, 309, 309, 309, - 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, - 309, 309, 309, 309, 309, 313, 313, 696, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - - 313, 313, 313, 313, 315, 315, 696, 315, 315, 315, + 192, 192, 312, 312, 312, 312, 312, 312, 312, 312, + 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, + 312, 312, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, - 315, 315, 315, 317, 696, 317, 696, 696, 696, 317, - 317, 317, 696, 696, 317, 355, 355, 696, 355, 355, - 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, - 355, 355, 355, 355, 357, 357, 357, 357, 357, 357, - 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, - 357, 357, 357, 126, 126, 126, 126, 126, 126, 126, + + 315, 315, 319, 319, 718, 319, 319, 319, 319, 319, + 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, + 319, 319, 321, 321, 718, 321, 321, 321, 321, 321, + 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, + 321, 321, 323, 718, 323, 718, 718, 718, 323, 718, + 323, 323, 718, 718, 323, 367, 367, 367, 367, 367, + 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, + 367, 367, 367, 367, 367, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, - 126, 126, 359, 359, 359, 359, 359, 359, 359, 359, - - 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, - 359, 244, 244, 244, 244, 244, 244, 244, 244, 244, - 244, 244, 244, 244, 244, 244, 244, 244, 244, 244, - 362, 362, 362, 367, 696, 696, 696, 367, 696, 367, - 367, 367, 367, 696, 367, 266, 266, 266, 266, 266, - 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, - 266, 266, 266, 266, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 149, 696, 696, 696, 149, 149, 149, - 696, 149, 149, 149, 149, 149, 149, 149, 149, 273, - - 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, - 273, 273, 273, 273, 273, 273, 273, 273, 103, 103, - 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, - 103, 103, 103, 103, 103, 103, 103, 403, 403, 696, - 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, - 403, 403, 403, 403, 403, 403, 309, 309, 309, 309, - 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, - 309, 309, 309, 309, 309, 413, 413, 413, 413, 696, - 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, - 413, 413, 413, 413, 192, 192, 192, 192, 192, 192, + 126, 126, 126, 126, 126, 369, 369, 369, 369, 369, - 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, - 192, 192, 192, 313, 313, 696, 313, 313, 313, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 313, 313, 315, 315, 696, 315, 315, 315, 315, 315, + 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, + 369, 369, 369, 369, 369, 245, 245, 245, 245, 245, + 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, + 245, 245, 245, 245, 245, 372, 372, 372, 718, 372, + 372, 372, 372, 372, 377, 718, 718, 718, 377, 718, + 377, 377, 377, 377, 718, 718, 377, 268, 268, 268, + 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, + 268, 268, 268, 268, 268, 268, 268, 394, 394, 394, + 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, + 394, 394, 394, 394, 394, 394, 394, 149, 718, 718, + + 718, 149, 149, 149, 718, 149, 149, 149, 718, 149, + 149, 149, 149, 149, 275, 275, 275, 275, 275, 275, + 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, + 275, 275, 275, 275, 105, 105, 105, 105, 105, 105, + 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, + 105, 105, 105, 105, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, - 315, 416, 696, 416, 416, 696, 696, 416, 416, 416, - 696, 696, 416, 439, 439, 696, 439, 439, 439, 439, - 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, - 439, 439, 354, 354, 696, 354, 354, 354, 354, 354, - 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, - - 354, 355, 355, 696, 355, 355, 355, 355, 355, 355, - 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, - 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, - 357, 357, 357, 357, 357, 357, 357, 357, 357, 359, - 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, - 359, 359, 359, 359, 359, 359, 359, 359, 126, 126, + 315, 315, 315, 315, 312, 312, 312, 312, 312, 312, + 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, + 312, 312, 312, 312, 424, 424, 424, 424, 424, 424, + + 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, + 424, 424, 424, 424, 427, 427, 427, 427, 427, 427, + 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, + 427, 427, 427, 427, 429, 429, 429, 429, 429, 429, + 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, + 429, 429, 429, 429, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 319, 319, 718, 319, 319, 319, + 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, + 319, 319, 319, 319, 321, 321, 718, 321, 321, 321, + + 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, + 321, 321, 321, 321, 434, 718, 434, 718, 718, 718, + 434, 718, 434, 434, 718, 718, 434, 432, 718, 718, + 718, 718, 718, 432, 432, 432, 432, 432, 367, 367, + 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, + 367, 367, 367, 367, 367, 367, 367, 367, 369, 369, + 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, + 369, 369, 369, 369, 369, 369, 369, 369, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, - 126, 126, 126, 126, 126, 126, 126, 447, 447, 447, - 447, 447, 447, 447, 447, 447, 447, 447, 447, 447, - 447, 447, 447, 447, 447, 447, 452, 452, 696, 696, - - 452, 452, 696, 452, 452, 452, 452, 452, 452, 452, - 452, 452, 453, 696, 696, 696, 696, 696, 453, 453, - 453, 453, 696, 453, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, - 383, 383, 383, 103, 103, 103, 103, 103, 103, 103, - 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, - 103, 103, 474, 474, 696, 474, 474, 474, 474, 474, - 474, 474, 474, 474, 474, 474, 474, 474, 474, 474, - 474, 403, 403, 696, 403, 403, 403, 403, 403, 403, - 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, - - 481, 481, 696, 696, 481, 481, 481, 481, 481, 481, - 481, 481, 481, 481, 481, 481, 413, 413, 413, 413, - 696, 413, 413, 413, 413, 413, 413, 413, 413, 413, - 413, 413, 413, 413, 413, 192, 192, 192, 192, 192, - 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, - 192, 192, 192, 192, 488, 488, 696, 488, 488, 488, - 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, - 488, 488, 488, 490, 490, 696, 490, 490, 490, 490, - 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, - 490, 490, 492, 492, 696, 492, 492, 492, 492, 492, - - 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, - 492, 494, 494, 696, 494, 494, 494, 494, 494, 494, - 494, 494, 494, 494, 494, 494, 494, 494, 494, 494, - 496, 496, 696, 496, 496, 496, 496, 496, 496, 496, - 496, 496, 496, 496, 496, 496, 496, 496, 496, 498, - 498, 696, 498, 498, 498, 498, 498, 498, 498, 498, - 498, 498, 498, 498, 498, 498, 498, 498, 438, 438, - 696, 438, 438, 438, 438, 438, 438, 438, 438, 438, - 438, 438, 438, 438, 438, 438, 438, 439, 439, 696, - 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, - - 439, 439, 439, 439, 439, 439, 357, 357, 357, 357, - 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, - 357, 357, 357, 357, 357, 126, 126, 126, 126, 126, + 126, 126, 126, 126, 126, 126, 126, 126, 468, 468, + + 468, 468, 468, 468, 468, 468, 468, 468, 468, 468, + 468, 468, 468, 468, 468, 468, 468, 468, 473, 473, + 718, 718, 473, 473, 718, 473, 473, 473, 473, 473, + 473, 473, 473, 473, 473, 475, 718, 718, 718, 718, + 718, 475, 475, 475, 475, 475, 718, 475, 394, 394, + 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, + 394, 394, 394, 394, 394, 394, 394, 394, 105, 105, + 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, + 105, 105, 105, 105, 105, 105, 105, 105, 499, 499, + 718, 718, 499, 499, 499, 499, 499, 499, 499, 499, + + 499, 499, 499, 499, 499, 424, 424, 424, 424, 424, + 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, + 424, 424, 424, 424, 424, 425, 425, 425, 425, 425, + 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, + 425, 425, 425, 425, 425, 503, 503, 503, 503, 503, + 503, 503, 503, 503, 503, 503, 503, 503, 503, 503, + 503, 503, 503, 503, 503, 427, 427, 427, 427, 427, + 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, + 427, 427, 427, 427, 427, 506, 506, 506, 506, 506, + 506, 506, 506, 506, 506, 506, 506, 506, 506, 506, + + 506, 506, 506, 506, 506, 429, 429, 429, 429, 429, + 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, + 429, 429, 429, 429, 429, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 509, 718, 718, 718, 718, + 718, 509, 509, 509, 509, 509, 511, 511, 718, 511, + 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, + 511, 511, 511, 511, 511, 511, 513, 513, 718, 513, + 513, 513, 513, 513, 513, 513, 513, 513, 513, 513, + 513, 513, 513, 513, 513, 513, 515, 515, 718, 515, + + 515, 515, 515, 515, 515, 515, 515, 515, 515, 515, + 515, 515, 515, 515, 515, 515, 517, 517, 718, 517, + 517, 517, 517, 517, 517, 517, 517, 517, 517, 517, + 517, 517, 517, 517, 517, 517, 519, 519, 718, 519, + 519, 519, 519, 519, 519, 519, 519, 519, 519, 519, + 519, 519, 519, 519, 519, 519, 521, 521, 718, 521, + 521, 521, 521, 521, 521, 521, 521, 521, 521, 521, + 521, 521, 521, 521, 521, 521, 367, 367, 367, 367, + 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, + 367, 367, 367, 367, 367, 367, 126, 126, 126, 126, + 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, - 126, 126, 126, 126, 447, 447, 447, 447, 447, 447, - 447, 447, 447, 447, 447, 447, 447, 447, 447, 447, - 447, 447, 447, 522, 696, 696, 696, 696, 696, 522, - 522, 522, 522, 522, 522, 522, 522, 522, 529, 529, - 529, 529, 529, 529, 529, 529, 529, 529, 529, 529, - 529, 529, 529, 529, 529, 529, 529, 103, 103, 103, - - 103, 103, 103, 103, 103, 103, 103, 103, 103, 103, - 103, 103, 103, 103, 103, 103, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 540, 540, 540, 540, 540, - 540, 540, 540, 540, 540, 545, 696, 696, 696, 696, - 696, 545, 545, 545, 545, 554, 554, 696, 554, 554, + 126, 126, 126, 126, 126, 126, 468, 468, 468, 468, + 468, 468, 468, 468, 468, 468, 468, 468, 468, 468, + 468, 468, 468, 468, 468, 468, 548, 718, 718, 718, + 718, 718, 548, 548, 548, 548, 548, 548, 548, 548, + 548, 548, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, 554, - 554, 554, 554, 554, 572, 572, 572, 572, 572, 572, - 572, 572, 572, 572, 572, 572, 572, 572, 572, 572, - 572, 572, 572, 603, 603, 696, 603, 603, 603, 603, - 603, 603, 603, 603, 603, 603, 603, 603, 603, 603, - - 603, 603, 610, 610, 696, 610, 610, 610, 610, 610, - 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, - 610, 602, 602, 696, 602, 602, 602, 602, 602, 602, - 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, - 638, 638, 638, 638, 638, 638, 638, 638, 638, 638, - 638, 638, 638, 638, 638, 638, 638, 638, 638, 660, + 554, 554, 105, 105, 105, 105, 105, 105, 105, 105, + 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, + 105, 105, 567, 567, 567, 567, 718, 567, 567, 567, + + 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, + 567, 567, 570, 718, 718, 718, 718, 718, 570, 570, + 570, 570, 570, 577, 577, 718, 577, 577, 577, 577, + 577, 577, 577, 577, 577, 577, 577, 577, 577, 577, + 577, 577, 577, 625, 625, 718, 625, 625, 625, 625, + 625, 625, 625, 625, 625, 625, 625, 625, 625, 625, + 625, 625, 625, 632, 632, 718, 632, 632, 632, 632, + 632, 632, 632, 632, 632, 632, 632, 632, 632, 632, + 632, 632, 632, 624, 624, 718, 624, 624, 624, 624, + 624, 624, 624, 624, 624, 624, 624, 624, 624, 624, + + 624, 624, 624, 660, 660, 660, 660, 660, 660, 660, 660, 660, 660, 660, 660, 660, 660, 660, 660, 660, - 660, 660, 660, 660, 660, 660, 660, 660, 663, 663, - 663, 663, 663, 663, 663, 663, 663, 663, 663, 663, - 663, 663, 663, 663, 663, 663, 663, 678, 678, 678, - - 678, 678, 678, 678, 678, 678, 678, 678, 678, 678, - 678, 678, 678, 678, 678, 678, 3, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696 + 660, 660, 660, 682, 682, 682, 682, 682, 682, 682, + 682, 682, 682, 682, 682, 682, 682, 682, 682, 682, + 682, 682, 682, 685, 685, 685, 685, 685, 685, 685, + 685, 685, 685, 685, 685, 685, 685, 685, 685, 685, + 685, 685, 685, 700, 700, 700, 700, 700, 700, 700, + 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, + 700, 700, 700, 3, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718 } ; -static yyconst short int yy_chk[4591] = +static yyconst flex_int16_t yy_chk[4761] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -1186,7 +1299,7 @@ static yyconst short int yy_chk[4591] = 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2, 2, 2, 2, 2, 2, + 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, @@ -1194,498 +1307,520 @@ static yyconst short int yy_chk[4591] = 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 2, 2, 2, 5, 6, 6, 6, - 6, 8, 10, 10, 11, 19, 22, 46, 8, 8, - 8, 8, 16, 156, 11, 13, 11, 11, 5, 46, - 58, 11, 12, 12, 12, 13, 156, 13, 19, 12, - 22, 694, 13, 86, 12, 12, 12, 12, 12, 12, - 12, 12, 50, 50, 58, 12, 12, 12, 12, 12, + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, + 2, 2, 5, 6, 6, 6, 6, 8, 10, 10, + 716, 11, 19, 39, 8, 8, 8, 8, 16, 51, + 51, 11, 13, 11, 11, 39, 397, 5, 11, 12, + 12, 12, 13, 101, 13, 101, 12, 40, 19, 13, + 88, 12, 12, 12, 12, 12, 12, 12, 12, 40, + 56, 39, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, - 12, 12, 12, 12, 25, 28, 16, 12, 12, 12, + 12, 12, 12, 397, 53, 16, 56, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, - 12, 12, 15, 52, 15, 86, 15, 15, 15, 15, - 15, 15, 40, 674, 15, 29, 153, 29, 29, 90, - 28, 90, 29, 670, 25, 25, 90, 35, 35, 28, - 153, 25, 55, 15, 35, 35, 35, 15, 15, 15, - 15, 15, 15, 15, 15, 15, 15, 15, 15, 31, - 31, 532, 31, 31, 31, 55, 99, 52, 99, 40, - - 15, 26, 26, 26, 26, 26, 26, 26, 26, 26, - 26, 26, 26, 26, 26, 26, 26, 63, 84, 84, - 144, 26, 26, 26, 26, 30, 30, 30, 30, 30, - 32, 32, 34, 34, 32, 32, 32, 33, 34, 34, - 34, 43, 30, 532, 26, 26, 26, 33, 33, 36, - 36, 49, 33, 33, 33, 37, 37, 36, 36, 36, - 33, 49, 63, 49, 37, 37, 37, 676, 49, 91, - 91, 63, 26, 26, 27, 38, 38, 27, 27, 27, - 27, 27, 61, 47, 669, 38, 38, 217, 47, 38, - 144, 43, 43, 47, 663, 47, 47, 217, 43, 64, - - 47, 64, 64, 27, 217, 44, 64, 27, 27, 27, - 27, 27, 27, 27, 27, 27, 27, 27, 27, 44, - 44, 44, 44, 65, 65, 65, 65, 65, 69, 69, - 27, 74, 61, 61, 69, 69, 69, 676, 149, 61, - 65, 66, 66, 74, 66, 66, 66, 67, 67, 68, - 149, 67, 67, 67, 70, 70, 76, 158, 158, 68, - 68, 70, 70, 70, 68, 68, 68, 662, 76, 74, - 72, 72, 68, 192, 192, 44, 48, 48, 48, 72, - 72, 72, 660, 48, 81, 81, 81, 81, 48, 48, - 48, 48, 48, 48, 48, 48, 193, 193, 76, 48, - - 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, - 48, 48, 48, 48, 48, 48, 48, 48, 95, 95, - 95, 48, 48, 48, 48, 48, 48, 48, 48, 48, - 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, - 48, 48, 48, 48, 48, 48, 51, 194, 194, 51, - 128, 51, 77, 51, 51, 51, 51, 51, 51, 71, - 71, 51, 73, 73, 77, 196, 196, 71, 71, 71, - 75, 157, 73, 73, 258, 75, 73, 98, 98, 98, - 51, 128, 75, 157, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 110, 110, 110, 110, - - 271, 387, 112, 112, 112, 112, 658, 51, 62, 77, - 78, 166, 271, 62, 79, 78, 62, 62, 62, 62, - 62, 258, 75, 166, 323, 79, 85, 78, 79, 79, - 79, 79, 112, 85, 85, 85, 85, 85, 113, 113, - 113, 113, 62, 166, 273, 273, 62, 62, 62, 62, - 62, 62, 62, 62, 62, 62, 62, 62, 100, 387, - 78, 78, 96, 96, 96, 171, 176, 78, 100, 62, - 100, 111, 113, 111, 96, 100, 96, 171, 176, 111, - 656, 96, 111, 623, 79, 89, 323, 89, 89, 89, - 89, 89, 89, 111, 171, 111, 123, 123, 123, 123, - - 167, 234, 111, 136, 136, 136, 136, 111, 118, 118, - 118, 118, 167, 650, 89, 234, 234, 176, 89, 89, - 89, 89, 89, 89, 89, 89, 89, 89, 89, 89, - 121, 121, 121, 121, 123, 241, 124, 124, 124, 124, - 623, 89, 106, 106, 106, 106, 106, 106, 106, 106, - 106, 106, 106, 106, 108, 151, 649, 118, 167, 233, - 325, 108, 325, 151, 151, 243, 241, 151, 165, 137, - 137, 137, 137, 138, 138, 138, 138, 267, 121, 124, - 165, 345, 233, 108, 308, 308, 267, 108, 108, 108, - 108, 108, 108, 108, 108, 108, 108, 108, 108, 137, - - 162, 162, 162, 162, 233, 243, 165, 138, 309, 309, - 108, 127, 127, 127, 127, 127, 127, 127, 127, 127, - 127, 127, 127, 127, 127, 127, 127, 146, 152, 568, - 568, 127, 127, 127, 127, 329, 152, 345, 154, 185, - 152, 146, 146, 146, 146, 146, 154, 190, 270, 329, - 154, 185, 168, 270, 127, 127, 127, 648, 190, 163, - 163, 163, 163, 644, 168, 270, 164, 164, 164, 164, - 169, 169, 169, 169, 172, 172, 172, 172, 174, 174, - 174, 174, 127, 127, 129, 129, 129, 129, 129, 163, - 129, 129, 129, 129, 129, 129, 185, 146, 129, 129, - - 164, 173, 186, 189, 129, 129, 386, 129, 168, 175, - 175, 175, 175, 173, 186, 189, 174, 190, 346, 169, - 272, 182, 172, 187, 368, 272, 188, 129, 129, 182, - 182, 182, 182, 182, 183, 187, 269, 272, 188, 173, - 346, 269, 183, 183, 183, 183, 183, 609, 269, 189, - 386, 347, 175, 357, 186, 129, 129, 131, 131, 131, - 131, 131, 131, 131, 131, 131, 131, 131, 131, 132, - 132, 368, 183, 347, 132, 187, 641, 132, 132, 132, - 132, 132, 188, 132, 357, 132, 132, 132, 132, 132, + 12, 12, 15, 269, 15, 88, 15, 15, 15, 15, + 15, 15, 269, 28, 15, 21, 21, 21, 21, 20, + 20, 20, 20, 23, 23, 23, 23, 24, 24, 24, + 24, 53, 331, 22, 331, 15, 22, 22, 22, 22, + 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, + + 15, 15, 20, 25, 38, 38, 696, 22, 86, 86, + 23, 28, 144, 15, 38, 38, 25, 25, 25, 25, + 28, 29, 128, 29, 29, 47, 93, 93, 29, 24, + 30, 30, 30, 30, 30, 31, 31, 47, 31, 31, + 31, 156, 37, 37, 32, 32, 592, 30, 32, 32, + 32, 37, 37, 37, 156, 128, 25, 26, 26, 26, + 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, + 26, 26, 26, 33, 692, 34, 34, 26, 26, 26, + 26, 34, 34, 34, 153, 144, 33, 33, 35, 35, + 691, 33, 33, 33, 685, 35, 35, 35, 153, 33, + + 36, 36, 26, 26, 26, 26, 42, 44, 36, 36, + 36, 41, 592, 41, 242, 44, 72, 72, 42, 57, + 57, 57, 57, 41, 72, 72, 72, 44, 45, 43, + 557, 26, 26, 27, 149, 27, 27, 27, 27, 27, + 27, 43, 45, 45, 45, 45, 149, 242, 42, 48, + 158, 158, 57, 157, 48, 58, 58, 58, 58, 48, + 44, 48, 48, 41, 27, 157, 48, 190, 190, 27, + 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, + 27, 50, 191, 191, 59, 557, 43, 59, 59, 59, + 59, 50, 27, 50, 61, 61, 61, 61, 50, 70, + + 70, 45, 49, 49, 49, 70, 70, 70, 59, 49, + 60, 60, 60, 60, 49, 49, 49, 49, 49, 49, + 49, 49, 97, 97, 97, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 61, 60, 64, 684, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 52, 192, 192, 52, 62, + 52, 215, 52, 52, 52, 52, 52, 52, 645, 183, + 52, 215, 62, 62, 62, 62, 64, 65, 215, 65, + + 65, 183, 68, 68, 65, 64, 68, 68, 68, 67, + 67, 52, 67, 67, 67, 260, 52, 52, 52, 52, + 52, 52, 52, 52, 52, 52, 52, 52, 83, 83, + 83, 83, 62, 66, 66, 66, 66, 66, 69, 52, + 63, 335, 63, 63, 63, 63, 63, 63, 645, 183, + 66, 69, 69, 71, 71, 335, 69, 69, 69, 87, + 71, 71, 71, 166, 69, 260, 87, 87, 87, 87, + 87, 63, 100, 100, 100, 166, 63, 63, 63, 63, + 63, 63, 63, 63, 63, 63, 63, 63, 193, 193, + 232, 73, 73, 74, 74, 75, 232, 166, 75, 63, + + 73, 73, 73, 74, 74, 76, 77, 75, 76, 77, + 75, 77, 78, 79, 80, 78, 79, 76, 77, 80, + 76, 77, 80, 244, 78, 79, 81, 78, 79, 194, + 194, 80, 682, 167, 80, 543, 75, 81, 102, 680, + 81, 81, 81, 81, 92, 167, 92, 187, 102, 543, + 102, 92, 98, 98, 98, 102, 614, 78, 186, 187, + 151, 77, 275, 275, 98, 244, 98, 80, 151, 151, + 186, 98, 151, 79, 119, 119, 119, 119, 136, 136, + 136, 136, 137, 137, 137, 137, 138, 138, 138, 138, + 168, 168, 168, 168, 167, 359, 187, 311, 311, 81, + + 91, 152, 91, 91, 91, 91, 91, 91, 154, 152, + 165, 614, 146, 152, 188, 137, 154, 186, 312, 312, + 154, 171, 165, 138, 678, 188, 146, 146, 146, 146, + 146, 91, 672, 171, 313, 313, 91, 91, 91, 91, + 91, 91, 91, 91, 91, 91, 91, 91, 196, 196, + 171, 165, 314, 314, 359, 196, 196, 196, 196, 91, + 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, + 108, 108, 110, 216, 216, 216, 216, 110, 315, 315, + 110, 110, 110, 110, 110, 146, 671, 188, 110, 110, + 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, + + 110, 110, 110, 110, 110, 110, 110, 110, 110, 217, + 217, 217, 217, 110, 110, 110, 110, 110, 110, 110, + 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, + 110, 110, 110, 110, 110, 110, 110, 110, 112, 180, + 670, 112, 112, 112, 112, 112, 173, 180, 180, 180, + 180, 180, 181, 184, 185, 273, 304, 378, 173, 329, + 181, 181, 181, 181, 181, 184, 185, 273, 304, 112, + 218, 218, 218, 218, 112, 112, 112, 112, 112, 112, + 112, 112, 112, 112, 112, 112, 666, 173, 221, 221, + 221, 221, 360, 181, 316, 316, 663, 112, 113, 304, + + 113, 222, 222, 222, 222, 113, 113, 378, 184, 185, + 113, 195, 195, 236, 113, 424, 424, 360, 195, 195, + 195, 195, 195, 113, 329, 113, 223, 223, 223, 223, + 662, 113, 113, 426, 426, 361, 236, 113, 233, 233, + 233, 233, 113, 127, 127, 127, 127, 127, 127, 127, + 127, 127, 127, 127, 127, 127, 127, 127, 127, 182, + 361, 236, 277, 127, 127, 127, 127, 182, 182, 182, + 182, 182, 200, 233, 298, 307, 298, 201, 226, 200, + 201, 201, 201, 201, 201, 226, 298, 307, 127, 127, + 127, 127, 224, 224, 224, 224, 224, 224, 224, 224, + + 224, 224, 224, 200, 182, 427, 427, 333, 201, 226, + 234, 234, 234, 234, 395, 277, 395, 127, 127, 129, + 129, 129, 129, 129, 277, 129, 129, 129, 129, 129, + 129, 200, 657, 129, 129, 307, 201, 226, 272, 129, + 129, 342, 129, 272, 254, 234, 243, 243, 243, 243, + 254, 254, 254, 254, 342, 272, 267, 241, 241, 241, + 241, 267, 267, 383, 129, 129, 129, 255, 369, 290, + 293, 266, 333, 656, 255, 255, 255, 255, 271, 342, + 255, 290, 293, 271, 398, 266, 266, 266, 266, 655, + 271, 243, 654, 129, 129, 131, 131, 131, 131, 131, + + 131, 131, 131, 131, 131, 131, 131, 132, 132, 241, + 369, 255, 132, 383, 290, 132, 132, 132, 132, 132, + 651, 132, 293, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, - - 132, 132, 132, 132, 384, 609, 384, 132, 132, 132, + 132, 132, 132, 132, 266, 398, 132, 476, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, 132, - 132, 132, 134, 134, 134, 134, 134, 134, 134, 134, - 134, 134, 134, 134, 135, 218, 218, 218, 218, 484, - 265, 135, 135, 135, 135, 265, 265, 135, 484, 135, + 132, 132, 132, 134, 134, 134, 134, 134, 134, 134, + 134, 134, 134, 134, 134, 135, 135, 428, 428, 308, + 135, 429, 429, 135, 135, 135, 135, 476, 650, 135, + + 308, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, - 135, 135, 135, 135, 135, 135, 135, 135, 219, 219, - 219, 219, 198, 198, 432, 135, 155, 155, 155, 198, - 198, 198, 198, 155, 220, 220, 220, 220, 155, 155, + 135, 135, 323, 323, 323, 323, 135, 135, 135, 135, + 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, + 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, + 135, 155, 155, 155, 274, 486, 486, 486, 155, 274, + 291, 400, 308, 155, 155, 291, 155, 155, 155, 155, + 155, 274, 291, 400, 155, 155, 155, 155, 155, 155, + 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, + 155, 155, 155, 155, 155, 339, 339, 339, 339, 155, - 640, 155, 155, 155, 155, 155, 435, 432, 327, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 155, 155, 155, 435, 637, - 637, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, - 155, 155, 155, 155, 155, 155, 159, 304, 275, 202, - 222, 223, 223, 223, 223, 184, 202, 222, 159, 304, - 327, 197, 197, 184, 184, 184, 184, 184, 197, 197, - 197, 197, 197, 224, 224, 224, 224, 372, 202, 222, - 252, 252, 252, 252, 159, 159, 159, 159, 159, 159, - - 159, 159, 159, 159, 159, 159, 160, 184, 275, 242, - 242, 242, 242, 160, 304, 202, 222, 275, 317, 317, - 317, 317, 203, 358, 388, 203, 203, 203, 203, 203, - 239, 239, 239, 239, 372, 160, 388, 359, 388, 160, + 155, 155, 155, 155, 159, 303, 302, 288, 302, 367, + 368, 303, 503, 503, 256, 648, 159, 303, 302, 288, + 278, 256, 256, 256, 256, 281, 647, 256, 278, 278, + 278, 278, 278, 281, 281, 281, 281, 281, 350, 350, + 350, 350, 367, 368, 643, 159, 159, 159, 159, 159, + 159, 159, 159, 159, 159, 159, 159, 160, 256, 306, + 411, 303, 160, 642, 306, 160, 160, 160, 160, 160, + 288, 306, 411, 160, 160, 160, 160, 160, 160, 160, + + 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, + 160, 160, 160, 160, 373, 373, 373, 373, 160, 160, + 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, - 160, 203, 242, 461, 358, 461, 230, 230, 230, 230, - 461, 635, 160, 177, 177, 177, 177, 177, 177, 177, - 177, 177, 177, 177, 177, 178, 178, 359, 203, 239, - 178, 707, 707, 178, 178, 178, 178, 178, 230, 178, - 634, 178, 178, 178, 178, 178, 178, 178, 178, 178, - - 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, - 360, 360, 360, 178, 178, 178, 178, 178, 178, 178, - 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, - 178, 178, 178, 178, 178, 178, 178, 178, 180, 180, - 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, - 181, 181, 449, 360, 444, 181, 708, 708, 181, 181, - 181, 181, 181, 633, 181, 449, 181, 181, 181, 181, - 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, - 181, 181, 181, 181, 181, 444, 632, 591, 181, 181, - 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, - - 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, - 181, 181, 181, 221, 221, 221, 221, 221, 221, 221, - 221, 221, 221, 221, 221, 225, 338, 338, 338, 338, - 454, 651, 225, 366, 225, 253, 591, 286, 231, 231, - 231, 231, 253, 253, 253, 253, 366, 531, 253, 286, - 363, 363, 363, 363, 225, 465, 465, 465, 225, 225, + 160, 160, 160, 162, 282, 698, 162, 162, 162, 162, + 162, 641, 282, 282, 282, 282, 282, 283, 283, 283, + 283, 283, 283, 283, 283, 283, 283, 283, 318, 318, + 374, 374, 374, 374, 162, 318, 318, 318, 318, 162, + 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, + 162, 430, 430, 456, 505, 505, 430, 434, 434, 434, + + 434, 556, 162, 175, 175, 175, 175, 175, 175, 175, + 175, 175, 175, 175, 175, 176, 176, 343, 698, 456, + 176, 506, 506, 176, 176, 176, 176, 176, 459, 176, + 343, 176, 176, 176, 176, 176, 176, 176, 176, 176, + 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, + 176, 176, 556, 459, 176, 343, 176, 176, 176, 176, + 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, + 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, + 176, 178, 178, 178, 178, 178, 178, 178, 178, 178, + 178, 178, 178, 179, 179, 346, 640, 502, 179, 568, + + 568, 179, 179, 179, 179, 179, 502, 179, 346, 179, + 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, + 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, + 370, 370, 370, 346, 179, 179, 179, 179, 179, 179, + 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, + 179, 179, 179, 179, 179, 179, 179, 179, 179, 219, + 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, + 286, 292, 488, 591, 591, 370, 487, 465, 286, 286, + 286, 286, 286, 292, 219, 219, 219, 219, 219, 219, + 219, 219, 219, 219, 219, 219, 220, 220, 220, 220, + + 220, 220, 220, 220, 220, 220, 220, 300, 601, 300, + 465, 638, 606, 286, 637, 300, 300, 300, 300, 300, + 292, 220, 220, 220, 220, 220, 220, 220, 220, 220, + 220, 220, 220, 225, 225, 487, 420, 488, 225, 606, + 629, 225, 225, 225, 225, 225, 623, 225, 420, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, - 231, 629, 285, 628, 366, 467, 253, 454, 283, 286, - 651, 225, 240, 240, 285, 240, 240, 240, 240, 240, - 283, 240, 240, 240, 240, 531, 240, 240, 288, 254, - - 450, 264, 240, 240, 240, 240, 254, 254, 254, 254, - 288, 276, 254, 450, 285, 264, 264, 264, 264, 276, - 276, 276, 276, 276, 279, 240, 240, 240, 285, 285, - 398, 389, 279, 279, 279, 279, 279, 467, 283, 281, - 254, 305, 398, 389, 288, 389, 240, 281, 281, 281, - 281, 281, 305, 240, 240, 244, 244, 244, 244, 244, - 626, 244, 244, 244, 244, 244, 244, 592, 284, 244, - 244, 264, 282, 284, 289, 244, 244, 569, 244, 281, - 282, 282, 282, 282, 282, 284, 289, 608, 287, 303, - 295, 284, 295, 287, 303, 299, 301, 299, 244, 244, - - 287, 303, 295, 625, 414, 414, 290, 299, 301, 414, - 621, 305, 282, 284, 290, 290, 290, 290, 290, 592, - 620, 297, 302, 289, 369, 370, 244, 244, 245, 297, - 297, 297, 297, 297, 302, 336, 301, 369, 370, 608, - 569, 245, 336, 245, 245, 245, 245, 245, 245, 245, - 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, - 245, 245, 302, 290, 336, 369, 370, 601, 584, 245, - 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, - 247, 247, 255, 328, 300, 709, 709, 328, 622, 601, - 300, 336, 579, 584, 328, 255, 300, 255, 255, 255, - - 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, - 255, 255, 255, 255, 255, 255, 712, 712, 312, 312, - 466, 409, 318, 255, 277, 312, 312, 312, 312, 318, - 379, 318, 332, 409, 393, 619, 277, 300, 380, 332, - 379, 332, 379, 622, 385, 328, 393, 379, 380, 411, - 380, 318, 385, 636, 579, 380, 385, 445, 445, 445, - 411, 332, 277, 277, 277, 277, 277, 277, 277, 277, - 277, 277, 277, 277, 280, 394, 466, 451, 318, 396, - 618, 280, 393, 280, 365, 365, 487, 394, 332, 365, - 451, 396, 365, 365, 365, 365, 665, 616, 365, 487, - - 445, 636, 396, 280, 448, 448, 448, 280, 280, 280, - 280, 280, 280, 280, 280, 280, 280, 280, 280, 411, - 615, 399, 607, 394, 396, 416, 416, 416, 416, 606, - 280, 291, 291, 399, 291, 291, 291, 291, 291, 291, - 291, 291, 291, 291, 377, 291, 291, 448, 665, 502, - 399, 291, 291, 291, 291, 392, 401, 400, 377, 377, - 377, 377, 502, 392, 392, 392, 392, 392, 401, 400, - 402, 600, 424, 459, 291, 291, 291, 407, 481, 407, - 481, 598, 402, 395, 424, 459, 671, 408, 395, 407, - 481, 469, 471, 408, 477, 291, 469, 471, 401, 408, - - 395, 400, 291, 291, 292, 292, 477, 482, 469, 471, - 729, 729, 402, 597, 377, 596, 292, 675, 292, 482, - 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, - 292, 292, 292, 292, 292, 292, 292, 292, 292, 395, - 408, 671, 602, 459, 604, 477, 292, 293, 293, 293, - 293, 293, 293, 293, 293, 293, 293, 293, 293, 298, - 483, 530, 530, 530, 602, 675, 604, 590, 589, 588, - 586, 483, 298, 612, 298, 298, 298, 298, 298, 298, - 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, - 298, 298, 298, 585, 583, 612, 581, 645, 580, 645, - - 298, 335, 335, 335, 335, 335, 335, 335, 335, 335, - 335, 335, 335, 348, 348, 433, 348, 348, 348, 348, - 348, 645, 348, 348, 348, 348, 503, 348, 348, 410, - 483, 473, 578, 348, 348, 348, 348, 406, 406, 503, - 476, 410, 406, 473, 433, 406, 406, 406, 406, 406, - 472, 406, 470, 433, 476, 476, 348, 348, 348, 577, - 478, 507, 472, 348, 470, 572, 479, 567, 517, 433, - 472, 479, 478, 473, 566, 507, 536, 348, 348, 470, - 582, 410, 517, 479, 348, 348, 355, 355, 536, 355, - 355, 355, 355, 355, 582, 355, 355, 355, 355, 611, - - 355, 355, 470, 646, 486, 486, 355, 355, 355, 355, - 478, 486, 486, 486, 486, 533, 534, 533, 520, 520, - 520, 525, 535, 646, 659, 646, 611, 533, 534, 355, - 355, 355, 536, 538, 535, 525, 525, 525, 525, 539, - 677, 541, 564, 571, 574, 538, 659, 562, 611, 561, - 560, 539, 541, 535, 534, 571, 574, 355, 355, 356, - 356, 520, 356, 356, 356, 356, 356, 559, 356, 356, - 356, 356, 575, 356, 356, 538, 570, 539, 573, 356, - 356, 356, 356, 643, 575, 544, 544, 558, 570, 538, - 573, 525, 544, 544, 544, 544, 613, 643, 565, 571, - - 631, 557, 356, 356, 356, 576, 595, 570, 613, 614, - 677, 541, 565, 565, 565, 565, 576, 595, 556, 573, - 614, 555, 631, 678, 554, 553, 551, 550, 631, 575, - 356, 356, 390, 390, 390, 390, 390, 390, 390, 390, - 390, 390, 390, 390, 397, 397, 549, 397, 397, 397, - 397, 397, 397, 397, 397, 397, 397, 594, 397, 397, - 627, 547, 624, 638, 397, 397, 397, 397, 565, 594, - 546, 627, 545, 630, 617, 576, 595, 543, 630, 614, - 617, 642, 540, 537, 529, 528, 655, 397, 397, 397, - 624, 638, 642, 678, 397, 630, 617, 655, 693, 594, - - 668, 527, 617, 526, 524, 672, 522, 653, 397, 397, - 518, 668, 624, 638, 639, 397, 397, 403, 403, 652, - 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, - 627, 403, 403, 672, 516, 653, 639, 403, 403, 403, - 403, 515, 639, 514, 513, 512, 511, 652, 510, 509, - 508, 642, 652, 666, 673, 672, 655, 653, 639, 667, - 403, 403, 403, 653, 639, 673, 679, 680, 693, 652, - 668, 681, 682, 683, 684, 685, 506, 679, 680, 666, - 505, 666, 681, 682, 683, 684, 685, 667, 403, 403, - 405, 405, 504, 405, 405, 405, 405, 405, 405, 405, - - 405, 405, 405, 666, 405, 405, 501, 667, 500, 667, - 405, 405, 405, 405, 499, 498, 497, 496, 495, 494, - 493, 492, 491, 490, 673, 489, 488, 480, 475, 686, - 464, 463, 462, 405, 405, 405, 679, 680, 460, 458, - 686, 681, 682, 683, 684, 685, 687, 456, 453, 452, - 447, 443, 442, 688, 689, 690, 691, 687, 692, 441, - 437, 405, 405, 426, 688, 689, 690, 691, 436, 692, - 434, 431, 430, 429, 428, 427, 426, 423, 426, 426, - 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, - 426, 426, 426, 426, 426, 426, 426, 439, 439, 686, - - 439, 439, 439, 439, 439, 422, 439, 439, 439, 439, - 421, 439, 439, 420, 419, 418, 687, 439, 439, 439, - 439, 417, 415, 688, 689, 690, 691, 413, 692, 412, - 404, 391, 383, 382, 381, 378, 376, 374, 371, 367, - 439, 439, 439, 362, 361, 353, 352, 351, 350, 344, - 343, 342, 341, 340, 339, 334, 333, 331, 326, 324, - 322, 321, 320, 319, 316, 315, 314, 313, 439, 439, - 440, 440, 310, 440, 440, 440, 440, 440, 306, 440, - 440, 440, 440, 296, 440, 440, 294, 278, 274, 268, - 440, 440, 440, 440, 266, 262, 261, 260, 259, 257, - - 256, 251, 250, 249, 238, 237, 236, 235, 232, 229, - 228, 227, 226, 440, 440, 440, 216, 215, 214, 213, - 440, 212, 209, 208, 207, 206, 205, 204, 200, 199, - 195, 191, 179, 170, 440, 440, 161, 150, 148, 147, - 145, 440, 440, 468, 468, 143, 142, 141, 140, 139, - 126, 125, 122, 120, 119, 468, 117, 468, 116, 468, - 468, 468, 468, 468, 468, 468, 468, 468, 468, 468, - 468, 468, 468, 468, 468, 468, 468, 468, 474, 474, - 115, 474, 474, 474, 474, 474, 474, 474, 474, 474, - 474, 114, 474, 474, 103, 101, 97, 94, 474, 474, - - 474, 474, 93, 92, 88, 83, 80, 60, 59, 57, - 56, 54, 53, 45, 42, 41, 39, 24, 23, 21, - 20, 474, 474, 474, 18, 17, 14, 9, 3, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 474, - 474, 587, 587, 0, 587, 587, 587, 587, 587, 0, - 587, 587, 587, 587, 0, 587, 587, 0, 0, 0, - 0, 587, 587, 587, 587, 0, 0, 0, 0, 0, - 0, 587, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 587, 587, 587, 0, 0, 0, - - 0, 0, 0, 587, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 587, 587, 593, 593, 0, 593, 593, 593, - 593, 593, 593, 593, 593, 593, 593, 0, 593, 593, - 0, 0, 0, 0, 593, 593, 593, 593, 0, 0, - 0, 0, 0, 0, 593, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 593, 593, 593, - 0, 0, 0, 0, 0, 0, 593, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 593, 593, 603, 603, 0, - - 603, 603, 603, 603, 603, 0, 603, 603, 603, 603, - 0, 603, 603, 0, 0, 0, 0, 603, 603, 603, - 603, 0, 0, 0, 0, 0, 0, 603, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 603, 603, 603, 0, 0, 0, 0, 0, 0, 603, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 603, 603, - 610, 610, 0, 610, 610, 610, 610, 610, 610, 610, - 610, 610, 610, 0, 610, 610, 0, 0, 0, 0, - 610, 610, 610, 610, 0, 0, 0, 0, 0, 0, - - 610, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 610, 610, 610, 0, 0, 0, 0, - 0, 0, 610, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 610, 610, 697, 0, 0, 0, 697, 697, 0, - 0, 697, 697, 697, 697, 697, 697, 697, 697, 698, - 698, 698, 698, 698, 0, 698, 698, 698, 698, 698, - 698, 698, 698, 698, 698, 698, 698, 698, 699, 699, - 0, 0, 0, 699, 699, 699, 700, 700, 700, 700, - 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, + 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, + 628, 623, 225, 601, 225, 225, 225, 225, 225, 225, + 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, + 225, 225, 225, 225, 225, 225, 225, 225, 225, 245, + + 245, 245, 245, 245, 376, 245, 245, 245, 245, 245, + 245, 289, 622, 245, 245, 287, 289, 376, 624, 245, + 245, 294, 245, 287, 287, 287, 287, 287, 289, 294, + 294, 294, 294, 294, 289, 305, 620, 613, 379, 380, + 659, 659, 376, 624, 245, 245, 245, 305, 376, 334, + 412, 379, 380, 334, 338, 390, 345, 421, 287, 289, + 334, 338, 412, 345, 482, 390, 482, 390, 404, 421, + 404, 482, 390, 245, 245, 246, 379, 380, 305, 412, + 404, 294, 379, 380, 630, 338, 626, 345, 246, 613, + 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, + + 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, + 246, 626, 421, 338, 334, 345, 555, 555, 555, 246, + 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, + 248, 248, 257, 422, 396, 699, 619, 658, 673, 630, + 729, 729, 396, 618, 422, 257, 396, 257, 257, 257, + 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, + 257, 257, 257, 257, 257, 257, 257, 257, 442, 612, + 257, 532, 431, 375, 375, 631, 257, 279, 375, 496, + 442, 375, 375, 375, 375, 431, 532, 375, 658, 279, + 673, 496, 407, 279, 279, 279, 279, 279, 279, 279, - 700, 700, 700, 700, 700, 701, 701, 701, 701, 701, - 701, 701, 701, 701, 701, 701, 701, 701, 701, 701, - 701, 701, 701, 701, 702, 702, 702, 702, 702, 702, - 702, 702, 702, 702, 702, 702, 702, 702, 702, 702, - 702, 702, 702, 703, 0, 0, 0, 703, 703, 703, - 0, 703, 703, 703, 703, 703, 703, 703, 703, 704, - 704, 704, 704, 704, 0, 704, 704, 704, 704, 704, - 704, 704, 704, 704, 704, 704, 704, 704, 705, 705, - 705, 705, 705, 705, 705, 705, 705, 705, 705, 705, - 705, 705, 705, 705, 705, 705, 705, 706, 706, 0, - - 0, 0, 0, 0, 0, 0, 0, 706, 0, 0, - 706, 706, 0, 706, 710, 710, 710, 710, 710, 710, - 710, 710, 710, 710, 710, 710, 710, 710, 710, 710, - 710, 710, 710, 711, 711, 711, 711, 711, 711, 711, - 711, 711, 711, 711, 711, 711, 711, 711, 711, 711, - 711, 711, 713, 713, 713, 713, 713, 713, 713, 713, - 713, 713, 713, 713, 713, 713, 713, 713, 713, 713, - 713, 714, 714, 714, 714, 714, 714, 714, 714, 714, - 714, 714, 714, 714, 714, 714, 714, 714, 714, 714, - 715, 715, 715, 715, 715, 715, 715, 715, 715, 715, - - 715, 715, 715, 715, 715, 715, 715, 715, 715, 716, - 716, 716, 716, 716, 716, 716, 716, 716, 716, 716, - 716, 716, 716, 716, 716, 716, 716, 716, 717, 717, - 717, 717, 717, 717, 717, 717, 717, 717, 717, 717, - 717, 717, 717, 717, 717, 717, 717, 718, 718, 718, - 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, - 718, 718, 718, 718, 718, 718, 719, 719, 719, 719, - 719, 719, 719, 719, 719, 719, 719, 719, 719, 719, - 719, 719, 719, 719, 719, 720, 720, 0, 720, 720, + 279, 279, 279, 279, 407, 406, 422, 611, 699, 634, + 431, 610, 375, 406, 406, 406, 406, 406, 279, 279, + 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, + 284, 284, 444, 496, 634, 284, 631, 608, 284, 284, + 284, 284, 284, 407, 284, 444, 284, 284, 284, 284, + 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, + 284, 284, 284, 284, 284, 284, 284, 700, 607, 284, + 444, 284, 284, 284, 284, 284, 284, 284, 284, 284, + 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, + 284, 284, 284, 284, 284, 284, 295, 295, 644, 418, + + 605, 418, 687, 730, 730, 603, 633, 602, 295, 646, + 295, 418, 295, 295, 295, 295, 295, 295, 295, 295, + 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, + 295, 295, 295, 633, 731, 731, 667, 646, 667, 600, + 700, 295, 296, 296, 296, 296, 296, 296, 296, 296, + 296, 296, 296, 296, 301, 445, 644, 687, 633, 466, + 466, 466, 646, 667, 469, 469, 469, 301, 445, 301, + 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, + 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, + 414, 388, 301, 445, 599, 693, 590, 604, 301, 324, + + 589, 408, 414, 324, 466, 388, 388, 388, 388, 469, + 324, 604, 324, 408, 324, 324, 324, 324, 324, 324, + 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, + 324, 324, 324, 324, 324, 414, 715, 324, 587, 324, + 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, + 324, 409, 408, 693, 415, 391, 409, 413, 489, 451, + 489, 665, 324, 337, 388, 391, 415, 391, 409, 413, + 489, 585, 391, 451, 451, 665, 337, 584, 337, 337, + 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, + 337, 337, 337, 337, 337, 337, 337, 337, 337, 415, + + 419, 337, 341, 583, 413, 582, 419, 734, 734, 715, + 409, 660, 419, 751, 751, 341, 581, 341, 341, 341, + 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, + 341, 341, 341, 341, 341, 341, 341, 341, 668, 660, + 341, 344, 344, 344, 344, 344, 344, 344, 344, 344, + 344, 344, 344, 399, 399, 580, 419, 579, 546, 546, + 546, 668, 578, 668, 660, 399, 577, 399, 576, 399, + 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, + 399, 399, 399, 399, 399, 399, 399, 399, 399, 399, + 416, 470, 399, 401, 574, 495, 573, 572, 416, 416, + + 416, 416, 416, 546, 470, 457, 401, 495, 401, 401, + 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, + 401, 401, 401, 401, 401, 401, 401, 401, 401, 470, + 471, 401, 402, 500, 491, 457, 571, 410, 570, 491, + 495, 567, 492, 471, 402, 500, 457, 417, 417, 410, + 472, 491, 417, 480, 492, 417, 417, 417, 417, 417, + 410, 417, 457, 472, 566, 480, 639, 653, 471, 492, + 554, 681, 639, 402, 402, 402, 402, 402, 402, 402, + 402, 402, 402, 402, 402, 410, 417, 448, 472, 497, + 553, 639, 653, 552, 551, 492, 681, 639, 653, 549, + + 448, 497, 448, 448, 448, 448, 448, 448, 448, 448, + 448, 448, 448, 448, 448, 448, 448, 448, 448, 448, + 448, 448, 448, 501, 596, 448, 480, 490, 490, 564, + 548, 544, 542, 541, 501, 540, 596, 539, 538, 490, + 564, 490, 497, 490, 490, 490, 490, 490, 490, 490, + 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, + 490, 490, 490, 490, 493, 494, 490, 498, 499, 493, + 499, 697, 498, 510, 525, 526, 694, 494, 537, 531, + 499, 493, 508, 508, 498, 494, 510, 525, 526, 508, + 508, 508, 508, 531, 531, 558, 501, 558, 559, 536, + + 550, 535, 564, 533, 694, 530, 560, 558, 561, 562, + 559, 510, 525, 526, 550, 550, 550, 550, 560, 563, + 561, 562, 697, 529, 593, 569, 569, 588, 594, 694, + 527, 563, 569, 569, 569, 569, 593, 595, 560, 559, + 594, 588, 588, 588, 588, 597, 524, 598, 523, 595, + 616, 635, 522, 521, 562, 661, 593, 597, 598, 520, + 563, 617, 616, 635, 636, 649, 652, 561, 562, 519, + 674, 652, 617, 550, 664, 636, 649, 661, 518, 677, + 517, 595, 516, 661, 515, 664, 675, 594, 690, 514, + 677, 652, 513, 512, 511, 616, 509, 504, 674, 690, + + 588, 485, 661, 674, 695, 597, 701, 702, 661, 484, + 483, 481, 689, 479, 675, 695, 477, 701, 702, 475, + 598, 609, 609, 674, 609, 609, 609, 609, 609, 688, + 609, 609, 609, 609, 617, 609, 609, 636, 649, 675, + 689, 609, 609, 609, 609, 675, 473, 664, 703, 704, + 468, 609, 677, 705, 464, 688, 463, 688, 462, 703, + 704, 690, 706, 689, 705, 689, 609, 609, 609, 609, + 461, 460, 458, 706, 707, 708, 609, 695, 709, 701, + 702, 710, 688, 711, 455, 707, 708, 454, 712, 709, + 453, 452, 710, 450, 711, 609, 609, 615, 615, 712, + + 615, 615, 615, 615, 615, 615, 615, 615, 615, 615, + 449, 615, 615, 713, 446, 441, 440, 615, 615, 615, + 615, 703, 704, 439, 713, 714, 705, 615, 438, 437, + 436, 435, 433, 432, 425, 706, 714, 423, 405, 403, + 394, 393, 615, 615, 615, 615, 392, 707, 708, 389, + 387, 709, 615, 385, 710, 381, 711, 377, 372, 371, + 366, 712, 365, 364, 363, 358, 357, 356, 355, 354, + 353, 615, 615, 625, 625, 352, 625, 625, 625, 625, + 625, 351, 625, 625, 625, 625, 713, 625, 625, 348, + 347, 332, 330, 625, 625, 625, 625, 328, 714, 327, + + 326, 325, 322, 625, 321, 320, 319, 309, 299, 297, + 285, 280, 276, 270, 268, 264, 263, 262, 625, 625, + 625, 625, 261, 259, 258, 252, 251, 250, 625, 240, + 239, 238, 237, 235, 231, 230, 229, 228, 227, 214, + 213, 212, 211, 210, 207, 206, 205, 625, 625, 632, + 632, 204, 632, 632, 632, 632, 632, 632, 632, 632, + 632, 632, 203, 632, 632, 202, 198, 197, 189, 632, + 632, 632, 632, 177, 174, 172, 170, 169, 164, 632, + 163, 161, 150, 148, 147, 145, 143, 142, 141, 140, + 139, 126, 125, 124, 632, 632, 632, 632, 123, 122, + + 121, 120, 118, 117, 632, 116, 115, 114, 105, 103, + 99, 96, 95, 94, 90, 85, 82, 55, 54, 46, + 18, 17, 14, 632, 632, 719, 9, 3, 0, 719, + 719, 0, 0, 719, 719, 719, 0, 719, 719, 719, + 719, 719, 720, 720, 720, 720, 720, 0, 720, 720, 720, 720, 720, 720, 720, 720, 720, 720, 720, 720, + 720, 720, 721, 721, 0, 0, 0, 721, 721, 721, + 722, 722, 722, 722, 722, 722, 722, 722, 722, 722, + 722, 722, 722, 722, 722, 722, 722, 722, 722, 722, + 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, - 720, 720, 720, 720, 721, 721, 0, 721, 721, 721, - 721, 721, 721, 721, 721, 721, 721, 721, 721, 721, - 721, 721, 721, 722, 0, 722, 0, 0, 0, 722, - 722, 722, 0, 0, 722, 723, 723, 0, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, 723, - 723, 723, 723, 723, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, - 724, 724, 724, 725, 725, 725, 725, 725, 725, 725, - 725, 725, 725, 725, 725, 725, 725, 725, 725, 725, - 725, 725, 726, 726, 726, 726, 726, 726, 726, 726, - - 726, 726, 726, 726, 726, 726, 726, 726, 726, 726, - 726, 727, 727, 727, 727, 727, 727, 727, 727, 727, + 724, 724, 724, 724, 724, 724, 724, 724, 724, 724, + 725, 0, 0, 0, 725, 725, 725, 0, 725, 725, + 725, 0, 725, 725, 725, 725, 725, 726, 726, 726, + 726, 726, 0, 726, 726, 726, 726, 726, 726, 726, + 726, 726, 726, 726, 726, 726, 726, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, 727, - 728, 728, 728, 730, 0, 0, 0, 730, 0, 730, - 730, 730, 730, 0, 730, 731, 731, 731, 731, 731, - 731, 731, 731, 731, 731, 731, 731, 731, 731, 731, - 731, 731, 731, 731, 732, 732, 732, 732, 732, 732, - 732, 732, 732, 732, 732, 732, 732, 732, 732, 732, - 732, 732, 732, 733, 0, 0, 0, 733, 733, 733, - 0, 733, 733, 733, 733, 733, 733, 733, 733, 734, + 727, 727, 727, 727, 727, 727, 727, 728, 728, 0, + 0, 0, 0, 0, 0, 0, 0, 728, 0, 0, - 734, 734, 734, 734, 734, 734, 734, 734, 734, 734, - 734, 734, 734, 734, 734, 734, 734, 734, 735, 735, + 0, 728, 728, 0, 728, 732, 732, 732, 732, 732, + 732, 732, 732, 732, 732, 732, 732, 732, 732, 732, + 732, 732, 732, 732, 732, 733, 733, 733, 733, 733, + 733, 733, 733, 733, 733, 733, 733, 733, 733, 733, + 733, 733, 733, 733, 733, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, 735, - 735, 735, 735, 735, 735, 735, 735, 736, 736, 0, + 735, 735, 735, 735, 735, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, 736, - 736, 736, 736, 736, 736, 736, 737, 737, 737, 737, - 737, 737, 737, 737, 737, 737, 737, 737, 737, 737, - 737, 737, 737, 737, 737, 738, 738, 738, 738, 0, - 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, - 738, 738, 738, 738, 739, 739, 739, 739, 739, 739, + 736, 736, 736, 736, 736, 737, 0, 0, 0, 737, + 737, 737, 0, 737, 737, 737, 0, 737, 737, 737, + 737, 737, 738, 738, 738, 738, 738, 738, 738, 738, + 738, 738, 738, 738, 738, 738, 738, 738, 738, 738, + 738, 738, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, 739, - 739, 739, 739, 740, 740, 0, 740, 740, 740, 740, + 739, 739, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, 740, - 740, 740, 741, 741, 0, 741, 741, 741, 741, 741, + 740, 740, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, 741, - 741, 742, 0, 742, 742, 0, 0, 742, 742, 742, - 0, 0, 742, 743, 743, 0, 743, 743, 743, 743, + 741, 741, 742, 742, 742, 742, 742, 742, 742, 742, + 742, 742, 742, 742, 742, 742, 742, 742, 742, 742, + + 742, 742, 743, 743, 0, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 743, 744, 744, 0, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, 744, - - 744, 745, 745, 0, 745, 745, 745, 745, 745, 745, - 745, 745, 745, 745, 745, 745, 745, 745, 745, 745, + 744, 744, 745, 0, 745, 0, 0, 0, 745, 0, + 745, 745, 0, 0, 745, 746, 746, 746, 746, 746, 746, 746, 746, 746, 746, 746, 746, 746, 746, 746, - 746, 746, 746, 746, 746, 746, 746, 746, 746, 747, + 746, 746, 746, 746, 746, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, 747, - 747, 747, 747, 747, 747, 747, 747, 747, 748, 748, + 747, 747, 747, 747, 747, 748, 748, 748, 748, 748, + 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, - 748, 748, 748, 748, 748, 748, 748, 749, 749, 749, + 748, 748, 748, 748, 748, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, - 749, 749, 749, 749, 749, 749, 750, 750, 0, 0, - - 750, 750, 0, 750, 750, 750, 750, 750, 750, 750, - 750, 750, 751, 0, 0, 0, 0, 0, 751, 751, - 751, 751, 0, 751, 752, 752, 752, 752, 752, 752, - 752, 752, 752, 752, 752, 752, 752, 752, 752, 752, - 752, 752, 752, 753, 753, 753, 753, 753, 753, 753, + 749, 749, 749, 749, 749, 750, 750, 750, 0, 750, + 750, 750, 750, 750, 752, 0, 0, 0, 752, 0, + 752, 752, 752, 752, 0, 0, 752, 753, 753, 753, 753, 753, 753, 753, 753, 753, 753, 753, 753, 753, - 753, 753, 754, 754, 0, 754, 754, 754, 754, 754, + 753, 753, 753, 753, 753, 753, 753, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, - 754, 755, 755, 0, 755, 755, 755, 755, 755, 755, - 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, - - 756, 756, 0, 0, 756, 756, 756, 756, 756, 756, - 756, 756, 756, 756, 756, 756, 757, 757, 757, 757, - 0, 757, 757, 757, 757, 757, 757, 757, 757, 757, - 757, 757, 757, 757, 757, 758, 758, 758, 758, 758, + 754, 754, 754, 754, 754, 754, 754, 755, 0, 0, + + 0, 755, 755, 755, 0, 755, 755, 755, 0, 755, + 755, 755, 755, 755, 756, 756, 756, 756, 756, 756, + 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, + 756, 756, 756, 756, 757, 757, 757, 757, 757, 757, + 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, + 757, 757, 757, 757, 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, 758, - 758, 758, 758, 758, 759, 759, 0, 759, 759, 759, + 758, 758, 758, 758, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, 759, - 759, 759, 759, 760, 760, 0, 760, 760, 760, 760, - 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, - 760, 760, 761, 761, 0, 761, 761, 761, 761, 761, + 759, 759, 759, 759, 760, 760, 760, 760, 760, 760, + 760, 760, 760, 760, 760, 760, 760, 760, 760, 760, + 760, 760, 760, 760, 761, 761, 761, 761, 761, 761, 761, 761, 761, 761, 761, 761, 761, 761, 761, 761, - 761, 762, 762, 0, 762, 762, 762, 762, 762, 762, + 761, 761, 761, 761, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, - 763, 763, 0, 763, 763, 763, 763, 763, 763, 763, - 763, 763, 763, 763, 763, 763, 763, 763, 763, 764, - 764, 0, 764, 764, 764, 764, 764, 764, 764, 764, - 764, 764, 764, 764, 764, 764, 764, 764, 765, 765, - 0, 765, 765, 765, 765, 765, 765, 765, 765, 765, - 765, 765, 765, 765, 765, 765, 765, 766, 766, 0, - 766, 766, 766, 766, 766, 766, 766, 766, 766, 766, - - 766, 766, 766, 766, 766, 766, 767, 767, 767, 767, - 767, 767, 767, 767, 767, 767, 767, 767, 767, 767, - 767, 767, 767, 767, 767, 768, 768, 768, 768, 768, + 762, 762, 762, 762, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, + 763, 763, 763, 763, 764, 764, 0, 764, 764, 764, + 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, + 764, 764, 764, 764, 765, 765, 0, 765, 765, 765, + + 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, + 765, 765, 765, 765, 766, 0, 766, 0, 0, 0, + 766, 0, 766, 766, 0, 0, 766, 767, 0, 0, + 0, 0, 0, 767, 767, 767, 767, 767, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, - 768, 768, 768, 768, 769, 769, 769, 769, 769, 769, + 768, 768, 768, 768, 768, 768, 768, 768, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, - 769, 769, 769, 770, 0, 0, 0, 0, 0, 770, + 769, 769, 769, 769, 769, 769, 769, 769, 770, 770, + 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 771, 771, - 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, - 771, 771, 771, 771, 771, 771, 771, 772, 772, 772, - 772, 772, 772, 772, 772, 772, 772, 772, 772, 772, - 772, 772, 772, 772, 772, 772, 773, 773, 773, 773, - 773, 773, 773, 773, 773, 773, 773, 773, 773, 773, - 773, 773, 773, 773, 773, 774, 0, 0, 0, 0, - 0, 774, 774, 774, 774, 775, 775, 0, 775, 775, + 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, + 771, 771, 771, 771, 771, 771, 771, 771, 772, 772, + 0, 0, 772, 772, 0, 772, 772, 772, 772, 772, + 772, 772, 772, 772, 772, 773, 0, 0, 0, 0, + 0, 773, 773, 773, 773, 773, 0, 773, 774, 774, + 774, 774, 774, 774, 774, 774, 774, 774, 774, 774, + 774, 774, 774, 774, 774, 774, 774, 774, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, 775, - 775, 775, 775, 775, 776, 776, 776, 776, 776, 776, - 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, - 776, 776, 776, 777, 777, 0, 777, 777, 777, 777, - 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, + 775, 775, 775, 775, 775, 775, 775, 775, 776, 776, + 0, 0, 776, 776, 776, 776, 776, 776, 776, 776, - 777, 777, 778, 778, 0, 778, 778, 778, 778, 778, + 776, 776, 776, 776, 776, 777, 777, 777, 777, 777, + 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, + 777, 777, 777, 777, 777, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, 778, - 778, 779, 779, 0, 779, 779, 779, 779, 779, 779, + 778, 778, 778, 778, 778, 779, 779, 779, 779, 779, 779, 779, 779, 779, 779, 779, 779, 779, 779, 779, + 779, 779, 779, 779, 779, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, 780, - 780, 780, 780, 780, 780, 780, 780, 780, 780, 781, + 780, 780, 780, 780, 780, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, 781, - 781, 781, 781, 781, 781, 781, 781, 781, 782, 782, - 782, 782, 782, 782, 782, 782, 782, 782, 782, 782, - 782, 782, 782, 782, 782, 782, 782, 783, 783, 783, + 781, 781, 781, 781, 781, 782, 782, 782, 782, 782, + 782, 782, 782, 782, 782, 782, 782, 782, 782, 782, + 782, 782, 782, 782, 782, 783, 783, 783, 783, 783, 783, 783, 783, 783, 783, 783, 783, 783, 783, 783, - 783, 783, 783, 783, 783, 783, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696, - 696, 696, 696, 696, 696, 696, 696, 696, 696, 696 + 783, 783, 783, 783, 783, 784, 0, 0, 0, 0, + 0, 784, 784, 784, 784, 784, 785, 785, 0, 785, + 785, 785, 785, 785, 785, 785, 785, 785, 785, 785, + 785, 785, 785, 785, 785, 785, 786, 786, 0, 786, + 786, 786, 786, 786, 786, 786, 786, 786, 786, 786, + 786, 786, 786, 786, 786, 786, 787, 787, 0, 787, + + 787, 787, 787, 787, 787, 787, 787, 787, 787, 787, + 787, 787, 787, 787, 787, 787, 788, 788, 0, 788, + 788, 788, 788, 788, 788, 788, 788, 788, 788, 788, + 788, 788, 788, 788, 788, 788, 789, 789, 0, 789, + 789, 789, 789, 789, 789, 789, 789, 789, 789, 789, + 789, 789, 789, 789, 789, 789, 790, 790, 0, 790, + 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, + 790, 790, 790, 790, 790, 790, 791, 791, 791, 791, + 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, + 791, 791, 791, 791, 791, 791, 792, 792, 792, 792, + + 792, 792, 792, 792, 792, 792, 792, 792, 792, 792, + 792, 792, 792, 792, 792, 792, 793, 793, 793, 793, + 793, 793, 793, 793, 793, 793, 793, 793, 793, 793, + 793, 793, 793, 793, 793, 793, 794, 0, 0, 0, + 0, 0, 794, 794, 794, 794, 794, 794, 794, 794, + 794, 794, 795, 795, 795, 795, 795, 795, 795, 795, + 795, 795, 795, 795, 795, 795, 795, 795, 795, 795, + 795, 795, 796, 796, 796, 796, 796, 796, 796, 796, + 796, 796, 796, 796, 796, 796, 796, 796, 796, 796, + 796, 796, 797, 797, 797, 797, 0, 797, 797, 797, + + 797, 797, 797, 797, 797, 797, 797, 797, 797, 797, + 797, 797, 798, 0, 0, 0, 0, 0, 798, 798, + 798, 798, 798, 799, 799, 0, 799, 799, 799, 799, + 799, 799, 799, 799, 799, 799, 799, 799, 799, 799, + 799, 799, 799, 800, 800, 0, 800, 800, 800, 800, + 800, 800, 800, 800, 800, 800, 800, 800, 800, 800, + 800, 800, 800, 801, 801, 0, 801, 801, 801, 801, + 801, 801, 801, 801, 801, 801, 801, 801, 801, 801, + 801, 801, 801, 802, 802, 0, 802, 802, 802, 802, + 802, 802, 802, 802, 802, 802, 802, 802, 802, 802, + + 802, 802, 802, 803, 803, 803, 803, 803, 803, 803, + 803, 803, 803, 803, 803, 803, 803, 803, 803, 803, + 803, 803, 803, 804, 804, 804, 804, 804, 804, 804, + 804, 804, 804, 804, 804, 804, 804, 804, 804, 804, + 804, 804, 804, 805, 805, 805, 805, 805, 805, 805, + 805, 805, 805, 805, 805, 805, 805, 805, 805, 805, + 805, 805, 805, 806, 806, 806, 806, 806, 806, 806, + 806, 806, 806, 806, 806, 806, 806, 806, 806, 806, + 806, 806, 806, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718, + 718, 718, 718, 718, 718, 718, 718, 718, 718, 718 } ; -static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr; +extern int yy_flex_debug; +int yy_flex_debug = 0; + +static yy_state_type *yy_state_buf=0, *yy_state_ptr=0; static char *yy_full_match; static int yy_lp; static int yy_looking_for_trail_begin = 0; @@ -1695,25 +1830,29 @@ static int *yy_full_state; #define YY_TRAILING_HEAD_MASK 0x4000 #define REJECT \ { \ -*yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \ -yy_cp = yy_full_match; /* restore poss. backed-over text */ \ -yy_lp = yy_full_lp; /* restore orig. accepting pos. */ \ -yy_state_ptr = yy_full_state; /* restore orig. state */ \ -yy_current_state = *yy_state_ptr; /* restore curr. state */ \ -++yy_lp; \ +*yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \ +yy_cp = (yy_full_match); /* restore poss. backed-over text */ \ +(yy_lp) = (yy_full_lp); /* restore orig. accepting pos. */ \ +(yy_state_ptr) = (yy_full_state); /* restore orig. state */ \ +yy_current_state = *(yy_state_ptr); /* restore curr. state */ \ +++(yy_lp); \ goto find_rule; \ } + #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; -#define INITIAL 0 +#line 1 "parser.l" +#line 8 "parser.l" /* * parser.l -- lex parser of algebraic chess moves for XBoard - * $Id: parser.l,v 2.1 2003/10/27 19:21:00 mann Exp $ * - * Copyright 1991 by Digital Equipment Corporation, Maynard, Massachusetts. - * Enhancements Copyright 1992-95 Free Software Foundation, Inc. + * Copyright 1991 by Digital Equipment Corporation, Maynard, + * Massachusetts. + * + * Enhancements Copyright 1992-2001, 2002, 2003, 2004, 2005, + * 2006, 2007, 2008, 2009 Free Software Foundation, Inc. * * The following terms apply to Digital Equipment Corporation's copyright * interest in XBoard: @@ -1737,24 +1876,25 @@ char *yytext; * SOFTWARE. * ------------------------------------------------------------------------ * - * The following terms apply to the enhanced version of XBoard distributed - * by the Free Software Foundation: + * The following terms apply to the enhanced version of XBoard + * distributed by the Free Software Foundation: * ------------------------------------------------------------------------ - * This program is free software; you can redistribute it and/or modify + * + * GNU XBoard is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * 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. + * GNU XBoard is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * ------------------------------------------------------------------------ - */ + * along with this program. If not, see http://www.gnu.org/licenses/. + * + *------------------------------------------------------------------------ + ** See the file ChangeLog for a revision history. */ /* This parser handles all forms of promotion. * The parser resolves ambiguous moves by searching and check-testing. @@ -1766,7 +1906,7 @@ char *yytext; * Ranks can be 0-9. The parser returns 0 for off-board files and ranks. * For an unknown piece (as mover or promotion piece) it returns * IllegalMove, like it does when the piece doesn't match. - * Promotions can now also be appended Shogi-style, a bare '=' or '+', + * Promotions can now also be appended Shogi-style, a bare '=' or '^', * and this is then returned as promotion character. The piece indicator * can be prefixed by a '+' to indicate it is a promoted piece. */ @@ -1790,6 +1930,16 @@ char *yy_text = (char *) yytext; #ifdef FLEX_SCANNER /* This is flex */ +/* [AP] use prototypes in function declarations */ +#define YY_USE_PROTOS + +#ifdef YY_USE_PROTOS +#define YY_PROTO(proto) proto +#else +#define YY_PROTO(proto) () +#endif +/* end of [AP] fix */ + #undef YY_INPUT #define YY_INPUT(buf, result, max_size) my_yy_input(buf, &result, max_size) #undef YY_DECL @@ -1865,6 +2015,23 @@ int yyback P((int *, int)); int yywrap P((void)); extern void CopyBoard P((Board to, Board from)); +#line 2019 "parser.c" + +#define INITIAL 0 + +#ifndef YY_NO_UNISTD_H +/* Special case for "unistd.h", since it is non-ANSI. We include it way + * down here because we want the user's section 1 to have been scanned first. + * The user has a chance to override it with an option. + */ +#include +#endif + +#ifndef YY_EXTRA_TYPE +#define YY_EXTRA_TYPE void * +#endif + +static int yy_init_globals (void ); /* Macros after this point can all be overridden by user definitions in * section 1. @@ -1872,65 +2039,30 @@ extern void CopyBoard P((Board to, Board from)); #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus -extern "C" int yywrap YY_PROTO(( void )); +extern "C" int yywrap (void ); #else -extern int yywrap YY_PROTO(( void )); +extern int yywrap (void ); #endif #endif -#ifndef YY_NO_UNPUT -static void yyunput YY_PROTO(( int c, char *buf_ptr )); -#endif - + static void yyunput (int c,char *buf_ptr ); + #ifndef yytext_ptr -static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int )); +static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN -static int yy_flex_strlen YY_PROTO(( yyconst char * )); +static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT -#ifdef __cplusplus -static int yyinput YY_PROTO(( void )); -#else -static int input YY_PROTO(( void )); -#endif -#endif - -#if YY_STACK_USED -static int yy_start_stack_ptr = 0; -static int yy_start_stack_depth = 0; -static int *yy_start_stack = 0; -#ifndef YY_NO_PUSH_STATE -static void yy_push_state YY_PROTO(( int new_state )); -#endif -#ifndef YY_NO_POP_STATE -static void yy_pop_state YY_PROTO(( void )); -#endif -#ifndef YY_NO_TOP_STATE -static int yy_top_state YY_PROTO(( void )); -#endif +#ifdef __cplusplus +static int yyinput (void ); #else -#define YY_NO_PUSH_STATE 1 -#define YY_NO_POP_STATE 1 -#define YY_NO_TOP_STATE 1 +static int input (void ); #endif -#ifdef YY_MALLOC_DECL -YY_MALLOC_DECL -#else -#if __STDC__ -#ifndef __cplusplus -#include -#endif -#else -/* Just try to get by without declaring the routines. This will fail - * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int) - * or sizeof(void*) != sizeof(int). - */ -#endif #endif /* Amount of stuff to slurp up with each read. */ @@ -1939,12 +2071,11 @@ YY_MALLOC_DECL #endif /* Copy whatever the last rule matched to the standard output. */ - #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ -#define ECHO (void) fwrite( yytext, yyleng, 1, yyout ) +#define ECHO fwrite( yytext, yyleng, 1, yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, @@ -1952,9 +2083,10 @@ YY_MALLOC_DECL */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ - if ( yy_current_buffer->yy_is_interactive ) \ + if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ - int c = '*', n; \ + int c = '*'; \ + int n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ @@ -1977,7 +2109,9 @@ YY_MALLOC_DECL errno=0; \ clearerr(yyin); \ } \ - } + }\ +\ + #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - @@ -1998,12 +2132,18 @@ YY_MALLOC_DECL #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif +/* end tables serialization structures and prototypes */ + /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL -#define YY_DECL int yylex YY_PROTO(( void )) -#endif +#define YY_DECL_IS_OURS 1 + +extern int yylex (void); + +#define YY_DECL int yylex (void) +#endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. @@ -2019,29 +2159,39 @@ YY_MALLOC_DECL #define YY_RULE_SETUP \ if ( yyleng > 0 ) \ - yy_current_buffer->yy_at_bol = \ + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \ (yytext[yyleng - 1] == '\n'); \ YY_USER_ACTION +/** The main scanner function which does all the work. + */ YY_DECL - { +{ register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; + +#line 179 "parser.l" +#line 2178 "parser.c" - - if ( yy_init ) + if ( !(yy_init) ) { - yy_init = 0; + (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif - if ( ! yy_start ) - yy_start = 1; /* first start state */ + /* Create the reject buffer large enough to save one state per allowed character. */ + if ( ! (yy_state_buf) ) + (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE ); + if ( ! (yy_state_buf) ) + YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); + + if ( ! (yy_start) ) + (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; @@ -2049,29 +2199,33 @@ YY_DECL if ( ! yyout ) yyout = stdout; - if ( ! yy_current_buffer ) - yy_current_buffer = - yy_create_buffer( yyin, YY_BUF_SIZE ); + if ( ! YY_CURRENT_BUFFER ) { + yyensure_buffer_stack (); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer(yyin,YY_BUF_SIZE ); + } - yy_load_buffer_state(); + yy_load_buffer_state( ); } while ( 1 ) /* loops until end-of-file is reached */ { - yy_cp = yy_c_buf_p; + yy_cp = (yy_c_buf_p); /* Support of yytext. */ - *yy_cp = yy_hold_char; + *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; - yy_current_state = yy_start; + yy_current_state = (yy_start); yy_current_state += YY_AT_BOL(); - yy_state_ptr = yy_state_buf; - *yy_state_ptr++ = yy_current_state; + + (yy_state_ptr) = (yy_state_buf); + *(yy_state_ptr)++ = yy_current_state; + yy_match: do { @@ -2079,64 +2233,63 @@ yy_match: while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 697 ) + if ( yy_current_state >= 719 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; - *yy_state_ptr++ = yy_current_state; + *(yy_state_ptr)++ = yy_current_state; ++yy_cp; } - while ( yy_base[yy_current_state] != 4517 ); + while ( yy_base[yy_current_state] != 4684 ); yy_find_action: - yy_current_state = *--yy_state_ptr; - yy_lp = yy_accept[yy_current_state]; + yy_current_state = *--(yy_state_ptr); + (yy_lp) = yy_accept[yy_current_state]; find_rule: /* we branch to this label when backing up */ for ( ; ; ) /* until we find what rule we matched */ { - if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] ) + if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] ) { - yy_act = yy_acclist[yy_lp]; + yy_act = yy_acclist[(yy_lp)]; if ( yy_act & YY_TRAILING_HEAD_MASK || - yy_looking_for_trail_begin ) + (yy_looking_for_trail_begin) ) { - if ( yy_act == yy_looking_for_trail_begin ) + if ( yy_act == (yy_looking_for_trail_begin) ) { - yy_looking_for_trail_begin = 0; + (yy_looking_for_trail_begin) = 0; yy_act &= ~YY_TRAILING_HEAD_MASK; break; } } else if ( yy_act & YY_TRAILING_MASK ) { - yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK; - yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK; + (yy_looking_for_trail_begin) = yy_act & ~YY_TRAILING_MASK; + (yy_looking_for_trail_begin) |= YY_TRAILING_HEAD_MASK; } else { - yy_full_match = yy_cp; - yy_full_state = yy_state_ptr; - yy_full_lp = yy_lp; + (yy_full_match) = yy_cp; + (yy_full_state) = (yy_state_ptr); + (yy_full_lp) = (yy_lp); break; } - ++yy_lp; + ++(yy_lp); goto find_rule; } --yy_cp; - yy_current_state = *--yy_state_ptr; - yy_lp = yy_accept[yy_current_state]; + yy_current_state = *--(yy_state_ptr); + (yy_lp) = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; - do_action: /* This label is used only to access EOF actions. */ - switch ( yy_act ) { /* beginning of action switch */ case 1: YY_RULE_SETUP +#line 181 "parser.l" { /* * Fully-qualified algebraic move, possibly with promotion @@ -2175,8 +2328,6 @@ YY_RULE_SETUP c = currentMoveString[4] = ToLower(yytext[yyleng-1]); } currentMoveString[5] = NULLCHAR; - if(c != '=' && c != '+' && CharToPiece(c) == EmptySquare) - return IllegalMove; /* [HGM] promotion to invalid piece */ } if (appData.debugMode) { @@ -2191,10 +2342,11 @@ YY_RULE_SETUP currentMoveString[2] - AAA >= BOARD_RGHT || currentMoveString[0] - AAA < BOARD_LEFT || currentMoveString[2] - AAA < BOARD_LEFT ) - return 0; + return ImpossibleMove; piece = boards[yyboardindex] [currentMoveString[1] - ONE][currentMoveString[0] - AAA]; + if(PieceToChar(piece) == '+' && appData.icsActive) promoted = 1, yytext[skip3] = PieceToChar(DEMOTED piece); // trust ICS if(promoted) piece = (ChessSquare) (DEMOTED piece); c = PieceToChar(piece); if(c == '~') c = PieceToChar((ChessSquare) (DEMOTED piece)); @@ -2202,19 +2354,26 @@ YY_RULE_SETUP return (int) IllegalMove; result = LegalityTest(boards[yyboardindex], - PosFlags(yyboardindex), EP_UNKNOWN, - initialRights, /* [HGM] assume all castlings allowed */ + PosFlags(yyboardindex)&~F_MANDATORY_CAPTURE, // [HGM] losers: might think we can e.p.! currentMoveString[1] - ONE, currentMoveString[0] - AAA, currentMoveString[3] - ONE, currentMoveString[2] - AAA, currentMoveString[4]); - if (currentMoveString[4] == NULLCHAR && - (result == WhitePromotionKnight || result == BlackPromotionKnight || - result == WhitePromotionQueen || result == BlackPromotionQueen)) { - currentMoveString[4] = PieceToChar(BlackQueen); - currentMoveString[5] = NULLCHAR; + if (currentMoveString[4] == NULLCHAR) { + if(result == WhitePromotion || result == BlackPromotion) { + if(gameInfo.variant == VariantCourier || gameInfo.variant == VariantShatranj) + currentMoveString[4] = PieceToChar(BlackFerz); + else if(gameInfo.variant == VariantGreat) + currentMoveString[4] = PieceToChar(BlackMan); + else if(gameInfo.variant == VariantShogi) + currentMoveString[4] = '^'; + else + currentMoveString[4] = PieceToChar(BlackQueen); + } else if(result == WhiteNonPromotion || result == BlackNonPromotion) + currentMoveString[4] = '='; + currentMoveString[5] = NULLCHAR; } return (int) result; @@ -2222,6 +2381,7 @@ YY_RULE_SETUP YY_BREAK case 2: YY_RULE_SETUP +#line 270 "parser.l" { /* * Simple algebraic move, possibly with promotion @@ -2249,8 +2409,6 @@ YY_RULE_SETUP c = currentMoveString[4] = ToLower(yytext[yyleng-1]); } currentMoveString[5] = NULLCHAR; - if(c != '=' && c != '+' && CharToPiece(c) == EmptySquare) - return IllegalMove; } /* [HGM] do not allow values beyond board size */ @@ -2262,32 +2420,84 @@ YY_RULE_SETUP currentMoveString[2] - AAA >= BOARD_RGHT || currentMoveString[0] - AAA < BOARD_LEFT || currentMoveString[2] - AAA < BOARD_LEFT ) - return 0; + return ImpossibleMove; result = LegalityTest(boards[yyboardindex], - PosFlags(yyboardindex), EP_UNKNOWN, - initialRights, /* [HGM] assume all castlings allowed */ + PosFlags(yyboardindex)&~F_MANDATORY_CAPTURE, // [HGM] losers: might think we can e.p.! currentMoveString[1] - ONE, currentMoveString[0] - AAA, currentMoveString[3] - ONE, currentMoveString[2] - AAA, currentMoveString[4]); - if (currentMoveString[4] == NULLCHAR && - (result == WhitePromotionKnight || result == BlackPromotionKnight || - result == WhitePromotionQueen || result == BlackPromotionQueen)) { - if(gameInfo.variant == VariantShatranj || gameInfo.variant == VariantCourier) + if (currentMoveString[4] == NULLCHAR) { + if(result == WhitePromotion || result == BlackPromotion) { + if(gameInfo.variant == VariantShatranj || gameInfo.variant == VariantCourier || gameInfo.variant == VariantMakruk) currentMoveString[4] = PieceToChar(BlackFerz); + else if(gameInfo.variant == VariantGreat) + currentMoveString[4] = PieceToChar(BlackMan); + else if(gameInfo.variant == VariantShogi) + currentMoveString[4] = '^'; // Queen might not be defined in mini variants! else currentMoveString[4] = PieceToChar(BlackQueen); - currentMoveString[5] = NULLCHAR; - } + } else if(result == WhiteNonPromotion || result == BlackNonPromotion) + currentMoveString[4] = '='; + currentMoveString[5] = NULLCHAR; + } else if(appData.testLegality && // strip off unnecessary and false promo characters + !(result == WhitePromotion || result == BlackPromotion || + result == WhiteNonPromotion || result == BlackNonPromotion)) currentMoveString[4] = NULLCHAR; return (int) result; } YY_BREAK case 3: YY_RULE_SETUP +#line 338 "parser.l" +{ + /* + * Simple algebraic move, in capitals + * [HGM] Some Xiangqi engines use this format ('ICCS notation'). So no promotions! + */ + int skip = 0; + ChessMove result; + + if (yyskipmoves) return (int) AmbiguousMove; /* not disambiguated */ + + /* remove the [xX:-] */ + if ((yytext[2] == 'x') || (yytext[2] == 'X') || + (yytext[2] == '-') || (yytext[2] == ':')) skip = 1; + + currentMoveString[0] = yytext[0]+32; + currentMoveString[1] = yytext[1]; + currentMoveString[2] = yytext[2+skip]+32; + currentMoveString[3] = yytext[3+skip]; + currentMoveString[4] = NULLCHAR; + + /* [HGM] do not allow values beyond board size */ + if(currentMoveString[1] - ONE >= BOARD_HEIGHT || + currentMoveString[1] - ONE < 0 || + currentMoveString[0] - AAA >= BOARD_RGHT || + currentMoveString[3] - ONE >= BOARD_HEIGHT || + currentMoveString[3] - ONE < 0 || + currentMoveString[2] - AAA >= BOARD_RGHT || + currentMoveString[0] - AAA < BOARD_LEFT || + currentMoveString[2] - AAA < BOARD_LEFT ) + return ImpossibleMove; + + result = LegalityTest(boards[yyboardindex], + PosFlags(yyboardindex)&~F_MANDATORY_CAPTURE, // [HGM] losers: might think we can e.p.! + currentMoveString[1] - ONE, + currentMoveString[0] - AAA, + currentMoveString[3] - ONE, + currentMoveString[2] - AAA, + currentMoveString[4]); + + return (int) result; +} + YY_BREAK +case 4: +YY_RULE_SETUP +#line 380 "parser.l" { /* * Pawn move, possibly with promotion @@ -2306,21 +2516,16 @@ YY_RULE_SETUP cl.ffIn = yytext[0] - AAA; cl.rtIn = yytext[1] - ONE; cl.ftIn = yytext[0] - AAA; - c = cl.promoCharIn = yytext[2+skip]; + c = cl.promoCharIn = ToLower(yytext[2+skip]); /* [HGM] do not allow values beyond board size */ if(cl.rtIn >= BOARD_HEIGHT || cl.rtIn < 0 || cl.ffIn >= BOARD_RGHT || cl.ftIn < BOARD_LEFT ) - return 0; - - if(c != '=' && c != '+' && c != NULLCHAR && CharToPiece(c) == EmptySquare) - return IllegalMove; + return ImpossibleMove; - - Disambiguate(boards[yyboardindex], - PosFlags(yyboardindex), EP_UNKNOWN, &cl); + Disambiguate(boards[yyboardindex], PosFlags(yyboardindex), &cl); currentMoveString[0] = cl.ff + AAA; currentMoveString[1] = cl.rf + ONE; @@ -2332,8 +2537,9 @@ YY_RULE_SETUP return (int) cl.kind; } YY_BREAK -case 4: +case 5: YY_RULE_SETUP +#line 420 "parser.l" { /* * Pawn capture, possibly with promotion, possibly ambiguous @@ -2370,13 +2576,9 @@ YY_RULE_SETUP cl.ffIn < BOARD_LEFT || cl.ftIn >= BOARD_RGHT || cl.ftIn < BOARD_LEFT ) - return 0; - - if(c != '=' && c != '+' && c != NULLCHAR && CharToPiece(c) == EmptySquare) - return IllegalMove; + return ImpossibleMove; - Disambiguate(boards[yyboardindex], - PosFlags(yyboardindex), EP_UNKNOWN, &cl); + Disambiguate(boards[yyboardindex], PosFlags(yyboardindex), &cl); currentMoveString[0] = cl.ff + AAA; currentMoveString[1] = cl.rf + ONE; @@ -2388,8 +2590,9 @@ YY_RULE_SETUP return (int) cl.kind; } YY_BREAK -case 5: +case 6: YY_RULE_SETUP +#line 470 "parser.l" { /* * unambiguously abbreviated Pawn capture, possibly with promotion @@ -2423,19 +2626,22 @@ YY_RULE_SETUP currentMoveString[2] - AAA >= BOARD_RGHT || currentMoveString[0] - AAA < BOARD_LEFT || currentMoveString[2] - AAA < BOARD_LEFT ) - return 0; + return ImpossibleMove; if (gameInfo.variant == VariantXiangqi && /* [HGM] In Xiangqi rank stays same */ currentMoveString[0] != currentMoveString[2] ) { - if (yytext[2+skip] == ONE) return (int) ImpossibleMove; currentMoveString[1] = yytext[2+skip]; } else if (WhiteOnMove(yyboardindex)) { if (yytext[2+skip] == ONE) return (int) ImpossibleMove; currentMoveString[1] = yytext[2+skip] - 1; + if(boards[yyboardindex][currentMoveString[1]-ONE][currentMoveString[0]-AAA] != WhitePawn) + return ImpossibleMove; } else { currentMoveString[1] = currentMoveString[3] + 1; if (currentMoveString[3] == ONE+BOARD_HEIGHT-1) return (int) ImpossibleMove; + if(boards[yyboardindex][currentMoveString[1]-ONE][currentMoveString[0]-AAA] != BlackPawn) + return ImpossibleMove; } if (yyleng-skip > 3) { if (yytext[yyleng-1] == ')') @@ -2443,26 +2649,33 @@ YY_RULE_SETUP else c = currentMoveString[4] = ToLower(yytext[yyleng-1]); currentMoveString[5] = NULLCHAR; - if(c != '=' && c != '+' && CharToPiece(c) == EmptySquare) - return IllegalMove; + if(c != '=' && c != '^' && CharToPiece(c) == EmptySquare) + return ImpossibleMove; } else { currentMoveString[4] = NULLCHAR; } result = LegalityTest(boards[yyboardindex], - PosFlags(yyboardindex), EP_UNKNOWN, - initialRights, /* [HGM] assume all castlings allowed */ + PosFlags(yyboardindex)&~F_MANDATORY_CAPTURE, // [HGM] losers: might think we can e.p.! currentMoveString[1] - ONE, currentMoveString[0] - AAA, currentMoveString[3] - ONE, currentMoveString[2] - AAA, currentMoveString[4]); - if (currentMoveString[4] == NULLCHAR && - (result == WhitePromotionQueen || result == BlackPromotionQueen || - result == WhitePromotionKnight || result == BlackPromotionKnight)) { + if (currentMoveString[4] == NULLCHAR) { + if(result == WhitePromotion || result == BlackPromotion) { currentMoveString[4] = PieceToChar(BlackQueen); - currentMoveString[5] = NULLCHAR; + // [HGM] shatranj: take care of variants without Queen + if(gameInfo.variant == VariantShatranj || gameInfo.variant == VariantCourier || gameInfo.variant == VariantMakruk) + currentMoveString[4] = PieceToChar(BlackFerz); + if(gameInfo.variant == VariantGreat) + currentMoveString[4] = PieceToChar(BlackMan); + if(gameInfo.variant == VariantShogi) + currentMoveString[4] = '^'; + } else if(result == WhiteNonPromotion || result == BlackNonPromotion) + currentMoveString[4] = '='; + currentMoveString[5] = NULLCHAR; } if (result != IllegalMove) return (int) result; @@ -2485,8 +2698,7 @@ YY_RULE_SETUP } result = LegalityTest(boards[yyboardindex], - PosFlags(yyboardindex), EP_UNKNOWN, - initialRights, /* [HGM] assume all castlings allowed */ + PosFlags(yyboardindex)&~F_MANDATORY_CAPTURE, // [HGM] losers: might think we can e.p.! currentMoveString[1] - ONE, currentMoveString[0] - AAA, currentMoveString[3] - ONE, @@ -2499,8 +2711,9 @@ YY_RULE_SETUP return (int) IllegalMove; } YY_BREAK -case 6: +case 7: YY_RULE_SETUP +#line 588 "parser.l" { /* * piece move, possibly ambiguous @@ -2530,7 +2743,7 @@ YY_RULE_SETUP cl.promoCharIn = NULLCHAR; if(yyleng-skip > 3) /* [HGM] can have Shogi-style promotion */ - cl.promoCharIn = yytext[yyleng-1]; + cl.promoCharIn = yytext[yyleng-1-(yytext[yyleng-1]==')')]; if (appData.debugMode) { fprintf(debugFP, "Parser Qa1: yyleng=%d, %d(%d,%d)-(%d,%d) = %d (%c)\n", @@ -2543,10 +2756,9 @@ YY_RULE_SETUP cl.rtIn < 0 || cl.ftIn >= BOARD_RGHT || cl.ftIn < BOARD_LEFT ) - return 0; + return ImpossibleMove; - Disambiguate(boards[yyboardindex], - PosFlags(yyboardindex), EP_UNKNOWN, &cl); + Disambiguate(boards[yyboardindex], PosFlags(yyboardindex), &cl); currentMoveString[0] = cl.ff + AAA; currentMoveString[1] = cl.rf + ONE; @@ -2558,8 +2770,9 @@ YY_RULE_SETUP return (int) cl.kind; } YY_BREAK -case 7: +case 8: YY_RULE_SETUP +#line 644 "parser.l" { /* * piece move with rank or file disambiguator @@ -2599,17 +2812,16 @@ YY_RULE_SETUP cl.promoCharIn = NULLCHAR; if(yyleng-skip > 4) /* [HGM] can have Shogi-style promotion */ - cl.promoCharIn = yytext[yyleng-1]; + cl.promoCharIn = yytext[yyleng-1-(yytext[yyleng-1]==')')]; /* [HGM] do not allow values beyond board size */ if(cl.rtIn >= BOARD_HEIGHT || cl.rtIn < 0 || cl.ftIn >= BOARD_RGHT || cl.ftIn < BOARD_LEFT ) - return 0; + return ImpossibleMove; - Disambiguate(boards[yyboardindex], - PosFlags(yyboardindex), EP_UNKNOWN, &cl); + Disambiguate(boards[yyboardindex], PosFlags(yyboardindex), &cl); currentMoveString[0] = cl.ff + AAA; currentMoveString[1] = cl.rf + ONE; @@ -2621,8 +2833,9 @@ YY_RULE_SETUP return (int) cl.kind; } YY_BREAK -case 8: +case 9: YY_RULE_SETUP +#line 704 "parser.l" { int rf, ff, rt, ft; @@ -2656,7 +2869,8 @@ YY_RULE_SETUP ft = BOARD_LEFT+2; } } - if(gameInfo.variant == VariantFischeRandom) { + if(PosFlags(0) & F_FRC_TYPE_CASTLING) { + if (WhiteOnMove(yyboardindex)) { ff = initialRights[2]; ft = initialRights[1]; @@ -2664,7 +2878,10 @@ YY_RULE_SETUP ff = initialRights[5]; ft = initialRights[4]; } - fprintf(debugFP, "Parser FRC long %d %d\n", ff, ft); + if (appData.debugMode) + { + fprintf(debugFP, "Parser FRC long %d %d\n", ff, ft); + }; if(ff < 0 || ft < 0) return 0; } sprintf(currentMoveString, "%c%c%c%c",ff+AAA,rf+ONE,ft+AAA,rt+ONE); @@ -2672,13 +2889,13 @@ YY_RULE_SETUP fprintf(debugFP, "long castling %d %d\n", ff, ft); } return (int) LegalityTest(boards[yyboardindex], - PosFlags(yyboardindex), EP_UNKNOWN, - castlingRights[yyboardindex], /* [HGM] use true castling rights */ + PosFlags(yyboardindex)&~F_MANDATORY_CAPTURE, // [HGM] losers: e.p.! rf, ff, rt, ft, NULLCHAR); } YY_BREAK -case 9: +case 10: YY_RULE_SETUP +#line 761 "parser.l" { int rf, ff, rt, ft; @@ -2711,7 +2928,7 @@ YY_RULE_SETUP ft = BOARD_RGHT-2; } } - if(gameInfo.variant == VariantFischeRandom) { + if(PosFlags(0) & F_FRC_TYPE_CASTLING) { if (WhiteOnMove(yyboardindex)) { ff = initialRights[2]; ft = initialRights[0]; @@ -2730,15 +2947,15 @@ YY_RULE_SETUP } return (int) LegalityTest(boards[yyboardindex], - PosFlags(yyboardindex), EP_UNKNOWN, - castlingRights[yyboardindex], /* [HGM] use true castling rights */ + PosFlags(yyboardindex)&~F_MANDATORY_CAPTURE, // [HGM] losers: e.p.! rf, ff, rt, ft, NULLCHAR); } YY_BREAK -case 10: +case 11: YY_RULE_SETUP +#line 816 "parser.l" { - /* Bughouse piece drop. No legality checking for now. */ + /* Bughouse piece drop. */ currentMoveString[1] = '@'; currentMoveString[2] = yytext[2]; currentMoveString[3] = yytext[3]; @@ -2750,19 +2967,20 @@ YY_RULE_SETUP /* [HGM] do not allow values beyond board size */ if(currentMoveString[3] - ONE >= BOARD_HEIGHT || currentMoveString[2] - AAA >= BOARD_WIDTH ) - return 0; + return ImpossibleMove; if (WhiteOnMove(yyboardindex)) { currentMoveString[0] = ToUpper(yytext[0]); - return (int) WhiteDrop; } else { currentMoveString[0] = ToLower(yytext[0]); - return (int) BlackDrop; } + return LegalityTest(boards[yyboardindex], PosFlags(yyboardindex), DROP_RANK, // [HGM] does drops now too + CharToPiece(currentMoveString[0]), currentMoveString[3] - ONE, currentMoveString[2] - AAA, NULLCHAR); } YY_BREAK -case 11: +case 12: YY_RULE_SETUP +#line 840 "parser.l" { if (WhiteOnMove(yyboardindex)) return (int) BlackWins; @@ -2770,32 +2988,37 @@ YY_RULE_SETUP return (int) WhiteWins; } YY_BREAK -case 12: +case 13: YY_RULE_SETUP +#line 847 "parser.l" { return (int) (ToUpper(yytext[0]) == 'W' ? BlackWins : WhiteWins); } YY_BREAK -case 13: +case 14: YY_RULE_SETUP +#line 851 "parser.l" { return (int) GameUnfinished; } YY_BREAK -case 14: +case 15: YY_RULE_SETUP +#line 855 "parser.l" { return (int) GameIsDrawn; } YY_BREAK -case 15: +case 16: YY_RULE_SETUP +#line 859 "parser.l" { return (int) GameIsDrawn; } YY_BREAK -case 16: +case 17: YY_RULE_SETUP +#line 863 "parser.l" { if (WhiteOnMove(yyboardindex)) return (int) BlackWins; @@ -2803,8 +3026,9 @@ YY_RULE_SETUP return (int) WhiteWins; } YY_BREAK -case 17: +case 18: YY_RULE_SETUP +#line 870 "parser.l" { if (WhiteOnMove(yyboardindex)) return (int) BlackWins; @@ -2812,194 +3036,231 @@ YY_RULE_SETUP return (int) WhiteWins; } YY_BREAK -case 18: +case 19: YY_RULE_SETUP +#line 877 "parser.l" { return (int) GameIsDrawn; } YY_BREAK -case 19: +case 20: YY_RULE_SETUP +#line 881 "parser.l" { return (int) GameIsDrawn; } YY_BREAK -case 20: +case 21: YY_RULE_SETUP -{ +#line 885 "parser.l" +{ return (int) (ToUpper(yytext[0]) == 'W' ? WhiteWins : BlackWins); } YY_BREAK -case 21: +case 22: YY_RULE_SETUP -{ +#line 889 "parser.l" +{ return (int) (ToUpper(yytext[0]) == 'W' ? BlackWins : WhiteWins); } YY_BREAK -case 22: +case 23: YY_RULE_SETUP +#line 893 "parser.l" { return (int) WhiteWins; } YY_BREAK -case 23: +case 24: YY_RULE_SETUP +#line 897 "parser.l" { return (int) BlackWins; } YY_BREAK -case 24: +case 25: YY_RULE_SETUP +#line 901 "parser.l" { return (int) GameIsDrawn; } YY_BREAK -case 25: +case 26: YY_RULE_SETUP +#line 905 "parser.l" { return (int) GameUnfinished; } YY_BREAK -case 26: +case 27: +/* rule 27 can match eol */ YY_RULE_SETUP +#line 909 "parser.l" { /* move numbers */ if ((yyleng == 1) && (yytext[0] == '1')) return (int) MoveNumberOne; } YY_BREAK -case 27: +case 28: YY_RULE_SETUP +#line 915 "parser.l" { /* elapsed time indication, e.g. (0:12) or {10:21.071} */ return (int) ElapsedTime; } YY_BREAK -case 28: +case 29: +/* rule 29 can match eol */ YY_RULE_SETUP +#line 920 "parser.l" { /* position diagram enclosed in [-- --] */ return (int) PositionDiagram; } YY_BREAK -case 29: -*yy_cp = yy_hold_char; /* undo effects of setting up yytext */ -yy_c_buf_p = yy_cp -= 1; +case 30: +/* rule 30 can match eol */ +*yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ +(yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP +#line 925 "parser.l" { /* position diagram enclosed in {-- --} */ return (int) PositionDiagram; } YY_BREAK -case 30: +case 31: +/* rule 31 can match eol */ YY_RULE_SETUP +#line 930 "parser.l" { return (int) PGNTag; } YY_BREAK -case 31: +case 32: YY_RULE_SETUP +#line 934 "parser.l" { return (int) GNUChessGame; } YY_BREAK -case 32: -*yy_cp = yy_hold_char; /* undo effects of setting up yytext */ -yy_c_buf_p = yy_cp -= 1; +case 33: +/* rule 33 can match eol */ +*yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ +(yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP +#line 938 "parser.l" { return (int) XBoardGame; } YY_BREAK -case 33: +case 34: YY_RULE_SETUP +#line 942 "parser.l" { /* numeric annotation glyph */ return (int) NAG; } YY_BREAK -case 34: +case 35: +/* rule 35 can match eol */ YY_RULE_SETUP +#line 946 "parser.l" { /* anything in {} */ return (int) Comment; } YY_BREAK -case 35: -*yy_cp = yy_hold_char; /* undo effects of setting up yytext */ -yy_c_buf_p = yy_cp -= 1; +case 36: +*yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ +(yy_c_buf_p) = yy_cp -= 1; YY_DO_BEFORE_ACTION; /* set up yytext again */ YY_RULE_SETUP +#line 950 "parser.l" { /* ; to end of line */ return (int) Comment; } YY_BREAK -case 36: +case 37: +/* rule 37 can match eol */ YY_RULE_SETUP +#line 954 "parser.l" { /* anything in [] */ return (int) Comment; } YY_BREAK -case 37: +case 38: +/* rule 38 can match eol */ YY_RULE_SETUP -{ /* nested () */ +#line 958 "parser.l" +{ /* very nested () */ return (int) Comment; } YY_BREAK -case 38: +case 39: +/* rule 39 can match eol */ YY_RULE_SETUP +#line 962 "parser.l" { /* >=2 chars in () */ return (int) Comment; } YY_BREAK -case 39: +case 40: +/* rule 40 can match eol */ YY_RULE_SETUP +#line 966 "parser.l" { /* Skip mail headers */ } YY_BREAK -case 40: +case 41: YY_RULE_SETUP +#line 970 "parser.l" { /* Skip random words */ } YY_BREAK -case 41: +case 42: +/* rule 42 can match eol */ YY_RULE_SETUP +#line 974 "parser.l" { /* Skip everything else */ } YY_BREAK -case 42: +case 43: YY_RULE_SETUP +#line 978 "parser.l" ECHO; YY_BREAK +#line 3238 "parser.c" case YY_STATE_EOF(INITIAL): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ - int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1; + int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ - *yy_cp = yy_hold_char; + *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET - if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW ) + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure - * consistency between yy_current_buffer and our + * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ - yy_n_chars = yy_current_buffer->yy_n_chars; - yy_current_buffer->yy_input_file = yyin; - yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL; + (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position @@ -3009,13 +3270,13 @@ ECHO; * end-of-buffer state). Contrast this with the test * in input(). */ - if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] ) + if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; - yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text; + (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; - yy_current_state = yy_get_previous_state(); + yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have @@ -3028,30 +3289,30 @@ ECHO; yy_next_state = yy_try_NUL_trans( yy_current_state ); - yy_bp = yytext_ptr + YY_MORE_ADJ; + yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ - yy_cp = ++yy_c_buf_p; + yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { - yy_cp = yy_c_buf_p; + yy_cp = (yy_c_buf_p); goto yy_find_action; } } - else switch ( yy_get_next_buffer() ) + else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { - yy_did_buffer_switch_on_eof = 0; + (yy_did_buffer_switch_on_eof) = 0; - if ( yywrap() ) + if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up @@ -3062,7 +3323,7 @@ ECHO; * YY_NULL, it'll still work - another * YY_NULL will get returned. */ - yy_c_buf_p = yytext_ptr + YY_MORE_ADJ; + (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; @@ -3070,30 +3331,30 @@ ECHO; else { - if ( ! yy_did_buffer_switch_on_eof ) + if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: - yy_c_buf_p = - yytext_ptr + yy_amount_of_matched_text; + (yy_c_buf_p) = + (yytext_ptr) + yy_amount_of_matched_text; - yy_current_state = yy_get_previous_state(); + yy_current_state = yy_get_previous_state( ); - yy_cp = yy_c_buf_p; - yy_bp = yytext_ptr + YY_MORE_ADJ; + yy_cp = (yy_c_buf_p); + yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: - yy_c_buf_p = - &yy_current_buffer->yy_ch_buf[yy_n_chars]; + (yy_c_buf_p) = + &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; - yy_current_state = yy_get_previous_state(); + yy_current_state = yy_get_previous_state( ); - yy_cp = yy_c_buf_p; - yy_bp = yytext_ptr + YY_MORE_ADJ; + yy_cp = (yy_c_buf_p); + yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; @@ -3104,8 +3365,7 @@ ECHO; "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ - } /* end of yylex */ - +} /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * @@ -3114,21 +3374,20 @@ ECHO; * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ - -static int yy_get_next_buffer() - { - register char *dest = yy_current_buffer->yy_ch_buf; - register char *source = yytext_ptr; +static int yy_get_next_buffer (void) +{ + register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; + register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; - if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] ) + if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); - if ( yy_current_buffer->yy_fill_buffer == 0 ) + if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ - if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 ) + if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. @@ -3148,86 +3407,52 @@ static int yy_get_next_buffer() /* Try to read more data. */ /* First move last chars to start of buffer. */ - number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1; + number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); - if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING ) + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ - yy_current_buffer->yy_n_chars = yy_n_chars = 0; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { - int num_to_read = - yy_current_buffer->yy_buf_size - number_to_move - 1; + int num_to_read = + YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ -#ifdef YY_USES_REJECT + YY_FATAL_ERROR( "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); -#else - - /* just a shorter name for the current buffer */ - YY_BUFFER_STATE b = yy_current_buffer; - - int yy_c_buf_p_offset = - (int) (yy_c_buf_p - b->yy_ch_buf); - if ( b->yy_is_our_buffer ) - { - int new_size = b->yy_buf_size * 2; - - if ( new_size <= 0 ) - b->yy_buf_size += b->yy_buf_size / 8; - else - b->yy_buf_size *= 2; - - b->yy_ch_buf = (char *) - /* Include room in for 2 EOB chars. */ - yy_flex_realloc( (void *) b->yy_ch_buf, - b->yy_buf_size + 2 ); - } - else - /* Can't grow it, we don't own it. */ - b->yy_ch_buf = 0; - - if ( ! b->yy_ch_buf ) - YY_FATAL_ERROR( - "fatal error - scanner input buffer overflow" ); - - yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset]; - - num_to_read = yy_current_buffer->yy_buf_size - - number_to_move - 1; -#endif } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ - YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]), - yy_n_chars, num_to_read ); + YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), + (yy_n_chars), (size_t) num_to_read ); - yy_current_buffer->yy_n_chars = yy_n_chars; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } - if ( yy_n_chars == 0 ) + if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; - yyrestart( yyin ); + yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; - yy_current_buffer->yy_buffer_status = + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } @@ -3235,147 +3460,141 @@ static int yy_get_next_buffer() else ret_val = EOB_ACT_CONTINUE_SCAN; - yy_n_chars += number_to_move; - yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR; - yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; + if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { + /* Extend the array by 50%, plus the number we really need. */ + yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); + if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); + } + + (yy_n_chars) += number_to_move; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; - yytext_ptr = &yy_current_buffer->yy_ch_buf[0]; + (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; - } - +} /* yy_get_previous_state - get the state just before the EOB char was reached */ -static yy_state_type yy_get_previous_state() - { + static yy_state_type yy_get_previous_state (void) +{ register yy_state_type yy_current_state; register char *yy_cp; - - yy_current_state = yy_start; + + yy_current_state = (yy_start); yy_current_state += YY_AT_BOL(); - yy_state_ptr = yy_state_buf; - *yy_state_ptr++ = yy_current_state; - for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp ) + (yy_state_ptr) = (yy_state_buf); + *(yy_state_ptr)++ = yy_current_state; + + for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 697 ) + if ( yy_current_state >= 719 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; - *yy_state_ptr++ = yy_current_state; + *(yy_state_ptr)++ = yy_current_state; } return yy_current_state; - } - +} /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ - -#ifdef YY_USE_PROTOS -static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state ) -#else -static yy_state_type yy_try_NUL_trans( yy_current_state ) -yy_state_type yy_current_state; -#endif - { + static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) +{ register int yy_is_jam; - + register YY_CHAR yy_c = 1; while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 697 ) + if ( yy_current_state >= 719 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; - yy_is_jam = (yy_current_state == 696); + yy_is_jam = (yy_current_state == 718); if ( ! yy_is_jam ) - *yy_state_ptr++ = yy_current_state; + *(yy_state_ptr)++ = yy_current_state; return yy_is_jam ? 0 : yy_current_state; - } - +} -#ifndef YY_NO_UNPUT -#ifdef YY_USE_PROTOS -static void yyunput( int c, register char *yy_bp ) -#else -static void yyunput( c, yy_bp ) -int c; -register char *yy_bp; -#endif - { - register char *yy_cp = yy_c_buf_p; + static void yyunput (int c, register char * yy_bp ) +{ + register char *yy_cp; + + yy_cp = (yy_c_buf_p); /* undo effects of setting up yytext */ - *yy_cp = yy_hold_char; + *yy_cp = (yy_hold_char); - if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) + if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) { /* need to shift things up to make room */ /* +2 for EOB chars. */ - register int number_to_move = yy_n_chars + 2; - register char *dest = &yy_current_buffer->yy_ch_buf[ - yy_current_buffer->yy_buf_size + 2]; + register int number_to_move = (yy_n_chars) + 2; + register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ + YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; register char *source = - &yy_current_buffer->yy_ch_buf[number_to_move]; + &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; - while ( source > yy_current_buffer->yy_ch_buf ) + while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) *--dest = *--source; yy_cp += (int) (dest - source); yy_bp += (int) (dest - source); - yy_current_buffer->yy_n_chars = - yy_n_chars = yy_current_buffer->yy_buf_size; + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = + (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; - if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 ) + if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) YY_FATAL_ERROR( "flex scanner push-back overflow" ); } *--yy_cp = (char) c; + (yytext_ptr) = yy_bp; + (yy_hold_char) = *yy_cp; + (yy_c_buf_p) = yy_cp; +} - yytext_ptr = yy_bp; - yy_hold_char = *yy_cp; - yy_c_buf_p = yy_cp; - } -#endif /* ifndef YY_NO_UNPUT */ - - +#ifndef YY_NO_INPUT #ifdef __cplusplus -static int yyinput() + static int yyinput (void) #else -static int input() + static int input (void) #endif - { - int c; - *yy_c_buf_p = yy_hold_char; +{ + int c; + + *(yy_c_buf_p) = (yy_hold_char); - if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR ) + if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ - if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] ) + if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ - *yy_c_buf_p = '\0'; + *(yy_c_buf_p) = '\0'; else { /* need more input */ - int offset = yy_c_buf_p - yytext_ptr; - ++yy_c_buf_p; + int offset = (yy_c_buf_p) - (yytext_ptr); + ++(yy_c_buf_p); - switch ( yy_get_next_buffer() ) + switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() @@ -3389,16 +3608,16 @@ static int input() */ /* Reset buffer status. */ - yyrestart( yyin ); + yyrestart(yyin ); - /* fall through */ + /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { - if ( yywrap() ) + if ( yywrap( ) ) return EOF; - if ( ! yy_did_buffer_switch_on_eof ) + if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); @@ -3408,91 +3627,94 @@ static int input() } case EOB_ACT_CONTINUE_SCAN: - yy_c_buf_p = yytext_ptr + offset; + (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } - c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */ - *yy_c_buf_p = '\0'; /* preserve yytext */ - yy_hold_char = *++yy_c_buf_p; + c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ + *(yy_c_buf_p) = '\0'; /* preserve yytext */ + (yy_hold_char) = *++(yy_c_buf_p); - yy_current_buffer->yy_at_bol = (c == '\n'); + YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n'); return c; - } - - -#ifdef YY_USE_PROTOS -void yyrestart( FILE *input_file ) -#else -void yyrestart( input_file ) -FILE *input_file; -#endif - { - if ( ! yy_current_buffer ) - yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); +} +#endif /* ifndef YY_NO_INPUT */ - yy_init_buffer( yy_current_buffer, input_file ); - yy_load_buffer_state(); +/** Immediately switch to a different input stream. + * @param input_file A readable stream. + * + * @note This function does not reset the start condition to @c INITIAL . + */ + void yyrestart (FILE * input_file ) +{ + + if ( ! YY_CURRENT_BUFFER ){ + yyensure_buffer_stack (); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer(yyin,YY_BUF_SIZE ); } + yy_init_buffer(YY_CURRENT_BUFFER,input_file ); + yy_load_buffer_state( ); +} -#ifdef YY_USE_PROTOS -void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer ) -#else -void yy_switch_to_buffer( new_buffer ) -YY_BUFFER_STATE new_buffer; -#endif - { - if ( yy_current_buffer == new_buffer ) +/** Switch to a different input buffer. + * @param new_buffer The new input buffer. + * + */ + void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) +{ + + /* TODO. We should be able to replace this entire function body + * with + * yypop_buffer_state(); + * yypush_buffer_state(new_buffer); + */ + yyensure_buffer_stack (); + if ( YY_CURRENT_BUFFER == new_buffer ) return; - if ( yy_current_buffer ) + if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ - *yy_c_buf_p = yy_hold_char; - yy_current_buffer->yy_buf_pos = yy_c_buf_p; - yy_current_buffer->yy_n_chars = yy_n_chars; + *(yy_c_buf_p) = (yy_hold_char); + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } - yy_current_buffer = new_buffer; - yy_load_buffer_state(); + YY_CURRENT_BUFFER_LVALUE = new_buffer; + yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ - yy_did_buffer_switch_on_eof = 1; - } - - -#ifdef YY_USE_PROTOS -void yy_load_buffer_state( void ) -#else -void yy_load_buffer_state() -#endif - { - yy_n_chars = yy_current_buffer->yy_n_chars; - yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos; - yyin = yy_current_buffer->yy_input_file; - yy_hold_char = *yy_c_buf_p; - } + (yy_did_buffer_switch_on_eof) = 1; +} +static void yy_load_buffer_state (void) +{ + (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; + yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; + (yy_hold_char) = *(yy_c_buf_p); +} -#ifdef YY_USE_PROTOS -YY_BUFFER_STATE yy_create_buffer( FILE *file, int size ) -#else -YY_BUFFER_STATE yy_create_buffer( file, size ) -FILE *file; -int size; -#endif - { +/** Allocate and initialize an input buffer state. + * @param file A readable stream. + * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. + * + * @return the allocated buffer state. + */ + YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) +{ YY_BUFFER_STATE b; - - b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); + + b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); @@ -3501,84 +3723,75 @@ int size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ - b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 ); + b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; - yy_init_buffer( b, file ); + yy_init_buffer(b,file ); return b; - } - +} -#ifdef YY_USE_PROTOS -void yy_delete_buffer( YY_BUFFER_STATE b ) -#else -void yy_delete_buffer( b ) -YY_BUFFER_STATE b; -#endif - { +/** Destroy the buffer. + * @param b a buffer created with yy_create_buffer() + * + */ + void yy_delete_buffer (YY_BUFFER_STATE b ) +{ + if ( ! b ) return; - if ( b == yy_current_buffer ) - yy_current_buffer = (YY_BUFFER_STATE) 0; + if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ + YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) - yy_flex_free( (void *) b->yy_ch_buf ); - - yy_flex_free( (void *) b ); - } + yyfree((void *) b->yy_ch_buf ); + yyfree((void *) b ); +} -#ifndef _WIN32 -#include -#else -#ifndef YY_ALWAYS_INTERACTIVE -#ifndef YY_NEVER_INTERACTIVE -extern int isatty YY_PROTO(( int )); -#endif -#endif -#endif - -#ifdef YY_USE_PROTOS -void yy_init_buffer( YY_BUFFER_STATE b, FILE *file ) -#else -void yy_init_buffer( b, file ) -YY_BUFFER_STATE b; -FILE *file; -#endif - +#ifndef __cplusplus +extern int isatty (int ); +#endif /* __cplusplus */ + +/* Initializes or reinitializes a buffer. + * This function is sometimes called more than once on the same buffer, + * such as during a yyrestart() or at EOF. + */ + static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) - { - yy_flush_buffer( b ); +{ + int oerrno = errno; + + yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; -#if YY_ALWAYS_INTERACTIVE - b->yy_is_interactive = 1; -#else -#if YY_NEVER_INTERACTIVE - b->yy_is_interactive = 0; -#else - b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; -#endif -#endif - } - + /* If b is the current buffer, then yy_init_buffer was _probably_ + * called from yyrestart() or through yy_get_next_buffer. + * In that case, we don't want to reset the lineno or column. + */ + if (b != YY_CURRENT_BUFFER){ + b->yy_bs_lineno = 1; + b->yy_bs_column = 0; + } -#ifdef YY_USE_PROTOS -void yy_flush_buffer( YY_BUFFER_STATE b ) -#else -void yy_flush_buffer( b ) -YY_BUFFER_STATE b; -#endif + b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; + + errno = oerrno; +} - { - if ( ! b ) +/** Discard all buffered characters. On the next scan, YY_INPUT will be called. + * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. + * + */ + void yy_flush_buffer (YY_BUFFER_STATE b ) +{ + if ( ! b ) return; b->yy_n_chars = 0; @@ -3595,29 +3808,125 @@ YY_BUFFER_STATE b; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; - if ( b == yy_current_buffer ) - yy_load_buffer_state(); + if ( b == YY_CURRENT_BUFFER ) + yy_load_buffer_state( ); +} + +/** Pushes the new state onto the stack. The new state becomes + * the current state. This function will allocate the stack + * if necessary. + * @param new_buffer The new state. + * + */ +void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) +{ + if (new_buffer == NULL) + return; + + yyensure_buffer_stack(); + + /* This block is copied from yy_switch_to_buffer. */ + if ( YY_CURRENT_BUFFER ) + { + /* Flush out information for old buffer. */ + *(yy_c_buf_p) = (yy_hold_char); + YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); + } + + /* Only push if top exists. Otherwise, replace top. */ + if (YY_CURRENT_BUFFER) + (yy_buffer_stack_top)++; + YY_CURRENT_BUFFER_LVALUE = new_buffer; + + /* copied from yy_switch_to_buffer. */ + yy_load_buffer_state( ); + (yy_did_buffer_switch_on_eof) = 1; +} + +/** Removes and deletes the top of the stack, if present. + * The next element becomes the new top. + * + */ +void yypop_buffer_state (void) +{ + if (!YY_CURRENT_BUFFER) + return; + + yy_delete_buffer(YY_CURRENT_BUFFER ); + YY_CURRENT_BUFFER_LVALUE = NULL; + if ((yy_buffer_stack_top) > 0) + --(yy_buffer_stack_top); + + if (YY_CURRENT_BUFFER) { + yy_load_buffer_state( ); + (yy_did_buffer_switch_on_eof) = 1; } +} +/* Allocates the stack if it does not exist. + * Guarantees space for at least one push. + */ +static void yyensure_buffer_stack (void) +{ + int num_to_alloc; + + if (!(yy_buffer_stack)) { + + /* First allocation is just for 2 elements, since we don't know if this + * scanner will even need a stack. We use 2 instead of 1 to avoid an + * immediate realloc on the next call. + */ + num_to_alloc = 1; + (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc + (num_to_alloc * sizeof(struct yy_buffer_state*) + ); + if ( ! (yy_buffer_stack) ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); + + (yy_buffer_stack_max) = num_to_alloc; + (yy_buffer_stack_top) = 0; + return; + } -#ifndef YY_NO_SCAN_BUFFER -#ifdef YY_USE_PROTOS -YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) -#else -YY_BUFFER_STATE yy_scan_buffer( base, size ) -char *base; -yy_size_t size; -#endif - { - YY_BUFFER_STATE b; + if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ + + /* Increase the buffer to prepare for a possible push. */ + int grow_size = 8 /* arbitrary grow size */; + + num_to_alloc = (yy_buffer_stack_max) + grow_size; + (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc + ((yy_buffer_stack), + num_to_alloc * sizeof(struct yy_buffer_state*) + ); + if ( ! (yy_buffer_stack) ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + /* zero only the new slots.*/ + memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); + (yy_buffer_stack_max) = num_to_alloc; + } +} +/** Setup the input buffer state to scan directly from a user-specified character buffer. + * @param base the character buffer + * @param size the size in bytes of the character buffer + * + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) +{ + YY_BUFFER_STATE b; + if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; - b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) ); + b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); @@ -3631,56 +3940,51 @@ yy_size_t size; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; - yy_switch_to_buffer( b ); + yy_switch_to_buffer(b ); return b; - } -#endif - - -#ifndef YY_NO_SCAN_STRING -#ifdef YY_USE_PROTOS -YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str ) -#else -YY_BUFFER_STATE yy_scan_string( yy_str ) -yyconst char *yy_str; -#endif - { - int len; - for ( len = 0; yy_str[len]; ++len ) - ; - - return yy_scan_bytes( yy_str, len ); - } -#endif +} +/** Setup the input buffer state to scan a string. The next call to yylex() will + * scan from a @e copy of @a str. + * @param yystr a NUL-terminated string to scan + * + * @return the newly allocated buffer state object. + * @note If you want to scan bytes that may contain NUL values, then use + * yy_scan_bytes() instead. + */ +YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) +{ + + return yy_scan_bytes(yystr,strlen(yystr) ); +} -#ifndef YY_NO_SCAN_BYTES -#ifdef YY_USE_PROTOS -YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len ) -#else -YY_BUFFER_STATE yy_scan_bytes( bytes, len ) -yyconst char *bytes; -int len; -#endif - { +/** Setup the input buffer state to scan the given bytes. The next call to yylex() will + * scan from a @e copy of @a bytes. + * @param bytes the byte buffer to scan + * @param len the number of bytes in the buffer pointed to by @a bytes. + * + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) +{ YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; - + /* Get memory for full buffer, including space for trailing EOB's. */ - n = len + 2; - buf = (char *) yy_flex_alloc( n ); + n = _yybytes_len + 2; + buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); - for ( i = 0; i < len; ++i ) - buf[i] = bytes[i]; + for ( i = 0; i < _yybytes_len; ++i ) + buf[i] = yybytes[i]; - buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR; + buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; - b = yy_scan_buffer( buf, n ); + b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); @@ -3690,148 +3994,204 @@ int len; b->yy_is_our_buffer = 1; return b; - } +} + +#ifndef YY_EXIT_FAILURE +#define YY_EXIT_FAILURE 2 #endif +static void yy_fatal_error (yyconst char* msg ) +{ + (void) fprintf( stderr, "%s\n", msg ); + exit( YY_EXIT_FAILURE ); +} -#ifndef YY_NO_PUSH_STATE -#ifdef YY_USE_PROTOS -static void yy_push_state( int new_state ) -#else -static void yy_push_state( new_state ) -int new_state; -#endif - { - if ( yy_start_stack_ptr >= yy_start_stack_depth ) - { - yy_size_t new_size; +/* Redefine yyless() so it works in section 3 code. */ - yy_start_stack_depth += YY_START_STACK_INCR; - new_size = yy_start_stack_depth * sizeof( int ); +#undef yyless +#define yyless(n) \ + do \ + { \ + /* Undo effects of setting up yytext. */ \ + int yyless_macro_arg = (n); \ + YY_LESS_LINENO(yyless_macro_arg);\ + yytext[yyleng] = (yy_hold_char); \ + (yy_c_buf_p) = yytext + yyless_macro_arg; \ + (yy_hold_char) = *(yy_c_buf_p); \ + *(yy_c_buf_p) = '\0'; \ + yyleng = yyless_macro_arg; \ + } \ + while ( 0 ) - if ( ! yy_start_stack ) - yy_start_stack = (int *) yy_flex_alloc( new_size ); +/* Accessor methods (get/set functions) to struct members. */ - else - yy_start_stack = (int *) yy_flex_realloc( - (void *) yy_start_stack, new_size ); +/** Get the current line number. + * + */ +int yyget_lineno (void) +{ + + return yylineno; +} - if ( ! yy_start_stack ) - YY_FATAL_ERROR( - "out of memory expanding start-condition stack" ); - } +/** Get the input stream. + * + */ +FILE *yyget_in (void) +{ + return yyin; +} - yy_start_stack[yy_start_stack_ptr++] = YY_START; +/** Get the output stream. + * + */ +FILE *yyget_out (void) +{ + return yyout; +} - BEGIN(new_state); - } -#endif +/** Get the length of the current token. + * + */ +int yyget_leng (void) +{ + return yyleng; +} +/** Get the current token. + * + */ -#ifndef YY_NO_POP_STATE -static void yy_pop_state() - { - if ( --yy_start_stack_ptr < 0 ) - YY_FATAL_ERROR( "start-condition stack underflow" ); +char *yyget_text (void) +{ + return yytext; +} - BEGIN(yy_start_stack[yy_start_stack_ptr]); - } -#endif +/** Set the current line number. + * @param line_number + * + */ +void yyset_lineno (int line_number ) +{ + + yylineno = line_number; +} +/** Set the input stream. This does not discard the current + * input buffer. + * @param in_str A readable stream. + * + * @see yy_switch_to_buffer + */ +void yyset_in (FILE * in_str ) +{ + yyin = in_str ; +} -#ifndef YY_NO_TOP_STATE -static int yy_top_state() - { - return yy_start_stack[yy_start_stack_ptr - 1]; - } -#endif +void yyset_out (FILE * out_str ) +{ + yyout = out_str ; +} -#ifndef YY_EXIT_FAILURE -#define YY_EXIT_FAILURE 2 -#endif +int yyget_debug (void) +{ + return yy_flex_debug; +} -#ifdef YY_USE_PROTOS -static void yy_fatal_error( yyconst char msg[] ) +void yyset_debug (int bdebug ) +{ + yy_flex_debug = bdebug ; +} + +static int yy_init_globals (void) +{ + /* Initialization is the same as for the non-reentrant scanner. + * This function is called from yylex_destroy(), so don't allocate here. + */ + + (yy_buffer_stack) = 0; + (yy_buffer_stack_top) = 0; + (yy_buffer_stack_max) = 0; + (yy_c_buf_p) = (char *) 0; + (yy_init) = 0; + (yy_start) = 0; + + (yy_state_buf) = 0; + (yy_state_ptr) = 0; + (yy_full_match) = 0; + (yy_lp) = 0; + +/* Defined in main.c */ +#ifdef YY_STDINIT + yyin = stdin; + yyout = stdout; #else -static void yy_fatal_error( msg ) -char msg[]; + yyin = (FILE *) 0; + yyout = (FILE *) 0; #endif - { - (void) fprintf( stderr, "%s\n", msg ); - exit( YY_EXIT_FAILURE ); - } + /* For future reference: Set errno on error, since we are called by + * yylex_init() + */ + return 0; +} +/* yylex_destroy is for both reentrant and non-reentrant scanners. */ +int yylex_destroy (void) +{ + + /* Pop the buffer stack, destroying each element. */ + while(YY_CURRENT_BUFFER){ + yy_delete_buffer(YY_CURRENT_BUFFER ); + YY_CURRENT_BUFFER_LVALUE = NULL; + yypop_buffer_state(); + } -/* Redefine yyless() so it works in section 3 code. */ + /* Destroy the stack itself. */ + yyfree((yy_buffer_stack) ); + (yy_buffer_stack) = NULL; -#undef yyless -#define yyless(n) \ - do \ - { \ - /* Undo effects of setting up yytext. */ \ - yytext[yyleng] = yy_hold_char; \ - yy_c_buf_p = yytext + n; \ - yy_hold_char = *yy_c_buf_p; \ - *yy_c_buf_p = '\0'; \ - yyleng = n; \ - } \ - while ( 0 ) + yyfree ( (yy_state_buf) ); + (yy_state_buf) = NULL; + /* Reset the globals. This is important in a non-reentrant scanner so the next time + * yylex() is called, initialization will occur. */ + yy_init_globals( ); -/* Internal utility routines. */ + return 0; +} + +/* + * Internal utility routines. + */ #ifndef yytext_ptr -#ifdef YY_USE_PROTOS -static void yy_flex_strncpy( char *s1, yyconst char *s2, int n ) -#else -static void yy_flex_strncpy( s1, s2, n ) -char *s1; -yyconst char *s2; -int n; -#endif - { +static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) +{ register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; - } +} #endif #ifdef YY_NEED_STRLEN -#ifdef YY_USE_PROTOS -static int yy_flex_strlen( yyconst char *s ) -#else -static int yy_flex_strlen( s ) -yyconst char *s; -#endif - { +static int yy_flex_strlen (yyconst char * s ) +{ register int n; for ( n = 0; s[n]; ++n ) ; return n; - } +} #endif - -#ifdef YY_USE_PROTOS -static void *yy_flex_alloc( yy_size_t size ) -#else -static void *yy_flex_alloc( size ) -yy_size_t size; -#endif - { +void *yyalloc (yy_size_t size ) +{ return (void *) malloc( size ); - } +} -#ifdef YY_USE_PROTOS -static void *yy_flex_realloc( void *ptr, yy_size_t size ) -#else -static void *yy_flex_realloc( ptr, size ) -void *ptr; -yy_size_t size; -#endif - { +void *yyrealloc (void * ptr, yy_size_t size ) +{ /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter @@ -3840,25 +4200,17 @@ yy_size_t size; * as though doing an assignment. */ return (void *) realloc( (char *) ptr, size ); - } +} -#ifdef YY_USE_PROTOS -static void yy_flex_free( void *ptr ) -#else -static void yy_flex_free( ptr ) -void *ptr; -#endif - { - free( ptr ); - } +void yyfree (void * ptr ) +{ + free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ +} + +#define YYTABLES_NAME "yytables" + +#line 978 "parser.l" -#if YY_MAIN -int main() - { - yylex(); - return 0; - } -#endif @@ -3905,7 +4257,7 @@ int yyoffset() static void output(ch) int ch; { - fprintf(stderr, "PARSER BUG: unmatched character '%c' (0%o)\n", + if(appData.debugMode) fprintf(debugFP, "PARSER BUG: unmatched character '%c' (0%o)\n", ch, ch); } @@ -3917,7 +4269,7 @@ static void unput(ch) StringToLex--; } else { if (unputCount >= UNPUT_BUF_SIZE) - fprintf(stderr, "PARSER BUG: unput buffer overflow '%c' (0%o)\n", + if(appData.debugMode) fprintf(debugFP, "PARSER BUG: unput buffer overflow '%c' (0%o)\n", ch, ch); unputBuffer[unputCount++] = ch; } @@ -3983,9 +4335,9 @@ static YY_BUFFER_STATE my_file_buffer = NULL; */ int yyoffset() { - int pos = yy_c_buf_p - yy_current_buffer->yy_ch_buf; + int pos = yy_c_buf_p - YY_CURRENT_BUFFER->yy_ch_buf; - return(ftell(yy_current_buffer->yy_input_file) - + return(ftell(YY_CURRENT_BUFFER->yy_input_file) - yy_n_chars + pos); } @@ -3996,7 +4348,7 @@ void yynewstr(s) if (my_file_buffer != NULL) yy_delete_buffer(my_file_buffer); StringToLex = s; - my_file_buffer = yy_create_buffer(stdin, YY_BUF_SIZE); + my_file_buffer = yy_create_buffer(stdin,YY_BUF_SIZE); yy_switch_to_buffer(my_file_buffer); } @@ -4006,7 +4358,7 @@ void yynewfile(f) if (my_file_buffer != NULL) yy_delete_buffer(my_file_buffer); StringToLex = NULL; - my_file_buffer = yy_create_buffer(f, YY_BUF_SIZE); + my_file_buffer = yy_create_buffer(f,YY_BUF_SIZE); yy_switch_to_buffer(my_file_buffer); } #endif /*FLEX_SCANNER*/ @@ -4018,9 +4370,9 @@ int yywrap() /* Parse a move from the given string s */ /* ^ at start of pattern WON'T work here unless using flex */ -ChessMove yylexstr(boardIndex, s) - int boardIndex; - char *s; +ChessMove yylexstr(boardIndex, s, text, len) + int boardIndex, len; + char *s, *text; { ChessMove ret; char *oldStringToLex; @@ -4032,12 +4384,14 @@ ChessMove yylexstr(boardIndex, s) oldStringToLex = StringToLex; StringToLex = s; #ifdef FLEX_SCANNER - buffer = yy_create_buffer(stdin, YY_BUF_SIZE); + buffer = yy_create_buffer(stdin,YY_BUF_SIZE); oldBuffer = YY_CURRENT_BUFFER; yy_switch_to_buffer(buffer); #endif /*FLEX_SCANNER*/ ret = (ChessMove) yylex(); + strncpy(text, yy_text, len-1); // [HGM] vari: yy_text is not available to caller after buffer switch ?!? + text[len-1] = NULLCHAR; #ifdef FLEX_SCANNER if (oldBuffer != NULL) @@ -4048,3 +4402,4 @@ ChessMove yylexstr(boardIndex, s) return ret; } +