#include "config.h" #include "util/configyyrename.h" #line 2 "" #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 6 #define YY_FLEX_SUBMINOR_VERSION 4 #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 /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* 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 #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; /* 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 #ifndef SIZE_MAX #define SIZE_MAX (~(size_t)0) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ /* begin standard C++ headers. */ /* TODO: this is always defined, so inline it */ #define yyconst const #if defined(__GNUC__) && __GNUC__ >= 3 #define yynoreturn __attribute__((__noreturn__)) #else #define yynoreturn #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an * integer in range [0..255] for use as an array index. */ #define YY_SC_TO_UI(c) ((YY_CHAR) (c)) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #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 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_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k. * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. * Ditto for the __ia64__ case accordingly. */ #define YY_BUF_SIZE 32768 #else #define YY_BUF_SIZE 16384 #endif /* __ia64__ */ #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 #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #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 #define YY_LESS_LINENO(n) #define YY_LINENO_REWIND_TO(ptr) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ 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 + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ int yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ 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 * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* 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 = NULL; /**< 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_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 = NULL; 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 * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; 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 ); static void yyensure_buffer_stack ( void ); static void yy_load_buffer_state ( void ); static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size ); YY_BUFFER_STATE yy_scan_string ( const char *yy_str ); YY_BUFFER_STATE yy_scan_bytes ( const 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 ){ \ 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 ){\ 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_LVALUE->yy_at_bol) /* Begin user sect3 */ typedef flex_uint8_t YY_CHAR; FILE *yyin = NULL, *yyout = NULL; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #ifdef yytext_ptr #undef yytext_ptr #endif #define yytext_ptr yytext 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 yynoreturn yy_fatal_error ( const 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; \ (yytext_ptr) -= (yy_more_len); \ yyleng = (int) (yy_cp - (yytext_ptr)); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 302 #define YY_END_OF_BUFFER 303 /* 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 const flex_int16_t yy_accept[2986] = { 0, 1, 1, 284, 284, 288, 288, 292, 292, 296, 296, 1, 1, 303, 300, 1, 282, 282, 301, 2, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 301, 284, 285, 285, 286, 301, 288, 289, 289, 290, 301, 295, 292, 293, 293, 294, 301, 296, 297, 297, 298, 301, 299, 283, 2, 287, 299, 301, 300, 0, 1, 2, 2, 2, 2, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 284, 0, 288, 0, 295, 0, 292, 296, 0, 299, 0, 2, 2, 299, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 299, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 112, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 120, 300, 300, 300, 300, 300, 300, 300, 299, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 96, 300, 300, 300, 300, 300, 300, 8, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 113, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 125, 300, 299, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 277, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 299, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 54, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 222, 300, 14, 15, 300, 18, 17, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 119, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 206, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 3, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 299, 300, 300, 300, 300, 300, 300, 300, 272, 300, 300, 271, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 291, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 57, 300, 246, 300, 300, 300, 300, 300, 300, 300, 300, 278, 279, 300, 300, 300, 300, 300, 58, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 116, 300, 300, 300, 300, 300, 300, 300, 300, 195, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 20, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 144, 300, 300, 291, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 94, 300, 300, 300, 300, 300, 300, 300, 254, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 167, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 143, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 93, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 31, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 32, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 55, 300, 300, 300, 300, 300, 300, 300, 300, 300, 118, 300, 300, 300, 300, 300, 111, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 56, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 168, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 45, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 237, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 49, 300, 50, 300, 300, 300, 300, 300, 97, 300, 98, 300, 300, 300, 300, 95, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 7, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 215, 300, 300, 300, 300, 146, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 46, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 187, 300, 186, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 16, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 59, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 194, 300, 300, 300, 300, 300, 300, 100, 300, 99, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 178, 300, 300, 300, 300, 300, 300, 300, 300, 126, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 78, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 82, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 53, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 181, 182, 300, 300, 300, 248, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 6, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 252, 300, 300, 300, 300, 300, 300, 273, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 41, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 43, 300, 300, 300, 300, 300, 300, 300, 300, 174, 300, 300, 300, 121, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 199, 300, 175, 300, 300, 300, 212, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 44, 300, 300, 300, 300, 300, 300, 300, 300, 300, 123, 105, 300, 106, 300, 300, 300, 104, 300, 300, 300, 300, 300, 300, 300, 300, 141, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 236, 300, 300, 300, 300, 300, 300, 300, 300, 176, 300, 300, 300, 300, 300, 179, 300, 185, 300, 300, 300, 300, 300, 211, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 92, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 117, 300, 300, 300, 300, 300, 300, 51, 300, 300, 300, 25, 300, 300, 300, 300, 300, 300, 300, 300, 300, 19, 300, 300, 300, 300, 300, 300, 26, 35, 300, 151, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 67, 69, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 256, 300, 300, 300, 223, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 107, 300, 300, 300, 300, 300, 300, 300, 300, 300, 140, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 267, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 145, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 205, 300, 300, 300, 300, 300, 300, 300, 300, 276, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 162, 300, 300, 300, 300, 300, 300, 300, 300, 101, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 157, 300, 169, 300, 300, 300, 300, 300, 129, 300, 300, 300, 300, 300, 88, 300, 300, 300, 300, 197, 300, 300, 300, 300, 300, 300, 213, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 228, 300, 300, 300, 300, 300, 300, 300, 300, 300, 122, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 161, 300, 300, 300, 300, 300, 70, 71, 300, 300, 300, 300, 300, 52, 300, 300, 300, 300, 300, 77, 170, 300, 188, 300, 216, 300, 300, 180, 249, 300, 300, 300, 300, 300, 63, 300, 172, 300, 300, 300, 300, 300, 9, 300, 300, 300, 91, 300, 300, 300, 300, 241, 300, 300, 300, 196, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 160, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 147, 300, 255, 300, 300, 300, 300, 227, 300, 300, 300, 300, 300, 300, 300, 300, 207, 300, 300, 300, 300, 247, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 270, 300, 171, 300, 300, 300, 300, 300, 300, 300, 62, 64, 300, 300, 300, 300, 300, 300, 300, 90, 300, 300, 300, 300, 239, 300, 300, 300, 251, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 201, 33, 27, 29, 300, 300, 300, 300, 300, 300, 300, 300, 300, 34, 300, 28, 30, 300, 300, 300, 300, 300, 300, 300, 300, 87, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 203, 200, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 61, 300, 300, 124, 300, 108, 300, 300, 300, 300, 300, 300, 300, 300, 142, 13, 300, 300, 300, 300, 300, 300, 300, 300, 300, 265, 300, 268, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 12, 300, 300, 21, 300, 300, 300, 245, 300, 300, 300, 253, 300, 300, 300, 65, 300, 209, 300, 300, 300, 300, 202, 300, 300, 60, 300, 300, 300, 300, 22, 300, 42, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 156, 155, 300, 300, 300, 300, 300, 300, 300, 300, 300, 204, 198, 300, 214, 300, 300, 257, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 72, 300, 300, 300, 240, 300, 300, 300, 300, 184, 300, 300, 300, 300, 208, 300, 300, 300, 300, 300, 300, 300, 300, 274, 275, 153, 300, 300, 66, 300, 300, 300, 300, 163, 300, 300, 102, 103, 300, 300, 300, 300, 148, 300, 150, 300, 189, 300, 300, 300, 300, 154, 300, 300, 217, 300, 300, 300, 300, 300, 300, 300, 131, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 224, 300, 300, 300, 23, 300, 250, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 190, 300, 300, 238, 300, 269, 300, 183, 300, 300, 300, 300, 47, 300, 300, 300, 300, 4, 300, 300, 300, 115, 130, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 220, 36, 37, 300, 300, 300, 300, 300, 300, 300, 258, 300, 300, 300, 300, 300, 300, 226, 300, 300, 300, 193, 300, 300, 300, 300, 300, 300, 300, 300, 300, 75, 300, 48, 244, 300, 221, 300, 300, 300, 300, 11, 300, 300, 300, 300, 300, 114, 300, 300, 300, 300, 191, 79, 300, 39, 300, 300, 300, 300, 300, 300, 300, 300, 159, 300, 300, 300, 300, 300, 133, 300, 300, 300, 300, 300, 300, 300, 300, 300, 225, 127, 300, 300, 109, 110, 300, 300, 300, 81, 85, 80, 300, 73, 300, 300, 300, 300, 300, 10, 300, 300, 300, 242, 300, 300, 300, 300, 281, 38, 300, 300, 300, 300, 300, 158, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 86, 84, 300, 74, 266, 300, 300, 300, 300, 300, 300, 300, 177, 300, 300, 300, 300, 300, 192, 300, 300, 300, 300, 300, 300, 300, 300, 149, 68, 300, 300, 300, 300, 300, 259, 300, 300, 300, 300, 300, 300, 300, 128, 300, 83, 134, 135, 138, 139, 136, 137, 76, 300, 243, 300, 300, 300, 300, 152, 300, 300, 300, 300, 300, 219, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 165, 164, 40, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 89, 300, 218, 300, 235, 263, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 5, 300, 300, 210, 300, 300, 264, 300, 300, 300, 300, 300, 300, 300, 300, 24, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 132, 300, 300, 300, 300, 300, 300, 300, 300, 166, 300, 173, 300, 300, 300, 300, 300, 300, 300, 300, 300, 260, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 280, 300, 300, 231, 300, 300, 300, 300, 300, 261, 300, 300, 300, 300, 300, 300, 262, 300, 300, 300, 229, 300, 232, 233, 300, 300, 300, 300, 300, 230, 234, 0 } ; static const YY_CHAR yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 5, 6, 1, 1, 1, 7, 1, 1, 1, 1, 1, 8, 1, 1, 1, 9, 1, 10, 11, 1, 12, 1, 1, 1, 13, 1, 1, 1, 1, 1, 1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 1, 40, 1, 1, 1, 1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static const YY_CHAR yy_meta[67] = { 0, 1, 2, 3, 4, 5, 1, 6, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static const flex_int16_t yy_base[3000] = { 0, 0, 0, 64, 67, 70, 72, 78, 84, 89, 92, 131, 137, 508, 418, 96, 8475, 8475, 8475, 109, 171, 85, 142, 215, 83, 117, 152, 207, 50, 110, 75, 167, 231, 112, 275, 121, 327, 368, 243, 258, 259, 170, 321, 382, 8475, 8475, 8475, 104, 341, 8475, 8475, 8475, 147, 337, 362, 8475, 8475, 8475, 342, 295, 8475, 8475, 8475, 160, 291, 8475, 355, 8475, 177, 346, 201, 371, 115, 0, 386, 0, 0, 160, 162, 199, 204, 188, 169, 323, 222, 256, 267, 378, 278, 292, 279, 366, 367, 369, 409, 340, 380, 325, 397, 377, 424, 404, 407, 433, 439, 413, 408, 370, 434, 226, 445, 450, 447, 457, 472, 460, 477, 461, 479, 471, 497, 485, 248, 492, 512, 504, 242, 502, 531, 527, 519, 521, 529, 520, 558, 539, 559, 543, 547, 563, 557, 180, 164, 138, 231, 122, 531, 158, 79, 501, 66, 608, 612, 0, 580, 584, 321, 587, 594, 607, 602, 585, 598, 603, 614, 604, 626, 632, 623, 638, 627, 599, 653, 697, 636, 639, 642, 652, 649, 651, 672, 677, 682, 675, 678, 698, 676, 702, 714, 729, 721, 712, 715, 696, 742, 755, 741, 740, 756, 757, 744, 759, 758, 769, 777, 768, 767, 406, 771, 772, 779, 773, 776, 792, 800, 795, 796, 793, 826, 806, 807, 827, 808, 819, 823, 820, 824, 838, 846, 836, 822, 837, 850, 840, 865, 849, 852, 871, 456, 867, 879, 876, 857, 882, 869, 864, 889, 884, 896, 890, 894, 905, 910, 914, 907, 903, 906, 908, 911, 921, 924, 932, 933, 937, 942, 173, 940, 953, 956, 928, 935, 962, 964, 952, 977, 959, 979, 976, 980, 989, 981, 985, 992, 974, 984, 997, 986, 995, 1011, 1007, 1023, 1012, 1031, 1015, 1041, 1016, 1020, 1037, 1024, 1080, 1026, 1038, 1043, 1074, 1046, 1053, 1057, 1083, 1087, 1075, 1091, 1088, 1112, 1114, 1090, 1104, 1119, 1113, 1124, 1122, 1118, 1132, 1127, 1138, 1159, 8475, 1143, 1148, 1149, 1161, 1167, 1179, 1154, 1194, 1164, 1176, 1190, 1174, 1187, 1199, 1247, 1196, 1201, 1203, 1217, 1211, 8475, 1252, 1219, 1297, 1238, 1242, 1261, 1256, 1237, 1257, 1277, 1245, 1275, 1246, 1279, 1281, 1293, 1319, 1295, 1290, 1315, 1314, 1320, 1333, 1336, 1343, 1331, 1337, 1339, 1338, 1330, 1345, 1354, 1288, 1347, 1352, 1357, 1363, 1381, 1365, 1387, 1384, 1370, 1378, 1382, 1395, 1388, 1410, 1390, 1416, 1420, 1414, 1408, 1415, 1425, 1434, 1422, 1433, 1443, 1442, 1207, 1440, 1449, 1463, 1412, 1452, 1451, 1447, 1470, 1472, 1483, 1461, 1467, 1478, 1474, 1482, 1494, 1491, 1480, 1501, 1495, 1514, 1502, 8475, 1519, 1505, 1509, 1518, 1511, 1522, 8475, 1530, 1532, 1541, 1540, 1547, 1542, 1557, 1546, 1570, 1536, 1558, 1549, 1575, 1566, 1568, 1585, 1574, 1587, 1582, 1569, 1596, 1589, 1591, 1602, 1595, 1601, 1597, 1647, 8475, 1605, 1627, 1631, 1622, 1629, 1656, 1672, 1644, 1638, 1662, 1670, 1690, 1675, 1689, 1680, 1637, 1697, 1684, 1700, 1699, 1708, 1706, 1696, 1707, 1705, 1704, 1719, 1724, 1737, 8475, 1735, 1741, 1649, 1740, 1734, 1731, 1746, 1742, 1736, 1751, 1761, 1773, 1772, 1759, 1758, 1771, 1794, 1778, 1788, 1779, 1777, 1798, 1805, 1807, 1795, 1814, 1800, 1797, 1812, 1801, 1829, 1831, 1838, 1815, 1834, 1839, 1827, 1840, 1842, 1847, 1828, 1830, 1855, 1865, 1858, 1850, 1875, 1861, 1888, 1879, 1873, 1891, 1878, 1889, 1883, 1892, 1893, 1895, 1912, 8475, 1917, 1904, 1926, 1931, 1928, 1934, 1936, 1916, 1920, 1939, 1954, 1943, 1922, 1945, 1962, 1955, 1960, 1968, 1966, 1956, 1973, 1982, 1992, 1983, 1975, 1970, 1994, 1997, 1991, 2004, 2011, 2012, 2016, 2007, 2009, 2006, 2032, 2010, 2019, 2035, 2030, 2041, 2038, 2048, 2037, 2046, 2049, 2079, 2059, 2036, 2068, 2063, 2069, 2062, 2065, 2073, 2075, 2081, 2089, 2095, 2096, 2088, 2097, 2086, 2092, 2102, 2110, 2122, 2106, 2115, 2116, 2117, 2130, 2128, 2124, 2132, 2147, 2126, 2142, 2157, 2144, 2141, 2153, 2162, 2173, 2154, 2163, 2175, 2172, 2181, 2187, 2190, 2191, 2180, 2197, 2192, 2202, 2203, 2199, 2205, 2217, 2223, 2219, 2225, 2221, 2226, 2214, 2242, 2248, 2245, 2246, 8475, 2232, 2261, 2238, 2260, 2254, 2243, 2253, 2279, 2269, 2276, 2272, 2267, 2280, 2323, 8475, 2274, 8475, 8475, 2285, 8475, 8475, 2288, 2303, 2295, 2310, 2312, 2319, 2322, 2307, 2317, 2334, 2291, 2381, 2316, 2330, 2346, 2338, 2350, 2367, 2368, 2369, 2359, 2378, 2371, 2384, 2402, 2390, 2377, 2394, 2414, 2403, 2405, 2417, 2421, 2416, 2419, 2427, 2420, 2430, 2434, 2440, 2432, 2436, 2471, 8475, 2448, 2467, 2473, 2465, 2477, 2475, 2468, 2476, 2479, 2481, 2480, 2464, 2485, 2486, 2491, 2487, 2507, 2511, 2494, 2503, 8475, 2514, 2515, 2520, 2517, 2528, 2527, 2521, 2536, 2530, 2543, 2533, 2544, 2549, 2546, 2558, 2550, 2575, 8475, 2566, 2569, 2560, 2577, 2563, 2579, 2580, 2576, 2590, 2588, 2589, 2614, 2601, 2602, 2625, 2613, 2611, 2615, 2616, 2626, 2617, 2628, 2635, 2627, 2642, 2636, 2657, 2644, 2645, 2649, 2646, 2675, 2663, 2680, 2659, 2685, 2686, 2678, 2669, 2691, 2692, 2687, 2698, 2690, 2707, 2671, 2709, 2705, 2700, 2701, 2713, 2716, 2723, 2714, 2735, 2732, 2724, 2725, 2737, 2734, 8475, 2730, 2741, 8475, 2743, 2744, 2790, 2775, 2773, 2752, 2778, 2758, 2782, 2781, 2798, 2792, 2800, 2789, 2804, 2803, 2817, 2831, 2810, 2821, 2822, 2826, 2823, 2852, 2856, 2854, 282, 2857, 2833, 2842, 2847, 2892, 2860, 2859, 2862, 2863, 2867, 2896, 2869, 2883, 2886, 2888, 2908, 2910, 8475, 2890, 2913, 2902, 2909, 2931, 2925, 2923, 2935, 2937, 2938, 2936, 2947, 2932, 2948, 2940, 2941, 2950, 2949, 2957, 2963, 2973, 2968, 2991, 8475, 2976, 8475, 2975, 2974, 2977, 2984, 2987, 2993, 3002, 3004, 8475, 8475, 3010, 3013, 3016, 3018, 3011, 8475, 3012, 3046, 3026, 3044, 3034, 3032, 3038, 3037, 3043, 3065, 3042, 3068, 3051, 3067, 3070, 8475, 3073, 3059, 3077, 3083, 3071, 3085, 3086, 3069, 8475, 3095, 3089, 3096, 3111, 3119, 3112, 3106, 3117, 3125, 3109, 3115, 3110, 3128, 3122, 3145, 3146, 3138, 3151, 3154, 3150, 8475, 3142, 3144, 3155, 3158, 3166, 3165, 3167, 3157, 3177, 3185, 3168, 3171, 3184, 3178, 3172, 3173, 3193, 3204, 3210, 3194, 3200, 3205, 641, 3201, 3216, 3199, 3222, 8475, 3211, 3229, 61, 3228, 3224, 3221, 3245, 3244, 3234, 3238, 3227, 3264, 3257, 3261, 3265, 3254, 3259, 3271, 3252, 3256, 3280, 3278, 3277, 8475, 3282, 3285, 3283, 3291, 3302, 3295, 3311, 8475, 3312, 3314, 3310, 3307, 3328, 3318, 3323, 3342, 3334, 3344, 3340, 3337, 8475, 3360, 3357, 3361, 3345, 3363, 3369, 3370, 3367, 3371, 3358, 3387, 3376, 3374, 3390, 3388, 3384, 3392, 3406, 3401, 3400, 3403, 3413, 8475, 3426, 3411, 3427, 3404, 3431, 3429, 3460, 3438, 3432, 3448, 3443, 3484, 3451, 3458, 3447, 3468, 3472, 3473, 3453, 3474, 3478, 3485, 3481, 3513, 3512, 3498, 3504, 3519, 3506, 3516, 3509, 3520, 3471, 3532, 3530, 3533, 3557, 3551, 218, 3543, 8475, 3559, 3541, 3540, 3560, 3594, 3570, 3583, 3568, 3590, 3584, 3586, 3587, 3579, 3606, 3600, 3598, 3611, 3604, 3613, 3602, 3617, 3619, 3445, 3621, 3623, 3635, 8475, 3638, 3647, 3634, 3645, 3655, 3639, 3656, 3657, 3662, 3649, 3650, 3660, 3668, 3672, 3673, 3685, 3669, 3689, 3674, 8475, 3700, 3694, 3699, 3701, 3702, 3708, 3717, 3723, 3720, 3696, 3705, 3727, 3726, 8475, 3747, 3748, 3740, 3751, 3746, 3737, 3749, 3757, 3738, 8475, 3742, 3736, 3753, 3773, 3764, 8475, 3776, 3774, 3772, 3769, 3763, 3775, 3778, 3787, 3784, 3795, 3805, 3798, 3789, 3818, 8475, 3808, 3829, 3799, 3819, 3822, 3824, 3816, 3844, 3855, 3839, 3834, 3847, 3849, 3856, 3845, 3843, 3861, 3868, 3866, 3872, 3858, 8475, 3883, 3874, 3880, 3901, 3899, 3890, 3893, 3886, 3904, 3895, 3907, 3900, 3917, 3918, 3928, 3929, 3935, 3920, 3941, 3945, 3934, 3947, 3930, 3961, 3957, 3959, 3968, 3970, 8475, 3958, 3975, 3972, 3964, 3973, 3974, 3976, 3991, 3984, 3986, 3985, 3993, 3996, 4027, 4029, 4005, 4032, 4009, 4011, 4017, 4034, 4016, 4020, 4019, 4046, 4043, 4023, 4050, 4044, 4045, 4070, 4055, 4060, 4061, 4062, 4069, 4064, 4071, 4067, 4089, 4072, 4093, 4095, 4098, 4090, 4096, 4091, 4122, 8475, 4110, 4094, 4106, 4118, 4135, 4133, 4119, 4125, 4130, 4139, 4146, 4152, 4127, 4145, 4149, 4153, 4158, 8475, 4157, 8475, 4160, 4159, 4177, 4187, 4168, 8475, 4189, 8475, 4190, 4192, 4182, 4183, 8475, 4191, 4180, 4197, 4202, 4186, 4210, 4213, 4207, 4208, 4235, 4220, 4226, 4217, 4244, 4229, 4228, 4247, 4233, 4223, 4250, 4237, 4260, 4256, 4255, 4263, 4270, 4271, 8475, 4280, 4268, 4277, 4281, 4282, 4285, 4298, 4287, 4295, 4297, 4293, 4306, 4312, 4319, 4325, 4336, 4314, 4340, 8475, 4329, 4345, 4328, 4344, 8475, 4346, 4338, 4348, 4352, 4354, 4342, 4367, 4361, 4357, 4371, 4366, 4393, 4395, 4387, 4388, 4398, 4375, 4401, 4406, 4402, 4415, 4417, 4410, 4427, 4408, 4422, 4420, 4426, 4433, 4455, 4456, 4447, 4460, 4434, 4453, 4441, 4459, 4444, 4445, 4449, 4461, 4463, 4466, 4468, 4499, 4480, 4483, 4484, 4485, 8475, 4470, 4489, 4496, 4512, 4502, 4504, 4495, 4497, 4505, 4520, 4527, 4539, 4522, 8475, 4537, 8475, 4528, 4540, 4550, 4556, 4546, 4541, 4560, 4569, 4561, 4562, 4566, 4567, 4573, 4575, 4586, 4578, 4594, 4598, 4587, 4604, 4589, 4599, 4593, 4596, 4601, 4615, 8475, 4616, 4622, 4628, 4619, 4623, 4642, 4650, 4636, 4634, 4637, 4639, 4676, 8475, 4646, 4655, 4659, 4675, 4688, 4671, 4690, 4693, 4686, 4698, 4694, 8475, 4679, 4682, 4706, 4692, 4701, 4716, 8475, 4687, 8475, 4711, 4715, 4721, 4726, 4723, 4727, 4725, 4731, 4744, 4746, 4751, 4742, 4748, 4752, 4757, 4747, 4754, 4737, 4761, 4762, 8475, 4724, 4763, 4781, 4786, 4788, 4789, 4787, 4775, 8475, 4784, 4800, 4782, 4805, 4803, 4806, 4810, 4812, 4823, 4826, 4815, 4809, 4836, 4828, 4825, 4839, 4841, 4844, 4848, 8475, 4849, 4850, 4862, 4858, 4852, 4867, 4857, 4853, 4856, 4870, 4872, 4877, 4883, 4881, 4880, 4896, 4889, 4886, 4887, 4903, 4917, 4897, 4907, 4905, 4915, 4925, 4923, 4930, 4936, 4940, 4929, 4941, 4942, 4934, 4938, 4946, 4947, 4952, 4957, 8475, 4976, 4954, 4980, 4958, 4974, 4988, 4989, 4985, 4979, 4975, 4994, 4999, 5003, 8475, 5005, 4997, 5006, 5002, 5012, 5001, 5022, 5016, 5021, 5034, 5018, 5045, 5032, 5029, 5054, 5037, 5033, 8475, 8475, 5047, 5040, 5048, 8475, 5059, 5049, 5067, 5066, 5056, 5072, 5078, 5079, 5063, 5090, 5074, 5080, 8475, 5093, 5107, 5083, 5101, 5114, 5116, 5113, 5117, 5110, 5104, 5102, 5120, 5123, 5115, 5112, 5135, 5150, 5134, 5137, 5151, 8475, 5146, 5145, 5153, 5156, 5149, 5142, 8475, 5169, 5170, 5180, 5178, 5175, 5185, 5192, 5190, 5179, 5177, 5201, 5194, 5202, 5204, 5214, 5196, 5205, 5225, 5232, 5230, 8475, 5227, 5228, 5223, 5240, 5242, 5253, 5250, 5251, 5238, 5257, 5246, 5261, 8475, 5256, 5270, 5260, 5254, 5280, 5271, 5281, 5278, 8475, 5282, 5273, 5291, 8475, 5283, 5301, 5303, 5304, 5295, 5287, 5305, 5307, 5310, 5317, 8475, 5319, 8475, 5322, 5321, 5334, 8475, 5328, 5329, 5331, 5327, 5338, 5345, 5352, 5359, 5344, 5360, 5348, 5351, 5372, 5368, 5385, 5367, 8475, 5389, 5365, 5379, 5397, 5393, 5392, 5384, 5408, 5394, 8475, 8475, 5382, 8475, 5411, 5406, 5410, 8475, 5403, 5409, 5432, 5425, 5438, 5441, 5444, 5440, 8475, 5447, 5431, 5445, 5452, 5435, 5464, 5465, 5468, 5437, 5467, 5478, 8475, 5466, 5473, 5460, 5471, 5479, 5493, 5503, 5490, 8475, 5509, 5500, 5501, 5513, 5515, 8475, 5512, 8475, 5507, 5523, 5526, 5529, 5524, 8475, 5542, 5533, 5554, 5535, 5550, 5562, 5552, 5558, 5548, 5553, 5506, 5567, 5565, 5560, 8475, 5577, 5583, 5576, 5585, 5587, 5581, 5588, 5593, 5604, 5603, 5607, 5605, 5608, 5615, 5612, 5613, 5623, 8475, 5640, 5624, 5633, 5661, 5628, 5635, 8475, 5645, 5653, 5660, 8475, 5646, 5643, 5662, 5666, 5651, 5664, 5667, 5681, 5684, 8475, 5685, 5688, 5686, 5696, 5698, 5693, 8475, 8475, 5712, 8475, 5708, 5694, 5692, 5719, 5711, 5723, 5677, 5733, 5716, 5721, 5743, 5744, 5738, 5757, 5758, 5759, 5752, 5748, 5741, 8475, 8475, 5762, 5765, 5763, 5773, 5776, 5769, 5779, 5792, 5789, 5800, 5795, 5793, 5807, 8475, 5805, 5790, 5808, 8475, 5786, 5818, 5803, 5814, 5828, 5813, 5827, 5815, 5840, 5832, 5841, 5822, 5839, 5838, 5856, 5849, 5845, 5852, 8475, 5869, 5866, 5867, 5864, 5868, 5878, 5879, 5889, 5881, 8475, 5883, 5880, 5896, 5890, 5895, 5905, 5910, 5915, 5920, 5906, 5922, 5930, 5932, 5934, 5938, 8475, 5945, 5919, 5933, 5928, 5951, 5952, 5937, 5954, 5955, 5963, 5959, 5964, 5975, 5976, 5970, 5978, 5971, 5980, 8475, 5983, 5989, 5990, 5992, 5977, 6000, 5991, 6007, 5993, 6005, 5998, 6010, 6028, 8475, 6011, 6016, 6015, 6037, 6044, 6026, 6032, 6033, 8475, 6046, 6034, 6042, 6038, 6059, 6060, 6036, 6066, 6061, 6080, 6081, 8475, 6071, 6085, 6086, 6075, 6079, 6093, 6098, 6069, 8475, 6110, 6111, 6106, 6128, 6108, 6136, 6119, 6127, 6109, 6126, 6137, 6135, 6138, 6141, 6143, 6131, 6154, 6162, 6156, 8475, 6149, 8475, 6164, 6174, 6183, 6179, 6170, 8475, 6166, 6168, 6185, 6171, 6194, 8475, 6187, 6189, 6193, 6206, 8475, 6201, 6217, 6207, 6211, 6224, 6228, 8475, 6225, 6233, 6232, 6244, 6245, 6241, 6234, 6242, 6235, 6239, 6238, 6266, 8475, 6254, 6270, 6276, 6272, 6269, 6259, 6283, 6282, 6275, 8475, 6284, 6271, 6281, 6293, 6286, 6292, 6316, 6297, 6317, 6304, 8475, 6309, 6324, 6300, 6318, 6328, 8475, 8475, 6319, 6331, 6334, 6314, 6341, 8475, 6343, 6359, 6350, 6338, 6354, 8475, 8475, 6366, 8475, 6353, 8475, 6358, 6357, 8475, 8475, 6370, 6352, 6377, 6383, 6376, 8475, 6387, 8475, 6396, 6391, 6379, 6385, 6389, 8475, 6398, 6399, 6401, 8475, 6404, 6425, 6406, 6412, 8475, 6408, 6410, 6414, 8475, 6435, 6430, 6437, 6428, 6434, 6440, 6447, 6439, 6444, 6438, 6455, 6448, 6473, 6479, 6481, 6483, 6484, 6474, 6470, 6485, 6491, 6493, 6477, 6487, 6476, 6482, 6502, 6503, 6507, 6524, 6516, 6519, 6521, 6520, 6513, 6530, 6517, 6518, 6536, 6541, 6526, 6546, 6529, 6543, 6547, 6570, 6563, 6560, 6565, 8475, 6558, 6556, 6559, 6581, 6577, 6590, 6596, 6589, 6600, 6605, 8475, 6609, 8475, 6611, 6597, 6602, 6607, 8475, 6594, 6617, 6598, 6623, 6621, 6625, 6628, 6648, 8475, 6631, 6629, 6650, 6654, 8475, 6652, 6660, 6647, 6653, 6656, 6667, 6666, 6673, 6669, 6670, 6668, 6699, 6674, 6686, 6687, 6688, 6698, 6690, 6700, 6701, 6717, 6705, 6721, 6708, 8475, 6722, 8475, 6715, 6726, 6727, 6716, 6733, 6732, 6737, 8475, 8475, 6735, 6754, 6740, 6743, 6751, 6761, 6767, 8475, 6759, 6772, 6773, 6762, 8475, 6760, 6770, 6777, 8475, 6779, 6783, 6789, 6795, 6786, 6808, 6804, 6802, 6796, 6803, 6814, 8475, 8475, 8475, 8475, 6820, 6806, 6824, 6813, 6830, 6818, 6825, 6837, 6829, 8475, 6846, 8475, 8475, 6845, 6853, 6835, 6854, 6852, 6847, 6856, 6855, 8475, 6869, 6862, 6870, 6873, 6868, 6878, 6891, 6894, 6883, 6885, 6896, 6902, 6905, 6889, 6908, 6909, 6914, 8475, 8475, 6911, 6917, 6916, 6927, 6915, 6932, 6944, 6941, 6943, 6940, 6935, 6947, 6951, 6946, 8475, 6952, 6960, 8475, 6953, 8475, 6961, 6964, 6968, 6976, 6972, 6985, 6996, 6991, 8475, 8475, 6979, 6982, 6988, 7001, 6992, 6995, 6990, 7010, 7014, 8475, 7015, 8475, 7016, 7022, 7020, 7019, 7040, 7045, 7050, 7039, 7043, 7047, 8475, 7046, 7035, 8475, 7054, 7042, 7049, 8475, 7060, 7059, 7065, 8475, 7068, 7076, 7079, 8475, 7089, 8475, 7070, 7088, 7082, 7101, 8475, 7078, 7099, 8475, 7102, 7104, 7105, 7097, 8475, 7095, 8475, 7092, 7114, 7117, 7123, 7115, 7133, 7121, 7120, 7122, 7148, 7146, 7147, 8475, 8475, 7158, 7129, 7135, 7139, 7161, 7169, 7143, 7150, 7171, 8475, 8475, 7175, 8475, 7164, 7173, 8475, 7162, 7181, 7188, 7185, 7165, 7177, 7195, 7193, 7194, 7208, 7223, 7200, 7201, 7224, 7228, 7230, 7233, 7210, 7236, 7218, 7221, 7235, 7222, 7239, 8475, 7254, 7261, 7249, 8475, 7270, 7265, 7273, 7274, 8475, 7275, 7268, 7269, 7271, 8475, 7266, 7282, 7281, 7294, 7295, 7318, 7301, 7306, 8475, 8475, 8475, 7311, 7290, 8475, 7319, 7309, 7299, 7302, 8475, 7322, 7313, 8475, 8475, 7307, 7326, 7328, 7344, 8475, 7342, 8475, 7336, 8475, 7351, 7355, 7363, 7352, 8475, 7362, 7369, 8475, 7365, 7366, 7368, 7371, 7379, 7358, 7381, 8475, 7349, 7396, 7397, 7403, 7387, 7388, 7406, 7392, 7417, 7391, 7420, 8475, 7408, 7407, 7419, 8475, 7421, 8475, 7418, 7428, 7436, 7433, 7434, 7432, 7444, 7448, 7430, 7462, 7445, 8475, 7465, 7470, 8475, 7455, 8475, 7473, 8475, 7458, 7468, 7471, 7481, 8475, 7488, 7479, 7467, 7477, 8475, 7492, 7491, 7502, 8475, 8475, 7489, 7512, 7516, 7500, 7510, 7524, 7508, 7525, 7519, 7529, 7513, 7536, 7515, 7535, 7539, 7541, 7542, 7549, 8475, 8475, 8475, 7546, 7555, 7569, 7553, 7551, 7572, 7552, 8475, 7578, 7579, 7568, 7593, 7573, 7589, 8475, 7592, 7582, 7585, 8475, 7598, 7603, 7599, 7608, 7602, 7613, 7615, 7623, 7619, 8475, 7627, 8475, 8475, 7614, 8475, 7610, 7616, 7617, 7635, 8475, 7645, 7634, 7637, 7643, 7647, 8475, 7658, 7649, 7654, 7650, 8475, 8475, 7656, 8475, 7667, 7663, 7664, 7676, 7674, 7672, 7687, 7683, 8475, 7677, 7682, 7684, 7681, 7692, 8475, 7704, 7699, 7701, 7703, 7709, 7690, 7717, 7711, 7736, 8475, 8475, 7720, 7724, 8475, 8475, 7722, 7742, 7739, 8475, 8475, 8475, 7746, 8475, 7752, 7757, 7759, 7773, 7749, 8475, 7760, 7747, 7761, 8475, 7758, 7762, 7772, 7781, 8475, 8475, 7766, 7776, 7786, 7785, 7780, 8475, 7779, 7787, 7800, 7798, 7811, 7804, 7810, 7817, 7835, 7821, 7807, 7818, 7820, 7831, 7834, 7824, 7840, 7844, 8475, 8475, 7850, 8475, 8475, 7852, 7854, 7855, 7857, 7864, 7865, 7869, 8475, 7863, 7873, 7866, 7862, 7858, 8475, 7861, 7883, 7871, 7881, 7885, 7902, 7889, 7887, 8475, 8475, 7888, 7892, 7891, 7908, 7893, 8475, 7920, 7930, 7912, 7922, 7913, 7910, 7918, 8475, 7931, 8475, 8475, 8475, 8475, 8475, 8475, 8475, 8475, 7938, 8475, 7929, 7943, 7948, 7951, 8475, 7937, 7953, 7959, 7947, 7952, 8475, 7949, 7970, 7977, 7969, 7968, 7984, 7975, 7973, 7987, 7990, 7976, 7998, 7995, 8000, 8002, 8475, 8475, 8475, 8004, 8003, 8021, 8015, 8026, 8034, 8036, 8037, 8019, 8029, 8041, 8047, 8050, 8014, 8042, 7957, 8040, 8053, 8058, 8045, 8051, 8059, 8475, 8068, 8475, 8071, 8475, 8475, 8075, 8087, 8082, 8072, 8097, 8098, 8080, 8092, 8077, 8101, 8475, 8085, 8093, 8475, 8108, 8099, 8475, 8107, 8124, 8112, 8123, 8125, 8118, 8139, 8141, 8475, 8128, 8135, 8140, 8142, 8152, 8116, 8160, 8165, 8167, 8169, 8158, 8181, 8178, 8184, 8182, 8475, 8179, 8171, 8186, 8176, 8188, 8196, 8199, 8187, 8475, 8201, 8475, 8212, 8221, 8214, 8205, 8216, 8223, 8237, 8220, 8227, 8475, 8229, 8241, 8234, 8243, 8248, 8254, 8251, 8247, 8272, 8268, 8275, 8279, 8276, 8280, 8265, 8285, 8269, 8475, 8289, 8278, 8475, 8286, 8293, 8282, 8300, 8307, 8475, 8294, 8303, 8304, 8325, 8329, 8330, 8475, 8332, 8333, 8331, 8475, 8334, 8475, 8475, 8335, 8317, 8324, 8341, 8342, 8475, 8475, 8475, 8383, 8390, 8397, 8404, 8411, 83, 8418, 8425, 8432, 8439, 8446, 8453, 8460, 8467 } ; static const flex_int16_t yy_def[3000] = { 0, 2985, 1, 2986, 2986, 2987, 2987, 2988, 2988, 2989, 2989, 2990, 2990, 2985, 2991, 2985, 2985, 2985, 2985, 2992, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2993, 2985, 2985, 2985, 2993, 2994, 2985, 2985, 2985, 2994, 2995, 2985, 2985, 2985, 2985, 2995, 2996, 2985, 2985, 2985, 2996, 2997, 2985, 2998, 2985, 2997, 2997, 2991, 2991, 2985, 2999, 2992, 2999, 2992, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2993, 2993, 2994, 2994, 2995, 2995, 2985, 2996, 2996, 2997, 2997, 2998, 2998, 2997, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2997, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2997, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2997, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2997, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2985, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2997, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2997, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2985, 2991, 2985, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2985, 2985, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2991, 2991, 2991, 2985, 2991, 2991, 2991, 2985, 2991, 2985, 2985, 2991, 2991, 2991, 2991, 2991, 2985, 2985, 0, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985 } ; static const flex_int16_t yy_nxt[8542] = { 0, 14, 15, 16, 17, 18, 19, 18, 14, 14, 14, 14, 14, 18, 20, 21, 22, 23, 24, 25, 14, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 14, 14, 14, 41, 42, 20, 21, 22, 23, 24, 25, 14, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 14, 14, 14, 41, 44, 45, 46, 44, 45, 46, 49, 50, 49, 50, 51, 102, 51, 54, 55, 56, 57, 70, 18, 54, 55, 56, 57, 71, 18, 60, 61, 62, 60, 61, 62, 72, 82, 92, 151, 73, 104, 47, 102, 151, 47, 141, 141, 52, 75, 52, 75, 75, 71, 75, 72, 58, 149, 93, 73, 75, 71, 58, 71, 82, 92, 103, 63, 104, 94, 63, 15, 16, 17, 65, 66, 67, 15, 16, 17, 65, 66, 67, 95, 112, 93, 118, 76, 71, 143, 71, 68, 143, 103, 83, 71, 94, 68, 147, 71, 146, 84, 148, 148, 96, 85, 141, 141, 86, 69, 95, 112, 97, 118, 155, 69, 144, 156, 68, 105, 71, 83, 375, 160, 68, 77, 78, 106, 84, 79, 71, 96, 85, 107, 80, 86, 140, 108, 71, 97, 71, 155, 154, 81, 156, 71, 105, 71, 71, 71, 160, 71, 77, 78, 106, 151, 79, 157, 142, 159, 107, 80, 98, 140, 108, 99, 71, 158, 1290, 154, 81, 87, 100, 143, 101, 88, 143, 71, 89, 71, 90, 91, 71, 109, 157, 71, 159, 110, 224, 98, 202, 163, 99, 71, 158, 129, 71, 130, 87, 100, 71, 101, 88, 111, 71, 89, 131, 90, 91, 71, 109, 137, 132, 133, 110, 138, 164, 202, 163, 139, 71, 71, 129, 134, 130, 218, 71, 135, 136, 1042, 111, 113, 165, 131, 71, 114, 71, 71, 137, 132, 133, 115, 138, 164, 116, 71, 139, 169, 170, 172, 134, 117, 218, 71, 135, 136, 71, 71, 113, 165, 71, 70, 114, 70, 70, 171, 70, 246, 115, 151, 71, 116, 70, 149, 169, 170, 172, 161, 117, 119, 182, 247, 145, 120, 145, 145, 150, 145, 150, 150, 162, 150, 171, 121, 122, 75, 123, 75, 75, 71, 75, 71, 147, 71, 161, 71, 119, 182, 247, 180, 120, 70, 173, 70, 70, 146, 70, 162, 71, 144, 121, 122, 70, 123, 124, 200, 75, 125, 75, 75, 174, 75, 175, 153, 126, 166, 180, 75, 127, 128, 176, 167, 184, 168, 71, 71, 71, 71, 71, 181, 189, 124, 200, 183, 125, 71, 71, 174, 71, 175, 142, 126, 166, 313, 76, 127, 128, 176, 167, 184, 168, 177, 178, 199, 190, 71, 181, 191, 185, 179, 183, 186, 71, 197, 71, 71, 71, 71, 198, 192, 313, 71, 201, 194, 187, 188, 71, 195, 177, 178, 199, 190, 71, 203, 191, 185, 179, 346, 186, 193, 197, 71, 71, 196, 204, 198, 192, 71, 205, 201, 194, 187, 188, 71, 195, 71, 206, 207, 71, 208, 203, 212, 211, 209, 71, 71, 193, 210, 71, 71, 196, 204, 213, 148, 148, 205, 2985, 2985, 2985, 71, 71, 217, 214, 206, 207, 71, 208, 71, 212, 211, 209, 215, 219, 71, 210, 225, 220, 216, 223, 213, 71, 145, 2985, 145, 145, 71, 145, 221, 217, 214, 71, 222, 71, 226, 2985, 229, 231, 234, 215, 219, 71, 232, 225, 220, 216, 223, 230, 71, 71, 71, 227, 233, 238, 228, 221, 71, 240, 71, 222, 71, 226, 235, 229, 231, 234, 239, 241, 71, 232, 242, 236, 71, 243, 230, 2985, 71, 2985, 227, 233, 238, 228, 2985, 237, 240, 244, 71, 71, 71, 235, 2985, 245, 71, 239, 241, 253, 264, 242, 236, 150, 243, 150, 150, 75, 150, 75, 75, 248, 75, 151, 237, 249, 244, 71, 71, 252, 71, 250, 245, 254, 255, 256, 253, 71, 251, 2985, 257, 71, 71, 259, 263, 71, 71, 71, 248, 260, 71, 258, 249, 273, 1170, 153, 252, 71, 250, 262, 254, 255, 256, 275, 261, 251, 71, 257, 265, 71, 71, 263, 266, 276, 274, 71, 260, 277, 258, 71, 273, 71, 71, 279, 71, 71, 262, 278, 2985, 267, 275, 261, 71, 2985, 71, 71, 71, 281, 2985, 266, 276, 274, 2985, 282, 277, 283, 2985, 297, 2985, 284, 287, 280, 2985, 2985, 278, 71, 267, 268, 71, 71, 71, 71, 269, 288, 281, 71, 285, 270, 2985, 286, 282, 2985, 283, 271, 272, 289, 284, 287, 280, 71, 71, 71, 294, 2985, 268, 71, 290, 296, 295, 269, 288, 291, 301, 285, 270, 71, 286, 71, 71, 298, 271, 272, 289, 292, 71, 293, 299, 303, 304, 294, 307, 2985, 71, 290, 296, 295, 302, 300, 291, 308, 309, 306, 305, 71, 71, 71, 298, 71, 310, 2985, 292, 311, 293, 2985, 315, 2985, 312, 317, 71, 71, 71, 71, 71, 302, 300, 318, 308, 314, 306, 305, 71, 71, 71, 319, 71, 71, 71, 316, 311, 71, 71, 315, 71, 312, 317, 320, 321, 326, 322, 323, 330, 333, 318, 2985, 314, 71, 71, 324, 71, 71, 319, 327, 325, 71, 316, 338, 329, 328, 339, 71, 71, 71, 320, 321, 326, 322, 323, 331, 332, 335, 334, 340, 71, 71, 336, 71, 71, 71, 327, 71, 71, 337, 338, 329, 328, 341, 342, 343, 347, 71, 71, 71, 344, 71, 331, 332, 335, 334, 345, 71, 349, 336, 71, 71, 350, 71, 352, 354, 337, 355, 71, 348, 341, 353, 343, 360, 2985, 71, 71, 344, 71, 351, 151, 356, 71, 345, 361, 358, 364, 71, 357, 350, 71, 352, 354, 71, 355, 71, 348, 359, 353, 362, 71, 71, 365, 363, 366, 71, 351, 71, 356, 368, 367, 371, 358, 369, 71, 357, 71, 71, 71, 71, 372, 71, 71, 373, 359, 71, 362, 374, 379, 365, 363, 366, 71, 370, 380, 71, 368, 367, 377, 71, 369, 378, 376, 71, 71, 383, 71, 372, 71, 381, 373, 71, 382, 71, 374, 379, 384, 385, 386, 388, 370, 380, 387, 71, 71, 377, 391, 71, 378, 376, 71, 393, 383, 71, 392, 71, 381, 389, 394, 382, 398, 2985, 2985, 397, 385, 71, 395, 71, 71, 387, 71, 71, 71, 391, 390, 71, 71, 71, 399, 408, 71, 392, 396, 71, 389, 394, 71, 398, 71, 400, 397, 401, 407, 395, 402, 2985, 403, 404, 71, 417, 410, 390, 71, 71, 409, 399, 71, 71, 405, 396, 2985, 71, 419, 423, 71, 71, 400, 71, 401, 407, 418, 402, 71, 403, 404, 406, 417, 410, 71, 71, 424, 409, 71, 425, 71, 405, 2985, 71, 2985, 419, 423, 420, 430, 421, 71, 2985, 428, 418, 71, 426, 427, 429, 406, 411, 436, 2985, 412, 424, 2985, 422, 425, 413, 414, 415, 416, 71, 71, 433, 420, 430, 421, 71, 431, 437, 71, 432, 426, 427, 71, 71, 411, 71, 71, 412, 438, 434, 422, 435, 413, 414, 415, 416, 439, 440, 433, 71, 2985, 445, 441, 431, 437, 442, 432, 71, 71, 71, 444, 2985, 451, 71, 71, 438, 434, 71, 435, 71, 443, 450, 71, 439, 440, 2985, 2985, 71, 446, 441, 447, 449, 442, 71, 452, 2985, 457, 444, 71, 448, 453, 462, 465, 71, 71, 463, 454, 443, 450, 71, 455, 2985, 456, 464, 71, 446, 71, 447, 449, 71, 466, 452, 71, 457, 2985, 458, 448, 453, 462, 71, 467, 71, 463, 454, 71, 555, 468, 455, 459, 456, 469, 460, 71, 461, 477, 71, 479, 466, 470, 71, 478, 71, 458, 481, 71, 2985, 71, 467, 71, 2985, 480, 484, 71, 468, 2985, 459, 71, 469, 460, 502, 461, 477, 71, 479, 71, 470, 471, 478, 472, 493, 481, 492, 500, 482, 494, 2985, 497, 480, 484, 495, 496, 473, 151, 71, 474, 2985, 475, 71, 476, 483, 71, 71, 71, 471, 498, 472, 493, 71, 492, 500, 482, 71, 71, 497, 523, 524, 71, 496, 473, 2985, 499, 474, 501, 475, 2985, 476, 483, 485, 486, 504, 71, 498, 71, 503, 71, 505, 71, 487, 509, 488, 489, 490, 506, 71, 491, 71, 508, 499, 71, 501, 71, 507, 71, 512, 485, 486, 504, 511, 2985, 514, 503, 519, 505, 510, 487, 509, 488, 489, 490, 71, 71, 491, 515, 508, 71, 71, 513, 517, 507, 516, 512, 518, 2985, 520, 511, 71, 71, 522, 71, 521, 510, 71, 71, 71, 71, 525, 526, 531, 71, 515, 71, 527, 71, 513, 517, 528, 516, 71, 518, 71, 520, 529, 71, 534, 522, 2985, 521, 535, 71, 532, 71, 536, 525, 526, 531, 71, 537, 543, 527, 530, 539, 547, 528, 71, 533, 559, 71, 71, 529, 71, 534, 538, 71, 71, 535, 71, 532, 540, 536, 544, 71, 546, 545, 537, 543, 551, 530, 539, 541, 549, 542, 533, 2985, 71, 548, 71, 550, 71, 538, 71, 71, 71, 553, 556, 540, 71, 544, 71, 546, 545, 71, 552, 551, 554, 560, 541, 549, 542, 71, 71, 557, 548, 558, 550, 561, 71, 562, 71, 71, 553, 556, 567, 71, 563, 71, 564, 71, 71, 552, 574, 554, 560, 565, 571, 570, 568, 71, 557, 71, 558, 566, 561, 71, 562, 569, 71, 572, 71, 567, 71, 563, 573, 564, 71, 575, 71, 574, 71, 71, 565, 571, 570, 568, 577, 576, 581, 71, 566, 579, 71, 71, 569, 578, 572, 580, 582, 71, 71, 573, 583, 71, 575, 584, 589, 71, 591, 71, 596, 2985, 71, 577, 576, 581, 71, 71, 579, 585, 71, 586, 578, 587, 580, 582, 588, 590, 71, 583, 71, 593, 584, 592, 71, 598, 2985, 596, 71, 71, 71, 599, 601, 597, 71, 71, 585, 71, 586, 594, 587, 602, 595, 588, 590, 71, 71, 600, 593, 604, 592, 607, 598, 605, 71, 609, 71, 71, 71, 601, 597, 608, 71, 71, 603, 606, 594, 610, 611, 595, 71, 614, 612, 71, 600, 71, 604, 71, 607, 71, 605, 613, 609, 71, 71, 71, 623, 2985, 608, 71, 71, 603, 606, 71, 610, 611, 625, 2985, 614, 612, 2985, 2985, 626, 624, 632, 656, 627, 2985, 613, 615, 71, 2985, 2985, 623, 616, 71, 617, 71, 640, 71, 631, 628, 618, 625, 619, 71, 71, 620, 621, 626, 624, 632, 71, 627, 622, 71, 615, 71, 629, 633, 634, 616, 630, 617, 71, 640, 635, 631, 628, 618, 71, 619, 637, 638, 620, 621, 636, 2985, 71, 641, 71, 622, 643, 71, 639, 629, 633, 634, 71, 630, 642, 649, 71, 2985, 650, 644, 647, 71, 71, 637, 638, 645, 646, 636, 71, 71, 641, 71, 71, 643, 648, 639, 71, 71, 71, 71, 71, 642, 649, 651, 652, 650, 644, 647, 653, 654, 655, 71, 645, 646, 658, 659, 71, 657, 668, 662, 663, 648, 661, 71, 667, 660, 71, 71, 71, 71, 651, 652, 71, 151, 71, 653, 654, 655, 71, 664, 665, 658, 659, 71, 657, 666, 662, 663, 669, 661, 71, 71, 660, 71, 670, 671, 672, 674, 673, 2985, 2985, 686, 684, 71, 71, 71, 664, 665, 675, 71, 71, 71, 666, 676, 681, 669, 680, 685, 683, 682, 71, 677, 671, 672, 674, 673, 71, 71, 678, 71, 71, 679, 71, 71, 687, 675, 688, 71, 689, 71, 676, 690, 691, 680, 71, 683, 71, 71, 677, 692, 695, 693, 2985, 694, 698, 678, 697, 696, 679, 71, 71, 71, 71, 71, 699, 700, 71, 701, 690, 691, 71, 71, 71, 702, 71, 2985, 692, 695, 693, 71, 694, 698, 71, 697, 696, 703, 704, 71, 705, 706, 71, 699, 707, 71, 701, 712, 2985, 71, 2985, 708, 702, 711, 714, 715, 709, 71, 713, 71, 710, 2985, 71, 71, 703, 704, 716, 71, 706, 718, 719, 707, 71, 71, 712, 71, 71, 71, 708, 71, 711, 714, 715, 709, 717, 713, 720, 710, 71, 726, 723, 2985, 721, 716, 724, 727, 71, 719, 725, 731, 71, 71, 732, 728, 71, 730, 71, 2985, 738, 2985, 71, 717, 71, 720, 722, 71, 726, 723, 71, 721, 71, 724, 727, 71, 729, 725, 731, 71, 733, 71, 728, 734, 730, 735, 736, 737, 739, 744, 71, 71, 71, 722, 740, 743, 71, 745, 71, 741, 742, 747, 71, 729, 71, 748, 71, 733, 749, 71, 734, 71, 735, 736, 737, 739, 744, 746, 71, 71, 752, 740, 743, 750, 745, 753, 751, 71, 71, 754, 71, 755, 748, 71, 756, 757, 758, 760, 759, 2985, 71, 767, 71, 71, 746, 71, 71, 71, 71, 761, 750, 763, 71, 751, 764, 71, 754, 2985, 755, 762, 765, 756, 757, 769, 760, 759, 71, 768, 71, 772, 773, 71, 71, 71, 71, 766, 761, 71, 763, 774, 776, 764, 71, 770, 71, 71, 762, 765, 771, 777, 769, 775, 778, 782, 768, 71, 772, 773, 71, 71, 779, 71, 766, 780, 71, 71, 774, 776, 783, 71, 781, 71, 785, 787, 784, 71, 777, 71, 775, 778, 788, 786, 71, 789, 71, 71, 791, 779, 71, 792, 780, 71, 71, 71, 790, 783, 793, 781, 71, 785, 787, 784, 71, 796, 794, 795, 71, 788, 786, 798, 789, 71, 71, 71, 802, 797, 792, 805, 71, 799, 71, 790, 71, 793, 71, 803, 71, 804, 71, 806, 796, 794, 795, 807, 800, 801, 798, 71, 71, 810, 71, 802, 797, 71, 805, 808, 799, 809, 813, 71, 71, 811, 803, 71, 804, 814, 806, 812, 71, 71, 807, 800, 801, 815, 816, 817, 810, 818, 71, 71, 820, 71, 808, 819, 809, 813, 71, 71, 811, 824, 823, 822, 814, 71, 812, 821, 71, 71, 71, 825, 815, 816, 817, 71, 818, 71, 826, 820, 71, 71, 819, 151, 827, 828, 831, 829, 824, 823, 822, 830, 71, 832, 821, 71, 835, 71, 825, 71, 833, 71, 837, 71, 71, 826, 836, 838, 834, 839, 71, 827, 828, 831, 829, 840, 71, 841, 830, 842, 71, 71, 843, 71, 71, 844, 71, 833, 845, 837, 2985, 71, 71, 836, 846, 834, 839, 867, 71, 71, 855, 847, 840, 848, 841, 71, 842, 71, 857, 843, 71, 849, 71, 856, 71, 845, 2985, 71, 71, 2985, 858, 846, 859, 71, 861, 860, 71, 855, 847, 71, 848, 862, 875, 71, 2985, 857, 864, 2985, 849, 850, 856, 71, 865, 851, 863, 71, 852, 858, 71, 859, 71, 861, 860, 853, 71, 71, 854, 71, 862, 875, 71, 71, 876, 864, 879, 866, 850, 2985, 71, 865, 851, 863, 71, 852, 878, 877, 71, 2985, 880, 2985, 853, 882, 2985, 854, 71, 883, 881, 885, 71, 876, 884, 879, 866, 868, 869, 2985, 870, 71, 886, 871, 889, 878, 877, 888, 872, 71, 71, 71, 882, 71, 873, 874, 883, 881, 885, 71, 71, 884, 887, 71, 868, 869, 71, 870, 890, 886, 871, 889, 71, 891, 888, 872, 71, 895, 892, 893, 894, 873, 874, 898, 71, 71, 896, 71, 897, 887, 902, 904, 903, 899, 2985, 890, 71, 900, 71, 71, 891, 71, 71, 71, 895, 892, 893, 894, 907, 71, 898, 901, 71, 896, 71, 897, 71, 908, 71, 903, 899, 905, 71, 909, 900, 910, 906, 911, 2985, 913, 71, 2985, 2985, 912, 915, 907, 916, 918, 901, 914, 2985, 2985, 922, 917, 925, 919, 71, 71, 920, 71, 71, 2985, 910, 71, 2985, 71, 913, 71, 71, 71, 912, 71, 71, 71, 918, 921, 914, 71, 71, 71, 917, 923, 919, 71, 924, 920, 71, 926, 927, 928, 929, 930, 2985, 937, 2985, 71, 931, 932, 938, 71, 933, 2985, 921, 71, 935, 2985, 71, 71, 923, 71, 939, 924, 71, 71, 926, 927, 928, 929, 930, 71, 71, 936, 71, 931, 932, 71, 934, 933, 71, 940, 941, 935, 942, 946, 947, 71, 71, 939, 71, 943, 2985, 71, 71, 944, 2985, 2985, 948, 949, 936, 950, 71, 945, 71, 934, 2985, 71, 940, 941, 71, 942, 946, 71, 955, 953, 951, 952, 943, 71, 71, 71, 944, 71, 71, 948, 949, 954, 950, 956, 945, 2985, 71, 71, 71, 957, 958, 960, 959, 961, 962, 955, 953, 951, 952, 71, 71, 964, 966, 965, 967, 963, 968, 2985, 954, 71, 956, 71, 71, 71, 71, 71, 957, 958, 969, 959, 961, 962, 970, 71, 71, 71, 71, 971, 964, 966, 965, 967, 963, 71, 71, 973, 972, 976, 974, 975, 71, 977, 71, 71, 71, 969, 979, 71, 978, 970, 980, 981, 982, 983, 971, 71, 990, 71, 2985, 984, 992, 71, 973, 972, 976, 974, 975, 71, 987, 71, 989, 994, 996, 71, 985, 978, 71, 980, 71, 988, 983, 991, 986, 71, 71, 71, 984, 992, 71, 71, 71, 995, 998, 993, 999, 987, 71, 989, 71, 71, 1000, 985, 997, 71, 1002, 71, 988, 71, 991, 986, 1001, 71, 71, 1005, 71, 2985, 1004, 1003, 995, 998, 993, 151, 71, 71, 1006, 1007, 1008, 1000, 71, 997, 71, 1002, 71, 71, 1009, 71, 1010, 1001, 1019, 71, 1005, 71, 71, 1004, 1003, 2985, 2985, 1017, 1018, 1020, 71, 1006, 1007, 1008, 1021, 1027, 71, 1022, 2985, 2985, 1028, 1009, 2985, 1010, 1011, 1019, 1012, 1023, 1025, 2985, 1013, 71, 1014, 71, 1017, 1018, 71, 1015, 1030, 71, 71, 1021, 1016, 1024, 1022, 1026, 1034, 71, 71, 1029, 71, 1011, 2985, 1012, 1023, 1025, 71, 1013, 71, 1014, 1038, 71, 71, 1031, 1015, 1030, 1035, 1032, 71, 1016, 1024, 1037, 1026, 1034, 1036, 71, 1029, 1033, 1039, 71, 71, 71, 1040, 1043, 71, 1041, 1044, 1038, 2985, 71, 1031, 71, 1045, 1035, 1032, 1055, 1046, 2985, 1037, 1058, 71, 1036, 2985, 1054, 1033, 71, 1057, 1056, 1060, 2985, 71, 2985, 71, 1044, 71, 71, 1066, 71, 71, 1045, 71, 71, 1055, 1046, 1047, 71, 1058, 71, 1061, 1048, 1054, 1049, 1059, 1057, 1056, 1060, 1062, 1050, 1063, 1064, 2985, 71, 1051, 1052, 71, 1065, 71, 1067, 71, 1053, 71, 1047, 1068, 1069, 71, 1061, 1048, 1070, 1049, 1059, 71, 1071, 1076, 1062, 1050, 1063, 71, 71, 71, 1051, 1052, 71, 1065, 1072, 1067, 1073, 1053, 1074, 2985, 1068, 1069, 71, 1078, 71, 1079, 1075, 1081, 1077, 1071, 71, 71, 1080, 1083, 71, 71, 71, 71, 1084, 71, 71, 1072, 1082, 1073, 1085, 1074, 71, 71, 71, 71, 1078, 1086, 1079, 1075, 1081, 1077, 71, 1087, 1088, 1080, 1083, 1090, 71, 2985, 1089, 1084, 1091, 71, 1092, 1082, 1093, 1085, 71, 71, 71, 71, 71, 1094, 1086, 1096, 1095, 1097, 2985, 71, 1087, 1101, 71, 1098, 1090, 1100, 71, 1089, 71, 1091, 1099, 1092, 1102, 1093, 2985, 1106, 1103, 71, 1107, 71, 1094, 2985, 1096, 1095, 1097, 71, 71, 71, 71, 1104, 1098, 71, 1100, 71, 1105, 1108, 1109, 1099, 1112, 1102, 1110, 71, 1106, 1103, 1111, 1107, 1113, 71, 1114, 71, 1115, 1116, 71, 71, 1117, 2985, 2985, 71, 71, 71, 1118, 71, 1108, 1109, 1120, 1112, 71, 1110, 1121, 1127, 1122, 1111, 1119, 1113, 71, 1124, 1123, 1115, 1125, 1126, 71, 1117, 71, 71, 71, 71, 71, 1118, 71, 1128, 1130, 1120, 71, 1129, 1131, 1121, 1127, 1122, 71, 1119, 71, 71, 1124, 1123, 71, 1125, 1126, 1132, 1135, 1133, 71, 71, 1134, 2985, 1136, 1137, 1128, 1130, 1139, 1140, 1129, 71, 1138, 1141, 71, 71, 71, 71, 1142, 1143, 71, 1144, 71, 1147, 71, 1135, 1133, 71, 1150, 1134, 71, 1136, 1137, 71, 1145, 1139, 1140, 1146, 1148, 1138, 1141, 1151, 1149, 71, 1152, 1162, 1163, 71, 1144, 71, 71, 71, 1153, 1155, 1154, 71, 71, 1158, 1156, 71, 71, 1145, 71, 71, 1146, 1148, 1157, 1159, 1151, 1149, 71, 71, 71, 71, 1160, 1161, 71, 71, 71, 1153, 1155, 1154, 71, 71, 1158, 1156, 1164, 1165, 1166, 71, 71, 1167, 1168, 1157, 1159, 1169, 1173, 1171, 71, 71, 1184, 1160, 1161, 1172, 71, 71, 71, 1176, 1175, 71, 71, 1179, 1182, 1164, 1165, 71, 71, 1178, 1167, 1168, 1177, 71, 1169, 1173, 1171, 1174, 71, 71, 1180, 71, 1172, 1181, 71, 71, 71, 1175, 1183, 1185, 1179, 71, 1186, 1187, 2985, 71, 1178, 1192, 1189, 1177, 1188, 71, 71, 1190, 1174, 1193, 1191, 1180, 2985, 71, 1181, 71, 1197, 71, 71, 1183, 71, 1194, 71, 1186, 1187, 71, 71, 1195, 1192, 1189, 1196, 1188, 71, 1198, 1190, 1199, 1193, 1191, 71, 71, 1200, 71, 1201, 71, 71, 2985, 71, 1207, 1194, 1202, 1203, 1209, 71, 1208, 1195, 1210, 71, 1196, 2985, 1204, 1198, 1205, 1199, 71, 1206, 1211, 1213, 1200, 71, 1201, 1212, 71, 71, 71, 1207, 71, 1202, 1203, 1209, 71, 1208, 1214, 1210, 1216, 71, 1217, 1204, 1215, 1205, 71, 1218, 1206, 1211, 1213, 1219, 71, 1220, 1212, 71, 1222, 1221, 71, 1223, 71, 2985, 71, 71, 1224, 1214, 2985, 1216, 1228, 1217, 1225, 1215, 1231, 1226, 1218, 71, 71, 1227, 71, 71, 1220, 71, 1230, 1222, 1221, 71, 1223, 71, 71, 71, 1229, 1224, 71, 1232, 71, 1228, 1234, 1225, 1233, 1231, 1226, 1235, 71, 1236, 1227, 71, 71, 1237, 71, 1230, 71, 1238, 1241, 1240, 1239, 1244, 1242, 1229, 71, 71, 1232, 71, 71, 1234, 71, 1233, 1243, 1245, 1235, 71, 1236, 71, 1246, 1261, 1237, 1252, 1315, 1250, 1238, 1265, 1240, 1239, 1244, 1242, 71, 71, 1247, 71, 1249, 71, 71, 1248, 1251, 1243, 1245, 1259, 71, 1280, 1260, 1246, 1262, 71, 1252, 71, 1250, 71, 71, 2985, 1263, 71, 1266, 71, 2985, 1264, 1267, 1249, 71, 1268, 71, 1251, 1253, 2985, 1259, 1254, 1255, 1260, 71, 1262, 1256, 71, 71, 71, 71, 1269, 1257, 1263, 71, 1266, 1258, 71, 1264, 1267, 71, 71, 1268, 1270, 1271, 1253, 1272, 1273, 1254, 1255, 1277, 1274, 1278, 1256, 71, 1276, 1281, 1275, 1269, 1257, 71, 2985, 71, 1258, 1282, 71, 1283, 1279, 71, 71, 1270, 1271, 71, 1272, 1273, 71, 71, 1277, 1274, 1278, 2985, 1289, 1276, 1291, 1275, 1293, 71, 1294, 71, 71, 2985, 1282, 1292, 1283, 1279, 1284, 71, 71, 1295, 71, 1285, 2985, 1286, 1305, 1287, 2985, 1288, 71, 1289, 2985, 1291, 1300, 1293, 71, 1294, 71, 71, 1299, 1296, 1292, 2985, 1298, 1284, 1297, 71, 1295, 71, 1285, 1301, 1286, 1304, 1287, 1302, 1288, 1303, 71, 1306, 1307, 1300, 71, 71, 1308, 71, 71, 1299, 1309, 71, 1310, 1298, 1312, 71, 1311, 1317, 1314, 71, 1301, 71, 1304, 71, 1302, 71, 1303, 71, 1306, 1307, 1316, 1318, 71, 1308, 71, 1319, 1313, 1309, 71, 1310, 71, 1312, 71, 1311, 71, 1314, 1320, 1321, 1322, 1323, 1325, 2985, 1326, 1324, 1330, 71, 71, 1316, 1318, 71, 71, 1327, 1319, 1313, 1328, 1329, 71, 2985, 71, 1332, 71, 71, 1335, 1320, 1321, 1322, 71, 71, 71, 1326, 1324, 71, 1331, 71, 1334, 1336, 1337, 1333, 1327, 71, 71, 1328, 1329, 71, 71, 71, 1332, 1338, 1340, 1335, 1341, 2985, 2985, 1339, 1342, 1348, 71, 1343, 1347, 1331, 71, 1334, 1336, 1337, 1333, 71, 1344, 71, 1345, 1346, 71, 71, 71, 71, 1338, 1340, 71, 1341, 1349, 71, 1339, 1342, 1348, 1350, 1343, 1347, 1351, 1352, 71, 1353, 1354, 71, 1362, 1344, 71, 1345, 1346, 71, 71, 1355, 1356, 1358, 1359, 1361, 1357, 1349, 1360, 71, 71, 71, 1350, 71, 1363, 71, 1364, 1365, 1353, 71, 71, 71, 71, 1370, 71, 1372, 71, 1369, 1355, 1356, 71, 1359, 1361, 1357, 1366, 1360, 71, 71, 1368, 1371, 1367, 2985, 71, 1364, 1377, 71, 71, 71, 71, 71, 1370, 71, 1372, 1373, 1369, 1374, 1376, 71, 1378, 1375, 71, 1366, 71, 1383, 2985, 1368, 1371, 1367, 71, 1379, 1381, 71, 71, 1380, 1384, 1382, 1385, 1387, 71, 2985, 1373, 71, 1374, 1376, 1386, 1378, 1375, 1392, 1394, 71, 1383, 71, 71, 2985, 1393, 71, 1379, 71, 2985, 1395, 1380, 1384, 71, 1385, 1387, 1388, 1390, 71, 1389, 1391, 1397, 1386, 71, 1396, 1392, 1398, 71, 71, 71, 1400, 71, 1393, 71, 1402, 1403, 1399, 1395, 1411, 71, 71, 1401, 71, 1388, 1390, 71, 1389, 1391, 1397, 1405, 71, 1396, 71, 1398, 1404, 1406, 71, 1400, 71, 1407, 1408, 1402, 1403, 1399, 71, 1409, 2985, 71, 1401, 1410, 71, 1413, 1415, 1412, 71, 2985, 1405, 71, 1414, 71, 2985, 1404, 1406, 71, 71, 71, 1407, 1408, 71, 1416, 1418, 71, 1409, 1419, 1417, 1421, 1410, 1420, 1413, 1415, 1412, 71, 71, 1423, 71, 1414, 1424, 1422, 1426, 1428, 1425, 1429, 71, 71, 71, 1432, 1416, 1418, 71, 71, 1419, 1417, 1421, 1427, 1420, 71, 1430, 2985, 1431, 71, 1423, 71, 2985, 1424, 1422, 1426, 1433, 1425, 1434, 1435, 1438, 71, 71, 71, 1436, 71, 1437, 1442, 71, 1439, 1427, 1441, 71, 1430, 71, 1431, 71, 71, 71, 71, 71, 1440, 2985, 1433, 1443, 1434, 1435, 1438, 71, 71, 71, 1436, 1444, 1437, 1442, 71, 1439, 71, 1441, 1445, 71, 1447, 1449, 1453, 1446, 1451, 1448, 1452, 1440, 71, 1450, 1443, 1455, 71, 1457, 71, 1454, 1456, 1458, 1444, 71, 71, 1461, 71, 71, 1459, 1460, 71, 1463, 1449, 1453, 71, 1451, 71, 1452, 2985, 71, 1450, 71, 1455, 1462, 1457, 1464, 1454, 1456, 1472, 2985, 71, 71, 71, 71, 1465, 1459, 1460, 71, 1463, 1466, 1467, 1468, 71, 1469, 1474, 1470, 1471, 71, 71, 71, 1462, 71, 1473, 1475, 71, 1472, 71, 71, 71, 71, 1476, 1465, 1477, 1478, 1480, 1479, 1466, 1467, 1468, 1485, 1469, 1474, 1470, 1471, 1490, 1484, 71, 71, 71, 1473, 71, 71, 71, 71, 1481, 71, 1486, 1476, 1482, 1477, 1478, 1480, 1479, 71, 1487, 1488, 1485, 71, 1489, 2985, 1491, 1483, 1484, 1492, 1493, 71, 71, 1496, 1499, 71, 1494, 1481, 71, 1486, 71, 1482, 1495, 71, 1500, 2985, 71, 1487, 71, 1497, 1503, 1489, 71, 1491, 1483, 1498, 1492, 1493, 71, 71, 1496, 1501, 71, 1494, 1504, 71, 71, 1502, 1505, 1495, 71, 71, 71, 71, 1506, 1507, 1497, 1503, 1509, 1508, 1512, 71, 1498, 2985, 1510, 1511, 1513, 1516, 1501, 1515, 71, 1504, 1514, 71, 1502, 71, 71, 2985, 1519, 71, 71, 1506, 71, 71, 71, 71, 1508, 1512, 1520, 1530, 71, 1510, 1511, 1513, 1516, 71, 1515, 1517, 1518, 1514, 71, 71, 1521, 71, 1522, 1519, 71, 1523, 1524, 1526, 71, 1525, 1527, 71, 1529, 1520, 71, 2985, 1528, 71, 1531, 71, 71, 1532, 1517, 1518, 71, 1533, 71, 1521, 71, 1522, 1535, 1536, 1523, 1524, 1526, 71, 1525, 1527, 71, 1529, 1538, 71, 1534, 1528, 1539, 1531, 71, 71, 1532, 2985, 1540, 71, 1533, 1537, 71, 1541, 1547, 1535, 1536, 71, 1544, 71, 71, 1546, 1542, 1543, 1550, 1538, 71, 1534, 2985, 71, 71, 71, 1545, 1551, 71, 1540, 71, 1548, 1537, 1549, 1541, 1547, 71, 1553, 71, 1544, 71, 71, 1546, 1542, 1543, 1550, 1554, 1555, 1552, 71, 1556, 1557, 2985, 1545, 1551, 71, 2985, 71, 1548, 1558, 1549, 1559, 71, 1560, 1553, 1564, 1561, 1562, 71, 1565, 2985, 71, 71, 1554, 1570, 1552, 1567, 1556, 1563, 71, 1569, 71, 2985, 71, 1566, 71, 1558, 71, 71, 71, 1560, 71, 1564, 1561, 1562, 71, 1565, 71, 1568, 1571, 71, 1570, 1572, 1567, 71, 1563, 1576, 1569, 1577, 71, 71, 1566, 1573, 1578, 71, 1574, 1580, 1582, 71, 1579, 1581, 1586, 2985, 1583, 2985, 1568, 1571, 1575, 2985, 1572, 71, 71, 1584, 2985, 1585, 1577, 71, 1588, 71, 1573, 1578, 71, 1574, 1580, 71, 71, 1579, 1581, 1587, 71, 1583, 71, 1592, 71, 1575, 1590, 1589, 1599, 71, 1584, 71, 1585, 1591, 71, 1588, 71, 1593, 1594, 1595, 71, 71, 1596, 2985, 1597, 1598, 1587, 71, 71, 1601, 1592, 1600, 1602, 1590, 1589, 71, 1603, 1613, 71, 71, 1591, 71, 1604, 71, 1605, 1606, 1595, 71, 1607, 71, 71, 1597, 1598, 71, 71, 71, 1601, 71, 1600, 1602, 71, 1608, 71, 1603, 71, 1611, 2985, 1609, 1615, 1604, 1610, 1605, 1606, 1612, 71, 1607, 1614, 71, 71, 71, 1616, 1621, 1620, 71, 1617, 1618, 1619, 2985, 2985, 71, 71, 71, 1611, 71, 1609, 1615, 71, 1610, 71, 71, 1612, 1623, 1622, 1614, 2985, 1626, 71, 1616, 1621, 1620, 1630, 1617, 1618, 1619, 71, 1624, 71, 1631, 1625, 1627, 1629, 71, 71, 1632, 1628, 1633, 1634, 2985, 1623, 1622, 1635, 71, 1626, 71, 71, 71, 1636, 1630, 1639, 1640, 71, 1637, 1624, 2985, 71, 1625, 1627, 1629, 1638, 1648, 71, 1628, 1633, 1634, 71, 71, 71, 1635, 1642, 1641, 71, 71, 1643, 71, 1644, 1639, 1640, 71, 1637, 71, 1645, 1649, 71, 1646, 1647, 1638, 1650, 1653, 1652, 1651, 71, 71, 2985, 71, 1654, 1642, 1641, 71, 71, 1643, 71, 1644, 71, 71, 1655, 71, 1658, 1645, 71, 1660, 1646, 1647, 1659, 1650, 1653, 1652, 1651, 1657, 1656, 71, 71, 1654, 1664, 71, 1661, 1665, 71, 71, 1662, 1666, 2985, 1655, 71, 1658, 1668, 1667, 1660, 1671, 71, 1659, 71, 71, 1663, 71, 1657, 1656, 71, 1672, 1669, 1664, 71, 1661, 1665, 1670, 71, 1662, 1666, 1674, 1673, 71, 1675, 1668, 1667, 71, 1671, 1678, 1676, 1677, 1679, 1663, 1680, 2985, 1689, 1683, 1672, 71, 1682, 1681, 1684, 71, 71, 1686, 1685, 71, 1674, 1673, 71, 1687, 1688, 2985, 71, 71, 71, 1676, 71, 1679, 71, 71, 71, 1689, 1683, 1711, 71, 1682, 1681, 71, 1692, 1690, 1686, 1685, 71, 1691, 1693, 1694, 1687, 71, 1696, 1695, 1700, 71, 71, 1698, 1697, 1701, 2985, 71, 1707, 71, 71, 71, 71, 71, 1702, 1692, 1690, 71, 1708, 1706, 1691, 1693, 1694, 71, 1699, 1696, 1695, 1703, 71, 1704, 71, 1697, 71, 71, 71, 1705, 1709, 71, 71, 1710, 71, 1702, 1712, 71, 1713, 1708, 1706, 71, 71, 71, 1714, 1699, 1715, 1716, 1703, 1717, 1704, 1718, 1719, 1720, 1721, 71, 1705, 1709, 2985, 1724, 1710, 71, 71, 1712, 71, 1713, 71, 71, 71, 71, 1722, 1714, 1726, 1715, 1716, 1723, 1717, 1725, 1718, 1719, 71, 1721, 1730, 71, 1731, 71, 71, 1729, 1727, 71, 71, 1728, 71, 1732, 1735, 71, 1733, 1722, 1734, 1726, 1736, 1737, 1723, 71, 1725, 71, 71, 1738, 71, 1730, 1740, 1741, 1739, 1744, 1729, 1727, 71, 1742, 1728, 71, 1732, 71, 1743, 1733, 71, 1734, 1745, 1736, 71, 71, 71, 1746, 71, 71, 1738, 1749, 71, 71, 71, 1739, 1744, 1747, 71, 1748, 1742, 1750, 1751, 71, 1752, 1743, 71, 1754, 71, 1745, 1753, 1757, 1758, 71, 1746, 1756, 71, 71, 1749, 71, 1755, 1759, 71, 71, 1747, 71, 1748, 1760, 1750, 1751, 1762, 1752, 71, 71, 1754, 1761, 1764, 1753, 1757, 71, 1767, 71, 1756, 71, 1763, 1768, 1765, 1755, 1766, 1769, 1771, 71, 1772, 71, 1760, 1775, 1777, 1762, 1770, 71, 1776, 71, 1761, 1764, 1773, 71, 71, 1767, 1774, 1778, 71, 1763, 71, 1765, 71, 1766, 71, 71, 71, 1772, 1779, 1780, 71, 71, 1781, 1770, 1783, 1776, 71, 1786, 71, 1773, 1782, 71, 71, 1774, 1778, 1784, 2985, 1785, 1787, 1788, 1789, 1793, 1791, 1801, 2985, 1790, 1780, 1795, 71, 71, 71, 1783, 1796, 71, 71, 1798, 2985, 1782, 1797, 71, 1799, 1792, 71, 71, 1785, 1787, 1788, 1789, 71, 1791, 1794, 71, 1790, 71, 1800, 71, 71, 71, 1802, 71, 71, 1805, 1798, 1803, 1811, 1797, 71, 1799, 1792, 1804, 71, 1806, 71, 1807, 1813, 71, 71, 1794, 1809, 1808, 1812, 1800, 1810, 71, 1815, 1802, 71, 71, 71, 1818, 1803, 71, 1814, 1819, 71, 1816, 1804, 1817, 1806, 71, 1807, 71, 71, 71, 1820, 1809, 1808, 1812, 71, 1810, 71, 1815, 1822, 71, 1821, 1823, 1824, 71, 1825, 1814, 71, 71, 1816, 1827, 1817, 1828, 71, 1826, 71, 1829, 1830, 1820, 71, 71, 71, 1831, 1832, 71, 1833, 1822, 1834, 1821, 1823, 1824, 71, 1825, 1836, 71, 1838, 1835, 1827, 1837, 1828, 1840, 1826, 71, 71, 1830, 71, 1839, 1841, 71, 1831, 1843, 71, 1842, 71, 71, 71, 71, 71, 71, 1844, 1836, 71, 1838, 1835, 71, 1837, 1846, 1840, 1845, 1847, 1852, 1854, 1851, 1839, 1841, 71, 71, 1843, 71, 1842, 1849, 1850, 1853, 71, 2985, 1848, 71, 71, 1856, 1859, 71, 71, 71, 1846, 71, 1845, 1847, 71, 1854, 1851, 1857, 1858, 1855, 1860, 1863, 1865, 2985, 1849, 1850, 1853, 71, 71, 1848, 1867, 1864, 1856, 71, 1861, 71, 71, 71, 71, 1862, 1870, 1872, 1871, 71, 1857, 1858, 1855, 1860, 71, 1865, 71, 1866, 71, 1868, 71, 1869, 1873, 1867, 1864, 71, 71, 1861, 71, 71, 1874, 1875, 1862, 1876, 1872, 1871, 1877, 1880, 71, 1881, 1879, 1878, 1884, 1885, 1866, 1882, 1868, 71, 1869, 71, 1883, 71, 71, 1889, 71, 1888, 71, 1874, 1875, 1887, 1876, 1886, 71, 1877, 71, 1890, 71, 1879, 1878, 1892, 71, 1891, 1894, 1896, 71, 71, 1893, 71, 71, 1906, 71, 71, 1888, 1901, 71, 71, 1887, 1897, 1886, 1899, 1895, 1898, 1890, 1900, 71, 71, 1892, 71, 1891, 1902, 1903, 1904, 71, 1893, 71, 71, 71, 71, 1907, 1908, 1901, 71, 1905, 1909, 1897, 71, 1899, 1895, 1898, 71, 1900, 1911, 1912, 1910, 1918, 71, 1902, 71, 71, 71, 1913, 71, 1914, 1917, 71, 1907, 1908, 1915, 1916, 1905, 1909, 71, 2985, 71, 1919, 71, 71, 1920, 1911, 1912, 1910, 71, 71, 71, 1921, 71, 1922, 1913, 71, 1914, 1917, 1923, 71, 1925, 1915, 1916, 1924, 1926, 71, 71, 1928, 1919, 71, 1927, 1920, 71, 71, 1929, 1930, 1941, 1933, 1921, 2985, 71, 71, 1934, 2985, 1931, 1923, 71, 1925, 71, 71, 1924, 1926, 1935, 71, 1928, 1932, 1936, 1927, 1937, 1938, 71, 1940, 1930, 71, 1933, 71, 71, 1939, 1942, 1934, 71, 1931, 1945, 71, 71, 71, 1943, 1946, 71, 1935, 1944, 1947, 1932, 1936, 71, 1937, 1938, 71, 1940, 71, 71, 71, 71, 1949, 1939, 1942, 1948, 1950, 1951, 1945, 1955, 2985, 1952, 1943, 1946, 1954, 71, 1944, 1953, 2985, 1957, 2985, 71, 71, 1967, 1956, 71, 1961, 71, 71, 1949, 71, 71, 1948, 1950, 71, 71, 1955, 71, 1952, 1958, 1959, 1954, 71, 1960, 1953, 1962, 1957, 1963, 1966, 1965, 71, 1956, 1968, 1961, 71, 71, 71, 71, 71, 1970, 1964, 71, 1969, 71, 1994, 1974, 1958, 1959, 71, 71, 1960, 1971, 1962, 1972, 1963, 1966, 1965, 1973, 2985, 1968, 71, 1976, 1975, 71, 1978, 1977, 1970, 1964, 1979, 1969, 71, 71, 1974, 71, 1982, 1980, 71, 71, 1971, 71, 1972, 1981, 71, 71, 1973, 71, 1983, 1984, 1976, 1975, 1985, 1978, 1977, 71, 71, 1979, 71, 1986, 1988, 71, 1990, 1982, 1980, 71, 1987, 71, 1991, 1989, 1981, 1992, 2985, 1997, 71, 1983, 1984, 1995, 1993, 1985, 71, 2000, 71, 1996, 71, 71, 71, 1988, 2004, 1990, 71, 2001, 71, 1987, 71, 1991, 1989, 71, 1992, 71, 1997, 1998, 1999, 2005, 1995, 1993, 2003, 2002, 71, 71, 1996, 2006, 2009, 71, 2011, 71, 2007, 71, 2001, 71, 71, 2012, 2010, 2014, 2008, 71, 2013, 2985, 1998, 1999, 2005, 2018, 2985, 2003, 2002, 71, 71, 71, 2006, 71, 71, 2011, 2022, 2007, 71, 71, 2015, 71, 2012, 2010, 2014, 2008, 2023, 2013, 2016, 71, 71, 2017, 2018, 2019, 71, 2020, 2024, 2025, 2027, 71, 2021, 71, 2028, 2022, 2026, 2030, 71, 2015, 2031, 71, 2029, 71, 71, 2023, 2985, 2016, 2050, 71, 2017, 71, 2019, 2032, 2033, 2024, 2025, 2027, 71, 71, 71, 2028, 71, 2026, 71, 71, 2034, 2031, 2036, 2029, 2035, 2037, 2039, 2041, 2040, 71, 2985, 2038, 2046, 71, 2032, 2033, 71, 71, 71, 2044, 71, 2052, 2045, 2042, 71, 71, 71, 2034, 71, 2036, 71, 2035, 2037, 2039, 2041, 2040, 2043, 2049, 2038, 2046, 71, 2048, 2047, 71, 71, 2053, 2044, 2051, 71, 2045, 2042, 71, 2054, 71, 2055, 71, 2056, 2057, 2059, 2060, 2061, 2062, 2058, 2043, 2049, 71, 2063, 2064, 2048, 2047, 71, 2065, 2053, 71, 2051, 71, 71, 2068, 2069, 2054, 71, 2055, 2070, 2056, 71, 2066, 2071, 2061, 2062, 71, 71, 71, 2073, 2063, 71, 71, 2067, 71, 2065, 2074, 2076, 71, 2072, 2077, 2068, 71, 2075, 2078, 71, 2070, 2985, 71, 2066, 2071, 2079, 2080, 2082, 2081, 71, 2985, 2089, 71, 71, 2067, 71, 71, 2074, 71, 2083, 2072, 2077, 2084, 71, 2075, 2085, 71, 2087, 71, 2086, 71, 71, 2079, 2080, 2082, 2081, 71, 71, 71, 2088, 2090, 71, 2092, 2091, 2093, 71, 2083, 2094, 2099, 2084, 71, 71, 2085, 2095, 2087, 71, 2086, 2096, 2097, 2098, 2985, 71, 71, 71, 71, 2985, 2088, 2090, 71, 2092, 2091, 2093, 71, 2100, 2094, 71, 2110, 2985, 2985, 71, 2095, 2101, 2102, 2103, 2096, 2097, 2098, 71, 2104, 71, 71, 71, 71, 2105, 2109, 2111, 2106, 2107, 2108, 2112, 2100, 71, 71, 71, 71, 2113, 71, 2115, 2101, 2102, 2103, 2116, 71, 71, 2114, 2104, 2117, 2118, 71, 71, 2105, 2109, 2111, 2106, 2107, 2108, 2112, 2120, 71, 71, 2123, 2119, 2113, 71, 2115, 2126, 2128, 2121, 71, 2124, 2122, 2114, 71, 71, 2118, 71, 2125, 2129, 2130, 2127, 2132, 71, 2131, 71, 2120, 71, 71, 71, 2119, 2134, 71, 71, 2126, 2128, 2121, 2136, 2124, 2122, 71, 2133, 2135, 2137, 2138, 2125, 71, 71, 2127, 71, 71, 2131, 2139, 2141, 71, 2140, 2143, 2144, 71, 71, 2146, 2152, 2149, 2147, 2136, 71, 71, 2142, 2133, 2135, 71, 71, 71, 71, 2148, 71, 2150, 2145, 71, 2139, 2141, 2154, 2140, 2143, 71, 71, 71, 71, 71, 2149, 2147, 2151, 2153, 71, 2142, 71, 2156, 2155, 2159, 2157, 71, 2148, 71, 2150, 2145, 71, 71, 2158, 2154, 2160, 71, 71, 2161, 2162, 2165, 2163, 2164, 2167, 2151, 2153, 2168, 71, 2166, 71, 2155, 2159, 2157, 71, 71, 71, 2171, 71, 71, 71, 2158, 2172, 2160, 71, 2173, 71, 2162, 71, 2163, 2164, 2167, 2169, 2170, 2168, 2985, 2166, 2174, 2178, 2175, 2985, 71, 71, 71, 2171, 2179, 2180, 2182, 71, 2172, 2185, 71, 2173, 71, 2176, 2181, 2177, 71, 2184, 2169, 2170, 71, 71, 71, 2174, 2178, 2175, 71, 71, 2183, 2186, 2187, 2179, 2180, 2182, 71, 2188, 2185, 2189, 2192, 71, 2176, 2181, 2177, 2190, 2184, 2191, 2193, 71, 2194, 71, 71, 71, 71, 2195, 2196, 2183, 2186, 2187, 2197, 2201, 71, 2198, 2188, 2202, 2199, 2192, 2200, 71, 71, 71, 2190, 2203, 71, 2193, 2204, 2194, 71, 71, 71, 71, 2195, 2196, 71, 2205, 71, 2197, 2201, 2206, 2198, 2207, 71, 2199, 2208, 2200, 2209, 71, 2213, 71, 2214, 2215, 2216, 2204, 2210, 71, 2211, 71, 2212, 71, 2985, 71, 2205, 71, 71, 2218, 2206, 71, 2207, 2217, 2222, 2219, 71, 2209, 2220, 2213, 71, 2214, 71, 2216, 71, 2210, 71, 2211, 2221, 2212, 71, 71, 2223, 2225, 2226, 2228, 2218, 2224, 71, 2227, 2217, 2222, 2219, 71, 71, 2220, 2229, 2230, 71, 2231, 2232, 2233, 2985, 2235, 71, 2221, 2985, 2236, 2234, 2223, 2225, 71, 71, 2237, 2224, 71, 2227, 2238, 2240, 71, 71, 71, 71, 2229, 2230, 71, 71, 2239, 71, 71, 2235, 71, 71, 2241, 2236, 2234, 2242, 2243, 2244, 2245, 2237, 71, 2247, 2985, 2238, 2240, 71, 2246, 2248, 2249, 2253, 2250, 2256, 71, 2239, 2261, 71, 71, 71, 71, 2241, 2251, 71, 71, 2243, 2244, 2245, 2252, 71, 71, 71, 71, 2254, 71, 2246, 2248, 2249, 2253, 2250, 71, 71, 2255, 2258, 2257, 71, 2259, 2262, 71, 2251, 2260, 2263, 71, 2265, 2264, 2252, 2985, 71, 2266, 2272, 2254, 2267, 71, 2268, 71, 71, 71, 71, 2269, 2255, 2258, 2257, 71, 2259, 2262, 2270, 71, 2260, 2263, 71, 2265, 2264, 71, 2271, 2273, 2266, 71, 2274, 2267, 71, 2268, 71, 2275, 2276, 2277, 2269, 2278, 2282, 71, 2279, 71, 71, 71, 2280, 2985, 71, 71, 71, 2283, 2281, 2271, 2273, 2284, 2285, 71, 2288, 2286, 2985, 71, 2275, 2276, 2277, 2291, 2278, 71, 71, 2279, 71, 2287, 2296, 2280, 71, 2290, 71, 2292, 71, 2281, 71, 2289, 71, 2285, 2293, 2288, 2286, 71, 2294, 71, 71, 2295, 71, 2297, 2300, 71, 2298, 71, 2287, 71, 2299, 71, 2290, 71, 2292, 71, 2301, 2303, 2289, 2304, 2302, 2985, 2985, 2305, 2308, 2294, 71, 2306, 2295, 71, 2297, 71, 2307, 2298, 2309, 71, 71, 2299, 71, 71, 71, 71, 2310, 2301, 2303, 71, 2304, 2302, 71, 71, 2305, 2308, 2311, 2312, 2306, 2313, 71, 2314, 2315, 2307, 2316, 2309, 2317, 2321, 2318, 2985, 2319, 2985, 2320, 2310, 2323, 71, 2324, 2322, 71, 71, 2325, 71, 71, 2311, 71, 2327, 71, 71, 71, 71, 71, 2316, 71, 2317, 2321, 2318, 71, 2319, 71, 2320, 2326, 2323, 2328, 2324, 2322, 2329, 2331, 71, 71, 2330, 2332, 2333, 71, 2334, 2337, 2335, 2336, 2985, 71, 2985, 2341, 71, 71, 71, 71, 71, 71, 2326, 2338, 71, 2339, 71, 2329, 2331, 71, 71, 2330, 2332, 2333, 2343, 2334, 71, 2335, 2336, 2340, 2342, 71, 2341, 71, 2344, 2345, 71, 71, 2346, 2348, 2338, 2349, 2339, 2347, 2985, 2350, 71, 2351, 71, 71, 71, 2343, 2355, 71, 2352, 71, 2340, 2342, 2353, 2985, 71, 2344, 2345, 2356, 2354, 2346, 2348, 71, 2349, 2357, 2347, 71, 2350, 2358, 2351, 2359, 2361, 2363, 2360, 71, 71, 2352, 2985, 2365, 71, 2353, 71, 71, 71, 2362, 71, 2354, 71, 2367, 2371, 71, 2357, 71, 2364, 71, 2358, 71, 2359, 2361, 2363, 2360, 2366, 71, 2368, 2369, 2365, 71, 2370, 71, 2372, 71, 2362, 2374, 71, 71, 2367, 71, 2373, 2376, 2375, 2364, 2379, 2985, 2377, 2985, 2985, 2385, 2387, 2366, 2378, 2368, 2369, 71, 71, 2370, 71, 2372, 71, 71, 71, 2380, 71, 2381, 2383, 2373, 71, 2375, 2384, 2379, 2382, 2377, 71, 71, 71, 71, 71, 2378, 2386, 71, 71, 2389, 2391, 2388, 2396, 2394, 2390, 2398, 2380, 2392, 2381, 2383, 71, 71, 71, 2384, 71, 2382, 2395, 2393, 2985, 2985, 2397, 2400, 71, 71, 71, 71, 2389, 2391, 2388, 71, 2394, 2390, 71, 2403, 2392, 2404, 2402, 2409, 2399, 71, 71, 71, 2401, 2395, 2393, 71, 71, 2397, 2400, 2405, 71, 71, 2407, 2406, 2408, 2410, 71, 71, 2412, 71, 2403, 71, 2404, 2402, 71, 2399, 2411, 71, 2413, 2401, 2416, 2414, 2417, 2415, 2420, 71, 2405, 2418, 71, 2407, 2406, 2408, 2410, 71, 71, 71, 71, 2419, 2421, 2422, 2423, 71, 2424, 2411, 71, 2413, 71, 71, 2414, 2417, 2415, 71, 2425, 71, 2418, 2426, 2427, 71, 2428, 2429, 71, 2431, 2430, 71, 2419, 2421, 2422, 2423, 2432, 71, 71, 2434, 2985, 2435, 2437, 2433, 71, 71, 71, 2425, 71, 2438, 71, 2427, 2439, 2428, 2429, 71, 71, 2430, 2436, 2440, 71, 2441, 71, 2432, 2444, 2442, 71, 71, 2435, 2437, 2433, 71, 71, 2443, 2445, 2446, 2438, 71, 2449, 71, 2448, 2447, 2451, 2454, 2985, 2436, 2440, 71, 71, 71, 2452, 2444, 2442, 2455, 71, 71, 71, 71, 71, 2450, 2443, 2445, 2446, 2453, 71, 2449, 2460, 2448, 2447, 2451, 71, 71, 71, 2456, 2457, 71, 2458, 2452, 2459, 2463, 71, 2462, 2461, 2985, 2465, 71, 2450, 71, 2464, 2466, 2453, 71, 2468, 71, 2469, 2472, 71, 2470, 71, 2467, 2456, 2457, 2471, 2458, 71, 2459, 2463, 71, 2462, 2461, 71, 71, 2473, 71, 2474, 2464, 71, 71, 71, 71, 2475, 2469, 2472, 2476, 2477, 2478, 2467, 2985, 2985, 71, 2479, 2480, 2482, 2481, 71, 2985, 2985, 71, 2483, 2473, 2484, 2485, 71, 71, 2486, 71, 71, 2475, 71, 71, 2476, 2477, 2478, 71, 71, 71, 2489, 2479, 2480, 2482, 2481, 2487, 71, 71, 2488, 2483, 71, 2484, 2485, 2490, 71, 2486, 2491, 2493, 71, 2492, 2496, 2494, 71, 2498, 2499, 71, 2495, 2489, 71, 2500, 2497, 71, 2487, 2985, 71, 2488, 71, 71, 71, 2505, 2490, 71, 71, 2491, 2493, 2504, 2492, 71, 2494, 2502, 2498, 2499, 2501, 2495, 2507, 2503, 71, 2497, 2510, 2508, 71, 71, 71, 2506, 2509, 71, 71, 2514, 71, 2985, 2511, 2512, 2504, 2985, 2513, 2516, 2502, 2515, 2519, 2501, 2518, 71, 2503, 2517, 2520, 71, 71, 2521, 71, 71, 2506, 71, 71, 71, 2514, 71, 71, 2511, 2512, 2522, 71, 2513, 2516, 2523, 2515, 71, 71, 2518, 2524, 2525, 2517, 71, 2526, 2527, 71, 2528, 71, 2530, 2985, 2531, 2529, 2532, 71, 2533, 71, 71, 2522, 2534, 71, 2535, 2523, 2537, 2536, 2538, 71, 71, 2525, 2539, 71, 2526, 2527, 71, 2540, 71, 2530, 71, 2531, 71, 71, 2541, 71, 71, 2542, 2543, 2534, 2545, 2535, 2544, 2537, 2536, 71, 71, 2546, 71, 2539, 2547, 71, 71, 71, 71, 2548, 2551, 2549, 2557, 2552, 71, 2541, 2550, 2553, 71, 2543, 71, 2545, 2555, 2544, 71, 2554, 2556, 2985, 71, 2558, 2560, 71, 71, 71, 2561, 71, 2548, 2551, 2559, 2557, 2552, 2567, 2563, 71, 2553, 2562, 71, 71, 2566, 71, 71, 2570, 2554, 2556, 71, 2568, 71, 2560, 71, 2576, 71, 2561, 71, 2564, 2565, 2559, 71, 2569, 2567, 2563, 71, 2571, 2562, 71, 2572, 2566, 2573, 2575, 71, 71, 71, 2574, 2568, 2577, 2581, 71, 71, 2578, 2985, 2579, 2564, 2565, 2580, 71, 2569, 71, 2583, 2985, 2571, 2582, 2586, 2572, 2585, 71, 2575, 2584, 71, 71, 71, 71, 2577, 2581, 2588, 71, 2578, 71, 2579, 2587, 71, 2580, 71, 71, 2589, 2583, 71, 2590, 2582, 2586, 2591, 2585, 2592, 2593, 2584, 2595, 71, 2596, 2597, 2594, 2598, 71, 2600, 2985, 2599, 2601, 2587, 2985, 71, 2985, 2609, 2589, 71, 71, 2590, 71, 71, 71, 71, 2592, 71, 71, 71, 2602, 2596, 2597, 2594, 2598, 71, 71, 2603, 2599, 2601, 2604, 2606, 2607, 2608, 71, 2605, 2610, 2613, 71, 71, 2611, 2612, 2615, 71, 2985, 71, 71, 2602, 2614, 2616, 71, 71, 2617, 71, 2603, 71, 2619, 71, 2606, 2607, 2608, 2636, 71, 71, 2613, 2618, 71, 2611, 2612, 2615, 71, 2620, 71, 2622, 2621, 2614, 2616, 2623, 2625, 2617, 71, 2624, 2629, 2630, 2626, 2631, 71, 2627, 71, 2985, 2628, 2985, 2618, 71, 2634, 71, 71, 2632, 2620, 71, 2622, 2621, 71, 2635, 2623, 2625, 71, 71, 2624, 71, 71, 2626, 71, 71, 2627, 71, 2633, 2628, 2637, 2638, 2639, 2634, 2640, 71, 2632, 71, 2641, 2643, 2642, 2644, 2635, 71, 71, 2645, 2985, 71, 71, 2646, 2650, 2648, 71, 71, 2985, 2633, 2647, 2637, 2638, 71, 2651, 2640, 71, 71, 71, 2641, 2643, 2642, 2649, 2653, 2652, 2654, 2645, 71, 71, 71, 71, 71, 2648, 2655, 2656, 2657, 2658, 2647, 71, 2659, 71, 2651, 71, 71, 71, 2660, 71, 2661, 2662, 2649, 2653, 2652, 2654, 2663, 71, 71, 2665, 2666, 71, 2664, 2655, 2656, 2657, 2658, 2985, 71, 2659, 2667, 71, 2669, 2668, 2670, 71, 2672, 2661, 71, 2674, 71, 71, 2673, 71, 71, 2671, 71, 2666, 2676, 2664, 71, 2675, 71, 2678, 71, 2677, 2681, 2667, 2985, 2669, 2668, 71, 71, 2672, 71, 71, 2674, 2679, 2680, 2673, 2682, 2684, 2671, 71, 2683, 71, 2686, 2689, 2675, 2688, 2690, 71, 2677, 71, 2687, 71, 71, 2693, 71, 71, 2685, 2694, 71, 2691, 2679, 2680, 2695, 71, 71, 2699, 2700, 2683, 71, 2686, 2696, 2692, 2688, 2690, 71, 71, 2698, 2687, 71, 2701, 71, 71, 2702, 2685, 2694, 71, 2691, 2697, 71, 2695, 71, 71, 71, 2700, 71, 2703, 2704, 2696, 2692, 2705, 2706, 2709, 2707, 2708, 2710, 2985, 2712, 71, 71, 2702, 2713, 71, 71, 2711, 2697, 2714, 2715, 71, 71, 2717, 2985, 71, 2703, 2704, 71, 2718, 2705, 2719, 71, 2707, 2708, 71, 71, 2712, 2716, 2720, 2721, 71, 71, 2722, 2711, 71, 71, 2715, 2724, 2723, 2717, 71, 2727, 71, 2725, 2726, 71, 71, 71, 71, 71, 2728, 71, 2732, 2729, 2716, 71, 2721, 2731, 2733, 71, 2736, 2737, 2730, 2985, 2724, 2723, 71, 71, 2727, 71, 2725, 2726, 2738, 2739, 2734, 71, 2741, 71, 2735, 71, 2729, 71, 71, 2740, 2731, 2743, 71, 2736, 71, 2730, 71, 2742, 2744, 2745, 2748, 71, 71, 2985, 2749, 71, 2739, 2734, 2746, 2750, 71, 2735, 71, 2747, 71, 71, 2740, 2756, 2743, 71, 71, 71, 71, 2751, 2742, 71, 2745, 2748, 71, 2752, 71, 2749, 2753, 2763, 2754, 2746, 2750, 71, 2755, 71, 2747, 71, 71, 2759, 2756, 2757, 2758, 71, 2762, 71, 2751, 2761, 2760, 2764, 2765, 71, 2752, 2766, 71, 2753, 71, 2754, 71, 2767, 2774, 2755, 2768, 2769, 2770, 2771, 2759, 2775, 2757, 2758, 71, 2762, 2776, 71, 2761, 2760, 71, 2765, 2772, 2773, 71, 71, 2777, 71, 2780, 2778, 71, 2774, 2781, 2779, 2783, 71, 71, 71, 71, 71, 71, 2784, 2782, 2776, 71, 2785, 2786, 2788, 2787, 2790, 71, 71, 2789, 2777, 71, 2780, 2778, 71, 71, 71, 2779, 2783, 2791, 71, 71, 71, 2793, 2798, 2784, 2782, 2792, 2985, 2785, 2786, 2788, 2787, 71, 2794, 71, 2789, 2795, 2796, 71, 2799, 2800, 71, 2797, 2802, 71, 71, 2803, 2805, 2801, 2793, 2804, 71, 71, 2792, 71, 71, 2806, 2807, 71, 2808, 2794, 2809, 2810, 2795, 2811, 71, 2799, 2800, 71, 71, 2802, 2812, 2813, 2803, 71, 2801, 2814, 2804, 71, 2815, 2816, 2818, 2817, 2806, 71, 2819, 71, 2820, 71, 71, 2821, 71, 71, 2822, 2827, 71, 71, 71, 71, 71, 71, 2823, 2829, 71, 2824, 71, 2815, 71, 2818, 2817, 2825, 2826, 2819, 2828, 2820, 71, 2831, 71, 2832, 71, 2822, 71, 71, 71, 2830, 71, 71, 71, 2823, 2829, 2833, 2824, 2834, 2835, 2836, 2838, 71, 2825, 2826, 2837, 2828, 2839, 71, 2831, 71, 2832, 71, 71, 2841, 2842, 2843, 2830, 71, 2840, 71, 2844, 71, 2833, 2845, 2881, 2835, 2836, 2838, 71, 71, 71, 2837, 2846, 2839, 2847, 2848, 71, 71, 2850, 2849, 2841, 2842, 71, 2854, 2851, 2840, 71, 71, 71, 2985, 71, 71, 71, 2852, 2853, 2855, 71, 2856, 71, 2846, 2857, 2847, 2848, 2985, 2858, 2850, 2849, 71, 71, 71, 2854, 2851, 71, 2861, 71, 71, 71, 2859, 2860, 2865, 2852, 2853, 2855, 71, 2856, 2862, 71, 2857, 2863, 71, 2866, 2858, 2864, 2868, 71, 2867, 2869, 71, 2870, 71, 2861, 71, 71, 71, 2859, 2860, 2865, 2871, 2872, 2873, 2874, 2879, 2862, 71, 71, 2863, 2876, 2866, 71, 2864, 71, 2875, 2867, 2869, 2877, 71, 2882, 2878, 71, 2880, 2884, 2887, 2885, 71, 2871, 71, 71, 2874, 2879, 71, 71, 71, 2886, 2876, 71, 2883, 71, 2890, 2875, 71, 71, 2877, 71, 2882, 2878, 2888, 2880, 71, 71, 2885, 2891, 2889, 2892, 2893, 2894, 2895, 2896, 71, 2898, 2886, 71, 71, 2883, 2899, 71, 2903, 71, 2897, 2900, 71, 2985, 71, 2888, 2917, 71, 2901, 71, 2891, 2889, 2892, 2893, 71, 71, 2896, 2902, 2898, 71, 71, 71, 2904, 71, 2905, 2903, 2906, 2897, 2900, 71, 71, 2907, 2909, 2908, 71, 2901, 2985, 2915, 71, 2910, 71, 2911, 2985, 2912, 2902, 71, 71, 71, 2913, 2904, 71, 2905, 2916, 2906, 2914, 2985, 2918, 71, 2907, 2909, 2908, 71, 71, 71, 71, 2919, 2910, 2920, 2911, 2921, 2912, 2923, 2922, 2924, 71, 2913, 2985, 2926, 2927, 2916, 71, 2914, 71, 2918, 2925, 2928, 2932, 71, 2929, 71, 2930, 71, 2919, 71, 2920, 2934, 2921, 2935, 71, 2922, 71, 71, 2931, 71, 71, 2927, 71, 2936, 71, 71, 71, 2925, 2928, 2933, 2939, 2929, 2985, 2930, 71, 2940, 2944, 71, 2934, 71, 2935, 2937, 2985, 71, 2938, 2931, 2941, 2942, 2985, 2943, 71, 2945, 71, 2947, 71, 2949, 2933, 2939, 71, 71, 2950, 71, 2940, 2944, 2948, 71, 2946, 71, 2937, 2952, 2951, 2938, 71, 2941, 2942, 71, 2943, 2953, 2945, 71, 2947, 71, 2949, 2954, 2955, 71, 71, 2950, 2956, 71, 2957, 2948, 71, 2946, 2958, 2960, 2952, 2951, 2959, 2962, 2963, 2961, 2965, 71, 2953, 2970, 71, 71, 2964, 2966, 71, 2955, 2967, 71, 71, 2956, 71, 71, 71, 2969, 71, 2958, 2960, 71, 71, 2959, 2962, 71, 2961, 2965, 2968, 71, 71, 2971, 2972, 2964, 2966, 2973, 71, 2967, 2974, 71, 71, 2976, 2977, 71, 2969, 2981, 2975, 2978, 2979, 2980, 2983, 2984, 2982, 71, 2985, 2968, 2985, 2985, 2971, 2972, 71, 71, 2973, 2985, 2985, 71, 71, 71, 71, 71, 71, 71, 2981, 2975, 2978, 2979, 2980, 71, 71, 2982, 43, 43, 43, 43, 43, 43, 43, 48, 48, 48, 48, 48, 48, 48, 53, 53, 53, 53, 53, 53, 53, 59, 59, 59, 59, 59, 59, 59, 64, 64, 64, 64, 64, 64, 64, 74, 74, 2985, 74, 74, 74, 74, 141, 141, 2985, 2985, 2985, 141, 141, 143, 143, 2985, 2985, 143, 2985, 143, 145, 2985, 2985, 2985, 2985, 2985, 145, 148, 148, 2985, 2985, 2985, 148, 148, 150, 2985, 2985, 2985, 2985, 2985, 150, 152, 152, 2985, 152, 152, 152, 152, 75, 75, 2985, 75, 75, 75, 75, 13, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985 } ; static const flex_int16_t yy_chk[8542] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, 5, 28, 6, 7, 7, 7, 7, 2991, 7, 8, 8, 8, 8, 28, 8, 9, 9, 9, 10, 10, 10, 15, 21, 24, 999, 15, 30, 3, 28, 150, 4, 47, 47, 5, 19, 6, 19, 19, 30, 19, 72, 7, 148, 24, 72, 19, 24, 8, 21, 21, 24, 29, 9, 30, 25, 10, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 25, 33, 24, 35, 19, 29, 52, 33, 11, 52, 29, 22, 25, 25, 12, 147, 35, 145, 22, 63, 63, 26, 22, 142, 142, 22, 11, 25, 33, 26, 35, 77, 12, 143, 78, 11, 31, 22, 22, 265, 82, 12, 20, 20, 31, 22, 20, 26, 26, 22, 31, 20, 22, 41, 31, 77, 26, 78, 77, 68, 20, 78, 31, 31, 82, 41, 20, 82, 265, 20, 20, 31, 68, 20, 79, 141, 81, 31, 20, 27, 41, 31, 27, 81, 80, 1103, 68, 20, 23, 27, 144, 27, 23, 144, 79, 23, 70, 23, 23, 80, 32, 79, 27, 81, 32, 126, 27, 109, 84, 27, 23, 80, 38, 1103, 38, 23, 27, 84, 27, 23, 32, 109, 23, 38, 23, 23, 32, 32, 40, 38, 39, 32, 40, 85, 109, 84, 40, 126, 38, 38, 39, 38, 122, 122, 39, 39, 862, 32, 34, 86, 38, 85, 34, 39, 40, 40, 38, 39, 34, 40, 85, 34, 86, 40, 88, 88, 90, 39, 34, 122, 34, 39, 39, 88, 90, 34, 86, 862, 42, 34, 42, 42, 89, 42, 156, 34, 64, 89, 34, 42, 59, 88, 88, 90, 83, 34, 36, 97, 156, 58, 36, 58, 58, 69, 58, 69, 69, 83, 69, 89, 36, 36, 66, 36, 66, 66, 156, 66, 83, 54, 97, 83, 36, 36, 97, 156, 95, 36, 71, 91, 71, 71, 53, 71, 83, 95, 48, 36, 36, 71, 36, 37, 107, 74, 37, 74, 74, 91, 74, 92, 66, 37, 87, 95, 74, 37, 37, 93, 87, 99, 87, 91, 92, 37, 93, 107, 96, 101, 37, 107, 98, 37, 99, 87, 91, 96, 92, 43, 37, 87, 207, 74, 37, 37, 93, 87, 99, 87, 94, 94, 106, 101, 98, 96, 102, 100, 94, 98, 100, 101, 105, 207, 102, 106, 94, 105, 103, 207, 105, 108, 104, 100, 100, 14, 104, 94, 94, 106, 101, 100, 110, 102, 100, 94, 238, 100, 103, 105, 103, 108, 104, 111, 105, 103, 104, 112, 108, 104, 100, 100, 110, 104, 112, 113, 114, 111, 115, 110, 118, 117, 116, 238, 113, 103, 116, 115, 117, 104, 111, 119, 149, 149, 112, 13, 0, 0, 119, 114, 121, 120, 113, 114, 116, 115, 118, 118, 117, 116, 120, 123, 121, 116, 127, 124, 120, 125, 119, 123, 146, 0, 146, 146, 120, 146, 124, 121, 120, 127, 124, 125, 128, 0, 129, 130, 133, 120, 123, 124, 131, 127, 124, 120, 125, 129, 130, 133, 131, 128, 132, 135, 128, 124, 129, 137, 132, 124, 128, 128, 134, 129, 130, 133, 136, 138, 135, 131, 139, 134, 137, 140, 129, 0, 138, 0, 128, 132, 135, 128, 0, 134, 137, 154, 140, 134, 136, 134, 0, 155, 139, 136, 138, 161, 171, 139, 134, 151, 140, 151, 151, 152, 151, 152, 152, 157, 152, 154, 134, 158, 154, 155, 161, 160, 157, 159, 155, 162, 163, 164, 161, 158, 159, 0, 165, 162, 171, 167, 170, 160, 163, 165, 157, 167, 159, 166, 158, 174, 991, 152, 160, 164, 159, 169, 162, 163, 164, 176, 168, 159, 168, 165, 172, 166, 170, 170, 172, 177, 175, 167, 167, 178, 166, 174, 174, 169, 175, 180, 991, 176, 169, 179, 0, 172, 176, 168, 178, 0, 179, 177, 172, 181, 0, 172, 177, 175, 0, 182, 178, 183, 0, 193, 0, 184, 186, 180, 0, 0, 179, 180, 172, 173, 183, 186, 181, 184, 173, 187, 181, 182, 185, 173, 0, 185, 182, 0, 183, 173, 173, 188, 184, 186, 180, 193, 173, 185, 190, 0, 173, 187, 189, 192, 191, 173, 187, 189, 196, 185, 173, 191, 185, 188, 192, 194, 173, 173, 188, 189, 190, 189, 195, 198, 199, 190, 201, 0, 189, 189, 192, 191, 197, 195, 189, 202, 203, 200, 199, 197, 196, 194, 194, 200, 204, 0, 189, 205, 189, 0, 209, 0, 206, 211, 195, 198, 199, 202, 201, 197, 195, 212, 202, 208, 200, 199, 206, 205, 203, 213, 208, 209, 211, 210, 205, 212, 204, 209, 210, 206, 211, 214, 215, 219, 216, 217, 223, 225, 212, 0, 208, 213, 217, 218, 215, 216, 213, 220, 218, 214, 210, 230, 222, 221, 231, 219, 220, 222, 214, 215, 219, 216, 217, 224, 224, 227, 226, 232, 223, 225, 228, 230, 224, 226, 220, 218, 221, 229, 230, 222, 221, 233, 234, 235, 239, 229, 231, 227, 236, 233, 224, 224, 227, 226, 237, 228, 240, 228, 235, 232, 241, 236, 242, 244, 229, 245, 242, 239, 233, 243, 235, 250, 0, 245, 234, 236, 239, 241, 244, 246, 237, 237, 251, 248, 254, 241, 247, 241, 240, 242, 244, 243, 245, 247, 239, 249, 243, 252, 246, 249, 255, 253, 256, 250, 241, 248, 246, 258, 257, 261, 248, 259, 255, 247, 251, 256, 254, 257, 262, 252, 258, 263, 249, 253, 252, 264, 269, 255, 253, 256, 259, 260, 270, 260, 258, 257, 267, 269, 259, 268, 266, 261, 262, 273, 270, 262, 263, 271, 263, 266, 272, 264, 264, 269, 274, 275, 276, 278, 260, 270, 277, 273, 267, 267, 280, 268, 268, 266, 275, 282, 273, 271, 281, 272, 271, 279, 283, 272, 287, 0, 0, 286, 275, 283, 284, 277, 274, 277, 276, 278, 280, 280, 279, 284, 281, 286, 288, 296, 279, 281, 285, 282, 279, 283, 287, 287, 285, 289, 286, 290, 295, 284, 291, 0, 292, 293, 289, 300, 298, 279, 288, 291, 297, 288, 293, 295, 294, 285, 0, 296, 302, 304, 290, 298, 289, 300, 290, 295, 301, 291, 292, 292, 293, 294, 300, 298, 297, 301, 305, 297, 294, 306, 302, 294, 0, 304, 0, 302, 304, 303, 309, 303, 305, 0, 308, 301, 306, 307, 307, 308, 294, 299, 314, 0, 299, 305, 0, 303, 306, 299, 299, 299, 299, 303, 309, 311, 303, 309, 303, 299, 310, 315, 307, 310, 307, 307, 308, 311, 299, 314, 310, 299, 316, 312, 303, 313, 299, 299, 299, 299, 317, 318, 311, 315, 0, 323, 319, 310, 315, 320, 310, 312, 317, 313, 322, 0, 328, 320, 316, 316, 312, 319, 313, 318, 321, 327, 322, 317, 318, 0, 0, 321, 324, 319, 324, 326, 320, 323, 329, 0, 332, 322, 326, 324, 330, 334, 337, 327, 328, 335, 330, 321, 327, 332, 331, 0, 331, 336, 324, 324, 329, 324, 326, 334, 338, 329, 330, 332, 0, 333, 324, 330, 334, 337, 339, 335, 335, 330, 331, 406, 339, 331, 333, 331, 339, 333, 338, 333, 341, 336, 343, 338, 339, 333, 342, 341, 333, 345, 339, 0, 342, 339, 343, 0, 344, 348, 406, 339, 0, 333, 345, 339, 333, 359, 333, 341, 344, 343, 348, 339, 340, 342, 340, 351, 345, 350, 357, 347, 352, 0, 354, 344, 348, 352, 353, 340, 354, 350, 340, 0, 340, 351, 340, 347, 357, 359, 340, 340, 355, 340, 351, 347, 350, 357, 347, 353, 355, 354, 379, 379, 352, 353, 340, 0, 356, 340, 358, 340, 0, 340, 347, 349, 349, 361, 358, 355, 356, 360, 360, 362, 361, 349, 365, 349, 349, 349, 363, 379, 349, 365, 364, 356, 362, 358, 364, 363, 349, 368, 349, 349, 361, 367, 0, 370, 360, 375, 362, 366, 349, 365, 349, 349, 349, 367, 366, 349, 371, 364, 363, 368, 369, 373, 363, 372, 368, 374, 0, 376, 367, 376, 372, 378, 369, 377, 366, 370, 373, 375, 374, 380, 381, 385, 371, 371, 377, 382, 380, 369, 373, 383, 372, 381, 374, 378, 376, 384, 382, 387, 378, 0, 377, 388, 383, 386, 385, 389, 380, 381, 385, 388, 390, 394, 382, 384, 392, 398, 383, 389, 386, 410, 384, 390, 384, 387, 387, 391, 386, 392, 388, 394, 386, 393, 389, 395, 391, 397, 396, 390, 394, 402, 384, 392, 393, 400, 393, 386, 0, 398, 399, 393, 401, 410, 391, 397, 399, 395, 404, 407, 393, 396, 395, 402, 397, 396, 400, 403, 402, 405, 411, 393, 400, 393, 403, 401, 408, 399, 409, 401, 412, 407, 413, 405, 404, 404, 407, 417, 413, 414, 408, 415, 412, 411, 403, 424, 405, 411, 416, 421, 420, 418, 417, 408, 409, 409, 416, 412, 418, 413, 419, 414, 422, 415, 417, 420, 414, 423, 415, 419, 425, 424, 424, 421, 416, 416, 421, 420, 418, 427, 426, 432, 423, 416, 430, 422, 426, 419, 428, 422, 431, 433, 425, 428, 423, 434, 431, 425, 435, 440, 432, 442, 434, 446, 0, 427, 427, 426, 432, 433, 430, 430, 437, 435, 437, 428, 438, 431, 433, 439, 441, 437, 434, 438, 444, 435, 443, 446, 448, 0, 446, 440, 439, 442, 449, 451, 447, 444, 441, 437, 448, 437, 445, 438, 452, 445, 439, 441, 443, 447, 450, 444, 453, 443, 456, 448, 454, 450, 458, 451, 456, 445, 451, 447, 457, 453, 449, 452, 455, 445, 459, 460, 445, 455, 463, 461, 452, 450, 454, 453, 458, 456, 459, 454, 462, 458, 461, 457, 463, 466, 0, 457, 462, 460, 452, 455, 466, 459, 460, 468, 0, 463, 461, 0, 0, 469, 467, 474, 498, 470, 0, 462, 464, 469, 0, 0, 466, 464, 467, 464, 470, 481, 468, 473, 471, 464, 468, 464, 481, 474, 464, 464, 469, 467, 474, 473, 470, 464, 464, 464, 498, 472, 475, 476, 464, 472, 464, 471, 481, 477, 473, 471, 464, 475, 464, 478, 479, 464, 464, 477, 0, 476, 482, 472, 464, 484, 478, 480, 472, 475, 476, 480, 472, 483, 490, 483, 0, 491, 485, 488, 479, 477, 478, 479, 486, 487, 477, 488, 482, 482, 485, 484, 484, 489, 480, 491, 490, 487, 489, 486, 483, 490, 492, 493, 491, 485, 488, 494, 496, 497, 492, 486, 487, 500, 501, 493, 499, 510, 504, 505, 489, 503, 501, 509, 502, 500, 496, 504, 494, 492, 493, 499, 497, 503, 494, 496, 497, 502, 506, 507, 500, 501, 505, 499, 508, 504, 505, 511, 503, 510, 509, 502, 506, 512, 513, 514, 516, 515, 0, 0, 525, 523, 511, 508, 507, 506, 507, 517, 516, 513, 515, 508, 518, 521, 511, 520, 524, 522, 521, 514, 519, 513, 514, 516, 515, 512, 520, 519, 523, 517, 519, 522, 525, 526, 517, 527, 518, 528, 519, 518, 529, 530, 520, 524, 522, 521, 529, 519, 531, 534, 532, 0, 533, 537, 519, 536, 535, 519, 532, 536, 526, 537, 527, 538, 539, 530, 540, 529, 530, 528, 531, 533, 541, 534, 0, 531, 534, 532, 535, 533, 537, 541, 536, 535, 542, 543, 538, 544, 545, 540, 538, 546, 543, 540, 549, 0, 539, 0, 547, 541, 548, 551, 552, 547, 546, 550, 542, 547, 0, 548, 545, 542, 543, 553, 550, 545, 556, 557, 546, 544, 549, 549, 547, 551, 552, 547, 553, 548, 551, 552, 547, 554, 550, 558, 547, 557, 563, 560, 0, 559, 553, 561, 564, 554, 557, 562, 568, 563, 556, 569, 565, 564, 567, 568, 0, 575, 0, 558, 554, 560, 558, 559, 559, 563, 560, 561, 559, 562, 561, 564, 565, 566, 562, 568, 567, 570, 569, 565, 571, 567, 572, 573, 574, 576, 580, 566, 571, 575, 559, 577, 579, 572, 581, 570, 578, 578, 583, 574, 566, 573, 584, 581, 570, 585, 576, 571, 580, 572, 573, 574, 576, 580, 582, 577, 579, 588, 577, 579, 586, 581, 588, 587, 584, 578, 589, 582, 590, 584, 583, 591, 591, 592, 594, 593, 0, 585, 600, 591, 589, 582, 590, 593, 586, 587, 595, 586, 597, 588, 587, 598, 594, 589, 0, 590, 596, 599, 591, 591, 602, 594, 593, 596, 601, 592, 604, 605, 595, 605, 600, 598, 599, 595, 597, 597, 606, 608, 598, 601, 603, 599, 602, 596, 599, 603, 609, 602, 607, 610, 614, 601, 604, 604, 605, 609, 607, 611, 610, 599, 612, 606, 608, 606, 608, 615, 611, 613, 612, 617, 619, 616, 603, 609, 613, 607, 610, 620, 618, 619, 621, 617, 614, 623, 611, 620, 624, 612, 615, 616, 618, 622, 615, 625, 613, 621, 617, 619, 616, 624, 628, 626, 627, 622, 620, 618, 630, 621, 625, 626, 627, 633, 629, 624, 636, 623, 631, 630, 622, 633, 625, 629, 634, 628, 635, 631, 637, 628, 626, 627, 638, 632, 632, 630, 637, 634, 641, 636, 633, 629, 632, 636, 639, 631, 640, 644, 638, 641, 642, 634, 635, 635, 645, 637, 643, 639, 642, 638, 632, 632, 646, 647, 648, 641, 649, 644, 640, 651, 643, 639, 650, 640, 644, 649, 645, 642, 655, 654, 653, 645, 646, 643, 652, 647, 648, 651, 656, 646, 647, 648, 650, 649, 654, 657, 651, 652, 653, 650, 655, 658, 659, 662, 660, 655, 654, 653, 661, 662, 663, 652, 656, 665, 658, 656, 660, 664, 657, 668, 659, 661, 657, 666, 669, 664, 670, 668, 658, 659, 662, 660, 671, 670, 672, 661, 673, 663, 673, 674, 665, 666, 675, 664, 664, 676, 668, 0, 674, 672, 666, 677, 664, 670, 699, 671, 669, 683, 678, 671, 679, 672, 679, 673, 676, 689, 674, 678, 680, 683, 686, 677, 676, 0, 675, 680, 0, 690, 677, 691, 686, 693, 692, 689, 683, 678, 699, 679, 694, 701, 691, 0, 689, 696, 0, 680, 681, 686, 690, 697, 681, 695, 696, 681, 690, 692, 691, 693, 693, 692, 681, 701, 697, 681, 694, 694, 701, 695, 681, 702, 696, 705, 698, 681, 0, 702, 697, 681, 695, 698, 681, 704, 703, 704, 0, 706, 0, 681, 708, 0, 681, 703, 709, 707, 711, 705, 702, 710, 705, 698, 700, 700, 0, 700, 709, 712, 700, 715, 704, 703, 714, 700, 706, 707, 708, 708, 711, 700, 700, 709, 707, 711, 715, 710, 710, 713, 700, 700, 700, 712, 700, 716, 712, 700, 715, 714, 717, 714, 700, 716, 721, 718, 719, 720, 700, 700, 724, 713, 718, 722, 719, 723, 713, 728, 730, 729, 725, 0, 716, 717, 726, 722, 720, 717, 723, 725, 721, 721, 718, 719, 720, 733, 724, 724, 727, 726, 722, 729, 723, 727, 734, 730, 729, 725, 731, 728, 735, 726, 736, 731, 737, 0, 739, 733, 0, 0, 738, 741, 733, 742, 744, 727, 740, 0, 0, 748, 743, 751, 745, 744, 736, 746, 734, 739, 0, 736, 731, 0, 735, 739, 738, 740, 737, 738, 741, 743, 742, 744, 747, 740, 745, 746, 748, 743, 749, 745, 747, 750, 746, 751, 752, 754, 755, 756, 757, 0, 764, 0, 752, 758, 759, 764, 749, 760, 0, 747, 750, 762, 0, 754, 755, 749, 757, 765, 750, 756, 760, 752, 754, 755, 756, 757, 759, 758, 763, 762, 758, 759, 764, 761, 760, 761, 766, 767, 762, 768, 772, 773, 763, 765, 765, 767, 769, 0, 766, 769, 770, 0, 0, 774, 775, 763, 776, 768, 770, 774, 761, 0, 776, 766, 767, 772, 768, 772, 773, 781, 779, 777, 778, 769, 770, 779, 775, 770, 777, 778, 774, 775, 780, 776, 782, 770, 0, 781, 782, 780, 783, 784, 786, 785, 787, 788, 781, 779, 777, 778, 784, 785, 790, 792, 791, 793, 789, 794, 0, 780, 788, 782, 787, 783, 789, 790, 792, 783, 784, 795, 785, 787, 788, 796, 786, 791, 795, 793, 797, 790, 792, 791, 793, 789, 794, 797, 799, 798, 802, 800, 801, 796, 803, 799, 800, 802, 795, 805, 801, 804, 796, 806, 807, 808, 809, 797, 798, 815, 806, 0, 810, 817, 804, 799, 798, 802, 800, 801, 810, 812, 817, 814, 819, 821, 803, 811, 804, 809, 806, 805, 813, 809, 816, 811, 807, 808, 813, 810, 817, 815, 811, 812, 820, 823, 818, 824, 812, 814, 814, 820, 821, 825, 811, 822, 819, 827, 816, 813, 818, 816, 811, 826, 822, 825, 830, 823, 0, 829, 828, 820, 823, 818, 824, 828, 829, 831, 833, 834, 825, 833, 822, 827, 827, 831, 826, 836, 830, 837, 826, 841, 834, 830, 836, 837, 829, 828, 0, 0, 839, 840, 842, 841, 831, 833, 834, 843, 849, 843, 844, 0, 0, 849, 836, 0, 837, 838, 841, 838, 845, 847, 0, 838, 840, 838, 839, 839, 840, 842, 838, 851, 845, 844, 843, 838, 846, 844, 848, 854, 849, 838, 850, 847, 838, 0, 838, 845, 847, 846, 838, 848, 838, 858, 851, 850, 852, 838, 851, 855, 853, 854, 838, 846, 857, 848, 854, 856, 852, 850, 853, 859, 855, 856, 858, 860, 863, 857, 861, 864, 858, 0, 853, 852, 864, 865, 855, 853, 869, 866, 0, 857, 872, 865, 856, 0, 868, 853, 866, 871, 870, 874, 0, 859, 0, 861, 864, 860, 863, 881, 869, 868, 865, 870, 871, 869, 866, 867, 872, 872, 874, 875, 867, 868, 867, 873, 871, 870, 874, 876, 867, 877, 878, 0, 875, 867, 867, 876, 879, 877, 882, 881, 867, 867, 867, 883, 884, 873, 875, 867, 885, 867, 873, 883, 886, 891, 876, 867, 877, 878, 884, 879, 867, 867, 882, 879, 887, 882, 888, 867, 889, 0, 883, 884, 887, 893, 886, 894, 890, 896, 892, 886, 885, 893, 895, 898, 888, 891, 889, 890, 899, 895, 896, 887, 897, 888, 900, 889, 892, 894, 898, 897, 893, 901, 894, 890, 896, 892, 899, 902, 903, 895, 898, 907, 900, 0, 905, 899, 908, 902, 909, 897, 910, 900, 901, 908, 907, 905, 909, 911, 901, 913, 912, 914, 0, 910, 902, 920, 911, 917, 907, 919, 903, 905, 912, 908, 918, 909, 921, 910, 0, 925, 923, 913, 925, 914, 911, 0, 913, 912, 914, 917, 921, 923, 918, 924, 917, 919, 919, 920, 924, 926, 927, 918, 930, 921, 928, 925, 925, 923, 929, 925, 931, 928, 932, 927, 933, 934, 930, 929, 935, 0, 0, 933, 931, 926, 936, 924, 926, 927, 939, 930, 935, 928, 940, 946, 941, 929, 937, 931, 940, 943, 942, 933, 944, 945, 932, 935, 936, 934, 946, 937, 943, 936, 939, 948, 950, 939, 941, 949, 951, 940, 946, 941, 942, 937, 944, 945, 943, 942, 949, 944, 945, 952, 955, 953, 948, 950, 954, 0, 956, 957, 948, 950, 959, 960, 949, 954, 958, 961, 957, 959, 951, 953, 962, 963, 958, 964, 955, 967, 952, 955, 953, 961, 971, 954, 956, 956, 957, 960, 965, 959, 960, 966, 969, 958, 961, 972, 970, 964, 973, 983, 984, 969, 964, 970, 962, 963, 974, 976, 975, 967, 965, 979, 977, 966, 971, 965, 976, 972, 966, 969, 978, 980, 972, 970, 974, 973, 975, 979, 981, 982, 980, 983, 984, 974, 976, 975, 977, 982, 979, 977, 985, 986, 987, 981, 978, 988, 989, 978, 980, 990, 994, 992, 985, 988, 1007, 981, 982, 993, 994, 989, 992, 998, 997, 986, 990, 1002, 1005, 985, 986, 987, 997, 1001, 988, 989, 1000, 993, 990, 994, 992, 995, 1002, 995, 1003, 1001, 993, 1004, 1007, 1000, 998, 997, 1006, 1008, 1002, 1005, 1009, 1010, 0, 1006, 1001, 1015, 1012, 1000, 1011, 1004, 1003, 1013, 995, 1016, 1014, 1003, 0, 1015, 1004, 1012, 1021, 1016, 1009, 1006, 1013, 1017, 1010, 1009, 1010, 1008, 1011, 1018, 1015, 1012, 1019, 1011, 1014, 1022, 1013, 1023, 1016, 1014, 1019, 1018, 1024, 1017, 1025, 1021, 1023, 0, 1022, 1029, 1017, 1026, 1027, 1031, 1024, 1030, 1018, 1032, 1026, 1019, 0, 1027, 1022, 1027, 1023, 1025, 1027, 1033, 1035, 1024, 1032, 1025, 1034, 1031, 1027, 1029, 1029, 1030, 1026, 1027, 1031, 1034, 1030, 1036, 1032, 1038, 1035, 1039, 1027, 1037, 1027, 1033, 1040, 1027, 1033, 1035, 1042, 1037, 1043, 1034, 1040, 1045, 1044, 1039, 1046, 1036, 0, 1038, 1045, 1047, 1036, 0, 1038, 1051, 1039, 1048, 1037, 1054, 1049, 1040, 1043, 1051, 1050, 1042, 1044, 1043, 1046, 1053, 1045, 1044, 1049, 1046, 1047, 1048, 1050, 1052, 1047, 1054, 1055, 1053, 1051, 1057, 1048, 1056, 1054, 1049, 1058, 1057, 1059, 1050, 1052, 1056, 1060, 1055, 1053, 1058, 1061, 1065, 1063, 1062, 1068, 1066, 1052, 1061, 1060, 1055, 1062, 1068, 1057, 1059, 1056, 1067, 1069, 1058, 1066, 1059, 1063, 1070, 1079, 1060, 1075, 1128, 1073, 1061, 1083, 1063, 1062, 1068, 1066, 1065, 1067, 1071, 1070, 1072, 1069, 1073, 1071, 1074, 1067, 1069, 1077, 1072, 1097, 1078, 1070, 1080, 1075, 1075, 1128, 1073, 1079, 1074, 0, 1081, 1077, 1084, 1083, 0, 1082, 1085, 1072, 1078, 1086, 1071, 1074, 1076, 0, 1077, 1076, 1076, 1078, 1080, 1080, 1076, 1097, 1081, 1082, 1084, 1087, 1076, 1081, 1085, 1084, 1076, 1087, 1082, 1085, 1076, 1086, 1086, 1088, 1089, 1076, 1089, 1090, 1076, 1076, 1094, 1091, 1095, 1076, 1090, 1093, 1098, 1092, 1087, 1076, 1091, 0, 1093, 1076, 1099, 1095, 1100, 1096, 1089, 1088, 1088, 1089, 1094, 1089, 1090, 1092, 1096, 1094, 1091, 1095, 0, 1102, 1093, 1104, 1092, 1107, 1099, 1108, 1098, 1100, 0, 1099, 1106, 1100, 1096, 1101, 1108, 1107, 1109, 1104, 1101, 0, 1101, 1118, 1101, 0, 1101, 1102, 1102, 0, 1104, 1113, 1107, 1101, 1108, 1106, 1109, 1112, 1110, 1106, 0, 1111, 1101, 1110, 1113, 1109, 1111, 1101, 1114, 1101, 1117, 1101, 1115, 1101, 1116, 1118, 1119, 1120, 1113, 1112, 1115, 1121, 1116, 1117, 1112, 1122, 1114, 1123, 1111, 1125, 1110, 1124, 1130, 1127, 1121, 1114, 1120, 1117, 1125, 1115, 1123, 1116, 1119, 1119, 1120, 1129, 1131, 1122, 1121, 1124, 1133, 1126, 1122, 1126, 1123, 1127, 1125, 1129, 1124, 1130, 1127, 1134, 1135, 1136, 1137, 1139, 0, 1140, 1138, 1144, 1135, 1131, 1129, 1131, 1133, 1138, 1141, 1133, 1126, 1142, 1143, 1136, 0, 1134, 1146, 1142, 1143, 1149, 1134, 1135, 1136, 1137, 1139, 1140, 1140, 1138, 1144, 1145, 1141, 1148, 1150, 1151, 1147, 1141, 1145, 1149, 1142, 1143, 1146, 1147, 1151, 1146, 1153, 1155, 1149, 1156, 0, 0, 1154, 1157, 1163, 1148, 1158, 1162, 1145, 1150, 1148, 1150, 1151, 1147, 1154, 1159, 1162, 1160, 1161, 1155, 1153, 1156, 1157, 1153, 1155, 1163, 1156, 1164, 1158, 1154, 1157, 1163, 1165, 1158, 1162, 1167, 1168, 1159, 1169, 1170, 1161, 1179, 1159, 1160, 1160, 1161, 1165, 1164, 1171, 1172, 1174, 1175, 1178, 1173, 1164, 1177, 1178, 1172, 1175, 1165, 1169, 1180, 1177, 1181, 1183, 1169, 1171, 1167, 1168, 1173, 1187, 1170, 1189, 1179, 1186, 1171, 1172, 1174, 1175, 1178, 1173, 1184, 1177, 1187, 1181, 1185, 1188, 1184, 0, 1186, 1181, 1194, 1185, 1180, 1184, 1188, 1183, 1187, 1189, 1189, 1190, 1186, 1191, 1193, 1191, 1195, 1192, 1190, 1184, 1195, 1200, 0, 1185, 1188, 1184, 1192, 1196, 1199, 1194, 1200, 1198, 1201, 1199, 1202, 1204, 1193, 0, 1190, 1198, 1191, 1193, 1203, 1195, 1192, 1207, 1209, 1204, 1200, 1196, 1201, 0, 1208, 1202, 1196, 1203, 0, 1210, 1198, 1201, 1199, 1202, 1204, 1205, 1206, 1208, 1205, 1206, 1212, 1203, 1207, 1211, 1207, 1213, 1213, 1205, 1212, 1215, 1209, 1208, 1210, 1217, 1218, 1214, 1210, 1227, 1206, 1211, 1216, 1218, 1205, 1206, 1214, 1205, 1206, 1212, 1221, 1216, 1211, 1215, 1213, 1220, 1222, 1217, 1215, 1221, 1223, 1224, 1217, 1218, 1214, 1222, 1225, 0, 1220, 1216, 1226, 1227, 1229, 1231, 1228, 1225, 0, 1221, 1226, 1230, 1229, 0, 1220, 1222, 1224, 1231, 1223, 1223, 1224, 1228, 1232, 1234, 1230, 1225, 1235, 1233, 1237, 1226, 1236, 1229, 1231, 1228, 1232, 1233, 1239, 1237, 1230, 1240, 1238, 1242, 1244, 1241, 1245, 1234, 1235, 1242, 1249, 1232, 1234, 1240, 1236, 1235, 1233, 1237, 1243, 1236, 1238, 1246, 0, 1247, 1239, 1239, 1241, 0, 1240, 1238, 1242, 1250, 1241, 1251, 1252, 1255, 1244, 1249, 1245, 1253, 1243, 1254, 1259, 1252, 1256, 1243, 1258, 1246, 1246, 1247, 1247, 1251, 1253, 1254, 1250, 1255, 1257, 0, 1250, 1260, 1251, 1252, 1255, 1257, 1259, 1258, 1253, 1261, 1254, 1259, 1256, 1256, 1260, 1258, 1262, 1261, 1263, 1264, 1268, 1262, 1266, 1263, 1267, 1257, 1264, 1265, 1260, 1270, 1266, 1272, 1267, 1269, 1271, 1273, 1261, 1270, 1268, 1276, 1272, 1271, 1274, 1275, 1275, 1278, 1264, 1268, 1262, 1266, 1263, 1267, 0, 1265, 1265, 1269, 1270, 1277, 1272, 1279, 1269, 1271, 1287, 0, 1274, 1277, 1278, 1273, 1280, 1274, 1275, 1276, 1278, 1281, 1282, 1283, 1280, 1284, 1289, 1285, 1286, 1281, 1282, 1283, 1277, 1285, 1288, 1290, 1287, 1287, 1284, 1279, 1286, 1289, 1291, 1280, 1292, 1293, 1295, 1294, 1281, 1282, 1283, 1299, 1284, 1289, 1285, 1286, 1304, 1298, 1288, 1293, 1295, 1288, 1290, 1299, 1291, 1294, 1296, 1292, 1300, 1291, 1296, 1292, 1293, 1295, 1294, 1300, 1301, 1302, 1299, 1298, 1303, 0, 1305, 1296, 1298, 1306, 1307, 1301, 1304, 1310, 1313, 1296, 1308, 1296, 1305, 1300, 1310, 1296, 1309, 1306, 1314, 0, 1303, 1301, 1302, 1311, 1319, 1303, 1307, 1305, 1296, 1312, 1306, 1307, 1311, 1308, 1310, 1316, 1312, 1308, 1320, 1309, 1313, 1318, 1321, 1309, 1316, 1314, 1319, 1318, 1322, 1324, 1311, 1319, 1327, 1326, 1331, 1322, 1312, 0, 1328, 1329, 1332, 1335, 1316, 1334, 1320, 1320, 1333, 1332, 1318, 1328, 1329, 0, 1338, 1335, 1321, 1322, 1324, 1326, 1331, 1327, 1326, 1331, 1339, 1349, 1333, 1328, 1329, 1332, 1335, 1334, 1334, 1336, 1337, 1333, 1338, 1339, 1340, 1336, 1341, 1338, 1337, 1342, 1343, 1345, 1343, 1344, 1346, 1341, 1348, 1339, 1349, 0, 1347, 1342, 1350, 1346, 1345, 1351, 1336, 1337, 1348, 1352, 1340, 1340, 1351, 1341, 1354, 1355, 1342, 1343, 1345, 1344, 1344, 1346, 1347, 1348, 1357, 1350, 1353, 1347, 1359, 1350, 1354, 1353, 1351, 0, 1360, 1352, 1352, 1356, 1355, 1361, 1366, 1354, 1355, 1360, 1363, 1356, 1357, 1365, 1362, 1362, 1369, 1357, 1361, 1353, 0, 1359, 1362, 1363, 1364, 1370, 1364, 1360, 1366, 1367, 1356, 1368, 1361, 1366, 1369, 1372, 1367, 1363, 1368, 1365, 1365, 1362, 1362, 1369, 1373, 1374, 1371, 1370, 1375, 1376, 0, 1364, 1370, 1371, 0, 1375, 1367, 1378, 1368, 1379, 1372, 1380, 1372, 1385, 1381, 1383, 1373, 1386, 0, 1380, 1378, 1373, 1391, 1371, 1388, 1375, 1384, 1374, 1390, 1384, 0, 1376, 1387, 1388, 1378, 1381, 1379, 1383, 1380, 1385, 1385, 1381, 1383, 1386, 1386, 1387, 1389, 1392, 1391, 1391, 1393, 1388, 1390, 1384, 1395, 1390, 1396, 1393, 1389, 1387, 1394, 1397, 1392, 1394, 1399, 1401, 1399, 1398, 1400, 1405, 0, 1402, 0, 1389, 1392, 1394, 0, 1393, 1396, 1397, 1403, 0, 1404, 1396, 1394, 1407, 1395, 1394, 1397, 1398, 1394, 1399, 1400, 1402, 1398, 1400, 1406, 1401, 1402, 1407, 1411, 1405, 1394, 1409, 1408, 1418, 1403, 1403, 1404, 1404, 1410, 1409, 1407, 1408, 1412, 1413, 1414, 1410, 1406, 1415, 0, 1416, 1417, 1406, 1411, 1416, 1420, 1411, 1419, 1421, 1409, 1408, 1418, 1422, 1433, 1420, 1421, 1410, 1414, 1423, 1422, 1424, 1425, 1414, 1417, 1426, 1412, 1413, 1416, 1417, 1419, 1415, 1423, 1420, 1424, 1419, 1421, 1425, 1427, 1426, 1422, 1433, 1430, 0, 1428, 1435, 1423, 1429, 1424, 1425, 1431, 1428, 1426, 1434, 1429, 1430, 1431, 1436, 1441, 1440, 1434, 1437, 1438, 1439, 0, 0, 1439, 1435, 1440, 1430, 1427, 1428, 1435, 1437, 1429, 1438, 1441, 1431, 1443, 1442, 1434, 0, 1445, 1436, 1436, 1441, 1440, 1450, 1437, 1438, 1439, 1442, 1444, 1445, 1451, 1444, 1447, 1449, 1443, 1449, 1452, 1447, 1453, 1454, 0, 1443, 1442, 1455, 1447, 1445, 1444, 1450, 1454, 1456, 1450, 1459, 1460, 1453, 1457, 1444, 0, 1451, 1444, 1447, 1449, 1458, 1467, 1452, 1447, 1453, 1454, 1455, 1457, 1458, 1455, 1462, 1461, 1459, 1460, 1463, 1456, 1464, 1459, 1460, 1461, 1457, 1462, 1465, 1468, 1464, 1465, 1466, 1458, 1469, 1472, 1471, 1470, 1463, 1467, 0, 1469, 1473, 1462, 1461, 1471, 1465, 1463, 1472, 1464, 1466, 1470, 1474, 1473, 1478, 1465, 1468, 1480, 1465, 1466, 1479, 1469, 1472, 1471, 1470, 1477, 1476, 1474, 1476, 1473, 1483, 1479, 1481, 1483, 1477, 1480, 1482, 1484, 0, 1474, 1478, 1478, 1486, 1485, 1480, 1489, 1484, 1479, 1483, 1485, 1482, 1486, 1477, 1476, 1481, 1490, 1487, 1483, 1489, 1481, 1483, 1487, 1482, 1482, 1484, 1492, 1491, 1490, 1493, 1486, 1485, 1491, 1489, 1496, 1494, 1495, 1497, 1482, 1498, 0, 1508, 1502, 1490, 1494, 1501, 1499, 1503, 1492, 1487, 1505, 1504, 1501, 1492, 1491, 1502, 1505, 1506, 0, 1497, 1508, 1493, 1494, 1495, 1497, 1504, 1496, 1499, 1508, 1502, 1531, 1498, 1501, 1499, 1505, 1512, 1510, 1505, 1504, 1503, 1511, 1513, 1514, 1505, 1510, 1516, 1515, 1519, 1511, 1506, 1518, 1517, 1520, 0, 1512, 1526, 1514, 1531, 1516, 1513, 1515, 1521, 1512, 1510, 1517, 1527, 1525, 1511, 1513, 1514, 1527, 1518, 1516, 1515, 1522, 1521, 1523, 1518, 1517, 1519, 1525, 1522, 1524, 1528, 1520, 1523, 1529, 1526, 1521, 1532, 1524, 1533, 1527, 1525, 1528, 1529, 1532, 1534, 1518, 1535, 1536, 1522, 1537, 1523, 1538, 1540, 1541, 1542, 1538, 1524, 1528, 0, 1545, 1529, 1533, 1542, 1532, 1540, 1533, 1534, 1537, 1535, 1536, 1543, 1534, 1547, 1535, 1536, 1544, 1537, 1546, 1538, 1540, 1541, 1542, 1551, 1544, 1552, 1543, 1545, 1550, 1548, 1551, 1546, 1549, 1547, 1553, 1556, 1550, 1554, 1543, 1555, 1547, 1557, 1558, 1544, 1548, 1546, 1554, 1549, 1560, 1553, 1551, 1562, 1563, 1561, 1566, 1550, 1548, 1552, 1564, 1549, 1555, 1553, 1556, 1565, 1554, 1557, 1555, 1567, 1557, 1558, 1560, 1561, 1568, 1564, 1567, 1560, 1571, 1568, 1566, 1563, 1561, 1566, 1569, 1562, 1570, 1564, 1572, 1573, 1565, 1574, 1565, 1569, 1576, 1570, 1567, 1575, 1578, 1579, 1571, 1568, 1577, 1574, 1573, 1571, 1572, 1576, 1580, 1577, 1578, 1569, 1576, 1570, 1581, 1572, 1573, 1583, 1574, 1575, 1581, 1576, 1582, 1585, 1575, 1578, 1579, 1587, 1583, 1577, 1582, 1584, 1588, 1586, 1576, 1586, 1589, 1591, 1584, 1592, 1580, 1581, 1595, 1597, 1583, 1590, 1586, 1596, 1585, 1582, 1585, 1593, 1590, 1587, 1587, 1594, 1598, 1593, 1584, 1588, 1586, 1594, 1586, 1589, 1591, 1592, 1592, 1600, 1601, 1595, 1596, 1602, 1590, 1604, 1596, 1597, 1607, 1601, 1593, 1603, 1598, 1603, 1594, 1598, 1605, 0, 1606, 1608, 1608, 1608, 1611, 1609, 1619, 0, 1608, 1601, 1614, 1604, 1609, 1600, 1604, 1614, 1608, 1602, 1616, 0, 1603, 1615, 1607, 1617, 1610, 1605, 1606, 1606, 1608, 1608, 1608, 1610, 1609, 1612, 1615, 1608, 1611, 1618, 1619, 1617, 1612, 1620, 1614, 1616, 1623, 1616, 1621, 1629, 1615, 1618, 1617, 1610, 1622, 1621, 1624, 1624, 1625, 1633, 1622, 1620, 1612, 1627, 1626, 1630, 1618, 1628, 1627, 1635, 1620, 1626, 1630, 1623, 1639, 1621, 1629, 1634, 1640, 1634, 1637, 1622, 1638, 1624, 1625, 1625, 1633, 1635, 1638, 1641, 1627, 1626, 1630, 1628, 1628, 1641, 1635, 1643, 1637, 1642, 1644, 1645, 1645, 1646, 1634, 1640, 1639, 1637, 1648, 1638, 1650, 1642, 1647, 1647, 1651, 1652, 1641, 1643, 1644, 1648, 1653, 1654, 1652, 1655, 1643, 1656, 1642, 1644, 1645, 1646, 1646, 1658, 1650, 1660, 1657, 1648, 1659, 1650, 1662, 1647, 1653, 1660, 1652, 1659, 1661, 1663, 1651, 1653, 1665, 1658, 1664, 1664, 1656, 1654, 1663, 1655, 1657, 1666, 1658, 1661, 1660, 1657, 1662, 1659, 1668, 1662, 1667, 1669, 1674, 1676, 1673, 1661, 1663, 1667, 1665, 1665, 1668, 1664, 1671, 1672, 1675, 1676, 0, 1669, 1672, 1671, 1679, 1682, 1675, 1666, 1669, 1668, 1673, 1667, 1669, 1674, 1676, 1673, 1680, 1681, 1678, 1683, 1685, 1687, 0, 1671, 1672, 1675, 1678, 1679, 1669, 1689, 1686, 1679, 1682, 1684, 1687, 1681, 1686, 1680, 1684, 1692, 1694, 1693, 1683, 1680, 1681, 1678, 1683, 1685, 1687, 1684, 1688, 1689, 1690, 1693, 1691, 1695, 1689, 1686, 1688, 1690, 1684, 1691, 1694, 1696, 1697, 1684, 1699, 1694, 1693, 1700, 1702, 1692, 1703, 1701, 1700, 1705, 1706, 1688, 1704, 1690, 1701, 1691, 1695, 1704, 1699, 1700, 1710, 1697, 1709, 1696, 1696, 1697, 1708, 1699, 1707, 1707, 1700, 1702, 1712, 1703, 1701, 1700, 1714, 1709, 1713, 1716, 1718, 1705, 1706, 1715, 1704, 1715, 1730, 1712, 1708, 1709, 1725, 1714, 1710, 1708, 1719, 1707, 1722, 1717, 1721, 1712, 1723, 1713, 1717, 1714, 1722, 1713, 1726, 1727, 1728, 1719, 1715, 1716, 1718, 1721, 1725, 1731, 1732, 1725, 1730, 1729, 1733, 1719, 1723, 1722, 1717, 1721, 1729, 1723, 1736, 1738, 1734, 1745, 1726, 1726, 1727, 1728, 1731, 1739, 1732, 1740, 1744, 1733, 1731, 1732, 1742, 1743, 1729, 1733, 1734, 0, 1736, 1746, 1739, 1738, 1747, 1736, 1738, 1734, 1745, 1742, 1743, 1748, 1744, 1749, 1739, 1740, 1740, 1744, 1750, 1746, 1752, 1742, 1743, 1751, 1753, 1750, 1747, 1755, 1746, 1752, 1754, 1747, 1753, 1748, 1756, 1757, 1770, 1760, 1748, 0, 1749, 1751, 1761, 0, 1759, 1750, 1760, 1752, 1757, 1755, 1751, 1753, 1762, 1754, 1755, 1759, 1763, 1754, 1764, 1765, 1761, 1767, 1757, 1770, 1760, 1765, 1756, 1766, 1772, 1761, 1759, 1759, 1776, 1764, 1763, 1767, 1773, 1777, 1762, 1762, 1774, 1778, 1759, 1763, 1776, 1764, 1765, 1773, 1767, 1766, 1777, 1774, 1772, 1780, 1766, 1772, 1779, 1781, 1782, 1776, 1787, 0, 1783, 1773, 1777, 1786, 1779, 1774, 1785, 0, 1789, 0, 1786, 1778, 1799, 1788, 1789, 1793, 1793, 1780, 1780, 1783, 1781, 1779, 1781, 1782, 1787, 1787, 1785, 1783, 1790, 1791, 1786, 1788, 1792, 1785, 1794, 1789, 1795, 1798, 1797, 1799, 1788, 1800, 1793, 1790, 1791, 1797, 1794, 1792, 1802, 1795, 1800, 1801, 1798, 1830, 1807, 1790, 1791, 1795, 1801, 1792, 1803, 1794, 1804, 1795, 1798, 1797, 1806, 0, 1800, 1804, 1809, 1808, 1802, 1812, 1810, 1802, 1795, 1814, 1801, 1807, 1808, 1807, 1803, 1817, 1815, 1830, 1814, 1803, 1806, 1804, 1816, 1812, 1809, 1806, 1810, 1818, 1820, 1809, 1808, 1821, 1812, 1810, 1815, 1818, 1814, 1816, 1822, 1824, 1817, 1826, 1817, 1815, 1821, 1823, 1823, 1827, 1825, 1816, 1828, 0, 1833, 1820, 1818, 1820, 1831, 1829, 1821, 1828, 1837, 1824, 1832, 1826, 1829, 1822, 1824, 1841, 1826, 1827, 1838, 1833, 1823, 1825, 1827, 1825, 1832, 1828, 1831, 1833, 1835, 1836, 1842, 1831, 1829, 1840, 1839, 1837, 1835, 1832, 1843, 1845, 1840, 1847, 1836, 1844, 1838, 1838, 1839, 1841, 1848, 1846, 1850, 1844, 1842, 1849, 0, 1835, 1836, 1842, 1854, 0, 1840, 1839, 1844, 1843, 1846, 1843, 1845, 1847, 1847, 1857, 1844, 1849, 1850, 1851, 1848, 1848, 1846, 1850, 1844, 1858, 1849, 1853, 1851, 1854, 1853, 1854, 1855, 1857, 1856, 1860, 1861, 1864, 1855, 1856, 1858, 1865, 1857, 1862, 1867, 1853, 1851, 1868, 1865, 1866, 1860, 1864, 1858, 0, 1853, 1890, 1868, 1853, 1861, 1855, 1869, 1870, 1860, 1861, 1864, 1862, 1856, 1866, 1865, 1869, 1862, 1867, 1870, 1871, 1868, 1874, 1866, 1872, 1875, 1877, 1879, 1878, 1890, 0, 1876, 1886, 1871, 1869, 1870, 1872, 1874, 1876, 1884, 1875, 1892, 1885, 1882, 1886, 1879, 1885, 1871, 1877, 1874, 1878, 1872, 1875, 1877, 1879, 1878, 1882, 1889, 1876, 1886, 1884, 1888, 1887, 1888, 1882, 1893, 1884, 1891, 1892, 1885, 1882, 1887, 1894, 1893, 1895, 1889, 1896, 1897, 1898, 1899, 1900, 1901, 1897, 1882, 1889, 1891, 1902, 1905, 1888, 1887, 1896, 1906, 1893, 1902, 1891, 1894, 1895, 1907, 1908, 1894, 1901, 1895, 1909, 1896, 1900, 1906, 1910, 1900, 1901, 1897, 1898, 1899, 1912, 1902, 1905, 1907, 1906, 1906, 1906, 1913, 1915, 1910, 1911, 1916, 1907, 1908, 1914, 1917, 1909, 1909, 0, 1911, 1906, 1910, 1919, 1920, 1923, 1921, 1923, 0, 1930, 1913, 1920, 1906, 1912, 1916, 1913, 1915, 1924, 1911, 1916, 1925, 1914, 1914, 1926, 1925, 1928, 1919, 1927, 1917, 1921, 1919, 1920, 1923, 1921, 1928, 1926, 1930, 1929, 1931, 1924, 1933, 1932, 1934, 1934, 1924, 1935, 1940, 1925, 1929, 1927, 1926, 1936, 1928, 1932, 1927, 1937, 1938, 1939, 0, 1936, 1935, 1931, 1933, 0, 1929, 1931, 1939, 1933, 1932, 1934, 1938, 1942, 1935, 1940, 1953, 0, 0, 1937, 1936, 1943, 1944, 1945, 1937, 1938, 1939, 1945, 1946, 1943, 1944, 1946, 1942, 1947, 1952, 1954, 1948, 1949, 1950, 1955, 1942, 1947, 1948, 1953, 1950, 1956, 1952, 1958, 1943, 1944, 1945, 1959, 1949, 1955, 1957, 1946, 1960, 1961, 1956, 1954, 1947, 1952, 1954, 1948, 1949, 1950, 1955, 1963, 1957, 1961, 1965, 1962, 1956, 1958, 1958, 1969, 1971, 1964, 1959, 1966, 1964, 1957, 1969, 1960, 1961, 1962, 1968, 1972, 1973, 1970, 1975, 1971, 1974, 1963, 1963, 1964, 1970, 1965, 1962, 1977, 1974, 1966, 1969, 1971, 1964, 1979, 1966, 1964, 1968, 1976, 1978, 1980, 1981, 1968, 1972, 1973, 1970, 1975, 1976, 1974, 1982, 1984, 1978, 1983, 1987, 1988, 1977, 1979, 1990, 1995, 1993, 1991, 1979, 1982, 1984, 1985, 1976, 1978, 1980, 1981, 1991, 1983, 1992, 1985, 1994, 1989, 1987, 1982, 1984, 1997, 1983, 1987, 1988, 1989, 1993, 1990, 1995, 1993, 1991, 1994, 1996, 1997, 1985, 1992, 1999, 1998, 2003, 2001, 1996, 1992, 1994, 1994, 1989, 1998, 2001, 2002, 1997, 2004, 2003, 2002, 2005, 2006, 2010, 2007, 2008, 2012, 1994, 1996, 2013, 2006, 2011, 1999, 1998, 2003, 2001, 2007, 2008, 2011, 2016, 2016, 2004, 2013, 2002, 2017, 2004, 2012, 2018, 2005, 2006, 2010, 2007, 2008, 2012, 2014, 2015, 2013, 0, 2011, 2019, 2022, 2020, 0, 2014, 2015, 2018, 2016, 2023, 2024, 2026, 2017, 2017, 2029, 2029, 2018, 2022, 2020, 2025, 2020, 2025, 2028, 2014, 2015, 2026, 2019, 2020, 2019, 2022, 2020, 2023, 2024, 2027, 2031, 2032, 2023, 2024, 2026, 2027, 2033, 2029, 2034, 2037, 2028, 2020, 2025, 2020, 2035, 2028, 2036, 2038, 2033, 2039, 2035, 2039, 2031, 2032, 2040, 2041, 2027, 2031, 2032, 2042, 2046, 2037, 2043, 2033, 2047, 2044, 2037, 2045, 2040, 2038, 2034, 2035, 2048, 2046, 2038, 2049, 2039, 2042, 2036, 2041, 2043, 2040, 2041, 2044, 2051, 2045, 2042, 2046, 2053, 2043, 2054, 2051, 2044, 2055, 2045, 2056, 2047, 2059, 2049, 2060, 2061, 2062, 2049, 2056, 2048, 2057, 2053, 2057, 2059, 0, 2060, 2051, 2057, 2062, 2065, 2053, 2054, 2054, 2063, 2070, 2066, 2056, 2056, 2067, 2059, 2055, 2060, 2061, 2062, 2065, 2056, 2066, 2057, 2068, 2057, 2067, 2063, 2071, 2073, 2074, 2077, 2065, 2072, 2070, 2075, 2063, 2070, 2066, 2068, 2072, 2067, 2078, 2079, 2073, 2080, 2081, 2082, 0, 2084, 2071, 2068, 0, 2085, 2083, 2071, 2073, 2074, 2077, 2086, 2072, 2075, 2075, 2087, 2090, 2079, 2078, 2083, 2085, 2078, 2079, 2087, 2086, 2088, 2082, 2084, 2084, 2080, 2081, 2091, 2085, 2083, 2092, 2093, 2094, 2095, 2086, 2090, 2097, 0, 2087, 2090, 2095, 2096, 2098, 2100, 2104, 2101, 2107, 2088, 2088, 2113, 2094, 2091, 2101, 2093, 2091, 2102, 2098, 2092, 2093, 2094, 2095, 2103, 2102, 2097, 2096, 2100, 2105, 2104, 2096, 2098, 2100, 2104, 2101, 2105, 2103, 2106, 2109, 2108, 2107, 2111, 2114, 2113, 2102, 2112, 2115, 2109, 2119, 2118, 2103, 0, 2111, 2120, 2127, 2105, 2121, 2121, 2122, 2106, 2108, 2114, 2118, 2124, 2106, 2109, 2108, 2112, 2111, 2114, 2125, 2115, 2112, 2115, 2119, 2119, 2118, 2120, 2126, 2128, 2120, 2127, 2131, 2121, 2122, 2122, 2124, 2133, 2135, 2136, 2124, 2139, 2143, 2126, 2140, 2140, 2133, 2128, 2141, 0, 2136, 2135, 2125, 2145, 2142, 2126, 2128, 2147, 2148, 2131, 2151, 2149, 0, 2139, 2133, 2135, 2136, 2155, 2139, 2143, 2141, 2140, 2149, 2150, 2162, 2141, 2142, 2154, 2150, 2157, 2145, 2142, 2151, 2153, 2148, 2148, 2158, 2151, 2149, 2147, 2159, 2153, 2154, 2160, 2155, 2163, 2167, 2157, 2164, 2159, 2150, 2162, 2166, 2163, 2154, 2160, 2157, 2164, 2168, 2170, 2153, 2171, 2169, 0, 0, 2172, 2175, 2159, 2158, 2173, 2160, 2169, 2163, 2167, 2174, 2164, 2176, 2170, 2166, 2166, 2168, 2175, 2173, 2171, 2177, 2168, 2170, 2174, 2171, 2169, 2172, 2177, 2172, 2175, 2178, 2179, 2173, 2180, 2176, 2181, 2182, 2174, 2183, 2176, 2184, 2188, 2185, 0, 2186, 0, 2187, 2177, 2190, 2184, 2191, 2189, 2178, 2183, 2192, 2190, 2188, 2178, 2179, 2194, 2180, 2191, 2181, 2182, 2185, 2183, 2189, 2184, 2188, 2185, 2186, 2186, 2187, 2187, 2193, 2190, 2195, 2191, 2189, 2196, 2198, 2192, 2193, 2197, 2199, 2200, 2194, 2201, 2204, 2202, 2203, 0, 2200, 0, 2208, 2196, 2202, 2203, 2197, 2199, 2198, 2193, 2205, 2195, 2206, 2206, 2196, 2198, 2208, 2201, 2197, 2199, 2200, 2210, 2201, 2204, 2202, 2203, 2207, 2209, 2205, 2208, 2209, 2211, 2212, 2207, 2210, 2213, 2216, 2205, 2217, 2206, 2214, 0, 2218, 2217, 2219, 2216, 2218, 2213, 2210, 2223, 2212, 2220, 2214, 2207, 2209, 2221, 0, 2211, 2211, 2212, 2224, 2222, 2213, 2216, 2220, 2217, 2225, 2214, 2219, 2218, 2227, 2219, 2229, 2231, 2234, 2230, 2223, 2221, 2220, 0, 2236, 2234, 2221, 2222, 2230, 2236, 2232, 2224, 2222, 2231, 2238, 2243, 2225, 2225, 2232, 2235, 2227, 2227, 2229, 2229, 2231, 2234, 2230, 2237, 2235, 2239, 2240, 2236, 2238, 2241, 2237, 2244, 2239, 2232, 2246, 2240, 2244, 2238, 2243, 2245, 2249, 2248, 2235, 2252, 0, 2250, 0, 0, 2258, 2260, 2237, 2251, 2239, 2240, 2250, 2241, 2241, 2245, 2244, 2248, 2251, 2246, 2253, 2252, 2254, 2256, 2245, 2249, 2248, 2257, 2252, 2255, 2250, 2254, 2253, 2258, 2256, 2257, 2251, 2259, 2255, 2260, 2262, 2264, 2261, 2269, 2267, 2263, 2271, 2253, 2265, 2254, 2256, 2261, 2262, 2263, 2257, 2265, 2255, 2268, 2266, 0, 0, 2270, 2275, 2264, 2259, 2266, 2267, 2262, 2264, 2261, 2269, 2267, 2263, 2271, 2278, 2265, 2279, 2277, 2286, 2273, 2275, 2278, 2268, 2276, 2268, 2266, 2270, 2273, 2270, 2275, 2280, 2276, 2277, 2284, 2281, 2285, 2287, 2280, 2279, 2289, 2284, 2278, 2281, 2279, 2277, 2286, 2273, 2288, 2287, 2290, 2276, 2294, 2292, 2295, 2293, 2299, 2288, 2280, 2297, 2285, 2284, 2281, 2285, 2287, 2292, 2297, 2289, 2295, 2298, 2301, 2302, 2303, 2290, 2304, 2288, 2298, 2290, 2293, 2294, 2292, 2295, 2293, 2299, 2305, 2301, 2297, 2306, 2307, 2302, 2308, 2309, 2305, 2311, 2310, 2303, 2298, 2301, 2302, 2303, 2316, 2304, 2309, 2318, 0, 2319, 2321, 2317, 2308, 2310, 2307, 2305, 2317, 2322, 2306, 2307, 2323, 2308, 2309, 2319, 2311, 2310, 2320, 2324, 2321, 2326, 2316, 2316, 2331, 2329, 2318, 2322, 2319, 2321, 2317, 2324, 2320, 2330, 2332, 2333, 2322, 2331, 2336, 2323, 2335, 2334, 2339, 2342, 0, 2320, 2324, 2329, 2326, 2334, 2340, 2331, 2329, 2343, 2333, 2330, 2332, 2336, 2335, 2338, 2330, 2332, 2333, 2341, 2339, 2336, 2348, 2335, 2334, 2339, 2342, 2338, 2340, 2344, 2345, 2341, 2346, 2340, 2347, 2351, 2343, 2350, 2349, 0, 2353, 2346, 2338, 2347, 2352, 2354, 2341, 2351, 2358, 2344, 2359, 2361, 2345, 2360, 2348, 2357, 2344, 2345, 2360, 2346, 2349, 2347, 2351, 2350, 2350, 2349, 2352, 2353, 2362, 2357, 2363, 2352, 2354, 2361, 2359, 2358, 2364, 2359, 2361, 2365, 2366, 2367, 2357, 0, 0, 2360, 2368, 2369, 2372, 2370, 2362, 0, 0, 2367, 2373, 2362, 2375, 2377, 2366, 2364, 2378, 2365, 2363, 2364, 2370, 2368, 2365, 2366, 2367, 2369, 2372, 2375, 2381, 2368, 2369, 2372, 2370, 2379, 2373, 2377, 2380, 2373, 2378, 2375, 2377, 2382, 2379, 2378, 2383, 2387, 2381, 2384, 2390, 2388, 2380, 2392, 2393, 2387, 2389, 2381, 2388, 2394, 2391, 2382, 2379, 0, 2389, 2380, 2393, 2384, 2391, 2401, 2382, 2392, 2383, 2383, 2387, 2400, 2384, 2390, 2388, 2397, 2392, 2393, 2395, 2389, 2403, 2399, 2394, 2391, 2406, 2404, 2395, 2397, 2399, 2402, 2405, 2402, 2401, 2411, 2400, 0, 2407, 2408, 2400, 0, 2410, 2414, 2397, 2413, 2418, 2395, 2417, 2411, 2399, 2415, 2419, 2406, 2403, 2421, 2414, 2407, 2402, 2404, 2410, 2408, 2411, 2415, 2405, 2407, 2408, 2422, 2413, 2410, 2414, 2423, 2413, 2418, 2417, 2417, 2425, 2427, 2415, 2419, 2428, 2429, 2421, 2430, 2427, 2432, 0, 2433, 2430, 2435, 2422, 2436, 2432, 2423, 2422, 2437, 2429, 2438, 2423, 2442, 2440, 2443, 2428, 2425, 2427, 2444, 2442, 2428, 2429, 2440, 2445, 2438, 2432, 2433, 2433, 2430, 2435, 2446, 2436, 2437, 2447, 2448, 2437, 2450, 2438, 2449, 2442, 2440, 2443, 2446, 2451, 2444, 2444, 2452, 2449, 2448, 2450, 2445, 2453, 2457, 2456, 2463, 2458, 2457, 2446, 2456, 2459, 2447, 2448, 2458, 2450, 2461, 2449, 2459, 2460, 2462, 0, 2462, 2464, 2469, 2452, 2453, 2451, 2470, 2463, 2453, 2457, 2467, 2463, 2458, 2476, 2473, 2456, 2459, 2472, 2460, 2472, 2475, 2469, 2476, 2479, 2460, 2462, 2461, 2477, 2464, 2469, 2470, 2484, 2467, 2470, 2477, 2474, 2474, 2467, 2473, 2478, 2476, 2473, 2475, 2480, 2472, 2474, 2481, 2475, 2482, 2483, 2479, 2480, 2478, 2482, 2477, 2485, 2489, 2483, 2484, 2486, 0, 2487, 2474, 2474, 2488, 2481, 2478, 2489, 2491, 0, 2480, 2490, 2494, 2481, 2493, 2491, 2483, 2492, 2492, 2494, 2482, 2485, 2485, 2489, 2497, 2486, 2486, 2487, 2487, 2495, 2488, 2488, 2493, 2490, 2498, 2491, 2495, 2499, 2490, 2494, 2501, 2493, 2502, 2503, 2492, 2506, 2499, 2507, 2508, 2504, 2509, 2497, 2512, 0, 2511, 2513, 2495, 0, 2498, 0, 2523, 2498, 2502, 2511, 2499, 2507, 2508, 2501, 2509, 2502, 2503, 2504, 2506, 2514, 2507, 2508, 2504, 2509, 2513, 2512, 2515, 2511, 2513, 2516, 2517, 2518, 2522, 2523, 2516, 2525, 2528, 2514, 2515, 2526, 2527, 2531, 2527, 0, 2517, 2528, 2514, 2530, 2534, 2518, 2534, 2535, 2526, 2515, 2522, 2537, 2531, 2517, 2518, 2522, 2559, 2516, 2525, 2528, 2536, 2530, 2526, 2527, 2531, 2535, 2539, 2536, 2543, 2541, 2530, 2534, 2544, 2546, 2535, 2541, 2545, 2551, 2552, 2548, 2553, 2539, 2549, 2537, 0, 2549, 0, 2536, 2559, 2556, 2543, 2546, 2554, 2539, 2544, 2543, 2541, 2556, 2557, 2544, 2546, 2548, 2545, 2545, 2551, 2552, 2548, 2553, 2549, 2549, 2554, 2555, 2549, 2560, 2561, 2562, 2556, 2563, 2555, 2554, 2557, 2564, 2566, 2565, 2567, 2557, 2563, 2564, 2568, 0, 2568, 2566, 2569, 2575, 2572, 2560, 2561, 0, 2555, 2571, 2560, 2561, 2562, 2577, 2563, 2565, 2572, 2571, 2564, 2566, 2565, 2573, 2579, 2578, 2580, 2568, 2567, 2577, 2573, 2569, 2575, 2572, 2581, 2582, 2583, 2584, 2571, 2578, 2585, 2585, 2577, 2582, 2580, 2581, 2586, 2579, 2587, 2589, 2573, 2579, 2578, 2580, 2590, 2583, 2587, 2594, 2596, 2584, 2592, 2581, 2582, 2583, 2584, 0, 2592, 2585, 2597, 2596, 2599, 2598, 2601, 2586, 2603, 2587, 2589, 2606, 2603, 2597, 2604, 2590, 2598, 2602, 2594, 2596, 2608, 2592, 2604, 2607, 2602, 2612, 2599, 2611, 2615, 2597, 0, 2599, 2598, 2601, 2611, 2603, 2607, 2606, 2606, 2613, 2614, 2604, 2616, 2618, 2602, 2614, 2617, 2608, 2619, 2622, 2607, 2621, 2623, 2617, 2611, 2615, 2620, 2612, 2621, 2626, 2623, 2613, 2618, 2627, 2619, 2624, 2613, 2614, 2628, 2616, 2618, 2635, 2636, 2617, 2620, 2619, 2632, 2625, 2621, 2623, 2624, 2622, 2634, 2620, 2625, 2637, 2626, 2627, 2638, 2618, 2627, 2632, 2624, 2633, 2628, 2628, 2636, 2638, 2635, 2636, 2633, 2640, 2641, 2632, 2625, 2642, 2643, 2645, 2644, 2644, 2647, 0, 2649, 2642, 2634, 2638, 2651, 2637, 2644, 2648, 2633, 2652, 2653, 2640, 2641, 2655, 0, 2648, 2640, 2641, 2649, 2656, 2642, 2657, 2645, 2644, 2644, 2647, 2643, 2649, 2654, 2658, 2659, 2651, 2653, 2661, 2648, 2655, 2652, 2653, 2666, 2664, 2655, 2654, 2669, 2666, 2667, 2668, 2656, 2664, 2657, 2667, 2668, 2671, 2659, 2675, 2672, 2654, 2658, 2659, 2674, 2677, 2661, 2680, 2683, 2673, 0, 2666, 2664, 2672, 2669, 2669, 2673, 2667, 2668, 2685, 2686, 2678, 2674, 2688, 2671, 2679, 2675, 2672, 2678, 2680, 2687, 2674, 2690, 2679, 2680, 2683, 2673, 2677, 2689, 2691, 2692, 2696, 2686, 2687, 0, 2697, 2685, 2686, 2678, 2694, 2698, 2690, 2679, 2689, 2695, 2688, 2694, 2687, 2705, 2690, 2697, 2695, 2692, 2696, 2700, 2689, 2691, 2692, 2696, 2705, 2701, 2698, 2697, 2702, 2715, 2703, 2694, 2698, 2701, 2704, 2702, 2695, 2703, 2700, 2707, 2705, 2706, 2706, 2704, 2712, 2707, 2700, 2711, 2708, 2716, 2717, 2706, 2701, 2721, 2711, 2702, 2715, 2703, 2712, 2723, 2727, 2704, 2724, 2724, 2725, 2725, 2707, 2729, 2706, 2706, 2708, 2712, 2730, 2717, 2711, 2708, 2716, 2717, 2726, 2726, 2721, 2730, 2731, 2727, 2735, 2733, 2723, 2727, 2736, 2734, 2740, 2724, 2733, 2725, 2729, 2731, 2734, 2741, 2739, 2730, 2739, 2742, 2743, 2746, 2745, 2748, 2735, 2726, 2747, 2731, 2740, 2735, 2733, 2745, 2743, 2736, 2734, 2740, 2749, 2742, 2741, 2746, 2751, 2754, 2741, 2739, 2750, 0, 2742, 2743, 2746, 2745, 2748, 2752, 2747, 2747, 2752, 2753, 2750, 2755, 2756, 2755, 2753, 2758, 2751, 2749, 2759, 2761, 2757, 2751, 2760, 2752, 2756, 2750, 2757, 2754, 2762, 2765, 2760, 2768, 2752, 2769, 2770, 2752, 2771, 2758, 2755, 2756, 2759, 2753, 2758, 2772, 2773, 2759, 2761, 2757, 2774, 2760, 2762, 2776, 2777, 2779, 2778, 2762, 2765, 2780, 2768, 2782, 2769, 2770, 2783, 2771, 2780, 2784, 2789, 2782, 2779, 2776, 2772, 2773, 2778, 2785, 2793, 2774, 2786, 2784, 2776, 2777, 2779, 2778, 2787, 2788, 2780, 2792, 2782, 2785, 2795, 2783, 2796, 2786, 2784, 2789, 2792, 2788, 2794, 2794, 2793, 2796, 2785, 2793, 2798, 2786, 2799, 2800, 2801, 2803, 2787, 2787, 2788, 2802, 2792, 2804, 2795, 2795, 2803, 2796, 2800, 2802, 2815, 2817, 2818, 2794, 2804, 2806, 2798, 2819, 2801, 2798, 2820, 2861, 2800, 2801, 2803, 2817, 2799, 2806, 2802, 2822, 2804, 2823, 2824, 2822, 2815, 2826, 2825, 2815, 2817, 2818, 2831, 2828, 2806, 2825, 2819, 2828, 0, 2820, 2826, 2823, 2829, 2830, 2832, 2861, 2833, 2824, 2822, 2834, 2823, 2824, 0, 2835, 2826, 2825, 2832, 2831, 2829, 2831, 2828, 2835, 2838, 2834, 2838, 2830, 2836, 2837, 2842, 2829, 2830, 2832, 2833, 2833, 2839, 2836, 2834, 2840, 2837, 2846, 2835, 2841, 2848, 2840, 2847, 2849, 2839, 2850, 2841, 2838, 2842, 2847, 2846, 2836, 2837, 2842, 2851, 2852, 2853, 2854, 2859, 2839, 2859, 2849, 2840, 2856, 2846, 2854, 2841, 2848, 2855, 2847, 2849, 2857, 2850, 2862, 2858, 2855, 2860, 2864, 2867, 2865, 2851, 2851, 2852, 2853, 2854, 2859, 2862, 2856, 2860, 2866, 2856, 2865, 2863, 2857, 2874, 2855, 2858, 2866, 2857, 2863, 2862, 2858, 2869, 2860, 2864, 2867, 2865, 2875, 2871, 2876, 2877, 2878, 2879, 2880, 2869, 2882, 2866, 2871, 2877, 2863, 2883, 2874, 2889, 2882, 2881, 2885, 2880, 0, 2876, 2869, 2905, 2885, 2886, 2875, 2875, 2871, 2876, 2877, 2881, 2886, 2880, 2888, 2882, 2878, 2879, 2889, 2891, 2883, 2892, 2889, 2893, 2881, 2885, 2891, 2888, 2894, 2896, 2895, 2893, 2886, 0, 2903, 2905, 2897, 2896, 2898, 0, 2900, 2888, 2894, 2892, 2895, 2901, 2891, 2900, 2892, 2904, 2893, 2902, 0, 2906, 2901, 2894, 2896, 2895, 2897, 2902, 2898, 2903, 2907, 2897, 2908, 2898, 2909, 2900, 2911, 2910, 2912, 2904, 2901, 0, 2914, 2916, 2904, 2910, 2902, 2906, 2906, 2913, 2917, 2921, 2907, 2918, 2908, 2919, 2909, 2907, 2917, 2908, 2923, 2909, 2925, 2919, 2910, 2912, 2916, 2920, 2911, 2914, 2916, 2913, 2927, 2918, 2923, 2920, 2913, 2917, 2922, 2929, 2918, 0, 2919, 2921, 2930, 2934, 2922, 2923, 2925, 2925, 2928, 0, 2930, 2928, 2920, 2931, 2932, 0, 2933, 2927, 2935, 2929, 2938, 2931, 2940, 2922, 2929, 2934, 2928, 2941, 2932, 2930, 2934, 2939, 2935, 2937, 2937, 2928, 2943, 2942, 2928, 2939, 2931, 2932, 2933, 2933, 2944, 2935, 2938, 2938, 2940, 2940, 2945, 2946, 2944, 2941, 2941, 2947, 2943, 2948, 2939, 2942, 2937, 2949, 2951, 2943, 2942, 2950, 2953, 2955, 2952, 2958, 2951, 2944, 2964, 2946, 2953, 2956, 2959, 2945, 2946, 2960, 2947, 2949, 2947, 2956, 2948, 2950, 2962, 2960, 2949, 2951, 2952, 2958, 2950, 2953, 2955, 2952, 2958, 2961, 2959, 2964, 2965, 2966, 2956, 2959, 2967, 2961, 2960, 2968, 2965, 2966, 2971, 2972, 2962, 2962, 2979, 2969, 2973, 2975, 2978, 2981, 2982, 2980, 2979, 0, 2961, 0, 0, 2965, 2966, 2980, 2967, 2967, 0, 0, 2968, 2969, 2973, 2971, 2972, 2975, 2978, 2979, 2969, 2973, 2975, 2978, 2981, 2982, 2980, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2989, 2989, 2989, 2989, 2989, 2989, 2989, 2990, 2990, 2990, 2990, 2990, 2990, 2990, 2992, 2992, 0, 2992, 2992, 2992, 2992, 2993, 2993, 0, 0, 0, 2993, 2993, 2994, 2994, 0, 0, 2994, 0, 2994, 2995, 0, 0, 0, 0, 0, 2995, 2996, 2996, 0, 0, 0, 2996, 2996, 2997, 0, 0, 0, 0, 0, 2997, 2998, 2998, 0, 2998, 2998, 2998, 2998, 2999, 2999, 0, 2999, 2999, 2999, 2999, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; extern int yy_flex_debug; int yy_flex_debug = 0; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected static int yy_more_flag = 0; static int yy_more_len = 0; #define yymore() ((yy_more_flag) = 1) #define YY_MORE_ADJ (yy_more_len) #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "util/configlexer.lex" #line 2 "util/configlexer.lex" /* * configlexer.lex - lexical analyzer for unbound config file * * Copyright (c) 2001-2006, NLnet Labs. All rights reserved * * See LICENSE for the license. * */ /* because flex keeps having sign-unsigned compare problems that are unfixed*/ #if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2)))) #pragma GCC diagnostic ignored "-Wsign-compare" #endif #include #include #ifdef HAVE_GLOB_H # include #endif #include "util/config_file.h" #include "util/configparser.h" void ub_c_error(const char *message); #if 0 #define LEXOUT(s) printf s /* used ONLY when debugging */ #else #define LEXOUT(s) #endif /** avoid warning in about fwrite return value */ #define ECHO ub_c_error_msg("syntax error at text: %s", yytext) /** A parser variable, this is a statement in the config file which is * of the form variable: value1 value2 ... nargs is the number of values. */ #define YDVAR(nargs, var) \ num_args=(nargs); \ LEXOUT(("v(%s%d) ", yytext, num_args)); \ if(num_args > 0) { BEGIN(val); } \ return (var); struct inc_state { char* filename; int line; YY_BUFFER_STATE buffer; struct inc_state* next; }; static struct inc_state* config_include_stack = NULL; static int inc_depth = 0; static int inc_prev = 0; static int num_args = 0; void init_cfg_parse(void) { config_include_stack = NULL; inc_depth = 0; inc_prev = 0; num_args = 0; } static void config_start_include(const char* filename) { FILE *input; struct inc_state* s; char* nm; if(inc_depth++ > 100000) { ub_c_error_msg("too many include files"); return; } if(*filename == '\0') { ub_c_error_msg("empty include file name"); return; } s = (struct inc_state*)malloc(sizeof(*s)); if(!s) { ub_c_error_msg("include %s: malloc failure", filename); return; } if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } nm = strdup(filename); if(!nm) { ub_c_error_msg("include %s: strdup failure", filename); free(s); return; } input = fopen(filename, "r"); if(!input) { ub_c_error_msg("cannot open include file '%s': %s", filename, strerror(errno)); free(s); free(nm); return; } LEXOUT(("switch_to_include_file(%s)\n", filename)); s->filename = cfg_parser->filename; s->line = cfg_parser->line; s->buffer = YY_CURRENT_BUFFER; s->next = config_include_stack; config_include_stack = s; cfg_parser->filename = nm; cfg_parser->line = 1; yy_switch_to_buffer(yy_create_buffer(input, YY_BUF_SIZE)); } static void config_start_include_glob(const char* filename) { /* check for wildcards */ #ifdef HAVE_GLOB glob_t g; int i, r, flags; if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') && !strchr(filename, '{') && !strchr(filename, '~'))) { flags = 0 #ifdef GLOB_ERR | GLOB_ERR #endif /* do not set GLOB_NOSORT so the results are sorted and in a predictable order. */ #ifdef GLOB_BRACE | GLOB_BRACE #endif #ifdef GLOB_TILDE | GLOB_TILDE #endif ; memset(&g, 0, sizeof(g)); if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } r = glob(filename, flags, NULL, &g); if(r) { /* some error */ globfree(&g); if(r == GLOB_NOMATCH) return; /* no matches for pattern */ config_start_include(filename); /* let original deal with it */ return; } /* process files found, if any */ for(i=(int)g.gl_pathc-1; i>=0; i--) { config_start_include(g.gl_pathv[i]); } globfree(&g); return; } #endif /* HAVE_GLOB */ config_start_include(filename); } static void config_end_include(void) { struct inc_state* s = config_include_stack; --inc_depth; if(!s) return; free(cfg_parser->filename); cfg_parser->filename = s->filename; cfg_parser->line = s->line; yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(s->buffer); config_include_stack = s->next; free(s); } #ifndef yy_set_bol /* compat definition, for flex 2.4.6 */ #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \ } #endif #line 3491 "" #define YY_NO_INPUT 1 #line 184 "util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 3500 "" #line 3502 "" #define INITIAL 0 #define quotedstring 1 #define singlequotedstr 2 #define include 3 #define include_quoted 4 #define val 5 #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 ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy ( void ); int yyget_debug ( void ); void yyset_debug ( int debug_flag ); YY_EXTRA_TYPE yyget_extra ( void ); void yyset_extra ( YY_EXTRA_TYPE user_defined ); FILE *yyget_in ( void ); void yyset_in ( FILE * _in_str ); FILE *yyget_out ( void ); void yyset_out ( FILE * _out_str ); int yyget_leng ( void ); char *yyget_text ( void ); int yyget_lineno ( void ); void yyset_lineno ( int _line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap ( void ); #else extern int yywrap ( void ); #endif #endif #ifndef YY_NO_UNPUT #endif #ifndef yytext_ptr static void yy_flex_strncpy ( char *, const char *, int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen ( const char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput ( void ); #else static int input ( void ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k */ #define YY_READ_BUF_SIZE 16384 #else #define YY_READ_BUF_SIZE 8192 #endif /* __ia64__ */ #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 do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ int n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #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_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. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK /*LINTED*/break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { yy_state_type yy_current_state; char *yy_cp, *yy_bp; int yy_act; if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer( yyin, YY_BUF_SIZE ); } yy_load_buffer_state( ); } { #line 204 "util/configlexer.lex" #line 3724 "" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { (yy_more_len) = 0; if ( (yy_more_flag) ) { (yy_more_len) = (int) ((yy_c_buf_p) - (yytext_ptr)); (yy_more_flag) = 0; } yy_cp = (yy_c_buf_p); /* Support of yytext. */ *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_match: do { YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } 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 >= 2986 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 8475 ); yy_find_action: yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); yy_act = 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 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: YY_RULE_SETUP #line 205 "util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 207 "util/configlexer.lex" { /* note that flex makes the longest match and '.' is any but not nl */ LEXOUT(("comment(%s) ", yytext)); /* ignore */ } YY_BREAK case 3: YY_RULE_SETUP #line 210 "util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 211 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION) } YY_BREAK case 5: YY_RULE_SETUP #line 212 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) } YY_BREAK case 6: YY_RULE_SETUP #line 213 "util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 7: YY_RULE_SETUP #line 214 "util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 8: YY_RULE_SETUP #line 215 "util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 9: YY_RULE_SETUP #line 216 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 10: YY_RULE_SETUP #line 217 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 11: YY_RULE_SETUP #line 218 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 12: YY_RULE_SETUP #line 219 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 13: YY_RULE_SETUP #line 220 "util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 14: YY_RULE_SETUP #line 221 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 15: YY_RULE_SETUP #line 222 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 16: YY_RULE_SETUP #line 223 "util/configlexer.lex" { YDVAR(1, VAR_PREFER_IP6) } YY_BREAK case 17: YY_RULE_SETUP #line 224 "util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 18: YY_RULE_SETUP #line 225 "util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 19: YY_RULE_SETUP #line 226 "util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 20: YY_RULE_SETUP #line 227 "util/configlexer.lex" { YDVAR(1, VAR_TCP_MSS) } YY_BREAK case 21: YY_RULE_SETUP #line 228 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_TCP_MSS) } YY_BREAK case 22: YY_RULE_SETUP #line 229 "util/configlexer.lex" { YDVAR(1, VAR_TCP_IDLE_TIMEOUT) } YY_BREAK case 23: YY_RULE_SETUP #line 230 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) } YY_BREAK case 24: YY_RULE_SETUP #line 231 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) } YY_BREAK case 25: YY_RULE_SETUP #line 232 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 26: YY_RULE_SETUP #line 233 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 27: YY_RULE_SETUP #line 234 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 28: YY_RULE_SETUP #line 235 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 29: YY_RULE_SETUP #line 236 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 30: YY_RULE_SETUP #line 237 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 31: YY_RULE_SETUP #line 238 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 32: YY_RULE_SETUP #line 239 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 33: YY_RULE_SETUP #line 240 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 34: YY_RULE_SETUP #line 241 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 35: YY_RULE_SETUP #line 242 "util/configlexer.lex" { YDVAR(1, VAR_TLS_WIN_CERT) } YY_BREAK case 36: YY_RULE_SETUP #line 243 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 37: YY_RULE_SETUP #line 244 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 38: YY_RULE_SETUP #line 245 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 39: YY_RULE_SETUP #line 246 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 40: YY_RULE_SETUP #line 247 "util/configlexer.lex" { YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) } YY_BREAK case 41: YY_RULE_SETUP #line 248 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CIPHERS) } YY_BREAK case 42: YY_RULE_SETUP #line 249 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CIPHERSUITES) } YY_BREAK case 43: YY_RULE_SETUP #line 250 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSTEMD) } YY_BREAK case 44: YY_RULE_SETUP #line 251 "util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 45: YY_RULE_SETUP #line 252 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 46: YY_RULE_SETUP #line 253 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 47: YY_RULE_SETUP #line 254 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 48: YY_RULE_SETUP #line 255 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 49: YY_RULE_SETUP #line 256 "util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 50: YY_RULE_SETUP #line 257 "util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 51: YY_RULE_SETUP #line 258 "util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 52: YY_RULE_SETUP #line 259 "util/configlexer.lex" { YDVAR(1, VAR_IP_TRANSPARENT) } YY_BREAK case 53: YY_RULE_SETUP #line 260 "util/configlexer.lex" { YDVAR(1, VAR_IP_FREEBIND) } YY_BREAK case 54: YY_RULE_SETUP #line 261 "util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 55: YY_RULE_SETUP #line 262 "util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 56: YY_RULE_SETUP #line 263 "util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 57: YY_RULE_SETUP #line 264 "util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 58: YY_RULE_SETUP #line 265 "util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 59: YY_RULE_SETUP #line 266 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 60: YY_RULE_SETUP #line 267 "util/configlexer.lex" { YDVAR(1, VAR_STREAM_WAIT_SIZE) } YY_BREAK case 61: YY_RULE_SETUP #line 268 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 62: YY_RULE_SETUP #line 269 "util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 63: YY_RULE_SETUP #line 270 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 64: YY_RULE_SETUP #line 271 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 65: YY_RULE_SETUP #line 272 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 66: YY_RULE_SETUP #line 273 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 67: YY_RULE_SETUP #line 274 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 68: YY_RULE_SETUP #line 275 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } YY_BREAK case 69: YY_RULE_SETUP #line 276 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 70: YY_RULE_SETUP #line 277 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 71: YY_RULE_SETUP #line 278 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 72: YY_RULE_SETUP #line 279 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 73: YY_RULE_SETUP #line 280 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 74: YY_RULE_SETUP #line 281 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 75: YY_RULE_SETUP #line 282 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 76: YY_RULE_SETUP #line 283 "util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 77: YY_RULE_SETUP #line 284 "util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 78: YY_RULE_SETUP #line 285 "util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 79: YY_RULE_SETUP #line 286 "util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 80: YY_RULE_SETUP #line 287 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 81: YY_RULE_SETUP #line 288 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 82: YY_RULE_SETUP #line 289 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 83: YY_RULE_SETUP #line 290 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 84: YY_RULE_SETUP #line 291 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 85: YY_RULE_SETUP #line 292 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 86: YY_RULE_SETUP #line 293 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 87: YY_RULE_SETUP #line 294 "util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 88: YY_RULE_SETUP #line 295 "util/configlexer.lex" { YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 89: YY_RULE_SETUP #line 296 "util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 90: YY_RULE_SETUP #line 297 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 91: YY_RULE_SETUP #line 298 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 92: YY_RULE_SETUP #line 299 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 93: YY_RULE_SETUP #line 300 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 94: YY_RULE_SETUP #line 301 "util/configlexer.lex" { YDVAR(1, VAR_DENY_ANY) } YY_BREAK case 95: YY_RULE_SETUP #line 302 "util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 96: YY_RULE_SETUP #line 303 "util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 97: YY_RULE_SETUP #line 304 "util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 98: YY_RULE_SETUP #line 305 "util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 99: YY_RULE_SETUP #line 306 "util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 100: YY_RULE_SETUP #line 307 "util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 101: YY_RULE_SETUP #line 308 "util/configlexer.lex" { YDVAR(1, VAR_STUB_NO_CACHE) } YY_BREAK case 102: YY_RULE_SETUP #line 309 "util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 103: YY_RULE_SETUP #line 310 "util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 104: YY_RULE_SETUP #line 311 "util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 105: YY_RULE_SETUP #line 312 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 106: YY_RULE_SETUP #line 313 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 107: YY_RULE_SETUP #line 314 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 108: YY_RULE_SETUP #line 315 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_NO_CACHE) } YY_BREAK case 109: YY_RULE_SETUP #line 316 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 110: YY_RULE_SETUP #line 317 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 111: YY_RULE_SETUP #line 318 "util/configlexer.lex" { YDVAR(0, VAR_AUTH_ZONE) } YY_BREAK case 112: YY_RULE_SETUP #line 319 "util/configlexer.lex" { YDVAR(0, VAR_RPZ) } YY_BREAK case 113: YY_RULE_SETUP #line 320 "util/configlexer.lex" { YDVAR(1, VAR_TAGS) } YY_BREAK case 114: YY_RULE_SETUP #line 321 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_ACTION_OVERRIDE) } YY_BREAK case 115: YY_RULE_SETUP #line 322 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_CNAME_OVERRIDE) } YY_BREAK case 116: YY_RULE_SETUP #line 323 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_LOG) } YY_BREAK case 117: YY_RULE_SETUP #line 324 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_LOG_NAME) } YY_BREAK case 118: YY_RULE_SETUP #line 325 "util/configlexer.lex" { YDVAR(1, VAR_ZONEFILE) } YY_BREAK case 119: YY_RULE_SETUP #line 326 "util/configlexer.lex" { YDVAR(1, VAR_MASTER) } YY_BREAK case 120: YY_RULE_SETUP #line 327 "util/configlexer.lex" { YDVAR(1, VAR_URL) } YY_BREAK case 121: YY_RULE_SETUP #line 328 "util/configlexer.lex" { YDVAR(1, VAR_ALLOW_NOTIFY) } YY_BREAK case 122: YY_RULE_SETUP #line 329 "util/configlexer.lex" { YDVAR(1, VAR_FOR_DOWNSTREAM) } YY_BREAK case 123: YY_RULE_SETUP #line 330 "util/configlexer.lex" { YDVAR(1, VAR_FOR_UPSTREAM) } YY_BREAK case 124: YY_RULE_SETUP #line 331 "util/configlexer.lex" { YDVAR(1, VAR_FALLBACK_ENABLED) } YY_BREAK case 125: YY_RULE_SETUP #line 332 "util/configlexer.lex" { YDVAR(0, VAR_VIEW) } YY_BREAK case 126: YY_RULE_SETUP #line 333 "util/configlexer.lex" { YDVAR(1, VAR_VIEW_FIRST) } YY_BREAK case 127: YY_RULE_SETUP #line 334 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 128: YY_RULE_SETUP #line 335 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 129: YY_RULE_SETUP #line 336 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 130: YY_RULE_SETUP #line 337 "util/configlexer.lex" { YDVAR(1, VAR_SEND_CLIENT_SUBNET) } YY_BREAK case 131: YY_RULE_SETUP #line 338 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ZONE) } YY_BREAK case 132: YY_RULE_SETUP #line 339 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) } YY_BREAK case 133: YY_RULE_SETUP #line 340 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) } YY_BREAK case 134: YY_RULE_SETUP #line 341 "util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) } YY_BREAK case 135: YY_RULE_SETUP #line 342 "util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) } YY_BREAK case 136: YY_RULE_SETUP #line 343 "util/configlexer.lex" { YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) } YY_BREAK case 137: YY_RULE_SETUP #line 344 "util/configlexer.lex" { YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) } YY_BREAK case 138: YY_RULE_SETUP #line 345 "util/configlexer.lex" { YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) } YY_BREAK case 139: YY_RULE_SETUP #line 346 "util/configlexer.lex" { YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) } YY_BREAK case 140: YY_RULE_SETUP #line 347 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 141: YY_RULE_SETUP #line 348 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 142: YY_RULE_SETUP #line 349 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_TRUSTANCHOR) } YY_BREAK case 143: YY_RULE_SETUP #line 350 "util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 144: YY_RULE_SETUP #line 351 "util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 145: YY_RULE_SETUP #line 352 "util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 146: YY_RULE_SETUP #line 353 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 147: YY_RULE_SETUP #line 354 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 148: YY_RULE_SETUP #line 355 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 149: YY_RULE_SETUP #line 356 "util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 150: YY_RULE_SETUP #line 357 "util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 151: YY_RULE_SETUP #line 358 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 152: YY_RULE_SETUP #line 359 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) } YY_BREAK case 153: YY_RULE_SETUP #line 360 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_KEY_SENTINEL) } YY_BREAK case 154: YY_RULE_SETUP #line 361 "util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 155: YY_RULE_SETUP #line 362 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 156: YY_RULE_SETUP #line 363 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 157: YY_RULE_SETUP #line 364 "util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 158: YY_RULE_SETUP #line 365 "util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 159: YY_RULE_SETUP #line 366 "util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 160: YY_RULE_SETUP #line 367 "util/configlexer.lex" { YDVAR(1, VAR_AGGRESSIVE_NSEC) } YY_BREAK case 161: YY_RULE_SETUP #line 368 "util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 162: YY_RULE_SETUP #line 369 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED) } YY_BREAK case 163: YY_RULE_SETUP #line 370 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_TTL) } YY_BREAK case 164: YY_RULE_SETUP #line 371 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) } YY_BREAK case 165: YY_RULE_SETUP #line 372 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_REPLY_TTL) } YY_BREAK case 166: YY_RULE_SETUP #line 373 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_CLIENT_TIMEOUT) } YY_BREAK case 167: YY_RULE_SETUP #line 374 "util/configlexer.lex" { YDVAR(1, VAR_FAKE_DSA) } YY_BREAK case 168: YY_RULE_SETUP #line 375 "util/configlexer.lex" { YDVAR(1, VAR_FAKE_SHA1) } YY_BREAK case 169: YY_RULE_SETUP #line 376 "util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 170: YY_RULE_SETUP #line 377 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 171: YY_RULE_SETUP #line 378 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 172: YY_RULE_SETUP #line 379 "util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 173: YY_RULE_SETUP #line 380 "util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 174: YY_RULE_SETUP #line 382 "util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 175: YY_RULE_SETUP #line 383 "util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 176: YY_RULE_SETUP #line 384 "util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 177: YY_RULE_SETUP #line 385 "util/configlexer.lex" { YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) } YY_BREAK case 178: YY_RULE_SETUP #line 386 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 179: YY_RULE_SETUP #line 387 "util/configlexer.lex" { YDVAR(1, VAR_LOG_IDENTITY) } YY_BREAK case 180: YY_RULE_SETUP #line 388 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 181: YY_RULE_SETUP #line 389 "util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 182: YY_RULE_SETUP #line 390 "util/configlexer.lex" { YDVAR(1, VAR_LOG_REPLIES) } YY_BREAK case 183: YY_RULE_SETUP #line 391 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TAG_QUERYREPLY) } YY_BREAK case 184: YY_RULE_SETUP #line 392 "util/configlexer.lex" { YDVAR(1, VAR_LOG_LOCAL_ACTIONS) } YY_BREAK case 185: YY_RULE_SETUP #line 393 "util/configlexer.lex" { YDVAR(1, VAR_LOG_SERVFAIL) } YY_BREAK case 186: YY_RULE_SETUP #line 394 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 187: YY_RULE_SETUP #line 395 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 188: YY_RULE_SETUP #line 396 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 189: YY_RULE_SETUP #line 397 "util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 190: YY_RULE_SETUP #line 398 "util/configlexer.lex" { YDVAR(1, VAR_INSECURE_LAN_ZONES) } YY_BREAK case 191: YY_RULE_SETUP #line 399 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 192: YY_RULE_SETUP #line 400 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 193: YY_RULE_SETUP #line 401 "util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 194: YY_RULE_SETUP #line 402 "util/configlexer.lex" { YDVAR(1, VAR_SHM_ENABLE) } YY_BREAK case 195: YY_RULE_SETUP #line 403 "util/configlexer.lex" { YDVAR(1, VAR_SHM_KEY) } YY_BREAK case 196: YY_RULE_SETUP #line 404 "util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 197: YY_RULE_SETUP #line 405 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 198: YY_RULE_SETUP #line 406 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 199: YY_RULE_SETUP #line 407 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 200: YY_RULE_SETUP #line 408 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 201: YY_RULE_SETUP #line 409 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 202: YY_RULE_SETUP #line 410 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 203: YY_RULE_SETUP #line 411 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 204: YY_RULE_SETUP #line 412 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 205: YY_RULE_SETUP #line 413 "util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 206: YY_RULE_SETUP #line 414 "util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 207: YY_RULE_SETUP #line 415 "util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 208: YY_RULE_SETUP #line 416 "util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 209: YY_RULE_SETUP #line 417 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 210: YY_RULE_SETUP #line 418 "util/configlexer.lex" { YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) } YY_BREAK case 211: YY_RULE_SETUP #line 419 "util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 212: YY_RULE_SETUP #line 420 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 213: YY_RULE_SETUP #line 421 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 214: YY_RULE_SETUP #line 422 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_IGNORE_AAAA) } YY_BREAK case 215: YY_RULE_SETUP #line 423 "util/configlexer.lex" { YDVAR(1, VAR_DEFINE_TAG) } YY_BREAK case 216: YY_RULE_SETUP #line 424 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE_TAG) } YY_BREAK case 217: YY_RULE_SETUP #line 425 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_TAG) } YY_BREAK case 218: YY_RULE_SETUP #line 426 "util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) } YY_BREAK case 219: YY_RULE_SETUP #line 427 "util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) } YY_BREAK case 220: YY_RULE_SETUP #line 428 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_VIEW) } YY_BREAK case 221: YY_RULE_SETUP #line 429 "util/configlexer.lex" { YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) } YY_BREAK case 222: YY_RULE_SETUP #line 430 "util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 223: YY_RULE_SETUP #line 431 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 224: YY_RULE_SETUP #line 432 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 225: YY_RULE_SETUP #line 433 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 226: YY_RULE_SETUP #line 434 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 227: YY_RULE_SETUP #line 435 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 228: YY_RULE_SETUP #line 436 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 229: YY_RULE_SETUP #line 437 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 230: YY_RULE_SETUP #line 439 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 231: YY_RULE_SETUP #line 441 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 232: YY_RULE_SETUP #line 443 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 233: YY_RULE_SETUP #line 445 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 234: YY_RULE_SETUP #line 447 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 235: YY_RULE_SETUP #line 449 "util/configlexer.lex" { YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) } YY_BREAK case 236: YY_RULE_SETUP #line 450 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT) } YY_BREAK case 237: YY_RULE_SETUP #line 451 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 238: YY_RULE_SETUP #line 452 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SLABS) } YY_BREAK case 239: YY_RULE_SETUP #line 453 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 240: YY_RULE_SETUP #line 454 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SIZE) } YY_BREAK case 241: YY_RULE_SETUP #line 455 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 242: YY_RULE_SETUP #line 456 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 243: YY_RULE_SETUP #line 457 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 244: YY_RULE_SETUP #line 458 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_FACTOR) } YY_BREAK case 245: YY_RULE_SETUP #line 459 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 246: YY_RULE_SETUP #line 460 "util/configlexer.lex" { YDVAR(1, VAR_LOW_RTT) } YY_BREAK case 247: YY_RULE_SETUP #line 461 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_NUM) } YY_BREAK case 248: YY_RULE_SETUP #line 462 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 249: YY_RULE_SETUP #line 463 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 250: YY_RULE_SETUP #line 464 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 251: YY_RULE_SETUP #line 465 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_TAG) } YY_BREAK case 252: YY_RULE_SETUP #line 466 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP) } YY_BREAK case 253: YY_RULE_SETUP #line 467 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_DATA) } YY_BREAK case 254: YY_RULE_SETUP #line 468 "util/configlexer.lex" { YDVAR(0, VAR_DNSCRYPT) } YY_BREAK case 255: YY_RULE_SETUP #line 469 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_ENABLE) } YY_BREAK case 256: YY_RULE_SETUP #line 470 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PORT) } YY_BREAK case 257: YY_RULE_SETUP #line 471 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER) } YY_BREAK case 258: YY_RULE_SETUP #line 472 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) } YY_BREAK case 259: YY_RULE_SETUP #line 473 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) } YY_BREAK case 260: YY_RULE_SETUP #line 474 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) } YY_BREAK case 261: YY_RULE_SETUP #line 475 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) } YY_BREAK case 262: YY_RULE_SETUP #line 477 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) } YY_BREAK case 263: YY_RULE_SETUP #line 479 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) } YY_BREAK case 264: YY_RULE_SETUP #line 480 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) } YY_BREAK case 265: YY_RULE_SETUP #line 481 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_ENABLED) } YY_BREAK case 266: YY_RULE_SETUP #line 482 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) } YY_BREAK case 267: YY_RULE_SETUP #line 483 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_HOOK) } YY_BREAK case 268: YY_RULE_SETUP #line 484 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_MAX_TTL) } YY_BREAK case 269: YY_RULE_SETUP #line 485 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_WHITELIST) } YY_BREAK case 270: YY_RULE_SETUP #line 486 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_STRICT) } YY_BREAK case 271: YY_RULE_SETUP #line 487 "util/configlexer.lex" { YDVAR(0, VAR_CACHEDB) } YY_BREAK case 272: YY_RULE_SETUP #line 488 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_BACKEND) } YY_BREAK case 273: YY_RULE_SETUP #line 489 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_SECRETSEED) } YY_BREAK case 274: YY_RULE_SETUP #line 490 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISHOST) } YY_BREAK case 275: YY_RULE_SETUP #line 491 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISPORT) } YY_BREAK case 276: YY_RULE_SETUP #line 492 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) } YY_BREAK case 277: YY_RULE_SETUP #line 493 "util/configlexer.lex" { YDVAR(0, VAR_IPSET) } YY_BREAK case 278: YY_RULE_SETUP #line 494 "util/configlexer.lex" { YDVAR(1, VAR_IPSET_NAME_V4) } YY_BREAK case 279: YY_RULE_SETUP #line 495 "util/configlexer.lex" { YDVAR(1, VAR_IPSET_NAME_V6) } YY_BREAK case 280: YY_RULE_SETUP #line 496 "util/configlexer.lex" { YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) } YY_BREAK case 281: YY_RULE_SETUP #line 497 "util/configlexer.lex" { YDVAR(2, VAR_TCP_CONNECTION_LIMIT) } YY_BREAK case 282: /* rule 282 can match eol */ YY_RULE_SETUP #line 498 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 283: YY_RULE_SETUP #line 501 "util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 502 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 284: YY_RULE_SETUP #line 507 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 285: /* rule 285 can match eol */ YY_RULE_SETUP #line 508 "util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 286: YY_RULE_SETUP #line 510 "util/configlexer.lex" { LEXOUT(("QE ")); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } yytext[yyleng - 1] = '\0'; yylval.str = strdup(yytext); if(!yylval.str) yyerror("out of memory"); return STRING_ARG; } YY_BREAK /* Single Quoted strings. Strip leading and ending quotes */ case 287: YY_RULE_SETUP #line 522 "util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 523 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 288: YY_RULE_SETUP #line 528 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 289: /* rule 289 can match eol */ YY_RULE_SETUP #line 529 "util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 290: YY_RULE_SETUP #line 531 "util/configlexer.lex" { LEXOUT(("SQE ")); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } yytext[yyleng - 1] = '\0'; yylval.str = strdup(yytext); if(!yylval.str) yyerror("out of memory"); return STRING_ARG; } YY_BREAK /* include: directive */ case 291: YY_RULE_SETUP #line 543 "util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 545 "util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 292: YY_RULE_SETUP #line 549 "util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 293: /* rule 293 can match eol */ YY_RULE_SETUP #line 550 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 294: YY_RULE_SETUP #line 551 "util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 295: YY_RULE_SETUP #line 552 "util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 557 "util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 296: YY_RULE_SETUP #line 561 "util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 297: /* rule 297 can match eol */ YY_RULE_SETUP #line 562 "util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 298: YY_RULE_SETUP #line 564 "util/configlexer.lex" { LEXOUT(("IQE ")); yytext[yyleng - 1] = '\0'; config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(val): #line 570 "util/configlexer.lex" { LEXOUT(("LEXEOF ")); yy_set_bol(1); /* Set beginning of line, so "^" rules match. */ if (!config_include_stack) { yyterminate(); } else { fclose(yyin); config_end_include(); } } YY_BREAK case 299: YY_RULE_SETUP #line 581 "util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 300: YY_RULE_SETUP #line 585 "util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 301: YY_RULE_SETUP #line 589 "util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 302: YY_RULE_SETUP #line 593 "util/configlexer.lex" ECHO; YY_BREAK #line 5398 "" 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; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET 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 * 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_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 * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ 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_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { 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_current_state = yy_get_previous_state( ); 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_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of user's declarations */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; char *source = (yytext_ptr); int number_to_move, i; int ret_val; 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_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 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ 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_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_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { 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. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; 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. */ yyrealloc( (void *) b->yy_ch_buf, (yy_size_t) (b->yy_buf_size + 2) ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = NULL; 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_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart( yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ int 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, (yy_size_t) new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); /* "- 2" to take care of EOB's */ YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); } (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_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 (void) { yy_state_type yy_current_state; char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } 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 >= 2986 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; } 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 ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { int yy_is_jam; char *yy_cp = (yy_c_buf_p); YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } 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 >= 2986 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; yy_is_jam = (yy_current_state == 2985); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_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_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ int offset = (int) ((yy_c_buf_p) - (yytext_ptr)); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart( yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return 0; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (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); return c; } #endif /* ifndef YY_NO_INPUT */ /** 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( ); } /** 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 ) { /* 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); } 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; } 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); } /** 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) yyalloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = 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 *) yyalloc( (yy_size_t) (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 ); return b; } /** 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 ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree( (void *) b->yy_ch_buf ); yyfree( (void *) b ); } /* 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 ) { int oerrno = errno; yy_flush_buffer( b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* 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; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** 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; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; 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) { yy_size_t 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; /* After all that talk, this was set to 1 anyways... */ (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; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ yy_size_t 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 NULL; b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = NULL; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer( b ); return b; } /** 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 (const char * yystr ) { return yy_scan_bytes( yystr, (int) strlen(yystr) ); } /** 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 yybytes the byte buffer to scan * @param _yybytes_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 (const 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 = (yy_size_t) (_yybytes_len + 2); buf = (char *) yyalloc( n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer( buf, n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yynoreturn yy_fatal_error (const char* msg ) { fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #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 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ int yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param _line_number 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 ; } void yyset_out (FILE * _out_str ) { yyout = _out_str ; } int yyget_debug (void) { return yy_flex_debug; } 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) = NULL; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = NULL; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = NULL; yyout = NULL; #endif /* 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(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = 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( ); return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, const char * s2, int n ) { int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (const char * s ) { int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return malloc(size); } 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 * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return realloc(ptr, size); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 593 "util/configlexer.lex"