#include "config.h" #include "util/configyyrename.h" #line 3 "" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 37 #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 #endif /* ! C99 */ #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned 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 #define YY_BUF_SIZE 16384 #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif extern yy_size_t 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) /* 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. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ yy_size_t 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 = 0; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_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 yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */ yy_size_t yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; 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 (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t 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 unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); static void yy_fatal_error (yyconst char msg[] ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ (yytext_ptr) -= (yy_more_len); \ yyleng = (size_t) (yy_cp - (yytext_ptr)); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 164 #define YY_END_OF_BUFFER 165 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; static yyconst flex_int16_t yy_accept[1628] = { 0, 1, 1, 146, 146, 150, 150, 154, 154, 158, 158, 1, 1, 165, 162, 1, 144, 144, 163, 2, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 163, 146, 147, 147, 148, 163, 150, 151, 151, 152, 163, 157, 154, 155, 155, 156, 163, 158, 159, 159, 160, 163, 161, 145, 2, 149, 161, 163, 162, 0, 1, 2, 2, 2, 2, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 146, 0, 150, 0, 157, 0, 154, 158, 0, 161, 0, 2, 2, 161, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 161, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 161, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 66, 162, 162, 162, 162, 162, 6, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 161, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 161, 162, 162, 162, 162, 29, 162, 162, 162, 162, 162, 162, 162, 162, 131, 162, 12, 13, 162, 15, 14, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 124, 162, 162, 162, 162, 162, 3, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 161, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 153, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 32, 162, 162, 162, 162, 162, 162, 162, 162, 162, 33, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 81, 153, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 80, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 64, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 20, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 30, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 31, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 22, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 26, 162, 27, 162, 162, 162, 67, 162, 68, 162, 65, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 5, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 83, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 23, 162, 162, 162, 162, 108, 107, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 34, 162, 162, 162, 162, 162, 162, 162, 162, 70, 69, 162, 162, 162, 162, 162, 162, 162, 104, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 51, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 55, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 106, 162, 162, 162, 162, 162, 162, 162, 162, 162, 4, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 101, 162, 162, 162, 162, 162, 162, 162, 117, 162, 102, 162, 129, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 21, 162, 162, 162, 162, 72, 162, 73, 71, 162, 162, 162, 162, 162, 162, 79, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 103, 162, 162, 162, 162, 128, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 63, 162, 162, 162, 162, 162, 162, 162, 162, 28, 162, 162, 17, 162, 162, 162, 16, 162, 88, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 41, 42, 162, 162, 162, 162, 162, 162, 162, 132, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 74, 162, 162, 162, 162, 162, 78, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 82, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 123, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 92, 162, 96, 162, 162, 162, 162, 77, 162, 162, 115, 162, 162, 162, 162, 130, 162, 162, 162, 162, 162, 162, 162, 137, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 95, 162, 162, 162, 162, 162, 43, 44, 162, 50, 97, 162, 109, 105, 162, 162, 37, 162, 99, 162, 162, 162, 162, 162, 7, 162, 62, 114, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 84, 136, 162, 162, 162, 162, 162, 162, 162, 162, 125, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 98, 162, 36, 38, 162, 162, 162, 162, 162, 61, 162, 162, 162, 162, 119, 18, 19, 162, 162, 162, 162, 162, 162, 162, 59, 162, 162, 162, 162, 162, 162, 162, 162, 162, 121, 118, 162, 162, 162, 162, 162, 162, 162, 162, 35, 162, 162, 162, 162, 162, 162, 11, 162, 162, 162, 162, 162, 162, 162, 162, 10, 162, 162, 39, 162, 127, 120, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 91, 90, 162, 122, 116, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 45, 162, 126, 162, 162, 162, 162, 40, 162, 162, 162, 85, 87, 110, 162, 162, 162, 89, 162, 162, 162, 162, 162, 162, 162, 162, 133, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 24, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 135, 162, 162, 113, 162, 162, 162, 162, 162, 162, 48, 162, 25, 162, 9, 162, 162, 111, 52, 162, 162, 162, 94, 162, 162, 162, 162, 162, 162, 134, 75, 162, 162, 162, 54, 58, 53, 162, 46, 162, 8, 162, 162, 93, 162, 162, 162, 162, 162, 162, 162, 162, 162, 57, 162, 47, 162, 112, 162, 162, 86, 162, 162, 162, 162, 162, 162, 76, 56, 49, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 60, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 100, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 140, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 138, 162, 141, 142, 162, 162, 162, 162, 162, 139, 143, 0 } ; static yyconst flex_int32_t 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, 1, 1, 9, 10, 1, 11, 1, 1, 1, 12, 1, 1, 1, 1, 1, 1, 13, 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, 1, 39, 1, 1, 1, 1, 40, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 yyconst flex_int32_t yy_meta[66] = { 0, 1, 2, 3, 4, 5, 1, 6, 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 yyconst flex_int16_t yy_base[1642] = { 0, 0, 0, 63, 66, 69, 71, 77, 83, 88, 91, 129, 135, 428, 340, 95, 4681, 4681, 4681, 107, 110, 142, 180, 108, 50, 145, 172, 118, 148, 121, 181, 197, 166, 217, 223, 251, 230, 164, 262, 116, 312, 4681, 4681, 4681, 94, 298, 4681, 4681, 4681, 96, 269, 294, 4681, 4681, 4681, 244, 254, 4681, 4681, 4681, 102, 249, 4681, 259, 4681, 247, 287, 237, 309, 111, 0, 313, 0, 0, 284, 170, 265, 288, 289, 296, 305, 301, 273, 302, 328, 306, 311, 308, 309, 216, 325, 329, 339, 353, 344, 356, 357, 338, 365, 346, 367, 369, 368, 372, 373, 394, 386, 402, 383, 392, 399, 396, 400, 401, 410, 423, 421, 419, 426, 431, 438, 428, 434, 203, 159, 177, 169, 141, 483, 165, 122, 174, 115, 490, 494, 0, 461, 463, 467, 477, 485, 481, 478, 501, 495, 476, 510, 554, 245, 480, 506, 490, 512, 509, 504, 517, 534, 497, 545, 551, 533, 539, 538, 561, 587, 560, 577, 543, 571, 579, 573, 596, 590, 588, 583, 599, 585, 600, 601, 598, 604, 611, 621, 623, 602, 349, 630, 645, 625, 634, 641, 657, 651, 660, 643, 658, 666, 663, 649, 665, 638, 678, 669, 685, 690, 213, 696, 698, 684, 693, 692, 705, 701, 702, 689, 713, 726, 737, 718, 716, 721, 733, 743, 729, 735, 740, 753, 748, 745, 765, 741, 760, 763, 771, 786, 759, 790, 774, 780, 787, 797, 799, 801, 810, 807, 803, 812, 806, 837, 821, 828, 834, 809, 814, 824, 830, 838, 846, 863, 854, 908, 864, 869, 865, 856, 870, 874, 862, 887, 873, 889, 902, 898, 903, 912, 916, 914, 954, 913, 939, 940, 934, 960, 938, 945, 943, 949, 959, 969, 973, 970, 982, 985, 976, 983, 981, 992, 996, 978, 1002, 1001, 1010, 1015, 1012, 1003, 1021, 4681, 1026, 1004, 1028, 1023, 1033, 4681, 1037, 1038, 1020, 1041, 1048, 1006, 1044, 1047, 1049, 1063, 1051, 1072, 1064, 1060, 1107, 1075, 1076, 1104, 1098, 1085, 1110, 1089, 1116, 1103, 1112, 1131, 1102, 1125, 1122, 1144, 1136, 1141, 1157, 1130, 1150, 1148, 1151, 899, 1158, 1160, 1173, 1152, 1178, 1179, 1169, 1177, 1159, 1192, 1205, 1202, 1207, 1213, 1189, 1206, 1208, 1217, 1214, 1215, 1201, 1219, 1222, 1209, 1248, 1225, 1237, 1234, 1249, 1240, 1253, 1254, 1250, 1261, 1246, 1280, 1269, 1268, 1288, 1294, 1267, 1282, 1284, 1299, 1302, 1303, 1314, 1275, 1307, 1310, 1342, 1318, 1317, 1321, 1331, 1333, 1327, 1332, 1335, 1344, 1341, 1343, 1350, 1337, 1348, 1371, 1370, 1373, 1376, 1366, 1368, 1377, 1378, 1386, 1389, 1397, 1401, 1392, 1400, 1411, 1408, 1416, 1412, 1426, 1404, 1431, 4681, 1445, 1442, 1424, 1437, 1448, 1443, 1435, 1484, 4681, 1439, 4681, 4681, 1451, 4681, 4681, 1465, 1438, 1473, 1449, 1532, 1475, 1467, 1472, 1483, 1490, 1491, 1504, 1499, 1518, 1525, 1510, 1502, 1508, 1513, 1537, 1541, 1535, 1542, 1543, 1561, 1562, 1557, 1566, 1559, 1565, 1558, 1570, 1574, 1579, 1582, 1586, 1577, 4681, 1588, 1584, 1594, 1592, 1609, 4681, 1589, 1600, 1603, 1606, 1613, 1611, 1619, 1625, 1623, 1630, 1633, 1634, 1637, 1639, 1640, 1618, 1667, 1661, 1652, 1660, 1668, 1653, 1676, 1682, 1680, 1666, 1678, 1686, 1669, 1685, 1690, 1687, 1693, 1696, 1695, 1694, 1744, 1721, 1712, 1705, 1716, 1701, 1723, 1742, 1732, 1746, 1757, 1763, 1752, 1754, 1764, 1771, 1774, 1802, 1780, 1782, 1788, 1793, 1792, 1798, 1799, 1795, 1740, 1807, 4681, 1790, 1815, 1812, 1819, 1838, 1817, 1839, 1830, 1842, 1833, 1837, 1841, 1856, 4681, 1835, 1855, 1852, 1866, 1879, 1880, 1863, 1860, 1890, 4681, 1895, 1888, 1893, 1882, 1881, 1899, 1883, 1898, 1900, 1907, 1917, 1908, 1918, 1912, 1919, 1935, 1924, 1928, 1916, 1939, 1944, 1945, 1940, 1951, 1946, 1941, 1960, 1963, 1955, 1961, 1956, 1972, 1977, 120, 1973, 1983, 1974, 1969, 4681, 76, 1981, 1988, 1978, 2010, 2011, 2004, 2000, 2012, 2018, 2002, 2005, 2013, 2015, 2033, 2025, 2029, 2027, 2045, 2044, 2041, 2050, 2054, 2040, 2056, 2061, 2059, 2074, 2063, 2076, 2060, 2083, 2084, 2077, 2075, 2087, 2095, 2091, 2085, 2103, 2106, 4681, 2121, 2105, 2112, 2109, 2126, 2138, 2118, 2128, 2134, 2132, 2148, 2139, 2146, 2153, 2158, 2147, 2155, 2145, 2161, 2164, 2157, 2173, 2183, 2175, 4681, 2189, 2180, 2185, 2184, 2187, 2200, 2191, 2211, 2190, 2209, 2216, 2221, 4681, 2220, 2232, 2222, 2234, 2219, 2240, 2246, 2244, 2225, 2248, 2247, 2249, 2256, 2242, 2259, 2263, 4681, 2266, 2267, 2272, 2283, 2276, 2269, 2278, 2291, 2275, 2284, 2302, 2281, 2286, 2282, 2313, 2297, 2294, 2305, 2315, 2303, 2330, 4681, 2343, 2322, 2328, 2346, 2311, 2341, 2347, 2334, 2337, 2333, 2349, 2360, 2353, 2357, 2362, 2361, 2363, 2381, 2354, 2372, 2380, 2390, 2396, 2384, 2394, 2398, 2399, 2389, 2409, 2404, 2419, 2426, 4681, 2420, 2428, 2421, 2415, 2443, 2438, 2425, 2430, 2424, 2437, 2439, 2462, 2440, 2454, 2455, 2460, 2461, 2442, 2453, 2477, 2480, 2487, 2471, 2483, 2476, 2493, 2489, 2495, 2488, 2501, 4681, 2506, 4681, 2504, 2512, 2521, 4681, 2525, 4681, 2527, 4681, 2526, 2531, 2515, 2516, 2520, 2533, 2522, 2544, 2535, 2545, 2547, 2539, 2559, 2548, 2565, 4681, 2558, 2564, 2579, 2561, 2573, 2575, 2582, 2594, 2583, 2592, 2587, 2590, 2589, 2607, 4681, 2574, 2614, 2606, 2603, 2626, 2628, 2622, 2634, 2630, 2611, 2645, 2641, 2646, 2633, 2639, 2649, 2659, 2654, 2660, 2652, 2662, 2666, 2663, 2668, 2685, 2670, 2687, 2702, 2681, 2686, 2695, 4681, 2690, 2696, 2709, 2704, 4681, 4681, 2680, 2722, 2714, 2708, 2728, 2715, 2741, 2729, 2743, 2740, 2739, 2731, 2736, 2746, 2747, 2751, 2756, 2763, 2758, 4681, 2766, 2764, 2792, 2783, 2774, 2796, 2784, 2795, 4681, 4681, 2799, 2787, 2790, 2786, 2806, 2802, 2810, 4681, 2816, 2811, 2825, 2834, 2835, 2832, 2821, 2831, 2820, 2837, 2838, 2842, 2853, 2848, 2852, 2866, 2856, 2871, 2876, 4681, 2873, 2884, 2877, 2880, 2879, 2878, 2881, 2886, 2905, 2875, 2904, 2894, 2924, 2907, 2906, 2909, 2910, 2915, 2926, 2930, 2942, 2936, 4681, 2944, 2931, 2947, 2920, 2948, 2958, 2954, 2965, 2940, 2941, 2953, 2943, 2982, 2963, 2992, 2974, 4681, 2986, 2983, 2981, 2990, 2998, 2976, 3011, 2988, 3010, 4681, 3013, 3003, 3008, 3020, 3031, 3037, 3023, 3016, 3029, 3030, 3033, 3040, 3043, 3051, 3050, 3062, 3047, 3058, 3069, 3080, 3086, 3085, 3057, 3075, 3094, 3079, 3088, 3089, 3073, 3107, 3082, 3109, 3096, 4681, 3114, 3097, 3111, 3116, 3115, 3121, 3123, 4681, 3124, 4681, 3118, 4681, 3125, 3126, 3113, 3146, 3140, 3142, 3135, 3160, 3150, 3149, 4681, 3167, 3153, 3166, 3169, 4681, 3170, 4681, 4681, 3172, 3176, 3157, 3180, 3187, 3183, 4681, 3184, 3192, 3199, 3195, 3188, 3205, 3208, 3211, 3206, 3210, 4681, 3219, 3226, 3207, 3231, 4681, 3215, 3241, 3233, 3238, 3247, 3256, 3257, 3227, 3244, 3267, 3268, 4681, 3250, 3252, 3275, 3270, 3278, 3279, 3271, 3289, 4681, 3294, 3298, 4681, 3291, 3265, 3295, 4681, 3307, 4681, 3309, 3305, 3302, 3310, 3323, 3324, 3335, 3322, 3339, 3340, 3331, 3348, 3347, 4681, 4681, 3350, 3352, 3356, 3349, 3346, 3358, 3353, 4681, 3362, 3373, 3342, 3366, 3389, 3377, 3380, 3397, 3398, 3384, 3401, 3383, 3393, 4681, 3391, 3400, 3410, 3405, 3413, 4681, 3403, 3432, 3425, 3427, 3430, 3444, 3447, 3448, 3436, 3450, 3451, 3437, 3453, 3455, 3454, 4681, 3461, 3460, 3465, 3467, 3468, 3463, 3476, 3488, 3485, 3472, 3497, 4681, 3498, 3475, 3506, 3496, 3502, 3503, 3492, 3509, 3499, 3516, 3512, 3528, 3529, 3526, 3546, 3541, 4681, 3530, 4681, 3542, 3557, 3556, 3561, 4681, 3544, 3548, 4681, 3563, 3569, 3571, 3576, 4681, 3579, 3567, 3594, 3580, 3585, 3583, 3603, 4681, 3578, 3597, 3611, 3608, 3596, 3610, 3605, 3612, 3619, 3622, 4681, 3618, 3615, 3637, 3640, 3649, 4681, 4681, 3635, 4681, 4681, 3650, 4681, 4681, 3652, 3653, 4681, 3654, 4681, 3660, 3658, 3655, 3643, 3661, 4681, 3668, 4681, 4681, 3664, 3670, 3675, 3678, 3673, 3674, 3690, 3682, 3685, 3692, 3695, 3696, 3701, 3691, 3713, 3705, 3698, 3700, 3702, 3712, 3723, 3725, 3721, 3739, 3745, 3746, 4681, 4681, 3729, 3740, 3732, 3735, 3748, 3741, 3742, 3764, 4681, 3774, 3768, 3763, 3762, 3775, 3767, 3779, 3786, 3800, 3781, 3782, 3784, 3792, 4681, 3795, 4681, 4681, 3796, 3815, 3817, 3806, 3810, 4681, 3829, 3813, 3831, 3834, 4681, 4681, 4681, 3835, 3824, 3838, 3844, 3845, 3833, 3856, 4681, 3839, 3848, 3862, 3842, 3868, 3870, 3882, 3885, 3886, 4681, 4681, 3891, 3884, 3887, 3881, 3878, 3894, 3895, 3889, 4681, 3896, 3897, 3898, 3921, 3905, 3922, 4681, 3916, 3918, 3917, 3939, 3932, 3940, 3934, 3945, 4681, 3937, 3943, 4681, 3947, 4681, 4681, 3933, 3951, 3968, 3954, 3955, 3975, 3958, 3970, 3990, 3987, 3985, 4681, 4681, 3982, 4681, 4681, 3974, 3994, 3978, 3973, 4008, 4004, 4005, 3998, 4009, 4012, 4011, 4002, 4010, 4015, 4034, 4025, 4026, 4681, 4044, 4681, 4032, 4048, 4052, 4049, 4681, 4051, 4053, 4037, 4681, 4681, 4681, 4061, 4068, 4054, 4681, 4077, 4075, 4070, 4081, 4076, 4071, 4074, 4100, 4681, 4087, 4090, 4107, 4101, 4096, 4097, 4111, 4115, 4103, 4122, 4117, 4125, 4126, 4681, 4135, 4121, 4118, 4150, 4151, 4138, 4142, 4139, 4155, 4148, 4156, 4145, 4174, 4162, 4171, 4681, 4173, 4166, 4681, 4176, 4187, 4194, 4195, 4196, 4197, 4681, 4199, 4681, 4203, 4681, 4205, 4206, 4681, 4681, 4200, 4209, 4210, 4681, 4213, 4198, 4212, 4229, 4223, 4236, 4681, 4681, 4231, 4234, 4245, 4681, 4681, 4681, 4248, 4681, 4250, 4681, 4252, 4238, 4681, 4239, 4259, 4235, 4255, 4262, 4264, 4280, 4271, 4267, 4681, 4288, 4681, 4292, 4681, 4281, 4294, 4681, 4303, 4286, 4296, 4287, 4284, 4289, 4681, 4681, 4681, 4314, 4304, 4312, 4307, 4317, 4320, 4313, 4322, 4342, 4334, 4341, 4345, 4329, 4333, 4359, 4344, 4681, 4351, 4355, 4361, 4363, 4353, 4370, 4357, 4365, 4368, 4378, 4385, 4377, 4384, 4394, 4381, 4401, 4404, 4408, 4410, 4403, 4411, 4417, 4412, 4405, 4414, 4438, 4426, 4430, 4681, 4442, 4429, 4431, 4439, 4453, 4456, 4436, 4458, 4463, 4457, 4460, 4449, 4471, 4466, 4485, 4477, 4494, 4478, 4681, 4498, 4501, 4483, 4488, 4508, 4495, 4512, 4510, 4513, 4520, 4516, 4517, 4525, 4681, 4537, 4681, 4681, 4540, 4529, 4530, 4546, 4550, 4681, 4681, 4681, 4589, 4596, 4603, 4610, 4617, 82, 4624, 4631, 4638, 4645, 4652, 4659, 4666, 4673 } ; static yyconst flex_int16_t yy_def[1642] = { 0, 1627, 1, 1628, 1628, 1629, 1629, 1630, 1630, 1631, 1631, 1632, 1632, 1627, 1633, 1627, 1627, 1627, 1627, 1634, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1635, 1627, 1627, 1627, 1635, 1636, 1627, 1627, 1627, 1636, 1637, 1627, 1627, 1627, 1627, 1637, 1638, 1627, 1627, 1627, 1638, 1639, 1627, 1640, 1627, 1639, 1639, 1633, 1633, 1627, 1641, 1634, 1641, 1634, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1635, 1635, 1636, 1636, 1637, 1637, 1627, 1638, 1638, 1639, 1639, 1640, 1640, 1639, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1639, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1639, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1639, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1639, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1627, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1639, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1639, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1633, 1633, 1633, 1627, 1633, 1627, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1627, 1633, 1633, 1633, 1627, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1627, 1627, 1633, 1627, 1627, 1633, 1633, 1627, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1627, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1627, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1627, 1627, 1627, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1633, 1627, 1633, 1633, 1627, 1627, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633, 1633, 1627, 1627, 1627, 1633, 1627, 1633, 1627, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1633, 1627, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 0, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627 } ; static yyconst flex_int16_t yy_nxt[4747] = { 0, 14, 15, 16, 17, 18, 19, 18, 14, 14, 14, 14, 18, 20, 14, 21, 22, 23, 24, 14, 25, 26, 27, 28, 29, 30, 31, 32, 33, 14, 34, 35, 36, 37, 38, 14, 14, 14, 14, 39, 20, 14, 21, 22, 23, 24, 14, 25, 26, 27, 28, 29, 30, 31, 32, 33, 14, 34, 35, 36, 37, 38, 14, 14, 14, 14, 41, 42, 43, 41, 42, 43, 46, 47, 46, 47, 48, 87, 48, 51, 52, 53, 54, 67, 18, 51, 52, 53, 54, 68, 18, 57, 58, 59, 57, 58, 59, 69, 123, 123, 125, 70, 44, 125, 87, 44, 130, 130, 49, 72, 49, 72, 72, 69, 72, 133, 55, 70, 67, 72, 67, 67, 55, 67, 85, 74, 75, 60, 67, 725, 60, 15, 16, 17, 62, 63, 64, 15, 16, 17, 62, 63, 64, 76, 86, 94, 73, 68, 96, 68, 65, 85, 74, 75, 133, 77, 65, 68, 88, 68, 68, 131, 78, 123, 123, 95, 89, 129, 66, 79, 76, 86, 94, 125, 66, 96, 125, 65, 130, 130, 128, 68, 77, 65, 68, 88, 138, 68, 90, 78, 119, 91, 95, 89, 97, 120, 79, 80, 92, 104, 93, 81, 98, 68, 82, 68, 83, 84, 99, 68, 101, 68, 100, 138, 102, 90, 126, 119, 91, 68, 68, 97, 120, 274, 80, 92, 104, 93, 81, 98, 103, 82, 153, 83, 84, 99, 68, 101, 105, 100, 109, 102, 124, 116, 106, 117, 127, 107, 127, 127, 110, 127, 68, 111, 108, 68, 68, 103, 212, 153, 118, 72, 68, 72, 72, 105, 72, 109, 112, 68, 116, 106, 117, 136, 107, 121, 68, 110, 113, 122, 111, 108, 114, 115, 68, 212, 133, 118, 133, 132, 68, 132, 132, 131, 132, 112, 129, 139, 135, 137, 136, 68, 121, 140, 68, 113, 122, 145, 128, 114, 115, 67, 68, 67, 67, 72, 67, 72, 72, 141, 72, 67, 142, 68, 139, 72, 137, 68, 68, 143, 140, 144, 149, 146, 145, 68, 147, 126, 151, 152, 68, 68, 154, 150, 68, 68, 141, 68, 68, 142, 68, 124, 73, 148, 156, 155, 143, 157, 144, 149, 146, 159, 167, 252, 68, 151, 152, 68, 68, 154, 150, 158, 163, 161, 165, 160, 164, 68, 68, 68, 148, 156, 155, 68, 157, 68, 168, 170, 68, 167, 252, 166, 68, 162, 169, 68, 68, 171, 158, 163, 161, 165, 160, 164, 68, 172, 68, 68, 68, 182, 173, 68, 68, 168, 170, 177, 174, 178, 166, 175, 162, 169, 68, 176, 171, 68, 179, 180, 1627, 1627, 181, 68, 172, 68, 183, 68, 184, 173, 68, 68, 68, 68, 177, 174, 178, 189, 175, 187, 1627, 68, 176, 186, 192, 179, 180, 191, 185, 181, 68, 188, 68, 183, 68, 184, 193, 68, 190, 68, 1627, 1627, 68, 1627, 189, 68, 187, 196, 194, 68, 186, 192, 195, 1627, 191, 185, 204, 127, 188, 127, 127, 1627, 127, 193, 132, 190, 132, 132, 72, 132, 72, 72, 133, 72, 68, 194, 197, 198, 68, 195, 199, 201, 200, 213, 203, 1627, 202, 68, 68, 68, 1627, 68, 68, 205, 1627, 214, 68, 215, 217, 222, 216, 68, 218, 197, 198, 135, 68, 199, 68, 200, 213, 203, 68, 202, 206, 68, 219, 68, 227, 1627, 68, 68, 214, 68, 215, 217, 222, 216, 68, 218, 220, 1627, 1627, 221, 223, 1627, 224, 225, 1627, 226, 231, 206, 207, 219, 68, 68, 228, 208, 233, 68, 68, 234, 209, 236, 68, 1627, 68, 220, 210, 211, 221, 223, 68, 224, 225, 68, 226, 229, 235, 207, 232, 68, 68, 228, 208, 233, 237, 230, 239, 209, 1627, 238, 68, 1627, 68, 210, 211, 240, 68, 241, 68, 242, 243, 246, 68, 235, 68, 232, 68, 68, 244, 68, 245, 250, 230, 239, 251, 68, 238, 68, 68, 68, 68, 68, 240, 68, 241, 247, 242, 243, 246, 253, 68, 248, 249, 254, 257, 244, 255, 245, 256, 260, 68, 251, 68, 1627, 68, 258, 267, 263, 269, 68, 1627, 266, 247, 68, 261, 1627, 253, 68, 248, 249, 68, 257, 133, 255, 68, 256, 265, 259, 68, 264, 68, 262, 268, 267, 263, 269, 68, 68, 270, 68, 272, 261, 68, 273, 68, 68, 271, 279, 68, 275, 282, 276, 277, 265, 259, 283, 264, 68, 262, 268, 278, 280, 281, 68, 68, 270, 284, 272, 68, 68, 273, 68, 68, 271, 279, 68, 275, 68, 276, 277, 68, 68, 283, 285, 68, 286, 288, 278, 280, 281, 287, 293, 68, 284, 289, 68, 291, 68, 290, 292, 68, 295, 300, 296, 294, 68, 1627, 1627, 68, 297, 285, 306, 68, 288, 68, 1627, 68, 287, 293, 68, 68, 289, 68, 291, 68, 290, 292, 68, 302, 300, 296, 294, 68, 301, 298, 303, 297, 299, 68, 68, 304, 305, 68, 308, 68, 307, 309, 310, 311, 312, 68, 317, 1627, 68, 314, 302, 313, 327, 1627, 68, 301, 298, 303, 319, 299, 68, 68, 304, 305, 68, 308, 328, 307, 309, 310, 311, 68, 315, 68, 316, 68, 314, 68, 313, 318, 68, 68, 322, 68, 68, 319, 68, 320, 68, 321, 326, 323, 329, 328, 324, 68, 325, 330, 68, 315, 331, 316, 68, 1627, 68, 349, 318, 332, 68, 322, 1627, 68, 68, 333, 320, 335, 321, 326, 323, 329, 68, 324, 346, 325, 330, 344, 343, 331, 68, 334, 68, 1627, 347, 345, 332, 351, 68, 68, 68, 133, 333, 348, 335, 68, 68, 353, 437, 68, 68, 346, 1627, 352, 344, 343, 350, 356, 334, 336, 337, 347, 345, 68, 351, 68, 355, 354, 358, 338, 348, 339, 340, 341, 68, 68, 342, 1627, 68, 68, 352, 357, 361, 350, 68, 1627, 336, 337, 68, 68, 68, 366, 68, 355, 354, 358, 338, 364, 339, 340, 341, 359, 360, 342, 362, 363, 368, 369, 357, 361, 68, 365, 367, 1627, 68, 68, 68, 371, 366, 68, 370, 68, 1627, 372, 364, 68, 373, 375, 374, 377, 68, 362, 363, 368, 369, 68, 68, 378, 365, 367, 376, 381, 380, 379, 371, 68, 68, 370, 382, 68, 372, 400, 68, 373, 68, 374, 377, 68, 68, 68, 383, 68, 384, 385, 378, 386, 387, 376, 68, 380, 379, 389, 68, 388, 391, 382, 390, 68, 68, 68, 68, 393, 68, 397, 1627, 392, 68, 383, 68, 384, 385, 68, 386, 387, 394, 398, 68, 68, 389, 68, 388, 391, 68, 390, 68, 399, 395, 396, 393, 68, 397, 401, 392, 68, 68, 405, 404, 68, 402, 403, 68, 394, 398, 68, 68, 68, 406, 68, 408, 407, 1627, 1627, 399, 395, 396, 1627, 68, 1627, 401, 68, 68, 415, 405, 404, 414, 402, 403, 1627, 68, 416, 418, 68, 68, 406, 419, 408, 407, 409, 417, 1627, 420, 68, 410, 421, 411, 68, 422, 423, 415, 1627, 426, 414, 412, 424, 68, 433, 428, 418, 68, 68, 68, 419, 413, 68, 409, 417, 68, 420, 68, 410, 421, 411, 68, 422, 423, 425, 427, 426, 68, 412, 424, 68, 429, 428, 430, 431, 68, 68, 448, 413, 432, 434, 68, 436, 445, 435, 441, 68, 446, 438, 68, 439, 425, 427, 68, 440, 68, 68, 68, 429, 442, 430, 431, 133, 68, 68, 68, 432, 434, 447, 436, 449, 435, 441, 443, 68, 438, 444, 439, 68, 450, 451, 440, 68, 68, 68, 452, 442, 453, 454, 455, 456, 457, 1627, 461, 68, 447, 458, 68, 459, 460, 443, 463, 1627, 444, 467, 462, 68, 68, 469, 1627, 68, 68, 68, 68, 68, 454, 455, 456, 68, 68, 68, 471, 68, 458, 68, 459, 460, 68, 463, 464, 68, 467, 462, 468, 465, 472, 470, 474, 466, 68, 477, 475, 68, 479, 476, 68, 1627, 1627, 471, 491, 483, 68, 480, 68, 68, 68, 464, 473, 68, 68, 468, 465, 472, 470, 474, 466, 68, 477, 475, 481, 478, 476, 68, 68, 68, 482, 485, 483, 484, 480, 68, 1627, 486, 487, 473, 68, 488, 68, 489, 68, 1627, 493, 490, 68, 492, 1627, 481, 478, 497, 68, 1627, 499, 482, 485, 68, 484, 494, 68, 68, 486, 487, 509, 68, 488, 498, 68, 495, 504, 493, 68, 496, 492, 68, 68, 502, 497, 68, 500, 499, 501, 503, 505, 68, 494, 506, 1627, 68, 68, 68, 507, 68, 498, 68, 508, 504, 510, 68, 68, 68, 68, 511, 502, 512, 68, 500, 68, 501, 503, 505, 514, 515, 506, 513, 518, 1627, 516, 507, 1627, 517, 519, 508, 68, 510, 68, 520, 68, 68, 511, 68, 512, 521, 68, 68, 68, 522, 524, 514, 515, 523, 513, 518, 68, 516, 528, 68, 517, 519, 68, 525, 527, 526, 520, 68, 530, 1627, 68, 68, 521, 529, 68, 531, 522, 524, 68, 535, 523, 68, 68, 532, 533, 528, 133, 548, 550, 534, 525, 527, 526, 1627, 68, 530, 68, 545, 536, 537, 529, 68, 531, 539, 538, 68, 535, 68, 68, 68, 532, 546, 68, 68, 548, 68, 534, 547, 68, 68, 549, 68, 1627, 557, 545, 536, 537, 1627, 558, 560, 539, 538, 540, 561, 1627, 68, 541, 68, 546, 542, 559, 562, 68, 68, 547, 68, 543, 549, 563, 544, 557, 1627, 1627, 68, 68, 558, 560, 564, 567, 540, 68, 68, 565, 541, 570, 568, 542, 559, 562, 68, 569, 566, 68, 543, 68, 563, 544, 551, 68, 552, 68, 571, 553, 68, 564, 567, 575, 554, 68, 565, 574, 570, 568, 555, 556, 68, 573, 569, 566, 572, 576, 577, 68, 578, 551, 68, 552, 68, 571, 553, 580, 68, 68, 68, 554, 579, 581, 574, 583, 582, 555, 556, 585, 573, 584, 587, 572, 68, 68, 68, 578, 68, 68, 586, 589, 68, 68, 580, 591, 588, 68, 590, 579, 581, 68, 583, 582, 68, 596, 68, 592, 584, 68, 595, 68, 593, 68, 610, 68, 68, 586, 589, 68, 594, 68, 591, 588, 597, 590, 598, 68, 601, 602, 68, 600, 596, 68, 592, 599, 68, 595, 68, 593, 68, 603, 605, 607, 1627, 68, 68, 594, 606, 604, 68, 597, 68, 598, 609, 601, 602, 68, 600, 608, 68, 68, 599, 611, 68, 612, 68, 68, 603, 605, 607, 613, 614, 615, 616, 606, 604, 617, 618, 68, 68, 609, 622, 619, 620, 624, 608, 68, 68, 623, 625, 621, 612, 68, 68, 68, 68, 627, 613, 614, 615, 616, 626, 68, 617, 68, 641, 68, 630, 68, 619, 620, 68, 68, 68, 628, 623, 133, 621, 629, 68, 68, 68, 68, 627, 637, 1627, 638, 68, 626, 639, 640, 68, 641, 1627, 630, 644, 642, 1627, 68, 666, 1627, 628, 68, 1627, 1627, 629, 631, 68, 632, 68, 1627, 637, 633, 638, 634, 643, 639, 640, 68, 635, 645, 646, 644, 642, 636, 649, 68, 648, 68, 653, 68, 647, 68, 631, 650, 632, 652, 651, 68, 633, 68, 634, 643, 68, 658, 668, 635, 645, 646, 68, 68, 636, 649, 661, 648, 659, 662, 68, 647, 660, 68, 650, 654, 652, 651, 663, 68, 655, 68, 656, 667, 658, 664, 665, 68, 1627, 68, 669, 68, 68, 661, 68, 659, 662, 68, 68, 660, 657, 68, 654, 670, 671, 663, 68, 655, 673, 656, 667, 68, 664, 665, 68, 672, 68, 669, 68, 676, 674, 675, 679, 678, 680, 677, 681, 657, 1627, 68, 670, 671, 68, 688, 68, 673, 68, 68, 68, 683, 68, 68, 672, 684, 687, 682, 676, 674, 675, 679, 678, 68, 677, 681, 68, 68, 685, 686, 689, 68, 688, 692, 68, 690, 693, 68, 683, 691, 694, 695, 684, 687, 682, 696, 697, 699, 698, 700, 68, 68, 68, 68, 68, 685, 686, 701, 703, 68, 692, 68, 704, 693, 68, 705, 68, 694, 695, 68, 68, 68, 696, 697, 699, 698, 700, 702, 68, 68, 710, 706, 707, 68, 701, 703, 708, 68, 68, 68, 68, 709, 705, 712, 713, 68, 711, 717, 715, 68, 718, 716, 714, 719, 702, 721, 68, 710, 706, 707, 68, 68, 68, 708, 720, 68, 68, 68, 709, 722, 712, 713, 68, 711, 717, 715, 68, 68, 716, 714, 723, 68, 68, 724, 68, 726, 727, 728, 729, 730, 68, 720, 732, 68, 68, 68, 722, 731, 68, 68, 733, 734, 68, 735, 68, 1627, 1627, 723, 736, 68, 724, 739, 726, 727, 728, 729, 730, 738, 740, 732, 737, 68, 741, 68, 731, 68, 68, 743, 742, 745, 735, 68, 68, 68, 68, 736, 68, 744, 739, 68, 747, 746, 749, 748, 738, 740, 68, 737, 68, 741, 68, 751, 752, 1627, 68, 742, 745, 1627, 750, 753, 754, 68, 68, 759, 744, 68, 68, 747, 746, 749, 748, 68, 755, 756, 758, 68, 757, 68, 751, 752, 68, 68, 68, 762, 68, 750, 753, 754, 763, 1627, 759, 766, 760, 761, 767, 68, 68, 68, 68, 755, 756, 758, 764, 757, 68, 68, 68, 765, 68, 769, 762, 770, 68, 771, 772, 763, 68, 768, 766, 760, 761, 767, 780, 773, 68, 774, 68, 68, 775, 764, 68, 777, 776, 68, 765, 778, 769, 779, 782, 68, 771, 772, 68, 781, 768, 783, 786, 68, 784, 68, 773, 789, 774, 68, 790, 68, 791, 788, 777, 68, 68, 785, 778, 787, 779, 782, 68, 68, 68, 68, 781, 792, 783, 786, 68, 784, 68, 1627, 68, 68, 797, 1627, 68, 791, 788, 68, 793, 798, 785, 799, 787, 794, 801, 795, 68, 796, 68, 800, 792, 804, 802, 68, 803, 807, 68, 68, 68, 797, 68, 806, 68, 68, 68, 793, 798, 809, 799, 810, 794, 801, 795, 68, 796, 805, 800, 808, 804, 802, 813, 803, 68, 811, 68, 814, 815, 812, 806, 68, 817, 818, 68, 68, 68, 68, 810, 816, 68, 819, 821, 820, 805, 822, 808, 68, 823, 68, 826, 827, 811, 824, 814, 68, 812, 68, 825, 68, 818, 68, 68, 68, 68, 828, 816, 829, 819, 821, 820, 68, 822, 830, 68, 823, 831, 832, 68, 833, 824, 68, 68, 834, 68, 825, 836, 68, 839, 837, 68, 68, 828, 68, 838, 835, 68, 68, 68, 68, 830, 68, 840, 831, 832, 841, 68, 842, 844, 68, 834, 843, 68, 852, 845, 839, 837, 68, 68, 849, 68, 838, 835, 846, 850, 853, 68, 847, 68, 840, 68, 848, 841, 855, 842, 844, 851, 68, 843, 854, 852, 845, 1627, 68, 856, 68, 849, 857, 68, 68, 846, 850, 68, 859, 862, 858, 68, 866, 68, 860, 855, 68, 68, 851, 68, 861, 854, 863, 68, 68, 864, 856, 68, 868, 857, 68, 68, 68, 68, 867, 859, 862, 858, 865, 866, 869, 860, 68, 877, 870, 871, 872, 861, 874, 863, 68, 68, 864, 875, 68, 868, 873, 876, 878, 68, 68, 867, 1627, 880, 68, 865, 68, 869, 68, 68, 879, 870, 871, 872, 68, 874, 881, 883, 882, 68, 875, 886, 884, 873, 876, 68, 885, 887, 891, 68, 68, 68, 888, 889, 68, 68, 68, 879, 68, 890, 68, 892, 893, 881, 883, 882, 898, 68, 68, 68, 68, 899, 68, 68, 887, 891, 894, 895, 897, 888, 889, 900, 896, 68, 68, 68, 890, 903, 901, 893, 68, 68, 68, 898, 902, 904, 906, 907, 899, 905, 910, 68, 908, 894, 895, 897, 68, 68, 900, 896, 68, 909, 912, 68, 903, 901, 913, 68, 68, 68, 914, 902, 904, 68, 907, 68, 905, 911, 915, 908, 916, 68, 917, 919, 68, 918, 68, 921, 909, 912, 923, 922, 68, 913, 920, 68, 68, 924, 1627, 926, 68, 68, 68, 928, 911, 68, 68, 68, 925, 917, 919, 68, 918, 68, 921, 68, 929, 923, 922, 68, 930, 920, 927, 931, 68, 68, 926, 68, 68, 932, 928, 933, 940, 934, 935, 925, 942, 938, 68, 68, 1627, 68, 944, 929, 68, 68, 936, 930, 937, 927, 931, 946, 939, 68, 68, 68, 932, 943, 933, 68, 934, 935, 68, 68, 938, 941, 945, 68, 947, 68, 68, 948, 68, 936, 68, 937, 949, 953, 946, 939, 954, 1627, 950, 68, 943, 951, 68, 68, 956, 957, 959, 68, 941, 945, 68, 947, 955, 952, 948, 1627, 960, 958, 68, 949, 961, 967, 68, 954, 68, 950, 68, 962, 951, 68, 68, 956, 957, 964, 966, 68, 968, 68, 963, 955, 952, 68, 68, 960, 958, 68, 965, 961, 68, 984, 68, 973, 970, 969, 962, 68, 68, 971, 68, 68, 964, 966, 68, 968, 68, 963, 68, 975, 972, 974, 976, 1627, 980, 965, 979, 977, 68, 68, 973, 970, 969, 68, 68, 68, 971, 978, 68, 981, 986, 983, 982, 68, 68, 987, 985, 972, 974, 976, 68, 980, 68, 979, 977, 989, 68, 68, 988, 992, 993, 994, 68, 68, 978, 996, 981, 986, 983, 982, 68, 990, 987, 985, 991, 997, 68, 68, 1001, 68, 995, 998, 989, 1004, 68, 988, 992, 68, 68, 68, 1000, 68, 996, 999, 68, 68, 1627, 1003, 990, 68, 1002, 991, 997, 1005, 68, 1001, 68, 995, 998, 1006, 1007, 68, 68, 1009, 68, 1008, 1627, 1000, 1010, 1011, 999, 1014, 68, 1017, 1003, 1012, 1016, 1002, 1013, 1015, 1005, 68, 68, 1627, 68, 68, 1021, 1007, 68, 1018, 68, 1028, 1008, 68, 68, 1010, 1011, 68, 1014, 1019, 68, 1022, 1012, 1016, 68, 1013, 1015, 1020, 68, 68, 1023, 1024, 1025, 1021, 68, 1026, 1018, 1027, 68, 68, 1032, 1030, 1029, 68, 1627, 1031, 1019, 1036, 1022, 68, 68, 1033, 68, 68, 1020, 68, 68, 1023, 1024, 1025, 68, 1034, 1026, 1035, 1027, 1037, 68, 1038, 1030, 1029, 68, 68, 1031, 1039, 68, 1040, 1042, 1627, 1033, 1043, 1041, 1044, 1046, 1627, 68, 1051, 1049, 1045, 1034, 68, 1035, 68, 1037, 68, 68, 68, 68, 68, 68, 68, 1039, 1056, 68, 1042, 68, 1047, 1043, 1041, 1044, 1046, 1050, 1052, 68, 1049, 1045, 1627, 1054, 1058, 1048, 1053, 1055, 1059, 68, 68, 68, 68, 1057, 68, 68, 1060, 1061, 1062, 1047, 68, 1064, 1627, 1065, 1050, 68, 1066, 1063, 1068, 68, 1054, 68, 1048, 1053, 1055, 68, 68, 1067, 1073, 1074, 1057, 68, 1076, 1627, 1061, 68, 68, 68, 68, 68, 1065, 1075, 68, 68, 1063, 1069, 1070, 1071, 68, 68, 1077, 1082, 1072, 68, 1067, 1073, 1074, 1078, 68, 1076, 68, 1079, 1080, 1081, 1083, 1084, 1627, 1091, 1075, 68, 1086, 68, 1069, 1070, 1071, 1085, 68, 68, 68, 1072, 1087, 68, 1088, 68, 1078, 68, 1090, 68, 1079, 1080, 1081, 1083, 1084, 68, 1089, 1093, 1092, 1086, 68, 1094, 1096, 1627, 1085, 68, 1097, 68, 68, 1087, 68, 1088, 1095, 68, 1098, 1090, 1101, 68, 1100, 1099, 68, 1103, 1102, 1089, 1093, 1092, 68, 68, 68, 1096, 68, 1104, 1106, 1097, 68, 1109, 1105, 68, 1107, 1095, 68, 1098, 1108, 1101, 68, 1100, 1099, 68, 68, 1102, 1110, 1113, 1111, 1114, 68, 68, 1112, 1115, 1104, 68, 1116, 1117, 1118, 1105, 1627, 1107, 68, 1126, 1120, 1108, 68, 1119, 68, 1121, 1122, 1123, 68, 68, 1124, 68, 1114, 1127, 68, 68, 1115, 68, 68, 1125, 1117, 1118, 1129, 68, 1128, 68, 68, 1120, 1135, 1130, 1119, 1132, 1133, 1122, 1131, 1136, 68, 1124, 68, 1134, 68, 1140, 68, 68, 68, 68, 1125, 68, 1142, 1129, 68, 1128, 68, 68, 68, 68, 1130, 1137, 1132, 1133, 1138, 1131, 1136, 1139, 68, 1143, 1134, 1141, 1140, 68, 1144, 68, 1149, 1146, 1151, 68, 1152, 1147, 68, 68, 1148, 1145, 68, 1153, 1137, 1155, 68, 1138, 1150, 68, 1139, 1154, 1143, 1156, 1141, 68, 68, 1144, 68, 68, 1146, 68, 1158, 1152, 1147, 68, 1159, 1148, 1145, 68, 1153, 1160, 68, 68, 1157, 1150, 68, 68, 1154, 1161, 1156, 68, 1162, 1164, 68, 1163, 1166, 1168, 68, 1158, 1167, 1170, 1165, 1159, 68, 68, 68, 68, 1160, 68, 68, 1157, 1169, 1171, 68, 1173, 1161, 1177, 68, 1162, 1164, 1174, 1163, 1166, 1168, 68, 68, 1167, 1170, 1165, 68, 1172, 68, 1175, 1176, 1179, 1178, 68, 1182, 1169, 68, 1181, 1173, 68, 1177, 1180, 68, 1183, 1174, 68, 1627, 68, 1188, 1187, 1184, 68, 68, 1193, 1172, 1185, 1175, 1176, 1186, 1178, 68, 1182, 68, 68, 1181, 68, 68, 1190, 1180, 1189, 68, 1191, 1192, 68, 68, 1188, 1187, 1184, 1627, 1194, 1193, 1195, 1185, 1196, 68, 1186, 68, 1199, 1197, 68, 68, 1200, 1627, 68, 1190, 1198, 1189, 68, 1191, 1192, 68, 1201, 68, 1202, 68, 68, 1194, 1627, 1195, 1203, 1196, 1204, 1206, 1205, 1199, 1197, 1207, 68, 68, 68, 1210, 1215, 1198, 1208, 1627, 1211, 68, 1209, 1201, 1212, 68, 1214, 1213, 1218, 68, 68, 1203, 68, 1204, 1206, 1205, 68, 68, 68, 68, 68, 1217, 68, 68, 1219, 1208, 68, 1211, 68, 1209, 1216, 1212, 68, 1214, 1213, 1218, 68, 1220, 1221, 1222, 1223, 1627, 1225, 68, 1627, 1224, 1234, 68, 1217, 1226, 68, 1219, 1227, 68, 68, 1228, 1627, 1216, 1229, 68, 1232, 68, 1230, 68, 1220, 1221, 1222, 68, 68, 1225, 68, 68, 1224, 68, 1231, 68, 1226, 1233, 1235, 1227, 68, 1236, 1228, 68, 1237, 1229, 1238, 1232, 1239, 1230, 1240, 1241, 1242, 1243, 1244, 68, 1246, 68, 1247, 1245, 68, 1231, 68, 1250, 1233, 1235, 68, 68, 1236, 1249, 1252, 1237, 1254, 1238, 68, 1239, 1248, 68, 68, 1242, 68, 68, 1255, 68, 68, 68, 1245, 1251, 1258, 1253, 68, 68, 1256, 68, 1259, 68, 1249, 68, 68, 1254, 1260, 1261, 68, 1248, 1262, 68, 68, 1257, 1264, 1255, 1263, 1266, 1627, 1627, 1251, 68, 1253, 1265, 68, 1256, 1267, 1259, 68, 1269, 1270, 1268, 68, 68, 68, 68, 1271, 1262, 68, 68, 1257, 1264, 68, 1263, 1266, 68, 1272, 1273, 68, 1274, 1265, 1275, 68, 1267, 1276, 1627, 1269, 1270, 1268, 1277, 1278, 1280, 68, 1271, 68, 68, 68, 1279, 1283, 1284, 1627, 1281, 1627, 1272, 1273, 1285, 1274, 68, 68, 1282, 68, 1276, 68, 1286, 68, 1288, 1277, 1278, 1289, 1627, 1290, 1296, 68, 68, 1279, 1283, 1284, 68, 1281, 68, 1287, 1292, 1285, 68, 1291, 68, 1282, 68, 1293, 1297, 1286, 1294, 68, 1295, 68, 68, 68, 1290, 1296, 68, 1298, 68, 1299, 1301, 1304, 1300, 1303, 1287, 1292, 1307, 68, 1291, 68, 68, 1302, 1293, 1297, 1305, 1294, 68, 1295, 68, 1308, 1306, 68, 1311, 68, 68, 68, 1299, 1301, 68, 1300, 1303, 68, 68, 1307, 1309, 68, 1312, 1310, 1302, 1314, 1315, 1305, 1316, 1313, 1627, 1317, 1627, 1306, 68, 1311, 68, 1319, 1320, 68, 1321, 1322, 68, 1318, 1323, 1326, 1327, 1309, 68, 68, 1310, 68, 68, 68, 68, 1325, 1313, 68, 1317, 68, 68, 1324, 1328, 68, 1319, 1320, 1329, 68, 1322, 68, 1318, 1323, 68, 68, 68, 1330, 1331, 68, 1334, 1332, 1333, 68, 1325, 1335, 68, 1336, 1337, 1340, 1324, 68, 68, 68, 1339, 1329, 68, 68, 1338, 68, 1344, 68, 68, 68, 1330, 1331, 68, 1334, 1332, 1333, 1341, 1342, 1335, 68, 68, 1337, 1340, 1343, 1345, 1346, 1347, 1339, 68, 1348, 68, 1338, 68, 1344, 1350, 1351, 68, 1352, 1349, 68, 1354, 1353, 68, 1341, 1342, 1355, 68, 68, 68, 68, 1343, 1345, 68, 68, 1356, 68, 1348, 1357, 1358, 1627, 1359, 1350, 1351, 1361, 1352, 1349, 1363, 1354, 1353, 68, 68, 68, 1355, 1360, 68, 68, 1364, 1366, 1362, 1365, 1627, 68, 68, 1367, 1357, 1358, 68, 1359, 68, 68, 1361, 68, 1368, 68, 1369, 1627, 1370, 1372, 1371, 68, 1360, 1373, 68, 68, 1366, 1362, 1365, 68, 1374, 1375, 1367, 1377, 1376, 68, 1378, 1627, 1379, 68, 1627, 1368, 68, 1369, 68, 1370, 68, 1371, 1380, 1381, 1373, 1382, 1383, 68, 1384, 1387, 1386, 1374, 68, 1389, 68, 1376, 68, 68, 68, 1379, 1385, 68, 68, 1388, 1390, 68, 1391, 68, 68, 1380, 1381, 68, 1382, 1383, 1392, 1384, 1387, 1386, 1627, 68, 1389, 1393, 1394, 1395, 1396, 68, 1398, 1385, 1397, 1399, 1388, 68, 1627, 68, 1627, 1403, 1401, 1402, 1400, 1627, 1627, 68, 1407, 1405, 68, 68, 1404, 68, 68, 68, 68, 1396, 68, 1398, 68, 1397, 1399, 68, 68, 68, 68, 68, 1403, 1401, 1402, 1400, 1406, 1408, 68, 1407, 1405, 1409, 1411, 1404, 1410, 1412, 1414, 1413, 1415, 68, 68, 68, 1417, 1419, 68, 68, 1416, 1627, 1421, 1420, 1423, 1424, 1418, 1406, 1408, 68, 68, 68, 1409, 1411, 68, 1410, 68, 68, 1413, 1415, 68, 1422, 68, 1417, 68, 1425, 1426, 1416, 68, 1421, 1420, 68, 68, 1418, 1427, 68, 1428, 1429, 1431, 1430, 1627, 1432, 1433, 1436, 1627, 68, 1435, 68, 1422, 1434, 68, 68, 68, 1426, 1438, 68, 1440, 1444, 1627, 68, 1627, 1427, 68, 1442, 68, 1431, 1430, 68, 1432, 1433, 1436, 68, 1437, 1435, 1439, 68, 1434, 1443, 1441, 68, 1445, 68, 68, 1440, 1444, 68, 68, 68, 68, 68, 1442, 1446, 68, 1447, 1627, 1448, 1449, 1450, 1452, 1437, 1451, 1439, 68, 68, 1443, 1441, 1453, 1445, 1454, 68, 1455, 68, 1457, 1460, 68, 1456, 1458, 1466, 1446, 1459, 1447, 68, 1448, 1449, 1450, 68, 68, 1451, 68, 68, 68, 68, 1461, 1453, 1462, 1454, 1464, 1455, 68, 1457, 1460, 1463, 1456, 1458, 1465, 68, 1459, 68, 68, 1467, 1468, 68, 68, 68, 68, 1470, 1469, 1471, 68, 1461, 1472, 1462, 1473, 1464, 68, 1627, 1474, 68, 1463, 1475, 1476, 1465, 1478, 68, 68, 1480, 1467, 68, 68, 1477, 68, 1481, 1470, 1469, 68, 1482, 1479, 1472, 68, 1473, 1484, 1483, 68, 1474, 68, 68, 1475, 1476, 68, 68, 1485, 1486, 68, 68, 1488, 1490, 1477, 1487, 1481, 1489, 1491, 1492, 68, 1479, 1493, 68, 68, 1484, 1483, 68, 1494, 1497, 68, 1498, 1627, 68, 1627, 68, 68, 1495, 1496, 1488, 68, 68, 1487, 1499, 1489, 1491, 1492, 68, 1500, 1493, 1501, 68, 1502, 1503, 1504, 1627, 68, 1506, 68, 68, 1505, 68, 1507, 1508, 1495, 1496, 1510, 1511, 1627, 1509, 1499, 1627, 68, 1512, 1514, 1500, 1513, 1501, 1627, 68, 68, 68, 68, 68, 68, 68, 1515, 1505, 68, 1507, 68, 68, 1521, 1510, 68, 68, 1509, 68, 68, 1519, 1512, 1514, 1518, 1513, 1516, 1517, 1523, 1522, 68, 1520, 1525, 1526, 1524, 1515, 68, 1527, 68, 1528, 1529, 68, 68, 68, 1627, 68, 68, 1535, 1519, 1532, 1530, 1518, 68, 1516, 1517, 68, 1522, 68, 1520, 68, 1526, 1524, 68, 1531, 1527, 1533, 68, 1529, 1536, 68, 1534, 68, 1537, 1538, 68, 1539, 1532, 1530, 68, 1540, 1541, 1542, 1544, 1627, 1627, 1545, 1543, 68, 68, 1627, 1531, 68, 1533, 68, 68, 68, 68, 1534, 1546, 68, 1538, 68, 1539, 68, 1547, 1548, 1549, 1541, 1542, 1544, 68, 68, 1545, 1543, 68, 1550, 1551, 1553, 1552, 68, 68, 68, 1554, 1555, 68, 1546, 1556, 68, 1559, 68, 1557, 1547, 1548, 1549, 1558, 1560, 68, 1564, 1561, 1565, 68, 68, 1550, 1551, 1553, 1552, 1562, 1566, 68, 68, 1555, 68, 68, 1556, 1563, 1559, 1568, 1557, 68, 1569, 68, 1558, 68, 1567, 68, 1561, 68, 1570, 68, 1574, 68, 1571, 68, 1562, 1566, 68, 1573, 68, 1572, 1575, 1576, 1563, 1577, 1568, 68, 68, 1569, 1582, 68, 1578, 1567, 68, 68, 1579, 1570, 1580, 1574, 1583, 1571, 1584, 1627, 68, 1581, 1573, 1585, 1572, 1575, 1576, 68, 1577, 68, 68, 68, 1586, 1587, 68, 1578, 68, 68, 68, 1579, 68, 1580, 1589, 68, 1588, 1584, 1590, 1591, 1581, 1592, 1585, 1593, 68, 1594, 1596, 68, 68, 68, 1597, 1586, 1595, 1599, 68, 1598, 68, 68, 1600, 1601, 68, 1589, 1602, 1588, 1603, 1590, 1591, 68, 1592, 1627, 1593, 68, 1594, 1596, 68, 68, 68, 1597, 68, 1595, 1599, 68, 1598, 1604, 68, 1600, 1601, 1605, 1607, 68, 1606, 1603, 1627, 1610, 1608, 68, 68, 1609, 1611, 1627, 1612, 68, 1615, 68, 1616, 1613, 68, 1618, 1619, 1627, 1604, 1627, 68, 68, 1605, 1607, 68, 1606, 1617, 68, 1610, 1608, 1614, 1620, 1609, 1611, 68, 1612, 68, 1615, 68, 68, 1613, 1621, 68, 68, 1622, 1625, 68, 1623, 1624, 1626, 1627, 68, 1627, 1617, 1627, 68, 68, 1614, 1620, 1627, 1627, 1627, 1627, 68, 1627, 1627, 68, 1627, 1621, 1627, 1627, 1622, 68, 1627, 1623, 1624, 68, 40, 40, 40, 40, 40, 40, 40, 45, 45, 45, 45, 45, 45, 45, 50, 50, 50, 50, 50, 50, 50, 56, 56, 56, 56, 56, 56, 56, 61, 61, 61, 61, 61, 61, 61, 71, 71, 1627, 71, 71, 71, 71, 123, 123, 1627, 1627, 1627, 123, 123, 125, 125, 1627, 1627, 125, 1627, 125, 127, 1627, 1627, 1627, 1627, 1627, 127, 130, 130, 1627, 1627, 1627, 130, 130, 132, 1627, 1627, 1627, 1627, 1627, 132, 134, 134, 1627, 134, 134, 134, 134, 72, 72, 1627, 72, 72, 72, 72, 13, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627 } ; static yyconst flex_int16_t yy_chk[4747] = { 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, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, 5, 24, 6, 7, 7, 7, 7, 1633, 7, 8, 8, 8, 8, 24, 8, 9, 9, 9, 10, 10, 10, 15, 44, 44, 49, 15, 3, 49, 24, 4, 60, 60, 5, 19, 6, 19, 19, 69, 19, 625, 7, 69, 39, 19, 39, 39, 8, 39, 23, 20, 20, 9, 39, 619, 10, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 20, 23, 27, 19, 23, 29, 20, 11, 23, 20, 20, 132, 21, 12, 27, 25, 619, 29, 130, 21, 124, 124, 28, 25, 129, 11, 21, 20, 23, 27, 126, 12, 29, 126, 11, 131, 131, 127, 21, 21, 12, 25, 25, 75, 28, 26, 21, 37, 26, 28, 25, 30, 37, 21, 22, 26, 32, 26, 22, 30, 37, 22, 32, 22, 22, 30, 75, 31, 26, 30, 75, 31, 26, 125, 37, 26, 22, 30, 30, 37, 205, 22, 26, 32, 26, 22, 30, 31, 22, 89, 22, 22, 30, 31, 31, 33, 30, 34, 31, 123, 36, 33, 36, 55, 33, 55, 55, 34, 55, 205, 34, 33, 89, 33, 31, 148, 89, 36, 63, 34, 63, 63, 33, 63, 34, 35, 36, 36, 33, 36, 65, 33, 38, 67, 34, 35, 38, 34, 33, 35, 35, 148, 148, 65, 36, 61, 66, 35, 66, 66, 56, 66, 35, 51, 76, 63, 74, 65, 38, 38, 77, 76, 35, 38, 82, 50, 35, 35, 68, 82, 68, 68, 71, 68, 71, 71, 78, 71, 68, 79, 74, 76, 71, 74, 77, 78, 80, 77, 81, 85, 83, 82, 79, 84, 45, 87, 88, 81, 83, 90, 86, 80, 85, 78, 87, 88, 79, 86, 40, 71, 84, 92, 91, 80, 92, 81, 85, 83, 93, 99, 185, 90, 87, 88, 84, 91, 90, 86, 92, 96, 95, 97, 94, 96, 97, 92, 14, 84, 92, 91, 94, 92, 99, 100, 102, 185, 99, 185, 98, 93, 95, 101, 95, 96, 103, 92, 96, 95, 97, 94, 96, 98, 104, 100, 102, 101, 113, 105, 103, 104, 100, 102, 108, 106, 109, 98, 107, 95, 101, 108, 107, 103, 106, 110, 111, 13, 0, 112, 109, 104, 105, 114, 111, 115, 105, 110, 112, 113, 107, 108, 106, 109, 119, 107, 117, 0, 114, 107, 116, 121, 110, 111, 120, 115, 112, 117, 118, 116, 114, 115, 115, 122, 118, 119, 121, 0, 0, 119, 0, 119, 122, 117, 138, 136, 120, 116, 121, 137, 0, 120, 115, 145, 128, 118, 128, 128, 0, 128, 122, 133, 119, 133, 133, 134, 133, 134, 134, 136, 134, 137, 136, 139, 140, 138, 137, 141, 143, 142, 149, 144, 0, 143, 145, 139, 142, 0, 149, 141, 146, 0, 150, 140, 151, 153, 157, 152, 151, 154, 139, 140, 134, 144, 141, 157, 142, 149, 144, 143, 143, 146, 154, 155, 150, 162, 0, 153, 146, 150, 152, 151, 153, 157, 152, 155, 154, 156, 0, 0, 156, 158, 0, 159, 160, 0, 161, 165, 146, 147, 155, 160, 156, 163, 147, 167, 162, 161, 168, 147, 170, 167, 0, 158, 156, 147, 147, 156, 158, 159, 159, 160, 147, 161, 164, 169, 147, 166, 165, 163, 163, 147, 167, 171, 164, 173, 147, 0, 172, 168, 0, 170, 147, 147, 174, 166, 175, 169, 176, 177, 180, 174, 169, 176, 166, 164, 173, 178, 172, 179, 183, 164, 173, 184, 171, 172, 179, 175, 177, 178, 184, 174, 180, 175, 181, 176, 177, 180, 186, 181, 182, 182, 187, 190, 178, 188, 179, 189, 192, 182, 184, 183, 0, 188, 191, 198, 194, 200, 186, 0, 197, 181, 189, 193, 0, 186, 200, 182, 182, 190, 190, 194, 188, 187, 189, 196, 191, 198, 195, 192, 193, 199, 198, 194, 200, 191, 195, 201, 193, 203, 193, 197, 204, 199, 196, 202, 210, 202, 206, 213, 207, 208, 196, 191, 214, 195, 201, 193, 199, 209, 211, 212, 208, 203, 201, 215, 203, 214, 204, 204, 210, 209, 202, 210, 206, 206, 207, 207, 208, 212, 213, 214, 216, 211, 217, 219, 209, 211, 212, 218, 224, 215, 215, 220, 219, 222, 218, 221, 223, 220, 226, 230, 227, 225, 216, 0, 0, 223, 228, 216, 235, 221, 219, 224, 0, 217, 218, 224, 225, 230, 220, 222, 222, 228, 221, 223, 227, 232, 230, 227, 225, 226, 231, 229, 233, 228, 229, 235, 231, 234, 234, 232, 237, 229, 236, 237, 238, 239, 240, 233, 245, 0, 237, 242, 232, 241, 252, 0, 238, 231, 229, 233, 247, 229, 234, 239, 234, 234, 236, 237, 253, 236, 237, 238, 239, 240, 243, 241, 244, 242, 242, 245, 241, 246, 247, 244, 249, 252, 243, 247, 246, 248, 253, 248, 251, 250, 254, 253, 250, 249, 250, 255, 254, 243, 256, 244, 250, 0, 255, 267, 246, 257, 251, 249, 0, 248, 256, 258, 248, 259, 248, 251, 250, 254, 257, 250, 264, 250, 255, 262, 261, 256, 259, 258, 264, 0, 265, 263, 257, 269, 267, 258, 261, 263, 258, 266, 259, 262, 265, 271, 350, 269, 266, 264, 0, 270, 262, 261, 268, 274, 258, 260, 260, 265, 263, 268, 269, 270, 273, 272, 276, 260, 266, 260, 260, 260, 272, 350, 260, 0, 271, 273, 270, 275, 278, 268, 260, 0, 260, 260, 274, 278, 276, 283, 275, 273, 272, 276, 260, 281, 260, 260, 260, 277, 277, 260, 279, 280, 285, 286, 275, 278, 281, 282, 284, 0, 283, 279, 280, 287, 283, 285, 286, 284, 0, 288, 281, 286, 289, 291, 290, 293, 277, 279, 280, 285, 286, 287, 282, 294, 282, 284, 292, 297, 296, 295, 287, 288, 290, 286, 298, 289, 288, 318, 293, 289, 298, 290, 293, 295, 291, 294, 299, 292, 300, 301, 294, 302, 303, 292, 296, 296, 295, 305, 297, 304, 308, 298, 307, 300, 299, 304, 308, 310, 318, 315, 0, 309, 301, 299, 303, 300, 301, 302, 302, 303, 311, 316, 315, 305, 305, 310, 304, 308, 307, 307, 309, 317, 313, 314, 310, 311, 315, 319, 309, 313, 314, 323, 322, 316, 320, 321, 319, 311, 316, 320, 317, 321, 324, 323, 326, 325, 0, 0, 317, 313, 314, 0, 326, 0, 319, 322, 325, 329, 323, 322, 328, 320, 321, 0, 324, 330, 331, 328, 329, 324, 332, 326, 325, 327, 330, 0, 333, 332, 327, 334, 327, 334, 335, 336, 329, 0, 339, 328, 327, 337, 331, 346, 341, 331, 339, 336, 330, 332, 327, 327, 327, 330, 333, 333, 337, 327, 334, 327, 335, 335, 336, 338, 340, 339, 341, 327, 337, 340, 342, 341, 343, 344, 346, 338, 359, 327, 345, 347, 343, 349, 357, 348, 354, 344, 357, 351, 342, 352, 338, 340, 348, 353, 347, 349, 354, 342, 355, 343, 344, 345, 351, 359, 352, 345, 347, 358, 349, 360, 348, 354, 356, 357, 351, 356, 352, 353, 361, 362, 353, 358, 355, 356, 363, 355, 364, 365, 366, 367, 368, 0, 372, 365, 358, 369, 360, 370, 371, 356, 374, 0, 356, 376, 373, 371, 362, 378, 0, 361, 366, 363, 367, 374, 365, 366, 367, 364, 369, 370, 380, 368, 369, 372, 370, 371, 373, 374, 375, 376, 376, 373, 377, 375, 381, 379, 382, 375, 378, 385, 383, 377, 387, 384, 380, 0, 0, 380, 398, 391, 385, 388, 375, 379, 383, 375, 381, 381, 382, 377, 375, 381, 379, 382, 375, 384, 385, 383, 389, 386, 384, 391, 388, 387, 390, 393, 391, 392, 388, 398, 0, 394, 395, 381, 386, 396, 392, 397, 393, 0, 400, 397, 389, 399, 0, 389, 386, 402, 390, 0, 404, 390, 393, 394, 392, 400, 395, 396, 394, 395, 414, 399, 396, 403, 400, 401, 409, 400, 397, 401, 399, 403, 402, 407, 402, 404, 405, 404, 406, 408, 410, 407, 400, 411, 0, 405, 408, 406, 412, 409, 403, 414, 413, 409, 415, 411, 401, 412, 410, 416, 407, 417, 415, 405, 413, 406, 408, 410, 419, 420, 411, 418, 423, 0, 421, 412, 0, 422, 424, 413, 420, 415, 421, 425, 417, 416, 416, 418, 417, 426, 419, 422, 423, 427, 429, 419, 420, 428, 418, 423, 424, 421, 433, 425, 422, 424, 428, 430, 432, 431, 425, 426, 435, 0, 429, 427, 426, 434, 435, 436, 427, 429, 431, 440, 428, 430, 433, 436, 438, 433, 432, 454, 456, 439, 430, 432, 431, 0, 440, 435, 434, 447, 441, 442, 434, 436, 436, 444, 443, 444, 440, 441, 454, 447, 436, 450, 439, 443, 454, 438, 439, 453, 442, 456, 455, 450, 0, 458, 447, 441, 442, 0, 459, 461, 444, 443, 445, 462, 0, 453, 445, 459, 450, 445, 460, 463, 460, 455, 453, 458, 445, 455, 464, 445, 458, 0, 0, 461, 445, 459, 461, 465, 468, 445, 462, 463, 466, 445, 471, 469, 445, 460, 463, 465, 470, 467, 469, 445, 464, 464, 445, 457, 470, 457, 468, 472, 457, 471, 465, 468, 476, 457, 466, 466, 475, 471, 469, 457, 457, 467, 474, 470, 467, 473, 477, 478, 457, 479, 457, 474, 457, 472, 472, 457, 481, 473, 475, 476, 457, 480, 482, 475, 484, 483, 457, 457, 486, 474, 485, 488, 473, 479, 483, 481, 479, 477, 478, 487, 491, 482, 480, 481, 493, 489, 484, 492, 480, 482, 485, 484, 483, 489, 498, 486, 494, 485, 487, 497, 492, 495, 488, 512, 491, 497, 487, 491, 494, 495, 493, 493, 489, 499, 492, 500, 498, 503, 504, 499, 502, 498, 500, 494, 501, 495, 497, 502, 495, 501, 505, 507, 509, 0, 512, 503, 495, 508, 506, 505, 499, 504, 500, 511, 503, 504, 506, 502, 510, 507, 508, 501, 513, 509, 514, 510, 511, 505, 507, 509, 515, 516, 517, 518, 508, 506, 519, 520, 515, 518, 511, 524, 521, 522, 526, 510, 516, 514, 525, 527, 523, 514, 522, 513, 517, 525, 529, 515, 516, 517, 518, 528, 519, 519, 523, 538, 521, 532, 520, 521, 522, 526, 524, 528, 530, 525, 527, 523, 531, 529, 532, 531, 530, 529, 534, 0, 535, 538, 528, 536, 537, 536, 538, 0, 532, 541, 539, 0, 535, 559, 0, 530, 537, 0, 0, 531, 533, 534, 533, 539, 0, 534, 533, 535, 533, 540, 536, 537, 541, 533, 542, 543, 541, 539, 533, 545, 559, 544, 540, 549, 533, 543, 542, 533, 546, 533, 548, 547, 545, 533, 546, 533, 540, 543, 551, 562, 533, 542, 543, 544, 547, 533, 545, 554, 544, 552, 555, 548, 543, 553, 549, 546, 550, 548, 547, 556, 551, 550, 552, 550, 560, 551, 557, 558, 553, 0, 562, 563, 555, 554, 554, 558, 552, 555, 556, 557, 553, 550, 550, 550, 564, 565, 556, 560, 550, 567, 550, 560, 564, 557, 558, 563, 566, 567, 563, 565, 570, 568, 569, 573, 572, 574, 571, 576, 550, 0, 569, 564, 565, 571, 583, 576, 567, 572, 566, 568, 578, 573, 570, 566, 579, 582, 577, 570, 568, 569, 573, 572, 578, 571, 576, 577, 574, 580, 581, 584, 583, 583, 587, 582, 586, 587, 579, 578, 586, 588, 589, 579, 582, 577, 590, 591, 593, 592, 594, 580, 581, 590, 589, 592, 580, 581, 595, 597, 587, 587, 584, 598, 587, 588, 599, 586, 588, 589, 593, 591, 594, 590, 591, 593, 592, 594, 596, 595, 597, 604, 600, 601, 599, 595, 597, 602, 604, 596, 598, 600, 603, 599, 606, 607, 602, 605, 611, 609, 603, 612, 610, 608, 613, 596, 615, 601, 604, 600, 601, 605, 608, 611, 602, 614, 606, 607, 610, 603, 616, 606, 607, 609, 605, 611, 609, 614, 616, 610, 608, 617, 612, 615, 618, 613, 620, 621, 622, 623, 626, 623, 614, 628, 617, 620, 622, 616, 627, 618, 628, 629, 630, 626, 631, 621, 0, 0, 617, 632, 627, 618, 635, 620, 621, 622, 623, 626, 634, 636, 628, 633, 632, 637, 635, 627, 631, 636, 639, 638, 641, 631, 629, 630, 633, 637, 632, 638, 640, 635, 634, 643, 642, 645, 644, 634, 636, 640, 633, 642, 637, 641, 647, 648, 0, 639, 638, 641, 0, 646, 649, 650, 648, 645, 655, 640, 644, 643, 643, 642, 645, 644, 646, 651, 652, 654, 647, 653, 649, 647, 648, 651, 655, 650, 658, 653, 646, 649, 650, 659, 0, 655, 662, 656, 657, 663, 652, 659, 654, 658, 651, 652, 654, 660, 653, 656, 657, 663, 661, 660, 665, 658, 667, 662, 668, 669, 659, 661, 664, 662, 656, 657, 663, 676, 670, 664, 671, 668, 665, 672, 660, 670, 673, 672, 669, 661, 674, 665, 675, 678, 673, 668, 669, 667, 677, 664, 679, 682, 671, 680, 674, 670, 685, 671, 676, 686, 675, 687, 684, 673, 672, 678, 681, 674, 683, 675, 678, 684, 679, 682, 677, 677, 688, 679, 682, 680, 680, 683, 0, 687, 681, 690, 0, 685, 687, 684, 686, 689, 692, 681, 693, 683, 689, 695, 689, 688, 689, 690, 694, 688, 698, 696, 693, 697, 701, 689, 695, 694, 690, 696, 700, 692, 700, 698, 689, 692, 703, 693, 705, 689, 695, 689, 697, 689, 699, 694, 702, 698, 696, 708, 697, 701, 706, 699, 709, 710, 707, 700, 702, 712, 713, 709, 705, 703, 707, 705, 711, 713, 714, 716, 715, 699, 717, 702, 706, 718, 708, 722, 723, 706, 719, 709, 710, 707, 718, 720, 712, 713, 711, 715, 714, 716, 724, 711, 725, 714, 716, 715, 717, 717, 726, 719, 718, 727, 728, 720, 729, 719, 722, 723, 730, 727, 720, 732, 724, 735, 733, 730, 726, 724, 728, 734, 731, 733, 735, 725, 731, 726, 734, 736, 727, 728, 737, 729, 738, 740, 738, 730, 739, 737, 748, 741, 735, 733, 732, 741, 745, 739, 734, 731, 742, 746, 749, 748, 744, 736, 736, 740, 744, 737, 751, 738, 740, 747, 745, 739, 750, 748, 741, 0, 746, 752, 742, 745, 753, 753, 751, 742, 746, 752, 755, 758, 754, 749, 762, 744, 756, 751, 747, 750, 747, 754, 757, 750, 759, 756, 762, 760, 752, 757, 764, 753, 755, 759, 758, 760, 763, 755, 758, 754, 761, 762, 765, 756, 763, 773, 766, 767, 768, 757, 770, 759, 764, 761, 760, 771, 767, 764, 769, 772, 774, 771, 765, 763, 0, 777, 768, 761, 766, 765, 769, 770, 775, 766, 767, 768, 773, 770, 778, 780, 779, 772, 771, 782, 781, 769, 772, 780, 781, 783, 787, 774, 777, 779, 784, 785, 785, 783, 775, 775, 778, 786, 784, 788, 789, 778, 780, 779, 794, 786, 782, 787, 789, 795, 794, 781, 783, 787, 790, 791, 793, 784, 785, 796, 792, 795, 790, 791, 786, 799, 797, 789, 792, 793, 788, 794, 798, 800, 802, 803, 795, 801, 806, 799, 804, 790, 791, 793, 801, 796, 796, 792, 797, 805, 810, 800, 799, 797, 811, 798, 805, 803, 812, 798, 800, 802, 803, 804, 801, 808, 814, 804, 816, 806, 818, 820, 810, 819, 808, 822, 805, 810, 824, 823, 811, 811, 821, 820, 821, 825, 0, 827, 822, 812, 824, 829, 808, 814, 818, 816, 826, 818, 820, 819, 819, 823, 822, 826, 830, 824, 823, 829, 831, 821, 828, 832, 825, 827, 827, 828, 831, 834, 829, 835, 842, 836, 837, 826, 844, 840, 834, 830, 0, 837, 846, 830, 835, 832, 838, 831, 839, 828, 832, 849, 841, 838, 849, 839, 834, 845, 835, 836, 836, 837, 840, 842, 840, 843, 847, 844, 850, 846, 845, 851, 843, 838, 841, 839, 852, 854, 849, 841, 855, 0, 853, 852, 845, 853, 851, 847, 857, 858, 860, 858, 843, 847, 850, 850, 856, 853, 851, 0, 861, 859, 855, 852, 862, 868, 853, 855, 854, 853, 857, 863, 853, 862, 856, 857, 858, 865, 867, 863, 869, 860, 864, 856, 853, 859, 861, 861, 859, 864, 866, 862, 868, 887, 866, 874, 871, 870, 863, 865, 867, 872, 869, 871, 865, 867, 870, 869, 872, 864, 874, 876, 873, 875, 877, 0, 882, 866, 881, 878, 887, 877, 874, 871, 870, 873, 878, 875, 872, 879, 881, 883, 889, 884, 883, 879, 882, 890, 888, 873, 875, 877, 876, 882, 884, 881, 878, 892, 890, 883, 891, 894, 895, 896, 889, 892, 879, 898, 883, 889, 884, 883, 888, 893, 890, 888, 893, 899, 891, 894, 903, 898, 897, 900, 892, 907, 899, 891, 894, 897, 896, 893, 902, 895, 898, 901, 900, 901, 0, 905, 893, 902, 904, 893, 899, 908, 903, 903, 905, 897, 900, 909, 910, 904, 908, 912, 907, 911, 0, 902, 913, 914, 901, 918, 911, 921, 905, 914, 920, 904, 917, 919, 908, 910, 913, 0, 920, 918, 926, 910, 919, 922, 909, 933, 911, 914, 912, 913, 914, 917, 918, 923, 922, 927, 914, 920, 921, 917, 919, 925, 923, 926, 928, 929, 930, 926, 925, 931, 922, 932, 933, 931, 937, 935, 934, 927, 0, 936, 923, 941, 927, 932, 930, 938, 928, 929, 925, 934, 935, 928, 929, 930, 936, 939, 931, 940, 932, 942, 938, 943, 935, 934, 939, 937, 936, 945, 941, 946, 948, 0, 938, 949, 947, 950, 952, 0, 940, 956, 954, 951, 939, 942, 940, 945, 942, 954, 943, 947, 950, 949, 948, 951, 945, 961, 946, 948, 952, 953, 949, 947, 950, 952, 955, 957, 956, 954, 951, 0, 959, 963, 953, 958, 960, 964, 955, 953, 959, 958, 962, 960, 961, 965, 966, 968, 953, 962, 970, 0, 971, 955, 971, 972, 969, 974, 957, 959, 963, 953, 958, 960, 964, 969, 973, 976, 977, 962, 966, 979, 0, 966, 976, 977, 965, 979, 968, 971, 978, 970, 972, 969, 975, 975, 975, 978, 974, 980, 986, 975, 973, 973, 976, 977, 981, 981, 979, 975, 982, 983, 985, 987, 988, 0, 996, 978, 983, 990, 990, 975, 975, 975, 989, 987, 980, 986, 975, 991, 985, 992, 992, 981, 988, 995, 982, 982, 983, 985, 987, 988, 989, 993, 998, 997, 990, 996, 999, 1001, 0, 989, 997, 1002, 993, 991, 991, 995, 992, 1000, 1002, 1003, 995, 1006, 998, 1005, 1004, 1001, 1008, 1007, 993, 998, 997, 1003, 1004, 999, 1001, 1005, 1009, 1010, 1002, 1000, 1013, 1009, 1006, 1011, 1000, 1007, 1003, 1012, 1006, 1011, 1005, 1004, 1009, 1008, 1007, 1014, 1016, 1015, 1017, 1017, 1012, 1015, 1018, 1009, 1010, 1019, 1020, 1021, 1009, 0, 1011, 1013, 1030, 1023, 1012, 1023, 1022, 1018, 1024, 1025, 1026, 1020, 1014, 1027, 1025, 1017, 1031, 1016, 1015, 1018, 1021, 1022, 1029, 1020, 1021, 1033, 1019, 1032, 1027, 1030, 1023, 1042, 1034, 1022, 1037, 1039, 1025, 1035, 1043, 1024, 1027, 1026, 1041, 1031, 1047, 1043, 1029, 1033, 1032, 1029, 1039, 1049, 1033, 1034, 1032, 1035, 1037, 1041, 1042, 1034, 1044, 1037, 1039, 1045, 1035, 1043, 1046, 1047, 1050, 1041, 1048, 1047, 1045, 1052, 1046, 1057, 1053, 1061, 1044, 1062, 1054, 1050, 1049, 1055, 1052, 1053, 1063, 1044, 1065, 1062, 1045, 1060, 1048, 1046, 1064, 1050, 1067, 1048, 1054, 1052, 1052, 1055, 1057, 1053, 1060, 1069, 1062, 1054, 1061, 1070, 1055, 1052, 1063, 1063, 1071, 1065, 1067, 1068, 1060, 1064, 1071, 1064, 1072, 1067, 1068, 1073, 1075, 1070, 1074, 1078, 1080, 1069, 1069, 1079, 1083, 1076, 1070, 1072, 1075, 1080, 1073, 1071, 1076, 1074, 1068, 1081, 1084, 1083, 1086, 1072, 1090, 1078, 1073, 1075, 1087, 1074, 1078, 1080, 1079, 1090, 1079, 1083, 1076, 1081, 1085, 1085, 1088, 1089, 1092, 1091, 1086, 1096, 1081, 1084, 1095, 1086, 1091, 1090, 1093, 1087, 1097, 1087, 1095, 0, 1096, 1101, 1100, 1098, 1088, 1089, 1108, 1085, 1099, 1088, 1089, 1099, 1091, 1108, 1096, 1092, 1093, 1095, 1098, 1101, 1104, 1093, 1102, 1097, 1105, 1107, 1099, 1100, 1101, 1100, 1098, 0, 1109, 1108, 1111, 1099, 1113, 1102, 1099, 1107, 1116, 1114, 1104, 1109, 1117, 0, 1105, 1104, 1115, 1102, 1115, 1105, 1107, 1114, 1118, 1111, 1119, 1113, 1116, 1109, 0, 1111, 1120, 1113, 1121, 1123, 1122, 1116, 1114, 1124, 1120, 1117, 1118, 1129, 1134, 1115, 1125, 0, 1130, 1123, 1128, 1118, 1131, 1119, 1133, 1132, 1138, 1121, 1122, 1120, 1138, 1121, 1123, 1122, 1132, 1125, 1124, 1131, 1128, 1137, 1129, 1134, 1139, 1125, 1130, 1130, 1133, 1128, 1136, 1131, 1136, 1133, 1132, 1138, 1139, 1140, 1141, 1142, 1143, 0, 1145, 1137, 0, 1144, 1156, 1141, 1137, 1146, 1142, 1139, 1147, 1147, 1145, 1148, 0, 1136, 1150, 1140, 1153, 1150, 1151, 1148, 1140, 1141, 1142, 1143, 1144, 1145, 1151, 1146, 1144, 1156, 1152, 1153, 1146, 1154, 1157, 1147, 1152, 1158, 1148, 1154, 1159, 1150, 1160, 1153, 1161, 1151, 1162, 1163, 1164, 1165, 1166, 1158, 1168, 1159, 1169, 1167, 1160, 1152, 1157, 1173, 1154, 1157, 1164, 1167, 1158, 1172, 1175, 1159, 1177, 1160, 1161, 1161, 1170, 1162, 1163, 1164, 1165, 1166, 1178, 1168, 1170, 1169, 1167, 1174, 1180, 1176, 1173, 1172, 1179, 1177, 1181, 1174, 1172, 1175, 1176, 1177, 1182, 1184, 1181, 1170, 1185, 1185, 1178, 1179, 1187, 1178, 1186, 1189, 0, 0, 1174, 1180, 1176, 1188, 1179, 1179, 1190, 1181, 1190, 1192, 1193, 1191, 1187, 1182, 1184, 1192, 1194, 1185, 1188, 1189, 1179, 1187, 1186, 1186, 1189, 1191, 1195, 1196, 1194, 1197, 1188, 1198, 1193, 1190, 1199, 0, 1192, 1193, 1191, 1201, 1203, 1205, 1197, 1194, 1195, 1196, 1201, 1204, 1208, 1209, 0, 1206, 0, 1195, 1196, 1211, 1197, 1199, 1203, 1206, 1208, 1199, 1198, 1212, 1209, 1214, 1201, 1203, 1216, 0, 1217, 1224, 1205, 1204, 1204, 1208, 1209, 1206, 1206, 1211, 1213, 1219, 1211, 1217, 1218, 1212, 1206, 1213, 1220, 1225, 1212, 1221, 1214, 1222, 1224, 1216, 1219, 1217, 1224, 1221, 1226, 1220, 1227, 1229, 1232, 1228, 1231, 1213, 1219, 1236, 1218, 1218, 1228, 1225, 1230, 1220, 1225, 1233, 1221, 1222, 1222, 1230, 1237, 1235, 1227, 1242, 1229, 1226, 1231, 1227, 1229, 1236, 1228, 1231, 1235, 1232, 1236, 1238, 1233, 1245, 1239, 1230, 1249, 1251, 1233, 1253, 1248, 0, 1254, 0, 1235, 1242, 1242, 1237, 1256, 1257, 1238, 1259, 1262, 1256, 1255, 1263, 1266, 1267, 1238, 1239, 1245, 1239, 1248, 1249, 1251, 1255, 1265, 1248, 1254, 1254, 1253, 1257, 1264, 1268, 1262, 1256, 1257, 1269, 1259, 1262, 1263, 1255, 1263, 1266, 1267, 1264, 1270, 1271, 1265, 1274, 1272, 1273, 1269, 1265, 1275, 1270, 1276, 1277, 1280, 1264, 1268, 1275, 1271, 1279, 1269, 1272, 1273, 1278, 1278, 1284, 1279, 1274, 1280, 1270, 1271, 1277, 1274, 1272, 1273, 1281, 1282, 1275, 1281, 1276, 1277, 1280, 1283, 1285, 1286, 1287, 1279, 1284, 1290, 1282, 1278, 1283, 1284, 1292, 1293, 1290, 1294, 1291, 1292, 1296, 1295, 1293, 1281, 1282, 1297, 1285, 1291, 1295, 1296, 1283, 1285, 1286, 1287, 1299, 1294, 1290, 1300, 1301, 0, 1302, 1292, 1293, 1304, 1294, 1291, 1306, 1296, 1295, 1302, 1301, 1297, 1297, 1303, 1304, 1300, 1307, 1309, 1305, 1308, 0, 1299, 1303, 1310, 1300, 1301, 1305, 1302, 1308, 1309, 1304, 1310, 1311, 1306, 1313, 0, 1316, 1318, 1317, 1311, 1303, 1319, 1313, 1316, 1309, 1305, 1308, 1307, 1320, 1322, 1310, 1324, 1323, 1319, 1325, 0, 1329, 1320, 0, 1311, 1323, 1313, 1317, 1316, 1318, 1317, 1330, 1331, 1319, 1332, 1333, 1330, 1334, 1338, 1337, 1320, 1322, 1340, 1324, 1323, 1334, 1325, 1329, 1329, 1335, 1331, 1337, 1339, 1341, 1340, 1342, 1332, 1333, 1330, 1331, 1338, 1332, 1333, 1343, 1334, 1338, 1337, 0, 1335, 1340, 1344, 1345, 1348, 1349, 1339, 1351, 1335, 1350, 1352, 1339, 1341, 0, 1342, 0, 1357, 1354, 1355, 1353, 0, 0, 1352, 1361, 1359, 1351, 1343, 1358, 1349, 1344, 1345, 1350, 1349, 1355, 1351, 1348, 1350, 1352, 1353, 1354, 1357, 1358, 1359, 1357, 1354, 1355, 1353, 1360, 1362, 1361, 1361, 1359, 1364, 1366, 1358, 1365, 1367, 1369, 1368, 1370, 1364, 1366, 1365, 1373, 1376, 1360, 1362, 1371, 0, 1380, 1379, 1382, 1383, 1374, 1360, 1362, 1368, 1379, 1370, 1364, 1366, 1373, 1365, 1367, 1369, 1368, 1370, 1374, 1381, 1371, 1373, 1376, 1384, 1385, 1371, 1380, 1380, 1379, 1382, 1383, 1374, 1386, 1385, 1387, 1388, 1392, 1389, 0, 1395, 1395, 1398, 0, 1381, 1397, 1386, 1381, 1396, 1398, 1395, 1384, 1385, 1400, 1397, 1402, 1406, 0, 1392, 0, 1386, 1389, 1404, 1388, 1392, 1389, 1387, 1395, 1395, 1398, 1396, 1399, 1397, 1401, 1402, 1396, 1405, 1403, 1406, 1407, 1400, 1401, 1402, 1406, 1399, 1403, 1407, 1405, 1404, 1404, 1408, 1408, 1409, 0, 1410, 1411, 1413, 1416, 1399, 1415, 1401, 1410, 1411, 1405, 1403, 1417, 1407, 1418, 1415, 1420, 1409, 1422, 1428, 1422, 1421, 1426, 1435, 1408, 1427, 1409, 1413, 1410, 1411, 1413, 1416, 1418, 1415, 1420, 1417, 1421, 1428, 1430, 1417, 1431, 1418, 1433, 1420, 1426, 1422, 1428, 1432, 1421, 1426, 1434, 1427, 1427, 1432, 1435, 1436, 1437, 1436, 1431, 1434, 1430, 1440, 1439, 1441, 1433, 1430, 1442, 1431, 1443, 1433, 1439, 0, 1444, 1440, 1432, 1445, 1446, 1434, 1448, 1443, 1444, 1450, 1436, 1437, 1442, 1447, 1447, 1451, 1440, 1439, 1441, 1453, 1449, 1442, 1445, 1443, 1455, 1454, 1446, 1444, 1449, 1455, 1445, 1446, 1454, 1448, 1456, 1457, 1450, 1451, 1459, 1461, 1447, 1458, 1451, 1460, 1462, 1463, 1453, 1449, 1464, 1458, 1460, 1455, 1454, 1459, 1465, 1467, 1464, 1469, 0, 1462, 0, 1456, 1457, 1466, 1466, 1459, 1461, 1463, 1458, 1470, 1460, 1462, 1463, 1466, 1472, 1464, 1473, 1470, 1474, 1475, 1476, 0, 1467, 1479, 1469, 1465, 1477, 1472, 1481, 1483, 1466, 1466, 1487, 1488, 0, 1484, 1470, 0, 1473, 1489, 1492, 1472, 1491, 1473, 0, 1474, 1475, 1476, 1477, 1492, 1479, 1487, 1493, 1477, 1481, 1481, 1483, 1484, 1500, 1487, 1488, 1489, 1484, 1493, 1491, 1496, 1489, 1492, 1495, 1491, 1494, 1494, 1505, 1501, 1495, 1499, 1509, 1510, 1507, 1493, 1494, 1512, 1499, 1513, 1514, 1500, 1514, 1496, 0, 1510, 1512, 1520, 1496, 1517, 1515, 1495, 1501, 1494, 1494, 1505, 1501, 1507, 1499, 1509, 1510, 1507, 1515, 1516, 1512, 1518, 1513, 1514, 1522, 1516, 1519, 1517, 1524, 1526, 1520, 1527, 1517, 1515, 1519, 1529, 1530, 1531, 1533, 0, 0, 1534, 1532, 1518, 1526, 0, 1516, 1533, 1518, 1530, 1532, 1522, 1534, 1519, 1538, 1524, 1526, 1527, 1527, 1531, 1539, 1540, 1541, 1530, 1531, 1533, 1529, 1539, 1534, 1532, 1541, 1542, 1543, 1545, 1544, 1540, 1544, 1538, 1546, 1547, 1542, 1538, 1548, 1543, 1551, 1545, 1549, 1539, 1540, 1541, 1550, 1552, 1550, 1557, 1553, 1558, 1551, 1547, 1542, 1543, 1545, 1544, 1555, 1559, 1548, 1546, 1547, 1553, 1549, 1548, 1556, 1551, 1561, 1549, 1555, 1562, 1559, 1550, 1556, 1560, 1561, 1553, 1552, 1563, 1557, 1567, 1558, 1564, 1562, 1555, 1559, 1563, 1566, 1560, 1565, 1568, 1569, 1556, 1570, 1561, 1566, 1564, 1562, 1575, 1569, 1571, 1560, 1567, 1565, 1572, 1563, 1573, 1567, 1576, 1564, 1577, 0, 1568, 1574, 1566, 1578, 1565, 1568, 1569, 1570, 1570, 1574, 1571, 1578, 1579, 1580, 1572, 1571, 1573, 1575, 1577, 1572, 1579, 1573, 1582, 1576, 1581, 1577, 1584, 1585, 1574, 1586, 1578, 1587, 1581, 1588, 1590, 1585, 1582, 1586, 1591, 1579, 1589, 1593, 1590, 1592, 1580, 1587, 1594, 1595, 1584, 1582, 1596, 1581, 1597, 1584, 1585, 1595, 1586, 0, 1587, 1588, 1588, 1590, 1589, 1593, 1591, 1591, 1594, 1589, 1593, 1592, 1592, 1598, 1597, 1594, 1595, 1599, 1601, 1596, 1600, 1597, 0, 1605, 1603, 1599, 1601, 1604, 1606, 0, 1607, 1605, 1610, 1598, 1611, 1608, 1606, 1613, 1614, 0, 1598, 0, 1600, 1608, 1599, 1601, 1603, 1600, 1612, 1604, 1605, 1603, 1609, 1615, 1604, 1606, 1607, 1607, 1610, 1610, 1609, 1611, 1608, 1617, 1613, 1614, 1620, 1623, 1612, 1621, 1622, 1624, 0, 1615, 0, 1612, 0, 1621, 1622, 1609, 1615, 0, 0, 0, 0, 1617, 0, 0, 1620, 0, 1617, 0, 0, 1620, 1623, 0, 1621, 1622, 1624, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1634, 1634, 0, 1634, 1634, 1634, 1634, 1635, 1635, 0, 0, 0, 1635, 1635, 1636, 1636, 0, 0, 1636, 0, 1636, 1637, 0, 0, 0, 0, 0, 1637, 1638, 1638, 0, 0, 0, 1638, 1638, 1639, 0, 0, 0, 0, 0, 1639, 1640, 1640, 0, 1640, 1640, 1640, 1640, 1641, 1641, 0, 1641, 1641, 1641, 1641, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627 } ; 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. * */ #include #include #include #ifdef HAVE_GLOB_H # include #endif #include "util/config_file.h" #include "util/configparser.h" void ub_c_error(const char *message); #if 0 #define LEXOUT(s) printf s /* used ONLY when debugging */ #else #define LEXOUT(s) #endif /** avoid warning in about fwrite return value */ #define ECHO ub_c_error_msg("syntax error at text: %s", yytext) /** A parser variable, this is a statement in the config file which is * of the form variable: value1 value2 ... nargs is the number of values. */ #define YDVAR(nargs, var) \ num_args=(nargs); \ LEXOUT(("v(%s%d) ", yytext, num_args)); \ if(num_args > 0) { BEGIN(val); } \ return (var); struct inc_state { char* filename; int line; YY_BUFFER_STATE buffer; struct inc_state* next; }; static struct inc_state* config_include_stack = NULL; static int inc_depth = 0; static int inc_prev = 0; static int num_args = 0; void init_cfg_parse(void) { config_include_stack = NULL; inc_depth = 0; inc_prev = 0; num_args = 0; } static void config_start_include(const char* filename) { FILE *input; struct inc_state* s; char* nm; if(inc_depth++ > 100000) { ub_c_error_msg("too many include files"); return; } if(strlen(filename) == 0) { ub_c_error_msg("empty include file name"); return; } s = (struct inc_state*)malloc(sizeof(*s)); if(!s) { ub_c_error_msg("include %s: malloc failure", filename); return; } if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } nm = strdup(filename); if(!nm) { ub_c_error_msg("include %s: strdup failure", filename); free(s); return; } input = fopen(filename, "r"); if(!input) { ub_c_error_msg("cannot open include file '%s': %s", filename, strerror(errno)); free(s); free(nm); return; } LEXOUT(("switch_to_include_file(%s)\n", filename)); s->filename = cfg_parser->filename; s->line = cfg_parser->line; s->buffer = YY_CURRENT_BUFFER; s->next = config_include_stack; config_include_stack = s; cfg_parser->filename = nm; cfg_parser->line = 1; yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE)); } static void config_start_include_glob(const char* filename) { /* check for wildcards */ #ifdef HAVE_GLOB glob_t g; size_t i; int r, flags; if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') && !strchr(filename, '{') && !strchr(filename, '~'))) { flags = 0 #ifdef GLOB_ERR | GLOB_ERR #endif #ifdef GLOB_NOSORT | GLOB_NOSORT #endif #ifdef GLOB_BRACE | GLOB_BRACE #endif #ifdef GLOB_TILDE | GLOB_TILDE #endif ; memset(&g, 0, sizeof(g)); r = glob(filename, flags, NULL, &g); if(r) { /* some error */ globfree(&g); if(r == GLOB_NOMATCH) return; /* no matches for pattern */ config_start_include(filename); /* let original deal with it */ return; } /* process files found, if any */ for(i=0; i<(size_t)g.gl_pathc; i++) { config_start_include(g.gl_pathv[i]); } globfree(&g); return; } #endif /* HAVE_GLOB */ config_start_include(filename); } static void config_end_include(void) { struct inc_state* s = config_include_stack; --inc_depth; if(!s) return; free(cfg_parser->filename); cfg_parser->filename = s->filename; cfg_parser->line = s->line; yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(s->buffer); config_include_stack = s->next; free(s); } #ifndef yy_set_bol /* compat definition, for flex 2.4.6 */ #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer(yyin,YY_BUF_SIZE ); \ yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \ } #endif #define YY_NO_INPUT 1 #line 177 "util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 2220 "" #define INITIAL 0 #define quotedstring 1 #define singlequotedstr 2 #define include 3 #define include_quoted 4 #define val 5 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals (void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy (void ); int yyget_debug (void ); void yyset_debug (int debug_flag ); YY_EXTRA_TYPE yyget_extra (void ); void yyset_extra (YY_EXTRA_TYPE user_defined ); FILE *yyget_in (void ); void yyset_in (FILE * in_str ); FILE *yyget_out (void ); void yyset_out (FILE * out_str ); yy_size_t 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 yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst 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 #define YY_READ_BUF_SIZE 8192 #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, 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 = '*'; \ size_t 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 = fread(buf, 1, 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 break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 197 "util/configlexer.lex" #line 2407 "" 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( ); } while ( 1 ) /* loops until end-of-file is reached */ { (yy_more_len) = 0; if ( (yy_more_flag) ) { (yy_more_len) = (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 { register 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 >= 1628 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 4681 ); 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 198 "util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 200 "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 203 "util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 204 "util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 5: YY_RULE_SETUP #line 205 "util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 6: YY_RULE_SETUP #line 206 "util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 7: YY_RULE_SETUP #line 207 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 8: YY_RULE_SETUP #line 208 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 9: YY_RULE_SETUP #line 209 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 10: YY_RULE_SETUP #line 210 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 11: YY_RULE_SETUP #line 211 "util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 12: YY_RULE_SETUP #line 212 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 13: YY_RULE_SETUP #line 213 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 14: YY_RULE_SETUP #line 214 "util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 15: YY_RULE_SETUP #line 215 "util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 16: YY_RULE_SETUP #line 216 "util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 17: YY_RULE_SETUP #line 217 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 18: YY_RULE_SETUP #line 218 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 19: YY_RULE_SETUP #line 219 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 20: YY_RULE_SETUP #line 220 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 21: YY_RULE_SETUP #line 221 "util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 22: YY_RULE_SETUP #line 222 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 23: YY_RULE_SETUP #line 223 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 24: YY_RULE_SETUP #line 224 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 25: YY_RULE_SETUP #line 225 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 26: YY_RULE_SETUP #line 226 "util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 27: YY_RULE_SETUP #line 227 "util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 28: YY_RULE_SETUP #line 228 "util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 29: YY_RULE_SETUP #line 229 "util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 30: YY_RULE_SETUP #line 230 "util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 31: YY_RULE_SETUP #line 231 "util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 32: YY_RULE_SETUP #line 232 "util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 33: YY_RULE_SETUP #line 233 "util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 34: YY_RULE_SETUP #line 234 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 35: YY_RULE_SETUP #line 235 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 36: YY_RULE_SETUP #line 236 "util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 37: YY_RULE_SETUP #line 237 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 38: YY_RULE_SETUP #line 238 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 39: YY_RULE_SETUP #line 239 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 40: YY_RULE_SETUP #line 240 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 41: YY_RULE_SETUP #line 241 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 42: YY_RULE_SETUP #line 242 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 43: YY_RULE_SETUP #line 243 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 44: YY_RULE_SETUP #line 244 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 45: YY_RULE_SETUP #line 245 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 46: YY_RULE_SETUP #line 246 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 47: YY_RULE_SETUP #line 247 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 48: YY_RULE_SETUP #line 248 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 49: YY_RULE_SETUP #line 249 "util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 50: YY_RULE_SETUP #line 250 "util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 51: YY_RULE_SETUP #line 251 "util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 52: YY_RULE_SETUP #line 252 "util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 53: YY_RULE_SETUP #line 253 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 54: YY_RULE_SETUP #line 254 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 55: YY_RULE_SETUP #line 255 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 56: YY_RULE_SETUP #line 256 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 57: YY_RULE_SETUP #line 257 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 58: YY_RULE_SETUP #line 258 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 59: YY_RULE_SETUP #line 259 "util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 60: YY_RULE_SETUP #line 260 "util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 61: YY_RULE_SETUP #line 261 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 62: YY_RULE_SETUP #line 262 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 63: YY_RULE_SETUP #line 263 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 64: YY_RULE_SETUP #line 264 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 65: YY_RULE_SETUP #line 265 "util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 66: YY_RULE_SETUP #line 266 "util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 67: YY_RULE_SETUP #line 267 "util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 68: YY_RULE_SETUP #line 268 "util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 69: YY_RULE_SETUP #line 269 "util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 70: YY_RULE_SETUP #line 270 "util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 71: YY_RULE_SETUP #line 271 "util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 72: YY_RULE_SETUP #line 272 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 73: YY_RULE_SETUP #line 273 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 74: YY_RULE_SETUP #line 274 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 75: YY_RULE_SETUP #line 275 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 76: YY_RULE_SETUP #line 276 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 77: YY_RULE_SETUP #line 277 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 78: YY_RULE_SETUP #line 278 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 79: YY_RULE_SETUP #line 279 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 80: YY_RULE_SETUP #line 280 "util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 81: YY_RULE_SETUP #line 281 "util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 82: YY_RULE_SETUP #line 282 "util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 83: YY_RULE_SETUP #line 283 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 84: YY_RULE_SETUP #line 284 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 85: YY_RULE_SETUP #line 285 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 86: YY_RULE_SETUP #line 286 "util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 87: YY_RULE_SETUP #line 287 "util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 88: YY_RULE_SETUP #line 288 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 89: YY_RULE_SETUP #line 289 "util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 90: YY_RULE_SETUP #line 290 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 91: YY_RULE_SETUP #line 291 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 92: YY_RULE_SETUP #line 292 "util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 93: YY_RULE_SETUP #line 293 "util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 94: YY_RULE_SETUP #line 294 "util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 95: YY_RULE_SETUP #line 295 "util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 96: YY_RULE_SETUP #line 296 "util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 97: YY_RULE_SETUP #line 297 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 98: YY_RULE_SETUP #line 298 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 99: YY_RULE_SETUP #line 299 "util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 100: YY_RULE_SETUP #line 300 "util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 101: YY_RULE_SETUP #line 302 "util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 102: YY_RULE_SETUP #line 303 "util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 103: YY_RULE_SETUP #line 304 "util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 104: YY_RULE_SETUP #line 305 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 105: YY_RULE_SETUP #line 306 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 106: YY_RULE_SETUP #line 307 "util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 107: YY_RULE_SETUP #line 308 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 108: YY_RULE_SETUP #line 309 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 109: YY_RULE_SETUP #line 310 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 110: YY_RULE_SETUP #line 311 "util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 111: YY_RULE_SETUP #line 312 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 112: YY_RULE_SETUP #line 313 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 113: YY_RULE_SETUP #line 314 "util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 114: YY_RULE_SETUP #line 315 "util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 115: YY_RULE_SETUP #line 316 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 116: YY_RULE_SETUP #line 317 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 117: YY_RULE_SETUP #line 318 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 118: YY_RULE_SETUP #line 319 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 119: YY_RULE_SETUP #line 320 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 120: YY_RULE_SETUP #line 321 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 121: YY_RULE_SETUP #line 322 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 122: YY_RULE_SETUP #line 323 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 123: YY_RULE_SETUP #line 324 "util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 124: YY_RULE_SETUP #line 325 "util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 125: YY_RULE_SETUP #line 326 "util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 126: YY_RULE_SETUP #line 327 "util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 127: YY_RULE_SETUP #line 328 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 128: YY_RULE_SETUP #line 329 "util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 129: YY_RULE_SETUP #line 330 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 130: YY_RULE_SETUP #line 331 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 131: YY_RULE_SETUP #line 332 "util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 132: YY_RULE_SETUP #line 333 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 133: YY_RULE_SETUP #line 334 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 134: YY_RULE_SETUP #line 335 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 135: YY_RULE_SETUP #line 336 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 136: YY_RULE_SETUP #line 337 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 137: YY_RULE_SETUP #line 338 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 138: YY_RULE_SETUP #line 339 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 139: YY_RULE_SETUP #line 341 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 140: YY_RULE_SETUP #line 343 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 141: YY_RULE_SETUP #line 345 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 142: YY_RULE_SETUP #line 347 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 143: YY_RULE_SETUP #line 349 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 144: /* rule 144 can match eol */ YY_RULE_SETUP #line 351 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 145: YY_RULE_SETUP #line 354 "util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 355 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 146: YY_RULE_SETUP #line 360 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 147: /* rule 147 can match eol */ YY_RULE_SETUP #line 361 "util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 148: YY_RULE_SETUP #line 363 "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 149: YY_RULE_SETUP #line 375 "util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 376 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 150: YY_RULE_SETUP #line 381 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 151: /* rule 151 can match eol */ YY_RULE_SETUP #line 382 "util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 152: YY_RULE_SETUP #line 384 "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 153: YY_RULE_SETUP #line 396 "util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 398 "util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 154: YY_RULE_SETUP #line 402 "util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 155: /* rule 155 can match eol */ YY_RULE_SETUP #line 403 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 156: YY_RULE_SETUP #line 404 "util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 157: YY_RULE_SETUP #line 405 "util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 410 "util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 158: YY_RULE_SETUP #line 414 "util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 159: /* rule 159 can match eol */ YY_RULE_SETUP #line 415 "util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 160: YY_RULE_SETUP #line 417 "util/configlexer.lex" { LEXOUT(("IQE ")); yytext[yyleng - 1] = '\0'; config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(val): #line 423 "util/configlexer.lex" { LEXOUT(("LEXEOF ")); yy_set_bol(1); /* Set beginning of line, so "^" rules match. */ if (!config_include_stack) { yyterminate(); } else { fclose(yyin); config_end_include(); } } YY_BREAK case 161: YY_RULE_SETUP #line 434 "util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 162: YY_RULE_SETUP #line 438 "util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 163: YY_RULE_SETUP #line 442 "util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 164: YY_RULE_SETUP #line 446 "util/configlexer.lex" ECHO; YY_BREAK #line 3415 "" 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 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) { register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_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 { yy_size_t 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 ) { yy_size_t 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,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_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_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_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) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); 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 >= 1628 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) 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 ) { register int yy_is_jam; register char *yy_cp = (yy_c_buf_p); register 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 >= 1628 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 1627); return yy_is_jam ? 0 : yy_current_state; } #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 */ yy_size_t offset = (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 EOF; 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(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; (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. */ int grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return 0; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = 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 = 0; 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 (yyconst char * yystr ) { return yy_scan_bytes(yystr,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 (yyconst char * yybytes, yy_size_t _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; yy_size_t i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _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 yy_fatal_error (yyconst char* msg ) { (void) 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. * */ yy_size_t yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param line_number * */ void yyset_lineno (int line_number ) { yylineno = line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * in_str ) { yyin = in_str ; } 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) = 0; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = (char *) 0; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #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, yyconst char * s2, int n ) { register int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (void *) 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 (void *) realloc( (char *) ptr, size ); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 446 "util/configlexer.lex"