#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 337 #define YY_END_OF_BUFFER 338 /* 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[3292] = { 0, 1, 1, 311, 311, 315, 315, 319, 319, 323, 323, 1, 1, 327, 327, 331, 331, 338, 335, 1, 309, 309, 336, 2, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 336, 311, 312, 312, 313, 336, 315, 316, 316, 317, 336, 322, 319, 320, 320, 321, 336, 323, 324, 324, 325, 336, 334, 310, 2, 314, 334, 336, 330, 327, 328, 328, 329, 336, 331, 332, 332, 333, 336, 335, 0, 1, 2, 2, 2, 2, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 311, 0, 315, 0, 322, 0, 319, 323, 0, 334, 0, 2, 2, 334, 330, 0, 327, 331, 0, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 334, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 125, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 134, 335, 335, 335, 335, 335, 335, 335, 334, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 109, 335, 335, 335, 335, 335, 335, 8, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 126, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 139, 335, 334, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 302, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 334, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 64, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 238, 335, 14, 15, 335, 19, 18, 335, 335, 222, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 132, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 220, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 3, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 334, 335, 335, 335, 335, 335, 335, 335, 296, 335, 335, 295, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 318, 335, 335, 335, 335, 335, 335, 335, 335, 63, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 67, 335, 269, 335, 335, 335, 335, 335, 335, 335, 335, 303, 304, 335, 335, 335, 335, 335, 68, 335, 335, 133, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 129, 335, 335, 335, 335, 335, 335, 335, 335, 209, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 21, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 158, 335, 335, 334, 318, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 107, 335, 335, 335, 335, 335, 335, 335, 277, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 181, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 157, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 106, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 32, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 33, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 65, 335, 335, 335, 335, 335, 335, 335, 335, 335, 131, 334, 335, 335, 335, 335, 335, 124, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 66, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 242, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 182, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 54, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 260, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 58, 335, 59, 335, 335, 335, 335, 335, 110, 335, 111, 335, 335, 335, 335, 108, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 7, 335, 334, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 231, 335, 335, 335, 335, 160, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 243, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 45, 335, 335, 335, 335, 335, 335, 335, 335, 335, 55, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 201, 335, 200, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 16, 17, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 69, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 208, 335, 335, 335, 335, 335, 335, 113, 335, 112, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 192, 335, 335, 335, 335, 335, 335, 335, 335, 140, 334, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 101, 335, 335, 335, 335, 335, 335, 335, 335, 335, 89, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 221, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 94, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 62, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 195, 196, 335, 335, 335, 271, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 6, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 275, 335, 335, 335, 335, 335, 335, 297, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 42, 335, 335, 335, 335, 44, 335, 335, 335, 90, 335, 335, 335, 335, 335, 52, 335, 335, 335, 335, 335, 335, 335, 334, 335, 188, 335, 335, 335, 135, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 213, 335, 189, 335, 335, 335, 228, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 53, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 137, 118, 335, 119, 335, 335, 335, 117, 335, 335, 335, 335, 335, 335, 335, 335, 155, 335, 335, 50, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 259, 335, 335, 335, 335, 335, 335, 335, 335, 335, 190, 335, 335, 335, 335, 335, 193, 335, 199, 335, 335, 335, 335, 335, 227, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 105, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 130, 335, 335, 335, 335, 335, 335, 60, 335, 335, 335, 26, 335, 335, 335, 335, 335, 335, 335, 335, 335, 20, 335, 335, 335, 335, 335, 335, 27, 36, 335, 165, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 334, 335, 335, 335, 335, 335, 335, 77, 79, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 279, 335, 335, 335, 335, 239, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 120, 335, 335, 335, 335, 335, 335, 335, 335, 335, 154, 335, 46, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 290, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 159, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 219, 335, 335, 335, 335, 335, 335, 335, 335, 335, 300, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 176, 335, 335, 335, 335, 335, 335, 335, 335, 114, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 171, 335, 183, 335, 335, 335, 335, 334, 335, 143, 335, 335, 335, 335, 335, 100, 335, 335, 335, 335, 211, 335, 335, 335, 335, 335, 335, 229, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 251, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 136, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 175, 335, 335, 335, 335, 335, 335, 80, 335, 81, 335, 335, 335, 335, 335, 61, 293, 335, 335, 335, 335, 335, 88, 184, 335, 202, 335, 232, 335, 335, 194, 272, 335, 335, 335, 335, 335, 73, 335, 186, 335, 335, 335, 335, 335, 9, 335, 335, 335, 104, 335, 335, 335, 335, 264, 335, 335, 335, 335, 210, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 334, 335, 335, 335, 335, 174, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 161, 335, 278, 335, 335, 335, 335, 335, 250, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 223, 335, 335, 335, 335, 335, 270, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 294, 335, 185, 335, 335, 335, 335, 335, 335, 335, 72, 74, 335, 335, 335, 335, 335, 335, 335, 103, 335, 335, 335, 335, 262, 335, 335, 335, 335, 274, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 215, 34, 28, 30, 335, 335, 335, 335, 335, 335, 335, 335, 335, 35, 335, 29, 31, 335, 335, 335, 335, 335, 335, 335, 335, 99, 335, 335, 335, 335, 335, 335, 334, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 217, 214, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 71, 335, 335, 335, 138, 335, 121, 335, 335, 335, 335, 335, 335, 335, 335, 156, 47, 335, 335, 335, 326, 13, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 288, 335, 291, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 12, 335, 335, 22, 335, 335, 335, 268, 335, 335, 335, 335, 276, 335, 335, 335, 75, 335, 225, 335, 335, 335, 335, 216, 335, 335, 70, 335, 335, 335, 335, 23, 335, 43, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 170, 169, 326, 335, 335, 335, 335, 335, 335, 335, 335, 335, 218, 212, 335, 230, 335, 335, 280, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 82, 335, 335, 335, 335, 263, 335, 335, 335, 335, 198, 335, 335, 335, 335, 224, 335, 335, 335, 335, 335, 335, 335, 335, 335, 298, 299, 167, 335, 335, 76, 335, 335, 335, 335, 177, 335, 335, 115, 116, 335, 335, 335, 335, 162, 335, 164, 335, 203, 335, 335, 335, 335, 168, 335, 335, 233, 335, 335, 335, 335, 335, 335, 335, 145, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 241, 335, 335, 335, 335, 335, 335, 335, 307, 335, 24, 335, 273, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 86, 204, 335, 335, 261, 335, 292, 335, 197, 335, 335, 335, 335, 56, 335, 335, 335, 335, 4, 335, 335, 335, 335, 128, 144, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 236, 37, 38, 335, 335, 335, 335, 335, 335, 335, 281, 335, 335, 335, 335, 335, 335, 335, 249, 335, 335, 335, 335, 335, 335, 335, 335, 207, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 85, 335, 57, 267, 335, 237, 335, 335, 335, 335, 11, 335, 335, 335, 335, 335, 335, 127, 335, 335, 335, 335, 205, 91, 335, 40, 335, 335, 335, 335, 335, 335, 335, 335, 173, 335, 335, 335, 335, 335, 147, 335, 335, 335, 335, 240, 335, 335, 335, 335, 335, 248, 335, 335, 335, 335, 141, 335, 335, 335, 122, 123, 335, 335, 335, 93, 97, 92, 335, 335, 335, 335, 83, 335, 335, 335, 335, 335, 10, 335, 335, 335, 265, 301, 335, 335, 335, 335, 306, 39, 335, 335, 335, 335, 335, 172, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 98, 96, 335, 51, 335, 335, 84, 289, 335, 335, 335, 335, 335, 335, 335, 191, 335, 335, 335, 335, 335, 206, 335, 335, 335, 335, 335, 335, 335, 335, 163, 78, 335, 335, 335, 335, 335, 282, 335, 335, 335, 335, 335, 335, 335, 245, 335, 335, 244, 142, 335, 335, 95, 48, 335, 148, 149, 152, 153, 150, 151, 87, 335, 266, 335, 335, 335, 335, 166, 335, 335, 335, 335, 335, 235, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 179, 178, 41, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 102, 335, 234, 335, 258, 286, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 308, 335, 49, 5, 335, 335, 226, 335, 335, 287, 335, 335, 335, 335, 335, 335, 335, 335, 335, 246, 25, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 247, 335, 335, 335, 146, 335, 335, 335, 335, 335, 335, 335, 335, 180, 335, 187, 335, 335, 335, 335, 335, 335, 335, 335, 335, 283, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 305, 335, 335, 254, 335, 335, 335, 335, 335, 284, 335, 335, 335, 335, 335, 335, 285, 335, 335, 335, 252, 335, 255, 256, 335, 335, 335, 335, 335, 253, 257, 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[3310] = { 0, 0, 0, 64, 67, 70, 72, 78, 84, 89, 92, 131, 137, 112, 118, 123, 142, 479, 435, 96, 9388, 9388, 9388, 160, 185, 116, 183, 229, 132, 175, 173, 232, 50, 66, 120, 263, 275, 151, 319, 134, 371, 412, 286, 308, 283, 126, 237, 394, 9388, 9388, 9388, 95, 385, 9388, 9388, 9388, 186, 366, 385, 9388, 9388, 9388, 258, 340, 9388, 9388, 9388, 104, 338, 9388, 266, 9388, 167, 349, 303, 319, 9388, 9388, 9388, 356, 273, 9388, 9388, 9388, 146, 268, 368, 177, 0, 388, 0, 0, 291, 270, 235, 346, 259, 339, 367, 178, 177, 226, 395, 373, 384, 377, 368, 410, 411, 309, 429, 357, 408, 438, 423, 444, 446, 458, 462, 436, 467, 483, 474, 470, 476, 488, 487, 489, 499, 482, 503, 514, 510, 526, 516, 523, 520, 552, 363, 533, 515, 554, 551, 250, 558, 548, 582, 561, 527, 553, 578, 601, 575, 602, 596, 588, 605, 599, 208, 341, 205, 236, 194, 628, 225, 180, 438, 158, 652, 656, 0, 622, 152, 664, 176, 130, 454, 633, 659, 639, 646, 654, 652, 664, 648, 655, 666, 658, 665, 705, 677, 682, 707, 256, 716, 760, 710, 691, 693, 717, 718, 701, 704, 732, 721, 751, 741, 744, 746, 750, 748, 767, 771, 808, 790, 759, 784, 290, 796, 807, 325, 798, 715, 810, 783, 726, 811, 820, 825, 822, 817, 815, 831, 827, 837, 853, 849, 858, 856, 852, 854, 846, 874, 877, 857, 864, 876, 892, 881, 901, 885, 902, 904, 891, 908, 916, 918, 895, 921, 911, 903, 919, 680, 941, 926, 937, 928, 935, 942, 930, 944, 938, 955, 947, 966, 968, 967, 975, 978, 962, 974, 973, 976, 984, 971, 989, 1003, 1007, 1011, 144, 995, 1019, 1023, 994, 999, 1005, 1021, 1018, 1022, 1033, 1015, 1048, 1042, 1058, 1051, 1056, 1054, 1066, 1068, 1047, 1046, 1041, 1052, 1069, 1073, 1080, 1084, 1082, 1086, 1089, 1092, 1102, 1094, 1085, 1115, 1096, 1141, 1111, 1109, 1119, 1152, 1136, 1135, 1144, 1162, 1172, 1166, 1177, 1163, 1186, 1189, 1143, 1176, 1200, 1205, 1187, 1204, 1199, 1188, 1190, 1203, 1107, 1238, 9388, 1215, 1242, 1149, 1243, 1244, 1251, 1226, 1269, 1237, 1259, 1217, 1252, 1275, 1292, 1340, 1264, 1297, 1279, 1283, 1289, 9388, 1320, 1317, 1389, 1293, 1324, 1309, 1342, 1325, 1307, 1322, 1345, 1338, 1224, 1353, 1335, 1371, 1383, 1388, 1375, 1380, 1382, 1394, 1398, 1262, 1416, 1409, 1421, 1420, 1266, 1412, 1425, 1418, 1455, 1422, 1430, 1435, 1444, 1457, 1463, 1468, 1470, 1475, 1448, 1464, 1461, 1469, 1484, 1499, 1544, 1302, 1491, 1502, 1501, 1503, 1347, 1488, 1511, 1516, 1510, 1518, 1504, 1532, 1528, 1542, 1547, 1540, 1555, 1527, 1559, 1550, 1543, 1567, 1568, 1592, 1569, 1577, 1560, 1586, 1599, 1603, 1594, 1608, 1605, 1590, 1613, 1596, 9388, 1615, 1623, 1604, 1637, 1627, 1636, 9388, 1631, 1634, 1633, 1641, 1632, 1656, 1661, 1657, 1658, 1659, 1663, 1673, 1654, 1682, 1671, 1692, 1706, 1688, 1698, 1683, 1686, 1700, 1711, 1693, 1712, 1710, 1709, 1727, 1767, 9388, 1722, 1730, 1719, 1733, 1731, 1757, 1771, 1750, 1758, 1785, 1755, 1794, 1782, 1789, 1803, 1788, 1798, 1795, 1792, 1826, 1814, 1822, 1820, 1821, 1815, 1831, 1830, 1824, 1844, 1846, 9388, 1841, 1851, 1865, 1857, 1860, 1853, 1862, 1866, 1856, 1884, 1877, 1883, 1867, 1887, 1721, 1870, 1886, 1905, 1894, 1904, 1902, 1908, 1914, 1917, 1921, 1911, 1956, 1915, 1909, 1926, 1944, 1945, 1949, 1957, 1963, 1938, 1948, 1958, 1964, 1943, 1965, 1971, 1972, 1955, 1975, 1976, 1984, 1989, 1979, 1990, 1996, 2007, 1998, 1988, 2014, 2002, 2006, 2017, 2022, 2016, 2039, 2034, 2031, 2037, 2040, 2033, 2043, 2049, 2053, 9388, 2044, 2064, 2059, 2077, 2067, 2082, 2079, 2071, 2070, 2086, 2083, 2097, 2098, 2092, 2107, 2108, 2101, 2112, 2110, 2106, 2099, 2128, 2142, 2133, 2141, 2120, 2137, 2147, 2145, 2157, 2153, 2134, 2161, 2162, 2154, 2158, 2177, 2175, 2160, 2181, 2186, 2172, 2194, 2193, 2198, 2180, 2199, 2205, 2234, 2213, 2178, 2229, 2217, 2233, 2221, 2224, 2227, 2228, 2226, 2238, 2248, 2240, 2244, 2253, 2260, 2258, 2269, 2255, 2262, 2274, 2271, 2265, 2272, 2286, 2275, 2287, 2282, 2304, 2297, 2301, 2280, 2311, 2315, 2318, 2307, 2314, 2321, 2324, 2320, 2338, 2327, 2337, 2350, 2351, 2356, 2363, 2342, 2359, 2364, 2362, 2365, 2367, 2370, 2369, 2377, 2384, 2396, 2392, 2395, 2389, 2412, 2417, 2413, 2415, 2419, 9388, 2402, 2422, 2404, 2423, 2429, 2408, 2425, 2435, 2430, 2451, 2445, 2434, 2444, 2490, 9388, 2452, 9388, 9388, 2449, 9388, 9388, 2460, 2471, 9388, 2474, 2479, 2457, 2493, 2504, 2507, 2500, 2496, 2489, 2498, 2486, 2545, 2516, 2523, 2515, 2524, 2529, 2550, 2535, 2539, 2560, 2534, 2562, 2583, 2561, 2581, 2578, 2589, 2595, 2598, 2597, 2599, 2601, 2605, 2602, 2592, 2608, 2586, 2617, 2610, 2639, 2627, 2629, 2645, 2630, 2635, 2628, 2622, 2653, 2651, 2664, 9388, 2655, 2657, 2666, 2663, 2670, 2673, 2665, 2675, 2679, 2681, 2678, 2689, 2691, 2687, 2682, 2688, 2690, 2703, 2704, 2717, 2700, 9388, 2713, 2715, 2705, 2720, 2726, 2730, 2731, 2723, 2714, 2734, 2732, 2773, 2747, 2740, 2750, 2756, 2752, 2775, 9388, 2779, 2771, 2763, 2780, 2766, 2768, 2774, 2777, 2789, 2801, 2795, 2793, 2805, 2798, 2824, 2820, 2815, 2811, 2819, 2825, 2821, 2834, 2840, 2843, 2832, 2844, 2845, 2849, 2851, 2855, 2857, 2848, 2854, 2865, 2860, 2871, 2866, 2870, 2888, 2890, 2876, 2887, 2884, 2881, 2904, 2893, 2906, 2892, 2911, 2923, 2908, 2925, 2912, 2922, 2945, 2926, 2938, 2943, 2934, 2939, 2953, 2948, 9388, 2936, 2950, 9388, 2949, 2954, 2952, 2999, 2989, 2978, 2969, 2992, 2970, 2994, 2991, 3000, 3007, 3009, 3043, 3019, 3018, 3036, 3029, 3046, 3037, 3048, 3054, 3039, 3055, 3021, 3056, 3067, 2951, 3059, 3058, 615, 3070, 3071, 3065, 3073, 3120, 3078, 3097, 3089, 3092, 3105, 3109, 3100, 3096, 3123, 3124, 3122, 3082, 3147, 3132, 3127, 3141, 3158, 3074, 3156, 3155, 9388, 3161, 3159, 3171, 3172, 3151, 3168, 3187, 3174, 9388, 3185, 3188, 3180, 3186, 3191, 3189, 3201, 3202, 3211, 3210, 3214, 3223, 3227, 3228, 3229, 3215, 9388, 3224, 9388, 3217, 3242, 3220, 3250, 3247, 3233, 3263, 3266, 9388, 9388, 3267, 3261, 3275, 3216, 3269, 9388, 3284, 3283, 9388, 3303, 3278, 3287, 3259, 3296, 3295, 3302, 3305, 3289, 3297, 3292, 3306, 3330, 3311, 9388, 3323, 3316, 3331, 3340, 3333, 3341, 3350, 3339, 9388, 3348, 3343, 3363, 3361, 3365, 3362, 3356, 3376, 3383, 3367, 3368, 3373, 3377, 3378, 3402, 3404, 3403, 3410, 3411, 3407, 9388, 3395, 3397, 3414, 3418, 3419, 3412, 3424, 3409, 3428, 3422, 3429, 3442, 3452, 3440, 3449, 3443, 3468, 3469, 3450, 3466, 3472, 3454, 3464, 3463, 91, 3476, 3474, 3485, 3481, 9388, 3488, 3482, 3491, 128, 3499, 3501, 3502, 3492, 3508, 3520, 3503, 3527, 3530, 3521, 3531, 3540, 3534, 3518, 3535, 3541, 3538, 3533, 3544, 3555, 3556, 9388, 3572, 3560, 3559, 3566, 3578, 3565, 3601, 9388, 3587, 3594, 3598, 3589, 3600, 3582, 3610, 3605, 3608, 3622, 3614, 3629, 3627, 3633, 3636, 3632, 3642, 9388, 3645, 3647, 3657, 3644, 3663, 3651, 3658, 3665, 3666, 3677, 3671, 3672, 3679, 3685, 3682, 3684, 3698, 3694, 3688, 3699, 3702, 3708, 3718, 3712, 3724, 3715, 3713, 3726, 3727, 9388, 3561, 3735, 3742, 3740, 3732, 3739, 3759, 3745, 3776, 3751, 3766, 3760, 3784, 3812, 3768, 3779, 3795, 3791, 3796, 3800, 3799, 3797, 3805, 3815, 3824, 3829, 3850, 3814, 3836, 3837, 3839, 3833, 3856, 3849, 3873, 3874, 3866, 3875, 3898, 3877, 3806, 3881, 9388, 3884, 3894, 3872, 3886, 3896, 3901, 3902, 3915, 3913, 3917, 3911, 3929, 3919, 3908, 3931, 3941, 3936, 3947, 3951, 3946, 3943, 3937, 3964, 3966, 3956, 3967, 3970, 9388, 3977, 3976, 3968, 3975, 3985, 3986, 3990, 3999, 3996, 3988, 3989, 4005, 3998, 4016, 4002, 4015, 4012, 4028, 4013, 9388, 4032, 4023, 4029, 4027, 4039, 4043, 4047, 4050, 4055, 4062, 4059, 4049, 4066, 4068, 4056, 9388, 4078, 4086, 4079, 4090, 4083, 4081, 4077, 4097, 4087, 9388, 4094, 4096, 4095, 4103, 4106, 4114, 9388, 4108, 4111, 4112, 4117, 4128, 4115, 4130, 4145, 4133, 4124, 4136, 4156, 4150, 4139, 4160, 9388, 4151, 4174, 4164, 4159, 4163, 4179, 4169, 4185, 4194, 4195, 4205, 4196, 9388, 4190, 4209, 4197, 4219, 4206, 4189, 4220, 4223, 4234, 4226, 4221, 4240, 4229, 9388, 4237, 4236, 4242, 4256, 4255, 4252, 4258, 4248, 4261, 4271, 4266, 4247, 4276, 4275, 4287, 4288, 4296, 4281, 4297, 4304, 4298, 4300, 4310, 4311, 4315, 4316, 4320, 4329, 4335, 4328, 4324, 4343, 4325, 4340, 4351, 4349, 4352, 9388, 4354, 4355, 4356, 4342, 4346, 4370, 4373, 4367, 4362, 4371, 4385, 4390, 4382, 4380, 4408, 4410, 4386, 4401, 4397, 4400, 4405, 4420, 4411, 4422, 4413, 4409, 4429, 4418, 4426, 4432, 4433, 4453, 4435, 4436, 4445, 4446, 4456, 4447, 4452, 4449, 4472, 4473, 4484, 4486, 4482, 4489, 4477, 4479, 4483, 4499, 9388, 4480, 4503, 4504, 4502, 4511, 4521, 4528, 4529, 4524, 4523, 4532, 4530, 4538, 4520, 4525, 4548, 4546, 4544, 9388, 4535, 9388, 4551, 4569, 4557, 4581, 4559, 9388, 4577, 9388, 4580, 4582, 4571, 4573, 9388, 4585, 4570, 4584, 4591, 4598, 4600, 4603, 4597, 4609, 4604, 4617, 4610, 4618, 4614, 4615, 4637, 4620, 4625, 4641, 4636, 4654, 4652, 4647, 4657, 4649, 4648, 4665, 4653, 4677, 9388, 4687, 4673, 4670, 4676, 4686, 4681, 4666, 4700, 4697, 4692, 4703, 4707, 4711, 4716, 4715, 4724, 4731, 4730, 4717, 4745, 9388, 4727, 4746, 4733, 4743, 9388, 4750, 4732, 4760, 4764, 4753, 4748, 4754, 4768, 4773, 4772, 4777, 4758, 4800, 4802, 4781, 4804, 9388, 4775, 4805, 4787, 4816, 4809, 4820, 4825, 4817, 4827, 4834, 4826, 4833, 4829, 4830, 4832, 4843, 4837, 4831, 4846, 4861, 4873, 4849, 4869, 4871, 4875, 4859, 4862, 4864, 4865, 4867, 4883, 4885, 4888, 4891, 4912, 4898, 9388, 4893, 4904, 4906, 4926, 4907, 4920, 4908, 4915, 4924, 9388, 4923, 4932, 4933, 4937, 4947, 4942, 4944, 4943, 4950, 4953, 4946, 4959, 4969, 4971, 9388, 4977, 9388, 4974, 4979, 4983, 4990, 4988, 4984, 5004, 4991, 5003, 4993, 5008, 5017, 5006, 5005, 5014, 5009, 5033, 5029, 5051, 5037, 5027, 5040, 5039, 5044, 5043, 5049, 9388, 9388, 5048, 5050, 5062, 5065, 5070, 5077, 5086, 5084, 5078, 5076, 5091, 5080, 5122, 9388, 5088, 5104, 5105, 5111, 5129, 5108, 5130, 5138, 5131, 5139, 5134, 9388, 5117, 5128, 5146, 5132, 5159, 5152, 9388, 5143, 9388, 5155, 5156, 5163, 5167, 5164, 5172, 5166, 5170, 5160, 5193, 5197, 5183, 5200, 5186, 5187, 5190, 5215, 5203, 5223, 5199, 5212, 5204, 9388, 5219, 5214, 5225, 5230, 5232, 5233, 5231, 5224, 9388, 5241, 5239, 5244, 5250, 5251, 5256, 5245, 5259, 5272, 5258, 5264, 9388, 5265, 5262, 5292, 5281, 5277, 5288, 5298, 5302, 5301, 9388, 5307, 5304, 5315, 5314, 5306, 5321, 5324, 5297, 5308, 5319, 5320, 5331, 5344, 5334, 5340, 5341, 5348, 5350, 5335, 5361, 5364, 5363, 5360, 5379, 5368, 9388, 5365, 5375, 5381, 5383, 5396, 5393, 5400, 5385, 5404, 5395, 5413, 5416, 5405, 5408, 5414, 5433, 5423, 5435, 9388, 5424, 5421, 5450, 5422, 5443, 5452, 5434, 5453, 5455, 5442, 5451, 5462, 5470, 5463, 5464, 5474, 5456, 5478, 5480, 5497, 5482, 9388, 5511, 5490, 5495, 5506, 5501, 5503, 5521, 5516, 5499, 5513, 5532, 5515, 5535, 5524, 5527, 5546, 5550, 5533, 9388, 9388, 5555, 5531, 5548, 9388, 5558, 5543, 5570, 5566, 5551, 5554, 5579, 5578, 5562, 5589, 5574, 5576, 9388, 5593, 5584, 5575, 5597, 5612, 5613, 5609, 5605, 5614, 5601, 5599, 5617, 5627, 5615, 5608, 5637, 5648, 5651, 5632, 5640, 5643, 9388, 5642, 5631, 5644, 5666, 5654, 5657, 9388, 5658, 5664, 5680, 5674, 5687, 5684, 5681, 5694, 5675, 5689, 5679, 5700, 5702, 5706, 5714, 5713, 5707, 5717, 5719, 5727, 9388, 5709, 5732, 5715, 5737, 9388, 5738, 5756, 5755, 9388, 5757, 5734, 5758, 5754, 5762, 9388, 5759, 5764, 5761, 5742, 5777, 5752, 5781, 5775, 5784, 9388, 5785, 5786, 5787, 9388, 5800, 5798, 5806, 5809, 5790, 5820, 5812, 5811, 5815, 5813, 9388, 5823, 9388, 5826, 5819, 5833, 9388, 5832, 5839, 5830, 5841, 5843, 5849, 5858, 5861, 5865, 5847, 5860, 5855, 5853, 5871, 5878, 5882, 5866, 5877, 5879, 5881, 9388, 5900, 5889, 5894, 5898, 5913, 5906, 5905, 5899, 5924, 5910, 9388, 9388, 5919, 9388, 5928, 5922, 5927, 9388, 5921, 5939, 5940, 5935, 5956, 5958, 5959, 5961, 9388, 5964, 5967, 9388, 5948, 5966, 5978, 5970, 5954, 5962, 5973, 5981, 5985, 5980, 5998, 5987, 5999, 5989, 6003, 6016, 9388, 5993, 6000, 6009, 6024, 6014, 6019, 6025, 6026, 6027, 9388, 6029, 6042, 6045, 6052, 6053, 9388, 6055, 9388, 6049, 6056, 6058, 6066, 6054, 9388, 6075, 6072, 6078, 6062, 6091, 6099, 6093, 6102, 6085, 6089, 6111, 6105, 6095, 6106, 9388, 6100, 6117, 6121, 6123, 6125, 6122, 6116, 6134, 6143, 6129, 6146, 6153, 6148, 6156, 6158, 6155, 6163, 6161, 9388, 6184, 6174, 6144, 6199, 6188, 6186, 9388, 6190, 6173, 6203, 9388, 6191, 6187, 6200, 6210, 6194, 6201, 6206, 6218, 6223, 9388, 6228, 6229, 6224, 6237, 6243, 6245, 9388, 9388, 6247, 9388, 6246, 6234, 6261, 6259, 6233, 6269, 6216, 6273, 6262, 6264, 6286, 6287, 6281, 6275, 6306, 6268, 6303, 6296, 6304, 6291, 9388, 9388, 6307, 6314, 6316, 6320, 6321, 6323, 6309, 6333, 6332, 6343, 6345, 6341, 6356, 9388, 6349, 6338, 6351, 6354, 9388, 6336, 6352, 6363, 6360, 6364, 6371, 6350, 6372, 6390, 6378, 6394, 6393, 6388, 6399, 6380, 6391, 6396, 6410, 6407, 6398, 6414, 6428, 9388, 6434, 6421, 6424, 6422, 6420, 6427, 6431, 6438, 6436, 9388, 6447, 9388, 6451, 6439, 6454, 6466, 6475, 6471, 6479, 6470, 6472, 6477, 6484, 6488, 6492, 6496, 6493, 6487, 6504, 6513, 6501, 6507, 6511, 9388, 6519, 6506, 6509, 6518, 6537, 6539, 6523, 6541, 6536, 6544, 6532, 6543, 6555, 6558, 6546, 6552, 6551, 6553, 9388, 6557, 6567, 6564, 6576, 6559, 6584, 6592, 6596, 6593, 6579, 6586, 6581, 6602, 9388, 6587, 6582, 6603, 6611, 6616, 6614, 6621, 6620, 6622, 9388, 6631, 6624, 6629, 6632, 6634, 6639, 6628, 6649, 6656, 6666, 6667, 9388, 6662, 6664, 6673, 6655, 6659, 6677, 6683, 6676, 9388, 6701, 6703, 6694, 6695, 6690, 6718, 6714, 6715, 6691, 6710, 6721, 6717, 6722, 6725, 6730, 6713, 6737, 6760, 6752, 9388, 6742, 9388, 6750, 6764, 6768, 6766, 6769, 6751, 9388, 6754, 6772, 6640, 6789, 6776, 9388, 6778, 6791, 6793, 6794, 9388, 6810, 6809, 6799, 6811, 6782, 6783, 9388, 6822, 6821, 6820, 6832, 6833, 6830, 6829, 6828, 6843, 6841, 6831, 6835, 6860, 6837, 6849, 6862, 9388, 6869, 6871, 6865, 6870, 6868, 6876, 6859, 6878, 6883, 6880, 9388, 6886, 6888, 6894, 6897, 6895, 6896, 6912, 6924, 6919, 6909, 6910, 6913, 6923, 6921, 9388, 6918, 6931, 6944, 6936, 6926, 6958, 9388, 6953, 9388, 6950, 6965, 6967, 6946, 6974, 9388, 9388, 6977, 6938, 6956, 6978, 6973, 9388, 9388, 6979, 9388, 6980, 9388, 6976, 6994, 9388, 9388, 6991, 6985, 7008, 7009, 6988, 9388, 7016, 9388, 7024, 7019, 7006, 7004, 7023, 9388, 7015, 7017, 7027, 9388, 7021, 7037, 7040, 7044, 9388, 7039, 7042, 7033, 7047, 9388, 7061, 7063, 7068, 7057, 7067, 7072, 7078, 7056, 7079, 7069, 7082, 7071, 7096, 7110, 7111, 7112, 7113, 7103, 7098, 7114, 7120, 7123, 7105, 7122, 7106, 7129, 7127, 7133, 7131, 7135, 7144, 7147, 7150, 7151, 7146, 7160, 7148, 7149, 7164, 7158, 7154, 7177, 7175, 7174, 7185, 7191, 7182, 7196, 7193, 7201, 9388, 7195, 7184, 7194, 7211, 7215, 7222, 7226, 7219, 7234, 7235, 9388, 7238, 9388, 7244, 7230, 7240, 7228, 7237, 9388, 7249, 7232, 7246, 7260, 7261, 7262, 7279, 7263, 7266, 7267, 7290, 9388, 7286, 7278, 7276, 7293, 7299, 9388, 7295, 7300, 7296, 7297, 7294, 7317, 7312, 7316, 7319, 7318, 7333, 7336, 7320, 7331, 7342, 7338, 7350, 7356, 7352, 7339, 7353, 7341, 7366, 7358, 7364, 7368, 7385, 7374, 7386, 7389, 9388, 7375, 9388, 7381, 7377, 7380, 7383, 7401, 7398, 7405, 9388, 9388, 7400, 7419, 7409, 7411, 7413, 7429, 7430, 9388, 7427, 7433, 7435, 7428, 9388, 7444, 7423, 7445, 7439, 9388, 7436, 7458, 7469, 7452, 7455, 7476, 7472, 7471, 7462, 7475, 7481, 9388, 9388, 9388, 9388, 7482, 7466, 7484, 7493, 7499, 7486, 7507, 7490, 7503, 9388, 7497, 9388, 9388, 7514, 7520, 7509, 7522, 7513, 7510, 7526, 7524, 9388, 7540, 7533, 7537, 7543, 7544, 7557, 7561, 7556, 7567, 7548, 7550, 7578, 7569, 7575, 7564, 7581, 7580, 7587, 9388, 9388, 7584, 7589, 7595, 7609, 7605, 7607, 7601, 7622, 7596, 7613, 7611, 7604, 7621, 7614, 7626, 7631, 7625, 7632, 9388, 7636, 7628, 7647, 9388, 7639, 9388, 7649, 7656, 7646, 7652, 7658, 7659, 7671, 7660, 9388, 9388, 7657, 7685, 7676, 9388, 9388, 7670, 7673, 7686, 7690, 7694, 7687, 7695, 7692, 7708, 7691, 9388, 7696, 9388, 7709, 7720, 7715, 7700, 7731, 7735, 7744, 7740, 7733, 7738, 9388, 7736, 7737, 9388, 7742, 7734, 7739, 9388, 7752, 7756, 7749, 7755, 9388, 7757, 7781, 7773, 9388, 7759, 9388, 7767, 7783, 7777, 7795, 9388, 7771, 7792, 9388, 7796, 7797, 7799, 7790, 9388, 7807, 9388, 7786, 7809, 7810, 7821, 7812, 7828, 7818, 7814, 7826, 7847, 7835, 7839, 9388, 9388, 73, 7849, 7823, 7836, 7837, 7845, 7852, 7844, 7861, 7860, 9388, 9388, 7863, 9388, 7867, 7874, 9388, 7855, 7878, 7884, 7882, 7886, 7871, 7883, 7879, 7897, 7901, 7911, 7905, 7898, 7913, 7934, 7936, 7916, 7923, 7932, 7938, 7944, 7946, 7937, 7949, 7931, 7929, 7952, 7948, 7963, 7960, 7950, 7965, 9388, 7983, 7986, 7988, 7971, 9388, 7993, 7992, 8000, 7996, 9388, 8002, 7994, 7995, 7997, 9388, 7987, 8007, 8013, 8016, 8020, 8041, 8024, 8029, 8042, 9388, 9388, 9388, 8034, 8045, 9388, 8048, 8036, 8028, 8031, 9388, 8051, 8047, 9388, 9388, 8054, 8058, 8062, 8075, 9388, 8071, 9388, 8063, 9388, 8086, 8087, 8094, 8088, 9388, 8096, 8099, 9388, 8093, 8104, 8105, 8098, 8109, 8089, 8112, 9388, 8138, 8132, 8135, 8141, 8124, 8131, 8125, 8144, 8127, 8152, 8123, 8153, 9388, 8151, 8156, 8158, 8159, 8147, 8162, 8169, 9388, 8171, 9388, 8181, 9388, 8179, 8182, 8190, 8188, 8183, 8186, 8193, 8198, 8206, 8214, 8209, 8211, 8202, 8212, 9388, 9388, 8216, 8235, 9388, 8219, 9388, 8242, 9388, 8228, 8229, 8232, 8246, 9388, 8247, 8233, 8234, 8249, 9388, 8262, 8238, 8258, 8266, 9388, 9388, 8261, 8275, 8278, 8260, 8286, 8291, 8272, 8296, 8287, 8285, 8280, 8302, 8284, 8289, 8297, 8306, 8319, 8325, 9388, 9388, 9388, 8308, 8311, 8337, 8334, 8333, 8342, 8321, 9388, 8335, 8341, 8338, 8332, 8350, 8354, 8355, 9388, 8361, 8356, 8359, 8362, 8376, 8360, 8364, 8381, 9388, 8385, 8392, 8388, 8382, 8389, 8395, 8397, 8404, 8400, 8399, 8410, 8409, 9388, 8418, 9388, 9388, 8411, 9388, 8406, 8407, 8417, 8431, 9388, 8435, 8433, 8422, 8434, 8446, 8448, 9388, 8455, 8444, 8449, 8458, 9388, 9388, 8451, 9388, 8453, 8460, 8440, 8477, 8467, 8475, 8484, 8481, 9388, 8469, 8473, 8492, 8476, 8495, 9388, 8490, 8480, 8485, 8494, 9388, 8491, 8507, 8512, 8506, 8526, 9388, 8532, 8515, 8543, 8539, 9388, 8520, 8542, 8533, 9388, 9388, 8548, 8549, 8547, 9388, 9388, 9388, 8552, 8550, 8561, 8563, 9388, 8565, 8585, 8587, 8595, 8564, 9388, 8581, 8571, 8582, 9388, 9388, 8577, 8579, 8598, 8600, 9388, 9388, 8586, 8594, 8606, 8593, 8590, 9388, 8613, 8609, 8614, 8619, 8634, 8620, 8638, 8639, 8644, 8654, 8625, 8640, 8632, 8652, 8658, 8637, 8660, 8659, 8662, 8669, 8672, 8661, 8686, 9388, 9388, 8673, 9388, 8674, 8683, 9388, 9388, 8693, 8694, 8697, 8698, 8702, 8704, 8705, 9388, 8699, 8706, 8700, 8695, 8696, 9388, 8711, 8712, 8713, 8724, 8729, 8743, 8727, 8745, 9388, 9388, 8731, 8747, 8720, 8751, 8735, 9388, 8756, 8765, 8734, 8758, 8762, 8764, 8768, 9388, 8760, 8779, 9388, 9388, 8790, 8783, 9388, 9388, 8770, 9388, 9388, 9388, 9388, 9388, 9388, 9388, 8797, 9388, 8786, 8801, 8802, 8803, 9388, 8789, 8795, 8810, 8813, 8791, 9388, 8811, 8808, 8815, 8841, 8821, 8844, 8837, 8830, 8835, 8838, 8831, 8840, 8842, 8847, 8861, 8852, 8870, 8864, 8880, 9388, 9388, 9388, 8876, 8867, 8889, 8883, 8895, 8897, 8896, 8899, 8882, 8886, 8902, 8903, 8910, 8893, 8912, 8909, 8907, 8919, 8933, 8940, 8923, 8941, 8944, 8932, 8930, 8951, 9388, 8937, 9388, 8935, 9388, 9388, 8955, 8960, 8948, 8950, 8968, 8971, 8958, 8973, 8962, 8979, 8990, 9388, 8991, 9388, 9388, 8976, 8974, 9388, 8978, 8989, 9388, 8982, 8999, 8988, 9001, 9009, 9006, 9005, 9018, 9012, 9388, 9388, 9015, 9020, 9021, 9027, 9039, 9048, 9029, 9041, 9050, 9053, 9032, 9065, 9388, 9061, 9059, 9063, 9388, 9066, 9057, 9062, 9060, 9075, 9077, 9080, 9068, 9388, 9073, 9388, 9083, 9100, 9093, 9086, 9092, 9101, 9115, 9113, 9104, 9388, 9096, 9123, 9110, 9132, 9134, 9125, 9139, 9128, 9148, 9149, 9151, 9158, 9156, 9157, 9150, 9160, 9152, 9388, 9167, 9170, 9388, 9177, 9181, 9174, 9176, 9187, 9388, 9172, 9183, 9192, 9199, 9205, 9210, 9388, 9206, 9207, 9214, 9388, 9213, 9388, 9388, 9219, 9204, 9209, 9212, 9225, 9388, 9388, 9388, 9268, 9275, 9282, 9289, 9296, 9303, 9310, 102, 9317, 9324, 9331, 9338, 9345, 9352, 9359, 9366, 9373, 9380 } ; static const flex_int16_t yy_def[3310] = { 0, 3291, 1, 3292, 3292, 3293, 3293, 3294, 3294, 3295, 3295, 3296, 3296, 3297, 3297, 3298, 3298, 3291, 3299, 3291, 3291, 3291, 3291, 3300, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3301, 3291, 3291, 3291, 3301, 3302, 3291, 3291, 3291, 3302, 3303, 3291, 3291, 3291, 3291, 3303, 3304, 3291, 3291, 3291, 3304, 3305, 3291, 3306, 3291, 3305, 3305, 3307, 3291, 3291, 3291, 3291, 3307, 3308, 3291, 3291, 3291, 3308, 3299, 3299, 3291, 3309, 3300, 3309, 3300, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3301, 3301, 3302, 3302, 3303, 3303, 3291, 3304, 3304, 3305, 3305, 3306, 3306, 3305, 3307, 3307, 3291, 3308, 3308, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3291, 3299, 3291, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3305, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3305, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3305, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3305, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3291, 3299, 3291, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3305, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3305, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3291, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3291, 3291, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3291, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3291, 3291, 3299, 3299, 3291, 3291, 3299, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3291, 3299, 3299, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3299, 3299, 3299, 3291, 3299, 3299, 3299, 3291, 3299, 3291, 3291, 3299, 3299, 3299, 3299, 3299, 3291, 3291, 0, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291 } ; static const flex_int16_t yy_nxt[9455] = { 0, 18, 19, 20, 21, 22, 23, 22, 18, 18, 18, 18, 18, 22, 24, 25, 26, 27, 28, 29, 18, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 18, 18, 18, 45, 46, 24, 25, 26, 27, 28, 29, 18, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 18, 18, 18, 45, 48, 49, 50, 48, 49, 50, 53, 54, 53, 54, 55, 119, 55, 58, 59, 60, 61, 120, 22, 58, 59, 60, 61, 86, 22, 64, 65, 66, 64, 65, 66, 87, 158, 158, 1271, 88, 85, 51, 119, 86, 51, 165, 165, 56, 120, 56, 168, 75, 76, 77, 78, 62, 22, 75, 76, 77, 78, 62, 22, 81, 82, 83, 67, 97, 86, 67, 19, 20, 21, 69, 70, 71, 19, 20, 21, 69, 70, 71, 81, 82, 83, 121, 108, 175, 175, 79, 72, 157, 403, 86, 97, 79, 72, 86, 135, 90, 84, 90, 90, 86, 90, 168, 109, 176, 73, 86, 90, 86, 121, 108, 73, 174, 87, 72, 157, 84, 88, 86, 129, 72, 112, 135, 110, 160, 86, 173, 160, 171, 113, 109, 98, 168, 186, 91, 92, 93, 111, 99, 94, 114, 168, 100, 185, 95, 101, 129, 86, 112, 86, 110, 86, 86, 96, 166, 171, 113, 86, 98, 86, 186, 164, 92, 93, 111, 99, 94, 114, 163, 100, 185, 95, 101, 85, 160, 85, 85, 160, 85, 161, 96, 102, 159, 115, 85, 103, 116, 187, 104, 179, 105, 106, 248, 117, 162, 118, 162, 162, 288, 162, 86, 107, 90, 86, 90, 90, 86, 90, 102, 86, 115, 122, 103, 116, 187, 104, 179, 105, 106, 123, 117, 178, 118, 126, 86, 124, 181, 127, 107, 125, 86, 154, 324, 86, 146, 155, 147, 86, 122, 156, 170, 177, 86, 128, 86, 148, 123, 176, 178, 86, 126, 149, 124, 181, 127, 174, 125, 86, 154, 150, 86, 146, 155, 147, 86, 86, 156, 328, 177, 151, 128, 130, 148, 152, 153, 131, 199, 173, 149, 158, 158, 132, 86, 86, 133, 167, 150, 167, 167, 182, 167, 134, 172, 86, 172, 172, 151, 172, 130, 86, 152, 153, 131, 199, 85, 180, 85, 85, 132, 85, 195, 133, 168, 86, 166, 85, 182, 183, 134, 136, 86, 164, 203, 137, 90, 241, 90, 90, 196, 90, 184, 86, 180, 138, 139, 90, 140, 86, 191, 192, 163, 86, 86, 194, 183, 86, 136, 86, 188, 203, 137, 86, 241, 193, 189, 196, 190, 184, 86, 161, 138, 139, 91, 140, 141, 191, 192, 142, 159, 86, 194, 197, 198, 204, 143, 188, 165, 165, 144, 145, 193, 189, 86, 190, 86, 86, 86, 200, 201, 205, 206, 141, 175, 175, 142, 202, 207, 86, 197, 198, 204, 143, 215, 86, 213, 144, 145, 208, 209, 86, 86, 210, 86, 3291, 200, 201, 205, 206, 86, 216, 86, 3291, 202, 207, 211, 212, 3291, 224, 214, 215, 3291, 223, 86, 218, 208, 209, 86, 219, 210, 217, 221, 86, 225, 227, 86, 222, 216, 226, 86, 229, 86, 211, 212, 220, 224, 214, 86, 86, 223, 228, 218, 86, 86, 86, 219, 231, 217, 221, 230, 225, 227, 236, 222, 86, 226, 232, 229, 86, 233, 3291, 220, 243, 234, 235, 86, 3291, 228, 237, 86, 86, 86, 3291, 231, 256, 86, 230, 250, 86, 236, 3291, 86, 86, 232, 238, 244, 233, 242, 86, 243, 234, 235, 247, 239, 251, 237, 245, 252, 249, 240, 246, 256, 257, 86, 250, 255, 86, 86, 86, 86, 3291, 238, 244, 86, 242, 262, 86, 253, 3291, 247, 239, 251, 258, 245, 252, 249, 240, 246, 254, 257, 86, 259, 255, 86, 265, 263, 264, 86, 266, 1131, 260, 267, 262, 86, 253, 162, 3291, 162, 162, 258, 162, 86, 261, 268, 86, 254, 86, 86, 259, 3291, 86, 265, 263, 264, 3291, 266, 269, 260, 267, 167, 86, 167, 167, 90, 167, 90, 90, 168, 90, 261, 268, 172, 270, 172, 172, 272, 172, 3291, 86, 273, 274, 276, 3291, 269, 86, 278, 271, 275, 279, 280, 277, 86, 282, 86, 3291, 3291, 281, 86, 374, 86, 86, 170, 272, 86, 86, 286, 273, 274, 276, 86, 86, 86, 278, 271, 275, 279, 280, 277, 283, 282, 285, 298, 86, 281, 284, 86, 287, 86, 330, 297, 299, 302, 286, 289, 3291, 3291, 86, 290, 86, 334, 300, 301, 303, 306, 3291, 304, 86, 285, 298, 86, 86, 284, 86, 287, 291, 86, 297, 299, 302, 3291, 86, 86, 86, 86, 290, 3291, 86, 300, 301, 303, 306, 86, 3291, 305, 307, 308, 309, 86, 3291, 310, 311, 291, 292, 312, 313, 3291, 86, 293, 3291, 86, 314, 86, 294, 86, 315, 86, 86, 322, 295, 296, 305, 307, 308, 309, 86, 86, 310, 311, 3291, 292, 312, 313, 86, 321, 293, 325, 86, 314, 323, 294, 326, 315, 333, 331, 322, 295, 296, 316, 86, 86, 317, 327, 318, 336, 335, 86, 329, 332, 337, 340, 321, 86, 325, 86, 319, 323, 320, 338, 339, 333, 3291, 342, 86, 86, 316, 86, 86, 317, 327, 318, 86, 335, 86, 329, 332, 86, 340, 86, 343, 341, 86, 319, 86, 320, 338, 339, 86, 344, 342, 345, 346, 347, 86, 348, 351, 349, 356, 352, 350, 3291, 3291, 86, 353, 355, 86, 343, 341, 86, 86, 86, 354, 86, 86, 86, 344, 358, 345, 346, 347, 86, 348, 351, 349, 356, 361, 350, 357, 359, 360, 86, 355, 86, 86, 362, 364, 363, 86, 354, 365, 367, 86, 368, 369, 366, 370, 372, 86, 86, 373, 377, 86, 371, 3291, 357, 359, 360, 86, 86, 86, 86, 362, 364, 363, 86, 375, 365, 86, 378, 381, 369, 366, 86, 372, 86, 86, 373, 86, 383, 371, 380, 384, 86, 382, 86, 379, 86, 385, 376, 386, 388, 86, 389, 86, 86, 378, 381, 86, 168, 387, 86, 390, 392, 86, 3291, 383, 393, 380, 384, 391, 382, 86, 379, 399, 385, 376, 386, 394, 86, 396, 395, 397, 86, 86, 86, 398, 387, 86, 390, 86, 86, 86, 86, 393, 86, 400, 391, 409, 401, 407, 86, 402, 404, 408, 394, 86, 396, 395, 397, 405, 86, 86, 398, 406, 410, 86, 411, 413, 414, 86, 412, 86, 400, 86, 409, 401, 407, 86, 402, 404, 408, 86, 415, 416, 86, 86, 405, 86, 86, 86, 406, 410, 417, 411, 418, 414, 420, 412, 421, 86, 422, 427, 423, 426, 428, 3291, 425, 86, 86, 429, 416, 419, 86, 86, 86, 430, 3291, 86, 86, 440, 86, 418, 86, 420, 86, 421, 424, 432, 427, 435, 426, 428, 86, 425, 86, 86, 429, 431, 419, 86, 433, 478, 430, 434, 437, 439, 86, 442, 86, 436, 86, 86, 86, 424, 432, 86, 435, 441, 86, 449, 86, 438, 86, 451, 431, 3291, 450, 433, 86, 3291, 434, 437, 439, 86, 442, 86, 436, 86, 455, 3291, 3291, 86, 468, 484, 441, 86, 449, 456, 438, 443, 451, 3291, 444, 450, 452, 457, 453, 445, 446, 447, 448, 86, 86, 458, 459, 455, 460, 86, 462, 86, 86, 461, 454, 3291, 456, 86, 443, 465, 86, 444, 469, 452, 457, 453, 445, 446, 447, 448, 86, 86, 458, 459, 86, 463, 466, 462, 464, 467, 86, 454, 470, 472, 86, 86, 465, 471, 475, 469, 473, 476, 474, 497, 86, 86, 86, 86, 86, 477, 536, 3291, 463, 466, 3291, 464, 467, 86, 86, 470, 472, 86, 86, 86, 471, 475, 482, 473, 476, 474, 479, 490, 480, 86, 3291, 86, 477, 495, 483, 485, 486, 481, 86, 498, 86, 488, 487, 489, 549, 3291, 3291, 496, 554, 482, 3291, 86, 86, 479, 490, 480, 86, 86, 86, 491, 495, 483, 485, 486, 481, 86, 86, 499, 488, 487, 489, 510, 492, 86, 496, 493, 86, 494, 86, 3291, 86, 513, 500, 86, 585, 514, 491, 511, 501, 86, 515, 528, 502, 86, 499, 526, 529, 86, 510, 492, 503, 3291, 493, 86, 494, 512, 86, 86, 513, 500, 516, 86, 514, 532, 511, 501, 86, 515, 518, 502, 527, 86, 526, 86, 533, 3291, 517, 503, 504, 590, 505, 86, 512, 531, 86, 530, 86, 516, 86, 168, 532, 534, 538, 506, 535, 518, 507, 527, 508, 86, 509, 533, 86, 517, 86, 504, 86, 505, 3291, 86, 531, 86, 530, 3291, 3291, 540, 537, 86, 534, 538, 506, 535, 539, 507, 541, 508, 3291, 509, 519, 520, 542, 3291, 544, 3291, 546, 86, 547, 545, 521, 86, 522, 523, 524, 537, 86, 525, 86, 86, 543, 539, 548, 541, 86, 86, 550, 519, 520, 542, 86, 544, 557, 546, 86, 547, 545, 521, 551, 522, 523, 524, 552, 553, 525, 86, 555, 543, 86, 548, 556, 560, 86, 550, 86, 561, 86, 86, 86, 557, 562, 86, 558, 559, 3291, 551, 86, 563, 564, 552, 553, 86, 3291, 555, 565, 566, 572, 556, 560, 3291, 86, 568, 561, 569, 86, 571, 574, 562, 573, 3291, 3291, 86, 567, 86, 563, 564, 575, 86, 570, 86, 86, 565, 566, 572, 86, 86, 86, 576, 568, 586, 569, 86, 571, 574, 588, 573, 587, 577, 591, 567, 86, 589, 594, 575, 86, 570, 592, 86, 578, 593, 579, 603, 595, 596, 576, 86, 586, 86, 86, 86, 86, 588, 597, 587, 577, 591, 86, 86, 589, 594, 598, 599, 86, 592, 86, 578, 593, 579, 580, 595, 596, 600, 601, 86, 86, 602, 581, 582, 86, 597, 583, 584, 604, 606, 605, 3291, 86, 598, 86, 86, 86, 607, 608, 86, 3291, 580, 86, 613, 600, 601, 611, 86, 602, 581, 582, 86, 86, 583, 584, 604, 606, 605, 609, 86, 86, 86, 612, 614, 607, 608, 610, 615, 3291, 86, 613, 617, 616, 611, 618, 619, 620, 625, 86, 621, 3291, 623, 86, 622, 86, 609, 86, 3291, 86, 612, 614, 86, 634, 610, 615, 86, 86, 86, 617, 616, 86, 618, 619, 620, 625, 86, 621, 86, 623, 624, 622, 626, 627, 628, 629, 86, 630, 631, 632, 86, 633, 636, 3291, 86, 86, 86, 86, 637, 86, 86, 635, 641, 639, 86, 643, 640, 624, 638, 626, 627, 628, 629, 644, 630, 631, 632, 86, 633, 86, 86, 86, 86, 642, 86, 637, 86, 645, 635, 641, 639, 646, 643, 640, 86, 638, 86, 647, 649, 650, 653, 651, 3291, 652, 655, 86, 86, 3291, 3291, 86, 642, 86, 654, 656, 645, 86, 86, 715, 646, 670, 648, 86, 657, 86, 658, 649, 650, 653, 651, 86, 652, 655, 86, 86, 86, 86, 659, 3291, 668, 654, 656, 669, 86, 672, 86, 86, 670, 648, 671, 657, 86, 658, 3291, 86, 86, 3291, 86, 673, 3291, 677, 680, 676, 3291, 659, 660, 668, 3291, 3291, 669, 661, 672, 662, 674, 86, 3291, 671, 675, 663, 86, 664, 86, 86, 665, 666, 673, 681, 677, 680, 676, 667, 86, 660, 688, 683, 86, 682, 661, 678, 662, 674, 679, 684, 685, 675, 663, 86, 664, 686, 86, 665, 666, 86, 86, 689, 687, 86, 667, 86, 86, 688, 683, 86, 682, 690, 678, 691, 86, 679, 684, 685, 692, 693, 696, 695, 686, 697, 694, 86, 86, 698, 689, 687, 3291, 86, 86, 86, 701, 86, 700, 86, 690, 702, 691, 86, 86, 699, 703, 692, 693, 696, 695, 716, 697, 694, 86, 704, 698, 86, 706, 86, 709, 705, 707, 701, 168, 700, 86, 708, 702, 86, 86, 712, 699, 86, 710, 86, 711, 713, 86, 86, 86, 714, 704, 86, 717, 706, 718, 709, 705, 707, 86, 3291, 719, 720, 708, 732, 86, 86, 712, 86, 86, 710, 721, 711, 713, 723, 724, 86, 714, 722, 3291, 717, 733, 728, 731, 86, 725, 86, 86, 719, 720, 86, 86, 726, 86, 734, 727, 86, 86, 721, 86, 735, 723, 724, 86, 736, 722, 729, 737, 86, 728, 731, 730, 725, 738, 740, 741, 742, 744, 739, 726, 86, 3291, 727, 3291, 743, 86, 86, 86, 745, 746, 86, 86, 747, 748, 751, 750, 3291, 86, 86, 86, 86, 740, 741, 742, 744, 86, 86, 86, 752, 749, 754, 743, 753, 86, 86, 745, 746, 86, 86, 747, 748, 86, 750, 756, 758, 755, 86, 762, 757, 3291, 86, 86, 86, 760, 759, 752, 749, 754, 86, 753, 86, 761, 763, 3291, 86, 764, 3291, 770, 86, 86, 756, 758, 755, 773, 777, 757, 86, 765, 86, 86, 760, 759, 766, 774, 86, 767, 768, 769, 761, 763, 771, 772, 764, 86, 770, 86, 86, 779, 775, 86, 773, 86, 86, 776, 765, 86, 86, 782, 778, 766, 774, 86, 767, 768, 769, 86, 780, 771, 772, 784, 783, 86, 785, 786, 779, 775, 86, 791, 787, 86, 776, 788, 86, 86, 782, 778, 797, 789, 781, 86, 798, 86, 3291, 780, 86, 86, 784, 783, 86, 785, 786, 792, 794, 790, 86, 787, 795, 796, 788, 86, 86, 86, 793, 86, 789, 781, 799, 798, 86, 86, 86, 802, 86, 804, 86, 800, 801, 806, 792, 794, 790, 803, 86, 795, 796, 807, 805, 808, 3291, 793, 86, 809, 812, 799, 810, 86, 86, 813, 802, 86, 804, 811, 814, 86, 86, 819, 815, 86, 803, 86, 828, 3291, 807, 805, 820, 86, 86, 816, 809, 86, 86, 810, 86, 86, 86, 821, 822, 823, 811, 814, 824, 817, 818, 815, 86, 825, 826, 86, 834, 86, 86, 820, 86, 86, 816, 830, 829, 3291, 86, 833, 3291, 827, 821, 822, 823, 86, 86, 824, 817, 818, 86, 86, 825, 826, 831, 834, 835, 86, 843, 832, 837, 836, 830, 829, 838, 86, 833, 839, 827, 86, 840, 842, 841, 86, 845, 3291, 86, 844, 86, 86, 86, 86, 852, 835, 846, 86, 86, 837, 836, 3291, 86, 838, 86, 847, 839, 851, 86, 840, 842, 841, 86, 845, 849, 848, 844, 86, 850, 86, 854, 855, 86, 846, 86, 853, 86, 857, 856, 86, 858, 865, 847, 86, 851, 86, 86, 860, 86, 86, 859, 849, 848, 864, 86, 850, 86, 854, 855, 866, 86, 86, 853, 863, 857, 856, 867, 858, 865, 861, 862, 86, 870, 869, 860, 86, 872, 859, 86, 868, 864, 86, 871, 873, 3291, 86, 866, 875, 86, 86, 863, 876, 86, 867, 86, 86, 861, 862, 86, 870, 869, 86, 877, 872, 874, 878, 868, 881, 879, 871, 873, 86, 86, 882, 875, 880, 86, 3291, 876, 888, 883, 885, 887, 884, 86, 86, 886, 3291, 889, 877, 86, 874, 878, 86, 881, 879, 86, 86, 86, 86, 882, 86, 880, 86, 168, 890, 888, 883, 885, 887, 884, 86, 891, 886, 892, 889, 893, 894, 86, 895, 898, 3291, 3291, 86, 902, 896, 86, 899, 901, 86, 86, 903, 890, 897, 904, 900, 86, 908, 86, 891, 906, 892, 86, 893, 894, 909, 86, 86, 905, 86, 907, 86, 896, 86, 899, 901, 86, 86, 903, 86, 897, 904, 900, 86, 86, 910, 912, 906, 86, 86, 911, 913, 909, 922, 921, 905, 923, 907, 86, 86, 927, 3291, 3291, 86, 924, 86, 86, 925, 935, 3291, 3291, 86, 910, 912, 86, 926, 3291, 911, 913, 914, 922, 921, 915, 923, 928, 86, 916, 927, 86, 917, 933, 924, 929, 86, 925, 930, 918, 919, 931, 920, 86, 932, 926, 86, 86, 934, 914, 86, 943, 915, 86, 928, 86, 916, 86, 946, 917, 933, 86, 929, 945, 86, 930, 918, 919, 931, 920, 950, 932, 86, 86, 944, 934, 936, 937, 943, 938, 86, 86, 939, 947, 948, 946, 86, 940, 951, 953, 945, 86, 86, 941, 942, 954, 86, 950, 957, 3291, 949, 944, 86, 936, 937, 952, 938, 86, 955, 939, 947, 948, 958, 956, 940, 951, 953, 86, 86, 86, 941, 942, 954, 959, 960, 957, 961, 949, 3291, 3291, 963, 965, 952, 962, 964, 86, 970, 966, 86, 958, 86, 968, 969, 86, 967, 3291, 86, 980, 972, 86, 959, 960, 86, 961, 86, 86, 86, 963, 86, 86, 962, 964, 86, 970, 966, 86, 971, 86, 968, 969, 973, 967, 974, 975, 86, 972, 976, 978, 977, 86, 979, 982, 986, 3291, 86, 86, 86, 86, 981, 983, 985, 987, 86, 971, 984, 989, 86, 973, 988, 974, 975, 991, 86, 976, 978, 977, 990, 979, 86, 993, 86, 994, 86, 992, 86, 981, 995, 985, 1000, 3291, 86, 86, 86, 86, 998, 988, 997, 86, 991, 1001, 86, 999, 86, 990, 1003, 86, 86, 996, 86, 86, 992, 1002, 1004, 995, 86, 86, 86, 86, 86, 1005, 3291, 998, 1006, 997, 1007, 1009, 1001, 86, 999, 1008, 86, 86, 86, 1011, 996, 1010, 1012, 1013, 1002, 1014, 86, 86, 86, 1015, 86, 1016, 1005, 86, 1019, 1006, 86, 1007, 1009, 86, 3291, 1020, 1008, 86, 86, 86, 1011, 86, 1010, 1012, 1013, 1022, 1014, 86, 1017, 1021, 1015, 1027, 1016, 1018, 86, 1019, 1023, 86, 1024, 86, 3291, 1026, 1020, 86, 1028, 1029, 1025, 1030, 1031, 3291, 86, 3291, 1022, 86, 1032, 86, 1021, 1037, 86, 1033, 86, 86, 86, 1023, 86, 1024, 86, 86, 1026, 1034, 1035, 1028, 1029, 1025, 1030, 1031, 86, 1039, 1036, 1040, 86, 1032, 86, 1038, 1037, 86, 1033, 1042, 86, 1041, 1043, 1045, 86, 1044, 3291, 1046, 1034, 1035, 86, 1047, 1048, 1050, 86, 1057, 1039, 1036, 86, 86, 86, 1058, 1038, 86, 86, 1052, 1042, 1060, 1041, 1043, 1045, 86, 1044, 86, 1046, 1049, 1051, 1063, 1047, 86, 1050, 1053, 86, 86, 86, 1054, 1055, 86, 86, 1056, 86, 1059, 1052, 86, 86, 1064, 86, 1061, 1062, 86, 1072, 1069, 1049, 1051, 86, 86, 1065, 1066, 1053, 86, 86, 1067, 1054, 1055, 1070, 86, 1056, 1071, 1059, 1068, 86, 1073, 1074, 86, 1061, 1062, 86, 86, 1069, 86, 1076, 86, 86, 1065, 1066, 3291, 1075, 1078, 1067, 1080, 1077, 1070, 1079, 86, 1071, 86, 1068, 86, 1073, 1074, 86, 86, 1081, 1083, 1084, 3291, 1085, 1082, 1128, 3291, 3291, 86, 86, 1075, 86, 86, 1080, 1077, 1086, 1079, 1088, 1087, 1090, 86, 1092, 86, 1091, 86, 86, 1089, 1083, 1084, 86, 1085, 168, 1094, 1093, 86, 86, 86, 86, 86, 86, 86, 1102, 1086, 1103, 1088, 1087, 1090, 3291, 1092, 1101, 1091, 1104, 3291, 1089, 1105, 86, 86, 1106, 3291, 1094, 1093, 1095, 3291, 1096, 86, 1107, 3291, 1097, 1102, 1098, 1103, 1109, 3291, 1108, 1099, 86, 1101, 86, 86, 1100, 86, 1105, 1110, 3291, 1106, 86, 86, 1113, 1095, 1125, 1096, 1114, 1107, 86, 1097, 86, 1098, 1111, 1109, 1115, 1108, 1099, 1112, 1117, 86, 86, 1100, 86, 1120, 1110, 1118, 1116, 1121, 1129, 1113, 86, 1125, 1130, 1114, 1123, 1119, 1126, 86, 86, 1132, 86, 1115, 1122, 1124, 86, 1117, 1127, 86, 1160, 86, 1120, 1154, 1118, 1116, 1121, 86, 86, 86, 1134, 86, 86, 1123, 1119, 1126, 1143, 1135, 86, 1133, 86, 1122, 1124, 86, 86, 1127, 86, 86, 1144, 1145, 1146, 86, 1147, 3291, 1149, 86, 1150, 1134, 3291, 3291, 1148, 3291, 86, 1143, 1135, 86, 1133, 1136, 3291, 86, 86, 3291, 1137, 86, 1138, 1144, 1145, 1146, 86, 1147, 1139, 1149, 86, 1150, 1153, 1140, 1141, 1148, 1151, 1152, 1156, 1157, 1142, 86, 1136, 86, 86, 86, 1155, 1137, 86, 1138, 1163, 1158, 3291, 86, 1161, 1139, 1164, 1168, 1167, 1153, 1140, 1141, 86, 1151, 1152, 1156, 1157, 1142, 86, 1162, 1159, 1166, 86, 1155, 3291, 1174, 86, 86, 1158, 86, 86, 1161, 86, 1164, 1165, 1167, 1169, 1170, 1171, 86, 1173, 1172, 86, 86, 1175, 86, 1162, 1159, 1166, 3291, 1177, 86, 1176, 3291, 1186, 1199, 86, 86, 86, 86, 86, 1165, 86, 1169, 1170, 1171, 1178, 1173, 1172, 1179, 1181, 1175, 86, 86, 1180, 1188, 1182, 1177, 1184, 1176, 1183, 86, 86, 1190, 1187, 86, 86, 86, 86, 3291, 1185, 86, 1193, 1178, 86, 86, 1179, 1181, 86, 86, 86, 1180, 1188, 1182, 86, 1184, 1189, 1183, 1191, 1192, 1190, 1187, 1194, 86, 1197, 1195, 1196, 1185, 86, 1193, 1198, 86, 1202, 1208, 3291, 1206, 1200, 1203, 1213, 3291, 86, 1215, 86, 1189, 86, 1191, 1192, 86, 86, 1194, 86, 1197, 1195, 1196, 1201, 1207, 86, 1198, 1204, 86, 1208, 1205, 1206, 1200, 86, 86, 1209, 1210, 86, 1211, 86, 1214, 3291, 86, 1212, 1216, 86, 86, 86, 1218, 1219, 1201, 1207, 86, 86, 1204, 86, 86, 1205, 1217, 1221, 1220, 86, 1209, 1210, 3291, 1211, 86, 1214, 1222, 1224, 1212, 1216, 1223, 86, 1226, 1218, 1219, 1227, 1225, 1230, 86, 86, 1228, 86, 3291, 1217, 1221, 1220, 1231, 86, 86, 86, 1229, 86, 1232, 1222, 1224, 1233, 86, 1223, 86, 1226, 1234, 1239, 1227, 1225, 86, 1235, 1236, 1228, 1237, 86, 86, 86, 1240, 86, 1238, 86, 86, 1229, 1241, 1232, 1242, 86, 1233, 1246, 86, 86, 86, 1234, 1239, 1243, 1249, 86, 1235, 1236, 1247, 1237, 1244, 1245, 1248, 1240, 1251, 1238, 1252, 86, 1250, 86, 1256, 3291, 1254, 3291, 86, 86, 86, 1257, 1253, 86, 1243, 86, 86, 86, 86, 1247, 86, 1244, 1245, 1248, 86, 86, 1255, 1252, 86, 1250, 86, 1256, 1258, 1254, 86, 86, 1259, 1260, 1257, 1253, 1261, 1262, 1263, 1264, 1265, 3291, 86, 3291, 86, 86, 1266, 1267, 1268, 1255, 1270, 86, 86, 1269, 86, 1258, 86, 1277, 1273, 1259, 1260, 3291, 3291, 1261, 1262, 86, 86, 1265, 86, 1272, 86, 86, 1282, 1266, 86, 1268, 86, 1270, 86, 1274, 1269, 1275, 1276, 86, 86, 1273, 1278, 86, 1279, 1281, 86, 1280, 1283, 168, 86, 1284, 1272, 1286, 1285, 1282, 1287, 86, 3291, 86, 86, 86, 1274, 1292, 1275, 1276, 86, 1289, 1288, 1278, 1291, 1279, 1281, 1290, 1280, 1283, 86, 1294, 86, 86, 1293, 1285, 1297, 1296, 1295, 86, 3291, 1356, 86, 86, 1292, 86, 86, 86, 1289, 1288, 86, 1291, 86, 86, 1290, 1298, 86, 1300, 1294, 1301, 1299, 1293, 1302, 1297, 1296, 1295, 1303, 86, 86, 1304, 1305, 86, 86, 86, 1313, 3291, 1310, 86, 86, 3291, 1311, 1315, 1298, 3291, 86, 3291, 1301, 1299, 1312, 1302, 86, 1306, 1314, 1303, 86, 3291, 1304, 1305, 1316, 86, 1307, 86, 1308, 1310, 1320, 1309, 86, 1311, 1315, 1317, 86, 1318, 86, 86, 3291, 1312, 1319, 86, 1306, 1314, 86, 3291, 86, 1323, 1322, 1316, 86, 1307, 1325, 1308, 1327, 1320, 1309, 1321, 86, 1324, 1317, 1328, 1318, 86, 1332, 86, 3291, 1319, 86, 86, 1326, 1329, 86, 1330, 1323, 1322, 1333, 1331, 86, 1325, 86, 86, 3291, 86, 1321, 3291, 1324, 86, 1328, 1334, 1335, 1332, 1337, 86, 86, 1339, 1338, 1326, 1329, 86, 1330, 86, 86, 1333, 1331, 1336, 1340, 86, 86, 1344, 1341, 3291, 1345, 86, 1342, 86, 1334, 1335, 86, 1337, 86, 86, 1339, 1338, 86, 1343, 1348, 3291, 1346, 3291, 86, 1347, 1336, 1340, 86, 86, 1344, 1341, 86, 1345, 1350, 1342, 1349, 1352, 86, 1351, 3291, 1353, 86, 86, 1354, 86, 1343, 1348, 86, 1346, 1355, 1359, 1347, 1357, 86, 1360, 86, 86, 1361, 1358, 1363, 1350, 86, 1349, 1352, 86, 1351, 1362, 1353, 86, 86, 1354, 86, 1366, 1364, 86, 1368, 1355, 1359, 1365, 1357, 86, 1360, 1367, 1377, 1361, 1358, 1363, 1369, 86, 86, 1378, 3291, 1379, 1362, 1380, 86, 1383, 86, 3291, 1366, 3291, 3291, 1368, 1381, 1384, 86, 1408, 1409, 86, 1367, 1377, 1382, 1385, 86, 1369, 1370, 3291, 1378, 1386, 1371, 86, 1380, 1372, 1373, 86, 86, 86, 1374, 86, 86, 1381, 1384, 1388, 1375, 86, 86, 1391, 1376, 1382, 1385, 1395, 86, 1370, 86, 86, 1386, 1371, 1387, 1393, 1372, 1373, 3291, 3291, 86, 1374, 1389, 1392, 1390, 86, 1388, 1375, 1394, 86, 1391, 1376, 86, 86, 1395, 86, 1397, 1398, 1399, 1396, 1400, 1387, 1393, 3291, 3291, 86, 86, 1407, 1401, 1389, 1392, 1390, 86, 3291, 3291, 1394, 3291, 1411, 3291, 1413, 1415, 1410, 86, 1397, 1414, 1416, 1396, 1400, 86, 86, 86, 86, 1425, 86, 1407, 1401, 1402, 86, 1412, 1417, 86, 1403, 86, 1404, 1411, 1405, 1413, 1406, 1410, 1419, 86, 1414, 86, 1418, 86, 1421, 1420, 86, 86, 1422, 3291, 1426, 1424, 1402, 86, 1412, 1417, 86, 1403, 86, 1404, 86, 1405, 86, 1406, 86, 1419, 1423, 1427, 1428, 1418, 1429, 1421, 1420, 1431, 86, 1422, 86, 1426, 1424, 1432, 1433, 86, 86, 1430, 1435, 1437, 86, 1434, 86, 1436, 1438, 86, 86, 1423, 1427, 1428, 86, 1429, 1439, 1440, 1431, 86, 1442, 1443, 3291, 1441, 1432, 1433, 1445, 86, 1430, 86, 86, 86, 1434, 86, 1436, 1438, 1446, 1447, 86, 86, 86, 1450, 1444, 1439, 1440, 1448, 1449, 1442, 86, 86, 1441, 86, 86, 86, 1451, 1452, 1454, 1455, 1453, 86, 3291, 86, 86, 1446, 1447, 86, 1456, 1457, 86, 1444, 1460, 1458, 1448, 1449, 1459, 86, 86, 1461, 86, 86, 1462, 1451, 1452, 1454, 1455, 1453, 86, 1463, 1464, 1465, 86, 86, 86, 1456, 1457, 86, 1466, 1460, 1458, 1467, 1468, 1459, 86, 1469, 1461, 1472, 86, 1462, 1470, 1473, 86, 1471, 86, 86, 1463, 1464, 1465, 1474, 86, 86, 1475, 1476, 86, 1466, 1479, 86, 1467, 1468, 1477, 86, 1469, 86, 1472, 1480, 1485, 1470, 1478, 1486, 1471, 1488, 86, 86, 86, 1481, 86, 1482, 86, 1475, 3291, 86, 86, 1479, 1483, 86, 1484, 1477, 1487, 168, 86, 86, 86, 1489, 3291, 1478, 3291, 1494, 86, 1490, 1491, 86, 1481, 86, 1482, 1492, 86, 86, 1493, 86, 86, 1483, 86, 1484, 1496, 1487, 1495, 1498, 1501, 86, 1489, 1497, 1499, 86, 1494, 86, 1490, 1491, 86, 1500, 1502, 86, 1492, 1503, 86, 1493, 1508, 1505, 1504, 1509, 86, 1496, 1506, 1495, 1498, 86, 86, 3291, 1497, 1499, 1507, 86, 1511, 1519, 86, 86, 1500, 1502, 86, 86, 1503, 1510, 3291, 1508, 86, 1504, 1509, 1514, 1512, 86, 1515, 1513, 1516, 3291, 86, 1517, 1521, 1507, 1518, 1511, 86, 1520, 1522, 1525, 86, 86, 3291, 1523, 1510, 86, 86, 86, 86, 1524, 1514, 1512, 1527, 1515, 1513, 1516, 86, 86, 1517, 1521, 86, 1518, 1526, 1528, 1520, 1530, 1525, 1540, 1529, 1531, 86, 86, 86, 1532, 86, 1533, 1524, 86, 1534, 1527, 86, 1536, 3291, 1537, 1535, 86, 1544, 86, 86, 1526, 1528, 86, 1530, 86, 1538, 1529, 1531, 1541, 86, 86, 1532, 1539, 1533, 86, 1543, 1534, 86, 86, 1536, 86, 1537, 1535, 86, 1544, 1542, 1545, 1547, 86, 1546, 1548, 3291, 1538, 86, 1550, 1541, 1549, 86, 86, 1539, 1552, 1551, 1543, 86, 1554, 1557, 1558, 1556, 1553, 86, 86, 3291, 1542, 1545, 1547, 1565, 1546, 1548, 86, 86, 86, 1550, 86, 1549, 1560, 1555, 86, 1552, 1551, 1559, 1566, 1554, 86, 86, 1556, 1553, 1561, 86, 86, 1562, 1563, 1567, 86, 1564, 3291, 1568, 86, 86, 1569, 1570, 86, 86, 1555, 1574, 1571, 1573, 1559, 86, 1578, 3291, 1572, 3291, 86, 1561, 86, 86, 1562, 1563, 86, 1577, 1564, 86, 1568, 86, 86, 1569, 86, 86, 86, 1575, 1574, 1571, 1573, 1576, 86, 1578, 1579, 1572, 1580, 86, 1581, 1582, 86, 86, 1583, 86, 1577, 1589, 1584, 1597, 1586, 1588, 86, 1585, 86, 1587, 1575, 86, 86, 1592, 1576, 1590, 86, 1579, 1591, 1580, 1600, 1581, 1582, 86, 1593, 1583, 86, 86, 1589, 1594, 1596, 86, 1588, 1598, 86, 86, 86, 86, 1602, 86, 1592, 1595, 1590, 1599, 86, 1591, 86, 1603, 86, 1611, 1601, 1593, 86, 1604, 1605, 86, 1594, 1596, 86, 86, 1598, 86, 86, 1606, 1607, 1602, 1610, 1609, 1595, 1608, 1599, 86, 86, 86, 1612, 86, 1611, 1601, 86, 86, 1604, 1605, 86, 1614, 1613, 1615, 1616, 1619, 3291, 1618, 1606, 1607, 1617, 1610, 1609, 1620, 1608, 1624, 86, 86, 1621, 1612, 3291, 86, 1622, 86, 86, 1625, 86, 86, 86, 1613, 86, 1616, 1619, 86, 1618, 1623, 1626, 1617, 1629, 1627, 1620, 1631, 1624, 86, 1628, 1621, 86, 86, 86, 1622, 1630, 1635, 1625, 1633, 1634, 86, 1632, 1637, 1640, 1636, 1638, 1641, 1623, 1626, 86, 86, 1627, 86, 86, 86, 1642, 1628, 86, 86, 86, 1645, 86, 1630, 1635, 86, 1633, 1634, 86, 1632, 1637, 1639, 1636, 1638, 86, 1643, 86, 1644, 86, 1646, 1648, 86, 1647, 1642, 3291, 1650, 1649, 86, 1645, 86, 1651, 1653, 1652, 1654, 3291, 1656, 1655, 3291, 1639, 86, 86, 86, 1643, 86, 1644, 1660, 3291, 86, 1662, 1647, 86, 86, 86, 1649, 86, 86, 1657, 1651, 1653, 1652, 1654, 86, 1656, 1655, 1658, 1659, 1661, 86, 86, 1663, 86, 1664, 1660, 86, 86, 1662, 1665, 1669, 1667, 86, 86, 1668, 1666, 1657, 86, 86, 1670, 86, 86, 1671, 86, 1658, 1659, 1661, 1672, 86, 1663, 1673, 1664, 1674, 3291, 1676, 1678, 1665, 1669, 1667, 86, 86, 1668, 1666, 1675, 86, 1679, 1670, 1677, 1680, 1671, 86, 86, 86, 3291, 1672, 86, 86, 86, 1681, 1674, 86, 1676, 1678, 1682, 1684, 1683, 1685, 1689, 86, 86, 1675, 1688, 1679, 86, 1677, 1680, 168, 1690, 1691, 86, 86, 1686, 1687, 1694, 86, 1681, 3291, 3291, 1692, 86, 86, 1684, 1683, 1685, 1689, 86, 1695, 1696, 1688, 1693, 86, 1700, 1698, 86, 1690, 1691, 86, 3291, 1686, 1687, 86, 1697, 1699, 1701, 86, 1692, 1702, 1703, 86, 86, 86, 3291, 1704, 1695, 1696, 1706, 1693, 86, 1705, 1698, 86, 1707, 1708, 86, 86, 86, 86, 1709, 1697, 1699, 1701, 1710, 1712, 1711, 1703, 1713, 86, 1714, 86, 86, 1715, 86, 1706, 86, 1718, 1705, 86, 86, 1707, 1708, 1726, 86, 1723, 86, 1709, 1717, 1716, 86, 1710, 1712, 1711, 86, 1713, 1722, 1714, 86, 86, 1715, 86, 1719, 86, 1718, 1720, 1724, 86, 1730, 1727, 1726, 1728, 1723, 86, 1731, 1717, 1716, 1721, 1729, 1732, 1736, 1733, 1725, 3291, 3291, 1743, 86, 1734, 86, 1719, 86, 86, 1720, 1724, 1735, 86, 1727, 1737, 1728, 1742, 1744, 1738, 86, 86, 1721, 1729, 86, 1739, 1733, 1725, 1740, 86, 86, 86, 1734, 86, 86, 86, 86, 86, 86, 1735, 1741, 86, 1737, 1745, 1742, 1746, 1738, 86, 1749, 1747, 86, 1748, 1739, 86, 1751, 1740, 1754, 1750, 1755, 1752, 3291, 1753, 3291, 86, 3291, 86, 86, 1741, 86, 86, 1745, 86, 1759, 86, 1756, 86, 1747, 86, 1748, 86, 1757, 1751, 1762, 1754, 1750, 1755, 1752, 86, 1753, 86, 1758, 1760, 86, 1763, 1761, 86, 1764, 86, 1765, 1759, 1771, 1756, 86, 3291, 1766, 1768, 1769, 1757, 86, 1762, 86, 86, 86, 1767, 3291, 1773, 86, 1758, 1760, 86, 1763, 1761, 1770, 1764, 86, 1775, 1774, 86, 86, 1772, 86, 1766, 1768, 1769, 1776, 1777, 86, 86, 1781, 1780, 1767, 86, 1773, 1782, 1778, 1779, 86, 86, 86, 1770, 86, 86, 1775, 1774, 86, 1783, 1772, 86, 1784, 1789, 1790, 1776, 1777, 86, 1785, 1781, 1780, 1791, 1795, 1786, 1782, 1778, 1779, 86, 1787, 86, 1788, 1792, 86, 1793, 3291, 86, 1783, 86, 1794, 1784, 1789, 86, 86, 1797, 1798, 1785, 86, 1796, 86, 86, 1786, 86, 1801, 1799, 1802, 1787, 1800, 1788, 1792, 1803, 1793, 86, 86, 86, 86, 1794, 86, 86, 1808, 1806, 1797, 1798, 86, 1804, 1796, 86, 1805, 1807, 1809, 1801, 1799, 1802, 3291, 1800, 1810, 86, 1803, 86, 1811, 1812, 1813, 86, 1814, 3291, 1817, 86, 1806, 86, 86, 1816, 1804, 86, 86, 1805, 1815, 1809, 86, 86, 86, 86, 1819, 1810, 1818, 1820, 1825, 1811, 1812, 1813, 1821, 1814, 86, 1817, 3291, 86, 1823, 1826, 1816, 1824, 86, 1828, 3291, 1815, 1822, 1831, 86, 86, 86, 1819, 86, 1818, 1820, 1825, 86, 1827, 86, 1821, 86, 1834, 1829, 86, 1832, 1823, 1826, 1830, 1824, 1835, 1828, 1836, 1833, 1822, 1831, 1837, 86, 86, 1838, 1840, 86, 1839, 1842, 86, 1827, 1841, 1844, 1843, 1834, 86, 1845, 1832, 1848, 3291, 86, 3291, 1849, 3291, 1836, 1833, 86, 86, 86, 86, 86, 1858, 86, 1846, 1839, 1842, 86, 86, 1841, 1847, 1843, 86, 1852, 1845, 86, 1850, 1851, 1853, 1854, 1849, 86, 1856, 1859, 86, 86, 1857, 1855, 86, 86, 1860, 1846, 86, 86, 1861, 86, 86, 1847, 1862, 86, 1852, 86, 1863, 1850, 1851, 1853, 1854, 1865, 1864, 1856, 1859, 1866, 86, 1857, 1855, 86, 86, 1867, 1868, 86, 1869, 1873, 86, 1870, 1872, 1862, 86, 3291, 86, 86, 1871, 1875, 86, 86, 1865, 1864, 1874, 1876, 1866, 1877, 1878, 86, 1879, 86, 86, 1868, 1883, 1887, 86, 1880, 1870, 1872, 86, 86, 86, 1881, 1882, 1871, 1875, 86, 86, 86, 86, 1874, 1876, 1885, 1877, 1878, 86, 1879, 168, 1884, 1890, 86, 86, 1888, 1880, 1886, 1891, 86, 86, 1889, 1881, 1882, 1893, 86, 1892, 86, 86, 1894, 3291, 86, 1885, 86, 86, 1895, 1897, 1896, 1884, 1890, 1898, 86, 1888, 1900, 1886, 1891, 86, 1899, 1889, 3291, 86, 1893, 1903, 1892, 1901, 1902, 1904, 86, 3291, 1908, 1905, 86, 1895, 1897, 1896, 1906, 86, 86, 3291, 1907, 86, 86, 1909, 86, 1899, 86, 86, 86, 1912, 1910, 1911, 1901, 1902, 86, 86, 1914, 1908, 1905, 86, 86, 86, 1913, 1906, 86, 1915, 1917, 1907, 1920, 1916, 1909, 86, 1918, 1925, 86, 86, 1912, 1910, 1911, 1921, 86, 86, 1923, 1914, 86, 1919, 1922, 1926, 86, 1913, 86, 1924, 1915, 1917, 3291, 1920, 1916, 1928, 1936, 1918, 86, 86, 1927, 86, 86, 86, 1921, 1929, 86, 1923, 1930, 1932, 1919, 1922, 1935, 86, 1931, 1937, 1924, 86, 1933, 86, 1934, 86, 1928, 86, 1939, 1943, 1938, 1927, 1940, 1945, 1947, 86, 1929, 86, 86, 1930, 1932, 1941, 86, 1935, 1942, 1931, 86, 86, 3291, 1933, 86, 1934, 1944, 1946, 1948, 86, 86, 1938, 86, 1940, 1949, 1951, 1950, 86, 86, 86, 86, 1952, 1941, 1953, 1955, 1942, 1956, 1954, 1961, 86, 86, 86, 3291, 1944, 1946, 1948, 1958, 1960, 86, 86, 1959, 1957, 1951, 1950, 3291, 1966, 86, 86, 86, 86, 1953, 86, 86, 1956, 1954, 1962, 1963, 1964, 86, 86, 86, 1969, 1965, 1958, 1960, 1967, 86, 1959, 1957, 1968, 86, 1970, 1966, 1973, 86, 1971, 86, 1975, 86, 1974, 1972, 1976, 1962, 1963, 1964, 1978, 86, 1977, 1980, 1965, 3291, 86, 1967, 86, 1979, 86, 1968, 86, 1970, 86, 1973, 1982, 86, 1981, 1975, 1984, 1974, 86, 1976, 86, 1983, 86, 86, 1985, 1977, 1980, 1987, 86, 1986, 1988, 86, 1979, 1989, 86, 1990, 1991, 1992, 86, 86, 86, 1981, 86, 1984, 1994, 1995, 1996, 1993, 1983, 1998, 86, 1985, 1997, 86, 1987, 86, 1986, 86, 86, 2006, 1989, 86, 86, 1991, 1992, 86, 1999, 2000, 2001, 86, 2002, 1994, 2004, 86, 1993, 2007, 1998, 86, 2005, 1997, 2003, 86, 86, 86, 2008, 86, 86, 2009, 2010, 2011, 2012, 86, 3291, 1999, 2000, 2001, 86, 2002, 2015, 2004, 86, 2014, 2007, 2013, 86, 2005, 86, 2003, 86, 2016, 2017, 2008, 86, 2018, 2019, 86, 86, 2012, 2020, 86, 86, 86, 86, 2021, 86, 2015, 2022, 2025, 2014, 2029, 2013, 3291, 2023, 2028, 86, 2024, 2016, 2017, 86, 86, 2018, 2019, 2027, 2026, 86, 2020, 2030, 86, 2034, 86, 86, 86, 2032, 2031, 2025, 86, 2029, 2033, 86, 2023, 2028, 86, 2024, 2036, 86, 86, 2035, 2037, 2038, 2027, 2026, 86, 2039, 86, 2041, 2034, 2042, 2040, 2044, 2032, 2031, 86, 86, 2043, 2033, 2045, 86, 86, 86, 2048, 2036, 86, 2050, 2035, 86, 2038, 86, 2051, 2054, 2039, 2052, 86, 2046, 2042, 2040, 2044, 2047, 86, 2049, 86, 2043, 2053, 2045, 86, 86, 2057, 86, 2058, 2059, 2050, 86, 86, 86, 2055, 86, 2054, 86, 2052, 2056, 2046, 2062, 2060, 2063, 2047, 86, 2049, 2061, 2067, 2053, 86, 2064, 86, 2057, 2065, 86, 86, 2066, 2071, 2069, 86, 2055, 2068, 2072, 2070, 2073, 2056, 2074, 3291, 3291, 86, 2075, 86, 86, 86, 86, 86, 86, 2064, 86, 86, 2065, 86, 2079, 2066, 2071, 2069, 2076, 2077, 2068, 2081, 2070, 2073, 168, 2080, 86, 2078, 2082, 2075, 86, 2083, 2084, 86, 86, 86, 86, 2085, 2087, 86, 2086, 2079, 3291, 2088, 2089, 2076, 2077, 86, 2081, 86, 2090, 2091, 2080, 2092, 2078, 86, 2093, 2096, 86, 2084, 86, 86, 86, 2097, 86, 2087, 2094, 2086, 86, 86, 2088, 2089, 86, 2095, 2098, 86, 2099, 2090, 2091, 86, 2092, 86, 86, 2093, 2096, 2100, 2101, 2102, 86, 2103, 86, 2104, 86, 2094, 2106, 2105, 86, 2107, 86, 2109, 2095, 2098, 86, 2099, 86, 2108, 2110, 86, 2111, 86, 86, 3291, 2100, 2101, 86, 86, 2103, 2113, 2104, 2112, 86, 2106, 2105, 2114, 2107, 2117, 86, 86, 86, 2116, 86, 86, 2108, 2110, 2115, 2111, 2119, 2120, 86, 2121, 2118, 2125, 2122, 86, 2113, 2124, 2112, 86, 86, 86, 2114, 2123, 2117, 2126, 86, 86, 2116, 2131, 2129, 86, 2127, 2115, 86, 2119, 2120, 2128, 2121, 2118, 86, 2122, 86, 86, 2124, 86, 2132, 2130, 86, 86, 2123, 2133, 2126, 2135, 2134, 3291, 86, 2129, 2137, 2127, 86, 86, 2138, 2136, 2128, 2139, 2140, 2141, 2145, 86, 2143, 2142, 3291, 2132, 2130, 86, 2144, 86, 2133, 86, 86, 2134, 86, 86, 2146, 86, 2148, 86, 86, 2138, 2136, 86, 2139, 2140, 86, 2145, 2150, 2143, 2142, 86, 2147, 86, 86, 2144, 2149, 2151, 86, 2156, 86, 2152, 86, 2146, 2153, 2148, 86, 2158, 2154, 2157, 2159, 86, 86, 86, 2162, 2150, 86, 2163, 2160, 2147, 2165, 2155, 86, 2149, 2151, 2161, 2156, 86, 2152, 86, 2166, 2153, 86, 2164, 2158, 2154, 2157, 86, 86, 86, 86, 2162, 86, 2168, 2163, 2160, 2169, 2165, 2155, 2167, 2170, 2172, 2161, 2171, 2174, 86, 2173, 2166, 86, 2175, 2164, 3291, 86, 2176, 2178, 86, 86, 86, 86, 86, 2168, 86, 2177, 2169, 2179, 86, 2167, 2170, 2172, 86, 2171, 2174, 2180, 2173, 2182, 86, 2175, 2181, 86, 2184, 2176, 86, 2186, 2183, 2188, 2185, 2187, 2196, 86, 2177, 2189, 2179, 86, 3291, 86, 2190, 86, 2192, 86, 2180, 2193, 2182, 86, 86, 2181, 86, 2184, 2191, 86, 86, 2183, 2188, 2185, 2187, 86, 2197, 2194, 2189, 2195, 86, 86, 2198, 2190, 2199, 86, 86, 86, 2193, 86, 2202, 2200, 3291, 86, 2204, 2191, 2205, 2203, 86, 2201, 3291, 2206, 2212, 2197, 2194, 2207, 2195, 86, 86, 2198, 86, 2199, 86, 2211, 3291, 2218, 2208, 86, 2200, 86, 86, 2204, 86, 2205, 2203, 86, 2201, 86, 2206, 2212, 2209, 2213, 2207, 2210, 2215, 2216, 2214, 86, 86, 2217, 2211, 2220, 2218, 2208, 2221, 2219, 2222, 2223, 86, 2224, 86, 86, 86, 2243, 86, 86, 2225, 2209, 86, 2226, 2210, 2215, 2216, 86, 86, 86, 2217, 86, 2220, 2227, 86, 2221, 2219, 2222, 86, 2228, 2224, 2229, 2230, 2232, 86, 2231, 86, 2225, 3291, 2233, 2226, 86, 86, 2237, 2235, 2234, 86, 86, 2238, 2241, 2227, 86, 86, 2245, 2253, 86, 2228, 2236, 2229, 2230, 2232, 86, 2231, 86, 86, 86, 2233, 2239, 2240, 2242, 2237, 2235, 2234, 2244, 2246, 2238, 2241, 86, 3291, 86, 86, 2247, 86, 2248, 2236, 2249, 86, 86, 2250, 2254, 2255, 86, 2251, 168, 2239, 2240, 2242, 2252, 2258, 86, 2244, 2246, 2257, 2256, 86, 86, 2259, 3291, 2247, 86, 2248, 2263, 2249, 2264, 86, 2250, 2262, 2255, 2266, 2267, 2260, 86, 86, 3291, 86, 86, 2265, 86, 2268, 2257, 2256, 2261, 86, 2259, 86, 2269, 2270, 2271, 86, 86, 2264, 86, 2272, 2262, 2273, 2266, 2275, 2260, 2278, 2274, 86, 86, 2277, 2265, 86, 2268, 86, 2283, 2261, 86, 2281, 86, 2269, 86, 2271, 2276, 2280, 86, 86, 86, 86, 2273, 86, 2275, 86, 2278, 2274, 2279, 86, 2277, 2282, 86, 86, 2284, 2283, 2287, 2285, 2281, 2288, 86, 86, 2286, 2276, 2280, 2289, 2290, 86, 2291, 86, 2293, 2292, 3291, 2296, 2295, 2279, 3291, 86, 2282, 86, 86, 2284, 86, 86, 2285, 86, 2288, 86, 86, 2286, 2298, 2294, 2289, 2290, 2297, 2291, 86, 2293, 2292, 86, 2296, 2295, 2300, 86, 2299, 2301, 2303, 2302, 2304, 86, 86, 86, 2306, 86, 2305, 2310, 86, 86, 2294, 2307, 86, 2297, 2311, 86, 2308, 86, 2309, 86, 86, 2300, 2312, 2299, 2301, 2303, 2302, 2304, 86, 2313, 2314, 2306, 86, 2305, 2310, 86, 2315, 2316, 2307, 2319, 2317, 2311, 2320, 2308, 2318, 2309, 3291, 86, 2321, 2312, 2322, 86, 86, 86, 2324, 2328, 86, 2314, 86, 2325, 86, 2329, 2323, 2315, 2316, 86, 2319, 2317, 86, 86, 2330, 2318, 3291, 86, 86, 2321, 2326, 86, 2331, 2327, 2332, 2324, 86, 2333, 2334, 86, 2325, 86, 86, 2323, 86, 2335, 86, 2336, 86, 2338, 2337, 2330, 2340, 86, 86, 2341, 2342, 2326, 86, 2331, 2327, 2332, 2339, 2343, 2333, 2334, 2344, 86, 2345, 2346, 2349, 86, 86, 2347, 86, 2350, 86, 2337, 86, 86, 2348, 86, 2341, 2342, 2352, 2353, 86, 86, 86, 2339, 86, 2351, 86, 86, 86, 2345, 2346, 2349, 2354, 86, 2347, 2358, 86, 2355, 3291, 2356, 2359, 2348, 2361, 2360, 2362, 86, 2353, 2364, 86, 2363, 86, 86, 2351, 86, 2357, 86, 86, 2366, 2367, 2354, 2365, 86, 86, 3291, 2355, 86, 2356, 2359, 2369, 2361, 2360, 86, 86, 2372, 2364, 2368, 2363, 2370, 2374, 2371, 86, 2357, 2423, 86, 2366, 86, 2373, 2365, 2375, 86, 86, 86, 2379, 86, 2376, 2369, 2378, 86, 86, 2377, 86, 86, 2368, 86, 2370, 2374, 2371, 2380, 86, 86, 2381, 2386, 2382, 2373, 2389, 2375, 2385, 3291, 86, 2379, 2387, 2376, 2388, 2378, 86, 86, 2377, 2383, 86, 2384, 2391, 86, 2396, 86, 2380, 86, 86, 2381, 2386, 2382, 2390, 2389, 86, 2385, 2392, 86, 86, 2387, 2393, 2388, 2394, 2395, 86, 2397, 2383, 2398, 2384, 2391, 2401, 86, 86, 2399, 2400, 86, 86, 2402, 2403, 2390, 2404, 2408, 86, 2392, 86, 2405, 2409, 2393, 2406, 2394, 2395, 86, 2397, 2407, 86, 86, 86, 2401, 86, 86, 2399, 2400, 86, 86, 2402, 2403, 86, 2404, 2408, 2410, 2411, 86, 2405, 2413, 3291, 2406, 2412, 2415, 86, 2414, 2407, 2416, 3291, 86, 2421, 2419, 3291, 2420, 2418, 2417, 3291, 86, 86, 86, 3291, 86, 2434, 2411, 2435, 2425, 2413, 86, 2422, 2412, 2426, 86, 2414, 86, 2416, 86, 168, 2421, 2419, 86, 2420, 2418, 2417, 86, 2424, 86, 2429, 2427, 2428, 86, 86, 2435, 2425, 2430, 2431, 2422, 86, 2426, 86, 2432, 86, 86, 2436, 2433, 2437, 2438, 86, 2439, 2440, 2442, 3291, 2424, 2449, 2429, 2427, 2428, 86, 86, 86, 2441, 2430, 2431, 2443, 3291, 2444, 2446, 2432, 86, 86, 86, 2433, 2437, 2438, 2445, 2447, 86, 86, 86, 86, 86, 86, 2448, 86, 2450, 86, 2454, 2441, 2451, 86, 2443, 86, 2444, 2446, 2452, 2453, 2455, 86, 2456, 3291, 2458, 2445, 2447, 2459, 2460, 3291, 2457, 86, 86, 2448, 86, 2450, 2462, 86, 2461, 2451, 86, 86, 86, 86, 2466, 2452, 2453, 2455, 86, 2456, 86, 2458, 86, 2463, 2459, 86, 2465, 2457, 86, 2464, 86, 2467, 2468, 2462, 2469, 2461, 86, 86, 86, 86, 2470, 2466, 2471, 2474, 2472, 2476, 2479, 2473, 2489, 2480, 2463, 86, 86, 2465, 86, 86, 2464, 2475, 2467, 2468, 86, 86, 2477, 86, 2478, 86, 86, 2470, 86, 2471, 2474, 2472, 2476, 86, 2473, 2481, 2480, 2482, 86, 2483, 86, 2484, 3291, 2490, 2475, 2485, 86, 2486, 86, 2477, 2487, 2478, 86, 2491, 2493, 86, 2488, 2492, 86, 3291, 86, 3291, 2481, 2501, 2482, 2495, 2483, 86, 2484, 86, 2490, 2497, 2485, 2494, 2486, 86, 86, 2487, 86, 86, 86, 86, 86, 2488, 2492, 2496, 2498, 86, 2499, 2500, 86, 2502, 2495, 86, 2503, 2504, 86, 2505, 2497, 3291, 2494, 2506, 2510, 2507, 2509, 2511, 86, 2512, 86, 2508, 86, 86, 2496, 2498, 2515, 2499, 2500, 86, 86, 86, 2516, 86, 2504, 86, 2505, 86, 86, 2517, 2506, 86, 2507, 2509, 2511, 2513, 2514, 86, 2508, 2519, 2520, 86, 2518, 86, 86, 3291, 86, 2526, 86, 2516, 2521, 86, 2522, 2523, 2524, 3291, 2517, 2525, 2528, 3291, 86, 86, 2513, 2514, 2529, 86, 2519, 86, 2530, 2518, 2527, 86, 86, 86, 2526, 86, 86, 2521, 2531, 2522, 2523, 2524, 86, 86, 2525, 2528, 86, 2532, 2533, 2534, 2535, 2529, 2536, 2537, 2541, 2530, 2538, 2527, 2539, 3291, 86, 2540, 86, 2543, 2545, 2531, 3291, 86, 2547, 86, 86, 2542, 2548, 3291, 86, 86, 86, 86, 86, 2536, 2537, 2541, 2544, 2538, 86, 2539, 86, 86, 2540, 2546, 2543, 86, 2549, 86, 2551, 86, 2550, 86, 2542, 86, 2552, 2557, 2554, 2553, 2558, 2555, 2556, 3291, 86, 2544, 86, 86, 86, 86, 86, 86, 2546, 2559, 86, 2549, 2565, 2551, 86, 2550, 86, 2561, 3291, 2552, 86, 2554, 2553, 2558, 2555, 2556, 2560, 2562, 2563, 3291, 86, 86, 2564, 86, 2566, 2570, 2559, 2567, 86, 2565, 86, 86, 2569, 2572, 2561, 2568, 2571, 168, 2576, 86, 86, 86, 86, 2560, 2562, 2563, 2574, 86, 2573, 2564, 2575, 2566, 2570, 2577, 2567, 2578, 3291, 86, 2579, 2569, 2572, 86, 2568, 2571, 2580, 86, 2583, 2581, 86, 2586, 2582, 2584, 86, 2574, 86, 2573, 86, 2575, 86, 3291, 86, 86, 2578, 86, 86, 2579, 86, 2587, 2585, 2589, 86, 2580, 86, 2583, 2581, 86, 2586, 2582, 2584, 2588, 2591, 2590, 2592, 2593, 2594, 2596, 86, 86, 86, 86, 2595, 2597, 86, 86, 2587, 2585, 2589, 2598, 2600, 2602, 2605, 2599, 86, 2601, 86, 86, 2588, 2591, 2590, 2592, 2593, 2594, 86, 2603, 2604, 3291, 86, 2595, 2597, 86, 86, 86, 86, 86, 2598, 86, 86, 2605, 2599, 2607, 2601, 2606, 2611, 2608, 2609, 2612, 2610, 2616, 86, 2613, 2603, 2604, 86, 86, 86, 86, 86, 2615, 2614, 2617, 2618, 3291, 3291, 2620, 2622, 3291, 2607, 86, 2606, 86, 2608, 2609, 86, 2610, 86, 86, 2613, 86, 86, 2619, 2623, 2621, 2626, 2628, 2615, 2614, 86, 2624, 86, 86, 2620, 2622, 86, 2625, 86, 3291, 2627, 2629, 2630, 2632, 86, 2634, 86, 2631, 86, 2633, 2619, 2623, 2621, 2626, 86, 86, 2635, 86, 2624, 2636, 86, 86, 2641, 86, 2625, 86, 86, 2627, 2629, 86, 2632, 2637, 2634, 2639, 2631, 2640, 2633, 2638, 86, 2642, 86, 86, 2644, 2635, 2643, 86, 2636, 2645, 2648, 86, 2647, 86, 2653, 86, 2649, 2646, 2651, 3291, 2637, 86, 2639, 2654, 2640, 86, 2638, 2657, 2642, 86, 86, 86, 86, 2643, 2650, 86, 2645, 86, 86, 2647, 2652, 86, 2655, 2649, 2646, 2651, 86, 86, 2656, 2658, 2654, 2659, 2660, 2662, 86, 2661, 2664, 86, 2665, 2667, 86, 2650, 2663, 2666, 86, 2672, 3291, 2652, 86, 2655, 2670, 86, 2674, 86, 86, 2656, 2658, 86, 86, 2660, 2662, 2668, 2661, 86, 86, 2665, 86, 2669, 86, 2663, 2666, 2671, 86, 2673, 2675, 86, 2679, 2670, 2677, 86, 2676, 86, 2678, 3291, 2680, 86, 3291, 2682, 2668, 86, 2681, 86, 86, 2684, 2669, 86, 86, 2685, 2671, 2687, 2673, 2675, 86, 2679, 86, 2677, 86, 2676, 86, 2678, 2683, 2680, 2688, 2686, 2682, 86, 2689, 2681, 2690, 86, 2684, 2692, 86, 2693, 2685, 86, 86, 2691, 2694, 2695, 86, 2696, 86, 3291, 2697, 2699, 3291, 2683, 86, 86, 2686, 2698, 2700, 168, 2702, 2690, 86, 3291, 2692, 86, 2693, 86, 2701, 2703, 2691, 2710, 2695, 86, 2696, 2704, 86, 2697, 86, 86, 2705, 2706, 86, 2707, 2698, 86, 2708, 86, 2709, 2711, 2713, 2712, 2716, 86, 86, 2701, 2703, 2717, 2710, 86, 2714, 2718, 86, 86, 2721, 86, 2715, 86, 2706, 86, 2707, 86, 86, 2708, 2720, 2719, 2711, 2713, 2712, 86, 86, 2722, 2723, 86, 86, 2724, 86, 2714, 2718, 86, 86, 2721, 2725, 2715, 86, 2726, 2727, 86, 2728, 2729, 2731, 2720, 2719, 2730, 86, 86, 2732, 86, 2722, 2723, 86, 2733, 2724, 2734, 86, 86, 86, 86, 86, 2725, 2735, 2738, 2726, 2727, 2736, 2728, 2729, 2731, 86, 86, 2730, 86, 2739, 2732, 86, 2741, 2737, 2740, 2742, 2743, 2734, 2744, 2745, 86, 86, 86, 2748, 2735, 86, 86, 86, 2736, 86, 86, 86, 2747, 2749, 2750, 86, 2739, 2746, 2751, 2741, 2737, 2740, 2742, 86, 86, 2744, 2745, 2752, 2753, 2754, 86, 2755, 3291, 2756, 2758, 86, 2759, 2763, 2757, 2747, 2749, 2761, 2760, 2764, 2746, 2765, 86, 2768, 86, 86, 86, 86, 86, 86, 86, 86, 2754, 86, 2755, 86, 2756, 2758, 2762, 2759, 86, 2757, 2767, 86, 2761, 2760, 86, 86, 86, 2766, 86, 2769, 2770, 2771, 2772, 2774, 3291, 2775, 86, 2773, 2776, 2777, 86, 3291, 86, 2762, 2778, 2779, 86, 2767, 2781, 3291, 86, 2782, 86, 2783, 2766, 86, 2769, 2770, 2771, 86, 2774, 86, 2775, 2784, 86, 86, 86, 2780, 86, 2785, 2786, 2778, 2779, 2787, 2788, 2781, 86, 2791, 86, 86, 2783, 86, 2789, 86, 2790, 2792, 2793, 86, 2795, 2799, 86, 2794, 86, 2798, 2780, 86, 2785, 86, 2796, 2797, 2787, 2788, 2802, 3291, 86, 86, 86, 2801, 86, 2789, 2803, 2800, 2792, 86, 86, 2795, 86, 2804, 86, 2805, 2798, 86, 2806, 2807, 86, 2796, 2797, 2808, 3291, 86, 86, 2812, 86, 2811, 2801, 2814, 86, 2803, 2800, 2815, 86, 2809, 2810, 86, 2804, 2813, 2805, 86, 86, 2806, 2807, 86, 86, 86, 2808, 86, 2817, 2816, 2812, 2820, 2811, 2819, 2814, 2821, 2818, 2827, 86, 86, 2809, 2810, 86, 2822, 2813, 2824, 86, 2828, 2823, 2826, 2825, 3291, 86, 2829, 86, 2817, 2816, 86, 2820, 2830, 2819, 2831, 2821, 2818, 86, 2834, 3291, 2832, 2833, 2835, 86, 2836, 86, 86, 2828, 86, 2826, 86, 86, 86, 2829, 2837, 2838, 2839, 2840, 86, 2830, 86, 2831, 86, 86, 86, 2834, 86, 2832, 2833, 2835, 2842, 2836, 2841, 2843, 86, 3291, 2845, 86, 2844, 86, 2846, 2837, 2838, 2839, 2840, 86, 2847, 2848, 2849, 2850, 2851, 2852, 2854, 2853, 2855, 3291, 3291, 86, 3291, 2841, 86, 86, 86, 2845, 2856, 2844, 86, 86, 86, 86, 86, 86, 2857, 2847, 86, 2849, 86, 2851, 2852, 2854, 2853, 86, 2858, 2859, 2861, 2862, 2864, 86, 2860, 3291, 86, 2856, 2865, 2863, 86, 2866, 2869, 2867, 86, 2857, 2868, 3291, 86, 86, 3291, 86, 2871, 2870, 86, 2858, 86, 2861, 2862, 2864, 2873, 86, 86, 2875, 3291, 86, 2863, 86, 86, 2869, 2867, 86, 2872, 2868, 86, 2874, 2876, 2877, 86, 2871, 2870, 3291, 86, 86, 2878, 2879, 2885, 2873, 2880, 3291, 2881, 86, 3291, 2883, 2882, 86, 2884, 2886, 2887, 2872, 2888, 2890, 2874, 2876, 2877, 3291, 86, 86, 86, 86, 2891, 2878, 2879, 86, 86, 2880, 86, 2881, 86, 86, 2883, 2882, 2889, 2884, 86, 86, 2892, 2888, 2890, 86, 2893, 3291, 86, 2894, 2895, 2896, 2897, 2891, 2900, 2898, 2901, 2902, 2899, 86, 86, 86, 2903, 86, 2904, 2889, 3291, 86, 86, 2907, 2905, 86, 2906, 2893, 86, 2908, 2894, 86, 2896, 2897, 86, 2900, 2898, 86, 2902, 2899, 2909, 86, 86, 86, 2912, 2904, 86, 2910, 86, 86, 2907, 2905, 86, 2906, 2911, 2913, 2908, 2915, 2914, 86, 2916, 86, 2917, 3291, 2919, 2925, 2920, 2909, 2918, 86, 2921, 86, 86, 86, 2910, 3291, 86, 3291, 86, 2927, 86, 2911, 2913, 86, 2915, 2914, 2922, 2916, 86, 2917, 2923, 2919, 86, 2920, 2926, 2918, 86, 2921, 2928, 86, 2924, 86, 86, 2929, 86, 2930, 86, 2931, 2932, 86, 2935, 2933, 3291, 2922, 2934, 2940, 2936, 2923, 86, 86, 2937, 2926, 86, 86, 86, 86, 2939, 2924, 86, 2942, 2929, 2938, 86, 2944, 2931, 2932, 86, 86, 2933, 86, 2941, 2934, 2940, 2936, 2943, 2946, 2945, 2937, 86, 2947, 86, 86, 86, 2939, 2948, 2949, 86, 2953, 2938, 2950, 2955, 2952, 86, 2954, 2957, 86, 2956, 2941, 86, 2959, 86, 2943, 2946, 2945, 86, 86, 86, 86, 2951, 86, 2958, 86, 2949, 2962, 2953, 2960, 86, 86, 2952, 2961, 2954, 2957, 86, 2956, 2963, 2964, 86, 2965, 86, 2966, 2967, 86, 2968, 2969, 2970, 2951, 2971, 2958, 2973, 86, 2962, 86, 2960, 3291, 2972, 86, 2961, 3291, 2976, 3291, 3291, 2963, 86, 86, 86, 86, 2966, 86, 86, 2968, 2969, 86, 86, 2971, 2974, 2975, 2977, 2978, 2980, 2981, 86, 2972, 2982, 2983, 86, 86, 86, 2979, 2985, 86, 86, 86, 86, 2984, 86, 2986, 2987, 2989, 2990, 2988, 2991, 2974, 2975, 2977, 2978, 2980, 86, 2992, 2995, 2982, 2983, 86, 86, 3291, 2979, 86, 2993, 2996, 86, 86, 2984, 2997, 86, 2987, 2989, 86, 2988, 86, 2994, 86, 86, 2999, 3000, 2998, 86, 3002, 86, 86, 3003, 86, 86, 86, 3001, 2993, 2996, 3005, 3006, 86, 86, 3007, 3004, 3008, 86, 3009, 3013, 2994, 3014, 3016, 2999, 3000, 2998, 86, 3002, 86, 86, 86, 3012, 3010, 3015, 3001, 86, 3011, 3005, 3006, 86, 3017, 86, 3004, 86, 86, 3291, 86, 3018, 86, 3016, 86, 3019, 3020, 86, 3021, 86, 3025, 3022, 3012, 3010, 3015, 3023, 86, 3011, 86, 3024, 3027, 3028, 86, 3026, 86, 86, 86, 3029, 3018, 86, 86, 3031, 3019, 86, 86, 3021, 3030, 3025, 3022, 86, 86, 86, 3023, 86, 86, 3032, 3024, 3027, 3028, 3035, 3026, 3033, 3034, 3036, 3029, 86, 86, 3038, 3031, 3037, 3039, 86, 3041, 3030, 86, 3291, 3040, 3042, 3043, 86, 3044, 3045, 3032, 3046, 3047, 86, 3035, 3048, 3033, 3034, 3036, 86, 86, 3291, 3038, 3050, 3037, 3051, 86, 3041, 3058, 86, 86, 3040, 3042, 3043, 86, 86, 86, 86, 3046, 86, 3049, 3059, 3048, 3052, 3053, 3054, 3055, 3291, 86, 3060, 86, 86, 86, 3056, 3057, 3058, 3061, 3062, 86, 3063, 3065, 3067, 3069, 3064, 86, 3070, 86, 3049, 86, 86, 3068, 3066, 86, 86, 86, 3073, 3060, 86, 3072, 3074, 86, 86, 86, 3061, 3062, 86, 3063, 86, 3067, 3069, 3064, 3071, 3070, 86, 3075, 3076, 86, 3068, 3066, 3080, 86, 86, 3073, 3077, 3081, 3072, 86, 86, 3078, 3082, 3083, 3079, 86, 3085, 3090, 3084, 3088, 3086, 3071, 86, 3089, 86, 3076, 3087, 86, 86, 86, 86, 3091, 3092, 3077, 86, 3093, 3096, 3097, 3078, 3094, 3083, 3079, 86, 3085, 86, 3084, 3088, 3086, 86, 86, 86, 86, 86, 3087, 3095, 3098, 3099, 3100, 3091, 86, 3101, 3102, 86, 86, 86, 3103, 3094, 3104, 3105, 3107, 3109, 3106, 3108, 86, 3291, 3112, 86, 3291, 3291, 3110, 3291, 3095, 3098, 86, 86, 86, 86, 86, 86, 86, 86, 3113, 86, 3111, 86, 86, 86, 3109, 3106, 3108, 3114, 86, 86, 86, 3115, 3117, 3110, 3116, 3118, 3121, 86, 3126, 3119, 3120, 86, 3122, 3123, 86, 3113, 86, 3111, 86, 3124, 3125, 86, 86, 3127, 3114, 3291, 3131, 3291, 3115, 3117, 86, 3116, 86, 3121, 86, 3126, 3119, 3120, 86, 3122, 3123, 3128, 3129, 86, 3130, 86, 3124, 86, 3132, 86, 3127, 86, 86, 3131, 3133, 86, 3135, 86, 3134, 3137, 3136, 3138, 3139, 3140, 3142, 3145, 86, 3291, 3128, 3129, 86, 3130, 3141, 86, 3143, 3132, 86, 86, 86, 3147, 3148, 3133, 86, 3135, 86, 3134, 3137, 3136, 86, 86, 86, 3142, 3145, 3144, 3146, 86, 3150, 86, 86, 3141, 86, 3143, 86, 3149, 3291, 3151, 3147, 3148, 86, 3153, 3152, 3158, 3291, 3154, 3155, 3157, 3156, 86, 86, 3159, 3144, 3146, 86, 3150, 86, 86, 3160, 86, 86, 86, 3149, 86, 3151, 3161, 86, 3162, 3153, 3152, 3158, 86, 3154, 3155, 3157, 3156, 3163, 3164, 3159, 3166, 86, 3167, 3165, 86, 3168, 3160, 86, 3169, 3171, 86, 3170, 3172, 3161, 3173, 3162, 86, 3180, 3175, 3174, 86, 3176, 86, 86, 3163, 3164, 86, 3166, 3177, 86, 3165, 3178, 3168, 86, 3181, 86, 86, 86, 3170, 86, 3179, 3173, 86, 86, 3182, 3175, 3174, 86, 3176, 86, 86, 3183, 86, 3184, 3186, 3177, 3185, 3187, 3178, 86, 3188, 3181, 3189, 86, 3190, 3191, 3192, 3179, 3193, 3195, 86, 3182, 86, 86, 3194, 86, 3197, 86, 3183, 3198, 86, 86, 3196, 3185, 86, 3199, 3291, 3188, 86, 3189, 86, 86, 3191, 3192, 3201, 86, 3195, 3202, 86, 3200, 86, 3194, 86, 3203, 3204, 3207, 3208, 3206, 86, 3196, 3205, 86, 3199, 86, 86, 3209, 86, 3210, 86, 86, 3211, 3201, 86, 3215, 3202, 3217, 3200, 3212, 86, 86, 86, 86, 3207, 3208, 3206, 3213, 3216, 3205, 3214, 86, 3221, 86, 3209, 3224, 3210, 86, 86, 3211, 3218, 86, 3215, 3219, 86, 3220, 3212, 86, 3223, 3222, 86, 3225, 86, 86, 3213, 3216, 3228, 3214, 3291, 86, 3226, 86, 3224, 3227, 86, 3229, 3230, 3218, 3232, 3231, 3219, 86, 3220, 86, 3235, 3233, 3222, 3238, 3225, 3241, 86, 3234, 86, 3228, 3236, 86, 3240, 3226, 3242, 86, 3227, 86, 86, 86, 86, 86, 3231, 86, 86, 3237, 86, 3235, 3233, 3245, 3239, 86, 3241, 86, 3234, 86, 3246, 3236, 86, 3240, 3243, 86, 3247, 3244, 86, 3248, 3291, 3249, 3251, 3250, 86, 86, 3237, 3252, 86, 3253, 3245, 3239, 86, 86, 3254, 3257, 86, 3246, 3255, 3291, 3256, 3243, 86, 3247, 3244, 86, 3248, 86, 3249, 3251, 3250, 3258, 3259, 3260, 3252, 86, 3253, 86, 3262, 3261, 86, 3254, 3257, 3263, 86, 3255, 86, 3256, 3264, 3265, 3267, 86, 3269, 3291, 3266, 3291, 3268, 3276, 3258, 3259, 86, 86, 86, 86, 86, 3262, 3261, 3271, 86, 86, 86, 3272, 86, 3275, 3270, 3264, 3265, 3267, 3273, 86, 3274, 3266, 86, 3268, 86, 3279, 86, 3277, 86, 86, 3280, 3282, 3283, 86, 3271, 86, 3278, 3289, 3272, 86, 3275, 3270, 3281, 3285, 86, 3273, 3284, 3274, 3287, 3286, 3290, 86, 3279, 3288, 3277, 3291, 86, 86, 86, 86, 3291, 86, 86, 3278, 86, 86, 86, 3291, 3291, 3281, 3285, 86, 3291, 3284, 3291, 3287, 3286, 86, 3291, 3291, 3288, 47, 47, 47, 47, 47, 47, 47, 52, 52, 52, 52, 52, 52, 52, 57, 57, 57, 57, 57, 57, 57, 63, 63, 63, 63, 63, 63, 63, 68, 68, 68, 68, 68, 68, 68, 74, 74, 74, 74, 74, 74, 74, 80, 80, 80, 80, 80, 80, 80, 89, 89, 3291, 89, 89, 89, 89, 158, 158, 3291, 3291, 3291, 158, 158, 160, 160, 3291, 3291, 160, 3291, 160, 162, 3291, 3291, 3291, 3291, 3291, 162, 165, 165, 3291, 3291, 3291, 165, 165, 167, 3291, 3291, 3291, 3291, 3291, 167, 169, 169, 3291, 169, 169, 169, 169, 172, 3291, 3291, 3291, 3291, 3291, 172, 175, 175, 3291, 3291, 3291, 175, 175, 90, 90, 3291, 90, 90, 90, 90, 17, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291 } ; static const flex_int16_t yy_chk[9455] = { 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, 32, 6, 7, 7, 7, 7, 33, 7, 8, 8, 8, 8, 32, 8, 9, 9, 9, 10, 10, 10, 19, 51, 51, 1073, 19, 3299, 3, 32, 33, 4, 67, 67, 5, 33, 6, 2689, 13, 13, 13, 13, 7, 13, 14, 14, 14, 14, 8, 14, 15, 15, 15, 9, 25, 1073, 10, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 16, 16, 16, 34, 28, 84, 84, 13, 11, 45, 289, 25, 25, 14, 12, 34, 39, 23, 15, 23, 23, 45, 23, 1082, 28, 175, 11, 28, 23, 39, 34, 28, 12, 174, 87, 11, 45, 16, 87, 289, 37, 12, 30, 39, 29, 56, 37, 172, 56, 72, 30, 28, 26, 167, 100, 23, 24, 24, 29, 26, 24, 30, 72, 26, 99, 24, 26, 37, 30, 30, 29, 29, 100, 99, 24, 165, 72, 30, 26, 26, 24, 100, 164, 24, 24, 29, 26, 24, 30, 162, 26, 99, 24, 26, 46, 161, 46, 46, 161, 46, 160, 24, 27, 158, 31, 46, 27, 31, 101, 27, 94, 27, 27, 143, 31, 62, 31, 62, 62, 193, 62, 101, 27, 70, 27, 70, 70, 31, 70, 27, 94, 31, 35, 27, 31, 101, 27, 94, 27, 27, 35, 31, 93, 31, 36, 143, 35, 96, 36, 27, 35, 193, 44, 217, 96, 42, 44, 42, 35, 35, 44, 70, 92, 85, 36, 93, 42, 35, 80, 93, 36, 36, 42, 35, 96, 36, 75, 35, 44, 44, 43, 42, 42, 44, 42, 217, 92, 44, 220, 92, 43, 36, 38, 42, 43, 43, 38, 109, 74, 42, 159, 159, 38, 43, 109, 38, 73, 43, 73, 73, 97, 73, 38, 79, 38, 79, 79, 43, 79, 38, 220, 43, 43, 38, 109, 86, 95, 86, 86, 38, 86, 106, 38, 68, 97, 63, 86, 97, 98, 38, 40, 95, 58, 111, 40, 89, 138, 89, 89, 106, 89, 98, 111, 95, 40, 40, 89, 40, 138, 103, 103, 57, 98, 106, 105, 98, 40, 40, 103, 102, 111, 40, 105, 138, 104, 102, 106, 102, 98, 104, 52, 40, 40, 89, 40, 41, 103, 103, 41, 47, 102, 105, 107, 108, 112, 41, 102, 166, 166, 41, 41, 104, 102, 112, 102, 107, 108, 41, 110, 110, 113, 114, 41, 176, 176, 41, 110, 115, 114, 107, 108, 112, 41, 119, 110, 118, 41, 41, 116, 117, 18, 119, 117, 113, 17, 110, 110, 113, 114, 115, 120, 116, 0, 110, 115, 117, 117, 0, 124, 118, 119, 0, 123, 117, 121, 116, 117, 118, 121, 117, 120, 122, 120, 125, 127, 123, 122, 120, 126, 122, 129, 124, 117, 117, 121, 124, 118, 129, 121, 123, 128, 121, 126, 125, 127, 121, 131, 120, 122, 130, 125, 127, 135, 122, 128, 126, 132, 129, 130, 133, 0, 121, 140, 133, 134, 132, 0, 128, 136, 131, 140, 134, 0, 131, 148, 136, 130, 145, 135, 135, 0, 133, 148, 132, 137, 141, 133, 139, 139, 140, 133, 134, 142, 137, 145, 136, 141, 145, 144, 137, 141, 148, 149, 145, 145, 147, 142, 137, 149, 141, 0, 137, 141, 144, 139, 152, 147, 146, 0, 142, 137, 145, 150, 141, 145, 144, 137, 141, 146, 149, 152, 151, 147, 150, 155, 153, 154, 146, 156, 930, 151, 157, 152, 155, 146, 163, 0, 163, 163, 150, 163, 154, 151, 171, 157, 146, 151, 153, 151, 0, 156, 155, 153, 154, 0, 156, 177, 151, 157, 168, 930, 168, 168, 169, 168, 169, 169, 171, 169, 151, 171, 173, 178, 173, 173, 179, 173, 0, 177, 180, 181, 182, 0, 177, 179, 184, 178, 181, 185, 186, 183, 180, 188, 184, 0, 0, 187, 182, 262, 181, 185, 169, 179, 187, 178, 191, 180, 181, 182, 183, 188, 186, 184, 178, 181, 185, 186, 183, 189, 188, 190, 197, 190, 187, 189, 262, 192, 191, 222, 196, 198, 201, 191, 194, 0, 0, 197, 194, 198, 225, 199, 200, 202, 204, 0, 203, 201, 190, 197, 202, 189, 189, 192, 192, 194, 196, 196, 198, 201, 0, 222, 194, 199, 200, 194, 0, 204, 199, 200, 202, 204, 225, 0, 203, 205, 206, 207, 203, 0, 208, 209, 194, 195, 209, 210, 0, 206, 195, 0, 207, 211, 208, 195, 210, 212, 209, 205, 215, 195, 195, 203, 205, 206, 207, 215, 195, 208, 209, 0, 195, 209, 210, 211, 214, 195, 218, 212, 211, 216, 195, 219, 212, 224, 223, 215, 195, 195, 213, 224, 216, 213, 219, 213, 227, 226, 214, 221, 223, 228, 231, 214, 218, 218, 221, 213, 216, 213, 229, 230, 224, 0, 233, 219, 213, 213, 223, 226, 213, 219, 213, 231, 226, 230, 221, 223, 227, 231, 229, 234, 232, 228, 213, 233, 213, 229, 230, 232, 234, 233, 235, 236, 237, 234, 238, 241, 239, 245, 242, 240, 0, 0, 241, 242, 244, 236, 234, 232, 239, 235, 240, 243, 238, 244, 237, 234, 247, 235, 236, 237, 245, 238, 241, 239, 245, 249, 240, 246, 248, 248, 242, 244, 246, 243, 250, 252, 251, 248, 243, 253, 255, 250, 256, 257, 254, 258, 260, 253, 247, 261, 264, 257, 259, 0, 246, 248, 248, 249, 251, 260, 252, 250, 252, 251, 254, 263, 253, 259, 265, 267, 257, 254, 255, 260, 256, 261, 261, 258, 269, 259, 266, 270, 264, 268, 266, 265, 269, 271, 263, 272, 274, 267, 275, 265, 271, 265, 267, 263, 268, 273, 270, 276, 278, 273, 0, 269, 279, 266, 270, 277, 268, 272, 265, 285, 271, 263, 272, 280, 279, 282, 281, 283, 274, 276, 275, 284, 273, 284, 276, 281, 280, 277, 282, 279, 278, 286, 277, 295, 287, 293, 283, 288, 290, 294, 280, 285, 282, 281, 283, 291, 293, 290, 284, 292, 296, 294, 297, 299, 300, 286, 298, 295, 286, 287, 295, 287, 293, 288, 288, 290, 294, 300, 301, 302, 297, 291, 291, 296, 298, 292, 292, 296, 303, 297, 304, 300, 305, 298, 306, 299, 307, 311, 308, 310, 312, 0, 309, 311, 302, 313, 302, 304, 310, 309, 301, 314, 0, 304, 312, 323, 306, 304, 305, 305, 303, 306, 308, 316, 311, 319, 310, 312, 307, 309, 308, 313, 313, 315, 304, 314, 317, 351, 314, 318, 321, 322, 315, 325, 317, 320, 316, 323, 318, 308, 316, 319, 319, 324, 320, 327, 322, 321, 325, 329, 315, 0, 328, 317, 321, 0, 318, 321, 322, 351, 325, 328, 320, 327, 331, 0, 0, 324, 341, 356, 324, 329, 327, 332, 321, 326, 329, 0, 326, 328, 330, 333, 330, 326, 326, 326, 326, 332, 331, 334, 334, 331, 335, 326, 336, 341, 333, 335, 330, 0, 332, 356, 326, 338, 330, 326, 342, 330, 333, 330, 326, 326, 326, 326, 334, 338, 334, 334, 336, 337, 339, 336, 337, 340, 335, 330, 343, 345, 342, 337, 338, 344, 348, 342, 346, 349, 347, 364, 339, 345, 348, 340, 349, 350, 387, 0, 337, 339, 0, 337, 340, 347, 343, 343, 345, 350, 346, 344, 344, 348, 354, 346, 349, 347, 352, 360, 352, 354, 0, 364, 350, 362, 355, 357, 358, 352, 387, 365, 360, 359, 358, 359, 398, 0, 0, 363, 403, 354, 0, 362, 352, 352, 360, 352, 355, 357, 358, 361, 362, 355, 357, 358, 352, 359, 365, 366, 359, 358, 359, 369, 361, 363, 363, 361, 398, 361, 369, 0, 403, 371, 367, 361, 424, 372, 361, 370, 367, 366, 373, 380, 367, 371, 366, 378, 380, 372, 369, 361, 367, 0, 361, 373, 361, 370, 367, 378, 371, 367, 375, 370, 372, 383, 370, 367, 424, 373, 376, 367, 379, 383, 378, 380, 384, 0, 375, 367, 368, 429, 368, 376, 370, 382, 375, 381, 384, 375, 379, 382, 383, 385, 389, 368, 386, 376, 368, 379, 368, 389, 368, 384, 386, 375, 368, 368, 381, 368, 0, 385, 382, 429, 381, 0, 0, 391, 388, 388, 385, 389, 368, 386, 390, 368, 391, 368, 0, 368, 377, 377, 392, 0, 393, 0, 395, 390, 396, 394, 377, 393, 377, 377, 377, 388, 394, 377, 395, 391, 392, 390, 397, 391, 392, 377, 399, 377, 377, 392, 396, 393, 406, 395, 397, 396, 394, 377, 400, 377, 377, 377, 401, 402, 377, 400, 404, 392, 404, 397, 405, 408, 399, 399, 406, 409, 402, 401, 408, 406, 410, 405, 407, 407, 0, 400, 409, 411, 412, 401, 402, 410, 0, 404, 413, 413, 417, 405, 408, 0, 411, 414, 409, 415, 417, 416, 419, 410, 418, 0, 0, 407, 413, 412, 411, 412, 420, 419, 415, 413, 418, 413, 413, 417, 414, 420, 415, 421, 414, 425, 415, 416, 416, 419, 427, 418, 426, 422, 430, 413, 421, 428, 433, 420, 430, 415, 431, 425, 422, 432, 422, 442, 434, 435, 421, 422, 425, 427, 426, 428, 435, 427, 436, 426, 422, 430, 433, 431, 428, 433, 437, 438, 432, 431, 434, 422, 432, 422, 423, 434, 435, 439, 440, 442, 437, 441, 423, 423, 436, 436, 423, 423, 443, 445, 444, 0, 440, 437, 438, 445, 423, 446, 447, 439, 0, 423, 444, 451, 439, 440, 449, 441, 441, 423, 423, 443, 451, 423, 423, 443, 445, 444, 448, 446, 447, 449, 450, 452, 446, 447, 448, 453, 0, 450, 451, 455, 454, 449, 456, 457, 458, 464, 452, 459, 0, 462, 458, 460, 448, 448, 455, 0, 460, 450, 452, 453, 473, 448, 453, 454, 464, 457, 455, 454, 456, 456, 457, 458, 464, 459, 459, 462, 462, 463, 460, 465, 466, 467, 469, 463, 469, 470, 471, 466, 472, 475, 0, 469, 473, 471, 470, 476, 467, 465, 474, 479, 478, 472, 481, 478, 463, 477, 465, 466, 467, 469, 482, 469, 470, 471, 481, 472, 474, 476, 477, 478, 480, 475, 476, 479, 483, 474, 479, 478, 484, 481, 478, 483, 477, 480, 485, 486, 487, 490, 488, 0, 489, 492, 482, 488, 0, 0, 489, 480, 486, 491, 493, 483, 484, 492, 544, 484, 501, 485, 487, 494, 490, 495, 486, 487, 490, 488, 485, 489, 492, 495, 494, 491, 493, 496, 0, 499, 491, 493, 500, 501, 503, 544, 499, 501, 485, 502, 494, 496, 495, 0, 500, 503, 0, 502, 504, 0, 507, 509, 506, 0, 496, 497, 499, 0, 0, 500, 497, 503, 497, 505, 506, 0, 502, 505, 497, 509, 497, 504, 507, 497, 497, 504, 510, 507, 509, 506, 497, 497, 497, 516, 511, 505, 510, 497, 508, 497, 505, 508, 512, 513, 505, 497, 511, 497, 514, 508, 497, 497, 514, 512, 517, 515, 517, 497, 510, 516, 516, 511, 515, 510, 518, 508, 519, 513, 508, 512, 513, 520, 521, 524, 523, 514, 525, 522, 519, 523, 526, 517, 515, 0, 521, 522, 520, 530, 526, 528, 518, 518, 531, 519, 525, 524, 527, 532, 520, 521, 524, 523, 545, 525, 522, 530, 533, 526, 527, 535, 528, 538, 534, 536, 530, 531, 528, 535, 537, 531, 538, 533, 541, 527, 534, 539, 536, 540, 542, 532, 537, 542, 543, 533, 545, 546, 535, 547, 538, 534, 536, 540, 0, 548, 549, 537, 558, 541, 539, 541, 546, 543, 539, 550, 540, 542, 552, 553, 548, 543, 551, 0, 546, 559, 555, 557, 550, 554, 549, 547, 548, 549, 551, 558, 554, 555, 560, 554, 552, 557, 550, 553, 561, 552, 553, 554, 562, 551, 556, 563, 559, 555, 557, 556, 554, 564, 565, 566, 567, 569, 564, 554, 565, 0, 554, 0, 568, 569, 560, 561, 570, 571, 566, 562, 572, 573, 576, 575, 0, 573, 556, 563, 567, 565, 566, 567, 569, 564, 568, 570, 577, 574, 579, 568, 578, 571, 572, 570, 571, 574, 575, 572, 573, 578, 575, 581, 583, 580, 576, 587, 582, 0, 583, 577, 579, 585, 584, 577, 574, 579, 580, 578, 582, 586, 588, 0, 585, 589, 0, 592, 586, 581, 581, 583, 580, 595, 600, 582, 584, 590, 589, 587, 585, 584, 590, 596, 588, 590, 590, 591, 586, 588, 593, 594, 589, 592, 592, 595, 591, 602, 597, 593, 595, 590, 594, 598, 590, 596, 600, 604, 601, 590, 596, 597, 590, 590, 591, 598, 603, 593, 594, 606, 605, 602, 607, 608, 602, 597, 601, 613, 609, 604, 598, 610, 608, 607, 604, 601, 619, 611, 603, 603, 620, 606, 0, 603, 605, 610, 606, 605, 609, 607, 608, 614, 616, 612, 613, 609, 617, 618, 610, 611, 612, 620, 615, 616, 611, 603, 621, 620, 619, 614, 615, 623, 618, 625, 617, 622, 622, 627, 614, 616, 612, 624, 625, 617, 618, 628, 626, 629, 0, 615, 621, 630, 633, 621, 631, 623, 631, 633, 623, 626, 625, 632, 634, 624, 622, 637, 635, 628, 624, 627, 645, 0, 628, 626, 638, 630, 634, 636, 630, 629, 635, 631, 638, 632, 633, 639, 640, 641, 632, 634, 642, 636, 636, 635, 641, 643, 644, 637, 650, 636, 650, 638, 645, 639, 636, 647, 646, 0, 640, 649, 0, 644, 639, 640, 641, 643, 642, 642, 636, 636, 644, 646, 643, 644, 648, 650, 651, 647, 659, 648, 653, 652, 647, 646, 654, 649, 649, 655, 644, 652, 656, 658, 657, 654, 661, 0, 655, 660, 658, 656, 657, 651, 668, 651, 662, 653, 648, 653, 652, 0, 659, 654, 661, 663, 655, 667, 662, 656, 658, 657, 660, 661, 665, 664, 660, 663, 666, 667, 670, 671, 665, 662, 664, 669, 668, 673, 672, 671, 674, 680, 663, 666, 667, 670, 672, 676, 669, 674, 675, 665, 664, 679, 680, 666, 676, 670, 671, 681, 673, 675, 669, 678, 673, 672, 682, 674, 680, 677, 677, 678, 685, 684, 676, 679, 687, 675, 677, 683, 679, 684, 686, 688, 0, 681, 681, 690, 685, 682, 678, 691, 683, 682, 688, 686, 677, 677, 687, 685, 684, 690, 692, 687, 689, 693, 683, 696, 694, 686, 688, 691, 689, 697, 690, 695, 696, 0, 691, 703, 698, 700, 702, 699, 692, 693, 701, 0, 704, 692, 694, 689, 693, 697, 696, 694, 699, 695, 698, 700, 697, 701, 695, 703, 702, 705, 703, 698, 700, 702, 699, 704, 706, 701, 707, 704, 708, 709, 705, 710, 712, 0, 0, 709, 717, 711, 707, 713, 716, 708, 706, 718, 705, 711, 719, 714, 716, 723, 718, 706, 721, 707, 721, 708, 709, 724, 710, 712, 720, 713, 722, 711, 711, 714, 713, 716, 717, 719, 718, 722, 711, 719, 714, 720, 724, 725, 727, 721, 727, 723, 726, 728, 724, 734, 731, 720, 737, 722, 728, 726, 742, 0, 0, 734, 738, 725, 731, 740, 750, 0, 0, 742, 725, 727, 737, 741, 0, 726, 728, 729, 734, 731, 729, 737, 743, 738, 729, 742, 740, 729, 748, 738, 744, 741, 740, 745, 729, 729, 746, 729, 750, 747, 741, 748, 729, 749, 729, 743, 752, 729, 747, 743, 749, 729, 746, 755, 729, 748, 744, 744, 754, 745, 745, 729, 729, 746, 729, 758, 747, 754, 752, 753, 749, 751, 751, 752, 751, 753, 755, 751, 756, 757, 755, 756, 751, 759, 761, 754, 761, 758, 751, 751, 762, 759, 758, 764, 0, 757, 753, 751, 751, 751, 760, 751, 757, 763, 751, 756, 757, 765, 763, 751, 759, 761, 760, 764, 762, 751, 751, 762, 766, 767, 764, 768, 757, 0, 0, 770, 772, 760, 769, 771, 766, 777, 773, 765, 765, 763, 775, 776, 777, 774, 0, 767, 787, 779, 775, 766, 767, 768, 768, 770, 769, 771, 770, 772, 774, 769, 771, 773, 777, 773, 776, 778, 779, 775, 776, 780, 774, 781, 782, 778, 779, 783, 785, 784, 787, 786, 789, 793, 0, 781, 786, 782, 784, 788, 790, 792, 794, 785, 778, 790, 796, 780, 780, 795, 781, 782, 798, 783, 783, 785, 784, 797, 786, 789, 800, 788, 801, 792, 799, 793, 788, 802, 792, 807, 0, 795, 790, 798, 794, 805, 795, 804, 796, 798, 808, 797, 806, 799, 797, 810, 802, 800, 803, 801, 806, 799, 809, 811, 802, 805, 807, 803, 808, 804, 812, 0, 805, 814, 804, 815, 817, 808, 812, 806, 816, 809, 810, 816, 819, 803, 818, 820, 821, 809, 822, 814, 822, 815, 823, 811, 824, 812, 817, 826, 814, 821, 815, 817, 818, 0, 827, 816, 819, 820, 824, 819, 823, 818, 820, 821, 829, 822, 827, 825, 828, 823, 834, 824, 825, 826, 826, 830, 828, 831, 830, 0, 833, 827, 829, 835, 836, 831, 837, 838, 0, 835, 0, 829, 837, 839, 838, 828, 844, 834, 840, 825, 839, 831, 830, 840, 831, 833, 836, 833, 841, 842, 835, 836, 831, 837, 838, 841, 846, 843, 847, 844, 839, 843, 845, 844, 846, 840, 849, 842, 848, 850, 852, 845, 851, 0, 853, 841, 842, 850, 854, 855, 857, 849, 864, 846, 843, 851, 848, 853, 865, 845, 847, 852, 859, 849, 867, 848, 850, 852, 857, 851, 854, 853, 856, 858, 870, 854, 855, 857, 860, 856, 858, 859, 861, 862, 864, 860, 863, 861, 866, 859, 865, 862, 871, 863, 868, 869, 867, 878, 875, 856, 858, 866, 869, 872, 873, 860, 870, 868, 874, 861, 862, 876, 873, 863, 877, 866, 874, 876, 879, 880, 875, 868, 869, 874, 871, 875, 872, 882, 880, 878, 872, 873, 0, 881, 884, 874, 886, 883, 876, 885, 877, 877, 879, 874, 883, 879, 880, 881, 885, 887, 888, 889, 0, 890, 887, 927, 0, 0, 886, 882, 881, 884, 888, 886, 883, 891, 885, 893, 892, 896, 891, 899, 896, 897, 889, 892, 894, 888, 889, 890, 890, 887, 901, 900, 894, 899, 897, 927, 901, 893, 900, 904, 891, 905, 893, 892, 896, 0, 899, 903, 897, 906, 0, 894, 907, 905, 907, 908, 0, 901, 900, 902, 0, 902, 904, 909, 0, 902, 904, 902, 905, 911, 0, 910, 902, 903, 903, 909, 906, 902, 908, 907, 912, 0, 908, 902, 910, 914, 902, 924, 902, 915, 909, 911, 902, 912, 902, 913, 911, 916, 910, 902, 913, 917, 915, 914, 902, 924, 919, 912, 918, 916, 920, 928, 914, 917, 924, 929, 915, 922, 918, 925, 916, 919, 931, 922, 916, 921, 923, 913, 917, 926, 918, 953, 920, 919, 947, 918, 916, 920, 921, 923, 925, 933, 929, 928, 922, 918, 925, 936, 934, 933, 932, 926, 921, 923, 931, 932, 926, 934, 953, 937, 938, 939, 936, 940, 0, 942, 947, 943, 933, 0, 0, 941, 0, 938, 936, 934, 939, 932, 935, 0, 943, 937, 0, 935, 942, 935, 937, 938, 939, 940, 940, 935, 942, 941, 943, 946, 935, 935, 941, 944, 945, 949, 950, 935, 935, 935, 946, 944, 945, 948, 935, 950, 935, 957, 951, 0, 949, 954, 935, 958, 962, 961, 946, 935, 935, 951, 944, 945, 949, 950, 935, 948, 955, 952, 960, 961, 948, 0, 969, 955, 954, 951, 952, 958, 954, 957, 958, 959, 961, 963, 964, 966, 962, 968, 967, 959, 960, 970, 964, 955, 952, 960, 0, 972, 968, 971, 0, 981, 998, 966, 969, 963, 967, 971, 959, 970, 963, 964, 966, 973, 968, 967, 974, 976, 970, 972, 973, 975, 985, 977, 972, 979, 971, 978, 975, 974, 987, 983, 976, 981, 998, 985, 0, 980, 987, 990, 973, 977, 983, 974, 976, 978, 979, 980, 975, 985, 977, 990, 979, 986, 978, 988, 989, 987, 983, 991, 986, 996, 992, 995, 980, 989, 990, 997, 988, 1002, 1007, 0, 1005, 999, 1002, 1012, 0, 1007, 1014, 996, 986, 991, 988, 989, 992, 995, 991, 999, 996, 992, 995, 1001, 1006, 997, 997, 1004, 1005, 1007, 1004, 1005, 999, 1002, 1001, 1008, 1009, 1006, 1010, 1012, 1013, 0, 1014, 1011, 1015, 1009, 1008, 1013, 1017, 1019, 1001, 1006, 1010, 1004, 1004, 1011, 1015, 1004, 1016, 1021, 1020, 1017, 1008, 1009, 0, 1010, 1020, 1013, 1022, 1024, 1011, 1015, 1023, 1019, 1026, 1017, 1019, 1028, 1025, 1031, 1016, 1021, 1029, 1023, 0, 1016, 1021, 1020, 1032, 1026, 1022, 1024, 1030, 1029, 1033, 1022, 1024, 1034, 1028, 1023, 1025, 1026, 1035, 1040, 1028, 1025, 1034, 1036, 1037, 1029, 1038, 1031, 1033, 1030, 1041, 1032, 1039, 1037, 1038, 1030, 1042, 1033, 1043, 1039, 1034, 1047, 1035, 1040, 1041, 1035, 1040, 1044, 1051, 1036, 1036, 1037, 1049, 1038, 1045, 1046, 1050, 1041, 1053, 1039, 1054, 1049, 1052, 1050, 1058, 0, 1056, 0, 1042, 1044, 1043, 1059, 1055, 1047, 1044, 1056, 1045, 1046, 1054, 1049, 1051, 1045, 1046, 1050, 1052, 1053, 1057, 1054, 1058, 1052, 1055, 1058, 1060, 1056, 1057, 1059, 1061, 1062, 1059, 1055, 1063, 1064, 1065, 1066, 1067, 0, 1062, 0, 1060, 1064, 1068, 1069, 1070, 1057, 1072, 1063, 1067, 1071, 1061, 1060, 1070, 1080, 1075, 1061, 1062, 0, 0, 1063, 1064, 1072, 1071, 1067, 1068, 1074, 1065, 1066, 1086, 1068, 1069, 1070, 1075, 1072, 1074, 1076, 1071, 1077, 1079, 1077, 1080, 1075, 1081, 1076, 1083, 1085, 1079, 1084, 1087, 1081, 1086, 1088, 1074, 1090, 1089, 1086, 1091, 1083, 0, 1084, 1085, 1089, 1076, 1096, 1077, 1079, 1087, 1093, 1092, 1081, 1095, 1083, 1085, 1094, 1084, 1087, 1096, 1098, 1088, 1092, 1097, 1089, 1101, 1100, 1099, 1090, 0, 1161, 1091, 1093, 1096, 1100, 1095, 1097, 1093, 1092, 1099, 1095, 1094, 1098, 1094, 1102, 1101, 1105, 1098, 1106, 1103, 1097, 1107, 1101, 1100, 1099, 1108, 1102, 1103, 1109, 1110, 1107, 1106, 1161, 1116, 0, 1113, 1110, 1108, 0, 1114, 1118, 1102, 0, 1105, 0, 1106, 1103, 1115, 1107, 1109, 1111, 1117, 1108, 1118, 0, 1109, 1110, 1119, 1113, 1111, 1116, 1111, 1113, 1123, 1111, 1114, 1114, 1118, 1120, 1115, 1121, 1117, 1111, 0, 1115, 1122, 1120, 1111, 1117, 1121, 0, 1119, 1126, 1125, 1119, 1123, 1111, 1128, 1111, 1131, 1123, 1111, 1124, 1122, 1127, 1120, 1132, 1121, 1125, 1136, 1124, 0, 1122, 1128, 1126, 1129, 1133, 1127, 1134, 1126, 1125, 1137, 1135, 1129, 1128, 1134, 1131, 0, 1132, 1124, 0, 1127, 1136, 1132, 1138, 1139, 1136, 1141, 1133, 1137, 1143, 1142, 1129, 1133, 1135, 1134, 1138, 1139, 1137, 1135, 1140, 1144, 1141, 1142, 1148, 1145, 0, 1149, 1140, 1146, 1143, 1138, 1139, 1145, 1141, 1146, 1144, 1143, 1142, 1149, 1147, 1152, 0, 1150, 0, 1148, 1151, 1140, 1144, 1147, 1150, 1148, 1145, 1151, 1149, 1154, 1146, 1153, 1156, 1152, 1155, 0, 1157, 1154, 1157, 1158, 1156, 1147, 1152, 1153, 1150, 1159, 1164, 1151, 1162, 1155, 1165, 1158, 1159, 1166, 1163, 1168, 1154, 1165, 1153, 1156, 1162, 1155, 1167, 1157, 1166, 1164, 1158, 1163, 1170, 1169, 1168, 1172, 1159, 1164, 1169, 1162, 1170, 1165, 1171, 1175, 1166, 1163, 1168, 1173, 1167, 1172, 1176, 0, 1177, 1167, 1178, 1171, 1181, 1175, 0, 1170, 0, 0, 1172, 1179, 1182, 1169, 1201, 1201, 1176, 1171, 1175, 1180, 1183, 1173, 1173, 1174, 0, 1176, 1184, 1174, 1178, 1178, 1174, 1174, 1177, 1179, 1182, 1174, 1181, 1180, 1179, 1182, 1186, 1174, 1183, 1201, 1188, 1174, 1180, 1183, 1192, 1174, 1174, 1188, 1184, 1184, 1174, 1185, 1190, 1174, 1174, 0, 0, 1185, 1174, 1187, 1189, 1187, 1186, 1186, 1174, 1191, 1192, 1188, 1174, 1189, 1190, 1192, 1191, 1194, 1195, 1196, 1193, 1197, 1185, 1190, 0, 0, 1194, 1187, 1200, 1198, 1187, 1189, 1187, 1193, 0, 0, 1191, 0, 1204, 0, 1206, 1208, 1202, 1197, 1194, 1207, 1208, 1193, 1197, 1206, 1195, 1196, 1198, 1217, 1200, 1200, 1198, 1199, 1202, 1205, 1209, 1204, 1199, 1207, 1199, 1204, 1199, 1206, 1199, 1202, 1211, 1205, 1207, 1208, 1210, 1199, 1213, 1212, 1209, 1210, 1214, 0, 1218, 1216, 1199, 1217, 1205, 1209, 1214, 1199, 1212, 1199, 1211, 1199, 1213, 1199, 1216, 1211, 1215, 1219, 1220, 1210, 1221, 1213, 1212, 1223, 1215, 1214, 1218, 1218, 1216, 1224, 1225, 1220, 1225, 1222, 1227, 1229, 1219, 1226, 1224, 1228, 1230, 1223, 1221, 1215, 1219, 1220, 1222, 1221, 1232, 1233, 1223, 1228, 1235, 1236, 0, 1234, 1224, 1225, 1238, 1226, 1222, 1227, 1229, 1234, 1226, 1230, 1228, 1230, 1239, 1240, 1235, 1233, 1232, 1243, 1237, 1232, 1233, 1241, 1242, 1235, 1236, 1237, 1234, 1241, 1242, 1238, 1244, 1245, 1247, 1248, 1246, 1240, 0, 1244, 1239, 1239, 1240, 1246, 1249, 1250, 1243, 1237, 1254, 1252, 1241, 1242, 1253, 1248, 1250, 1255, 1247, 1245, 1256, 1244, 1245, 1247, 1248, 1246, 1253, 1257, 1258, 1259, 1255, 1249, 1254, 1249, 1250, 1252, 1260, 1254, 1252, 1261, 1262, 1253, 1256, 1263, 1255, 1266, 1257, 1256, 1264, 1268, 1258, 1265, 1263, 1259, 1257, 1258, 1259, 1269, 1260, 1266, 1270, 1271, 1262, 1260, 1274, 1261, 1261, 1262, 1272, 1264, 1263, 1265, 1266, 1275, 1281, 1264, 1273, 1282, 1265, 1285, 1274, 1268, 1270, 1276, 1273, 1278, 1272, 1270, 0, 1269, 1276, 1274, 1279, 1271, 1280, 1272, 1283, 1278, 1280, 1279, 1275, 1286, 0, 1273, 0, 1290, 1281, 1286, 1287, 1282, 1276, 1285, 1278, 1288, 1286, 1287, 1289, 1283, 1290, 1279, 1288, 1280, 1292, 1283, 1291, 1294, 1297, 1294, 1286, 1293, 1295, 1289, 1290, 1291, 1286, 1287, 1293, 1296, 1298, 1295, 1288, 1299, 1298, 1289, 1304, 1302, 1301, 1305, 1292, 1292, 1302, 1291, 1294, 1297, 1301, 0, 1293, 1295, 1303, 1296, 1307, 1314, 1304, 1299, 1296, 1298, 1305, 1303, 1299, 1306, 0, 1304, 1307, 1301, 1305, 1309, 1308, 1302, 1309, 1308, 1310, 0, 1306, 1311, 1316, 1303, 1312, 1307, 1308, 1315, 1317, 1319, 1319, 1314, 0, 1317, 1306, 1309, 1310, 1312, 1316, 1318, 1309, 1308, 1321, 1309, 1308, 1310, 1311, 1318, 1311, 1316, 1315, 1312, 1320, 1322, 1315, 1324, 1319, 1335, 1323, 1325, 1317, 1320, 1324, 1326, 1321, 1328, 1318, 1323, 1329, 1321, 1326, 1331, 0, 1332, 1330, 1322, 1339, 1329, 1328, 1320, 1322, 1325, 1324, 1330, 1333, 1323, 1325, 1336, 1339, 1335, 1326, 1334, 1328, 1333, 1338, 1329, 1332, 1331, 1331, 1334, 1332, 1330, 1336, 1339, 1337, 1340, 1342, 1338, 1341, 1343, 0, 1333, 1337, 1345, 1336, 1344, 1341, 1340, 1334, 1347, 1346, 1338, 1345, 1349, 1352, 1353, 1351, 1348, 1342, 1343, 0, 1337, 1340, 1342, 1360, 1341, 1343, 1344, 1346, 1348, 1345, 1349, 1344, 1355, 1350, 1347, 1347, 1346, 1354, 1361, 1349, 1350, 1351, 1351, 1348, 1356, 1352, 1353, 1357, 1358, 1362, 1354, 1359, 0, 1363, 1358, 1360, 1364, 1366, 1357, 1355, 1350, 1370, 1367, 1369, 1354, 1356, 1374, 0, 1368, 0, 1361, 1356, 1369, 1359, 1357, 1358, 1370, 1373, 1359, 1363, 1363, 1362, 1364, 1364, 1366, 1367, 1368, 1371, 1370, 1367, 1369, 1372, 1374, 1374, 1375, 1368, 1376, 1373, 1377, 1378, 1371, 1375, 1379, 1372, 1373, 1383, 1380, 1391, 1381, 1382, 1379, 1380, 1378, 1381, 1371, 1376, 1382, 1386, 1372, 1384, 1377, 1375, 1385, 1376, 1394, 1377, 1378, 1384, 1387, 1379, 1385, 1383, 1383, 1388, 1390, 1386, 1382, 1392, 1380, 1391, 1381, 1388, 1396, 1390, 1386, 1389, 1384, 1393, 1393, 1385, 1387, 1397, 1389, 1405, 1395, 1387, 1394, 1398, 1399, 1392, 1388, 1390, 1395, 1396, 1392, 1398, 1399, 1400, 1401, 1396, 1404, 1403, 1389, 1402, 1393, 1400, 1401, 1403, 1406, 1405, 1405, 1395, 1404, 1397, 1398, 1399, 1402, 1408, 1407, 1409, 1410, 1413, 0, 1412, 1400, 1401, 1411, 1404, 1403, 1414, 1402, 1417, 1406, 1407, 1415, 1406, 0, 1412, 1415, 1413, 1417, 1418, 1410, 1414, 1408, 1407, 1409, 1410, 1413, 1411, 1412, 1415, 1419, 1411, 1422, 1420, 1414, 1424, 1417, 1415, 1421, 1415, 1420, 1418, 1419, 1415, 1423, 1428, 1418, 1426, 1427, 1421, 1425, 1430, 1433, 1429, 1431, 1434, 1415, 1419, 1430, 1422, 1420, 1426, 1425, 1431, 1436, 1421, 1423, 1424, 1428, 1440, 1427, 1423, 1428, 1436, 1426, 1427, 1429, 1425, 1430, 1432, 1429, 1431, 1434, 1438, 1433, 1439, 1432, 1441, 1444, 1438, 1442, 1436, 0, 1447, 1446, 1440, 1440, 1442, 1448, 1451, 1449, 1452, 0, 1454, 1453, 0, 1432, 1439, 1452, 1448, 1438, 1449, 1439, 1458, 0, 1444, 1460, 1442, 1446, 1441, 1447, 1446, 1453, 1451, 1455, 1448, 1451, 1449, 1452, 1454, 1454, 1453, 1456, 1457, 1459, 1458, 1455, 1461, 1456, 1462, 1458, 1457, 1460, 1460, 1463, 1467, 1465, 1459, 1462, 1466, 1464, 1455, 1464, 1465, 1468, 1461, 1463, 1469, 1467, 1456, 1457, 1459, 1470, 1468, 1461, 1471, 1462, 1472, 0, 1474, 1476, 1463, 1467, 1465, 1470, 1466, 1466, 1464, 1473, 1469, 1477, 1468, 1475, 1478, 1469, 1473, 1476, 1475, 0, 1470, 1472, 1478, 1471, 1479, 1472, 1474, 1474, 1476, 1481, 1483, 1482, 1484, 1487, 1477, 1487, 1473, 1486, 1477, 1483, 1475, 1478, 1482, 1488, 1489, 1484, 1479, 1485, 1485, 1492, 1486, 1479, 0, 0, 1490, 1485, 1481, 1483, 1482, 1484, 1487, 1490, 1493, 1494, 1486, 1491, 1489, 1498, 1496, 1488, 1488, 1489, 1491, 0, 1485, 1485, 1492, 1495, 1497, 1499, 1493, 1490, 1500, 1502, 1495, 1494, 1499, 0, 1503, 1493, 1494, 1505, 1491, 1496, 1504, 1496, 1502, 1507, 1508, 1498, 1497, 1508, 1504, 1509, 1495, 1497, 1499, 1510, 1512, 1511, 1502, 1513, 1505, 1514, 1500, 1503, 1515, 1512, 1505, 1507, 1518, 1504, 1511, 1513, 1507, 1508, 1524, 1518, 1521, 1509, 1509, 1517, 1516, 1510, 1510, 1512, 1511, 1514, 1513, 1520, 1514, 1516, 1515, 1515, 1524, 1519, 1517, 1518, 1519, 1522, 1521, 1528, 1525, 1524, 1526, 1521, 1526, 1529, 1517, 1516, 1519, 1527, 1530, 1534, 1531, 1522, 0, 0, 1541, 1519, 1532, 1520, 1519, 1522, 1525, 1519, 1522, 1533, 1528, 1525, 1535, 1526, 1540, 1542, 1536, 1527, 1531, 1519, 1527, 1529, 1537, 1531, 1522, 1538, 1530, 1534, 1532, 1532, 1536, 1537, 1541, 1538, 1535, 1533, 1533, 1539, 1540, 1535, 1543, 1540, 1544, 1536, 1539, 1547, 1545, 1542, 1546, 1537, 1545, 1549, 1538, 1552, 1548, 1553, 1550, 0, 1551, 0, 1549, 0, 1543, 1550, 1539, 1551, 1552, 1543, 1553, 1557, 1546, 1554, 1547, 1545, 1544, 1546, 1548, 1555, 1549, 1561, 1552, 1548, 1553, 1550, 1554, 1551, 1555, 1556, 1558, 1556, 1562, 1559, 1557, 1563, 1561, 1564, 1557, 1571, 1554, 1559, 0, 1565, 1567, 1568, 1555, 1562, 1561, 1563, 1565, 1567, 1566, 0, 1573, 1558, 1556, 1558, 1568, 1562, 1559, 1569, 1563, 1566, 1575, 1574, 1571, 1569, 1572, 1564, 1565, 1567, 1568, 1576, 1577, 1572, 1573, 1581, 1580, 1566, 1574, 1573, 1582, 1578, 1579, 1576, 1578, 1577, 1569, 1581, 1575, 1575, 1574, 1579, 1583, 1572, 1580, 1583, 1589, 1590, 1576, 1577, 1582, 1584, 1581, 1580, 1591, 1595, 1586, 1582, 1578, 1579, 1583, 1586, 1584, 1588, 1592, 1588, 1593, 0, 1586, 1583, 1589, 1594, 1583, 1589, 1590, 1593, 1597, 1598, 1584, 1592, 1596, 1591, 1595, 1586, 1597, 1601, 1599, 1602, 1586, 1600, 1588, 1592, 1603, 1593, 1596, 1594, 1601, 1600, 1594, 1598, 1603, 1607, 1605, 1597, 1598, 1602, 1604, 1596, 1599, 1604, 1606, 1608, 1601, 1599, 1602, 0, 1600, 1609, 1608, 1603, 1605, 1610, 1611, 1612, 1604, 1613, 0, 1618, 1607, 1605, 1610, 1609, 1617, 1604, 1612, 1611, 1604, 1616, 1608, 1616, 1613, 1617, 1606, 1620, 1609, 1619, 1621, 1624, 1610, 1611, 1612, 1622, 1613, 1618, 1618, 0, 1619, 1623, 1625, 1617, 1623, 1620, 1627, 0, 1616, 1622, 1630, 1625, 1621, 1624, 1620, 1627, 1619, 1621, 1624, 1623, 1626, 1622, 1622, 1630, 1633, 1628, 1626, 1631, 1623, 1625, 1628, 1623, 1634, 1627, 1635, 1632, 1622, 1630, 1636, 1631, 1632, 1637, 1639, 1635, 1638, 1642, 1633, 1626, 1640, 1644, 1643, 1633, 1642, 1645, 1631, 1647, 0, 1628, 0, 1649, 0, 1635, 1632, 1643, 1634, 1636, 1638, 1645, 1659, 1640, 1646, 1638, 1642, 1637, 1639, 1640, 1646, 1643, 1649, 1653, 1645, 1644, 1651, 1652, 1654, 1655, 1649, 1647, 1657, 1659, 1651, 1652, 1658, 1656, 1646, 1659, 1660, 1646, 1653, 1655, 1661, 1657, 1654, 1646, 1662, 1658, 1653, 1656, 1663, 1651, 1652, 1654, 1655, 1665, 1664, 1657, 1659, 1666, 1662, 1658, 1656, 1664, 1665, 1667, 1668, 1666, 1669, 1674, 1660, 1670, 1672, 1662, 1661, 0, 1670, 1663, 1671, 1676, 1668, 1672, 1665, 1664, 1675, 1677, 1666, 1678, 1679, 1671, 1680, 1675, 1667, 1668, 1685, 1689, 1674, 1681, 1670, 1672, 1669, 1681, 1676, 1683, 1684, 1671, 1676, 1677, 1680, 1678, 1679, 1675, 1677, 1687, 1678, 1679, 1684, 1680, 1683, 1686, 1692, 1685, 1689, 1690, 1681, 1688, 1693, 1686, 1687, 1691, 1683, 1684, 1696, 1688, 1695, 1692, 1690, 1697, 0, 1696, 1687, 1693, 1695, 1698, 1700, 1699, 1686, 1692, 1701, 1691, 1690, 1703, 1688, 1693, 1699, 1702, 1691, 0, 1698, 1696, 1707, 1695, 1705, 1706, 1708, 1700, 0, 1712, 1709, 1697, 1698, 1700, 1699, 1710, 1712, 1701, 0, 1711, 1703, 1702, 1713, 1706, 1702, 1709, 1705, 1713, 1716, 1714, 1715, 1705, 1706, 1708, 1707, 1718, 1712, 1709, 1714, 1715, 1710, 1717, 1710, 1711, 1719, 1721, 1711, 1723, 1720, 1713, 1716, 1722, 1727, 1718, 1723, 1716, 1714, 1715, 1724, 1719, 1720, 1725, 1718, 1717, 1722, 1724, 1728, 1721, 1717, 1722, 1726, 1719, 1721, 0, 1723, 1720, 1731, 1738, 1722, 1727, 1724, 1729, 1726, 1725, 1731, 1724, 1732, 1729, 1725, 1733, 1735, 1722, 1724, 1737, 1732, 1734, 1739, 1726, 1728, 1736, 1733, 1736, 1734, 1731, 1738, 1741, 1745, 1740, 1729, 1742, 1747, 1750, 1736, 1732, 1740, 1735, 1733, 1735, 1743, 1737, 1737, 1744, 1734, 1739, 1743, 0, 1736, 1744, 1736, 1746, 1748, 1751, 1741, 1745, 1740, 1742, 1742, 1752, 1754, 1753, 1751, 1753, 1747, 1750, 1755, 1743, 1756, 1758, 1744, 1759, 1757, 1764, 1746, 1756, 1748, 0, 1746, 1748, 1751, 1761, 1763, 1759, 1754, 1762, 1760, 1754, 1753, 0, 1766, 1752, 1760, 1755, 1757, 1756, 1758, 1766, 1759, 1757, 1765, 1765, 1765, 1761, 1763, 1764, 1769, 1765, 1761, 1763, 1767, 1762, 1762, 1760, 1768, 1765, 1770, 1766, 1773, 1767, 1772, 1768, 1775, 1770, 1774, 1772, 1776, 1765, 1765, 1765, 1778, 1773, 1777, 1780, 1765, 0, 1774, 1767, 1769, 1779, 1780, 1768, 1776, 1770, 1777, 1773, 1782, 1775, 1781, 1775, 1784, 1774, 1772, 1776, 1781, 1783, 1783, 1779, 1785, 1777, 1780, 1787, 1778, 1786, 1788, 1785, 1779, 1789, 1786, 1792, 1793, 1794, 1793, 1782, 1789, 1781, 1784, 1784, 1797, 1798, 1799, 1796, 1783, 1801, 1797, 1785, 1800, 1787, 1787, 1794, 1786, 1788, 1800, 1810, 1789, 1801, 1792, 1793, 1794, 1796, 1802, 1803, 1804, 1804, 1805, 1797, 1807, 1799, 1796, 1811, 1801, 1798, 1809, 1800, 1806, 1806, 1811, 1807, 1812, 1803, 1802, 1813, 1814, 1815, 1816, 1810, 0, 1802, 1803, 1804, 1805, 1805, 1819, 1807, 1809, 1818, 1811, 1817, 1812, 1809, 1819, 1806, 1818, 1820, 1821, 1812, 1816, 1822, 1823, 1823, 1815, 1816, 1824, 1813, 1814, 1817, 1822, 1825, 1820, 1819, 1826, 1829, 1818, 1833, 1817, 0, 1827, 1832, 1821, 1828, 1820, 1821, 1832, 1827, 1822, 1823, 1831, 1829, 1824, 1824, 1834, 1828, 1839, 1831, 1829, 1833, 1836, 1835, 1829, 1825, 1833, 1838, 1826, 1827, 1832, 1835, 1828, 1841, 1836, 1838, 1840, 1842, 1843, 1831, 1829, 1839, 1844, 1834, 1845, 1839, 1846, 1844, 1848, 1836, 1835, 1841, 1846, 1847, 1838, 1849, 1848, 1840, 1844, 1852, 1841, 1843, 1854, 1840, 1842, 1843, 1847, 1855, 1859, 1844, 1856, 1845, 1850, 1846, 1844, 1848, 1851, 1849, 1853, 1850, 1847, 1857, 1849, 1851, 1854, 1861, 1859, 1862, 1864, 1854, 1853, 1852, 1861, 1860, 1855, 1859, 1856, 1856, 1860, 1850, 1866, 1865, 1868, 1851, 1857, 1853, 1865, 1872, 1857, 1860, 1869, 1869, 1861, 1870, 1862, 1864, 1871, 1877, 1875, 1877, 1860, 1874, 1878, 1876, 1879, 1860, 1880, 0, 0, 1879, 1881, 1871, 1866, 1865, 1868, 1870, 1874, 1869, 1876, 1872, 1870, 1875, 1886, 1871, 1877, 1875, 1882, 1884, 1874, 1889, 1876, 1879, 1881, 1888, 1878, 1885, 1890, 1881, 1880, 1891, 1892, 1882, 1884, 1885, 1886, 1893, 1895, 1892, 1894, 1886, 0, 1896, 1897, 1882, 1884, 1889, 1889, 1888, 1899, 1901, 1888, 1902, 1885, 1890, 1903, 1907, 1891, 1892, 1895, 1894, 1897, 1908, 1896, 1895, 1905, 1894, 1902, 1893, 1896, 1897, 1899, 1906, 1909, 1901, 1910, 1899, 1901, 1907, 1902, 1905, 1903, 1903, 1907, 1911, 1912, 1913, 1906, 1914, 1908, 1915, 1909, 1905, 1917, 1916, 1914, 1918, 1910, 1920, 1906, 1909, 1917, 1910, 1916, 1919, 1921, 1911, 1922, 1915, 1912, 0, 1911, 1912, 1913, 1921, 1914, 1924, 1915, 1923, 1918, 1917, 1916, 1926, 1918, 1928, 1922, 1919, 1923, 1927, 1924, 1920, 1919, 1921, 1926, 1922, 1930, 1931, 1927, 1932, 1929, 1938, 1933, 1928, 1924, 1935, 1923, 1929, 1933, 1926, 1926, 1934, 1928, 1940, 1932, 1931, 1927, 1946, 1944, 1935, 1941, 1926, 1930, 1930, 1931, 1942, 1932, 1929, 1938, 1933, 1944, 1941, 1935, 1934, 1947, 1945, 1942, 1940, 1934, 1948, 1940, 1950, 1949, 0, 1947, 1944, 1953, 1941, 1945, 1946, 1954, 1951, 1942, 1956, 1957, 1958, 1962, 1956, 1960, 1959, 0, 1947, 1945, 1960, 1961, 1948, 1948, 1949, 1950, 1949, 1951, 1961, 1963, 1953, 1965, 1957, 1954, 1954, 1951, 1959, 1956, 1957, 1962, 1962, 1967, 1960, 1959, 1958, 1964, 1965, 1963, 1961, 1966, 1968, 1964, 1973, 1967, 1969, 1969, 1963, 1970, 1965, 1973, 1975, 1971, 1974, 1976, 1966, 1968, 1974, 1979, 1967, 1970, 1980, 1977, 1964, 1983, 1971, 1975, 1966, 1968, 1978, 1973, 1977, 1969, 1971, 1984, 1970, 1978, 1981, 1975, 1971, 1974, 1976, 1979, 1980, 1981, 1979, 1983, 1986, 1980, 1977, 1987, 1983, 1971, 1985, 1989, 1992, 1978, 1991, 1994, 1984, 1993, 1984, 1985, 1995, 1981, 0, 1991, 1997, 1999, 1986, 1987, 1995, 1989, 1992, 1986, 1993, 1998, 1987, 2000, 2000, 1985, 1989, 1992, 1994, 1991, 1994, 2001, 1993, 2003, 1998, 1995, 2002, 1997, 2005, 1997, 1999, 2007, 2004, 2009, 2006, 2008, 2018, 2005, 1998, 2010, 2000, 2006, 0, 2001, 2012, 2003, 2014, 2009, 2001, 2015, 2003, 2002, 2012, 2002, 2004, 2005, 2013, 2008, 2010, 2004, 2009, 2006, 2008, 2007, 2019, 2016, 2010, 2017, 2018, 2013, 2020, 2012, 2021, 2014, 2017, 2015, 2015, 2016, 2023, 2022, 0, 2021, 2025, 2013, 2026, 2024, 2019, 2022, 0, 2027, 2033, 2019, 2016, 2028, 2017, 2020, 2033, 2020, 2022, 2021, 2024, 2032, 0, 2039, 2029, 2023, 2022, 2027, 2025, 2025, 2026, 2026, 2024, 2029, 2022, 2028, 2027, 2033, 2031, 2034, 2028, 2031, 2035, 2036, 2034, 2039, 2032, 2038, 2032, 2042, 2039, 2029, 2043, 2040, 2044, 2045, 2031, 2046, 2036, 2043, 2035, 2068, 2038, 2042, 2047, 2031, 2046, 2048, 2031, 2035, 2036, 2034, 2044, 2047, 2038, 2040, 2042, 2049, 2048, 2043, 2040, 2044, 2045, 2050, 2046, 2052, 2053, 2055, 2068, 2054, 2049, 2047, 0, 2056, 2048, 2050, 2054, 2062, 2060, 2057, 2052, 2053, 2063, 2066, 2049, 2066, 2063, 2070, 2077, 2055, 2050, 2060, 2052, 2053, 2055, 2056, 2054, 2057, 2062, 2060, 2056, 2064, 2065, 2067, 2062, 2060, 2057, 2069, 2071, 2063, 2066, 2065, 0, 2064, 2070, 2072, 2071, 2073, 2060, 2074, 2077, 2067, 2075, 2078, 2079, 2069, 2076, 2075, 2064, 2065, 2067, 2076, 2084, 2074, 2069, 2071, 2081, 2080, 2072, 2073, 2085, 0, 2072, 2081, 2073, 2087, 2074, 2088, 2079, 2075, 2086, 2079, 2090, 2091, 2085, 2078, 2080, 0, 2076, 2084, 2089, 2090, 2092, 2081, 2080, 2085, 2085, 2085, 2086, 2093, 2094, 2095, 2087, 2088, 2088, 2089, 2096, 2086, 2098, 2090, 2100, 2085, 2104, 2099, 2092, 2091, 2103, 2089, 2103, 2092, 2099, 2109, 2085, 2095, 2107, 2093, 2093, 2094, 2095, 2101, 2106, 2098, 2109, 2100, 2104, 2098, 2101, 2100, 2096, 2104, 2099, 2105, 2106, 2103, 2108, 2105, 2107, 2110, 2109, 2113, 2111, 2107, 2114, 2108, 2110, 2112, 2101, 2106, 2115, 2116, 2112, 2117, 2117, 2119, 2118, 0, 2122, 2121, 2105, 0, 2115, 2108, 2111, 2118, 2110, 2114, 2113, 2111, 2119, 2114, 2122, 2116, 2112, 2124, 2120, 2115, 2116, 2123, 2117, 2121, 2119, 2118, 2120, 2122, 2121, 2127, 2123, 2126, 2128, 2130, 2129, 2131, 2130, 2127, 2129, 2133, 2128, 2132, 2139, 2131, 2124, 2120, 2134, 2132, 2123, 2140, 2126, 2136, 2134, 2138, 2133, 2139, 2127, 2141, 2126, 2128, 2130, 2129, 2131, 2136, 2142, 2143, 2133, 2138, 2132, 2139, 2140, 2144, 2145, 2134, 2148, 2146, 2140, 2149, 2136, 2147, 2138, 0, 2141, 2150, 2141, 2151, 2145, 2143, 2146, 2153, 2156, 2142, 2143, 2147, 2154, 2144, 2157, 2152, 2144, 2145, 2148, 2148, 2146, 2153, 2149, 2158, 2147, 0, 2150, 2152, 2150, 2155, 2151, 2160, 2155, 2161, 2153, 2156, 2162, 2163, 2154, 2154, 2161, 2157, 2152, 2162, 2164, 2158, 2165, 2155, 2167, 2166, 2158, 2169, 2163, 2160, 2170, 2171, 2155, 2166, 2160, 2155, 2161, 2168, 2172, 2162, 2163, 2173, 2170, 2174, 2175, 2179, 2168, 2164, 2176, 2165, 2180, 2167, 2166, 2171, 2169, 2177, 2174, 2170, 2171, 2182, 2183, 2176, 2175, 2177, 2168, 2172, 2181, 2179, 2173, 2183, 2174, 2175, 2179, 2184, 2181, 2176, 2187, 2180, 2185, 0, 2186, 2188, 2177, 2190, 2189, 2191, 2182, 2183, 2194, 2188, 2193, 2190, 2194, 2181, 2184, 2186, 2189, 2193, 2196, 2197, 2184, 2195, 2185, 2187, 0, 2185, 2186, 2186, 2188, 2199, 2190, 2189, 2191, 2195, 2203, 2194, 2198, 2193, 2200, 2205, 2201, 2196, 2186, 2255, 2198, 2196, 2197, 2204, 2195, 2206, 2200, 2199, 2201, 2210, 2204, 2207, 2199, 2209, 2209, 2205, 2208, 2203, 2206, 2198, 2207, 2200, 2205, 2201, 2211, 2208, 2255, 2212, 2216, 2213, 2204, 2219, 2206, 2215, 0, 2210, 2210, 2217, 2207, 2218, 2209, 2218, 2211, 2208, 2213, 2219, 2213, 2221, 2215, 2227, 2216, 2211, 2212, 2213, 2212, 2216, 2213, 2220, 2219, 2217, 2215, 2222, 2222, 2220, 2217, 2224, 2218, 2225, 2226, 2221, 2228, 2213, 2229, 2213, 2221, 2232, 2228, 2232, 2230, 2231, 2226, 2227, 2233, 2234, 2220, 2235, 2239, 2224, 2222, 2225, 2236, 2240, 2224, 2237, 2225, 2226, 2233, 2228, 2238, 2239, 2230, 2231, 2232, 2235, 2229, 2230, 2231, 2234, 2236, 2233, 2234, 2237, 2235, 2239, 2241, 2242, 2238, 2236, 2246, 0, 2237, 2244, 2248, 2240, 2247, 2238, 2249, 0, 2244, 2253, 2251, 0, 2251, 2250, 2249, 0, 2246, 2251, 2242, 0, 2253, 2268, 2242, 2269, 2257, 2246, 2241, 2254, 2244, 2259, 2247, 2247, 2249, 2249, 2248, 2250, 2253, 2251, 2254, 2251, 2250, 2249, 2257, 2256, 2259, 2262, 2260, 2261, 2268, 2269, 2269, 2257, 2264, 2265, 2254, 2256, 2259, 2260, 2266, 2261, 2262, 2271, 2267, 2272, 2273, 2266, 2274, 2275, 2277, 0, 2256, 2284, 2262, 2260, 2261, 2265, 2264, 2267, 2276, 2264, 2265, 2278, 0, 2279, 2281, 2266, 2273, 2272, 2271, 2267, 2272, 2273, 2280, 2282, 2278, 2277, 2276, 2281, 2274, 2275, 2283, 2282, 2285, 2284, 2290, 2276, 2286, 2280, 2278, 2279, 2279, 2281, 2288, 2289, 2291, 2285, 2292, 0, 2294, 2280, 2282, 2295, 2296, 0, 2293, 2294, 2283, 2283, 2286, 2285, 2299, 2290, 2297, 2286, 2292, 2288, 2291, 2289, 2303, 2288, 2289, 2291, 2293, 2292, 2295, 2294, 2297, 2300, 2295, 2296, 2302, 2293, 2299, 2301, 2300, 2304, 2305, 2299, 2306, 2297, 2301, 2303, 2304, 2302, 2307, 2303, 2308, 2311, 2309, 2314, 2317, 2310, 2331, 2318, 2300, 2308, 2309, 2302, 2305, 2310, 2301, 2312, 2304, 2305, 2314, 2307, 2315, 2312, 2316, 2311, 2306, 2307, 2318, 2308, 2311, 2309, 2314, 2315, 2310, 2319, 2318, 2321, 2317, 2323, 2331, 2324, 0, 2332, 2312, 2325, 2316, 2326, 2326, 2315, 2327, 2316, 2323, 2333, 2337, 2321, 2330, 2334, 2332, 0, 2319, 0, 2319, 2349, 2321, 2341, 2323, 2324, 2324, 2325, 2332, 2345, 2325, 2339, 2326, 2334, 2327, 2327, 2341, 2330, 2333, 2337, 2339, 2330, 2334, 2342, 2346, 2346, 2347, 2348, 2349, 2351, 2341, 2345, 2353, 2354, 2342, 2355, 2345, 0, 2339, 2356, 2361, 2357, 2360, 2363, 2356, 2364, 2355, 2359, 2347, 2348, 2342, 2346, 2368, 2347, 2348, 2359, 2351, 2360, 2369, 2354, 2354, 2363, 2355, 2357, 2353, 2370, 2356, 2361, 2357, 2360, 2363, 2365, 2366, 2370, 2359, 2373, 2374, 2364, 2371, 2368, 2365, 0, 2369, 2380, 2366, 2369, 2375, 2371, 2376, 2377, 2378, 0, 2370, 2379, 2382, 0, 2380, 2376, 2365, 2366, 2383, 2373, 2373, 2374, 2384, 2371, 2381, 2377, 2375, 2382, 2380, 2384, 2378, 2375, 2385, 2376, 2377, 2378, 2379, 2381, 2379, 2382, 2383, 2386, 2387, 2388, 2389, 2383, 2390, 2391, 2395, 2384, 2392, 2381, 2393, 0, 2385, 2394, 2391, 2397, 2399, 2385, 0, 2390, 2401, 2395, 2397, 2396, 2402, 0, 2386, 2387, 2388, 2389, 2392, 2390, 2391, 2395, 2398, 2392, 2393, 2393, 2396, 2394, 2394, 2400, 2397, 2399, 2403, 2398, 2405, 2401, 2404, 2400, 2396, 2402, 2406, 2411, 2408, 2407, 2412, 2409, 2410, 0, 2403, 2398, 2407, 2404, 2409, 2410, 2405, 2406, 2400, 2413, 2413, 2403, 2419, 2405, 2412, 2404, 2408, 2415, 0, 2406, 2411, 2408, 2407, 2412, 2409, 2410, 2414, 2416, 2417, 0, 2416, 2415, 2418, 2414, 2420, 2425, 2413, 2421, 2419, 2419, 2425, 2417, 2424, 2427, 2415, 2422, 2426, 2418, 2431, 2421, 2426, 2424, 2420, 2414, 2416, 2417, 2429, 2422, 2428, 2418, 2430, 2420, 2425, 2432, 2421, 2433, 0, 2427, 2435, 2424, 2427, 2428, 2422, 2426, 2437, 2431, 2440, 2438, 2429, 2444, 2439, 2441, 2430, 2429, 2440, 2428, 2438, 2430, 2444, 0, 2432, 2433, 2433, 2441, 2435, 2435, 2439, 2445, 2443, 2447, 2437, 2437, 2445, 2440, 2438, 2443, 2444, 2439, 2441, 2446, 2449, 2448, 2450, 2451, 2452, 2455, 2446, 2447, 2448, 2450, 2453, 2456, 2451, 2452, 2445, 2443, 2447, 2457, 2459, 2462, 2465, 2458, 2457, 2461, 2456, 2449, 2446, 2449, 2448, 2450, 2451, 2452, 2455, 2463, 2464, 0, 2453, 2453, 2456, 2458, 2465, 2461, 2463, 2464, 2457, 2459, 2462, 2465, 2458, 2467, 2461, 2466, 2471, 2468, 2469, 2472, 2470, 2476, 2467, 2473, 2463, 2464, 2468, 2466, 2470, 2469, 2473, 2475, 2474, 2477, 2478, 0, 0, 2480, 2482, 0, 2467, 2474, 2466, 2471, 2468, 2469, 2472, 2470, 2476, 2480, 2473, 2482, 2475, 2479, 2483, 2481, 2486, 2488, 2475, 2474, 2477, 2484, 2479, 2481, 2480, 2482, 2478, 2485, 2484, 0, 2487, 2489, 2490, 2494, 2485, 2496, 2483, 2492, 2486, 2495, 2479, 2483, 2481, 2486, 2488, 2492, 2497, 2495, 2484, 2498, 2496, 2494, 2505, 2497, 2485, 2487, 2489, 2487, 2489, 2490, 2494, 2499, 2496, 2503, 2492, 2504, 2495, 2500, 2499, 2506, 2503, 2498, 2508, 2497, 2507, 2500, 2498, 2509, 2513, 2505, 2512, 2506, 2519, 2507, 2514, 2511, 2517, 0, 2499, 2504, 2503, 2521, 2504, 2517, 2500, 2524, 2506, 2511, 2514, 2508, 2509, 2507, 2516, 2512, 2509, 2513, 2521, 2512, 2518, 2519, 2522, 2514, 2511, 2517, 2516, 2518, 2523, 2525, 2521, 2526, 2527, 2529, 2524, 2528, 2531, 2525, 2536, 2538, 2522, 2516, 2530, 2537, 2529, 2543, 0, 2518, 2537, 2522, 2541, 2523, 2546, 2528, 2527, 2523, 2525, 2530, 2526, 2527, 2529, 2539, 2528, 2531, 2536, 2536, 2538, 2540, 2541, 2530, 2537, 2542, 2543, 2544, 2549, 2539, 2553, 2541, 2551, 2546, 2550, 2540, 2552, 0, 2554, 2544, 0, 2556, 2539, 2542, 2555, 2551, 2554, 2559, 2540, 2553, 2549, 2560, 2542, 2562, 2544, 2549, 2550, 2553, 2552, 2551, 2556, 2550, 2555, 2552, 2558, 2554, 2563, 2561, 2556, 2559, 2564, 2555, 2565, 2560, 2559, 2567, 2558, 2568, 2560, 2561, 2562, 2566, 2569, 2570, 2567, 2571, 2568, 0, 2572, 2574, 0, 2558, 2565, 2563, 2561, 2573, 2575, 2564, 2579, 2565, 2572, 0, 2567, 2566, 2568, 2570, 2578, 2580, 2566, 2586, 2570, 2571, 2571, 2581, 2569, 2572, 2574, 2573, 2581, 2582, 2578, 2583, 2573, 2575, 2584, 2579, 2585, 2587, 2589, 2588, 2592, 2580, 2586, 2578, 2580, 2593, 2586, 2584, 2590, 2594, 2589, 2582, 2598, 2583, 2591, 2581, 2582, 2588, 2583, 2587, 2591, 2584, 2597, 2595, 2587, 2589, 2588, 2590, 2585, 2599, 2601, 2594, 2592, 2603, 2598, 2590, 2594, 2593, 2595, 2598, 2604, 2591, 2597, 2605, 2606, 2601, 2607, 2608, 2610, 2597, 2595, 2609, 2605, 2599, 2613, 2603, 2599, 2601, 2606, 2614, 2603, 2615, 2604, 2613, 2607, 2608, 2610, 2604, 2618, 2621, 2605, 2606, 2619, 2607, 2608, 2610, 2618, 2609, 2609, 2619, 2622, 2613, 2615, 2624, 2620, 2623, 2625, 2626, 2615, 2627, 2629, 2614, 2620, 2623, 2633, 2618, 2621, 2627, 2625, 2619, 2622, 2624, 2629, 2632, 2634, 2635, 2634, 2622, 2631, 2636, 2624, 2620, 2623, 2625, 2626, 2631, 2627, 2629, 2637, 2638, 2639, 2633, 2640, 0, 2642, 2645, 2632, 2646, 2651, 2643, 2632, 2634, 2649, 2647, 2652, 2631, 2654, 2635, 2658, 2639, 2646, 2636, 2642, 2643, 2640, 2647, 2638, 2639, 2645, 2640, 2637, 2642, 2645, 2650, 2646, 2651, 2643, 2656, 2649, 2649, 2647, 2652, 2650, 2654, 2655, 2658, 2660, 2661, 2662, 2663, 2665, 0, 2666, 2660, 2663, 2668, 2669, 2665, 0, 2656, 2650, 2670, 2671, 2662, 2656, 2675, 0, 2655, 2676, 2661, 2677, 2655, 2675, 2660, 2661, 2662, 2671, 2665, 2666, 2666, 2678, 2663, 2668, 2669, 2673, 2670, 2679, 2680, 2670, 2671, 2681, 2682, 2675, 2673, 2685, 2676, 2677, 2677, 2679, 2683, 2682, 2684, 2686, 2690, 2681, 2691, 2695, 2678, 2690, 2691, 2694, 2673, 2683, 2679, 2680, 2692, 2693, 2681, 2682, 2698, 0, 2685, 2692, 2693, 2697, 2686, 2683, 2701, 2696, 2686, 2696, 2694, 2691, 2684, 2703, 2690, 2704, 2694, 2695, 2706, 2707, 2706, 2692, 2693, 2708, 0, 2698, 2697, 2711, 2701, 2710, 2697, 2713, 2703, 2701, 2696, 2714, 2711, 2709, 2709, 2704, 2703, 2712, 2704, 2707, 2713, 2706, 2707, 2709, 2712, 2708, 2708, 2710, 2716, 2715, 2711, 2718, 2710, 2717, 2713, 2719, 2716, 2723, 2714, 2718, 2709, 2709, 2715, 2720, 2712, 2721, 2717, 2724, 2720, 2722, 2721, 0, 2716, 2725, 2719, 2716, 2715, 2722, 2718, 2726, 2717, 2727, 2719, 2716, 2723, 2730, 0, 2728, 2729, 2731, 2731, 2732, 2730, 2724, 2724, 2720, 2722, 2721, 2728, 2725, 2725, 2733, 2734, 2735, 2736, 2726, 2726, 2727, 2727, 2733, 2729, 2736, 2730, 2732, 2728, 2729, 2731, 2739, 2732, 2737, 2740, 2735, 0, 2742, 2734, 2741, 2737, 2744, 2733, 2734, 2735, 2736, 2742, 2745, 2746, 2747, 2749, 2750, 2751, 2754, 2752, 2755, 0, 0, 2739, 0, 2737, 2740, 2754, 2741, 2742, 2756, 2741, 2745, 2744, 2750, 2751, 2747, 2752, 2757, 2745, 2746, 2747, 2749, 2750, 2751, 2754, 2752, 2755, 2758, 2759, 2760, 2761, 2766, 2756, 2759, 0, 2757, 2756, 2767, 2762, 2758, 2769, 2772, 2770, 2760, 2757, 2771, 0, 2771, 2761, 0, 2772, 2775, 2774, 2766, 2758, 2770, 2760, 2761, 2766, 2779, 2759, 2762, 2781, 0, 2767, 2762, 2775, 2769, 2772, 2770, 2774, 2778, 2771, 2778, 2780, 2783, 2785, 2779, 2775, 2774, 0, 2780, 2785, 2787, 2788, 2795, 2779, 2789, 0, 2790, 2783, 0, 2793, 2792, 2781, 2793, 2796, 2797, 2778, 2798, 2800, 2780, 2783, 2785, 0, 2787, 2788, 2790, 2800, 2801, 2787, 2788, 2795, 2789, 2789, 2792, 2790, 2798, 2793, 2793, 2792, 2799, 2793, 2796, 2797, 2803, 2798, 2800, 2799, 2804, 0, 2801, 2805, 2806, 2807, 2808, 2801, 2811, 2809, 2812, 2813, 2810, 2813, 2807, 2809, 2814, 2811, 2816, 2799, 0, 2808, 2804, 2819, 2817, 2805, 2818, 2804, 2803, 2820, 2805, 2806, 2807, 2808, 2810, 2811, 2809, 2820, 2813, 2810, 2821, 2816, 2812, 2814, 2826, 2816, 2817, 2822, 2818, 2819, 2819, 2817, 2821, 2818, 2824, 2828, 2820, 2830, 2829, 2822, 2831, 2824, 2832, 0, 2834, 2840, 2835, 2821, 2833, 2828, 2836, 2826, 2829, 2832, 2822, 0, 2833, 0, 2831, 2844, 2830, 2824, 2828, 2834, 2830, 2829, 2837, 2831, 2835, 2832, 2838, 2834, 2840, 2835, 2841, 2833, 2836, 2836, 2845, 2838, 2839, 2839, 2841, 2847, 2837, 2849, 2844, 2851, 2852, 2847, 2856, 2853, 0, 2837, 2854, 2862, 2857, 2838, 2851, 2852, 2858, 2841, 2853, 2857, 2858, 2845, 2861, 2839, 2862, 2864, 2847, 2859, 2849, 2868, 2851, 2852, 2854, 2856, 2853, 2859, 2863, 2854, 2862, 2857, 2867, 2870, 2869, 2858, 2863, 2871, 2870, 2867, 2861, 2861, 2872, 2873, 2864, 2876, 2859, 2874, 2878, 2875, 2873, 2877, 2880, 2868, 2879, 2863, 2869, 2882, 2877, 2867, 2870, 2869, 2879, 2876, 2871, 2875, 2874, 2880, 2881, 2872, 2873, 2888, 2876, 2883, 2874, 2881, 2875, 2884, 2877, 2880, 2878, 2879, 2889, 2890, 2882, 2891, 2888, 2892, 2893, 2889, 2894, 2896, 2897, 2874, 2898, 2881, 2900, 2883, 2888, 2894, 2883, 0, 2899, 2884, 2884, 0, 2902, 0, 0, 2889, 2899, 2892, 2891, 2896, 2892, 2890, 2898, 2894, 2896, 2897, 2893, 2898, 2901, 2901, 2904, 2905, 2907, 2908, 2900, 2899, 2909, 2910, 2901, 2902, 2905, 2906, 2913, 2906, 2909, 2904, 2907, 2911, 2910, 2914, 2915, 2917, 2918, 2916, 2919, 2901, 2901, 2904, 2905, 2907, 2908, 2920, 2923, 2909, 2910, 2911, 2916, 0, 2906, 2913, 2921, 2924, 2915, 2917, 2911, 2926, 2914, 2915, 2917, 2918, 2916, 2919, 2922, 2922, 2921, 2931, 2932, 2929, 2920, 2934, 2931, 2932, 2936, 2924, 2923, 2929, 2933, 2921, 2924, 2938, 2939, 2933, 2926, 2940, 2937, 2941, 2938, 2943, 2949, 2922, 2951, 2953, 2931, 2932, 2929, 2934, 2934, 2937, 2939, 2936, 2946, 2944, 2952, 2933, 2953, 2945, 2938, 2939, 2944, 2954, 2940, 2937, 2941, 2945, 0, 2949, 2955, 2951, 2953, 2943, 2956, 2957, 2946, 2958, 2952, 2963, 2960, 2946, 2944, 2952, 2961, 2955, 2945, 2960, 2962, 2966, 2967, 2961, 2964, 2956, 2963, 2954, 2968, 2955, 2967, 2958, 2971, 2956, 2957, 2968, 2958, 2969, 2963, 2960, 2966, 2971, 2962, 2961, 2969, 2964, 2972, 2962, 2966, 2967, 2974, 2964, 2973, 2973, 2975, 2968, 2974, 2972, 2978, 2971, 2977, 2979, 2973, 2982, 2969, 2978, 0, 2980, 2983, 2984, 2982, 2987, 2988, 2972, 2989, 2993, 2975, 2974, 2994, 2973, 2973, 2975, 2977, 2984, 0, 2978, 2996, 2977, 2998, 2980, 2982, 3002, 2983, 2979, 2980, 2983, 2984, 2989, 2987, 2988, 2994, 2989, 2993, 2995, 3004, 2994, 2999, 2999, 3000, 3000, 0, 2995, 3005, 2996, 3002, 2998, 3001, 3001, 3002, 3006, 3009, 3005, 3010, 3012, 3016, 3018, 3011, 3009, 3019, 3010, 2995, 3004, 3006, 3017, 3015, 2999, 3015, 3000, 3023, 3005, 3019, 3022, 3024, 3018, 3016, 3001, 3006, 3009, 3011, 3010, 3012, 3016, 3018, 3011, 3021, 3019, 3017, 3025, 3026, 3022, 3017, 3015, 3029, 3021, 3023, 3023, 3027, 3029, 3022, 3024, 3026, 3028, 3030, 3031, 3028, 3031, 3033, 3038, 3032, 3036, 3034, 3021, 3033, 3037, 3025, 3026, 3035, 3036, 3027, 3028, 3032, 3039, 3040, 3027, 3029, 3041, 3046, 3048, 3028, 3042, 3031, 3028, 3034, 3033, 3030, 3032, 3036, 3034, 3035, 3038, 3037, 3042, 3039, 3035, 3043, 3049, 3052, 3053, 3039, 3040, 3054, 3055, 3041, 3046, 3048, 3056, 3042, 3057, 3058, 3061, 3063, 3060, 3062, 3049, 0, 3067, 3043, 0, 0, 3064, 0, 3043, 3049, 3052, 3053, 3063, 3064, 3054, 3055, 3060, 3062, 3068, 3056, 3066, 3057, 3058, 3061, 3063, 3060, 3062, 3069, 3066, 3067, 3068, 3070, 3072, 3064, 3071, 3073, 3078, 3078, 3084, 3076, 3077, 3069, 3079, 3080, 3072, 3068, 3070, 3066, 3076, 3082, 3083, 3084, 3080, 3085, 3069, 0, 3090, 0, 3070, 3072, 3071, 3071, 3073, 3078, 3077, 3084, 3076, 3077, 3079, 3079, 3080, 3086, 3087, 3082, 3088, 3085, 3082, 3090, 3091, 3086, 3085, 3087, 3083, 3090, 3094, 3088, 3098, 3098, 3095, 3108, 3106, 3109, 3110, 3111, 3114, 3117, 3091, 0, 3086, 3087, 3095, 3088, 3113, 3108, 3115, 3091, 3113, 3094, 3117, 3120, 3121, 3094, 3114, 3098, 3106, 3095, 3108, 3106, 3109, 3110, 3111, 3114, 3117, 3116, 3119, 3120, 3123, 3115, 3119, 3113, 3116, 3115, 3121, 3122, 0, 3124, 3120, 3121, 3123, 3126, 3125, 3131, 0, 3127, 3128, 3130, 3129, 3126, 3129, 3132, 3116, 3119, 3127, 3123, 3125, 3128, 3133, 3130, 3122, 3131, 3122, 3124, 3124, 3134, 3132, 3135, 3126, 3125, 3131, 3134, 3127, 3128, 3130, 3129, 3136, 3137, 3132, 3142, 3133, 3143, 3141, 3136, 3144, 3133, 3142, 3145, 3147, 3135, 3146, 3148, 3134, 3149, 3135, 3141, 3156, 3151, 3150, 3137, 3152, 3149, 3144, 3136, 3137, 3150, 3142, 3153, 3143, 3141, 3154, 3144, 3154, 3157, 3145, 3147, 3146, 3146, 3148, 3155, 3149, 3151, 3152, 3158, 3151, 3150, 3157, 3152, 3156, 3153, 3159, 3155, 3160, 3162, 3153, 3161, 3163, 3154, 3158, 3164, 3157, 3165, 3161, 3166, 3168, 3170, 3155, 3173, 3175, 3165, 3158, 3164, 3159, 3174, 3170, 3177, 3168, 3159, 3178, 3160, 3162, 3176, 3161, 3163, 3179, 0, 3164, 3175, 3165, 3176, 3166, 3168, 3170, 3181, 3173, 3175, 3182, 3179, 3180, 3174, 3174, 3181, 3183, 3185, 3191, 3192, 3189, 3177, 3176, 3188, 3178, 3179, 3180, 3189, 3194, 3188, 3195, 3191, 3182, 3196, 3181, 3194, 3200, 3182, 3202, 3180, 3197, 3196, 3192, 3183, 3185, 3191, 3192, 3189, 3198, 3201, 3188, 3199, 3195, 3208, 3197, 3194, 3211, 3195, 3200, 3199, 3196, 3205, 3198, 3200, 3206, 3202, 3207, 3197, 3205, 3210, 3209, 3201, 3212, 3206, 3207, 3198, 3201, 3215, 3199, 0, 3208, 3213, 3211, 3211, 3214, 3215, 3216, 3218, 3205, 3220, 3219, 3206, 3209, 3207, 3212, 3224, 3222, 3209, 3227, 3212, 3231, 3210, 3223, 3213, 3215, 3225, 3214, 3229, 3213, 3233, 3223, 3214, 3219, 3225, 3218, 3224, 3220, 3219, 3216, 3222, 3226, 3229, 3224, 3222, 3235, 3228, 3231, 3231, 3226, 3223, 3227, 3236, 3225, 3228, 3229, 3234, 3233, 3237, 3234, 3236, 3238, 0, 3239, 3241, 3240, 3237, 3235, 3226, 3243, 3243, 3244, 3235, 3228, 3234, 3238, 3245, 3248, 3241, 3236, 3246, 0, 3247, 3234, 3245, 3237, 3234, 3240, 3238, 3239, 3239, 3241, 3240, 3249, 3250, 3251, 3243, 3244, 3244, 3248, 3253, 3252, 3250, 3245, 3248, 3254, 3246, 3246, 3247, 3247, 3255, 3256, 3258, 3249, 3261, 0, 3257, 0, 3259, 3270, 3249, 3250, 3251, 3252, 3257, 3253, 3259, 3253, 3252, 3264, 3255, 3256, 3254, 3265, 3258, 3268, 3262, 3255, 3256, 3258, 3266, 3261, 3267, 3257, 3262, 3259, 3270, 3273, 3266, 3271, 3267, 3264, 3274, 3277, 3278, 3265, 3264, 3271, 3272, 3287, 3265, 3268, 3268, 3262, 3275, 3281, 3272, 3266, 3279, 3267, 3285, 3284, 3288, 3273, 3273, 3286, 3271, 0, 3285, 3274, 3277, 3278, 0, 3286, 3275, 3272, 3287, 3281, 3279, 0, 0, 3275, 3281, 3284, 0, 3279, 0, 3285, 3284, 3288, 0, 0, 3286, 3292, 3292, 3292, 3292, 3292, 3292, 3292, 3293, 3293, 3293, 3293, 3293, 3293, 3293, 3294, 3294, 3294, 3294, 3294, 3294, 3294, 3295, 3295, 3295, 3295, 3295, 3295, 3295, 3296, 3296, 3296, 3296, 3296, 3296, 3296, 3297, 3297, 3297, 3297, 3297, 3297, 3297, 3298, 3298, 3298, 3298, 3298, 3298, 3298, 3300, 3300, 0, 3300, 3300, 3300, 3300, 3301, 3301, 0, 0, 0, 3301, 3301, 3302, 3302, 0, 0, 3302, 0, 3302, 3303, 0, 0, 0, 0, 0, 3303, 3304, 3304, 0, 0, 0, 3304, 3304, 3305, 0, 0, 0, 0, 0, 3305, 3306, 3306, 0, 3306, 3306, 3306, 3306, 3307, 0, 0, 0, 0, 0, 3307, 3308, 3308, 0, 0, 0, 3308, 3308, 3309, 3309, 0, 3309, 3309, 3309, 3309, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291, 3291 } ; 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; int inc_toplevel; }; static struct inc_state* config_include_stack = NULL; static int inc_depth = 0; static int inc_prev = 0; static int num_args = 0; static int inc_toplevel = 0; void init_cfg_parse(void) { config_include_stack = NULL; inc_depth = 0; inc_prev = 0; num_args = 0; inc_toplevel = 0; } static void config_start_include(const char* filename, int toplevel) { FILE *input; struct inc_state* s; char* nm; if(inc_depth+1 > 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)); inc_depth++; s->filename = cfg_parser->filename; s->line = cfg_parser->line; s->buffer = YY_CURRENT_BUFFER; s->inc_toplevel = inc_toplevel; s->next = config_include_stack; config_include_stack = s; cfg_parser->filename = nm; cfg_parser->line = 1; inc_toplevel = toplevel; yy_switch_to_buffer(yy_create_buffer(input, YY_BUF_SIZE)); } static void config_start_include_glob(const char* filename, int toplevel) { /* 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, toplevel); /* 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], toplevel); } globfree(&g); return; } #endif /* HAVE_GLOB */ config_start_include(filename, toplevel); } 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; inc_toplevel = s->inc_toplevel; 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 3801 "" #define YY_NO_INPUT 1 #line 191 "util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 3810 "" #line 3812 "" #define INITIAL 0 #define quotedstring 1 #define singlequotedstr 2 #define include 3 #define include_quoted 4 #define val 5 #define include_toplevel 6 #define include_toplevel_quoted 7 #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 211 "util/configlexer.lex" #line 4036 "" 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 >= 3292 ) 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] != 9388 ); 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 212 "util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 214 "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 217 "util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 218 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION) } YY_BREAK case 5: YY_RULE_SETUP #line 219 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) } YY_BREAK case 6: YY_RULE_SETUP #line 220 "util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 7: YY_RULE_SETUP #line 221 "util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 8: YY_RULE_SETUP #line 222 "util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 9: YY_RULE_SETUP #line 223 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 10: YY_RULE_SETUP #line 224 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 11: YY_RULE_SETUP #line 225 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 12: YY_RULE_SETUP #line 226 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 13: YY_RULE_SETUP #line 227 "util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 14: YY_RULE_SETUP #line 228 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 15: YY_RULE_SETUP #line 229 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 16: YY_RULE_SETUP #line 230 "util/configlexer.lex" { YDVAR(1, VAR_PREFER_IP4) } YY_BREAK case 17: YY_RULE_SETUP #line 231 "util/configlexer.lex" { YDVAR(1, VAR_PREFER_IP6) } YY_BREAK case 18: YY_RULE_SETUP #line 232 "util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 19: YY_RULE_SETUP #line 233 "util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 20: YY_RULE_SETUP #line 234 "util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 21: YY_RULE_SETUP #line 235 "util/configlexer.lex" { YDVAR(1, VAR_TCP_MSS) } YY_BREAK case 22: YY_RULE_SETUP #line 236 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_TCP_MSS) } YY_BREAK case 23: YY_RULE_SETUP #line 237 "util/configlexer.lex" { YDVAR(1, VAR_TCP_IDLE_TIMEOUT) } YY_BREAK case 24: YY_RULE_SETUP #line 238 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) } YY_BREAK case 25: YY_RULE_SETUP #line 239 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) } YY_BREAK case 26: YY_RULE_SETUP #line 240 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 27: YY_RULE_SETUP #line 241 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 28: YY_RULE_SETUP #line 242 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 29: YY_RULE_SETUP #line 243 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 30: YY_RULE_SETUP #line 244 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 31: YY_RULE_SETUP #line 245 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 32: YY_RULE_SETUP #line 246 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 33: YY_RULE_SETUP #line 247 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 34: YY_RULE_SETUP #line 248 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 35: YY_RULE_SETUP #line 249 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 36: YY_RULE_SETUP #line 250 "util/configlexer.lex" { YDVAR(1, VAR_TLS_WIN_CERT) } YY_BREAK case 37: YY_RULE_SETUP #line 251 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 38: YY_RULE_SETUP #line 252 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 39: YY_RULE_SETUP #line 253 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 40: YY_RULE_SETUP #line 254 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 41: YY_RULE_SETUP #line 255 "util/configlexer.lex" { YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) } YY_BREAK case 42: YY_RULE_SETUP #line 256 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CIPHERS) } YY_BREAK case 43: YY_RULE_SETUP #line 257 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CIPHERSUITES) } YY_BREAK case 44: YY_RULE_SETUP #line 258 "util/configlexer.lex" { YDVAR(1, VAR_TLS_USE_SNI) } YY_BREAK case 45: YY_RULE_SETUP #line 259 "util/configlexer.lex" { YDVAR(1, VAR_HTTPS_PORT) } YY_BREAK case 46: YY_RULE_SETUP #line 260 "util/configlexer.lex" { YDVAR(1, VAR_HTTP_ENDPOINT) } YY_BREAK case 47: YY_RULE_SETUP #line 261 "util/configlexer.lex" { YDVAR(1, VAR_HTTP_MAX_STREAMS) } YY_BREAK case 48: YY_RULE_SETUP #line 262 "util/configlexer.lex" { YDVAR(1, VAR_HTTP_QUERY_BUFFER_SIZE) } YY_BREAK case 49: YY_RULE_SETUP #line 263 "util/configlexer.lex" { YDVAR(1, VAR_HTTP_RESPONSE_BUFFER_SIZE) } YY_BREAK case 50: YY_RULE_SETUP #line 264 "util/configlexer.lex" { YDVAR(1, VAR_HTTP_NODELAY) } YY_BREAK case 51: YY_RULE_SETUP #line 265 "util/configlexer.lex" { YDVAR(1, VAR_HTTP_NOTLS_DOWNSTREAM) } YY_BREAK case 52: YY_RULE_SETUP #line 266 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSTEMD) } YY_BREAK case 53: YY_RULE_SETUP #line 267 "util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 54: YY_RULE_SETUP #line 268 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 55: YY_RULE_SETUP #line 269 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 56: YY_RULE_SETUP #line 270 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 57: YY_RULE_SETUP #line 271 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 58: YY_RULE_SETUP #line 272 "util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 59: YY_RULE_SETUP #line 273 "util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 60: YY_RULE_SETUP #line 274 "util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 61: YY_RULE_SETUP #line 275 "util/configlexer.lex" { YDVAR(1, VAR_IP_TRANSPARENT) } YY_BREAK case 62: YY_RULE_SETUP #line 276 "util/configlexer.lex" { YDVAR(1, VAR_IP_FREEBIND) } YY_BREAK case 63: YY_RULE_SETUP #line 277 "util/configlexer.lex" { YDVAR(1, VAR_IP_DSCP) } YY_BREAK case 64: YY_RULE_SETUP #line 278 "util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 65: YY_RULE_SETUP #line 279 "util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 66: YY_RULE_SETUP #line 280 "util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 67: YY_RULE_SETUP #line 281 "util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 68: YY_RULE_SETUP #line 282 "util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 69: YY_RULE_SETUP #line 283 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 70: YY_RULE_SETUP #line 284 "util/configlexer.lex" { YDVAR(1, VAR_STREAM_WAIT_SIZE) } YY_BREAK case 71: YY_RULE_SETUP #line 285 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 72: YY_RULE_SETUP #line 286 "util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 73: YY_RULE_SETUP #line 287 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 74: YY_RULE_SETUP #line 288 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 75: YY_RULE_SETUP #line 289 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 76: YY_RULE_SETUP #line 290 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 77: YY_RULE_SETUP #line 291 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 78: YY_RULE_SETUP #line 292 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } YY_BREAK case 79: YY_RULE_SETUP #line 293 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 80: YY_RULE_SETUP #line 294 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 81: YY_RULE_SETUP #line 295 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 82: YY_RULE_SETUP #line 296 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 83: YY_RULE_SETUP #line 297 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 84: YY_RULE_SETUP #line 298 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 85: YY_RULE_SETUP #line 299 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 86: YY_RULE_SETUP #line 300 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_KEEP_PROBING) } YY_BREAK case 87: YY_RULE_SETUP #line 301 "util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 88: YY_RULE_SETUP #line 302 "util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 89: YY_RULE_SETUP #line 303 "util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 90: YY_RULE_SETUP #line 304 "util/configlexer.lex" { YDVAR(1, VAR_UDP_CONNECT) } YY_BREAK case 91: YY_RULE_SETUP #line 305 "util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 92: YY_RULE_SETUP #line 306 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 93: YY_RULE_SETUP #line 307 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 94: YY_RULE_SETUP #line 308 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 95: YY_RULE_SETUP #line 309 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 96: YY_RULE_SETUP #line 310 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 97: YY_RULE_SETUP #line 311 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 98: YY_RULE_SETUP #line 312 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 99: YY_RULE_SETUP #line 313 "util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 100: YY_RULE_SETUP #line 314 "util/configlexer.lex" { YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 101: YY_RULE_SETUP #line 315 "util/configlexer.lex" { YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 102: YY_RULE_SETUP #line 316 "util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 103: YY_RULE_SETUP #line 317 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 104: YY_RULE_SETUP #line 318 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 105: YY_RULE_SETUP #line 319 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 106: YY_RULE_SETUP #line 320 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 107: YY_RULE_SETUP #line 321 "util/configlexer.lex" { YDVAR(1, VAR_DENY_ANY) } YY_BREAK case 108: YY_RULE_SETUP #line 322 "util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 109: YY_RULE_SETUP #line 323 "util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 110: YY_RULE_SETUP #line 324 "util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 111: YY_RULE_SETUP #line 325 "util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 112: YY_RULE_SETUP #line 326 "util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 113: YY_RULE_SETUP #line 327 "util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 114: YY_RULE_SETUP #line 328 "util/configlexer.lex" { YDVAR(1, VAR_STUB_NO_CACHE) } YY_BREAK case 115: YY_RULE_SETUP #line 329 "util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 116: YY_RULE_SETUP #line 330 "util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 117: YY_RULE_SETUP #line 331 "util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 118: YY_RULE_SETUP #line 332 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 119: YY_RULE_SETUP #line 333 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 120: YY_RULE_SETUP #line 334 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 121: YY_RULE_SETUP #line 335 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_NO_CACHE) } YY_BREAK case 122: YY_RULE_SETUP #line 336 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 123: YY_RULE_SETUP #line 337 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 124: YY_RULE_SETUP #line 338 "util/configlexer.lex" { YDVAR(0, VAR_AUTH_ZONE) } YY_BREAK case 125: YY_RULE_SETUP #line 339 "util/configlexer.lex" { YDVAR(0, VAR_RPZ) } YY_BREAK case 126: YY_RULE_SETUP #line 340 "util/configlexer.lex" { YDVAR(1, VAR_TAGS) } YY_BREAK case 127: YY_RULE_SETUP #line 341 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_ACTION_OVERRIDE) } YY_BREAK case 128: YY_RULE_SETUP #line 342 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_CNAME_OVERRIDE) } YY_BREAK case 129: YY_RULE_SETUP #line 343 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_LOG) } YY_BREAK case 130: YY_RULE_SETUP #line 344 "util/configlexer.lex" { YDVAR(1, VAR_RPZ_LOG_NAME) } YY_BREAK case 131: YY_RULE_SETUP #line 345 "util/configlexer.lex" { YDVAR(1, VAR_ZONEFILE) } YY_BREAK case 132: YY_RULE_SETUP #line 346 "util/configlexer.lex" { YDVAR(1, VAR_MASTER) } YY_BREAK case 133: YY_RULE_SETUP #line 347 "util/configlexer.lex" { YDVAR(1, VAR_MASTER) } YY_BREAK case 134: YY_RULE_SETUP #line 348 "util/configlexer.lex" { YDVAR(1, VAR_URL) } YY_BREAK case 135: YY_RULE_SETUP #line 349 "util/configlexer.lex" { YDVAR(1, VAR_ALLOW_NOTIFY) } YY_BREAK case 136: YY_RULE_SETUP #line 350 "util/configlexer.lex" { YDVAR(1, VAR_FOR_DOWNSTREAM) } YY_BREAK case 137: YY_RULE_SETUP #line 351 "util/configlexer.lex" { YDVAR(1, VAR_FOR_UPSTREAM) } YY_BREAK case 138: YY_RULE_SETUP #line 352 "util/configlexer.lex" { YDVAR(1, VAR_FALLBACK_ENABLED) } YY_BREAK case 139: YY_RULE_SETUP #line 353 "util/configlexer.lex" { YDVAR(0, VAR_VIEW) } YY_BREAK case 140: YY_RULE_SETUP #line 354 "util/configlexer.lex" { YDVAR(1, VAR_VIEW_FIRST) } YY_BREAK case 141: YY_RULE_SETUP #line 355 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 142: YY_RULE_SETUP #line 356 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 143: YY_RULE_SETUP #line 357 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 144: YY_RULE_SETUP #line 358 "util/configlexer.lex" { YDVAR(1, VAR_SEND_CLIENT_SUBNET) } YY_BREAK case 145: YY_RULE_SETUP #line 359 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ZONE) } YY_BREAK case 146: YY_RULE_SETUP #line 360 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) } YY_BREAK case 147: YY_RULE_SETUP #line 361 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) } YY_BREAK case 148: YY_RULE_SETUP #line 362 "util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) } YY_BREAK case 149: YY_RULE_SETUP #line 363 "util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) } YY_BREAK case 150: YY_RULE_SETUP #line 364 "util/configlexer.lex" { YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) } YY_BREAK case 151: YY_RULE_SETUP #line 365 "util/configlexer.lex" { YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) } YY_BREAK case 152: YY_RULE_SETUP #line 366 "util/configlexer.lex" { YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) } YY_BREAK case 153: YY_RULE_SETUP #line 367 "util/configlexer.lex" { YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) } YY_BREAK case 154: YY_RULE_SETUP #line 368 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 155: YY_RULE_SETUP #line 369 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 156: YY_RULE_SETUP #line 370 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_TRUSTANCHOR) } YY_BREAK case 157: YY_RULE_SETUP #line 371 "util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 158: YY_RULE_SETUP #line 372 "util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 159: YY_RULE_SETUP #line 373 "util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 160: YY_RULE_SETUP #line 374 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 161: YY_RULE_SETUP #line 375 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 162: YY_RULE_SETUP #line 376 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 163: YY_RULE_SETUP #line 377 "util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 164: YY_RULE_SETUP #line 378 "util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 165: YY_RULE_SETUP #line 379 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 166: YY_RULE_SETUP #line 380 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) } YY_BREAK case 167: YY_RULE_SETUP #line 381 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_KEY_SENTINEL) } YY_BREAK case 168: YY_RULE_SETUP #line 382 "util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 169: YY_RULE_SETUP #line 383 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 170: YY_RULE_SETUP #line 384 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 171: YY_RULE_SETUP #line 385 "util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 172: YY_RULE_SETUP #line 386 "util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 173: YY_RULE_SETUP #line 387 "util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 174: YY_RULE_SETUP #line 388 "util/configlexer.lex" { YDVAR(1, VAR_AGGRESSIVE_NSEC) } YY_BREAK case 175: YY_RULE_SETUP #line 389 "util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 176: YY_RULE_SETUP #line 390 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED) } YY_BREAK case 177: YY_RULE_SETUP #line 391 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_TTL) } YY_BREAK case 178: YY_RULE_SETUP #line 392 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) } YY_BREAK case 179: YY_RULE_SETUP #line 393 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_REPLY_TTL) } YY_BREAK case 180: YY_RULE_SETUP #line 394 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_CLIENT_TIMEOUT) } YY_BREAK case 181: YY_RULE_SETUP #line 395 "util/configlexer.lex" { YDVAR(1, VAR_FAKE_DSA) } YY_BREAK case 182: YY_RULE_SETUP #line 396 "util/configlexer.lex" { YDVAR(1, VAR_FAKE_SHA1) } YY_BREAK case 183: YY_RULE_SETUP #line 397 "util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 184: YY_RULE_SETUP #line 398 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 185: YY_RULE_SETUP #line 399 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 186: YY_RULE_SETUP #line 400 "util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 187: YY_RULE_SETUP #line 401 "util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 188: YY_RULE_SETUP #line 403 "util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 189: YY_RULE_SETUP #line 404 "util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 190: YY_RULE_SETUP #line 405 "util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 191: YY_RULE_SETUP #line 406 "util/configlexer.lex" { YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) } YY_BREAK case 192: YY_RULE_SETUP #line 407 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 193: YY_RULE_SETUP #line 408 "util/configlexer.lex" { YDVAR(1, VAR_LOG_IDENTITY) } YY_BREAK case 194: YY_RULE_SETUP #line 409 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 195: YY_RULE_SETUP #line 410 "util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 196: YY_RULE_SETUP #line 411 "util/configlexer.lex" { YDVAR(1, VAR_LOG_REPLIES) } YY_BREAK case 197: YY_RULE_SETUP #line 412 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TAG_QUERYREPLY) } YY_BREAK case 198: YY_RULE_SETUP #line 413 "util/configlexer.lex" { YDVAR(1, VAR_LOG_LOCAL_ACTIONS) } YY_BREAK case 199: YY_RULE_SETUP #line 414 "util/configlexer.lex" { YDVAR(1, VAR_LOG_SERVFAIL) } YY_BREAK case 200: YY_RULE_SETUP #line 415 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 201: YY_RULE_SETUP #line 416 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 202: YY_RULE_SETUP #line 417 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 203: YY_RULE_SETUP #line 418 "util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 204: YY_RULE_SETUP #line 419 "util/configlexer.lex" { YDVAR(1, VAR_INSECURE_LAN_ZONES) } YY_BREAK case 205: YY_RULE_SETUP #line 420 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 206: YY_RULE_SETUP #line 421 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 207: YY_RULE_SETUP #line 422 "util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 208: YY_RULE_SETUP #line 423 "util/configlexer.lex" { YDVAR(1, VAR_SHM_ENABLE) } YY_BREAK case 209: YY_RULE_SETUP #line 424 "util/configlexer.lex" { YDVAR(1, VAR_SHM_KEY) } YY_BREAK case 210: YY_RULE_SETUP #line 425 "util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 211: YY_RULE_SETUP #line 426 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 212: YY_RULE_SETUP #line 427 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 213: YY_RULE_SETUP #line 428 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 214: YY_RULE_SETUP #line 429 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 215: YY_RULE_SETUP #line 430 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 216: YY_RULE_SETUP #line 431 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 217: YY_RULE_SETUP #line 432 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 218: YY_RULE_SETUP #line 433 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 219: YY_RULE_SETUP #line 434 "util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 220: YY_RULE_SETUP #line 435 "util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 221: YY_RULE_SETUP #line 436 "util/configlexer.lex" { YDVAR(1, VAR_DYNLIB_FILE) } YY_BREAK case 222: YY_RULE_SETUP #line 437 "util/configlexer.lex" { YDVAR(0, VAR_DYNLIB) } YY_BREAK case 223: YY_RULE_SETUP #line 438 "util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 224: YY_RULE_SETUP #line 439 "util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 225: YY_RULE_SETUP #line 440 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 226: YY_RULE_SETUP #line 441 "util/configlexer.lex" { YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) } YY_BREAK case 227: YY_RULE_SETUP #line 442 "util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 228: YY_RULE_SETUP #line 443 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 229: YY_RULE_SETUP #line 444 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 230: YY_RULE_SETUP #line 445 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_IGNORE_AAAA) } YY_BREAK case 231: YY_RULE_SETUP #line 446 "util/configlexer.lex" { YDVAR(1, VAR_DEFINE_TAG) } YY_BREAK case 232: YY_RULE_SETUP #line 447 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE_TAG) } YY_BREAK case 233: YY_RULE_SETUP #line 448 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_TAG) } YY_BREAK case 234: YY_RULE_SETUP #line 449 "util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) } YY_BREAK case 235: YY_RULE_SETUP #line 450 "util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) } YY_BREAK case 236: YY_RULE_SETUP #line 451 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_VIEW) } YY_BREAK case 237: YY_RULE_SETUP #line 452 "util/configlexer.lex" { YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) } YY_BREAK case 238: YY_RULE_SETUP #line 453 "util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 239: YY_RULE_SETUP #line 454 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 240: YY_RULE_SETUP #line 455 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_BIDIRECTIONAL) } YY_BREAK case 241: YY_RULE_SETUP #line 456 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 242: YY_RULE_SETUP #line 457 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IP) } YY_BREAK case 243: YY_RULE_SETUP #line 458 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_TLS) } YY_BREAK case 244: YY_RULE_SETUP #line 459 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_TLS_SERVER_NAME) } YY_BREAK case 245: YY_RULE_SETUP #line 460 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_TLS_CERT_BUNDLE) } YY_BREAK case 246: YY_RULE_SETUP #line 461 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_TLS_CLIENT_KEY_FILE) } YY_BREAK case 247: YY_RULE_SETUP #line 463 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_TLS_CLIENT_CERT_FILE) } YY_BREAK case 248: YY_RULE_SETUP #line 465 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 249: YY_RULE_SETUP #line 466 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 250: YY_RULE_SETUP #line 467 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 251: YY_RULE_SETUP #line 468 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 252: YY_RULE_SETUP #line 469 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 253: YY_RULE_SETUP #line 471 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 254: YY_RULE_SETUP #line 473 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 255: YY_RULE_SETUP #line 475 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 256: YY_RULE_SETUP #line 477 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 257: YY_RULE_SETUP #line 479 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 258: YY_RULE_SETUP #line 481 "util/configlexer.lex" { YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) } YY_BREAK case 259: YY_RULE_SETUP #line 482 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT) } YY_BREAK case 260: YY_RULE_SETUP #line 483 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 261: YY_RULE_SETUP #line 484 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SLABS) } YY_BREAK case 262: YY_RULE_SETUP #line 485 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 263: YY_RULE_SETUP #line 486 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SIZE) } YY_BREAK case 264: YY_RULE_SETUP #line 487 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 265: YY_RULE_SETUP #line 488 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 266: YY_RULE_SETUP #line 489 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 267: YY_RULE_SETUP #line 490 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_FACTOR) } YY_BREAK case 268: YY_RULE_SETUP #line 491 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 269: YY_RULE_SETUP #line 492 "util/configlexer.lex" { YDVAR(1, VAR_LOW_RTT) } YY_BREAK case 270: YY_RULE_SETUP #line 493 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_NUM) } YY_BREAK case 271: YY_RULE_SETUP #line 494 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 272: YY_RULE_SETUP #line 495 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 273: YY_RULE_SETUP #line 496 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 274: YY_RULE_SETUP #line 497 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_TAG) } YY_BREAK case 275: YY_RULE_SETUP #line 498 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP) } YY_BREAK case 276: YY_RULE_SETUP #line 499 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_DATA) } YY_BREAK case 277: YY_RULE_SETUP #line 500 "util/configlexer.lex" { YDVAR(0, VAR_DNSCRYPT) } YY_BREAK case 278: YY_RULE_SETUP #line 501 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_ENABLE) } YY_BREAK case 279: YY_RULE_SETUP #line 502 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PORT) } YY_BREAK case 280: YY_RULE_SETUP #line 503 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER) } YY_BREAK case 281: YY_RULE_SETUP #line 504 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) } YY_BREAK case 282: YY_RULE_SETUP #line 505 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) } YY_BREAK case 283: YY_RULE_SETUP #line 506 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) } YY_BREAK case 284: YY_RULE_SETUP #line 507 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) } YY_BREAK case 285: YY_RULE_SETUP #line 509 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) } YY_BREAK case 286: YY_RULE_SETUP #line 511 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) } YY_BREAK case 287: YY_RULE_SETUP #line 512 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) } YY_BREAK case 288: YY_RULE_SETUP #line 513 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_ENABLED) } YY_BREAK case 289: YY_RULE_SETUP #line 514 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) } YY_BREAK case 290: YY_RULE_SETUP #line 515 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_HOOK) } YY_BREAK case 291: YY_RULE_SETUP #line 516 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_MAX_TTL) } YY_BREAK case 292: YY_RULE_SETUP #line 517 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_WHITELIST) } YY_BREAK case 293: YY_RULE_SETUP #line 518 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_WHITELIST) } YY_BREAK case 294: YY_RULE_SETUP #line 519 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_STRICT) } YY_BREAK case 295: YY_RULE_SETUP #line 520 "util/configlexer.lex" { YDVAR(0, VAR_CACHEDB) } YY_BREAK case 296: YY_RULE_SETUP #line 521 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_BACKEND) } YY_BREAK case 297: YY_RULE_SETUP #line 522 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_SECRETSEED) } YY_BREAK case 298: YY_RULE_SETUP #line 523 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISHOST) } YY_BREAK case 299: YY_RULE_SETUP #line 524 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISPORT) } YY_BREAK case 300: YY_RULE_SETUP #line 525 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) } YY_BREAK case 301: YY_RULE_SETUP #line 526 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISEXPIRERECORDS) } YY_BREAK case 302: YY_RULE_SETUP #line 527 "util/configlexer.lex" { YDVAR(0, VAR_IPSET) } YY_BREAK case 303: YY_RULE_SETUP #line 528 "util/configlexer.lex" { YDVAR(1, VAR_IPSET_NAME_V4) } YY_BREAK case 304: YY_RULE_SETUP #line 529 "util/configlexer.lex" { YDVAR(1, VAR_IPSET_NAME_V6) } YY_BREAK case 305: YY_RULE_SETUP #line 530 "util/configlexer.lex" { YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) } YY_BREAK case 306: YY_RULE_SETUP #line 531 "util/configlexer.lex" { YDVAR(2, VAR_TCP_CONNECTION_LIMIT) } YY_BREAK case 307: YY_RULE_SETUP #line 532 "util/configlexer.lex" { YDVAR(2, VAR_EDNS_CLIENT_STRING) } YY_BREAK case 308: YY_RULE_SETUP #line 533 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_CLIENT_STRING_OPCODE) } YY_BREAK case 309: /* rule 309 can match eol */ YY_RULE_SETUP #line 534 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 310: YY_RULE_SETUP #line 537 "util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 538 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 311: YY_RULE_SETUP #line 543 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 312: /* rule 312 can match eol */ YY_RULE_SETUP #line 544 "util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 313: YY_RULE_SETUP #line 546 "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 314: YY_RULE_SETUP #line 558 "util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 559 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 315: YY_RULE_SETUP #line 564 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 316: /* rule 316 can match eol */ YY_RULE_SETUP #line 565 "util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 317: YY_RULE_SETUP #line 567 "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 318: YY_RULE_SETUP #line 579 "util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 581 "util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 319: YY_RULE_SETUP #line 585 "util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 320: /* rule 320 can match eol */ YY_RULE_SETUP #line 586 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 321: YY_RULE_SETUP #line 587 "util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 322: YY_RULE_SETUP #line 588 "util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext, 0); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 593 "util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 323: YY_RULE_SETUP #line 597 "util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 324: /* rule 324 can match eol */ YY_RULE_SETUP #line 598 "util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 325: YY_RULE_SETUP #line 600 "util/configlexer.lex" { LEXOUT(("IQE ")); yytext[yyleng - 1] = '\0'; config_start_include_glob(yytext, 0); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(val): #line 606 "util/configlexer.lex" { LEXOUT(("LEXEOF ")); yy_set_bol(1); /* Set beginning of line, so "^" rules match. */ if (!config_include_stack) { yyterminate(); } else { int prev_toplevel = inc_toplevel; fclose(yyin); config_end_include(); if(prev_toplevel) return (VAR_FORCE_TOPLEVEL); } } YY_BREAK /* include-toplevel: directive */ case 326: YY_RULE_SETUP #line 620 "util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include_toplevel); } YY_BREAK case YY_STATE_EOF(include_toplevel): #line 623 "util/configlexer.lex" { yyerror("EOF inside include_toplevel directive"); BEGIN(inc_prev); } YY_BREAK case 327: YY_RULE_SETUP #line 627 "util/configlexer.lex" { LEXOUT(("ITSP ")); /* ignore */ } YY_BREAK case 328: /* rule 328 can match eol */ YY_RULE_SETUP #line 628 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK case 329: YY_RULE_SETUP #line 629 "util/configlexer.lex" { LEXOUT(("ITQS ")); BEGIN(include_toplevel_quoted); } YY_BREAK case 330: YY_RULE_SETUP #line 630 "util/configlexer.lex" { LEXOUT(("ITunquotedstr(%s) ", yytext)); config_start_include_glob(yytext, 1); BEGIN(inc_prev); return (VAR_FORCE_TOPLEVEL); } YY_BREAK case YY_STATE_EOF(include_toplevel_quoted): #line 636 "util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 331: YY_RULE_SETUP #line 640 "util/configlexer.lex" { LEXOUT(("ITSTR(%s) ", yytext)); yymore(); } YY_BREAK case 332: /* rule 332 can match eol */ YY_RULE_SETUP #line 641 "util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 333: YY_RULE_SETUP #line 645 "util/configlexer.lex" { LEXOUT(("ITQE ")); yytext[yyleng - 1] = '\0'; config_start_include_glob(yytext, 1); BEGIN(inc_prev); return (VAR_FORCE_TOPLEVEL); } YY_BREAK case 334: YY_RULE_SETUP #line 653 "util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 335: YY_RULE_SETUP #line 657 "util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 336: YY_RULE_SETUP #line 661 "util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 337: YY_RULE_SETUP #line 665 "util/configlexer.lex" ECHO; YY_BREAK #line 5922 "" 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 >= 3292 ) 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 >= 3292 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; yy_is_jam = (yy_current_state == 3291); 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 665 "util/configlexer.lex"