unbound/util/configlexer.c
2023-01-23 11:45:07 +01:00

6737 lines
252 KiB
C

#include "config.h"
#include "util/configyyrename.h"
#line 2 "<stdout>"
#define YY_INT_ALIGNED short int
/* A lexical scanner generated by flex */
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 6
#define YY_FLEX_SUBMINOR_VERSION 4
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif
/* First, we deal with platform-specific or compiler-specific issues. */
/* begin standard C headers. */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
/* end standard C headers. */
/* flex integer type definitions */
#ifndef FLEXINT_H
#define FLEXINT_H
/* C99 systems have <inttypes.h>. 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 <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t;
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX (127)
#endif
#ifndef INT16_MAX
#define INT16_MAX (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX (4294967295U)
#endif
#ifndef SIZE_MAX
#define SIZE_MAX (~(size_t)0)
#endif
#endif /* ! C99 */
#endif /* ! FLEXINT_H */
/* begin standard C++ headers. */
/* TODO: this is always defined, so inline it */
#define yyconst const
#if defined(__GNUC__) && __GNUC__ >= 3
#define yynoreturn __attribute__((__noreturn__))
#else
#define yynoreturn
#endif
/* Returned upon end-of-file. */
#define YY_NULL 0
/* Promotes a possibly negative, possibly signed char to an
* integer in range [0..255] for use as an array index.
*/
#define YY_SC_TO_UI(c) ((YY_CHAR) (c))
/* Enter a start condition. This macro really ought to take a parameter,
* but we do it the disgusting crufty way forced on us by the ()-less
* definition of BEGIN.
*/
#define BEGIN (yy_start) = 1 + 2 *
/* Translate the current start state into a value that can be later handed
* to BEGIN to return to the state. The YYSTATE alias is for lex
* compatibility.
*/
#define YY_START (((yy_start) - 1) / 2)
#define YYSTATE YY_START
/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart( yyin )
#define YY_END_OF_BUFFER_CHAR 0
/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k.
* Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
* Ditto for the __ia64__ case accordingly.
*/
#define YY_BUF_SIZE 32768
#else
#define YY_BUF_SIZE 16384
#endif /* __ia64__ */
#endif
/* The state buf must be large enough to hold one state per character in the main buffer.
*/
#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif
#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef size_t yy_size_t;
#endif
extern int yyleng;
extern FILE *yyin, *yyout;
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
#define YY_LESS_LINENO(n)
#define YY_LINENO_REWIND_TO(ptr)
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
*yy_cp = (yy_hold_char); \
YY_RESTORE_YY_MORE_OFFSET \
(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
} \
while ( 0 )
#define unput(c) yyunput( c, (yytext_ptr) )
#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
struct yy_buffer_state
{
FILE *yy_input_file;
char *yy_ch_buf; /* input buffer */
char *yy_buf_pos; /* current position in input buffer */
/* Size of input buffer in bytes, not including room for EOB
* characters.
*/
int yy_buf_size;
/* Number of characters read into yy_ch_buf, not including EOB
* characters.
*/
int yy_n_chars;
/* Whether we "own" the buffer - i.e., we know we created it,
* and can realloc() it to grow it, and should free() it to
* delete it.
*/
int yy_is_our_buffer;
/* Whether this is an "interactive" input source; if so, and
* if we're using stdio for input, then we want to use getc()
* instead of fread(), to make sure we stop fetching input after
* each newline.
*/
int yy_is_interactive;
/* Whether we're considered to be at the beginning of a line.
* If so, '^' rules will be active on the next match, otherwise
* not.
*/
int yy_at_bol;
int yy_bs_lineno; /**< The line count. */
int yy_bs_column; /**< The column count. */
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
int yy_fill_buffer;
int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
* shouldn't try reading from the input source any more. We might
* still have a bunch of tokens to match, though, because of
* possible backing-up.
*
* When we actually see the EOF, we change the status to "new"
* (via yyrestart()), so that the user can continue scanning by
* just pointing yyin at a new input file.
*/
#define YY_BUFFER_EOF_PENDING 2
};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
/* Stack of input buffers. */
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */
/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* "scanner state".
*
* Returns the top of the stack, or NULL.
*/
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
? (yy_buffer_stack)[(yy_buffer_stack_top)] \
: NULL)
/* Same as previous macro, but useful when we know that the buffer stack is not
* NULL or when we need an lvalue. For internal use only.
*/
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
/* yy_hold_char holds the character lost when yytext is formed. */
static char yy_hold_char;
static int yy_n_chars; /* number of characters read into yy_ch_buf */
int yyleng;
/* Points to current character in buffer. */
static char *yy_c_buf_p = NULL;
static int yy_init = 0; /* whether we need to initialize */
static int yy_start = 0; /* start state number */
/* Flag which is used to allow yywrap()'s to do buffer switches
* instead of setting up a fresh yyin. A bit of a hack ...
*/
static int yy_did_buffer_switch_on_eof;
void yyrestart ( FILE *input_file );
void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer );
YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size );
void yy_delete_buffer ( YY_BUFFER_STATE b );
void yy_flush_buffer ( YY_BUFFER_STATE b );
void yypush_buffer_state ( YY_BUFFER_STATE new_buffer );
void yypop_buffer_state ( void );
static void yyensure_buffer_stack ( void );
static void yy_load_buffer_state ( void );
static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file );
#define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER )
YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size );
YY_BUFFER_STATE yy_scan_string ( const char *yy_str );
YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len );
void *yyalloc ( yy_size_t );
void *yyrealloc ( void *, yy_size_t );
void yyfree ( void * );
#define yy_new_buffer yy_create_buffer
#define yy_set_interactive(is_interactive) \
{ \
if ( ! YY_CURRENT_BUFFER ){ \
yyensure_buffer_stack (); \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer( yyin, YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
}
#define yy_set_bol(at_bol) \
{ \
if ( ! YY_CURRENT_BUFFER ){\
yyensure_buffer_stack (); \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer( yyin, YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
}
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
/* Begin user sect3 */
typedef flex_uint8_t YY_CHAR;
FILE *yyin = NULL, *yyout = NULL;
typedef int yy_state_type;
extern int yylineno;
int yylineno = 1;
extern char *yytext;
#ifdef yytext_ptr
#undef yytext_ptr
#endif
#define yytext_ptr yytext
static yy_state_type yy_get_previous_state ( void );
static yy_state_type yy_try_NUL_trans ( yy_state_type current_state );
static int yy_get_next_buffer ( void );
static void yynoreturn yy_fatal_error ( const char* msg );
/* Done after the current pattern has been matched and before the
* corresponding action - sets up yytext.
*/
#define YY_DO_BEFORE_ACTION \
(yytext_ptr) = yy_bp; \
(yytext_ptr) -= (yy_more_len); \
yyleng = (int) (yy_cp - (yytext_ptr)); \
(yy_hold_char) = *yy_cp; \
*yy_cp = '\0'; \
(yy_c_buf_p) = yy_cp;
#define YY_NUM_RULES 375
#define YY_END_OF_BUFFER 376
/* This struct is not used in this scanner,
but its presence is necessary. */
struct yy_trans_info
{
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
};
static const flex_int16_t yy_accept[3713] =
{ 0,
1, 1, 349, 349, 353, 353, 357, 357, 361, 361,
1, 1, 365, 365, 369, 369, 376, 373, 1, 347,
347, 374, 2, 374, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 349, 350, 350, 351,
374, 353, 354, 354, 355, 374, 360, 357, 358, 358,
359, 374, 361, 362, 362, 363, 374, 372, 348, 2,
352, 374, 372, 368, 365, 366, 366, 367, 374, 369,
370, 370, 371, 374, 373, 0, 1, 2, 2, 2,
2, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 349,
0, 353, 0, 360, 0, 357, 361, 0, 372, 0,
2, 2, 372, 368, 0, 365, 369, 0, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 372, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 345, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 134, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 144, 373, 373, 373, 373,
373, 373, 373, 372, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 116, 373, 344, 373,
373, 373, 373, 373, 373, 373, 373, 8, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 135,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 149, 373, 373, 372, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 337, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 372, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 69, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 262, 373, 14, 15, 373, 19, 18, 373, 373,
242, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 142, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 240, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 3, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 372, 373, 373, 373,
373, 373, 373, 373, 329, 373, 373, 328, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 356,
373, 373, 373, 373, 373, 373, 373, 373, 68, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 72, 373, 298, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 338,
339, 373, 373, 373, 373, 373, 373, 373, 373, 73,
373, 373, 143, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 138, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 229,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 21, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 170, 373, 373, 373, 373,
373, 372, 356, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 114, 373, 373, 373, 373, 373,
373, 373, 306, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 197, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 169, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 113, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 35, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 36, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 70, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 141, 373, 373, 373, 372,
373, 373, 373, 373, 373, 133, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 71, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 266, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 198,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 58, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 284,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
63, 373, 64, 373, 373, 373, 373, 373, 117, 373,
118, 373, 373, 373, 373, 373, 115, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
7, 373, 373, 373, 373, 372, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 251, 373, 373, 373, 373, 173,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 267, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 49, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
59, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 220, 373, 219, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
16, 17, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 74, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
228, 373, 373, 373, 373, 373, 373, 120, 373, 119,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 211, 373, 373, 373,
373, 373, 373, 373, 373, 373, 150, 373, 373, 373,
372, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 108, 373, 373, 373, 373, 373, 373, 373, 373,
373, 95, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 241, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 100, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 67, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 214, 215, 373, 373, 373,
300, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 6, 373, 373, 373,
373, 373, 373, 373, 319, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 304, 373, 373, 373, 373, 373,
373, 373, 330, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 46, 373, 373,
373, 373, 373, 48, 373, 373, 373, 96, 373, 373,
373, 373, 373, 56, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 372, 373, 207, 373, 373,
373, 145, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 233, 373, 208, 373, 373, 373, 248, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 57,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 147, 126, 373, 127, 373, 373, 373, 373, 125,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
166, 373, 373, 54, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 283, 373, 373, 373, 373, 373,
373, 373, 373, 373, 209, 373, 373, 373, 373, 373,
212, 373, 218, 373, 373, 373, 373, 373, 373, 373,
373, 247, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 112,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
139, 373, 373, 373, 373, 373, 373, 373, 373, 65,
373, 373, 373, 29, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 20, 373, 373, 373,
373, 373, 373, 373, 30, 39, 373, 178, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 205, 373, 373, 372, 373, 373, 373, 373,
373, 373, 82, 84, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 308, 373, 373,
373, 373, 263, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 128, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 165,
373, 50, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 257, 373, 373, 373, 373, 373, 373, 373,
323, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 172, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 317, 373, 373, 373,
373, 239, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 335, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 190, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 121, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
185, 373, 199, 373, 373, 373, 373, 373, 373, 373,
372, 373, 153, 373, 373, 373, 373, 373, 107, 373,
373, 373, 373, 231, 373, 373, 373, 373, 373, 373,
249, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 275, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 146,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 189, 373,
373, 373, 373, 373, 373, 373, 85, 373, 86, 373,
373, 373, 373, 373, 260, 373, 373, 373, 373, 66,
326, 373, 373, 373, 373, 373, 94, 200, 373, 221,
373, 252, 373, 373, 213, 301, 373, 373, 373, 373,
296, 373, 373, 373, 78, 373, 202, 373, 373, 373,
373, 373, 373, 9, 373, 373, 373, 373, 373, 111,
373, 373, 373, 373, 373, 373, 288, 373, 373, 373,
373, 373, 230, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 372, 373,
373, 373, 373, 188, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 174, 373, 307, 373, 373, 373,
373, 373, 274, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 243, 373, 373, 373, 373, 373,
373, 299, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
171, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 327, 373, 201, 373, 373, 373, 373, 373, 373,
373, 373, 373, 77, 79, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 110, 373, 373, 373, 373,
373, 373, 286, 373, 373, 373, 373, 373, 373, 303,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 235, 37, 31, 33, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
38, 373, 32, 34, 373, 40, 373, 373, 373, 373,
373, 373, 373, 106, 373, 184, 373, 373, 373, 373,
373, 373, 373, 372, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 237, 234, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 76, 373, 373, 373,
148, 373, 129, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 167, 51, 373, 373, 373, 364,
13, 373, 373, 373, 373, 373, 373, 373, 154, 373,
373, 373, 373, 373, 373, 373, 321, 373, 324, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 12, 373, 373, 22, 373, 373, 373, 373,
373, 373, 373, 292, 373, 373, 373, 373, 373, 373,
305, 373, 373, 373, 373, 80, 373, 245, 373, 373,
373, 373, 373, 236, 373, 373, 373, 75, 373, 373,
373, 373, 373, 373, 23, 373, 373, 47, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
183, 182, 373, 373, 364, 373, 373, 373, 373, 373,
373, 373, 373, 373, 238, 232, 373, 250, 373, 373,
309, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 195, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 87, 373,
373, 373, 373, 373, 373, 373, 287, 373, 373, 373,
373, 217, 373, 373, 373, 373, 373, 373, 244, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 294,
373, 373, 373, 331, 373, 333, 332, 180, 373, 373,
373, 81, 373, 373, 373, 373, 191, 373, 373, 373,
373, 122, 124, 123, 373, 373, 373, 25, 373, 373,
175, 373, 177, 373, 222, 373, 373, 373, 373, 181,
373, 373, 373, 373, 253, 373, 373, 373, 373, 373,
373, 373, 156, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 265, 373, 373, 373, 373,
373, 373, 373, 342, 373, 27, 373, 302, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 92, 223, 373, 373,
259, 373, 373, 285, 373, 325, 373, 216, 373, 373,
297, 373, 373, 373, 295, 60, 373, 373, 373, 373,
373, 373, 373, 4, 373, 373, 373, 373, 373, 137,
373, 155, 373, 373, 373, 196, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 256, 41, 42, 373, 373,
373, 373, 373, 373, 373, 310, 373, 373, 373, 373,
373, 373, 373, 273, 373, 373, 373, 373, 373, 373,
373, 373, 226, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 91, 90,
373, 373, 61, 373, 373, 291, 373, 261, 373, 373,
373, 373, 373, 11, 373, 373, 373, 373, 346, 373,
373, 373, 373, 373, 136, 373, 373, 373, 373, 373,
373, 224, 97, 373, 373, 44, 373, 373, 373, 373,
373, 373, 373, 373, 187, 373, 373, 373, 373, 373,
373, 373, 158, 373, 373, 373, 373, 264, 373, 373,
373, 373, 373, 272, 373, 373, 373, 373, 151, 373,
373, 373, 130, 132, 131, 373, 373, 373, 99, 103,
98, 373, 168, 373, 373, 373, 373, 88, 373, 258,
293, 373, 373, 373, 373, 373, 373, 10, 373, 373,
373, 373, 373, 289, 336, 373, 373, 373, 373, 373,
373, 373, 373, 341, 43, 373, 373, 373, 373, 373,
186, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 104, 102, 373, 373,
55, 373, 373, 89, 373, 322, 373, 373, 373, 373,
24, 373, 373, 373, 373, 373, 210, 373, 373, 334,
373, 373, 373, 373, 225, 373, 373, 373, 373, 373,
373, 373, 373, 373, 206, 373, 373, 176, 83, 373,
373, 373, 373, 373, 311, 373, 373, 373, 373, 373,
373, 373, 269, 373, 373, 268, 152, 373, 373, 101,
373, 52, 373, 373, 159, 160, 163, 164, 161, 162,
93, 320, 373, 373, 290, 140, 373, 373, 373, 373,
26, 373, 179, 373, 373, 373, 373, 204, 373, 255,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 193, 192, 227, 45, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
318, 373, 373, 373, 373, 109, 373, 254, 373, 282,
315, 373, 373, 373, 373, 373, 373, 373, 373, 373,
373, 373, 343, 373, 105, 53, 62, 5, 373, 373,
246, 373, 373, 316, 373, 373, 373, 373, 373, 373,
373, 373, 373, 270, 28, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 271, 373, 373,
373, 157, 373, 373, 373, 373, 373, 373, 373, 373,
194, 373, 203, 373, 373, 373, 373, 373, 373, 373,
373, 373, 312, 373, 373, 373, 373, 373, 373, 373,
373, 373, 373, 373, 373, 373, 373, 373, 373, 373,
340, 373, 373, 278, 373, 373, 373, 373, 373, 313,
373, 373, 373, 373, 373, 373, 314, 373, 373, 373,
276, 373, 279, 280, 373, 373, 373, 373, 373, 277,
281, 0
} ;
static const YY_CHAR yy_ec[256] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
1, 1, 4, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 2, 1, 5, 6, 1, 1, 1, 7, 1,
1, 1, 1, 1, 8, 1, 1, 1, 9, 1,
10, 11, 1, 12, 1, 1, 1, 13, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 14, 1, 1, 1, 1, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
39, 40, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1
} ;
static const YY_CHAR yy_meta[41] =
{ 0,
1, 2, 3, 4, 5, 1, 6, 1, 1, 1,
1, 1, 7, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1
} ;
static const flex_int16_t yy_base[3731] =
{ 0,
0, 0, 38, 41, 44, 46, 59, 65, 71, 77,
90, 112, 96, 118, 124, 136, 3764, 3709, 81, 7235,
7235, 7235, 129, 52, 130, 63, 131, 152, 70, 140,
149, 156, 57, 88, 76, 173, 175, 95, 197, 145,
185, 199, 208, 213, 178, 123, 3203, 7235, 7235, 7235,
107, 3106, 7235, 7235, 7235, 154, 2980, 2776, 7235, 7235,
7235, 245, 2512, 7235, 7235, 7235, 163, 2418, 7235, 249,
7235, 253, 148, 2194, 2170, 7235, 7235, 7235, 257, 1798,
7235, 7235, 7235, 233, 1739, 263, 201, 0, 267, 0,
0, 165, 191, 221, 252, 205, 181, 265, 92, 261,
216, 263, 271, 272, 210, 279, 274, 282, 278, 291,
283, 286, 276, 285, 295, 293, 306, 314, 297, 313,
317, 311, 315, 319, 321, 331, 327, 332, 336, 322,
339, 337, 346, 345, 347, 348, 353, 351, 357, 284,
358, 359, 369, 360, 380, 365, 381, 379, 375, 366,
367, 389, 390, 394, 393, 395, 396, 403, 404, 1474,
419, 1334, 422, 1196, 429, 1065, 933, 433, 713, 437,
441, 0, 433, 515, 447, 479, 364, 452, 411, 445,
426, 446, 447, 448, 449, 450, 451, 453, 452, 456,
470, 234, 463, 473, 481, 479, 476, 483, 486, 493,
488, 489, 495, 491, 501, 508, 505, 506, 504, 510,
512, 513, 460, 514, 517, 529, 518, 516, 526, 538,
539, 550, 543, 534, 551, 552, 400, 559, 555, 563,
558, 570, 565, 574, 566, 569, 571, 576, 573, 577,
580, 581, 578, 584, 585, 587, 589, 598, 599, 590,
602, 596, 611, 607, 616, 612, 614, 613, 617, 541,
627, 628, 620, 629, 630, 624, 633, 641, 637, 649,
644, 635, 645, 647, 648, 652, 651, 656, 653, 668,
670, 669, 672, 679, 665, 675, 666, 678, 682, 681,
691, 654, 686, 693, 698, 683, 696, 699, 687, 702,
704, 705, 710, 711, 708, 7235, 718, 714, 721, 722,
729, 726, 731, 733, 740, 741, 716, 725, 737, 739,
744, 746, 748, 750, 742, 751, 755, 753, 759, 763,
770, 765, 772, 785, 767, 773, 777, 806, 778, 774,
780, 786, 796, 798, 800, 793, 807, 814, 815, 808,
812, 819, 826, 834, 836, 816, 828, 839, 830, 838,
820, 845, 852, 847, 7235, 849, 851, 861, 853, 862,
865, 863, 871, 872, 875, 884, 880, 883, 893, 915,
885, 886, 882, 895, 898, 7235, 900, 899, 939, 908,
917, 928, 924, 904, 901, 929, 940, 943, 956, 757,
945, 921, 963, 959, 946, 948, 932, 969, 960, 976,
971, 961, 973, 977, 984, 979, 980, 983, 989, 990,
992, 993, 997, 998, 994, 1003, 1012, 1013, 1001, 995,
1007, 1015, 891, 1019, 1018, 1041, 1030, 1020, 1034, 1021,
1028, 1042, 1035, 1043, 1044, 1047, 1052, 1045, 1060, 1051,
1067, 1063, 1069, 1070, 1078, 1073, 1074, 1075, 1076, 1079,
1085, 1080, 1083, 1087, 1088, 1090, 1091, 1097, 1099, 1106,
1095, 1108, 1111, 1098, 1113, 1101, 7235, 1117, 7235, 1115,
1120, 1121, 1122, 1124, 1125, 1126, 1127, 7235, 1129, 1132,
1133, 1140, 1137, 1141, 1143, 1144, 1154, 1148, 1155, 1157,
1156, 1158, 1165, 1167, 1164, 1168, 1175, 1172, 1176, 1177,
1179, 1178, 1180, 1183, 1187, 1188, 1189, 1190, 1209, 7235,
1191, 1195, 1197, 1201, 1194, 1202, 1206, 1214, 1221, 1219,
1227, 1220, 1224, 1237, 1238, 1240, 1241, 1243, 1245, 1246,
1248, 1249, 1254, 1251, 1255, 1257, 1259, 1260, 1262, 1268,
1261, 1264, 1275, 7235, 1274, 1272, 1284, 1291, 1286, 1287,
1271, 1289, 1292, 1293, 1295, 1296, 1304, 1294, 1297, 1301,
1314, 1310, 1319, 1312, 1317, 1315, 1316, 1321, 1325, 1323,
1327, 1336, 1333, 1338, 1341, 1350, 1348, 1352, 1355, 1359,
1345, 1354, 1356, 1357, 1361, 1362, 1364, 1367, 1369, 1365,
1371, 1373, 1382, 1378, 1379, 1384, 1380, 1386, 1391, 1389,
1387, 1394, 1393, 1395, 1396, 1403, 1401, 1405, 1410, 1407,
1414, 1409, 1417, 1423, 1424, 1420, 1426, 7235, 1436, 1431,
1432, 1438, 1439, 1443, 1445, 1437, 1447, 1448, 1449, 1451,
1452, 1458, 1454, 1459, 1461, 1460, 1468, 1467, 1470, 1473,
1475, 1471, 1484, 1491, 1490, 1492, 1476, 1486, 1495, 1496,
1480, 1504, 1502, 1511, 1503, 1508, 1510, 1512, 1519, 1514,
1516, 1517, 1526, 1521, 1523, 1525, 1524, 1534, 1531, 1539,
1542, 1547, 1543, 1548, 1557, 1549, 1552, 1559, 1554, 1562,
1558, 1565, 1566, 1567, 1568, 1575, 1570, 1571, 1572, 1578,
1579, 1581, 1582, 1589, 1596, 1591, 1592, 1595, 1598, 1599,
1602, 1601, 1608, 1603, 1609, 1610, 1612, 1613, 1618, 1616,
1614, 1633, 1622, 1624, 1634, 1625, 1635, 1638, 1641, 1642,
1644, 1647, 1646, 1648, 1656, 1657, 1649, 1658, 1650, 1663,
1664, 1666, 1674, 1670, 1676, 1680, 1669, 1681, 1671, 1682,
1685, 1688, 1691, 1694, 1697, 1689, 7235, 1695, 1705, 1701,
1703, 1704, 1708, 1709, 1717, 1710, 1712, 1713, 1715, 1722,
1743, 7235, 1720, 7235, 7235, 1724, 7235, 7235, 1723, 1728,
7235, 1725, 1730, 1729, 1737, 1746, 1756, 1758, 1749, 1726,
1754, 1751, 1767, 1772, 1766, 1764, 1775, 1770, 1777, 1778,
1783, 1780, 1782, 1789, 1792, 1795, 1797, 1805, 1806, 1808,
1810, 1811, 1814, 1812, 1818, 1819, 1823, 1826, 1827, 1829,
1830, 1831, 1833, 1832, 1835, 1838, 1841, 1842, 1844, 1837,
1845, 1856, 1854, 1847, 1864, 7235, 1860, 1872, 1857, 1861,
1868, 1876, 1869, 1877, 1878, 1873, 1882, 1884, 1886, 1887,
1889, 1891, 1893, 1892, 1894, 1898, 1900, 1902, 1904, 1903,
1906, 1915, 1908, 1910, 7235, 1916, 1918, 1917, 1923, 1921,
1931, 1932, 1922, 1920, 1924, 1935, 1944, 1939, 1946, 1940,
1942, 1949, 1950, 1951, 1954, 7235, 1960, 1964, 1952, 1966,
1956, 1959, 1967, 1968, 1972, 1975, 1970, 1976, 1978, 1981,
1988, 1985, 1983, 1986, 1989, 1991, 1997, 1998, 1999, 2004,
2011, 2001, 2007, 2012, 2014, 2015, 2016, 2017, 2018, 2022,
2024, 2025, 2032, 2029, 2041, 2031, 2028, 2046, 2053, 2050,
2030, 2051, 2033, 2052, 2055, 2064, 2065, 2057, 2061, 2062,
2072, 2067, 2069, 2070, 2076, 2074, 2084, 2080, 2082, 2093,
2085, 2089, 2091, 2097, 7235, 2098, 2099, 7235, 2101, 2100,
2102, 2124, 2103, 2106, 2111, 2118, 2105, 2108, 2119, 2125,
2131, 2128, 2138, 2141, 2143, 2144, 2146, 2147, 2151, 2149,
2153, 2155, 2156, 2159, 2164, 2115, 2166, 2178, 2179, 2175,
2182, 2186, 2165, 2181, 2183, 2202, 2184, 2185, 2191, 2192,
2188, 2193, 2199, 2195, 2197, 2206, 2211, 2212, 2217, 2224,
2214, 2215, 2223, 2226, 2225, 2229, 2235, 2232, 2237, 7235,
2244, 2245, 2239, 2246, 2240, 2255, 2254, 2250, 7235, 2252,
2256, 2260, 2268, 2263, 2264, 2266, 2267, 2270, 2273, 2274,
2279, 2280, 2275, 2277, 2291, 7235, 2282, 7235, 2278, 2290,
2295, 2296, 2303, 2299, 2300, 2304, 2302, 2306, 2307, 7235,
7235, 2308, 2315, 2325, 2327, 2329, 2319, 2316, 2330, 7235,
2332, 2339, 7235, 2336, 2334, 2341, 2342, 2335, 2345, 2346,
2347, 2350, 2357, 2352, 2359, 2354, 2358, 2362, 7235, 2366,
2368, 2370, 2373, 2374, 2377, 2375, 2380, 2381, 2382, 7235,
2383, 2387, 2390, 2398, 2400, 2388, 2395, 2401, 2405, 2402,
2407, 2408, 2409, 2410, 2417, 2421, 2422, 2414, 2424, 2431,
2427, 2436, 7235, 2433, 2434, 2435, 2443, 2439, 2441, 2442,
2445, 2448, 2446, 2447, 2456, 2457, 2450, 2458, 2449, 2462,
2465, 2475, 2476, 2468, 2472, 2479, 2471, 2473, 2480, 2481,
2309, 2482, 2485, 2486, 2488, 7235, 2489, 2496, 2493, 2497,
2498, 2491, 171, 2504, 2506, 2507, 2509, 2515, 2517, 2510,
2526, 2528, 2523, 2527, 2529, 2533, 2534, 2535, 2536, 2525,
2537, 2543, 2542, 2544, 7235, 2546, 2547, 2551, 2552, 2553,
2554, 2565, 7235, 2558, 2571, 2555, 2576, 2566, 2564, 2577,
2568, 2582, 2583, 2585, 2586, 2589, 2594, 2591, 2593, 2595,
2597, 7235, 2599, 2603, 2604, 2602, 2610, 2613, 2611, 2612,
2614, 2618, 2621, 2619, 2623, 2626, 2625, 2628, 2632, 2635,
2631, 2636, 2645, 2640, 2642, 2643, 2648, 2651, 2653, 2654,
2655, 2656, 2664, 2657, 7235, 2667, 2659, 2668, 2675, 2666,
2669, 2676, 2672, 2693, 2678, 2688, 2690, 2694, 2704, 2698,
2691, 2707, 2714, 2716, 2699, 2724, 2720, 2726, 2728, 2689,
2732, 2734, 2722, 2730, 2741, 2744, 2740, 2736, 2746, 2747,
2749, 2750, 2757, 2759, 2755, 2754, 2706, 2756, 2762, 2761,
2777, 2782, 2773, 7235, 2781, 2771, 2769, 2783, 2787, 2794,
2790, 2791, 2792, 2795, 2798, 2800, 2802, 2803, 2810, 2805,
2808, 2814, 2811, 2818, 2812, 2815, 2827, 2828, 2816, 2830,
2832, 2829, 2837, 2838, 7235, 2839, 2843, 2833, 2845, 2850,
2847, 2856, 2857, 2859, 2851, 2853, 2860, 2862, 2863, 2679,
2865, 2866, 2875, 2871, 2870, 2878, 2873, 7235, 2882, 2877,
2884, 2888, 2887, 2889, 2890, 2895, 2896, 2902, 2903, 2905,
2906, 2908, 2909, 2912, 7235, 2917, 2919, 2915, 2918, 2927,
2922, 2926, 2928, 2930, 2932, 7235, 2933, 2935, 854, 2934,
2936, 2937, 2946, 2947, 2942, 7235, 2950, 2943, 2951, 2954,
2955, 2958, 2959, 2961, 2964, 2965, 2968, 2970, 2979, 2966,
2976, 7235, 2969, 2993, 2973, 2985, 2995, 2982, 2983, 2997,
2999, 3000, 3006, 3002, 7235, 3011, 3010, 3013, 3023, 3001,
3018, 3019, 3021, 3025, 3027, 3028, 3029, 3031, 3033, 7235,
3034, 3038, 3039, 3040, 3043, 3042, 3035, 3051, 3050, 3052,
3055, 3058, 3061, 3063, 3064, 3065, 3059, 3075, 3067, 3073,
3069, 3077, 3081, 3079, 3084, 3071, 3088, 3098, 3101, 3096,
3099, 3103, 3105, 3097, 3104, 3107, 3114, 3115, 3122, 3117,
3119, 7235, 3124, 3126, 3127, 3128, 3121, 3129, 3132, 3131,
3134, 3137, 3140, 3144, 3142, 3145, 3159, 3161, 3150, 3151,
3154, 3162, 3163, 3166, 3165, 3167, 3168, 3175, 3174, 3176,
3177, 3178, 3180, 3188, 3183, 3185, 3195, 3190, 3192, 3196,
3198, 3199, 3200, 3201, 3204, 3207, 3210, 3205, 3212, 3216,
3221, 3226, 3227, 3229, 3223, 3230, 3234, 3235, 3238, 7235,
3237, 3241, 3239, 3242, 3247, 3250, 3251, 3258, 3253, 3259,
3266, 3264, 3261, 3267, 3270, 3273, 3274, 3275, 3282, 3278,
7235, 3279, 7235, 3280, 3281, 3284, 3293, 3288, 7235, 3299,
7235, 3289, 3303, 3294, 3296, 3300, 7235, 3304, 3305, 3309,
3306, 3311, 3313, 3317, 3318, 3319, 3320, 3321, 3328, 3323,
3327, 3330, 3334, 3333, 3337, 3340, 3342, 3343, 3345, 3344,
3347, 3351, 3352, 3353, 3360, 3362, 3363, 3364, 3365, 3366,
7235, 3370, 3373, 3367, 3378, 3375, 3377, 3379, 3385, 3386,
3387, 3388, 3392, 3390, 3394, 3399, 3402, 3396, 3403, 3406,
3413, 3415, 3407, 3422, 7235, 3417, 3420, 3421, 3424, 7235,
3428, 3425, 3434, 3436, 3429, 3426, 3432, 3438, 3445, 3439,
3442, 3448, 3452, 3456, 3459, 3460, 7235, 3453, 3461, 3451,
3469, 3474, 3465, 3477, 3481, 3478, 3484, 3486, 3488, 3490,
3467, 3491, 3492, 3493, 3494, 3502, 3504, 3505, 3501, 3514,
3500, 3507, 3516, 3517, 3503, 3510, 3518, 3519, 3520, 3525,
3527, 3528, 3526, 3524, 3531, 3532, 3529, 3536, 7235, 3545,
3546, 3537, 3553, 3551, 3552, 3554, 3555, 3556, 3560, 3563,
7235, 3565, 3562, 3570, 3566, 3579, 3573, 3567, 3576, 3583,
3584, 3587, 3585, 3586, 3589, 7235, 3591, 7235, 3590, 3594,
3604, 3608, 3609, 3596, 3610, 3617, 3599, 3618, 3619, 3620,
3623, 3622, 3627, 3628, 3629, 3630, 3631, 3640, 3633, 3641,
3654, 3644, 3636, 3646, 3648, 3655, 3657, 3664, 3660, 3662,
7235, 7235, 3661, 3667, 3670, 3672, 3668, 3678, 3676, 3679,
3683, 3688, 3682, 3689, 3690, 3697, 7235, 3698, 3699, 3701,
3702, 3703, 3711, 3704, 3716, 3719, 3720, 3718, 3727, 3724,
7235, 3706, 3728, 3735, 3731, 3734, 3739, 7235, 3738, 7235,
3736, 3740, 3741, 3745, 3747, 3748, 3749, 3754, 3751, 3756,
3758, 3766, 3767, 3774, 3773, 3769, 3778, 3771, 3775, 3779,
3781, 3783, 3790, 3785, 3786, 3788, 7235, 3795, 3789, 3634,
3792, 3799, 3800, 3803, 3801, 3804, 7235, 3811, 3812, 3813,
3814, 3815, 3818, 3820, 3823, 3824, 3829, 3831, 3825, 3834,
3836, 7235, 3833, 3837, 3844, 3841, 3840, 3849, 3851, 3856,
3861, 7235, 3842, 3854, 3868, 3865, 3866, 3867, 3870, 3871,
3872, 3874, 3875, 3876, 3877, 3879, 3883, 3884, 3880, 3887,
3886, 3898, 3897, 3889, 3901, 3911, 3907, 7235, 3908, 3912,
3913, 3914, 3915, 3916, 3920, 3921, 3926, 3938, 3919, 3941,
3942, 3923, 3927, 3929, 3946, 3947, 3955, 3953, 7235, 3958,
3954, 3963, 3959, 3960, 3961, 3964, 3969, 3970, 3966, 3974,
3962, 3975, 3976, 3978, 3979, 3984, 3991, 3987, 3988, 3992,
3993, 4003, 3994, 3995, 3998, 4002, 7235, 4017, 4004, 4009,
4019, 4012, 4020, 4028, 4025, 4026, 4027, 4030, 4031, 4032,
4036, 4037, 4038, 4041, 4042, 7235, 7235, 4044, 4045, 4049,
7235, 4051, 4047, 4061, 4050, 3917, 4052, 4054, 4063, 4064,
4065, 4067, 4071, 4073, 4075, 4077, 7235, 4086, 4078, 4087,
4082, 4085, 4094, 4089, 7235, 4090, 4104, 4096, 4100, 4099,
4103, 4106, 4110, 4111, 4107, 4112, 4113, 4116, 4120, 4123,
4128, 4124, 4125, 4130, 7235, 4127, 4132, 4133, 4136, 4137,
4139, 4141, 7235, 4143, 4145, 4151, 4153, 4146, 4164, 4165,
4157, 4167, 4160, 4170, 4171, 4172, 4174, 4175, 4176, 4185,
4180, 4178, 4182, 4186, 4189, 4191, 4197, 7235, 4200, 4202,
4183, 4205, 4207, 7235, 4212, 4220, 4221, 7235, 4222, 4204,
4223, 4217, 4231, 7235, 4224, 4233, 4226, 4234, 4227, 4245,
4232, 4246, 4242, 4243, 4244, 4248, 4247, 7235, 4249, 4250,
4251, 7235, 4255, 4265, 4268, 4271, 4257, 4278, 4273, 4275,
4276, 4274, 7235, 4281, 7235, 4260, 4284, 4287, 7235, 4285,
4289, 4290, 4292, 4293, 4294, 4298, 4304, 4306, 4300, 4308,
4309, 4310, 4311, 4313, 4322, 4312, 4314, 4319, 4321, 7235,
4324, 4326, 4331, 4332, 4328, 4333, 4338, 4339, 4342, 4345,
4343, 7235, 7235, 4353, 7235, 4346, 4354, 4355, 4357, 7235,
4359, 4358, 4366, 4361, 4364, 4367, 4362, 4368, 4380, 4375,
7235, 4382, 4384, 7235, 4377, 4387, 4394, 4389, 4390, 4391,
4392, 4395, 4398, 4401, 4402, 4404, 4405, 4406, 4408, 4410,
4409, 4427, 4415, 4423, 7235, 4411, 4417, 4432, 4436, 4428,
4430, 4445, 4447, 4433, 7235, 4449, 4437, 4441, 4451, 4455,
7235, 4457, 7235, 4443, 4458, 4460, 4463, 4464, 4468, 4475,
4470, 7235, 4471, 4477, 4479, 4474, 4476, 4480, 4484, 4487,
4485, 4486, 4493, 4501, 4494, 4496, 4498, 4508, 4497, 7235,
4506, 4512, 4511, 4515, 4516, 4518, 4519, 4520, 4527, 4528,
4522, 4530, 4531, 4536, 4532, 4537, 4541, 4543, 4545, 4546,
7235, 4549, 4551, 4554, 4555, 4567, 4557, 4559, 4558, 7235,
4562, 4572, 4573, 7235, 4571, 4575, 4579, 4581, 4582, 4585,
4586, 4589, 4565, 4587, 4591, 4592, 7235, 4596, 4598, 4593,
4594, 4602, 4609, 4611, 7235, 7235, 4614, 7235, 4615, 4612,
4616, 4619, 4617, 4623, 4625, 4627, 4639, 4622, 4626, 4630,
4641, 4643, 7235, 4628, 4650, 4648, 4655, 4657, 4658, 4659,
4653, 4660, 7235, 7235, 4664, 4666, 4665, 4669, 4671, 4673,
4675, 4682, 4678, 4686, 4689, 4679, 4696, 7235, 4691, 4677,
4694, 4699, 7235, 4700, 4701, 4703, 4702, 4704, 4705, 4708,
4707, 4710, 4711, 4713, 4714, 4716, 4729, 4720, 4721, 4722,
4730, 4732, 4736, 4735, 4728, 4744, 7235, 4737, 4739, 4749,
4750, 4752, 4753, 4754, 4755, 4759, 4757, 4762, 4766, 7235,
4764, 7235, 4761, 4767, 4780, 4763, 4770, 4783, 4784, 4785,
4787, 4772, 4791, 4793, 4794, 4798, 4799, 4803, 4792, 4804,
4808, 4809, 7235, 4812, 4814, 4816, 4818, 4823, 4825, 4826,
7235, 4828, 4820, 4829, 4832, 4835, 4837, 4838, 4842, 4843,
4846, 4839, 4847, 4851, 4856, 4848, 4858, 4859, 4853, 4864,
4865, 4866, 7235, 4868, 4872, 4869, 4875, 4876, 4877, 4878,
4880, 4886, 4890, 4881, 4891, 4893, 7235, 4892, 4896, 4898,
4905, 7235, 4901, 4903, 4904, 4908, 4909, 4911, 4912, 4914,
4917, 4924, 7235, 4929, 4916, 4926, 4920, 4922, 4930, 4935,
4937, 4941, 4938, 4943, 4946, 7235, 4957, 4944, 4953, 4954,
4952, 4955, 4960, 4961, 4962, 4965, 7235, 4969, 4971, 4973,
4972, 4985, 4986, 4975, 4982, 4989, 4988, 4990, 4984, 4992,
4998, 4994, 4999, 5002, 5003, 5004, 5006, 5016, 5021, 5018,
7235, 5007, 7235, 5017, 5019, 5023, 5031, 5029, 5026, 5032,
5034, 5036, 7235, 5041, 5043, 5045, 5040, 5042, 7235, 5048,
5046, 5049, 5053, 7235, 5047, 5061, 5052, 5063, 5068, 5069,
7235, 5074, 5076, 5077, 5084, 5086, 5081, 5088, 5071, 5091,
5083, 5089, 5093, 5096, 5100, 5099, 5101, 7235, 5098, 5104,
5109, 5105, 5111, 5114, 5115, 5117, 5118, 5120, 5121, 7235,
5125, 5126, 5127, 5128, 5129, 5131, 5132, 5133, 5142, 5139,
5140, 5149, 5144, 5151, 5153, 5154, 5155, 5157, 7235, 5161,
5158, 5160, 5169, 5177, 5167, 5164, 7235, 5178, 7235, 5168,
5179, 5180, 5183, 5184, 7235, 5188, 5189, 5190, 5194, 7235,
7235, 5196, 5203, 5198, 5202, 5199, 7235, 7235, 5205, 7235,
5206, 7235, 5207, 5209, 7235, 7235, 5212, 5211, 5213, 5214,
7235, 5215, 5218, 5227, 7235, 5229, 7235, 5236, 5219, 5232,
5222, 5234, 5240, 7235, 5241, 5243, 5242, 5247, 5249, 7235,
5250, 5244, 5251, 5258, 5255, 5261, 7235, 5263, 5264, 5265,
5268, 5271, 7235, 5269, 5275, 5272, 5278, 5281, 5279, 5280,
5291, 5283, 5286, 5282, 5298, 5295, 5299, 5301, 5305, 5308,
5310, 5312, 5302, 5316, 5313, 5317, 5320, 5323, 5325, 5327,
5328, 5329, 5330, 5332, 5333, 5335, 5336, 5338, 5343, 5340,
5345, 5346, 5347, 5352, 5356, 5357, 5359, 5360, 5366, 5361,
5368, 5363, 5371, 5369, 5372, 5373, 5375, 5381, 5374, 5377,
5384, 5385, 5388, 7235, 5390, 5392, 5394, 5395, 5399, 5401,
5402, 5405, 5410, 5411, 7235, 5415, 7235, 5418, 5420, 5421,
5422, 5424, 7235, 5423, 5426, 5425, 5428, 5427, 5429, 5431,
5430, 5434, 5435, 5445, 7235, 5451, 5457, 5440, 5437, 5458,
5461, 7235, 5462, 5464, 5465, 5466, 5468, 5469, 5470, 5472,
5473, 5477, 5475, 5474, 5480, 5482, 5489, 5479, 5492, 5495,
7235, 5497, 5503, 5504, 5500, 5505, 5506, 5507, 5508, 5509,
5512, 5513, 5515, 5516, 5517, 5519, 5520, 5527, 5531, 5532,
5538, 7235, 5524, 7235, 5540, 5541, 5542, 5544, 5545, 5546,
5547, 5548, 5551, 7235, 7235, 5553, 5556, 5555, 5562, 5557,
5559, 5576, 5567, 5565, 5579, 7235, 5569, 5571, 5581, 5585,
5591, 5582, 7235, 5588, 5592, 5594, 5593, 5596, 5598, 7235,
5599, 5600, 5602, 5604, 5608, 5610, 5615, 5617, 5618, 5619,
5620, 5621, 5624, 7235, 7235, 7235, 7235, 5625, 5628, 5630,
5634, 5631, 5636, 5638, 5639, 5645, 5646, 5643, 5640, 5647,
7235, 5657, 7235, 7235, 5653, 7235, 5659, 5661, 5663, 5665,
5650, 5667, 5666, 7235, 5670, 7235, 5672, 5678, 5671, 5680,
5682, 5684, 5687, 5691, 5688, 5692, 5693, 5694, 5702, 5698,
5699, 5701, 5704, 5708, 5714, 7235, 7235, 5705, 5720, 5721,
5723, 5710, 5725, 5726, 5733, 5728, 5729, 5735, 5731, 5737,
5736, 5747, 5748, 5738, 5739, 5750, 7235, 5752, 5753, 5760,
7235, 5754, 7235, 5756, 5762, 5764, 5755, 5765, 5768, 5770,
5771, 5774, 5776, 5781, 7235, 7235, 5775, 5788, 5784, 7235,
7235, 5785, 5787, 5789, 5791, 5795, 5792, 5796, 7235, 5797,
5802, 5800, 5798, 5803, 5817, 5805, 7235, 5808, 7235, 5812,
5821, 5820, 5814, 5828, 5833, 5826, 5829, 5836, 5835, 5838,
5831, 5837, 7235, 5840, 5841, 7235, 5850, 5848, 5853, 5843,
5852, 5859, 5855, 7235, 5862, 5860, 5865, 5867, 5869, 5872,
7235, 5874, 5875, 5876, 5877, 7235, 5883, 7235, 5880, 5884,
5885, 5893, 5891, 7235, 5888, 5894, 5895, 7235, 5899, 5902,
5905, 5906, 5907, 5910, 7235, 5912, 5913, 7235, 5915, 5917,
5918, 5922, 5924, 5926, 5927, 5928, 5929, 5936, 5933, 5934,
7235, 7235, 5947, 5937, 135, 5950, 5945, 5951, 5952, 5948,
5959, 5955, 5956, 5958, 7235, 7235, 5961, 7235, 5962, 5964,
7235, 5963, 5973, 5974, 5965, 5979, 5969, 5977, 5978, 5986,
5981, 5990, 5989, 5991, 5994, 7235, 6005, 6012, 5996, 6008,
6013, 6016, 6018, 6020, 6022, 6009, 6024, 6026, 6027, 6028,
6030, 6031, 6032, 6033, 6034, 6035, 6039, 6040, 7235, 6042,
6048, 6049, 6050, 6057, 6058, 6045, 7235, 6062, 6066, 6068,
6069, 7235, 6071, 6072, 6075, 6077, 6078, 6079, 7235, 6080,
6083, 6086, 6089, 6090, 6091, 6092, 6094, 6095, 6102, 7235,
6100, 6097, 6104, 7235, 6105, 7235, 7235, 7235, 6107, 6117,
6111, 7235, 6119, 6114, 6121, 6122, 7235, 6124, 6126, 6133,
6129, 7235, 7235, 7235, 6130, 6131, 6134, 7235, 6132, 6144,
7235, 6137, 7235, 6139, 7235, 6142, 6145, 6153, 6148, 7235,
6151, 6158, 6159, 6161, 7235, 6164, 6167, 6169, 6170, 6172,
6174, 6175, 7235, 6182, 6178, 6181, 6185, 6177, 6187, 6188,
6189, 6190, 6197, 6196, 6201, 7235, 6198, 6205, 6206, 6203,
6207, 6212, 6213, 7235, 6214, 7235, 6216, 7235, 6217, 6218,
6219, 6220, 6229, 6223, 6222, 6225, 6235, 6236, 6237, 6242,
6244, 6245, 6246, 6248, 6250, 6251, 7235, 7235, 6260, 6252,
7235, 6255, 6265, 7235, 6258, 7235, 6268, 7235, 6262, 6269,
7235, 6271, 6273, 6275, 7235, 7235, 6282, 6274, 6277, 6290,
6283, 6288, 6291, 7235, 6292, 6295, 6296, 6298, 6300, 7235,
6303, 7235, 6301, 6308, 6307, 7235, 6304, 6305, 6314, 6318,
6319, 6320, 6323, 6324, 6327, 6325, 6338, 6311, 6329, 6328,
6344, 6337, 6346, 6347, 6353, 7235, 7235, 7235, 6339, 6355,
6362, 6358, 6360, 6365, 6361, 7235, 6364, 6367, 6368, 6370,
6377, 6374, 6381, 7235, 6372, 6376, 6378, 6382, 6386, 6383,
6388, 6387, 7235, 6398, 6400, 6406, 6407, 6401, 6408, 6410,
6417, 6419, 6411, 6422, 6414, 6423, 6430, 6426, 7235, 7235,
6429, 6425, 7235, 6433, 6435, 7235, 6436, 7235, 6437, 6438,
6439, 6440, 6442, 7235, 6445, 6446, 6447, 6450, 7235, 6448,
6452, 6454, 6457, 6463, 7235, 6451, 6471, 6470, 6473, 6474,
6475, 7235, 7235, 6476, 6478, 7235, 6482, 6483, 6484, 6491,
6487, 6486, 6496, 6500, 7235, 6489, 6501, 6502, 6503, 6504,
6507, 6508, 7235, 6510, 6511, 6512, 6513, 7235, 6516, 6515,
6520, 6521, 6524, 7235, 6535, 6525, 6547, 6539, 7235, 6526,
6390, 6536, 7235, 7235, 7235, 6528, 6551, 6548, 7235, 7235,
7235, 6543, 7235, 6554, 6555, 6556, 6562, 7235, 6557, 7235,
7235, 6564, 6568, 6573, 6577, 6581, 6580, 7235, 6569, 6582,
6586, 6583, 6588, 7235, 7235, 6590, 6592, 6567, 6594, 6595,
6597, 6598, 6599, 7235, 7235, 6603, 6604, 6605, 6606, 6607,
7235, 6608, 6612, 6621, 6618, 6623, 6630, 6632, 6610, 6633,
6634, 6641, 6642, 6637, 6639, 6644, 6645, 6647, 6648, 6656,
6657, 6653, 6661, 6664, 6658, 6666, 7235, 7235, 6669, 6670,
7235, 6675, 6672, 7235, 6676, 7235, 6678, 6680, 6683, 6686,
7235, 6688, 6690, 6692, 6696, 6693, 7235, 6697, 6699, 7235,
6701, 6702, 6703, 6704, 7235, 6705, 6708, 6709, 6713, 6710,
6714, 6717, 6721, 6731, 7235, 6718, 6735, 7235, 7235, 6723,
6736, 6716, 6737, 6726, 7235, 6740, 6751, 6732, 6747, 6748,
6750, 6749, 7235, 6753, 6754, 7235, 7235, 6756, 6755, 7235,
6757, 7235, 6761, 6762, 7235, 7235, 7235, 7235, 7235, 7235,
7235, 7235, 6764, 6771, 7235, 7235, 6766, 6773, 6776, 6778,
7235, 6781, 7235, 6783, 6784, 6785, 6788, 7235, 6786, 7235,
6790, 6791, 6792, 5998, 6794, 6795, 6798, 6799, 6801, 6804,
6803, 6807, 6805, 6812, 6810, 6816, 6817, 6821, 6823, 6831,
6825, 6827, 7235, 7235, 7235, 7235, 6833, 6834, 6836, 6839,
6841, 6843, 6850, 6852, 6838, 6846, 6853, 6855, 6858, 6859,
6861, 6868, 6864, 6865, 6867, 6870, 6871, 6874, 6880, 6882,
7235, 6886, 6875, 6883, 6888, 7235, 6889, 7235, 6892, 7235,
7235, 6894, 6895, 6897, 6898, 6906, 6907, 6899, 6903, 6908,
6909, 6912, 7235, 6919, 7235, 7235, 7235, 7235, 6915, 6920,
7235, 6921, 6922, 7235, 6923, 6924, 6925, 6928, 6932, 6930,
6933, 6934, 6947, 7235, 7235, 6931, 6937, 6942, 6953, 6954,
6956, 6957, 6960, 6962, 6963, 6964, 6972, 7235, 6970, 6971,
6974, 7235, 6975, 6977, 6978, 6980, 6981, 6988, 6984, 6989,
7235, 6986, 7235, 6991, 6992, 6993, 6994, 6995, 6997, 7005,
7007, 7008, 7235, 7009, 7015, 7011, 7017, 7019, 7022, 7024,
7023, 7026, 7028, 7032, 7037, 7038, 7039, 7029, 7044, 7040,
7235, 7051, 7041, 7235, 7047, 7053, 7043, 7054, 7055, 7235,
7064, 7057, 7061, 7065, 7068, 7070, 7235, 7072, 7075, 7078,
7235, 7079, 7235, 7235, 7081, 7069, 7082, 7090, 7092, 7235,
7235, 7235, 7115, 7122, 7129, 7136, 7143, 7150, 7157, 88,
7164, 7171, 7178, 7185, 7192, 7199, 7206, 7213, 7220, 7227
} ;
static const flex_int16_t yy_def[3731] =
{ 0,
3712, 1, 3713, 3713, 3714, 3714, 3715, 3715, 3716, 3716,
3717, 3717, 3718, 3718, 3719, 3719, 3712, 3720, 3712, 3712,
3712, 3712, 3721, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3722, 3712, 3712, 3712,
3722, 3723, 3712, 3712, 3712, 3723, 3724, 3712, 3712, 3712,
3712, 3724, 3725, 3712, 3712, 3712, 3725, 3726, 3712, 3727,
3712, 3726, 3726, 3728, 3712, 3712, 3712, 3712, 3728, 3729,
3712, 3712, 3712, 3729, 3720, 3720, 3712, 3730, 3721, 3730,
3721, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3722,
3722, 3723, 3723, 3724, 3724, 3712, 3725, 3725, 3726, 3726,
3727, 3727, 3726, 3728, 3728, 3712, 3729, 3729, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3726, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3726, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3726, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3726, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3720, 3712, 3712, 3720, 3712, 3712, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3726, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3726, 3726, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3726,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3712, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3726, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3726, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3712, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3726, 3720, 3712, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3712, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3712, 3720, 3712, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3712, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3726, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3726, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3712,
3712, 3720, 3720, 3720, 3720, 3720, 3712, 3712, 3720, 3712,
3720, 3712, 3720, 3720, 3712, 3712, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3712, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3726, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3712, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3712, 3712, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3712, 3712, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3726, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3712, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3712, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3712, 3720, 3720, 3720, 3712,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3712, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3712, 3720, 3720, 3726, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3712, 3720, 3712, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3712, 3720, 3712, 3712, 3712, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3720, 3712, 3712, 3712, 3720, 3720, 3720, 3712, 3720, 3720,
3712, 3720, 3712, 3720, 3712, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3712, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3712, 3720, 3720,
3712, 3720, 3720, 3712, 3720, 3712, 3720, 3712, 3720, 3720,
3712, 3720, 3720, 3720, 3712, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3712, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3712, 3712, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3712,
3720, 3720, 3712, 3720, 3720, 3712, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3712, 3712, 3720, 3720, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3712, 3720,
3720, 3720, 3712, 3712, 3712, 3720, 3720, 3720, 3712, 3712,
3712, 3720, 3712, 3720, 3720, 3720, 3720, 3712, 3720, 3712,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3720, 3720, 3712, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3712, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3712, 3720, 3720,
3712, 3720, 3720, 3712, 3720, 3712, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3712, 3712, 3720,
3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3712, 3712, 3720, 3720, 3712,
3720, 3712, 3720, 3720, 3712, 3712, 3712, 3712, 3712, 3712,
3712, 3712, 3720, 3720, 3712, 3712, 3720, 3720, 3720, 3720,
3712, 3720, 3712, 3720, 3720, 3720, 3720, 3712, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3712, 3712, 3712, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3720, 3720, 3712, 3720, 3712, 3720, 3712,
3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3712, 3712, 3712, 3712, 3720, 3720,
3712, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3712, 3712, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720,
3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720, 3720,
3712, 3720, 3720, 3712, 3720, 3720, 3720, 3720, 3720, 3712,
3720, 3720, 3720, 3720, 3720, 3720, 3712, 3720, 3720, 3720,
3712, 3720, 3712, 3712, 3720, 3720, 3720, 3720, 3720, 3712,
3712, 0, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712,
3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712
} ;
static const flex_int16_t yy_nxt[7276] =
{ 0,
18, 19, 20, 21, 22, 23, 22, 18, 18, 18,
18, 18, 22, 24, 25, 26, 27, 28, 29, 30,
18, 31, 32, 33, 34, 35, 36, 37, 38, 39,
40, 41, 42, 43, 44, 45, 18, 18, 18, 46,
48, 49, 50, 48, 49, 50, 53, 54, 53, 54,
55, 51, 55, 85, 51, 85, 85, 56, 85, 56,
58, 59, 60, 61, 85, 22, 58, 59, 60, 61,
86, 22, 62, 64, 65, 66, 86, 97, 62, 64,
65, 66, 87, 86, 67, 119, 88, 108, 85, 86,
67, 19, 20, 21, 69, 70, 71, 75, 76, 77,
78, 86, 22, 72, 121, 86, 120, 109, 86, 79,
160, 160, 73, 19, 20, 21, 69, 70, 71, 75,
76, 77, 78, 187, 22, 72, 81, 82, 83, 130,
90, 79, 90, 90, 73, 90, 86, 84, 81, 82,
83, 90, 91, 86, 86, 98, 92, 93, 170, 84,
94, 159, 99, 86, 110, 95, 100, 162, 86, 101,
162, 170, 86, 112, 96, 86, 167, 167, 111, 86,
102, 113, 137, 115, 103, 173, 116, 104, 86, 105,
106, 179, 114, 117, 170, 118, 86, 122, 86, 126,
107, 86, 156, 127, 86, 123, 157, 184, 86, 138,
158, 124, 87, 139, 86, 125, 88, 128, 180, 129,
86, 131, 86, 140, 141, 132, 142, 143, 86, 133,
144, 86, 148, 86, 149, 134, 86, 145, 135, 86,
152, 146, 147, 150, 86, 136, 177, 177, 183, 151,
153, 181, 196, 189, 154, 155, 164, 86, 164, 164,
90, 164, 90, 90, 169, 90, 169, 169, 174, 169,
174, 174, 172, 174, 85, 86, 85, 85, 90, 85,
90, 90, 291, 90, 86, 85, 86, 182, 86, 90,
91, 185, 190, 188, 86, 86, 197, 86, 191, 86,
192, 86, 86, 208, 186, 86, 86, 86, 86, 86,
200, 199, 193, 194, 86, 198, 86, 195, 86, 201,
86, 202, 247, 210, 206, 203, 204, 207, 209, 86,
211, 216, 212, 205, 86, 213, 86, 86, 86, 218,
86, 219, 86, 221, 86, 86, 227, 222, 214, 215,
86, 228, 226, 224, 86, 86, 217, 230, 225, 86,
86, 220, 86, 223, 231, 233, 234, 229, 86, 86,
86, 86, 232, 236, 86, 238, 86, 242, 235, 239,
86, 86, 86, 86, 244, 240, 237, 178, 86, 86,
86, 241, 86, 245, 243, 250, 253, 254, 86, 246,
255, 249, 86, 86, 86, 256, 251, 248, 262, 259,
252, 263, 86, 86, 261, 265, 86, 86, 86, 86,
260, 269, 257, 86, 266, 258, 86, 86, 264, 268,
270, 272, 160, 160, 86, 162, 267, 271, 162, 275,
164, 273, 164, 164, 341, 164, 167, 167, 169, 86,
169, 169, 90, 169, 90, 90, 170, 90, 174, 274,
174, 174, 276, 174, 172, 177, 177, 278, 86, 86,
86, 86, 86, 86, 86, 86, 86, 277, 280, 86,
283, 286, 282, 86, 279, 281, 86, 289, 288, 285,
176, 292, 284, 86, 290, 287, 86, 293, 294, 86,
295, 321, 86, 298, 86, 296, 86, 303, 299, 86,
305, 86, 86, 300, 86, 306, 86, 308, 86, 301,
302, 304, 297, 309, 86, 312, 310, 86, 86, 86,
307, 86, 314, 86, 315, 86, 86, 86, 175, 86,
86, 86, 322, 316, 311, 323, 329, 317, 319, 86,
318, 320, 86, 324, 313, 332, 325, 86, 326, 330,
336, 86, 86, 333, 86, 331, 86, 334, 338, 339,
327, 378, 328, 86, 86, 86, 342, 337, 86, 335,
344, 86, 86, 343, 340, 345, 86, 346, 86, 86,
347, 349, 86, 86, 86, 348, 86, 86, 351, 86,
86, 86, 350, 86, 86, 353, 359, 86, 86, 354,
86, 357, 86, 86, 352, 364, 360, 358, 355, 86,
365, 86, 86, 361, 356, 86, 362, 366, 370, 368,
86, 367, 363, 373, 86, 86, 86, 86, 376, 86,
86, 369, 375, 86, 379, 380, 382, 86, 371, 372,
86, 86, 86, 86, 387, 374, 86, 385, 86, 377,
86, 384, 381, 386, 86, 383, 389, 86, 86, 390,
170, 86, 86, 393, 86, 86, 86, 86, 388, 86,
412, 392, 394, 396, 398, 400, 391, 401, 86, 86,
395, 86, 86, 86, 397, 86, 404, 402, 86, 399,
403, 86, 86, 405, 86, 86, 86, 407, 411, 86,
86, 413, 406, 409, 86, 408, 86, 414, 415, 86,
417, 86, 86, 418, 416, 86, 419, 86, 86, 410,
421, 86, 422, 86, 86, 426, 170, 86, 428, 86,
420, 86, 423, 424, 86, 86, 430, 429, 86, 86,
425, 427, 86, 431, 86, 433, 86, 435, 436, 438,
86, 434, 86, 86, 86, 86, 439, 86, 442, 86,
432, 86, 443, 86, 86, 441, 86, 445, 86, 448,
86, 440, 86, 437, 446, 450, 86, 453, 86, 444,
86, 454, 447, 86, 449, 86, 86, 86, 452, 462,
86, 86, 451, 86, 471, 464, 563, 455, 86, 86,
472, 474, 475, 476, 463, 473, 86, 456, 477, 86,
457, 86, 479, 86, 478, 458, 459, 460, 461, 86,
86, 86, 465, 480, 466, 86, 481, 86, 86, 86,
486, 488, 86, 86, 487, 482, 467, 468, 469, 86,
470, 86, 483, 86, 489, 484, 485, 86, 490, 86,
491, 86, 86, 497, 492, 495, 493, 494, 86, 499,
86, 500, 86, 501, 86, 86, 86, 86, 506, 505,
496, 507, 502, 498, 86, 86, 86, 1605, 86, 503,
508, 510, 504, 511, 86, 86, 509, 513, 86, 518,
512, 519, 520, 86, 517, 86, 86, 86, 86, 86,
514, 521, 535, 515, 86, 516, 86, 522, 86, 523,
537, 86, 86, 86, 86, 524, 540, 170, 534, 525,
536, 86, 602, 538, 526, 539, 542, 527, 86, 528,
86, 529, 541, 558, 86, 553, 551, 86, 557, 552,
554, 86, 86, 555, 530, 86, 168, 531, 565, 532,
556, 533, 86, 86, 543, 544, 86, 559, 86, 86,
572, 86, 560, 562, 545, 546, 547, 548, 549, 86,
566, 550, 86, 86, 86, 561, 86, 568, 564, 570,
567, 571, 86, 575, 86, 576, 86, 573, 574, 86,
86, 580, 86, 86, 577, 569, 86, 86, 578, 584,
585, 583, 86, 86, 579, 86, 86, 86, 86, 582,
86, 86, 591, 590, 86, 598, 86, 581, 592, 593,
86, 587, 588, 586, 589, 86, 86, 599, 86, 595,
596, 86, 86, 86, 86, 600, 594, 614, 617, 604,
605, 86, 615, 86, 601, 597, 603, 86, 86, 619,
618, 606, 616, 607, 86, 86, 86, 86, 86, 608,
86, 622, 621, 623, 86, 86, 166, 609, 610, 620,
624, 611, 612, 86, 626, 613, 86, 627, 625, 628,
86, 629, 86, 86, 631, 632, 86, 86, 86, 86,
633, 86, 86, 86, 636, 630, 86, 637, 86, 638,
86, 86, 634, 86, 86, 640, 644, 639, 86, 635,
86, 86, 86, 643, 86, 646, 641, 647, 642, 86,
649, 86, 650, 648, 86, 645, 86, 653, 86, 651,
86, 655, 652, 86, 86, 86, 654, 86, 86, 86,
86, 657, 86, 661, 659, 86, 86, 668, 670, 656,
86, 672, 663, 86, 86, 658, 86, 86, 660, 662,
664, 86, 665, 666, 669, 671, 667, 86, 86, 86,
86, 86, 673, 677, 681, 674, 675, 86, 86, 676,
86, 86, 684, 678, 683, 86, 679, 680, 86, 86,
86, 86, 86, 86, 687, 690, 86, 682, 691, 686,
86, 86, 86, 86, 86, 693, 685, 86, 86, 165,
86, 692, 688, 689, 86, 86, 696, 694, 708, 86,
710, 695, 86, 697, 705, 707, 709, 86, 698, 706,
699, 712, 86, 86, 86, 711, 700, 86, 701, 713,
86, 702, 703, 714, 721, 716, 720, 715, 704, 718,
86, 86, 719, 86, 86, 722, 86, 725, 86, 86,
728, 86, 86, 730, 86, 717, 723, 86, 86, 724,
86, 734, 86, 86, 86, 86, 732, 86, 727, 726,
737, 86, 731, 733, 86, 86, 729, 86, 86, 743,
738, 735, 740, 739, 741, 736, 742, 170, 745, 86,
86, 744, 86, 748, 86, 86, 86, 86, 86, 86,
86, 746, 752, 757, 86, 747, 749, 86, 756, 754,
750, 758, 753, 86, 751, 86, 760, 86, 86, 86,
86, 755, 86, 762, 86, 759, 86, 761, 86, 765,
86, 766, 763, 771, 764, 767, 86, 163, 772, 86,
774, 86, 768, 775, 86, 769, 770, 776, 86, 773,
777, 86, 779, 86, 778, 86, 780, 86, 86, 86,
86, 781, 86, 785, 86, 86, 782, 86, 86, 786,
86, 784, 86, 789, 86, 788, 86, 790, 783, 794,
793, 86, 86, 86, 787, 86, 796, 86, 798, 86,
86, 791, 86, 792, 86, 800, 86, 86, 86, 86,
807, 795, 803, 799, 86, 797, 86, 801, 86, 808,
86, 802, 86, 86, 805, 804, 810, 86, 815, 806,
86, 811, 809, 86, 812, 813, 86, 86, 814, 86,
816, 818, 819, 822, 86, 86, 817, 820, 824, 86,
86, 86, 86, 823, 821, 825, 86, 827, 86, 828,
86, 86, 86, 829, 86, 86, 830, 86, 832, 834,
836, 86, 86, 86, 86, 833, 837, 826, 831, 839,
86, 86, 845, 86, 86, 835, 86, 161, 86, 86,
846, 838, 843, 86, 840, 841, 842, 86, 844, 86,
847, 848, 849, 86, 86, 86, 850, 852, 86, 86,
851, 857, 856, 853, 855, 86, 86, 86, 859, 860,
858, 86, 854, 86, 86, 86, 864, 86, 862, 86,
86, 865, 86, 871, 86, 868, 86, 86, 86, 86,
866, 863, 867, 874, 86, 873, 861, 86, 876, 869,
870, 877, 86, 872, 881, 86, 86, 875, 879, 878,
86, 86, 86, 887, 885, 86, 883, 86, 882, 886,
86, 86, 86, 880, 889, 86, 884, 891, 86, 86,
86, 86, 897, 86, 86, 86, 890, 898, 86, 892,
888, 86, 86, 899, 86, 86, 893, 894, 904, 895,
900, 896, 86, 907, 86, 86, 901, 905, 86, 86,
902, 86, 86, 903, 86, 86, 86, 906, 914, 909,
910, 86, 86, 86, 908, 86, 86, 86, 924, 86,
911, 86, 916, 912, 913, 86, 922, 86, 86, 915,
917, 918, 919, 923, 920, 921, 86, 86, 86, 926,
925, 86, 929, 930, 86, 86, 927, 86, 928, 86,
86, 86, 86, 86, 934, 935, 936, 931, 933, 86,
86, 86, 942, 932, 938, 939, 86, 86, 941, 86,
940, 946, 86, 170, 86, 937, 944, 86, 947, 86,
943, 945, 948, 86, 86, 86, 950, 949, 86, 952,
955, 86, 86, 951, 86, 956, 958, 86, 86, 953,
86, 960, 962, 957, 86, 959, 86, 86, 86, 954,
964, 86, 86, 86, 968, 86, 86, 961, 86, 965,
86, 969, 970, 86, 963, 86, 86, 86, 86, 86,
967, 86, 86, 86, 971, 983, 966, 984, 981, 986,
86, 987, 86, 972, 982, 973, 86, 993, 974, 86,
985, 975, 86, 989, 86, 976, 988, 86, 977, 86,
990, 86, 991, 992, 996, 978, 979, 86, 980, 86,
86, 994, 1006, 86, 995, 86, 997, 998, 86, 999,
86, 86, 1000, 86, 1009, 86, 86, 1001, 1013, 1005,
1011, 1008, 86, 1002, 1003, 86, 1004, 1015, 86, 1007,
86, 178, 1019, 1018, 1014, 1010, 1012, 1020, 86, 86,
1016, 86, 1022, 86, 86, 86, 1021, 86, 1025, 1024,
1026, 86, 86, 1017, 1027, 1029, 86, 1028, 1023, 86,
86, 1030, 86, 86, 86, 86, 86, 1033, 86, 1037,
86, 86, 1031, 1036, 86, 86, 1040, 86, 86, 1046,
86, 1032, 1042, 1044, 1034, 1035, 1038, 86, 1039, 86,
86, 1047, 1045, 86, 86, 1041, 1048, 86, 1049, 1050,
1043, 86, 86, 1054, 1056, 86, 86, 1055, 1051, 86,
86, 86, 1058, 1052, 1057, 86, 1060, 86, 1061, 86,
86, 1053, 86, 1059, 86, 86, 86, 86, 1062, 1064,
1065, 86, 1066, 86, 1070, 86, 86, 86, 1073, 86,
1063, 86, 1074, 86, 1072, 1067, 1071, 1068, 86, 86,
86, 86, 1069, 86, 86, 86, 86, 86, 1077, 1075,
1078, 1080, 1076, 1081, 86, 86, 1086, 1082, 86, 1084,
1083, 1088, 86, 86, 1079, 86, 1089, 86, 1085, 86,
1091, 1087, 86, 86, 86, 86, 1090, 86, 1092, 86,
1097, 1094, 86, 86, 1093, 1099, 1100, 86, 1098, 86,
86, 86, 1096, 86, 1102, 86, 1101, 1095, 86, 86,
1103, 86, 1104, 1110, 86, 1113, 86, 1108, 86, 86,
1105, 86, 86, 1106, 86, 1107, 1109, 1114, 1115, 1111,
86, 86, 86, 1112, 86, 1116, 1119, 86, 1118, 1120,
86, 1117, 1122, 1123, 86, 86, 1121, 86, 86, 86,
86, 86, 1134, 1124, 1126, 86, 1128, 86, 86, 1135,
1125, 86, 86, 86, 86, 86, 86, 1127, 1137, 1129,
1131, 1146, 1130, 1140, 86, 1132, 1136, 1133, 1138, 86,
1141, 1139, 1143, 86, 86, 86, 86, 1142, 86, 1148,
86, 1149, 1150, 1151, 86, 86, 1144, 86, 86, 1154,
86, 1156, 86, 86, 1145, 86, 1147, 86, 1153, 86,
1159, 1162, 1152, 86, 1158, 86, 1163, 170, 86, 1165,
1155, 1157, 86, 1160, 86, 1161, 86, 1166, 1164, 1169,
86, 86, 86, 86, 86, 86, 86, 1182, 86, 86,
1167, 86, 1168, 1183, 86, 1187, 1172, 1173, 86, 1170,
1185, 86, 86, 1174, 1208, 1171, 1175, 86, 86, 1184,
1176, 86, 1177, 1186, 86, 1192, 1178, 1188, 1179, 1190,
1193, 86, 1189, 1180, 86, 1191, 86, 86, 1181, 86,
86, 1196, 86, 1194, 86, 1199, 86, 1202, 86, 86,
1195, 176, 86, 1197, 1198, 1200, 1201, 86, 86, 86,
1203, 1206, 1207, 1205, 1209, 1210, 1211, 1212, 86, 1204,
1213, 86, 86, 1214, 86, 86, 86, 86, 86, 86,
1215, 86, 1229, 1226, 86, 86, 86, 175, 86, 1225,
86, 1230, 86, 1216, 1217, 86, 1218, 1228, 1227, 86,
1231, 1219, 1232, 1220, 86, 86, 1233, 86, 86, 1221,
86, 1238, 1239, 1234, 1222, 1223, 86, 86, 86, 86,
1240, 1224, 86, 1235, 1236, 86, 1237, 1245, 86, 1246,
86, 1248, 86, 86, 1241, 1242, 1243, 86, 86, 86,
1244, 1249, 1253, 86, 1251, 86, 1252, 86, 86, 86,
1247, 1250, 1254, 86, 1256, 1259, 86, 86, 1257, 86,
86, 86, 1255, 86, 1262, 1260, 86, 86, 86, 1258,
86, 86, 86, 86, 1269, 86, 1261, 1264, 1271, 1266,
1263, 1267, 1268, 86, 86, 1273, 1265, 1270, 86, 86,
1277, 1272, 86, 86, 1276, 86, 86, 86, 1370, 86,
86, 86, 86, 1274, 1282, 1283, 1284, 1279, 86, 86,
1281, 1278, 86, 1275, 1287, 1280, 1288, 1285, 86, 1286,
86, 1289, 86, 86, 1290, 86, 1293, 86, 86, 86,
1295, 1294, 86, 1296, 86, 86, 1291, 1298, 86, 86,
86, 1292, 1297, 86, 1305, 86, 1307, 86, 1300, 1299,
86, 86, 86, 1303, 1301, 86, 1309, 1302, 1304, 86,
1311, 86, 1308, 86, 1312, 1306, 86, 86, 86, 1310,
86, 1314, 1315, 86, 86, 86, 86, 1317, 1318, 1319,
86, 86, 1321, 86, 1313, 1324, 1316, 1320, 86, 1323,
1326, 86, 1325, 86, 86, 86, 1322, 1328, 86, 1329,
86, 86, 86, 86, 1335, 1333, 1327, 86, 1336, 1337,
86, 170, 1338, 1330, 86, 86, 1334, 86, 1340, 1331,
86, 1332, 1339, 1342, 86, 1341, 86, 86, 86, 86,
1346, 1343, 86, 1348, 86, 86, 86, 1347, 86, 86,
86, 86, 86, 86, 1349, 1344, 1351, 1350, 1345, 86,
86, 86, 1354, 1355, 1356, 86, 1357, 1352, 86, 1353,
1358, 86, 1361, 1362, 86, 86, 86, 1359, 86, 86,
1364, 1365, 86, 86, 86, 86, 1363, 1360, 86, 86,
1367, 86, 86, 1366, 170, 1368, 86, 1372, 1376, 86,
86, 86, 1369, 1371, 1377, 1378, 1379, 86, 1373, 86,
86, 1375, 86, 86, 1380, 168, 1374, 1384, 86, 1386,
86, 1381, 1383, 1388, 1382, 1389, 86, 1385, 86, 86,
86, 86, 86, 1387, 1392, 1391, 86, 86, 86, 86,
86, 1393, 1390, 1397, 1396, 86, 86, 86, 1402, 86,
86, 1394, 1395, 1399, 86, 86, 86, 86, 86, 1398,
1400, 86, 1406, 1414, 1403, 1412, 1401, 86, 86, 86,
1405, 86, 1404, 1408, 86, 1413, 1416, 1407, 1415, 86,
86, 1417, 1409, 1418, 1410, 86, 86, 1411, 86, 86,
1419, 1425, 86, 1422, 86, 1421, 86, 86, 86, 1426,
86, 1430, 86, 1420, 1424, 86, 86, 86, 1423, 1428,
1427, 1431, 1432, 86, 86, 86, 86, 86, 1434, 1429,
1435, 86, 86, 1436, 86, 1433, 86, 1440, 86, 86,
1437, 86, 1438, 1443, 86, 86, 1441, 1442, 86, 86,
1439, 1444, 1451, 86, 1448, 86, 86, 1445, 86, 1449,
1450, 86, 1446, 1447, 86, 1454, 86, 86, 86, 86,
86, 1461, 86, 1452, 1463, 1453, 1455, 86, 1457, 86,
86, 86, 86, 1456, 1460, 86, 1458, 1464, 86, 86,
1462, 86, 86, 1459, 1469, 1465, 1466, 1470, 1468, 1467,
1471, 86, 86, 86, 86, 1472, 86, 86, 1476, 1569,
1473, 86, 86, 1485, 1486, 1474, 1475, 86, 1477, 86,
86, 1489, 1478, 1494, 1484, 1479, 1480, 86, 1487, 86,
1481, 1490, 1512, 86, 1488, 86, 1482, 86, 1491, 86,
1483, 86, 1493, 86, 1492, 86, 1495, 86, 1500, 86,
1496, 1501, 1497, 86, 86, 1498, 1502, 86, 1503, 86,
86, 1499, 86, 86, 1508, 1505, 1509, 86, 86, 86,
86, 1511, 86, 1510, 86, 86, 1506, 166, 1513, 1504,
1518, 1507, 86, 1514, 86, 1515, 86, 1516, 1519, 1517,
86, 1520, 1521, 1522, 86, 86, 86, 1523, 1524, 1525,
86, 1529, 1526, 86, 86, 86, 1530, 86, 86, 1528,
1533, 86, 1531, 86, 1527, 86, 86, 1539, 86, 1540,
1535, 86, 1534, 86, 86, 86, 1532, 86, 86, 86,
1538, 86, 1536, 1541, 1537, 1542, 1544, 1546, 1543, 1545,
86, 86, 86, 86, 1551, 86, 86, 1547, 1550, 1553,
86, 86, 86, 1554, 1549, 1555, 86, 1552, 86, 1548,
86, 1556, 1559, 86, 86, 1557, 86, 1558, 1561, 86,
86, 1562, 86, 86, 1567, 86, 86, 1563, 86, 86,
1560, 1570, 1572, 86, 86, 1564, 86, 1565, 86, 1573,
86, 86, 1574, 1575, 1566, 86, 1568, 86, 1577, 1571,
86, 86, 86, 86, 1576, 1578, 1580, 1582, 86, 86,
1579, 1583, 1585, 1584, 1581, 86, 86, 1587, 86, 86,
1586, 86, 86, 1588, 1593, 86, 1594, 1590, 86, 1591,
86, 86, 86, 1595, 1597, 86, 1596, 1589, 1592, 86,
86, 86, 1601, 86, 1598, 86, 86, 170, 86, 86,
86, 1603, 1600, 1609, 1610, 86, 86, 1612, 1599, 86,
86, 1611, 1606, 86, 86, 1602, 1604, 86, 86, 1607,
1613, 86, 86, 1608, 86, 1620, 1614, 86, 86, 86,
1617, 86, 86, 86, 1615, 1618, 86, 1616, 1624, 86,
1619, 1625, 86, 165, 1627, 86, 86, 1621, 86, 1623,
1629, 1628, 1626, 1622, 1631, 1630, 86, 1632, 86, 1634,
86, 1635, 86, 86, 86, 86, 1633, 1638, 1643, 86,
1639, 1641, 1640, 86, 86, 1636, 86, 1644, 1637, 1642,
1646, 86, 86, 1648, 86, 1647, 86, 1645, 86, 1651,
86, 86, 86, 1652, 86, 1653, 86, 86, 86, 1656,
1650, 86, 86, 86, 1661, 86, 86, 1649, 1665, 1654,
1662, 1658, 1655, 86, 86, 86, 1657, 1664, 86, 1659,
1660, 86, 86, 1663, 86, 1666, 86, 86, 86, 1674,
86, 1667, 86, 1673, 86, 1669, 86, 1668, 86, 1670,
86, 1671, 86, 1675, 86, 1680, 1672, 86, 1676, 1679,
1677, 86, 1684, 1678, 1683, 1685, 1682, 1681, 1686, 86,
86, 86, 86, 1688, 86, 1689, 86, 86, 86, 163,
86, 1694, 1695, 1687, 1690, 1693, 1691, 86, 86, 1696,
86, 1697, 86, 1698, 86, 86, 1701, 86, 1692, 86,
86, 86, 86, 1702, 86, 86, 1705, 86, 1709, 1703,
86, 1708, 1699, 86, 1700, 86, 1706, 86, 86, 1704,
1707, 1711, 1712, 86, 86, 1720, 1715, 86, 1717, 1713,
1710, 1716, 86, 1718, 86, 86, 86, 1714, 86, 86,
86, 86, 1728, 1719, 1724, 1723, 1721, 86, 86, 86,
86, 86, 1729, 86, 1722, 1734, 86, 1725, 86, 1727,
1726, 86, 1737, 86, 1736, 86, 1732, 1730, 86, 86,
1731, 86, 86, 86, 86, 1735, 161, 86, 86, 1733,
86, 1746, 1738, 86, 1739, 86, 1747, 1743, 1740, 86,
1741, 1742, 1745, 1751, 86, 1744, 86, 1748, 1752, 86,
86, 1750, 86, 86, 1749, 1753, 1754, 86, 86, 1755,
86, 86, 86, 1759, 86, 86, 1757, 1760, 1756, 1763,
86, 1758, 1767, 86, 86, 1769, 86, 1764, 1762, 1768,
1761, 86, 86, 1772, 86, 1765, 1766, 86, 1774, 86,
86, 1770, 1773, 86, 1775, 1771, 86, 86, 86, 1780,
1781, 86, 86, 86, 86, 86, 1778, 86, 1785, 1784,
1786, 86, 86, 1776, 1777, 1789, 86, 86, 1779, 86,
1782, 1788, 86, 86, 1783, 1790, 86, 86, 86, 86,
1794, 1787, 86, 1791, 86, 1792, 86, 1799, 1797, 1793,
86, 86, 86, 86, 86, 1805, 86, 1806, 1803, 1795,
86, 86, 1796, 86, 1798, 1800, 86, 86, 1804, 1807,
86, 1802, 1801, 86, 1812, 86, 86, 86, 86, 1817,
86, 1808, 1809, 1815, 86, 86, 86, 1820, 1818, 1813,
1811, 1810, 1816, 86, 1814, 86, 86, 86, 86, 86,
86, 1824, 1827, 86, 1826, 1819, 86, 1823, 170, 1828,
86, 86, 86, 1829, 1822, 1821, 1830, 1825, 86, 86,
86, 86, 1838, 86, 1831, 86, 1833, 86, 1832, 86,
1839, 1842, 86, 1836, 1844, 86, 86, 1834, 1835, 86,
86, 1846, 1848, 1840, 1843, 1837, 86, 1841, 86, 1850,
86, 1847, 1852, 86, 86, 86, 1845, 86, 86, 86,
1849, 86, 86, 1854, 1851, 86, 1855, 86, 1857, 86,
1858, 86, 86, 1853, 1862, 86, 1859, 1860, 86, 1863,
1861, 86, 1856, 1870, 86, 86, 86, 1865, 1867, 86,
1864, 1868, 86, 86, 86, 1874, 1872, 1871, 86, 1875,
86, 1866, 86, 1869, 1880, 1877, 1878, 86, 1881, 1876,
86, 86, 1873, 1887, 86, 1885, 1882, 86, 1883, 86,
1884, 86, 1879, 86, 86, 86, 86, 86, 1886, 1892,
1891, 1893, 1894, 86, 86, 86, 86, 86, 86, 1895,
86, 1896, 1888, 86, 1889, 1898, 1890, 86, 1899, 86,
86, 86, 86, 86, 1901, 1900, 1897, 86, 86, 86,
86, 86, 86, 1902, 86, 86, 1903, 1912, 1911, 86,
86, 1904, 1906, 1905, 1907, 1908, 1914, 1909, 86, 86,
1918, 1913, 1910, 1917, 86, 86, 86, 86, 86, 86,
1915, 1916, 1923, 86, 1925, 86, 86, 1927, 86, 86,
86, 1920, 1922, 86, 1919, 1926, 86, 1921, 1929, 86,
1924, 1930, 86, 1931, 1933, 1928, 86, 86, 86, 86,
86, 1932, 86, 86, 86, 1938, 1936, 86, 1939, 86,
1945, 1940, 86, 1934, 1935, 1937, 1946, 86, 1941, 1942,
1947, 86, 86, 86, 1943, 1952, 1950, 1949, 1944, 1951,
86, 86, 86, 86, 1948, 86, 86, 1954, 1955, 1956,
86, 86, 86, 86, 86, 1958, 86, 86, 1966, 86,
1953, 2046, 1961, 86, 86, 1965, 1957, 86, 1960, 86,
1959, 86, 1963, 1962, 1968, 1964, 1967, 86, 86, 1969,
86, 1974, 1970, 86, 86, 86, 1975, 86, 1976, 1971,
86, 86, 1972, 86, 1980, 86, 1973, 1977, 1981, 86,
1984, 86, 86, 1986, 1985, 86, 86, 1982, 1979, 1978,
1983, 86, 86, 86, 1994, 1988, 1990, 1987, 1989, 1995,
86, 86, 86, 1991, 86, 86, 86, 86, 2001, 86,
1999, 1993, 86, 1992, 86, 1996, 2004, 1997, 2003, 86,
2000, 86, 86, 86, 2007, 2002, 1998, 86, 2005, 2009,
86, 86, 2011, 2008, 86, 2006, 2015, 86, 86, 86,
2013, 86, 86, 86, 86, 2010, 2014, 2012, 86, 2016,
86, 86, 86, 3712, 86, 2021, 2020, 86, 2017, 86,
2022, 86, 2018, 2019, 2030, 2023, 2024, 2025, 2028, 86,
86, 2031, 86, 2026, 86, 2027, 86, 86, 86, 2032,
2034, 86, 86, 2038, 86, 2033, 86, 2040, 86, 86,
2029, 86, 86, 86, 2035, 86, 2036, 2044, 86, 2039,
2047, 2037, 86, 86, 86, 2042, 86, 86, 2049, 2043,
2041, 2050, 2045, 2051, 86, 86, 86, 170, 86, 2055,
2058, 86, 2048, 86, 2054, 2053, 86, 86, 86, 2056,
2052, 2062, 86, 2057, 86, 2064, 86, 86, 2060, 86,
86, 2069, 2059, 86, 86, 86, 2061, 86, 2063, 2065,
2076, 2066, 86, 2073, 86, 2067, 2070, 86, 2072, 86,
2068, 2071, 2074, 2075, 86, 2078, 2077, 2079, 86, 86,
86, 86, 2081, 86, 86, 86, 2082, 86, 86, 86,
86, 2080, 86, 86, 2087, 2088, 86, 86, 2092, 86,
86, 2089, 86, 3712, 2083, 2085, 2086, 2084, 2090, 2093,
86, 86, 2091, 2100, 86, 2098, 2096, 2099, 2101, 2095,
86, 86, 2094, 2097, 86, 86, 86, 86, 86, 86,
86, 2108, 86, 86, 86, 2111, 86, 2103, 2112, 86,
86, 2102, 86, 2106, 2104, 2105, 2180, 2109, 2107, 2110,
2113, 86, 2114, 2115, 86, 86, 2116, 2117, 2120, 86,
86, 2118, 2122, 2119, 2121, 2124, 86, 86, 86, 2123,
2126, 86, 86, 86, 86, 86, 86, 86, 2128, 86,
2130, 2131, 86, 86, 2133, 2125, 2134, 86, 86, 86,
2135, 86, 86, 2139, 2137, 2127, 2138, 86, 2141, 2129,
86, 86, 2140, 2132, 86, 86, 86, 86, 86, 2136,
2149, 86, 2142, 2143, 2144, 86, 86, 86, 2152, 2145,
2153, 2146, 86, 2147, 2154, 86, 2148, 2150, 2151, 2155,
86, 2156, 86, 86, 2158, 2161, 2159, 2157, 86, 86,
86, 86, 2165, 86, 86, 86, 2167, 2162, 2160, 86,
86, 86, 2170, 2171, 86, 86, 2173, 86, 86, 2163,
86, 2164, 86, 86, 86, 86, 2182, 86, 2178, 2168,
2166, 2175, 2169, 2176, 86, 2172, 86, 86, 86, 2181,
86, 2177, 2179, 2174, 86, 2185, 86, 2188, 86, 2186,
86, 86, 2184, 2191, 2193, 86, 2192, 2183, 86, 86,
86, 2196, 86, 86, 2197, 2195, 2190, 86, 2200, 86,
2187, 2199, 86, 86, 2189, 2194, 86, 86, 2201, 86,
86, 2202, 2198, 86, 86, 86, 86, 2206, 2208, 86,
2212, 2203, 2207, 86, 2211, 2213, 86, 86, 86, 2204,
86, 86, 2205, 86, 2209, 86, 86, 2216, 2221, 86,
86, 2220, 86, 2215, 86, 2210, 86, 2214, 86, 86,
2218, 3712, 2226, 2217, 86, 2227, 86, 2219, 2229, 2224,
86, 2223, 2228, 86, 2222, 2225, 2230, 86, 86, 2234,
86, 2232, 2231, 86, 86, 86, 2233, 86, 86, 86,
2238, 86, 2242, 86, 2235, 86, 86, 2236, 86, 86,
2245, 2247, 86, 2237, 86, 2248, 2244, 2239, 2240, 2241,
86, 2243, 2246, 86, 2249, 86, 2253, 86, 86, 2255,
86, 3712, 2250, 2254, 2256, 86, 2251, 2257, 2259, 2260,
86, 2252, 2258, 86, 86, 86, 86, 86, 2264, 86,
86, 2262, 2263, 2261, 86, 86, 86, 86, 2268, 2265,
2266, 2267, 2270, 2272, 2273, 86, 86, 86, 86, 86,
86, 170, 86, 86, 86, 2269, 2276, 2271, 86, 2280,
86, 2281, 2277, 86, 2278, 2274, 2292, 2275, 86, 2282,
2283, 86, 2279, 2284, 86, 2286, 86, 86, 86, 86,
2285, 86, 2287, 2288, 86, 2289, 2290, 86, 86, 2291,
86, 2294, 86, 86, 2298, 86, 86, 86, 2297, 2293,
2295, 86, 2300, 86, 2296, 2299, 2301, 86, 2303, 86,
2302, 86, 86, 86, 86, 86, 86, 86, 2308, 2310,
2305, 2309, 86, 2304, 86, 86, 2312, 86, 2315, 86,
2306, 86, 2307, 2311, 86, 86, 86, 2321, 2314, 2316,
2313, 86, 86, 2318, 2319, 86, 86, 2317, 86, 86,
2322, 2320, 2328, 2325, 2323, 2327, 86, 86, 86, 2326,
86, 86, 86, 2334, 86, 86, 2324, 86, 2336, 86,
86, 86, 2337, 2329, 2330, 2333, 2331, 2332, 86, 2338,
86, 2335, 2340, 86, 2342, 86, 2341, 86, 2343, 2339,
86, 2346, 86, 86, 86, 86, 2345, 86, 86, 2351,
2348, 86, 2352, 2344, 86, 86, 2347, 86, 86, 86,
2353, 86, 86, 86, 86, 2350, 2349, 2355, 86, 2356,
86, 2358, 2360, 2357, 2362, 2354, 86, 2361, 2365, 2363,
86, 86, 2366, 86, 2368, 86, 86, 2359, 2371, 86,
86, 2364, 2378, 2369, 86, 2367, 86, 2370, 86, 2372,
86, 2374, 86, 2373, 86, 2375, 2376, 2377, 86, 2380,
86, 86, 2379, 86, 2383, 2381, 86, 86, 2386, 2382,
2384, 86, 2389, 86, 86, 2385, 2391, 86, 86, 86,
86, 2393, 86, 86, 2395, 2396, 2387, 86, 86, 86,
86, 2388, 2397, 2390, 2392, 2398, 86, 86, 2402, 86,
86, 86, 2403, 2394, 86, 2406, 2399, 2400, 2408, 86,
2407, 86, 2404, 2405, 86, 86, 2401, 2412, 86, 86,
2413, 86, 86, 86, 2417, 86, 2411, 2419, 2409, 2410,
86, 86, 2414, 86, 86, 86, 2418, 2415, 2423, 86,
86, 2425, 2421, 2416, 86, 2426, 86, 2424, 86, 86,
2422, 2420, 86, 2428, 86, 2427, 2430, 86, 86, 2433,
86, 86, 86, 2431, 2435, 86, 2432, 2429, 86, 2436,
86, 2438, 2437, 2439, 86, 86, 86, 2440, 86, 2434,
2441, 2442, 86, 2447, 86, 86, 2444, 2443, 86, 86,
86, 2446, 86, 2452, 86, 86, 86, 86, 2445, 86,
2455, 86, 2459, 2448, 2453, 86, 2449, 2450, 2451, 2454,
2460, 2456, 86, 2457, 86, 86, 2458, 86, 86, 86,
86, 2461, 86, 2463, 2465, 86, 86, 2471, 86, 86,
86, 86, 2462, 86, 2467, 2470, 2464, 2476, 2466, 2472,
2468, 2473, 86, 2474, 86, 2469, 86, 2480, 2475, 2477,
2479, 170, 2482, 86, 2484, 2485, 86, 2483, 86, 2478,
86, 86, 86, 86, 2487, 2486, 2489, 86, 86, 86,
2490, 2494, 86, 2481, 86, 2495, 86, 2493, 86, 2498,
86, 86, 86, 2488, 2491, 86, 2499, 2502, 2496, 86,
2500, 2501, 86, 2503, 86, 2492, 2497, 86, 2504, 86,
2505, 2506, 86, 86, 86, 86, 86, 86, 86, 2509,
86, 86, 2512, 86, 86, 2518, 86, 86, 2516, 86,
2511, 2519, 2507, 86, 86, 86, 2513, 2514, 2508, 2510,
2515, 86, 86, 86, 2520, 86, 2517, 2521, 86, 86,
86, 2522, 86, 2524, 2527, 2525, 2530, 86, 2531, 2529,
2523, 2528, 86, 86, 2526, 86, 86, 86, 86, 2541,
86, 2532, 86, 2542, 86, 86, 86, 86, 2547, 86,
86, 2533, 2534, 86, 2539, 86, 2537, 2544, 2535, 2538,
2536, 2540, 2543, 86, 2545, 2549, 86, 86, 86, 2546,
86, 2551, 2550, 2548, 86, 86, 86, 86, 2556, 2553,
2557, 86, 86, 2552, 2558, 2559, 86, 86, 2554, 2555,
2560, 86, 86, 2563, 2565, 86, 2564, 86, 2566, 86,
2567, 86, 2561, 86, 2562, 2570, 86, 2571, 86, 86,
2568, 86, 86, 2569, 2572, 86, 2573, 2577, 86, 2578,
86, 86, 86, 2574, 2580, 86, 86, 2576, 2582, 86,
86, 86, 2575, 2585, 86, 2584, 86, 2583, 2586, 86,
2579, 86, 86, 2589, 2581, 2587, 2591, 86, 86, 86,
2588, 86, 86, 2590, 2595, 86, 2594, 2597, 86, 86,
86, 86, 2592, 86, 86, 2599, 2601, 2600, 2593, 86,
2602, 2596, 2604, 86, 86, 86, 86, 2598, 2607, 86,
2610, 86, 2611, 2605, 86, 2603, 86, 86, 86, 2606,
2608, 86, 86, 2617, 86, 86, 2616, 86, 2609, 86,
86, 2613, 2619, 86, 2612, 86, 2615, 86, 2621, 86,
2614, 2623, 86, 86, 2618, 2620, 2625, 2626, 86, 2624,
86, 86, 2622, 2627, 86, 2631, 86, 86, 2633, 86,
2632, 2628, 2634, 2629, 2637, 86, 86, 86, 86, 2638,
86, 2639, 2640, 86, 86, 86, 2630, 2635, 86, 2636,
2645, 2642, 86, 2644, 86, 86, 86, 2647, 86, 2648,
2641, 2649, 2651, 2652, 2643, 86, 2655, 86, 86, 86,
2650, 86, 86, 86, 2646, 86, 2656, 86, 2657, 2653,
2654, 86, 86, 3712, 2660, 86, 86, 86, 2659, 86,
86, 2662, 2658, 2667, 2663, 2664, 2665, 2661, 2668, 86,
86, 86, 86, 2666, 86, 2669, 86, 2673, 2674, 86,
2670, 2672, 86, 2675, 86, 86, 2678, 170, 2677, 86,
2671, 2676, 2679, 86, 86, 86, 86, 2684, 86, 86,
86, 86, 86, 2691, 2686, 86, 86, 3712, 2685, 2680,
2682, 2681, 2683, 2687, 86, 2688, 86, 2689, 2690, 2692,
2695, 86, 86, 2696, 86, 2693, 2697, 86, 2694, 86,
86, 2700, 2698, 2701, 86, 2699, 86, 86, 2704, 86,
2703, 86, 86, 2702, 86, 2705, 86, 2710, 2706, 86,
2709, 86, 86, 86, 86, 2713, 2707, 86, 86, 2712,
2714, 2715, 86, 2716, 86, 2708, 2711, 86, 86, 2717,
86, 86, 2722, 86, 86, 2721, 2718, 2719, 86, 86,
86, 86, 86, 2724, 86, 86, 86, 2723, 2729, 2732,
2720, 2731, 86, 86, 2734, 86, 2728, 86, 2733, 2725,
2726, 2727, 86, 2735, 86, 2730, 86, 86, 86, 2741,
86, 86, 2739, 86, 86, 2736, 2745, 86, 2744, 2748,
86, 86, 86, 2737, 2746, 2738, 2742, 2743, 2747, 2740,
86, 86, 86, 86, 2752, 2750, 86, 86, 2754, 2753,
2749, 86, 86, 86, 2755, 2756, 2751, 86, 2758, 86,
2760, 86, 86, 2759, 2762, 86, 86, 2764, 86, 86,
86, 2763, 86, 2761, 86, 86, 86, 86, 86, 2757,
2768, 86, 86, 2772, 2766, 86, 2773, 2765, 2767, 2774,
86, 2775, 86, 2776, 2770, 86, 2778, 86, 2771, 86,
2769, 2779, 2777, 86, 86, 86, 86, 86, 2781, 2783,
86, 2786, 86, 86, 86, 2790, 2788, 2784, 86, 2780,
2789, 86, 2785, 2782, 86, 2793, 86, 86, 86, 2787,
2794, 86, 86, 2799, 86, 86, 2791, 2800, 86, 2792,
2801, 86, 86, 86, 86, 86, 86, 2795, 2805, 86,
2796, 2797, 2798, 2803, 86, 2804, 2806, 2809, 86, 2802,
2807, 86, 86, 2808, 86, 86, 2810, 2814, 86, 2813,
2815, 86, 2816, 86, 2817, 86, 86, 2818, 2811, 86,
86, 2819, 2812, 86, 2822, 2821, 86, 2823, 86, 2824,
86, 86, 86, 86, 2820, 86, 86, 2831, 86, 86,
2833, 86, 2825, 86, 2827, 2834, 86, 2836, 86, 86,
86, 2826, 2830, 2828, 2835, 86, 2829, 2838, 2832, 86,
86, 2837, 86, 86, 86, 2841, 86, 2839, 2844, 86,
2846, 86, 86, 2845, 86, 86, 86, 170, 86, 2840,
86, 2855, 2842, 2843, 86, 2849, 2853, 86, 86, 2854,
2851, 86, 2847, 86, 2848, 86, 2856, 86, 86, 2850,
2852, 2862, 86, 2857, 86, 86, 2858, 2866, 86, 2864,
2865, 2859, 2867, 86, 86, 2868, 2863, 2860, 86, 2869,
2861, 86, 2870, 86, 86, 86, 86, 86, 86, 86,
86, 86, 86, 86, 86, 2872, 2881, 86, 86, 2879,
86, 2871, 2874, 86, 2873, 3712, 2875, 2876, 86, 2885,
2877, 2878, 2880, 2882, 86, 2883, 2884, 2888, 2886, 2887,
86, 86, 2889, 2891, 86, 86, 2893, 86, 86, 86,
2890, 86, 86, 86, 2892, 86, 86, 86, 86, 2897,
86, 2903, 86, 86, 2905, 86, 2894, 2895, 2898, 2896,
2904, 2906, 86, 2899, 2900, 86, 2901, 2902, 86, 2910,
86, 2912, 2907, 86, 2909, 2911, 86, 86, 86, 86,
86, 86, 86, 2908, 2919, 86, 86, 2918, 86, 86,
86, 2913, 86, 86, 2915, 2917, 2914, 86, 2925, 2916,
86, 2923, 2926, 2927, 86, 86, 2920, 2928, 2921, 2922,
2929, 86, 2924, 86, 86, 86, 2930, 86, 86, 86,
86, 86, 2931, 2935, 86, 2937, 86, 2933, 86, 86,
86, 2942, 86, 2932, 2943, 86, 3712, 2934, 86, 2936,
86, 2938, 86, 2939, 86, 2944, 2940, 2941, 2946, 86,
2945, 2947, 86, 2948, 86, 86, 2949, 2950, 86, 2951,
2952, 86, 2953, 2954, 86, 86, 86, 86, 2955, 86,
2961, 86, 86, 86, 2959, 86, 2956, 86, 2965, 2964,
2966, 86, 2963, 86, 2962, 2957, 2958, 2968, 86, 2960,
86, 86, 86, 86, 86, 2969, 2974, 86, 86, 2975,
2970, 86, 2967, 86, 86, 2972, 2978, 86, 2971, 86,
2976, 86, 86, 86, 2973, 2985, 86, 2979, 86, 86,
86, 2982, 2980, 86, 2981, 2977, 86, 2983, 2984, 2988,
86, 2989, 86, 2986, 86, 2987, 86, 2990, 86, 86,
86, 2992, 2994, 86, 86, 86, 2993, 2996, 2991, 2995,
2998, 86, 3001, 86, 3002, 86, 2999, 86, 2997, 3000,
86, 86, 3003, 3005, 170, 86, 86, 86, 3006, 3010,
3007, 86, 86, 3012, 86, 86, 3011, 86, 86, 3004,
3015, 86, 3014, 86, 3008, 3009, 3016, 86, 3022, 3013,
3020, 3017, 3018, 86, 86, 3021, 86, 3019, 86, 86,
3025, 86, 86, 3023, 86, 3026, 86, 3027, 86, 86,
86, 86, 86, 3024, 3032, 3033, 3034, 3028, 3030, 3029,
86, 86, 3036, 86, 3035, 86, 86, 86, 86, 86,
3031, 3038, 3037, 86, 3041, 86, 3039, 86, 86, 3040,
3042, 86, 3043, 86, 86, 3048, 3044, 86, 86, 86,
3046, 3045, 3047, 3050, 86, 3053, 3049, 86, 86, 3051,
86, 86, 86, 3054, 86, 86, 3052, 3059, 86, 86,
86, 86, 3060, 86, 3064, 86, 86, 3055, 86, 3062,
3056, 86, 3057, 3058, 3063, 86, 3065, 86, 3061, 3067,
86, 3066, 3072, 86, 86, 3074, 3069, 3068, 3071, 86,
3075, 86, 86, 3078, 86, 3070, 86, 3079, 86, 86,
86, 86, 3073, 86, 86, 3082, 86, 3085, 3076, 3080,
3077, 86, 3083, 86, 3086, 86, 86, 3084, 86, 3081,
3087, 3090, 86, 86, 3088, 86, 3092, 3094, 86, 3089,
86, 3096, 86, 3091, 3097, 86, 3098, 86, 86, 86,
86, 3093, 3099, 86, 3100, 3102, 86, 86, 86, 3101,
3106, 86, 3104, 3095, 86, 3107, 86, 86, 86, 3111,
3105, 3112, 86, 3103, 3113, 86, 3108, 3114, 86, 86,
86, 3109, 3115, 86, 3118, 86, 86, 3110, 86, 3121,
86, 86, 3122, 3116, 3123, 86, 3117, 86, 3125, 86,
86, 86, 86, 3129, 3119, 3130, 86, 86, 3120, 86,
86, 3131, 3124, 3126, 3132, 3133, 3128, 3134, 86, 3127,
86, 86, 3135, 86, 86, 86, 3140, 3139, 86, 86,
3143, 86, 86, 3142, 86, 86, 86, 86, 86, 3144,
3146, 3136, 86, 3145, 3137, 3138, 86, 86, 3149, 3148,
86, 86, 86, 3141, 86, 3150, 3151, 3152, 3156, 86,
3153, 3147, 86, 86, 86, 3155, 3158, 86, 3157, 86,
3154, 86, 3163, 3565, 3159, 3162, 3160, 3164, 86, 3165,
3168, 86, 86, 3161, 3166, 86, 86, 3169, 3167, 86,
3170, 86, 3171, 86, 3172, 86, 3173, 86, 3174, 86,
86, 86, 3175, 86, 86, 86, 86, 86, 86, 3180,
3178, 3182, 86, 86, 3187, 86, 3183, 3179, 86, 3176,
3188, 86, 86, 86, 3181, 3189, 3177, 3712, 3184, 3191,
86, 86, 3185, 3186, 3194, 86, 3193, 3192, 3190, 86,
3196, 86, 86, 3198, 86, 86, 3195, 3197, 86, 3201,
86, 86, 86, 86, 3199, 3205, 86, 3200, 3206, 86,
3202, 3203, 86, 86, 86, 86, 3207, 86, 86, 3213,
86, 3204, 3208, 86, 3214, 86, 3210, 86, 86, 3216,
86, 3217, 3211, 3209, 86, 3219, 3215, 86, 3212, 3220,
86, 3222, 86, 3218, 86, 86, 3226, 86, 3221, 86,
3228, 3223, 86, 86, 86, 86, 86, 86, 3227, 3231,
86, 3234, 86, 3225, 3229, 86, 3232, 86, 86, 3224,
3237, 86, 3235, 3238, 86, 3233, 86, 3239, 3230, 3241,
3240, 86, 86, 3236, 86, 3244, 3246, 86, 3245, 3247,
86, 3248, 86, 86, 3242, 86, 3243, 86, 86, 3253,
86, 86, 3249, 3252, 86, 86, 3254, 3256, 86, 3255,
86, 86, 86, 86, 3262, 3250, 3251, 3260, 3257, 86,
86, 86, 3258, 3264, 86, 3265, 86, 3268, 86, 86,
86, 3261, 3259, 3266, 3267, 86, 86, 86, 3273, 86,
86, 86, 86, 86, 3263, 86, 86, 3277, 86, 3269,
3270, 3271, 86, 3274, 3275, 3276, 3281, 3272, 86, 86,
86, 3278, 3279, 3282, 3280, 86, 3285, 86, 86, 86,
3289, 86, 3290, 86, 86, 86, 3286, 3292, 86, 3283,
3284, 86, 3293, 86, 3295, 86, 3287, 3296, 86, 3294,
3298, 86, 86, 3291, 86, 3288, 86, 86, 86, 3301,
86, 3299, 3297, 3303, 3304, 86, 86, 3307, 3300, 3306,
3309, 86, 3302, 86, 86, 86, 3311, 3305, 86, 86,
3316, 86, 3315, 86, 86, 3318, 86, 86, 86, 3308,
86, 86, 3312, 3310, 86, 3319, 3322, 86, 3313, 3314,
3323, 86, 86, 86, 3317, 3326, 86, 86, 86, 3320,
86, 86, 86, 3332, 3321, 3331, 3712, 3324, 3328, 3329,
86, 86, 86, 3325, 3333, 3327, 3335, 86, 3330, 86,
86, 3334, 3337, 3338, 3340, 3336, 86, 3339, 86, 3342,
3343, 86, 3345, 86, 86, 86, 3344, 86, 86, 3348,
86, 86, 3347, 86, 3351, 86, 3349, 86, 3341, 86,
86, 86, 3346, 3354, 86, 86, 86, 3355, 3359, 86,
86, 86, 3350, 86, 3352, 3353, 3435, 3356, 3358, 3362,
3363, 86, 3364, 86, 86, 3360, 3357, 3361, 3365, 86,
86, 86, 3369, 86, 86, 3366, 3368, 86, 3367, 3370,
86, 3371, 86, 3372, 3373, 86, 86, 3376, 86, 86,
3374, 3378, 86, 86, 3377, 3380, 86, 3381, 86, 86,
86, 86, 86, 86, 3379, 86, 3387, 3388, 86, 86,
86, 86, 3375, 86, 86, 86, 3394, 86, 3382, 3395,
86, 3385, 3383, 3384, 3393, 3386, 86, 3391, 3398, 3390,
3396, 3392, 3397, 86, 86, 3389, 86, 86, 86, 86,
3404, 86, 3401, 3402, 3405, 86, 86, 86, 3408, 86,
86, 3406, 86, 3399, 86, 3400, 3413, 3410, 3411, 86,
3403, 3407, 3409, 86, 86, 86, 86, 86, 3412, 3414,
86, 86, 3417, 86, 86, 86, 86, 3419, 86, 86,
3712, 3420, 3418, 86, 86, 3415, 3416, 86, 86, 86,
3437, 86, 3429, 3421, 3425, 3422, 3423, 3424, 86, 86,
3426, 3427, 86, 3430, 3432, 3428, 86, 3433, 3431, 3434,
86, 86, 3436, 3438, 86, 3439, 3441, 86, 86, 86,
86, 3440, 3712, 3442, 3444, 86, 3446, 86, 3447, 3448,
86, 86, 86, 3449, 3450, 3445, 86, 3455, 3443, 3451,
86, 3452, 3453, 86, 86, 86, 86, 3454, 3457, 86,
3462, 86, 3460, 86, 3456, 86, 3461, 86, 86, 3465,
86, 86, 86, 3464, 3458, 3459, 86, 86, 86, 86,
86, 86, 3470, 86, 3469, 86, 3712, 3463, 3471, 3466,
3474, 86, 3467, 3475, 86, 3472, 86, 3477, 3480, 3473,
3476, 3468, 3478, 86, 3479, 86, 86, 86, 3484, 3486,
86, 3481, 86, 3485, 86, 86, 3482, 86, 86, 3483,
86, 86, 3712, 3490, 3494, 3491, 86, 3488, 3493, 86,
86, 86, 3495, 3496, 86, 3487, 3497, 86, 3489, 86,
3492, 3500, 86, 86, 3499, 86, 3498, 3502, 86, 86,
3505, 86, 3506, 86, 3503, 3507, 86, 3501, 3508, 86,
3509, 86, 3510, 86, 3511, 86, 86, 3504, 3512, 86,
86, 3515, 86, 3516, 86, 86, 86, 86, 86, 3514,
3521, 86, 86, 86, 3517, 3523, 86, 86, 3518, 86,
86, 86, 3513, 3520, 86, 3527, 86, 3519, 3524, 86,
3525, 3522, 3526, 3528, 86, 86, 3529, 3530, 86, 86,
86, 3534, 3532, 86, 3531, 3533, 3536, 3535, 3537, 3538,
86, 86, 86, 86, 86, 3539, 86, 86, 86, 86,
86, 3547, 3543, 3545, 86, 86, 3544, 86, 3542, 86,
3540, 3541, 3550, 3546, 86, 3553, 86, 3551, 3554, 86,
3555, 86, 3552, 3556, 86, 3549, 86, 86, 86, 86,
3548, 86, 3559, 86, 86, 86, 3558, 86, 86, 3567,
3564, 86, 86, 3561, 86, 3563, 86, 86, 86, 3557,
86, 3560, 3566, 86, 3568, 86, 3562, 3574, 3576, 86,
86, 3569, 3570, 3571, 86, 3573, 86, 3575, 86, 3579,
86, 3572, 3578, 3581, 86, 3583, 86, 86, 3586, 86,
3577, 86, 86, 3588, 86, 3580, 86, 3589, 3582, 86,
3584, 3587, 3590, 86, 3591, 86, 86, 3585, 86, 3594,
3592, 86, 86, 3595, 86, 3599, 3596, 86, 86, 3593,
86, 86, 3603, 86, 86, 3602, 3605, 86, 86, 3598,
3601, 3600, 3606, 86, 3607, 86, 86, 3597, 3608, 86,
3611, 86, 86, 3609, 3604, 86, 3614, 86, 86, 3615,
86, 86, 86, 3618, 3619, 3610, 86, 3612, 3616, 86,
86, 86, 86, 3613, 3624, 86, 3620, 3623, 86, 3621,
3617, 3625, 86, 86, 86, 86, 86, 86, 86, 3629,
3622, 86, 3631, 86, 86, 86, 86, 86, 3628, 3626,
86, 3636, 3637, 3627, 3633, 86, 3630, 3632, 3634, 3638,
86, 3712, 3635, 3644, 3639, 3642, 86, 86, 3640, 86,
86, 3645, 3643, 86, 3641, 86, 86, 86, 3646, 3650,
3647, 3648, 3651, 86, 86, 86, 3653, 86, 86, 3652,
86, 86, 3654, 86, 86, 3659, 3649, 86, 3656, 86,
3662, 86, 86, 3663, 86, 86, 86, 86, 86, 3655,
86, 3666, 3657, 3658, 3664, 3661, 3660, 3665, 86, 3670,
86, 86, 86, 3669, 86, 3671, 3667, 3668, 86, 3674,
86, 3676, 86, 3677, 3672, 86, 86, 86, 3681, 86,
3678, 86, 86, 3675, 3679, 86, 3682, 3683, 3673, 3684,
86, 86, 86, 86, 86, 3680, 86, 86, 3685, 3686,
86, 3687, 3688, 3690, 86, 3692, 86, 86, 86, 3696,
86, 3693, 3689, 3691, 86, 3694, 3697, 86, 86, 3700,
3701, 86, 86, 86, 3703, 86, 3695, 3704, 86, 3698,
3702, 86, 86, 3699, 86, 86, 3712, 3706, 3705, 3707,
3712, 3708, 3710, 86, 3711, 86, 3712, 3712, 3712, 3712,
3712, 3712, 3712, 3712, 3709, 47, 47, 47, 47, 47,
47, 47, 52, 52, 52, 52, 52, 52, 52, 57,
57, 57, 57, 57, 57, 57, 63, 63, 63, 63,
63, 63, 63, 68, 68, 68, 68, 68, 68, 68,
74, 74, 74, 74, 74, 74, 74, 80, 80, 80,
80, 80, 80, 80, 89, 89, 3712, 89, 89, 89,
89, 160, 160, 3712, 3712, 3712, 160, 160, 162, 162,
3712, 3712, 162, 3712, 162, 164, 3712, 3712, 3712, 3712,
3712, 164, 167, 167, 3712, 3712, 3712, 167, 167, 169,
3712, 3712, 3712, 3712, 3712, 169, 171, 171, 3712, 171,
171, 171, 171, 174, 3712, 3712, 3712, 3712, 3712, 174,
177, 177, 3712, 3712, 3712, 177, 177, 90, 90, 3712,
90, 90, 90, 90, 17, 3712, 3712, 3712, 3712, 3712,
3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712,
3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712,
3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712,
3712, 3712, 3712, 3712, 3712
} ;
static const flex_int16_t yy_chk[7276] =
{ 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,
3, 3, 3, 4, 4, 4, 5, 5, 6, 6,
5, 3, 6, 24, 4, 24, 24, 5, 24, 6,
7, 7, 7, 7, 24, 7, 8, 8, 8, 8,
33, 8, 7, 9, 9, 9, 26, 26, 8, 10,
10, 10, 19, 29, 9, 33, 19, 29, 3720, 35,
10, 11, 11, 11, 11, 11, 11, 13, 13, 13,
13, 34, 13, 11, 35, 99, 34, 29, 38, 13,
51, 51, 11, 12, 12, 12, 12, 12, 12, 14,
14, 14, 14, 99, 14, 12, 15, 15, 15, 38,
23, 14, 23, 23, 12, 23, 46, 15, 16, 16,
16, 23, 23, 25, 27, 27, 25, 25, 3005, 16,
25, 46, 27, 30, 30, 25, 27, 56, 40, 27,
56, 73, 31, 31, 25, 28, 67, 67, 30, 32,
28, 31, 40, 32, 28, 73, 32, 28, 92, 28,
28, 92, 31, 32, 1163, 32, 36, 36, 37, 37,
28, 45, 45, 37, 97, 36, 45, 97, 41, 41,
45, 36, 87, 41, 93, 36, 87, 37, 93, 37,
39, 39, 42, 41, 41, 39, 41, 42, 96, 39,
42, 43, 43, 105, 43, 39, 44, 42, 39, 101,
44, 42, 42, 43, 94, 39, 84, 84, 96, 43,
44, 94, 105, 101, 44, 44, 62, 192, 62, 62,
70, 62, 70, 70, 72, 70, 72, 72, 79, 72,
79, 79, 70, 79, 86, 95, 86, 86, 89, 86,
89, 89, 192, 89, 100, 86, 102, 95, 98, 89,
89, 98, 102, 100, 103, 104, 106, 107, 102, 113,
102, 109, 106, 113, 98, 108, 111, 140, 114, 112,
108, 107, 103, 103, 110, 106, 116, 104, 115, 108,
119, 109, 140, 115, 111, 110, 110, 112, 114, 117,
116, 118, 117, 110, 122, 117, 120, 118, 123, 119,
121, 120, 124, 121, 125, 130, 124, 121, 117, 117,
127, 125, 123, 122, 126, 128, 118, 127, 122, 129,
132, 120, 131, 121, 128, 130, 131, 126, 134, 133,
135, 136, 129, 133, 138, 135, 137, 137, 132, 135,
139, 141, 142, 144, 139, 135, 134, 177, 146, 150,
151, 136, 143, 139, 138, 143, 144, 145, 149, 139,
146, 142, 148, 145, 147, 147, 143, 141, 150, 148,
143, 151, 152, 153, 149, 153, 155, 154, 156, 157,
148, 155, 147, 227, 153, 147, 158, 159, 152, 154,
156, 158, 161, 161, 179, 163, 153, 157, 163, 179,
165, 159, 165, 165, 227, 165, 168, 168, 170, 181,
170, 170, 171, 170, 171, 171, 173, 171, 175, 173,
175, 175, 180, 175, 171, 178, 178, 181, 180, 182,
183, 184, 185, 186, 187, 189, 188, 180, 183, 190,
185, 188, 184, 213, 182, 183, 193, 191, 190, 187,
176, 193, 186, 191, 191, 189, 194, 194, 195, 197,
196, 213, 196, 197, 195, 196, 198, 198, 197, 199,
200, 201, 202, 197, 204, 200, 200, 202, 203, 197,
197, 199, 196, 203, 205, 206, 204, 209, 207, 208,
201, 206, 207, 210, 208, 211, 212, 214, 174, 218,
215, 217, 214, 209, 205, 215, 217, 210, 212, 219,
211, 212, 216, 216, 206, 220, 216, 224, 216, 218,
223, 220, 221, 221, 260, 219, 223, 222, 225, 226,
216, 260, 216, 222, 225, 226, 228, 224, 229, 222,
230, 231, 228, 229, 226, 231, 230, 232, 233, 235,
233, 234, 236, 232, 237, 233, 239, 234, 236, 238,
240, 243, 235, 241, 242, 238, 243, 244, 245, 239,
246, 241, 247, 250, 237, 248, 244, 242, 239, 252,
248, 248, 249, 245, 240, 251, 246, 249, 253, 251,
254, 250, 247, 255, 253, 256, 258, 257, 258, 255,
259, 252, 257, 263, 261, 262, 264, 266, 254, 254,
261, 262, 264, 265, 269, 256, 267, 267, 272, 259,
269, 266, 263, 268, 268, 265, 270, 271, 273, 271,
274, 275, 270, 273, 277, 276, 279, 292, 269, 278,
292, 272, 274, 276, 278, 280, 271, 281, 285, 287,
275, 280, 282, 281, 277, 283, 284, 282, 286, 279,
283, 288, 284, 285, 290, 289, 296, 287, 291, 293,
299, 293, 286, 289, 291, 288, 294, 294, 295, 297,
297, 295, 298, 298, 296, 300, 299, 301, 302, 290,
301, 305, 302, 303, 304, 307, 169, 308, 309, 317,
300, 307, 303, 304, 309, 310, 311, 310, 318, 312,
305, 308, 311, 312, 313, 313, 314, 315, 316, 317,
319, 314, 320, 315, 316, 325, 318, 321, 321, 322,
312, 323, 322, 324, 326, 320, 328, 324, 327, 327,
400, 319, 329, 316, 325, 329, 330, 331, 332, 323,
335, 332, 326, 331, 328, 333, 336, 340, 330, 335,
337, 339, 329, 341, 339, 337, 400, 333, 334, 342,
340, 342, 342, 343, 336, 341, 346, 334, 343, 343,
334, 344, 345, 345, 344, 334, 334, 334, 334, 338,
347, 350, 338, 346, 338, 351, 346, 348, 349, 356,
350, 352, 352, 361, 351, 347, 338, 338, 338, 353,
338, 357, 348, 359, 353, 349, 349, 354, 354, 355,
355, 360, 358, 361, 356, 359, 357, 358, 362, 363,
364, 364, 366, 364, 367, 363, 369, 1379, 368, 367,
360, 369, 364, 362, 368, 370, 372, 1379, 371, 364,
370, 371, 366, 371, 373, 374, 370, 373, 375, 375,
372, 376, 377, 377, 374, 383, 378, 376, 381, 382,
373, 378, 382, 373, 433, 373, 379, 379, 384, 379,
383, 385, 388, 387, 395, 379, 387, 394, 381, 379,
382, 390, 433, 384, 379, 385, 388, 379, 380, 380,
391, 380, 387, 395, 402, 392, 390, 393, 394, 391,
392, 392, 396, 393, 380, 407, 167, 380, 402, 380,
393, 380, 389, 397, 389, 389, 398, 396, 401, 405,
407, 406, 397, 399, 389, 389, 389, 389, 389, 399,
403, 389, 404, 409, 412, 398, 403, 404, 401, 405,
403, 406, 408, 410, 411, 411, 413, 408, 409, 410,
414, 415, 416, 417, 412, 404, 418, 415, 413, 419,
419, 418, 419, 420, 414, 421, 422, 425, 430, 417,
423, 424, 425, 424, 429, 429, 426, 416, 426, 426,
431, 421, 422, 420, 423, 427, 428, 430, 432, 427,
428, 435, 434, 438, 440, 431, 426, 437, 440, 435,
435, 441, 438, 437, 432, 428, 434, 439, 443, 442,
441, 435, 439, 435, 436, 442, 444, 445, 448, 436,
446, 445, 444, 446, 450, 447, 166, 436, 436, 443,
447, 436, 436, 449, 449, 436, 452, 450, 448, 451,
451, 452, 453, 454, 454, 455, 456, 457, 458, 459,
456, 455, 460, 462, 459, 453, 463, 460, 461, 461,
464, 465, 457, 466, 467, 462, 466, 461, 471, 458,
468, 474, 469, 465, 476, 468, 463, 469, 464, 470,
471, 472, 472, 470, 473, 467, 475, 475, 480, 473,
478, 478, 474, 481, 482, 483, 476, 484, 485, 486,
487, 481, 489, 485, 483, 490, 491, 492, 494, 480,
493, 496, 487, 492, 494, 482, 495, 496, 484, 486,
489, 498, 489, 490, 493, 495, 491, 497, 499, 501,
500, 502, 497, 500, 504, 498, 499, 505, 503, 499,
504, 506, 507, 501, 506, 508, 502, 503, 507, 509,
510, 512, 511, 513, 509, 512, 514, 505, 513, 508,
515, 516, 517, 518, 521, 515, 507, 525, 522, 164,
523, 514, 510, 511, 524, 526, 518, 516, 524, 527,
526, 517, 519, 519, 521, 523, 525, 528, 519, 522,
519, 528, 530, 532, 529, 527, 519, 533, 519, 529,
531, 519, 519, 529, 534, 531, 533, 530, 519, 532,
534, 535, 532, 536, 537, 534, 538, 537, 539, 540,
540, 541, 542, 542, 544, 531, 535, 543, 545, 536,
546, 546, 547, 548, 551, 549, 544, 552, 539, 538,
549, 550, 543, 545, 561, 556, 541, 555, 553, 556,
550, 547, 552, 551, 553, 548, 555, 557, 558, 559,
560, 557, 562, 561, 558, 563, 564, 568, 565, 566,
569, 559, 565, 570, 570, 560, 562, 567, 569, 567,
563, 571, 566, 572, 564, 574, 573, 571, 576, 577,
575, 568, 573, 575, 578, 572, 580, 574, 579, 578,
581, 579, 576, 582, 577, 580, 583, 162, 582, 582,
584, 584, 580, 585, 585, 580, 581, 586, 591, 583,
587, 587, 589, 586, 588, 588, 590, 592, 589, 593,
594, 590, 590, 594, 595, 596, 591, 597, 600, 595,
598, 593, 599, 598, 601, 597, 602, 599, 592, 603,
602, 604, 605, 607, 596, 603, 605, 606, 607, 608,
611, 600, 610, 601, 609, 609, 613, 612, 614, 615,
616, 604, 612, 608, 617, 606, 616, 610, 618, 617,
620, 611, 622, 619, 614, 613, 619, 621, 621, 615,
623, 619, 618, 626, 619, 619, 624, 625, 620, 627,
622, 624, 625, 629, 630, 631, 623, 626, 631, 629,
636, 632, 633, 630, 627, 632, 634, 633, 635, 634,
637, 638, 639, 635, 640, 641, 636, 643, 638, 640,
642, 642, 644, 646, 645, 639, 643, 632, 637, 645,
648, 647, 651, 649, 652, 641, 650, 160, 651, 657,
652, 644, 649, 661, 646, 647, 648, 653, 650, 658,
653, 654, 654, 655, 654, 656, 655, 657, 659, 660,
656, 662, 661, 658, 660, 663, 665, 662, 664, 665,
663, 666, 659, 667, 664, 668, 669, 670, 667, 671,
672, 669, 669, 673, 674, 672, 675, 677, 676, 673,
670, 668, 671, 676, 679, 675, 666, 678, 678, 672,
672, 679, 680, 674, 682, 681, 683, 677, 681, 680,
682, 684, 686, 686, 685, 687, 684, 689, 683, 685,
685, 691, 688, 681, 688, 690, 684, 690, 692, 693,
694, 695, 696, 697, 698, 699, 689, 697, 696, 691,
687, 700, 701, 698, 702, 703, 692, 693, 703, 694,
699, 695, 704, 705, 706, 707, 700, 703, 708, 705,
701, 709, 710, 702, 712, 711, 714, 704, 712, 707,
708, 713, 715, 716, 706, 717, 718, 721, 721, 720,
709, 719, 714, 710, 711, 723, 719, 724, 726, 713,
715, 716, 716, 720, 717, 718, 722, 725, 727, 723,
722, 728, 726, 727, 729, 730, 724, 731, 725, 733,
732, 734, 737, 739, 731, 732, 733, 728, 730, 735,
736, 738, 739, 729, 735, 736, 740, 741, 738, 742,
737, 743, 747, 744, 749, 734, 741, 743, 744, 745,
740, 742, 745, 746, 748, 750, 747, 746, 751, 749,
752, 752, 756, 748, 753, 753, 754, 754, 758, 750,
755, 756, 759, 753, 760, 755, 761, 762, 759, 751,
761, 763, 764, 766, 765, 767, 768, 758, 769, 762,
765, 766, 767, 773, 760, 770, 779, 776, 782, 790,
764, 780, 784, 783, 768, 779, 763, 780, 773, 783,
785, 784, 85, 769, 776, 770, 771, 790, 771, 786,
782, 771, 789, 786, 792, 771, 785, 791, 771, 787,
787, 788, 788, 789, 793, 771, 771, 796, 771, 795,
793, 791, 796, 798, 792, 794, 794, 794, 797, 794,
799, 800, 794, 802, 799, 803, 801, 794, 802, 795,
801, 798, 804, 794, 794, 805, 794, 804, 806, 797,
807, 80, 808, 807, 803, 800, 801, 808, 808, 809,
805, 810, 810, 811, 812, 814, 809, 813, 813, 812,
814, 815, 816, 806, 815, 817, 817, 816, 811, 818,
819, 818, 820, 821, 822, 824, 823, 821, 825, 825,
830, 826, 819, 824, 827, 828, 828, 829, 831, 834,
834, 820, 830, 832, 822, 823, 826, 833, 827, 832,
839, 835, 833, 837, 840, 829, 835, 835, 837, 838,
831, 841, 843, 842, 844, 838, 846, 843, 839, 842,
844, 845, 846, 840, 845, 847, 848, 848, 849, 849,
850, 841, 851, 847, 852, 854, 853, 855, 850, 852,
853, 856, 854, 857, 858, 858, 860, 859, 861, 861,
851, 863, 862, 864, 860, 855, 859, 856, 862, 866,
868, 867, 857, 874, 870, 873, 869, 875, 866, 863,
867, 869, 864, 870, 871, 872, 875, 871, 876, 873,
872, 877, 878, 880, 868, 881, 877, 877, 874, 879,
879, 876, 882, 883, 884, 889, 878, 885, 880, 891,
885, 882, 892, 887, 881, 887, 888, 888, 885, 890,
893, 894, 884, 897, 890, 895, 889, 883, 896, 898,
891, 899, 892, 898, 900, 901, 903, 896, 902, 904,
893, 901, 905, 894, 906, 895, 897, 902, 903, 899,
907, 908, 909, 900, 912, 904, 907, 910, 906, 908,
913, 905, 910, 911, 911, 914, 909, 915, 916, 917,
918, 919, 922, 912, 914, 920, 916, 921, 922, 923,
913, 927, 924, 931, 926, 923, 933, 915, 925, 917,
919, 933, 918, 928, 925, 920, 924, 921, 926, 928,
929, 927, 931, 930, 932, 934, 929, 930, 935, 935,
938, 936, 937, 938, 939, 940, 932, 936, 937, 941,
942, 943, 943, 944, 932, 941, 934, 946, 940, 945,
946, 947, 939, 948, 945, 949, 947, 947, 951, 949,
942, 944, 952, 946, 953, 946, 950, 950, 948, 953,
954, 956, 957, 960, 959, 961, 963, 963, 967, 964,
951, 968, 952, 964, 965, 968, 957, 959, 986, 954,
966, 966, 969, 960, 986, 956, 961, 962, 970, 965,
962, 972, 962, 967, 971, 973, 962, 969, 962, 971,
973, 973, 970, 962, 974, 972, 975, 976, 962, 977,
978, 976, 980, 974, 979, 978, 981, 980, 982, 983,
975, 75, 984, 976, 977, 978, 979, 985, 993, 987,
981, 984, 985, 983, 987, 988, 989, 990, 990, 982,
991, 988, 989, 992, 994, 991, 995, 997, 998, 992,
993, 1001, 1001, 998, 999, 1000, 1002, 74, 1004, 997,
1005, 1002, 1003, 994, 995, 996, 996, 1000, 999, 1006,
1003, 996, 1004, 996, 1007, 1008, 1005, 1011, 1012, 996,
1009, 1010, 1011, 1006, 996, 996, 1013, 1010, 1015, 1014,
1012, 996, 1016, 1007, 1008, 1018, 1009, 1017, 1017, 1018,
1019, 1021, 1023, 1025, 1013, 1014, 1015, 1021, 1022, 1024,
1016, 1022, 1026, 1028, 1024, 1030, 1025, 1027, 1026, 1031,
1019, 1023, 1027, 1032, 1030, 1033, 1034, 1035, 1031, 1036,
1037, 1033, 1028, 1038, 1036, 1034, 1039, 1040, 1043, 1032,
1044, 1049, 1041, 1042, 1043, 1047, 1035, 1038, 1045, 1040,
1037, 1041, 1042, 1050, 1045, 1049, 1039, 1044, 1051, 1052,
1053, 1047, 1054, 1055, 1052, 1057, 1053, 1056, 1151, 1058,
1059, 1062, 1151, 1050, 1058, 1059, 1062, 1055, 1063, 1068,
1057, 1054, 1067, 1051, 1065, 1056, 1066, 1063, 1064, 1064,
1065, 1067, 1066, 1069, 1068, 1071, 1072, 1075, 1078, 1074,
1074, 1072, 1072, 1074, 1076, 1077, 1069, 1076, 1079, 1080,
1081, 1071, 1075, 1082, 1083, 1084, 1085, 1086, 1078, 1077,
1083, 1087, 1085, 1081, 1079, 1088, 1087, 1080, 1082, 1090,
1090, 1091, 1086, 1092, 1091, 1084, 1093, 1094, 1096, 1088,
1095, 1093, 1094, 1097, 1098, 1099, 1101, 1096, 1097, 1098,
1102, 1106, 1101, 1103, 1092, 1104, 1095, 1099, 1107, 1103,
1106, 1104, 1105, 1105, 1108, 1110, 1102, 1108, 1109, 1109,
1111, 1112, 1113, 1114, 1115, 1113, 1107, 1118, 1116, 1117,
1115, 68, 1118, 1110, 1116, 1117, 1114, 1119, 1120, 1111,
1121, 1112, 1119, 1122, 1120, 1121, 1124, 1125, 1126, 1122,
1127, 1124, 1128, 1129, 1129, 1130, 1127, 1128, 1131, 1133,
1134, 1132, 1139, 1137, 1130, 1125, 1132, 1131, 1126, 1135,
1136, 1138, 1135, 1136, 1137, 1140, 1138, 1133, 1141, 1134,
1139, 1144, 1142, 1143, 1147, 1145, 1148, 1140, 1142, 1143,
1145, 1146, 1146, 1149, 1150, 1152, 1144, 1141, 1153, 1154,
1148, 1155, 1157, 1147, 1162, 1149, 1159, 1153, 1158, 1158,
1160, 1161, 1150, 1152, 1159, 1160, 1161, 1164, 1154, 1165,
1166, 1157, 1167, 1170, 1162, 63, 1155, 1167, 1168, 1169,
1169, 1164, 1166, 1171, 1165, 1172, 1173, 1168, 1180, 1171,
1174, 1172, 1175, 1170, 1175, 1174, 1176, 1177, 1178, 1179,
1181, 1176, 1173, 1180, 1179, 1183, 1182, 1184, 1186, 1186,
1187, 1177, 1178, 1182, 1188, 1189, 1190, 1191, 1196, 1181,
1183, 1194, 1190, 1196, 1187, 1194, 1184, 1199, 1192, 1198,
1189, 1201, 1188, 1192, 1195, 1195, 1198, 1191, 1197, 1197,
1200, 1199, 1192, 1200, 1192, 1202, 1203, 1192, 1204, 1205,
1201, 1207, 1206, 1204, 1208, 1203, 1209, 1207, 1210, 1208,
1211, 1213, 1213, 1202, 1206, 1216, 1214, 1215, 1205, 1210,
1209, 1214, 1215, 1217, 1219, 1220, 1218, 1221, 1217, 1211,
1218, 1222, 1224, 1219, 1223, 1216, 1225, 1223, 1227, 1226,
1220, 1228, 1221, 1225, 1231, 1229, 1223, 1224, 1230, 1232,
1222, 1226, 1233, 1234, 1230, 1235, 1236, 1227, 1233, 1231,
1232, 1237, 1228, 1229, 1238, 1236, 1239, 1240, 1241, 1242,
1244, 1243, 1247, 1234, 1246, 1235, 1237, 1243, 1239, 1250,
1246, 1248, 1251, 1238, 1242, 1253, 1240, 1247, 1249, 1252,
1244, 1255, 1340, 1241, 1252, 1248, 1249, 1253, 1251, 1250,
1254, 1256, 1270, 1257, 1261, 1254, 1254, 1258, 1258, 1340,
1255, 1260, 1265, 1261, 1262, 1256, 1257, 1259, 1259, 1287,
1262, 1265, 1259, 1270, 1260, 1259, 1259, 1263, 1263, 1264,
1259, 1266, 1287, 1267, 1264, 1273, 1259, 1266, 1267, 1268,
1259, 1269, 1269, 1274, 1268, 1271, 1271, 1272, 1275, 1278,
1272, 1276, 1272, 1277, 1275, 1273, 1277, 1276, 1278, 1279,
1280, 1274, 1281, 1282, 1283, 1280, 1284, 1286, 1285, 1288,
1283, 1286, 1284, 1285, 1290, 1289, 1281, 58, 1288, 1279,
1289, 1282, 1297, 1288, 1296, 1288, 1293, 1288, 1290, 1288,
1291, 1291, 1292, 1292, 1295, 1292, 1298, 1293, 1295, 1296,
1299, 1300, 1297, 1301, 1302, 1303, 1300, 1300, 1304, 1299,
1303, 1305, 1301, 1306, 1298, 1307, 1308, 1309, 1310, 1310,
1305, 1311, 1304, 1309, 1313, 1315, 1302, 1312, 1316, 1319,
1308, 1314, 1306, 1311, 1307, 1312, 1314, 1316, 1313, 1315,
1317, 1318, 1322, 1320, 1321, 1321, 1328, 1317, 1320, 1323,
1323, 1324, 1326, 1324, 1319, 1326, 1327, 1322, 1329, 1318,
1331, 1327, 1330, 1330, 1335, 1328, 1336, 1329, 1332, 1332,
1333, 1333, 1334, 1337, 1338, 1338, 1339, 1334, 1341, 1342,
1331, 1341, 1343, 1345, 1344, 1335, 1347, 1336, 1343, 1344,
1350, 1346, 1345, 1346, 1337, 1349, 1339, 1351, 1349, 1342,
1353, 1352, 1354, 1355, 1347, 1350, 1352, 1354, 1356, 1357,
1351, 1355, 1357, 1356, 1353, 1358, 1359, 1359, 1360, 1361,
1358, 1362, 1363, 1360, 1366, 1364, 1367, 1362, 1368, 1363,
1366, 1369, 1367, 1368, 1370, 1371, 1369, 1361, 1364, 1372,
1370, 1373, 1374, 1374, 1371, 1375, 1377, 1380, 1378, 1381,
1382, 1377, 1373, 1383, 1384, 1385, 1388, 1387, 1372, 1383,
1384, 1385, 1380, 1387, 1389, 1375, 1378, 1390, 1391, 1381,
1388, 1392, 1393, 1382, 1394, 1394, 1388, 1395, 1396, 1400,
1391, 1397, 1403, 1398, 1389, 1392, 1405, 1390, 1398, 1401,
1393, 1399, 1399, 57, 1401, 1408, 1409, 1395, 1406, 1397,
1404, 1403, 1400, 1396, 1405, 1404, 1404, 1406, 1407, 1408,
1410, 1409, 1411, 1412, 1420, 1414, 1407, 1411, 1416, 1413,
1411, 1413, 1412, 1417, 1416, 1410, 1418, 1417, 1410, 1414,
1419, 1421, 1422, 1420, 1423, 1419, 1419, 1418, 1424, 1423,
1425, 1426, 1427, 1424, 1428, 1425, 1429, 1431, 1437, 1428,
1422, 1432, 1433, 1434, 1434, 1436, 1435, 1421, 1438, 1426,
1435, 1431, 1427, 1439, 1438, 1440, 1429, 1437, 1441, 1432,
1433, 1442, 1447, 1436, 1443, 1439, 1444, 1445, 1446, 1447,
1449, 1440, 1451, 1446, 1456, 1442, 1450, 1441, 1448, 1443,
1452, 1444, 1454, 1448, 1453, 1453, 1445, 1455, 1449, 1452,
1450, 1457, 1457, 1451, 1456, 1458, 1455, 1454, 1459, 1460,
1464, 1458, 1461, 1461, 1459, 1462, 1462, 1465, 1463, 52,
1466, 1467, 1468, 1460, 1463, 1466, 1464, 1467, 1468, 1469,
1470, 1470, 1471, 1471, 1477, 1469, 1473, 1473, 1465, 1474,
1475, 1476, 1478, 1474, 1480, 1479, 1477, 1481, 1481, 1475,
1482, 1480, 1471, 1483, 1471, 1485, 1478, 1484, 1486, 1476,
1479, 1483, 1484, 1489, 1490, 1490, 1487, 1491, 1488, 1485,
1482, 1487, 1487, 1488, 1488, 1492, 1493, 1486, 1495, 1494,
1496, 1497, 1498, 1489, 1494, 1493, 1491, 1499, 1498, 1500,
1501, 1502, 1499, 1503, 1492, 1504, 1505, 1495, 1506, 1497,
1496, 1504, 1507, 1508, 1506, 1509, 1502, 1500, 1507, 1510,
1501, 1511, 1512, 1513, 1514, 1505, 47, 1515, 1518, 1503,
1516, 1516, 1508, 1517, 1509, 1519, 1517, 1513, 1510, 1520,
1511, 1512, 1515, 1521, 1521, 1514, 1525, 1518, 1522, 1522,
1523, 1520, 1524, 1526, 1519, 1523, 1524, 1527, 1528, 1525,
1531, 1529, 1533, 1529, 1532, 1534, 1527, 1529, 1526, 1532,
1535, 1528, 1536, 1536, 1537, 1538, 1539, 1533, 1531, 1537,
1529, 1538, 1540, 1541, 1543, 1534, 1535, 1542, 1543, 1541,
1544, 1539, 1542, 1545, 1544, 1540, 1546, 1547, 1548, 1549,
1550, 1550, 1552, 1554, 1555, 1549, 1547, 1556, 1556, 1555,
1557, 1558, 1562, 1545, 1546, 1562, 1557, 1564, 1548, 1565,
1552, 1560, 1560, 1566, 1554, 1563, 1563, 1568, 1569, 1571,
1568, 1558, 1570, 1564, 1572, 1565, 1573, 1573, 1571, 1566,
1574, 1575, 1576, 1577, 1578, 1579, 1580, 1580, 1577, 1569,
1581, 1579, 1570, 1582, 1572, 1574, 1584, 1583, 1578, 1581,
1585, 1576, 1575, 1586, 1586, 1587, 1588, 1590, 1589, 1591,
1591, 1582, 1583, 1589, 1592, 1593, 1594, 1594, 1592, 1587,
1585, 1584, 1590, 1595, 1588, 1596, 1597, 1598, 1599, 1600,
1604, 1598, 1602, 1602, 1600, 1593, 1603, 1597, 1606, 1603,
1607, 1605, 1608, 1604, 1596, 1595, 1605, 1599, 1609, 1610,
1611, 1612, 1612, 1614, 1606, 1613, 1608, 1615, 1607, 1618,
1613, 1616, 1616, 1610, 1618, 1617, 1619, 1609, 1609, 1620,
1623, 1620, 1622, 1614, 1617, 1611, 1621, 1615, 1622, 1624,
1626, 1621, 1627, 1627, 1628, 1624, 1619, 1629, 1632, 1636,
1623, 1631, 1635, 1629, 1626, 1637, 1631, 1633, 1633, 1634,
1634, 1638, 1640, 1628, 1638, 1641, 1635, 1636, 1639, 1639,
1637, 1642, 1632, 1644, 1650, 1643, 1648, 1641, 1643, 1644,
1640, 1643, 1645, 1646, 1649, 1648, 1646, 1645, 1653, 1649,
1661, 1642, 1651, 1643, 1654, 1651, 1652, 1652, 1655, 1650,
1654, 1656, 1646, 1661, 1655, 1659, 1656, 1657, 1657, 1658,
1658, 1659, 1653, 1660, 1662, 1663, 1664, 1665, 1660, 1666,
1665, 1667, 1668, 1671, 1669, 1666, 1675, 1667, 1668, 1669,
1672, 1670, 1662, 1676, 1663, 1672, 1664, 1670, 1673, 1673,
1674, 1677, 1678, 1679, 1675, 1674, 1671, 1684, 1680, 1683,
1681, 1682, 1687, 1676, 1685, 1686, 1677, 1686, 1685, 1688,
1692, 1678, 1680, 1679, 1681, 1682, 1688, 1683, 1690, 1691,
1693, 1687, 1684, 1692, 1694, 1695, 1693, 1696, 1697, 1698,
1690, 1691, 1698, 1699, 1699, 1703, 1700, 1702, 1702, 1705,
1708, 1695, 1697, 1704, 1694, 1700, 1707, 1696, 1704, 1709,
1698, 1705, 1706, 1706, 1708, 1703, 1710, 1711, 1713, 1714,
1712, 1707, 1715, 1719, 1717, 1713, 1711, 1720, 1714, 1724,
1720, 1714, 1727, 1709, 1710, 1712, 1721, 1721, 1715, 1717,
1722, 1722, 1723, 1725, 1717, 1727, 1725, 1724, 1719, 1726,
1726, 1728, 1729, 1730, 1723, 1732, 1731, 1729, 1730, 1731,
1733, 1734, 1735, 1736, 1737, 1733, 1739, 1820, 1740, 1743,
1728, 1820, 1736, 1738, 1740, 1739, 1732, 1742, 1735, 1744,
1734, 1745, 1738, 1737, 1742, 1738, 1741, 1741, 1746, 1743,
1747, 1748, 1744, 1749, 1753, 1750, 1748, 1748, 1749, 1745,
1754, 1757, 1746, 1755, 1755, 1756, 1747, 1750, 1756, 1759,
1759, 1758, 1760, 1760, 1759, 1763, 1761, 1757, 1754, 1753,
1758, 1762, 1764, 1765, 1766, 1761, 1762, 1760, 1761, 1766,
1766, 1768, 1769, 1763, 1770, 1771, 1772, 1774, 1773, 1782,
1771, 1765, 18, 1764, 1773, 1768, 1776, 1769, 1775, 1775,
1772, 1778, 1776, 1777, 1779, 1774, 1770, 1780, 1777, 1782,
1779, 1783, 1784, 1780, 1785, 1778, 1787, 1786, 1784, 1791,
1786, 1789, 1787, 1792, 1793, 1783, 1786, 1785, 1794, 1789,
1795, 1796, 1797, 17, 1799, 1795, 1794, 1798, 1791, 1800,
1796, 1801, 1792, 1793, 1803, 1797, 1798, 1799, 1802, 1802,
1803, 1804, 1806, 1800, 1808, 1801, 1805, 1804, 1809, 1805,
1807, 1807, 1810, 1811, 1811, 1806, 1812, 1813, 1814, 1815,
1802, 1816, 1819, 1813, 1808, 1821, 1809, 1818, 1818, 1812,
1821, 1810, 1822, 1823, 1825, 1815, 1824, 1826, 1823, 1816,
1814, 1824, 1819, 1825, 1828, 1829, 1830, 1831, 1832, 1830,
1833, 1833, 1822, 1834, 1829, 1828, 1835, 1836, 1839, 1831,
1826, 1837, 1837, 1832, 1838, 1839, 1843, 1840, 1835, 1841,
1844, 1845, 1834, 1847, 1846, 1853, 1836, 1845, 1838, 1840,
1853, 1841, 1848, 1849, 1849, 1843, 1846, 1854, 1848, 1850,
1844, 1847, 1850, 1851, 1851, 1855, 1854, 1856, 1856, 1857,
1858, 1855, 1858, 1859, 1860, 1861, 1859, 1862, 1863, 1864,
1865, 1857, 1866, 1869, 1864, 1865, 1867, 1868, 1869, 1871,
1870, 1866, 1874, 0, 1860, 1862, 1863, 1861, 1867, 1870,
1873, 1872, 1868, 1875, 1875, 1873, 1872, 1874, 1876, 1871,
1877, 1879, 1870, 1872, 1876, 1880, 1881, 1882, 1883, 1884,
1956, 1884, 1889, 1885, 1886, 1886, 1892, 1879, 1887, 1887,
1893, 1877, 1894, 1882, 1880, 1881, 1956, 1885, 1883, 1885,
1888, 1888, 1889, 1890, 1890, 1891, 1891, 1892, 1895, 1895,
1896, 1893, 1897, 1894, 1896, 1900, 1898, 1901, 1897, 1898,
1902, 1900, 1903, 1904, 1905, 1911, 1902, 1906, 1904, 1909,
1906, 1907, 1907, 1908, 1909, 1901, 1910, 1910, 1912, 1913,
1911, 1914, 1915, 1915, 1913, 1903, 1914, 1916, 1917, 1905,
1918, 1919, 1916, 1908, 1917, 1920, 1921, 1923, 1924, 1912,
1922, 1925, 1918, 1918, 1918, 1926, 1922, 1929, 1925, 1918,
1926, 1919, 1930, 1920, 1928, 1932, 1921, 1923, 1924, 1928,
1928, 1929, 1931, 1933, 1931, 1934, 1932, 1930, 1935, 1936,
1937, 1934, 1938, 1938, 1939, 1940, 1940, 1935, 1933, 1941,
1942, 1943, 1943, 1944, 1944, 1945, 1948, 1948, 1949, 1936,
1953, 1937, 1950, 1955, 1952, 1957, 1958, 1958, 1954, 1941,
1939, 1950, 1942, 1952, 1954, 1945, 1959, 1960, 1961, 1957,
1962, 1953, 1955, 1949, 1963, 1961, 1964, 1964, 1965, 1962,
1966, 1969, 1960, 1968, 1970, 1971, 1969, 1959, 1972, 1968,
1970, 1973, 1974, 1976, 1974, 1972, 1966, 1973, 1978, 1978,
1963, 1977, 1980, 1979, 1965, 1971, 1981, 1977, 1979, 1982,
1985, 1980, 1976, 1983, 1984, 1986, 1987, 1984, 1986, 1988,
1990, 1981, 1985, 1989, 1989, 1991, 1990, 1992, 1993, 1982,
1996, 1991, 1983, 1994, 1987, 1997, 1998, 1994, 1999, 1999,
2000, 1998, 2001, 1993, 2002, 1988, 2004, 1992, 2005, 2008,
1996, 0, 2005, 1994, 2006, 2006, 2007, 1997, 2008, 2002,
2011, 2001, 2007, 2013, 2000, 2004, 2009, 2009, 2010, 2012,
2012, 2011, 2010, 2014, 2015, 2016, 2011, 2017, 2018, 2019,
2016, 2022, 2020, 2021, 2013, 2023, 2031, 2014, 2020, 2024,
2023, 2025, 2025, 2015, 2026, 2026, 2022, 2017, 2018, 2019,
2027, 2021, 2024, 2029, 2027, 2030, 2031, 2040, 2032, 2033,
2033, 0, 2029, 2032, 2035, 2035, 2030, 2036, 2037, 2039,
2042, 2030, 2036, 2036, 2037, 2039, 2041, 2045, 2043, 2047,
2049, 2041, 2042, 2040, 2043, 2051, 2046, 2048, 2048, 2045,
2046, 2047, 2050, 2052, 2053, 2053, 2054, 2055, 2050, 2052,
2057, 2056, 2059, 2060, 2061, 2049, 2056, 2051, 2063, 2061,
2067, 2063, 2057, 2076, 2059, 2054, 2076, 2055, 2064, 2064,
2065, 2065, 2060, 2066, 2066, 2068, 2069, 2072, 2070, 2071,
2067, 2068, 2069, 2070, 2074, 2071, 2072, 2077, 2080, 2074,
2078, 2078, 2081, 2082, 2083, 2083, 2084, 2085, 2082, 2077,
2080, 2086, 2085, 2089, 2081, 2084, 2086, 2087, 2088, 2088,
2087, 2090, 2091, 2092, 2093, 2096, 2094, 2097, 2093, 2095,
2090, 2094, 2098, 2089, 2099, 2095, 2097, 2101, 2101, 2102,
2091, 2105, 2092, 2096, 2103, 2104, 2106, 2106, 2099, 2101,
2098, 2107, 2108, 2103, 2104, 2109, 2111, 2102, 2110, 2116,
2107, 2105, 2116, 2110, 2108, 2114, 2114, 2117, 2118, 2111,
2119, 2122, 2121, 2123, 2124, 2127, 2109, 2125, 2125, 2123,
2126, 2128, 2126, 2117, 2118, 2122, 2119, 2121, 2130, 2127,
2135, 2124, 2129, 2129, 2132, 2132, 2130, 2133, 2133, 2128,
2136, 2137, 2138, 2139, 2140, 2141, 2136, 2137, 2142, 2142,
2139, 2143, 2143, 2135, 2144, 2145, 2138, 2146, 2147, 2148,
2143, 2149, 2151, 2150, 2156, 2141, 2140, 2145, 2153, 2146,
2157, 2148, 2150, 2147, 2152, 2144, 2154, 2151, 2154, 2152,
2152, 2160, 2154, 2161, 2156, 2158, 2164, 2149, 2159, 2159,
2167, 2153, 2167, 2157, 2168, 2154, 2174, 2158, 2162, 2160,
2163, 2162, 2166, 2161, 2169, 2163, 2164, 2166, 2170, 2169,
2172, 2175, 2168, 2176, 2174, 2170, 2177, 2178, 2177, 2172,
2175, 2179, 2180, 2181, 2183, 2176, 2183, 2186, 2180, 2187,
2184, 2185, 2185, 2188, 2187, 2188, 2178, 2189, 2191, 2192,
2190, 2179, 2189, 2181, 2184, 2190, 2193, 2195, 2194, 2196,
2199, 2197, 2195, 2186, 2194, 2198, 2191, 2192, 2199, 2201,
2198, 2198, 2196, 2197, 2203, 2202, 2193, 2204, 2204, 2205,
2205, 2206, 2207, 2208, 2209, 2211, 2203, 2211, 2201, 2202,
2209, 2210, 2206, 2212, 2213, 2215, 2210, 2207, 2214, 2214,
2216, 2216, 2213, 2208, 2217, 2217, 2218, 2215, 2219, 2220,
2213, 2212, 2222, 2219, 2223, 2218, 2222, 2224, 2225, 2224,
2227, 2229, 2228, 2223, 2226, 2231, 2223, 2220, 2243, 2226,
2226, 2228, 2227, 2229, 2235, 2232, 2233, 2231, 2236, 2225,
2232, 2233, 2237, 2238, 2238, 2239, 2236, 2235, 2240, 2241,
2244, 2237, 2242, 2243, 2245, 2246, 2250, 2251, 2236, 2248,
2246, 2249, 2251, 2239, 2244, 2252, 2240, 2241, 2242, 2245,
2252, 2248, 2253, 2249, 2254, 2260, 2250, 2257, 2259, 2261,
2263, 2253, 2262, 2257, 2259, 2268, 2264, 2265, 2265, 2269,
2266, 2274, 2254, 2270, 2261, 2264, 2257, 2270, 2260, 2266,
2262, 2267, 2267, 2268, 2271, 2263, 2272, 2275, 2269, 2271,
2274, 2276, 2277, 2275, 2278, 2279, 2281, 2277, 2277, 2272,
2278, 2279, 2280, 2282, 2281, 2280, 2285, 2285, 2287, 2286,
2286, 2288, 2288, 2276, 2289, 2289, 2290, 2287, 2291, 2292,
2300, 2293, 2296, 2282, 2286, 2292, 2293, 2296, 2290, 2294,
2294, 2295, 2295, 2297, 2299, 2286, 2291, 2301, 2299, 2297,
2300, 2301, 2302, 2304, 2305, 2307, 2306, 2308, 2309, 2305,
2311, 2310, 2308, 2312, 2313, 2314, 2314, 2315, 2312, 2316,
2307, 2315, 2302, 2318, 2319, 2320, 2309, 2310, 2304, 2306,
2311, 2325, 2317, 2321, 2316, 2322, 2313, 2317, 2324, 2323,
2328, 2318, 2329, 2320, 2323, 2321, 2326, 2326, 2328, 2325,
2319, 2324, 2330, 2331, 2322, 2332, 2333, 2334, 2335, 2338,
2337, 2329, 2336, 2339, 2343, 2338, 2346, 2341, 2346, 2339,
2344, 2330, 2331, 2347, 2336, 2352, 2334, 2343, 2332, 2335,
2333, 2337, 2341, 2345, 2344, 2348, 2348, 2349, 2350, 2345,
2351, 2350, 2349, 2347, 2353, 2359, 2354, 2355, 2355, 2352,
2356, 2356, 2357, 2351, 2357, 2358, 2358, 2360, 2353, 2354,
2359, 2361, 2362, 2362, 2364, 2364, 2362, 2365, 2365, 2366,
2366, 2367, 2360, 2373, 2361, 2368, 2368, 2369, 2369, 2370,
2367, 2372, 2374, 2367, 2370, 2375, 2372, 2376, 2376, 2377,
2377, 2378, 2382, 2373, 2379, 2379, 2380, 2375, 2381, 2381,
2383, 2386, 2374, 2384, 2384, 2383, 2389, 2382, 2385, 2385,
2378, 2387, 2388, 2388, 2380, 2386, 2390, 2390, 2391, 2392,
2387, 2394, 2396, 2389, 2395, 2395, 2394, 2397, 2397, 2398,
2399, 2400, 2391, 2401, 2404, 2399, 2401, 2400, 2392, 2402,
2402, 2396, 2403, 2403, 2405, 2408, 2406, 2398, 2406, 2409,
2410, 2410, 2411, 2404, 2413, 2402, 2414, 2415, 2411, 2405,
2408, 2416, 2417, 2418, 2418, 2419, 2417, 2420, 2409, 2425,
2421, 2414, 2420, 2427, 2413, 2428, 2416, 2422, 2422, 2426,
2415, 2424, 2424, 2429, 2419, 2421, 2426, 2427, 2430, 2425,
2431, 2433, 2422, 2428, 2432, 2432, 2434, 2438, 2434, 2435,
2433, 2429, 2435, 2430, 2437, 2441, 2439, 2440, 2442, 2438,
2437, 2439, 2440, 2443, 2444, 2445, 2431, 2435, 2446, 2435,
2445, 2442, 2448, 2444, 2449, 2451, 2450, 2448, 2454, 2449,
2441, 2450, 2452, 2453, 2443, 2455, 2456, 2459, 2452, 2453,
2451, 2457, 2456, 2458, 2446, 2460, 2457, 2462, 2458, 2454,
2455, 2461, 2463, 0, 2461, 2464, 2465, 2466, 2460, 2467,
2472, 2463, 2459, 2468, 2464, 2465, 2466, 2462, 2469, 2468,
2474, 2470, 2475, 2467, 2469, 2470, 2476, 2476, 2477, 2479,
2472, 2475, 2478, 2478, 2477, 2480, 2480, 2481, 2479, 2482,
2474, 2478, 2481, 2487, 2484, 2488, 2485, 2486, 2486, 2491,
2495, 2490, 2492, 2495, 2488, 2497, 2493, 0, 2487, 2482,
2484, 2482, 2485, 2490, 2496, 2491, 2498, 2492, 2493, 2496,
2499, 2499, 2500, 2500, 2509, 2497, 2502, 2502, 2498, 2503,
2504, 2505, 2503, 2506, 2507, 2504, 2511, 2505, 2509, 2506,
2508, 2508, 2512, 2507, 2510, 2510, 2513, 2515, 2511, 2514,
2514, 2519, 2516, 2515, 2517, 2519, 2512, 2520, 2522, 2517,
2520, 2521, 2521, 2522, 2523, 2513, 2516, 2524, 2525, 2523,
2526, 2527, 2528, 2528, 2529, 2527, 2524, 2525, 2531, 2532,
2533, 2534, 2535, 2531, 2536, 2537, 2538, 2529, 2536, 2539,
2526, 2538, 2540, 2541, 2541, 2539, 2535, 2543, 2540, 2532,
2533, 2534, 2542, 2542, 2544, 2537, 2545, 2546, 2547, 2548,
2548, 2551, 2546, 2552, 2550, 2543, 2553, 2556, 2552, 2556,
2555, 2560, 2553, 2544, 2554, 2545, 2550, 2551, 2555, 2547,
2554, 2558, 2561, 2562, 2562, 2560, 2563, 2564, 2564, 2563,
2558, 2566, 2567, 2568, 2566, 2567, 2561, 2569, 2569, 2572,
2573, 2574, 2576, 2572, 2575, 2575, 2573, 2579, 2579, 2581,
2583, 2576, 2584, 2574, 2588, 2587, 2589, 2590, 2592, 2568,
2587, 2593, 2599, 2592, 2583, 2601, 2593, 2581, 2584, 2594,
2594, 2596, 2596, 2598, 2589, 2600, 2600, 2602, 2590, 2598,
2588, 2601, 2599, 2603, 2605, 2607, 2606, 2612, 2603, 2606,
2608, 2609, 2609, 2611, 2613, 2614, 2612, 2607, 2615, 2602,
2613, 2614, 2608, 2605, 2616, 2618, 2618, 2619, 2620, 2611,
2619, 2621, 2624, 2624, 2622, 2626, 2615, 2625, 2625, 2616,
2626, 2627, 2629, 2630, 2628, 2634, 2632, 2620, 2630, 2633,
2621, 2621, 2622, 2628, 2631, 2629, 2631, 2634, 2636, 2627,
2632, 2635, 2637, 2633, 2638, 2643, 2635, 2639, 2639, 2638,
2640, 2640, 2641, 2641, 2642, 2642, 2645, 2643, 2636, 2644,
2646, 2644, 2637, 2647, 2647, 2646, 2648, 2648, 2649, 2649,
2650, 2651, 2652, 2653, 2645, 2654, 2655, 2656, 2656, 2657,
2658, 2658, 2650, 2660, 2652, 2659, 2659, 2661, 2661, 2662,
2663, 2651, 2655, 2653, 2660, 2664, 2654, 2663, 2657, 2665,
2666, 2662, 2667, 2668, 2670, 2666, 2672, 2664, 2669, 2669,
2671, 2671, 2674, 2670, 2673, 2675, 2676, 2679, 2677, 2665,
2680, 2680, 2667, 2668, 2678, 2674, 2678, 2681, 2682, 2679,
2676, 2683, 2672, 2685, 2673, 2686, 2681, 2687, 2688, 2675,
2677, 2688, 2689, 2682, 2690, 2691, 2683, 2692, 2692, 2690,
2691, 2685, 2693, 2693, 2694, 2694, 2689, 2686, 2696, 2696,
2687, 2698, 2698, 2699, 2700, 2701, 2704, 2702, 2706, 2705,
2708, 2707, 2709, 2711, 2710, 2700, 2710, 2712, 2713, 2708,
2719, 2699, 2702, 2718, 2701, 0, 2704, 2705, 2714, 2714,
2706, 2707, 2709, 2711, 2716, 2712, 2713, 2718, 2716, 2717,
2717, 2720, 2719, 2721, 2721, 2723, 2724, 2724, 2725, 2726,
2720, 2727, 2728, 2729, 2723, 2730, 2731, 2734, 2733, 2728,
2732, 2734, 2738, 2735, 2736, 2736, 2725, 2726, 2729, 2727,
2735, 2737, 2737, 2730, 2731, 2739, 2732, 2733, 2740, 2742,
2742, 2744, 2738, 2745, 2740, 2743, 2743, 2744, 2746, 2747,
2748, 2749, 2750, 2739, 2751, 2751, 2752, 2750, 2753, 2754,
2755, 2745, 2756, 2757, 2747, 2749, 2746, 2763, 2757, 2748,
2758, 2755, 2758, 2759, 2759, 2760, 2752, 2760, 2753, 2754,
2761, 2761, 2756, 2765, 2766, 2767, 2763, 2768, 2769, 2770,
2771, 2772, 2765, 2769, 2773, 2771, 2776, 2767, 2778, 2777,
2780, 2778, 2781, 2766, 2779, 2779, 0, 2768, 2784, 2770,
2783, 2772, 2787, 2773, 2788, 2780, 2776, 2777, 2782, 2782,
2781, 2783, 2785, 2784, 2789, 2792, 2785, 2787, 2790, 2788,
2789, 2794, 2790, 2791, 2791, 2795, 2797, 2796, 2792, 2798,
2799, 2799, 2801, 2802, 2797, 2803, 2794, 2804, 2804, 2803,
2805, 2805, 2802, 2806, 2801, 2795, 2796, 2807, 2807, 2798,
2808, 2809, 2810, 2811, 2812, 2808, 2813, 2813, 2818, 2818,
2809, 2819, 2806, 2820, 2822, 2811, 2821, 2821, 2810, 2823,
2819, 2824, 2825, 2829, 2812, 2828, 2828, 2822, 2826, 2827,
2830, 2825, 2823, 2841, 2824, 2820, 2835, 2826, 2827, 2832,
2832, 2835, 2837, 2829, 2838, 2830, 2839, 2837, 2840, 2843,
2842, 2839, 2841, 2845, 2849, 2847, 2840, 2843, 2838, 2842,
2847, 2848, 2850, 2850, 2851, 2851, 2848, 2852, 2845, 2849,
2853, 2855, 2852, 2854, 2854, 2856, 2857, 2858, 2855, 2859,
2856, 2860, 2861, 2861, 2862, 2859, 2860, 2863, 2868, 2853,
2864, 2864, 2863, 2872, 2857, 2858, 2865, 2865, 2872, 2862,
2871, 2868, 2869, 2869, 2870, 2871, 2871, 2870, 2873, 2874,
2875, 2876, 2877, 2873, 2879, 2876, 2875, 2877, 2878, 2881,
2880, 2884, 2885, 2874, 2882, 2883, 2884, 2878, 2880, 2879,
2882, 2883, 2886, 2886, 2885, 2888, 2889, 2892, 2897, 2894,
2881, 2889, 2888, 2890, 2894, 2895, 2890, 2896, 2898, 2892,
2895, 2899, 2896, 2900, 2901, 2901, 2897, 2902, 2907, 2903,
2899, 2898, 2900, 2903, 2904, 2908, 2902, 2909, 2912, 2904,
2913, 2908, 2914, 2909, 2915, 2917, 2907, 2916, 2916, 2918,
2920, 2923, 2917, 2922, 2922, 2921, 2924, 2912, 2926, 2920,
2913, 2928, 2914, 2915, 2921, 2930, 2923, 2933, 2918, 2925,
2925, 2924, 2932, 2932, 2931, 2934, 2928, 2926, 2931, 2936,
2935, 2934, 2937, 2938, 2941, 2930, 2935, 2939, 2939, 2938,
2942, 2940, 2933, 2944, 2945, 2942, 2950, 2947, 2936, 2940,
2937, 2948, 2944, 2947, 2948, 2951, 2949, 2945, 2953, 2941,
2949, 2952, 2952, 2956, 2950, 2955, 2955, 2957, 2957, 2951,
2958, 2959, 2959, 2953, 2960, 2960, 2962, 2962, 2963, 2964,
2965, 2956, 2963, 2969, 2964, 2967, 2967, 2970, 2971, 2965,
2972, 2975, 2970, 2958, 2973, 2972, 2972, 2976, 2977, 2977,
2971, 2979, 2979, 2969, 2980, 2980, 2973, 2981, 2981, 2982,
2983, 2975, 2982, 2984, 2986, 2986, 2987, 2976, 2989, 2990,
2990, 2991, 2991, 2983, 2992, 2992, 2984, 2993, 2994, 2994,
2995, 2996, 2997, 2998, 2987, 2999, 2999, 3000, 2989, 2998,
3004, 3000, 2993, 2995, 3003, 3004, 2997, 3006, 3007, 2996,
3003, 3010, 3006, 3006, 3008, 3009, 3011, 3010, 3012, 3013,
3014, 3014, 3011, 3013, 3017, 3019, 3022, 3020, 3025, 3017,
3020, 3007, 3027, 3019, 3008, 3009, 3023, 3024, 3024, 3023,
3028, 3029, 3026, 3012, 3031, 3025, 3025, 3026, 3030, 3030,
3027, 3022, 3033, 3032, 3034, 3029, 3032, 3035, 3031, 3039,
3028, 3534, 3037, 3534, 3032, 3035, 3033, 3037, 3037, 3038,
3040, 3040, 3046, 3034, 3038, 3038, 3041, 3041, 3039, 3042,
3042, 3043, 3043, 3044, 3044, 3045, 3045, 3047, 3046, 3048,
3049, 3050, 3047, 3051, 3052, 3053, 3054, 3055, 3056, 3052,
3050, 3054, 3057, 3058, 3060, 3060, 3055, 3051, 3066, 3048,
3061, 3061, 3062, 3063, 3053, 3062, 3049, 0, 3056, 3064,
3064, 3065, 3057, 3058, 3068, 3068, 3066, 3065, 3063, 3069,
3070, 3070, 3071, 3073, 3073, 3074, 3069, 3071, 3075, 3076,
3076, 3077, 3078, 3080, 3074, 3081, 3081, 3075, 3082, 3082,
3077, 3078, 3083, 3084, 3085, 3086, 3083, 3087, 3088, 3089,
3092, 3080, 3084, 3091, 3089, 3089, 3086, 3093, 3095, 3092,
3099, 3093, 3087, 3085, 3101, 3099, 3091, 3104, 3088, 3100,
3100, 3103, 3103, 3095, 3105, 3106, 3108, 3108, 3101, 3109,
3110, 3104, 3111, 3115, 3116, 3119, 3110, 3117, 3109, 3116,
3122, 3120, 3124, 3106, 3111, 3126, 3117, 3120, 3127, 3105,
3126, 3129, 3122, 3127, 3131, 3119, 3128, 3128, 3115, 3131,
3129, 3132, 3133, 3124, 3134, 3134, 3136, 3136, 3134, 3137,
3137, 3138, 3138, 3139, 3132, 3140, 3133, 3141, 3142, 3144,
3148, 3145, 3139, 3142, 3146, 3144, 3145, 3147, 3147, 3146,
3149, 3150, 3151, 3152, 3153, 3140, 3141, 3151, 3148, 3154,
3153, 3157, 3149, 3155, 3155, 3157, 3160, 3160, 3158, 3159,
3161, 3152, 3150, 3158, 3159, 3162, 3163, 3165, 3167, 3167,
3169, 3170, 3171, 3172, 3154, 3175, 3174, 3172, 3176, 3161,
3162, 3163, 3173, 3169, 3170, 3171, 3176, 3165, 3177, 3178,
3179, 3173, 3174, 3177, 3175, 3180, 3180, 3181, 3182, 3183,
3184, 3184, 3185, 3185, 3186, 3190, 3181, 3189, 3192, 3178,
3179, 3195, 3189, 3189, 3192, 3199, 3182, 3193, 3193, 3190,
3197, 3197, 3200, 3186, 3202, 3183, 3203, 3208, 3204, 3202,
3209, 3199, 3195, 3204, 3207, 3207, 3211, 3210, 3200, 3209,
3212, 3212, 3203, 3210, 3213, 3215, 3215, 3208, 3216, 3217,
3221, 3218, 3219, 3219, 3223, 3224, 3221, 3227, 3228, 3211,
3225, 3224, 3216, 3213, 3238, 3225, 3229, 3229, 3217, 3218,
3230, 3230, 3231, 3232, 3223, 3233, 3233, 3234, 3236, 3227,
3235, 3240, 3239, 3238, 3228, 3237, 0, 3231, 3234, 3235,
3242, 3237, 3249, 3232, 3239, 3233, 3241, 3241, 3236, 3243,
3244, 3240, 3243, 3244, 3249, 3242, 3245, 3245, 3250, 3251,
3252, 3252, 3254, 3253, 3255, 3251, 3253, 3257, 3254, 3258,
3258, 3259, 3257, 3260, 3261, 3265, 3259, 3262, 3250, 3266,
3261, 3267, 3255, 3263, 3263, 3268, 3270, 3265, 3269, 3269,
3272, 3271, 3260, 3361, 3262, 3262, 3361, 3266, 3268, 3272,
3274, 3274, 3275, 3275, 3278, 3270, 3267, 3271, 3276, 3276,
3277, 3279, 3280, 3280, 3283, 3277, 3279, 3285, 3278, 3281,
3281, 3282, 3282, 3283, 3284, 3284, 3286, 3287, 3292, 3288,
3285, 3291, 3291, 3287, 3288, 3294, 3294, 3295, 3295, 3297,
3299, 3300, 3301, 3302, 3292, 3303, 3303, 3305, 3305, 3306,
3307, 3310, 3286, 3308, 3316, 3311, 3312, 3312, 3297, 3313,
3313, 3301, 3299, 3300, 3311, 3302, 3314, 3308, 3317, 3307,
3314, 3310, 3316, 3318, 3317, 3306, 3319, 3320, 3321, 3324,
3325, 3325, 3320, 3321, 3327, 3327, 3328, 3329, 3330, 3332,
3331, 3328, 3336, 3318, 3330, 3319, 3336, 3332, 3333, 3333,
3324, 3329, 3331, 3334, 3337, 3338, 3339, 3340, 3334, 3337,
3341, 3342, 3340, 3344, 3345, 3346, 3347, 3342, 3350, 3349,
0, 3344, 3341, 3351, 3352, 3338, 3339, 3353, 3356, 3360,
3366, 3366, 3353, 3345, 3350, 3346, 3347, 3349, 3355, 3362,
3351, 3351, 3358, 3355, 3357, 3352, 3372, 3358, 3356, 3360,
3357, 3368, 3362, 3367, 3367, 3368, 3374, 3374, 3375, 3376,
3379, 3372, 0, 3375, 3377, 3377, 3382, 3382, 3383, 3383,
3398, 3383, 3389, 3384, 3384, 3379, 3384, 3389, 3376, 3385,
3385, 3386, 3386, 3387, 3386, 3390, 3392, 3387, 3391, 3391,
3398, 3393, 3396, 3396, 3390, 3397, 3397, 3399, 3400, 3401,
3401, 3402, 3403, 3400, 3392, 3393, 3406, 3407, 3408, 3409,
3410, 3412, 3408, 3419, 3407, 3413, 0, 3399, 3409, 3402,
3413, 3415, 3403, 3414, 3414, 3410, 3416, 3416, 3419, 3412,
3415, 3406, 3417, 3417, 3418, 3418, 3420, 3421, 3422, 3423,
3424, 3420, 3425, 3422, 3422, 3423, 3421, 3426, 3427, 3421,
3428, 3429, 0, 3427, 3431, 3428, 3432, 3425, 3430, 3430,
3431, 3435, 3432, 3433, 3433, 3424, 3434, 3434, 3426, 3436,
3429, 3439, 3439, 3440, 3436, 3443, 3435, 3442, 3442, 3445,
3447, 3447, 3448, 3448, 3443, 3449, 3449, 3440, 3450, 3450,
3452, 3452, 3453, 3453, 3454, 3454, 3456, 3445, 3455, 3455,
3458, 3459, 3459, 3461, 3461, 3462, 3463, 3464, 3466, 3458,
3467, 3467, 3468, 3470, 3462, 3469, 3469, 3471, 3463, 3482,
3472, 3476, 3456, 3466, 3473, 3473, 3480, 3464, 3470, 3484,
3471, 3468, 3472, 3474, 3474, 3488, 3476, 3477, 3477, 3481,
3483, 3483, 3481, 3486, 3480, 3482, 3486, 3484, 3487, 3488,
3489, 3490, 3492, 3491, 3487, 3489, 3494, 3495, 3499, 3498,
3501, 3501, 3494, 3498, 3503, 3504, 3495, 3513, 3492, 3517,
3490, 3491, 3513, 3499, 3514, 3518, 3518, 3514, 3519, 3519,
3520, 3520, 3517, 3522, 3522, 3504, 3524, 3525, 3526, 3529,
3503, 3527, 3526, 3531, 3532, 3533, 3525, 3535, 3536, 3536,
3533, 3537, 3538, 3529, 3539, 3532, 3541, 3540, 3543, 3524,
3542, 3527, 3535, 3545, 3537, 3544, 3531, 3543, 3545, 3546,
3547, 3538, 3539, 3540, 3548, 3542, 3549, 3544, 3551, 3548,
3552, 3541, 3547, 3550, 3550, 3552, 3557, 3558, 3559, 3559,
3546, 3565, 3560, 3561, 3561, 3549, 3562, 3562, 3551, 3566,
3557, 3560, 3563, 3563, 3564, 3564, 3567, 3558, 3568, 3567,
3565, 3569, 3570, 3568, 3571, 3572, 3569, 3573, 3574, 3566,
3575, 3572, 3576, 3576, 3577, 3575, 3578, 3578, 3583, 3571,
3574, 3573, 3579, 3579, 3580, 3580, 3584, 3570, 3582, 3582,
3585, 3585, 3587, 3583, 3577, 3589, 3592, 3592, 3593, 3593,
3594, 3595, 3598, 3596, 3597, 3584, 3599, 3587, 3594, 3596,
3597, 3600, 3601, 3589, 3602, 3602, 3598, 3601, 3609, 3599,
3595, 3604, 3604, 3610, 3612, 3613, 3615, 3616, 3617, 3613,
3600, 3618, 3616, 3620, 3626, 3619, 3621, 3622, 3612, 3609,
3627, 3621, 3622, 3610, 3618, 3628, 3615, 3617, 3619, 3623,
3623, 0, 3620, 3631, 3626, 3629, 3629, 3630, 3627, 3631,
3632, 3632, 3630, 3633, 3628, 3634, 3635, 3636, 3633, 3637,
3634, 3635, 3639, 3639, 3640, 3637, 3641, 3641, 3643, 3640,
3644, 3645, 3643, 3646, 3647, 3648, 3636, 3649, 3645, 3652,
3652, 3648, 3650, 3654, 3654, 3655, 3656, 3657, 3658, 3644,
3659, 3656, 3646, 3647, 3655, 3650, 3649, 3655, 3660, 3660,
3661, 3662, 3664, 3659, 3666, 3661, 3657, 3658, 3665, 3665,
3667, 3667, 3668, 3668, 3662, 3669, 3671, 3670, 3672, 3672,
3669, 3673, 3678, 3666, 3670, 3674, 3673, 3674, 3664, 3675,
3675, 3676, 3677, 3680, 3683, 3671, 3687, 3679, 3676, 3677,
3685, 3678, 3679, 3682, 3682, 3685, 3686, 3688, 3689, 3689,
3692, 3686, 3680, 3683, 3693, 3687, 3691, 3691, 3694, 3694,
3695, 3695, 3706, 3696, 3698, 3698, 3688, 3699, 3699, 3692,
3696, 3700, 3702, 3693, 3705, 3707, 0, 3702, 3700, 3705,
0, 3706, 3708, 3708, 3709, 3709, 0, 0, 0, 0,
0, 0, 0, 0, 3707, 3713, 3713, 3713, 3713, 3713,
3713, 3713, 3714, 3714, 3714, 3714, 3714, 3714, 3714, 3715,
3715, 3715, 3715, 3715, 3715, 3715, 3716, 3716, 3716, 3716,
3716, 3716, 3716, 3717, 3717, 3717, 3717, 3717, 3717, 3717,
3718, 3718, 3718, 3718, 3718, 3718, 3718, 3719, 3719, 3719,
3719, 3719, 3719, 3719, 3721, 3721, 0, 3721, 3721, 3721,
3721, 3722, 3722, 0, 0, 0, 3722, 3722, 3723, 3723,
0, 0, 3723, 0, 3723, 3724, 0, 0, 0, 0,
0, 3724, 3725, 3725, 0, 0, 0, 3725, 3725, 3726,
0, 0, 0, 0, 0, 3726, 3727, 3727, 0, 3727,
3727, 3727, 3727, 3728, 0, 0, 0, 0, 0, 3728,
3729, 3729, 0, 0, 0, 3729, 3729, 3730, 3730, 0,
3730, 3730, 3730, 3730, 3712, 3712, 3712, 3712, 3712, 3712,
3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712,
3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712,
3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712, 3712,
3712, 3712, 3712, 3712, 3712
} ;
static yy_state_type yy_last_accepting_state;
static char *yy_last_accepting_cpos;
extern int yy_flex_debug;
int yy_flex_debug = 0;
/* The intent behind this definition is that it'll catch
* any uses of REJECT which flex missed.
*/
#define REJECT reject_used_but_not_detected
static int yy_more_flag = 0;
static int yy_more_len = 0;
#define yymore() ((yy_more_flag) = 1)
#define YY_MORE_ADJ (yy_more_len)
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "./util/configlexer.lex"
#line 2 "./util/configlexer.lex"
/*
* configlexer.lex - lexical analyzer for unbound config file
*
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved
*
* See LICENSE for the license.
*
*/
/* because flex keeps having sign-unsigned compare problems that are unfixed*/
#if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2))))
#pragma GCC diagnostic ignored "-Wsign-compare"
#endif
#include <ctype.h>
#include <strings.h>
#ifdef HAVE_GLOB_H
# include <glob.h>
#endif
#include "util/config_file.h"
#include "util/configparser.h"
void ub_c_error(const char *message);
#if 0
#define LEXOUT(s) printf s /* used ONLY when debugging */
#else
#define LEXOUT(s)
#endif
/** avoid warning in about fwrite return value */
#define ECHO ub_c_error_msg("syntax error at text: %s", yytext)
/** A parser variable, this is a statement in the config file which is
* of the form variable: value1 value2 ... nargs is the number of values. */
#define YDVAR(nargs, var) \
num_args=(nargs); \
LEXOUT(("v(%s%d) ", yytext, num_args)); \
if(num_args > 0) { BEGIN(val); } \
return (var);
struct inc_state {
char* filename;
int line;
YY_BUFFER_STATE buffer;
struct inc_state* next;
int inc_toplevel;
};
static struct inc_state* config_include_stack = NULL;
static int inc_depth = 0;
static int inc_prev = 0;
static int num_args = 0;
static int inc_toplevel = 0;
void init_cfg_parse(void)
{
config_include_stack = NULL;
inc_depth = 0;
inc_prev = 0;
num_args = 0;
inc_toplevel = 0;
}
static void config_start_include(const char* filename, int toplevel)
{
FILE *input;
struct inc_state* s;
char* nm;
if(inc_depth+1 > 100000) {
ub_c_error_msg("too many include files");
return;
}
if(*filename == '\0') {
ub_c_error_msg("empty include file name");
return;
}
s = (struct inc_state*)malloc(sizeof(*s));
if(!s) {
ub_c_error_msg("include %s: malloc failure", filename);
return;
}
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
strlen(cfg_parser->chroot)) == 0) {
filename += strlen(cfg_parser->chroot);
}
nm = strdup(filename);
if(!nm) {
ub_c_error_msg("include %s: strdup failure", filename);
free(s);
return;
}
input = fopen(filename, "r");
if(!input) {
ub_c_error_msg("cannot open include file '%s': %s",
filename, strerror(errno));
free(s);
free(nm);
return;
}
LEXOUT(("switch_to_include_file(%s)\n", filename));
inc_depth++;
s->filename = cfg_parser->filename;
s->line = cfg_parser->line;
s->buffer = YY_CURRENT_BUFFER;
s->inc_toplevel = inc_toplevel;
s->next = config_include_stack;
config_include_stack = s;
cfg_parser->filename = nm;
cfg_parser->line = 1;
inc_toplevel = toplevel;
yy_switch_to_buffer(yy_create_buffer(input, YY_BUF_SIZE));
}
static void config_start_include_glob(const char* filename, int toplevel)
{
/* check for wildcards */
#ifdef HAVE_GLOB
glob_t g;
int i, r, flags;
if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') &&
!strchr(filename, '{') && !strchr(filename, '~'))) {
flags = 0
#ifdef GLOB_ERR
| GLOB_ERR
#endif
/* do not set GLOB_NOSORT so the results are sorted
and in a predictable order. */
#ifdef GLOB_BRACE
| GLOB_BRACE
#endif
#ifdef GLOB_TILDE
| GLOB_TILDE
#endif
;
memset(&g, 0, sizeof(g));
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
strlen(cfg_parser->chroot)) == 0) {
filename += strlen(cfg_parser->chroot);
}
r = glob(filename, flags, NULL, &g);
if(r) {
/* some error */
globfree(&g);
if(r == GLOB_NOMATCH)
return; /* no matches for pattern */
config_start_include(filename, toplevel); /* let original deal with it */
return;
}
/* process files found, if any */
for(i=(int)g.gl_pathc-1; i>=0; i--) {
config_start_include(g.gl_pathv[i], toplevel);
}
globfree(&g);
return;
}
#endif /* HAVE_GLOB */
config_start_include(filename, toplevel);
}
static void config_end_include(void)
{
struct inc_state* s = config_include_stack;
--inc_depth;
if(!s) return;
free(cfg_parser->filename);
cfg_parser->filename = s->filename;
cfg_parser->line = s->line;
yy_delete_buffer(YY_CURRENT_BUFFER);
yy_switch_to_buffer(s->buffer);
config_include_stack = s->next;
inc_toplevel = s->inc_toplevel;
free(s);
}
#ifndef yy_set_bol /* compat definition, for flex 2.4.6 */
#define yy_set_bol(at_bol) \
{ \
if ( ! yy_current_buffer ) \
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \
}
#endif
#line 3456 "<stdout>"
#define YY_NO_INPUT 1
#line 191 "./util/configlexer.lex"
#ifndef YY_NO_UNPUT
#define YY_NO_UNPUT 1
#endif
#ifndef YY_NO_INPUT
#define YY_NO_INPUT 1
#endif
#line 3465 "<stdout>"
#line 3467 "<stdout>"
#define INITIAL 0
#define quotedstring 1
#define singlequotedstr 2
#define include 3
#define include_quoted 4
#define val 5
#define include_toplevel 6
#define include_toplevel_quoted 7
#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <unistd.h>
#endif
#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif
static int yy_init_globals ( void );
/* Accessor methods to globals.
These are made visible to non-reentrant scanners for convenience. */
int yylex_destroy ( void );
int yyget_debug ( void );
void yyset_debug ( int debug_flag );
YY_EXTRA_TYPE yyget_extra ( void );
void yyset_extra ( YY_EXTRA_TYPE user_defined );
FILE *yyget_in ( void );
void yyset_in ( FILE * _in_str );
FILE *yyget_out ( void );
void yyset_out ( FILE * _out_str );
int yyget_leng ( void );
char *yyget_text ( void );
int yyget_lineno ( void );
void yyset_lineno ( int _line_number );
/* Macros after this point can all be overridden by user definitions in
* section 1.
*/
#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap ( void );
#else
extern int yywrap ( void );
#endif
#endif
#ifndef YY_NO_UNPUT
#endif
#ifndef yytext_ptr
static void yy_flex_strncpy ( char *, const char *, int );
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen ( const char * );
#endif
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput ( void );
#else
static int input ( void );
#endif
#endif
/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k */
#define YY_READ_BUF_SIZE 16384
#else
#define YY_READ_BUF_SIZE 8192
#endif /* __ia64__ */
#endif
/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
*/
#define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0)
#endif
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
* is returned in "result".
*/
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
{ \
int c = '*'; \
int n; \
for ( n = 0; n < max_size && \
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
buf[n] = (char) c; \
if ( c == '\n' ) \
buf[n++] = (char) c; \
if ( c == EOF && ferror( yyin ) ) \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
result = n; \
} \
else \
{ \
errno=0; \
while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
{ \
if( errno != EINTR) \
{ \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
break; \
} \
errno=0; \
clearerr(yyin); \
} \
}\
\
#endif
/* No semi-colon after return; correct usage is to write "yyterminate();" -
* we don't want an extra ';' after the "return" because that will cause
* some compilers to complain about unreachable statements.
*/
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif
/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif
/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#endif
/* end tables serialization structures and prototypes */
/* Default declaration of generated scanner - a define so the user can
* easily add parameters.
*/
#ifndef YY_DECL
#define YY_DECL_IS_OURS 1
extern int yylex (void);
#define YY_DECL int yylex (void)
#endif /* !YY_DECL */
/* Code executed at the beginning of each rule, after yytext and yyleng
* have been set up.
*/
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif
/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK /*LINTED*/break;
#endif
#define YY_RULE_SETUP \
YY_USER_ACTION
/** The main scanner function which does all the work.
*/
YY_DECL
{
yy_state_type yy_current_state;
char *yy_cp, *yy_bp;
int yy_act;
if ( !(yy_init) )
{
(yy_init) = 1;
#ifdef YY_USER_INIT
YY_USER_INIT;
#endif
if ( ! (yy_start) )
(yy_start) = 1; /* first start state */
if ( ! yyin )
yyin = stdin;
if ( ! yyout )
yyout = stdout;
if ( ! YY_CURRENT_BUFFER ) {
yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer( yyin, YY_BUF_SIZE );
}
yy_load_buffer_state( );
}
{
#line 211 "./util/configlexer.lex"
#line 3691 "<stdout>"
while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */
{
(yy_more_len) = 0;
if ( (yy_more_flag) )
{
(yy_more_len) = (int) ((yy_c_buf_p) - (yytext_ptr));
(yy_more_flag) = 0;
}
yy_cp = (yy_c_buf_p);
/* Support of yytext. */
*yy_cp = (yy_hold_char);
/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;
yy_current_state = (yy_start);
yy_match:
do
{
YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
if ( yy_accept[yy_current_state] )
{
(yy_last_accepting_state) = yy_current_state;
(yy_last_accepting_cpos) = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 3713 )
yy_c = yy_meta[yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
++yy_cp;
}
while ( yy_base[yy_current_state] != 7235 );
yy_find_action:
yy_act = yy_accept[yy_current_state];
if ( yy_act == 0 )
{ /* have to back up */
yy_cp = (yy_last_accepting_cpos);
yy_current_state = (yy_last_accepting_state);
yy_act = yy_accept[yy_current_state];
}
YY_DO_BEFORE_ACTION;
do_action: /* This label is used only to access EOF actions. */
switch ( yy_act )
{ /* beginning of action switch */
case 0: /* must back up */
/* undo the effects of YY_DO_BEFORE_ACTION */
*yy_cp = (yy_hold_char);
yy_cp = (yy_last_accepting_cpos);
yy_current_state = (yy_last_accepting_state);
goto yy_find_action;
case 1:
YY_RULE_SETUP
#line 212 "./util/configlexer.lex"
{
LEXOUT(("SP ")); /* ignore */ }
YY_BREAK
case 2:
YY_RULE_SETUP
#line 214 "./util/configlexer.lex"
{
/* note that flex makes the longest match and '.' is any but not nl */
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
YY_BREAK
case 3:
YY_RULE_SETUP
#line 217 "./util/configlexer.lex"
{ YDVAR(0, VAR_SERVER) }
YY_BREAK
case 4:
YY_RULE_SETUP
#line 218 "./util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION) }
YY_BREAK
case 5:
YY_RULE_SETUP
#line 219 "./util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) }
YY_BREAK
case 6:
YY_RULE_SETUP
#line 220 "./util/configlexer.lex"
{ YDVAR(1, VAR_NUM_THREADS) }
YY_BREAK
case 7:
YY_RULE_SETUP
#line 221 "./util/configlexer.lex"
{ YDVAR(1, VAR_VERBOSITY) }
YY_BREAK
case 8:
YY_RULE_SETUP
#line 222 "./util/configlexer.lex"
{ YDVAR(1, VAR_PORT) }
YY_BREAK
case 9:
YY_RULE_SETUP
#line 223 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_RANGE) }
YY_BREAK
case 10:
YY_RULE_SETUP
#line 224 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
YY_BREAK
case 11:
YY_RULE_SETUP
#line 225 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
YY_BREAK
case 12:
YY_RULE_SETUP
#line 226 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
YY_BREAK
case 13:
YY_RULE_SETUP
#line 227 "./util/configlexer.lex"
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
YY_BREAK
case 14:
YY_RULE_SETUP
#line 228 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP4) }
YY_BREAK
case 15:
YY_RULE_SETUP
#line 229 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP6) }
YY_BREAK
case 16:
YY_RULE_SETUP
#line 230 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFER_IP4) }
YY_BREAK
case 17:
YY_RULE_SETUP
#line 231 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFER_IP6) }
YY_BREAK
case 18:
YY_RULE_SETUP
#line 232 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_UDP) }
YY_BREAK
case 19:
YY_RULE_SETUP
#line 233 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_TCP) }
YY_BREAK
case 20:
YY_RULE_SETUP
#line 234 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_UPSTREAM) }
YY_BREAK
case 21:
YY_RULE_SETUP
#line 235 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_MSS) }
YY_BREAK
case 22:
YY_RULE_SETUP
#line 236 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_TCP_MSS) }
YY_BREAK
case 23:
YY_RULE_SETUP
#line 237 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_IDLE_TIMEOUT) }
YY_BREAK
case 24:
YY_RULE_SETUP
#line 238 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_REUSE_TCP_QUERIES) }
YY_BREAK
case 25:
YY_RULE_SETUP
#line 239 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_REUSE_TIMEOUT) }
YY_BREAK
case 26:
YY_RULE_SETUP
#line 240 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_AUTH_QUERY_TIMEOUT) }
YY_BREAK
case 27:
YY_RULE_SETUP
#line 241 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) }
YY_BREAK
case 28:
YY_RULE_SETUP
#line 242 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) }
YY_BREAK
case 29:
YY_RULE_SETUP
#line 243 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 30:
YY_RULE_SETUP
#line 244 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 31:
YY_RULE_SETUP
#line 245 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 32:
YY_RULE_SETUP
#line 246 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 33:
YY_RULE_SETUP
#line 247 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 34:
YY_RULE_SETUP
#line 248 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 35:
YY_RULE_SETUP
#line 249 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 36:
YY_RULE_SETUP
#line 250 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 37:
YY_RULE_SETUP
#line 251 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
YY_BREAK
case 38:
YY_RULE_SETUP
#line 252 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
YY_BREAK
case 39:
YY_RULE_SETUP
#line 253 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_WIN_CERT) }
YY_BREAK
case 40:
YY_RULE_SETUP
#line 254 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_WIN_CERT) }
YY_BREAK
case 41:
YY_RULE_SETUP
#line 255 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 42:
YY_RULE_SETUP
#line 256 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 43:
YY_RULE_SETUP
#line 257 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 44:
YY_RULE_SETUP
#line 258 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 45:
YY_RULE_SETUP
#line 259 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) }
YY_BREAK
case 46:
YY_RULE_SETUP
#line 260 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CIPHERS) }
YY_BREAK
case 47:
YY_RULE_SETUP
#line 261 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CIPHERSUITES) }
YY_BREAK
case 48:
YY_RULE_SETUP
#line 262 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_USE_SNI) }
YY_BREAK
case 49:
YY_RULE_SETUP
#line 263 "./util/configlexer.lex"
{ YDVAR(1, VAR_HTTPS_PORT) }
YY_BREAK
case 50:
YY_RULE_SETUP
#line 264 "./util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_ENDPOINT) }
YY_BREAK
case 51:
YY_RULE_SETUP
#line 265 "./util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_MAX_STREAMS) }
YY_BREAK
case 52:
YY_RULE_SETUP
#line 266 "./util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_QUERY_BUFFER_SIZE) }
YY_BREAK
case 53:
YY_RULE_SETUP
#line 267 "./util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_RESPONSE_BUFFER_SIZE) }
YY_BREAK
case 54:
YY_RULE_SETUP
#line 268 "./util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_NODELAY) }
YY_BREAK
case 55:
YY_RULE_SETUP
#line 269 "./util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_NOTLS_DOWNSTREAM) }
YY_BREAK
case 56:
YY_RULE_SETUP
#line 270 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSTEMD) }
YY_BREAK
case 57:
YY_RULE_SETUP
#line 271 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_DAEMONIZE) }
YY_BREAK
case 58:
YY_RULE_SETUP
#line 272 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 59:
YY_RULE_SETUP
#line 273 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 60:
YY_RULE_SETUP
#line 274 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
YY_BREAK
case 61:
YY_RULE_SETUP
#line 275 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
YY_BREAK
case 62:
YY_RULE_SETUP
#line 276 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC_PORTS) }
YY_BREAK
case 63:
YY_RULE_SETUP
#line 277 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_RCVBUF) }
YY_BREAK
case 64:
YY_RULE_SETUP
#line 278 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_SNDBUF) }
YY_BREAK
case 65:
YY_RULE_SETUP
#line 279 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_REUSEPORT) }
YY_BREAK
case 66:
YY_RULE_SETUP
#line 280 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_TRANSPARENT) }
YY_BREAK
case 67:
YY_RULE_SETUP
#line 281 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_FREEBIND) }
YY_BREAK
case 68:
YY_RULE_SETUP
#line 282 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_DSCP) }
YY_BREAK
case 69:
YY_RULE_SETUP
#line 283 "./util/configlexer.lex"
{ YDVAR(1, VAR_CHROOT) }
YY_BREAK
case 70:
YY_RULE_SETUP
#line 284 "./util/configlexer.lex"
{ YDVAR(1, VAR_USERNAME) }
YY_BREAK
case 71:
YY_RULE_SETUP
#line 285 "./util/configlexer.lex"
{ YDVAR(1, VAR_DIRECTORY) }
YY_BREAK
case 72:
YY_RULE_SETUP
#line 286 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOGFILE) }
YY_BREAK
case 73:
YY_RULE_SETUP
#line 287 "./util/configlexer.lex"
{ YDVAR(1, VAR_PIDFILE) }
YY_BREAK
case 74:
YY_RULE_SETUP
#line 288 "./util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_HINTS) }
YY_BREAK
case 75:
YY_RULE_SETUP
#line 289 "./util/configlexer.lex"
{ YDVAR(1, VAR_STREAM_WAIT_SIZE) }
YY_BREAK
case 76:
YY_RULE_SETUP
#line 290 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
YY_BREAK
case 77:
YY_RULE_SETUP
#line 291 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
YY_BREAK
case 78:
YY_RULE_SETUP
#line 292 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
YY_BREAK
case 79:
YY_RULE_SETUP
#line 293 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
YY_BREAK
case 80:
YY_RULE_SETUP
#line 294 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
YY_BREAK
case 81:
YY_RULE_SETUP
#line 295 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
YY_BREAK
case 82:
YY_RULE_SETUP
#line 296 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
YY_BREAK
case 83:
YY_RULE_SETUP
#line 297 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
YY_BREAK
case 84:
YY_RULE_SETUP
#line 298 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
YY_BREAK
case 85:
YY_RULE_SETUP
#line 299 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
YY_BREAK
case 86:
YY_RULE_SETUP
#line 300 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
YY_BREAK
case 87:
YY_RULE_SETUP
#line 301 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
YY_BREAK
case 88:
YY_RULE_SETUP
#line 302 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
YY_BREAK
case 89:
YY_RULE_SETUP
#line 303 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
YY_BREAK
case 90:
YY_RULE_SETUP
#line 304 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
YY_BREAK
case 91:
YY_RULE_SETUP
#line 305 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_MAX_RTT) }
YY_BREAK
case 92:
YY_RULE_SETUP
#line 306 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_KEEP_PROBING) }
YY_BREAK
case 93:
YY_RULE_SETUP
#line 307 "./util/configlexer.lex"
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
YY_BREAK
case 94:
YY_RULE_SETUP
#line 308 "./util/configlexer.lex"
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
YY_BREAK
case 95:
YY_RULE_SETUP
#line 309 "./util/configlexer.lex"
{ YDVAR(1, VAR_DELAY_CLOSE) }
YY_BREAK
case 96:
YY_RULE_SETUP
#line 310 "./util/configlexer.lex"
{ YDVAR(1, VAR_UDP_CONNECT) }
YY_BREAK
case 97:
YY_RULE_SETUP
#line 311 "./util/configlexer.lex"
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
YY_BREAK
case 98:
YY_RULE_SETUP
#line 312 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
YY_BREAK
case 99:
YY_RULE_SETUP
#line 313 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
YY_BREAK
case 100:
YY_RULE_SETUP
#line 314 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_GLUE) }
YY_BREAK
case 101:
YY_RULE_SETUP
#line 315 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
YY_BREAK
case 102:
YY_RULE_SETUP
#line 316 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
YY_BREAK
case 103:
YY_RULE_SETUP
#line 317 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
YY_BREAK
case 104:
YY_RULE_SETUP
#line 318 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
YY_BREAK
case 105:
YY_RULE_SETUP
#line 319 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_UNKNOWN_ADDITIONAL) }
YY_BREAK
case 106:
YY_RULE_SETUP
#line 320 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
YY_BREAK
case 107:
YY_RULE_SETUP
#line 321 "./util/configlexer.lex"
{ YDVAR(1, VAR_CAPS_WHITELIST) }
YY_BREAK
case 108:
YY_RULE_SETUP
#line 322 "./util/configlexer.lex"
{ YDVAR(1, VAR_CAPS_WHITELIST) }
YY_BREAK
case 109:
YY_RULE_SETUP
#line 323 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
YY_BREAK
case 110:
YY_RULE_SETUP
#line 324 "./util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
YY_BREAK
case 111:
YY_RULE_SETUP
#line 325 "./util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
YY_BREAK
case 112:
YY_RULE_SETUP
#line 326 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH_KEY) }
YY_BREAK
case 113:
YY_RULE_SETUP
#line 327 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH) }
YY_BREAK
case 114:
YY_RULE_SETUP
#line 328 "./util/configlexer.lex"
{ YDVAR(1, VAR_DENY_ANY) }
YY_BREAK
case 115:
YY_RULE_SETUP
#line 329 "./util/configlexer.lex"
{ YDVAR(0, VAR_STUB_ZONE) }
YY_BREAK
case 116:
YY_RULE_SETUP
#line 330 "./util/configlexer.lex"
{ YDVAR(1, VAR_NAME) }
YY_BREAK
case 117:
YY_RULE_SETUP
#line 331 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_ADDR) }
YY_BREAK
case 118:
YY_RULE_SETUP
#line 332 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_HOST) }
YY_BREAK
case 119:
YY_RULE_SETUP
#line 333 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_PRIME) }
YY_BREAK
case 120:
YY_RULE_SETUP
#line 334 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_FIRST) }
YY_BREAK
case 121:
YY_RULE_SETUP
#line 335 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_NO_CACHE) }
YY_BREAK
case 122:
YY_RULE_SETUP
#line 336 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 123:
YY_RULE_SETUP
#line 337 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 124:
YY_RULE_SETUP
#line 338 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_TCP_UPSTREAM) }
YY_BREAK
case 125:
YY_RULE_SETUP
#line 339 "./util/configlexer.lex"
{ YDVAR(0, VAR_FORWARD_ZONE) }
YY_BREAK
case 126:
YY_RULE_SETUP
#line 340 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_ADDR) }
YY_BREAK
case 127:
YY_RULE_SETUP
#line 341 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_HOST) }
YY_BREAK
case 128:
YY_RULE_SETUP
#line 342 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_FIRST) }
YY_BREAK
case 129:
YY_RULE_SETUP
#line 343 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_NO_CACHE) }
YY_BREAK
case 130:
YY_RULE_SETUP
#line 344 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 131:
YY_RULE_SETUP
#line 345 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 132:
YY_RULE_SETUP
#line 346 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_TCP_UPSTREAM) }
YY_BREAK
case 133:
YY_RULE_SETUP
#line 347 "./util/configlexer.lex"
{ YDVAR(0, VAR_AUTH_ZONE) }
YY_BREAK
case 134:
YY_RULE_SETUP
#line 348 "./util/configlexer.lex"
{ YDVAR(0, VAR_RPZ) }
YY_BREAK
case 135:
YY_RULE_SETUP
#line 349 "./util/configlexer.lex"
{ YDVAR(1, VAR_TAGS) }
YY_BREAK
case 136:
YY_RULE_SETUP
#line 350 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_ACTION_OVERRIDE) }
YY_BREAK
case 137:
YY_RULE_SETUP
#line 351 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_CNAME_OVERRIDE) }
YY_BREAK
case 138:
YY_RULE_SETUP
#line 352 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_LOG) }
YY_BREAK
case 139:
YY_RULE_SETUP
#line 353 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_LOG_NAME) }
YY_BREAK
case 140:
YY_RULE_SETUP
#line 354 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_SIGNAL_NXDOMAIN_RA) }
YY_BREAK
case 141:
YY_RULE_SETUP
#line 355 "./util/configlexer.lex"
{ YDVAR(1, VAR_ZONEFILE) }
YY_BREAK
case 142:
YY_RULE_SETUP
#line 356 "./util/configlexer.lex"
{ YDVAR(1, VAR_MASTER) }
YY_BREAK
case 143:
YY_RULE_SETUP
#line 357 "./util/configlexer.lex"
{ YDVAR(1, VAR_MASTER) }
YY_BREAK
case 144:
YY_RULE_SETUP
#line 358 "./util/configlexer.lex"
{ YDVAR(1, VAR_URL) }
YY_BREAK
case 145:
YY_RULE_SETUP
#line 359 "./util/configlexer.lex"
{ YDVAR(1, VAR_ALLOW_NOTIFY) }
YY_BREAK
case 146:
YY_RULE_SETUP
#line 360 "./util/configlexer.lex"
{ YDVAR(1, VAR_FOR_DOWNSTREAM) }
YY_BREAK
case 147:
YY_RULE_SETUP
#line 361 "./util/configlexer.lex"
{ YDVAR(1, VAR_FOR_UPSTREAM) }
YY_BREAK
case 148:
YY_RULE_SETUP
#line 362 "./util/configlexer.lex"
{ YDVAR(1, VAR_FALLBACK_ENABLED) }
YY_BREAK
case 149:
YY_RULE_SETUP
#line 363 "./util/configlexer.lex"
{ YDVAR(0, VAR_VIEW) }
YY_BREAK
case 150:
YY_RULE_SETUP
#line 364 "./util/configlexer.lex"
{ YDVAR(1, VAR_VIEW_FIRST) }
YY_BREAK
case 151:
YY_RULE_SETUP
#line 365 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
YY_BREAK
case 152:
YY_RULE_SETUP
#line 366 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
YY_BREAK
case 153:
YY_RULE_SETUP
#line 367 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL) }
YY_BREAK
case 154:
YY_RULE_SETUP
#line 368 "./util/configlexer.lex"
{ YDVAR(2, VAR_INTERFACE_ACTION) }
YY_BREAK
case 155:
YY_RULE_SETUP
#line 369 "./util/configlexer.lex"
{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) }
YY_BREAK
case 156:
YY_RULE_SETUP
#line 370 "./util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) }
YY_BREAK
case 157:
YY_RULE_SETUP
#line 371 "./util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) }
YY_BREAK
case 158:
YY_RULE_SETUP
#line 372 "./util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) }
YY_BREAK
case 159:
YY_RULE_SETUP
#line 373 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) }
YY_BREAK
case 160:
YY_RULE_SETUP
#line 374 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) }
YY_BREAK
case 161:
YY_RULE_SETUP
#line 375 "./util/configlexer.lex"
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) }
YY_BREAK
case 162:
YY_RULE_SETUP
#line 376 "./util/configlexer.lex"
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) }
YY_BREAK
case 163:
YY_RULE_SETUP
#line 377 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) }
YY_BREAK
case 164:
YY_RULE_SETUP
#line 378 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) }
YY_BREAK
case 165:
YY_RULE_SETUP
#line 379 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_IDENTITY) }
YY_BREAK
case 166:
YY_RULE_SETUP
#line 380 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_VERSION) }
YY_BREAK
case 167:
YY_RULE_SETUP
#line 381 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) }
YY_BREAK
case 168:
YY_RULE_SETUP
#line 382 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_HTTP_USER_AGENT) }
YY_BREAK
case 169:
YY_RULE_SETUP
#line 383 "./util/configlexer.lex"
{ YDVAR(1, VAR_IDENTITY) }
YY_BREAK
case 170:
YY_RULE_SETUP
#line 384 "./util/configlexer.lex"
{ YDVAR(1, VAR_VERSION) }
YY_BREAK
case 171:
YY_RULE_SETUP
#line 385 "./util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_USER_AGENT) }
YY_BREAK
case 172:
YY_RULE_SETUP
#line 386 "./util/configlexer.lex"
{ YDVAR(1, VAR_MODULE_CONF) }
YY_BREAK
case 173:
YY_RULE_SETUP
#line 387 "./util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR) }
YY_BREAK
case 174:
YY_RULE_SETUP
#line 388 "./util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
YY_BREAK
case 175:
YY_RULE_SETUP
#line 389 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
YY_BREAK
case 176:
YY_RULE_SETUP
#line 390 "./util/configlexer.lex"
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
YY_BREAK
case 177:
YY_RULE_SETUP
#line 391 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
YY_BREAK
case 178:
YY_RULE_SETUP
#line 392 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR) }
YY_BREAK
case 179:
YY_RULE_SETUP
#line 393 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) }
YY_BREAK
case 180:
YY_RULE_SETUP
#line 394 "./util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) }
YY_BREAK
case 181:
YY_RULE_SETUP
#line 395 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
YY_BREAK
case 182:
YY_RULE_SETUP
#line 396 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
YY_BREAK
case 183:
YY_RULE_SETUP
#line 397 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
YY_BREAK
case 184:
YY_RULE_SETUP
#line 398 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_MAX_RESTART) }
YY_BREAK
case 185:
YY_RULE_SETUP
#line 399 "./util/configlexer.lex"
{ YDVAR(1, VAR_BOGUS_TTL) }
YY_BREAK
case 186:
YY_RULE_SETUP
#line 400 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
YY_BREAK
case 187:
YY_RULE_SETUP
#line 401 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
YY_BREAK
case 188:
YY_RULE_SETUP
#line 402 "./util/configlexer.lex"
{ YDVAR(1, VAR_AGGRESSIVE_NSEC) }
YY_BREAK
case 189:
YY_RULE_SETUP
#line 403 "./util/configlexer.lex"
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
YY_BREAK
case 190:
YY_RULE_SETUP
#line 404 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED) }
YY_BREAK
case 191:
YY_RULE_SETUP
#line 405 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) }
YY_BREAK
case 192:
YY_RULE_SETUP
#line 406 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) }
YY_BREAK
case 193:
YY_RULE_SETUP
#line 407 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_REPLY_TTL) }
YY_BREAK
case 194:
YY_RULE_SETUP
#line 408 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_CLIENT_TIMEOUT) }
YY_BREAK
case 195:
YY_RULE_SETUP
#line 409 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDE_SERVE_EXPIRED) }
YY_BREAK
case 196:
YY_RULE_SETUP
#line 410 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_ORIGINAL_TTL) }
YY_BREAK
case 197:
YY_RULE_SETUP
#line 411 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAKE_DSA) }
YY_BREAK
case 198:
YY_RULE_SETUP
#line 412 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAKE_SHA1) }
YY_BREAK
case 199:
YY_RULE_SETUP
#line 413 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
YY_BREAK
case 200:
YY_RULE_SETUP
#line 414 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
YY_BREAK
case 201:
YY_RULE_SETUP
#line 415 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
YY_BREAK
case 202:
YY_RULE_SETUP
#line 416 "./util/configlexer.lex"
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
YY_BREAK
case 203:
YY_RULE_SETUP
#line 417 "./util/configlexer.lex"
{
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
YY_BREAK
case 204:
YY_RULE_SETUP
#line 419 "./util/configlexer.lex"
{ YDVAR(1, VAR_ZONEMD_PERMISSIVE_MODE) }
YY_BREAK
case 205:
YY_RULE_SETUP
#line 420 "./util/configlexer.lex"
{ YDVAR(1, VAR_ZONEMD_CHECK) }
YY_BREAK
case 206:
YY_RULE_SETUP
#line 421 "./util/configlexer.lex"
{ YDVAR(1, VAR_ZONEMD_REJECT_ABSENCE) }
YY_BREAK
case 207:
YY_RULE_SETUP
#line 422 "./util/configlexer.lex"
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
YY_BREAK
case 208:
YY_RULE_SETUP
#line 423 "./util/configlexer.lex"
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
YY_BREAK
case 209:
YY_RULE_SETUP
#line 424 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEEP_MISSING) }
YY_BREAK
case 210:
YY_RULE_SETUP
#line 425 "./util/configlexer.lex"
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
YY_BREAK
case 211:
YY_RULE_SETUP
#line 426 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSLOG) }
YY_BREAK
case 212:
YY_RULE_SETUP
#line 427 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_IDENTITY) }
YY_BREAK
case 213:
YY_RULE_SETUP
#line 428 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
YY_BREAK
case 214:
YY_RULE_SETUP
#line 429 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_QUERIES) }
YY_BREAK
case 215:
YY_RULE_SETUP
#line 430 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_REPLIES) }
YY_BREAK
case 216:
YY_RULE_SETUP
#line 431 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TAG_QUERYREPLY) }
YY_BREAK
case 217:
YY_RULE_SETUP
#line 432 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_LOCAL_ACTIONS) }
YY_BREAK
case 218:
YY_RULE_SETUP
#line 433 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_SERVFAIL) }
YY_BREAK
case 219:
YY_RULE_SETUP
#line 434 "./util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE) }
YY_BREAK
case 220:
YY_RULE_SETUP
#line 435 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA) }
YY_BREAK
case 221:
YY_RULE_SETUP
#line 436 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
YY_BREAK
case 222:
YY_RULE_SETUP
#line 437 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
YY_BREAK
case 223:
YY_RULE_SETUP
#line 438 "./util/configlexer.lex"
{ YDVAR(1, VAR_INSECURE_LAN_ZONES) }
YY_BREAK
case 224:
YY_RULE_SETUP
#line 439 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
YY_BREAK
case 225:
YY_RULE_SETUP
#line 440 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
YY_BREAK
case 226:
YY_RULE_SETUP
#line 441 "./util/configlexer.lex"
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
YY_BREAK
case 227:
YY_RULE_SETUP
#line 442 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INHIBIT_ZERO) }
YY_BREAK
case 228:
YY_RULE_SETUP
#line 443 "./util/configlexer.lex"
{ YDVAR(1, VAR_SHM_ENABLE) }
YY_BREAK
case 229:
YY_RULE_SETUP
#line 444 "./util/configlexer.lex"
{ YDVAR(1, VAR_SHM_KEY) }
YY_BREAK
case 230:
YY_RULE_SETUP
#line 445 "./util/configlexer.lex"
{ YDVAR(0, VAR_REMOTE_CONTROL) }
YY_BREAK
case 231:
YY_RULE_SETUP
#line 446 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_ENABLE) }
YY_BREAK
case 232:
YY_RULE_SETUP
#line 447 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
YY_BREAK
case 233:
YY_RULE_SETUP
#line 448 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_PORT) }
YY_BREAK
case 234:
YY_RULE_SETUP
#line 449 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
YY_BREAK
case 235:
YY_RULE_SETUP
#line 450 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
YY_BREAK
case 236:
YY_RULE_SETUP
#line 451 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
YY_BREAK
case 237:
YY_RULE_SETUP
#line 452 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
YY_BREAK
case 238:
YY_RULE_SETUP
#line 453 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
YY_BREAK
case 239:
YY_RULE_SETUP
#line 454 "./util/configlexer.lex"
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
YY_BREAK
case 240:
YY_RULE_SETUP
#line 455 "./util/configlexer.lex"
{ YDVAR(0, VAR_PYTHON) }
YY_BREAK
case 241:
YY_RULE_SETUP
#line 456 "./util/configlexer.lex"
{ YDVAR(1, VAR_DYNLIB_FILE) }
YY_BREAK
case 242:
YY_RULE_SETUP
#line 457 "./util/configlexer.lex"
{ YDVAR(0, VAR_DYNLIB) }
YY_BREAK
case 243:
YY_RULE_SETUP
#line 458 "./util/configlexer.lex"
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
YY_BREAK
case 244:
YY_RULE_SETUP
#line 459 "./util/configlexer.lex"
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
YY_BREAK
case 245:
YY_RULE_SETUP
#line 460 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
YY_BREAK
case 246:
YY_RULE_SETUP
#line 461 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) }
YY_BREAK
case 247:
YY_RULE_SETUP
#line 462 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
YY_BREAK
case 248:
YY_RULE_SETUP
#line 463 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_PREFIX) }
YY_BREAK
case 249:
YY_RULE_SETUP
#line 464 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
YY_BREAK
case 250:
YY_RULE_SETUP
#line 465 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_IGNORE_AAAA) }
YY_BREAK
case 251:
YY_RULE_SETUP
#line 466 "./util/configlexer.lex"
{ YDVAR(1, VAR_DEFINE_TAG) }
YY_BREAK
case 252:
YY_RULE_SETUP
#line 467 "./util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE_TAG) }
YY_BREAK
case 253:
YY_RULE_SETUP
#line 468 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) }
YY_BREAK
case 254:
YY_RULE_SETUP
#line 469 "./util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) }
YY_BREAK
case 255:
YY_RULE_SETUP
#line 470 "./util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) }
YY_BREAK
case 256:
YY_RULE_SETUP
#line 471 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
YY_BREAK
case 257:
YY_RULE_SETUP
#line 472 "./util/configlexer.lex"
{ YDVAR(2, VAR_INTERFACE_TAG) }
YY_BREAK
case 258:
YY_RULE_SETUP
#line 473 "./util/configlexer.lex"
{ YDVAR(3, VAR_INTERFACE_TAG_ACTION) }
YY_BREAK
case 259:
YY_RULE_SETUP
#line 474 "./util/configlexer.lex"
{ YDVAR(3, VAR_INTERFACE_TAG_DATA) }
YY_BREAK
case 260:
YY_RULE_SETUP
#line 475 "./util/configlexer.lex"
{ YDVAR(2, VAR_INTERFACE_VIEW) }
YY_BREAK
case 261:
YY_RULE_SETUP
#line 476 "./util/configlexer.lex"
{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
YY_BREAK
case 262:
YY_RULE_SETUP
#line 477 "./util/configlexer.lex"
{ YDVAR(0, VAR_DNSTAP) }
YY_BREAK
case 263:
YY_RULE_SETUP
#line 478 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
YY_BREAK
case 264:
YY_RULE_SETUP
#line 479 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_BIDIRECTIONAL) }
YY_BREAK
case 265:
YY_RULE_SETUP
#line 480 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
YY_BREAK
case 266:
YY_RULE_SETUP
#line 481 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IP) }
YY_BREAK
case 267:
YY_RULE_SETUP
#line 482 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_TLS) }
YY_BREAK
case 268:
YY_RULE_SETUP
#line 483 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_TLS_SERVER_NAME) }
YY_BREAK
case 269:
YY_RULE_SETUP
#line 484 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_TLS_CERT_BUNDLE) }
YY_BREAK
case 270:
YY_RULE_SETUP
#line 485 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_TLS_CLIENT_KEY_FILE) }
YY_BREAK
case 271:
YY_RULE_SETUP
#line 487 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_TLS_CLIENT_CERT_FILE) }
YY_BREAK
case 272:
YY_RULE_SETUP
#line 489 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
YY_BREAK
case 273:
YY_RULE_SETUP
#line 490 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
YY_BREAK
case 274:
YY_RULE_SETUP
#line 491 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
YY_BREAK
case 275:
YY_RULE_SETUP
#line 492 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_VERSION) }
YY_BREAK
case 276:
YY_RULE_SETUP
#line 493 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
YY_BREAK
case 277:
YY_RULE_SETUP
#line 495 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
YY_BREAK
case 278:
YY_RULE_SETUP
#line 497 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
YY_BREAK
case 279:
YY_RULE_SETUP
#line 499 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
YY_BREAK
case 280:
YY_RULE_SETUP
#line 501 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
YY_BREAK
case 281:
YY_RULE_SETUP
#line 503 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
YY_BREAK
case 282:
YY_RULE_SETUP
#line 505 "./util/configlexer.lex"
{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) }
YY_BREAK
case 283:
YY_RULE_SETUP
#line 506 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT) }
YY_BREAK
case 284:
YY_RULE_SETUP
#line 507 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT) }
YY_BREAK
case 285:
YY_RULE_SETUP
#line 508 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) }
YY_BREAK
case 286:
YY_RULE_SETUP
#line 509 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
YY_BREAK
case 287:
YY_RULE_SETUP
#line 510 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) }
YY_BREAK
case 288:
YY_RULE_SETUP
#line 511 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
YY_BREAK
case 289:
YY_RULE_SETUP
#line 512 "./util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
YY_BREAK
case 290:
YY_RULE_SETUP
#line 513 "./util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
YY_BREAK
case 291:
YY_RULE_SETUP
#line 514 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) }
YY_BREAK
case 292:
YY_RULE_SETUP
#line 515 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
YY_BREAK
case 293:
YY_RULE_SETUP
#line 516 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_BACKOFF) }
YY_BREAK
case 294:
YY_RULE_SETUP
#line 517 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_BACKOFF) }
YY_BREAK
case 295:
YY_RULE_SETUP
#line 518 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTBOUND_MSG_RETRY) }
YY_BREAK
case 296:
YY_RULE_SETUP
#line 519 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_SENT_COUNT) }
YY_BREAK
case 297:
YY_RULE_SETUP
#line 520 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_QUERY_RESTARTS) }
YY_BREAK
case 298:
YY_RULE_SETUP
#line 521 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOW_RTT) }
YY_BREAK
case 299:
YY_RULE_SETUP
#line 522 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_NUM) }
YY_BREAK
case 300:
YY_RULE_SETUP
#line 523 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 301:
YY_RULE_SETUP
#line 524 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 302:
YY_RULE_SETUP
#line 525 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 303:
YY_RULE_SETUP
#line 526 "./util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP_TAG) }
YY_BREAK
case 304:
YY_RULE_SETUP
#line 527 "./util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP) }
YY_BREAK
case 305:
YY_RULE_SETUP
#line 528 "./util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP_DATA) }
YY_BREAK
case 306:
YY_RULE_SETUP
#line 529 "./util/configlexer.lex"
{ YDVAR(0, VAR_DNSCRYPT) }
YY_BREAK
case 307:
YY_RULE_SETUP
#line 530 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_ENABLE) }
YY_BREAK
case 308:
YY_RULE_SETUP
#line 531 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PORT) }
YY_BREAK
case 309:
YY_RULE_SETUP
#line 532 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) }
YY_BREAK
case 310:
YY_RULE_SETUP
#line 533 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) }
YY_BREAK
case 311:
YY_RULE_SETUP
#line 534 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) }
YY_BREAK
case 312:
YY_RULE_SETUP
#line 535 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) }
YY_BREAK
case 313:
YY_RULE_SETUP
#line 536 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) }
YY_BREAK
case 314:
YY_RULE_SETUP
#line 538 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) }
YY_BREAK
case 315:
YY_RULE_SETUP
#line 540 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) }
YY_BREAK
case 316:
YY_RULE_SETUP
#line 541 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) }
YY_BREAK
case 317:
YY_RULE_SETUP
#line 542 "./util/configlexer.lex"
{ YDVAR(1, VAR_PAD_RESPONSES) }
YY_BREAK
case 318:
YY_RULE_SETUP
#line 543 "./util/configlexer.lex"
{ YDVAR(1, VAR_PAD_RESPONSES_BLOCK_SIZE) }
YY_BREAK
case 319:
YY_RULE_SETUP
#line 544 "./util/configlexer.lex"
{ YDVAR(1, VAR_PAD_QUERIES) }
YY_BREAK
case 320:
YY_RULE_SETUP
#line 545 "./util/configlexer.lex"
{ YDVAR(1, VAR_PAD_QUERIES_BLOCK_SIZE) }
YY_BREAK
case 321:
YY_RULE_SETUP
#line 546 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_ENABLED) }
YY_BREAK
case 322:
YY_RULE_SETUP
#line 547 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) }
YY_BREAK
case 323:
YY_RULE_SETUP
#line 548 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_HOOK) }
YY_BREAK
case 324:
YY_RULE_SETUP
#line 549 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_MAX_TTL) }
YY_BREAK
case 325:
YY_RULE_SETUP
#line 550 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_WHITELIST) }
YY_BREAK
case 326:
YY_RULE_SETUP
#line 551 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_WHITELIST) }
YY_BREAK
case 327:
YY_RULE_SETUP
#line 552 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_STRICT) }
YY_BREAK
case 328:
YY_RULE_SETUP
#line 553 "./util/configlexer.lex"
{ YDVAR(0, VAR_CACHEDB) }
YY_BREAK
case 329:
YY_RULE_SETUP
#line 554 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_BACKEND) }
YY_BREAK
case 330:
YY_RULE_SETUP
#line 555 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_SECRETSEED) }
YY_BREAK
case 331:
YY_RULE_SETUP
#line 556 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISHOST) }
YY_BREAK
case 332:
YY_RULE_SETUP
#line 557 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISPORT) }
YY_BREAK
case 333:
YY_RULE_SETUP
#line 558 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISPATH) }
YY_BREAK
case 334:
YY_RULE_SETUP
#line 559 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISPASSWORD) }
YY_BREAK
case 335:
YY_RULE_SETUP
#line 560 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) }
YY_BREAK
case 336:
YY_RULE_SETUP
#line 561 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISEXPIRERECORDS) }
YY_BREAK
case 337:
YY_RULE_SETUP
#line 562 "./util/configlexer.lex"
{ YDVAR(0, VAR_IPSET) }
YY_BREAK
case 338:
YY_RULE_SETUP
#line 563 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSET_NAME_V4) }
YY_BREAK
case 339:
YY_RULE_SETUP
#line 564 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSET_NAME_V6) }
YY_BREAK
case 340:
YY_RULE_SETUP
#line 565 "./util/configlexer.lex"
{ YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) }
YY_BREAK
case 341:
YY_RULE_SETUP
#line 566 "./util/configlexer.lex"
{ YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
YY_BREAK
case 342:
YY_RULE_SETUP
#line 567 "./util/configlexer.lex"
{ YDVAR(2, VAR_EDNS_CLIENT_STRING) }
YY_BREAK
case 343:
YY_RULE_SETUP
#line 568 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_CLIENT_STRING_OPCODE) }
YY_BREAK
case 344:
YY_RULE_SETUP
#line 569 "./util/configlexer.lex"
{ YDVAR(1, VAR_NSID ) }
YY_BREAK
case 345:
YY_RULE_SETUP
#line 570 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDE ) }
YY_BREAK
case 346:
YY_RULE_SETUP
#line 571 "./util/configlexer.lex"
{ YDVAR(1, VAR_PROXY_PROTOCOL_PORT) }
YY_BREAK
case 347:
/* rule 347 can match eol */
YY_RULE_SETUP
#line 572 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
/* Quoted strings. Strip leading and ending quotes */
case 348:
YY_RULE_SETUP
#line 575 "./util/configlexer.lex"
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
YY_BREAK
case YY_STATE_EOF(quotedstring):
#line 576 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 349:
YY_RULE_SETUP
#line 581 "./util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 350:
/* rule 350 can match eol */
YY_RULE_SETUP
#line 582 "./util/configlexer.lex"
{ yyerror("newline inside quoted string, no end \"");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 351:
YY_RULE_SETUP
#line 584 "./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 352:
YY_RULE_SETUP
#line 596 "./util/configlexer.lex"
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
YY_BREAK
case YY_STATE_EOF(singlequotedstr):
#line 597 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 353:
YY_RULE_SETUP
#line 602 "./util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 354:
/* rule 354 can match eol */
YY_RULE_SETUP
#line 603 "./util/configlexer.lex"
{ yyerror("newline inside quoted string, no end '");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 355:
YY_RULE_SETUP
#line 605 "./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 356:
YY_RULE_SETUP
#line 617 "./util/configlexer.lex"
{
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
YY_BREAK
case YY_STATE_EOF(include):
#line 619 "./util/configlexer.lex"
{
yyerror("EOF inside include directive");
BEGIN(inc_prev);
}
YY_BREAK
case 357:
YY_RULE_SETUP
#line 623 "./util/configlexer.lex"
{ LEXOUT(("ISP ")); /* ignore */ }
YY_BREAK
case 358:
/* rule 358 can match eol */
YY_RULE_SETUP
#line 624 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
YY_BREAK
case 359:
YY_RULE_SETUP
#line 625 "./util/configlexer.lex"
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
YY_BREAK
case 360:
YY_RULE_SETUP
#line 626 "./util/configlexer.lex"
{
LEXOUT(("Iunquotedstr(%s) ", yytext));
config_start_include_glob(yytext, 0);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(include_quoted):
#line 631 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
case 361:
YY_RULE_SETUP
#line 635 "./util/configlexer.lex"
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 362:
/* rule 362 can match eol */
YY_RULE_SETUP
#line 636 "./util/configlexer.lex"
{ yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev); }
YY_BREAK
case 363:
YY_RULE_SETUP
#line 638 "./util/configlexer.lex"
{
LEXOUT(("IQE "));
yytext[yyleng - 1] = '\0';
config_start_include_glob(yytext, 0);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(val):
#line 644 "./util/configlexer.lex"
{
LEXOUT(("LEXEOF "));
yy_set_bol(1); /* Set beginning of line, so "^" rules match. */
if (!config_include_stack) {
yyterminate();
} else {
int prev_toplevel = inc_toplevel;
fclose(yyin);
config_end_include();
if(prev_toplevel) return (VAR_FORCE_TOPLEVEL);
}
}
YY_BREAK
/* include-toplevel: directive */
case 364:
YY_RULE_SETUP
#line 658 "./util/configlexer.lex"
{
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include_toplevel);
}
YY_BREAK
case YY_STATE_EOF(include_toplevel):
#line 661 "./util/configlexer.lex"
{
yyerror("EOF inside include_toplevel directive");
BEGIN(inc_prev);
}
YY_BREAK
case 365:
YY_RULE_SETUP
#line 665 "./util/configlexer.lex"
{ LEXOUT(("ITSP ")); /* ignore */ }
YY_BREAK
case 366:
/* rule 366 can match eol */
YY_RULE_SETUP
#line 666 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
case 367:
YY_RULE_SETUP
#line 667 "./util/configlexer.lex"
{ LEXOUT(("ITQS ")); BEGIN(include_toplevel_quoted); }
YY_BREAK
case 368:
YY_RULE_SETUP
#line 668 "./util/configlexer.lex"
{
LEXOUT(("ITunquotedstr(%s) ", yytext));
config_start_include_glob(yytext, 1);
BEGIN(inc_prev);
return (VAR_FORCE_TOPLEVEL);
}
YY_BREAK
case YY_STATE_EOF(include_toplevel_quoted):
#line 674 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
case 369:
YY_RULE_SETUP
#line 678 "./util/configlexer.lex"
{ LEXOUT(("ITSTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 370:
/* rule 370 can match eol */
YY_RULE_SETUP
#line 679 "./util/configlexer.lex"
{
yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev);
}
YY_BREAK
case 371:
YY_RULE_SETUP
#line 683 "./util/configlexer.lex"
{
LEXOUT(("ITQE "));
yytext[yyleng - 1] = '\0';
config_start_include_glob(yytext, 1);
BEGIN(inc_prev);
return (VAR_FORCE_TOPLEVEL);
}
YY_BREAK
case 372:
YY_RULE_SETUP
#line 691 "./util/configlexer.lex"
{ LEXOUT(("unquotedstr(%s) ", yytext));
if(--num_args == 0) { BEGIN(INITIAL); }
yylval.str = strdup(yytext); return STRING_ARG; }
YY_BREAK
case 373:
YY_RULE_SETUP
#line 695 "./util/configlexer.lex"
{
ub_c_error_msg("unknown keyword '%s'", yytext);
}
YY_BREAK
case 374:
YY_RULE_SETUP
#line 699 "./util/configlexer.lex"
{
ub_c_error_msg("stray '%s'", yytext);
}
YY_BREAK
case 375:
YY_RULE_SETUP
#line 703 "./util/configlexer.lex"
ECHO;
YY_BREAK
#line 5767 "<stdout>"
case YY_END_OF_BUFFER:
{
/* Amount of text matched not including the EOB char. */
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
/* Undo the effects of YY_DO_BEFORE_ACTION. */
*yy_cp = (yy_hold_char);
YY_RESTORE_YY_MORE_OFFSET
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
{
/* We're scanning a new file or input source. It's
* possible that this happened because the user
* just pointed yyin at a new source and called
* yylex(). If so, then we have to assure
* consistency between YY_CURRENT_BUFFER and our
* globals. Here is the right place to do so, because
* this is the first action (other than possibly a
* back-up) that will match for the new input source.
*/
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
}
/* Note that here we test for yy_c_buf_p "<=" to the position
* of the first EOB in the buffer, since yy_c_buf_p will
* already have been incremented past the NUL character
* (since all states make transitions on EOB to the
* end-of-buffer state). Contrast this with the test
* in input().
*/
if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
{ /* This was really a NUL. */
yy_state_type yy_next_state;
(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( );
/* Okay, we're now positioned to make the NUL
* transition. We couldn't have
* yy_get_previous_state() go ahead and do it
* for us because it doesn't know how to deal
* with the possibility of jamming (and we don't
* want to build jamming into it because then it
* will run more slowly).
*/
yy_next_state = yy_try_NUL_trans( yy_current_state );
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
if ( yy_next_state )
{
/* Consume the NUL. */
yy_cp = ++(yy_c_buf_p);
yy_current_state = yy_next_state;
goto yy_match;
}
else
{
yy_cp = (yy_c_buf_p);
goto yy_find_action;
}
}
else switch ( yy_get_next_buffer( ) )
{
case EOB_ACT_END_OF_FILE:
{
(yy_did_buffer_switch_on_eof) = 0;
if ( yywrap( ) )
{
/* Note: because we've taken care in
* yy_get_next_buffer() to have set up
* yytext, we can now set up
* yy_c_buf_p so that if some total
* hoser (like flex itself) wants to
* call the scanner after we return the
* YY_NULL, it'll still work - another
* YY_NULL will get returned.
*/
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
yy_act = YY_STATE_EOF(YY_START);
goto do_action;
}
else
{
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
}
break;
}
case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) =
(yytext_ptr) + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( );
yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_match;
case EOB_ACT_LAST_MATCH:
(yy_c_buf_p) =
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
yy_current_state = yy_get_previous_state( );
yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_find_action;
}
break;
}
default:
YY_FATAL_ERROR(
"fatal flex scanner internal error--no action found" );
} /* end of action switch */
} /* end of scanning one token */
} /* end of user's declarations */
} /* end of yylex */
/* yy_get_next_buffer - try to read in a new buffer
*
* Returns a code representing an action:
* EOB_ACT_LAST_MATCH -
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_END_OF_FILE - end of file
*/
static int yy_get_next_buffer (void)
{
char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
char *source = (yytext_ptr);
int number_to_move, i;
int ret_val;
if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
YY_FATAL_ERROR(
"fatal flex scanner internal error--end of buffer missed" );
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
{
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
}
else
{
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
}
}
/* Try to read more data. */
/* First move last chars to start of buffer. */
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1);
for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
*/
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
else
{
int num_to_read =
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
while ( num_to_read <= 0 )
{ /* Not enough room in the buffer - grow it. */
/* just a shorter name for the current buffer */
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
int yy_c_buf_p_offset =
(int) ((yy_c_buf_p) - b->yy_ch_buf);
if ( b->yy_is_our_buffer )
{
int new_size = b->yy_buf_size * 2;
if ( new_size <= 0 )
b->yy_buf_size += b->yy_buf_size / 8;
else
b->yy_buf_size *= 2;
b->yy_ch_buf = (char *)
/* Include room in for 2 EOB chars. */
yyrealloc( (void *) b->yy_ch_buf,
(yy_size_t) (b->yy_buf_size + 2) );
}
else
/* Can't grow it, we don't own it. */
b->yy_ch_buf = NULL;
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR(
"fatal error - scanner input buffer overflow" );
(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
number_to_move - 1;
}
if ( num_to_read > YY_READ_BUF_SIZE )
num_to_read = YY_READ_BUF_SIZE;
/* Read in more data. */
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
(yy_n_chars), num_to_read );
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
if ( (yy_n_chars) == 0 )
{
if ( number_to_move == YY_MORE_ADJ )
{
ret_val = EOB_ACT_END_OF_FILE;
yyrestart( yyin );
}
else
{
ret_val = EOB_ACT_LAST_MATCH;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
YY_BUFFER_EOF_PENDING;
}
}
else
ret_val = EOB_ACT_CONTINUE_SCAN;
if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
/* Extend the array by 50%, plus the number we really need. */
int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc(
(void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size );
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
/* "- 2" to take care of EOB's */
YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
}
(yy_n_chars) += number_to_move;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
return ret_val;
}
/* yy_get_previous_state - get the state just before the EOB char was reached */
static yy_state_type yy_get_previous_state (void)
{
yy_state_type yy_current_state;
char *yy_cp;
yy_current_state = (yy_start);
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
{
YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
if ( yy_accept[yy_current_state] )
{
(yy_last_accepting_state) = yy_current_state;
(yy_last_accepting_cpos) = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 3713 )
yy_c = yy_meta[yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
}
return yy_current_state;
}
/* yy_try_NUL_trans - try to make a transition on the NUL character
*
* synopsis
* next_state = yy_try_NUL_trans( current_state );
*/
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
{
int yy_is_jam;
char *yy_cp = (yy_c_buf_p);
YY_CHAR yy_c = 1;
if ( yy_accept[yy_current_state] )
{
(yy_last_accepting_state) = yy_current_state;
(yy_last_accepting_cpos) = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 3713 )
yy_c = yy_meta[yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
yy_is_jam = (yy_current_state == 3712);
return yy_is_jam ? 0 : yy_current_state;
}
#ifndef YY_NO_UNPUT
#endif
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (void)
#else
static int input (void)
#endif
{
int c;
*(yy_c_buf_p) = (yy_hold_char);
if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
{
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
*/
if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
/* This was really a NUL. */
*(yy_c_buf_p) = '\0';
else
{ /* need more input */
int offset = (int) ((yy_c_buf_p) - (yytext_ptr));
++(yy_c_buf_p);
switch ( yy_get_next_buffer( ) )
{
case EOB_ACT_LAST_MATCH:
/* This happens because yy_g_n_b()
* sees that we've accumulated a
* token and flags that we need to
* try matching the token before
* proceeding. But for input(),
* there's no matching to consider.
* So convert the EOB_ACT_LAST_MATCH
* to EOB_ACT_END_OF_FILE.
*/
/* Reset buffer status. */
yyrestart( yyin );
/*FALLTHROUGH*/
case EOB_ACT_END_OF_FILE:
{
if ( yywrap( ) )
return 0;
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
#ifdef __cplusplus
return yyinput();
#else
return input();
#endif
}
case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) = (yytext_ptr) + offset;
break;
}
}
}
c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
*(yy_c_buf_p) = '\0'; /* preserve yytext */
(yy_hold_char) = *++(yy_c_buf_p);
return c;
}
#endif /* ifndef YY_NO_INPUT */
/** Immediately switch to a different input stream.
* @param input_file A readable stream.
*
* @note This function does not reset the start condition to @c INITIAL .
*/
void yyrestart (FILE * input_file )
{
if ( ! YY_CURRENT_BUFFER ){
yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer( yyin, YY_BUF_SIZE );
}
yy_init_buffer( YY_CURRENT_BUFFER, input_file );
yy_load_buffer_state( );
}
/** Switch to a different input buffer.
* @param new_buffer The new input buffer.
*
*/
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
{
/* TODO. We should be able to replace this entire function body
* with
* yypop_buffer_state();
* yypush_buffer_state(new_buffer);
*/
yyensure_buffer_stack ();
if ( YY_CURRENT_BUFFER == new_buffer )
return;
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*(yy_c_buf_p) = (yy_hold_char);
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
YY_CURRENT_BUFFER_LVALUE = new_buffer;
yy_load_buffer_state( );
/* We don't actually know whether we did this switch during
* EOF (yywrap()) processing, but the only time this flag
* is looked at is after yywrap() is called, so it's safe
* to go ahead and always set it.
*/
(yy_did_buffer_switch_on_eof) = 1;
}
static void yy_load_buffer_state (void)
{
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
(yy_hold_char) = *(yy_c_buf_p);
}
/** Allocate and initialize an input buffer state.
* @param file A readable stream.
* @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
*
* @return the allocated buffer state.
*/
YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
{
YY_BUFFER_STATE b;
b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_buf_size = size;
/* yy_ch_buf has to be 2 characters longer than the size given because
* we need to put in 2 end-of-buffer characters.
*/
b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) );
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_is_our_buffer = 1;
yy_init_buffer( b, file );
return b;
}
/** Destroy the buffer.
* @param b a buffer created with yy_create_buffer()
*
*/
void yy_delete_buffer (YY_BUFFER_STATE b )
{
if ( ! b )
return;
if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
if ( b->yy_is_our_buffer )
yyfree( (void *) b->yy_ch_buf );
yyfree( (void *) b );
}
/* Initializes or reinitializes a buffer.
* This function is sometimes called more than once on the same buffer,
* such as during a yyrestart() or at EOF.
*/
static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
{
int oerrno = errno;
yy_flush_buffer( b );
b->yy_input_file = file;
b->yy_fill_buffer = 1;
/* If b is the current buffer, then yy_init_buffer was _probably_
* called from yyrestart() or through yy_get_next_buffer.
* In that case, we don't want to reset the lineno or column.
*/
if (b != YY_CURRENT_BUFFER){
b->yy_bs_lineno = 1;
b->yy_bs_column = 0;
}
b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
errno = oerrno;
}
/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
* @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
*
*/
void yy_flush_buffer (YY_BUFFER_STATE b )
{
if ( ! b )
return;
b->yy_n_chars = 0;
/* We always need two end-of-buffer characters. The first causes
* a transition to the end-of-buffer state. The second causes
* a jam in that state.
*/
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
b->yy_buf_pos = &b->yy_ch_buf[0];
b->yy_at_bol = 1;
b->yy_buffer_status = YY_BUFFER_NEW;
if ( b == YY_CURRENT_BUFFER )
yy_load_buffer_state( );
}
/** Pushes the new state onto the stack. The new state becomes
* the current state. This function will allocate the stack
* if necessary.
* @param new_buffer The new state.
*
*/
void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
{
if (new_buffer == NULL)
return;
yyensure_buffer_stack();
/* This block is copied from yy_switch_to_buffer. */
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*(yy_c_buf_p) = (yy_hold_char);
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
/* Only push if top exists. Otherwise, replace top. */
if (YY_CURRENT_BUFFER)
(yy_buffer_stack_top)++;
YY_CURRENT_BUFFER_LVALUE = new_buffer;
/* copied from yy_switch_to_buffer. */
yy_load_buffer_state( );
(yy_did_buffer_switch_on_eof) = 1;
}
/** Removes and deletes the top of the stack, if present.
* The next element becomes the new top.
*
*/
void yypop_buffer_state (void)
{
if (!YY_CURRENT_BUFFER)
return;
yy_delete_buffer(YY_CURRENT_BUFFER );
YY_CURRENT_BUFFER_LVALUE = NULL;
if ((yy_buffer_stack_top) > 0)
--(yy_buffer_stack_top);
if (YY_CURRENT_BUFFER) {
yy_load_buffer_state( );
(yy_did_buffer_switch_on_eof) = 1;
}
}
/* Allocates the stack if it does not exist.
* Guarantees space for at least one push.
*/
static void yyensure_buffer_stack (void)
{
yy_size_t num_to_alloc;
if (!(yy_buffer_stack)) {
/* First allocation is just for 2 elements, since we don't know if this
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
(num_to_alloc * sizeof(struct yy_buffer_state*)
);
if ( ! (yy_buffer_stack) )
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
(yy_buffer_stack_top) = 0;
return;
}
if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
/* Increase the buffer to prepare for a possible push. */
yy_size_t grow_size = 8 /* arbitrary grow size */;
num_to_alloc = (yy_buffer_stack_max) + grow_size;
(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
((yy_buffer_stack),
num_to_alloc * sizeof(struct yy_buffer_state*)
);
if ( ! (yy_buffer_stack) )
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
/* zero only the new slots.*/
memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
}
}
/** Setup the input buffer state to scan directly from a user-specified character buffer.
* @param base the character buffer
* @param size the size in bytes of the character buffer
*
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
{
YY_BUFFER_STATE b;
if ( size < 2 ||
base[size-2] != YY_END_OF_BUFFER_CHAR ||
base[size-1] != YY_END_OF_BUFFER_CHAR )
/* They forgot to leave room for the EOB's. */
return NULL;
b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */
b->yy_buf_pos = b->yy_ch_buf = base;
b->yy_is_our_buffer = 0;
b->yy_input_file = NULL;
b->yy_n_chars = b->yy_buf_size;
b->yy_is_interactive = 0;
b->yy_at_bol = 1;
b->yy_fill_buffer = 0;
b->yy_buffer_status = YY_BUFFER_NEW;
yy_switch_to_buffer( b );
return b;
}
/** Setup the input buffer state to scan a string. The next call to yylex() will
* scan from a @e copy of @a str.
* @param yystr a NUL-terminated string to scan
*
* @return the newly allocated buffer state object.
* @note If you want to scan bytes that may contain NUL values, then use
* yy_scan_bytes() instead.
*/
YY_BUFFER_STATE yy_scan_string (const char * yystr )
{
return yy_scan_bytes( yystr, (int) strlen(yystr) );
}
/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
* scan from a @e copy of @a bytes.
* @param yybytes the byte buffer to scan
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
*
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len )
{
YY_BUFFER_STATE b;
char *buf;
yy_size_t n;
int i;
/* Get memory for full buffer, including space for trailing EOB's. */
n = (yy_size_t) (_yybytes_len + 2);
buf = (char *) yyalloc( n );
if ( ! buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
for ( i = 0; i < _yybytes_len; ++i )
buf[i] = yybytes[i];
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
b = yy_scan_buffer( buf, n );
if ( ! b )
YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
/* It's okay to grow etc. this buffer, and we should throw it
* away when we're done.
*/
b->yy_is_our_buffer = 1;
return b;
}
#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif
static void yynoreturn yy_fatal_error (const char* msg )
{
fprintf( stderr, "%s\n", msg );
exit( YY_EXIT_FAILURE );
}
/* Redefine yyless() so it works in section 3 code. */
#undef yyless
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
yytext[yyleng] = (yy_hold_char); \
(yy_c_buf_p) = yytext + yyless_macro_arg; \
(yy_hold_char) = *(yy_c_buf_p); \
*(yy_c_buf_p) = '\0'; \
yyleng = yyless_macro_arg; \
} \
while ( 0 )
/* Accessor methods (get/set functions) to struct members. */
/** Get the current line number.
*
*/
int yyget_lineno (void)
{
return yylineno;
}
/** Get the input stream.
*
*/
FILE *yyget_in (void)
{
return yyin;
}
/** Get the output stream.
*
*/
FILE *yyget_out (void)
{
return yyout;
}
/** Get the length of the current token.
*
*/
int yyget_leng (void)
{
return yyleng;
}
/** Get the current token.
*
*/
char *yyget_text (void)
{
return yytext;
}
/** Set the current line number.
* @param _line_number line number
*
*/
void yyset_lineno (int _line_number )
{
yylineno = _line_number;
}
/** Set the input stream. This does not discard the current
* input buffer.
* @param _in_str A readable stream.
*
* @see yy_switch_to_buffer
*/
void yyset_in (FILE * _in_str )
{
yyin = _in_str ;
}
void yyset_out (FILE * _out_str )
{
yyout = _out_str ;
}
int yyget_debug (void)
{
return yy_flex_debug;
}
void yyset_debug (int _bdebug )
{
yy_flex_debug = _bdebug ;
}
static int yy_init_globals (void)
{
/* Initialization is the same as for the non-reentrant scanner.
* This function is called from yylex_destroy(), so don't allocate here.
*/
(yy_buffer_stack) = NULL;
(yy_buffer_stack_top) = 0;
(yy_buffer_stack_max) = 0;
(yy_c_buf_p) = NULL;
(yy_init) = 0;
(yy_start) = 0;
/* Defined in main.c */
#ifdef YY_STDINIT
yyin = stdin;
yyout = stdout;
#else
yyin = NULL;
yyout = NULL;
#endif
/* For future reference: Set errno on error, since we are called by
* yylex_init()
*/
return 0;
}
/* yylex_destroy is for both reentrant and non-reentrant scanners. */
int yylex_destroy (void)
{
/* Pop the buffer stack, destroying each element. */
while(YY_CURRENT_BUFFER){
yy_delete_buffer( YY_CURRENT_BUFFER );
YY_CURRENT_BUFFER_LVALUE = NULL;
yypop_buffer_state();
}
/* Destroy the stack itself. */
yyfree((yy_buffer_stack) );
(yy_buffer_stack) = NULL;
/* Reset the globals. This is important in a non-reentrant scanner so the next time
* yylex() is called, initialization will occur. */
yy_init_globals( );
return 0;
}
/*
* Internal utility routines.
*/
#ifndef yytext_ptr
static void yy_flex_strncpy (char* s1, const char * s2, int n )
{
int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (const char * s )
{
int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
void *yyalloc (yy_size_t size )
{
return malloc(size);
}
void *yyrealloc (void * ptr, yy_size_t size )
{
/* The cast to (char *) in the following accommodates both
* implementations that use char* generic pointers, and those
* that use void* generic pointers. It works with the latter
* because both ANSI C and C++ allow castless assignment from
* any pointer type to void*, and deal with argument conversions
* as though doing an assignment.
*/
return realloc(ptr, size);
}
void yyfree (void * ptr )
{
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
}
#define YYTABLES_NAME "yytables"
#line 703 "./util/configlexer.lex"