unbound/util/configlexer.c
2020-07-16 12:53:29 +02:00

6046 lines
221 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 323
#define YY_END_OF_BUFFER 324
/* 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[3137] =
{ 0,
1, 1, 297, 297, 301, 301, 305, 305, 309, 309,
1, 1, 313, 313, 317, 317, 324, 321, 1, 295,
295, 322, 2, 322, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 297, 298, 298, 299,
322, 301, 302, 302, 303, 322, 308, 305, 306, 306,
307, 322, 309, 310, 310, 311, 322, 320, 296, 2,
300, 322, 320, 316, 313, 314, 314, 315, 322, 317,
318, 318, 319, 322, 321, 0, 1, 2, 2, 2,
2, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 297, 0, 301, 0,
308, 0, 305, 309, 0, 320, 0, 2, 2, 320,
316, 0, 313, 317, 0, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 320, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 115, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 123,
321, 321, 321, 321, 321, 321, 321, 320, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 99, 321, 321, 321, 321, 321,
321, 8, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
116, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
128, 321, 320, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 290, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 320, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 57, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
227, 321, 14, 15, 321, 19, 18, 321, 321, 211,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 122, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 209, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 3, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 320, 321, 321,
321, 321, 321, 321, 321, 284, 321, 321, 283, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 304, 321, 321,
321, 321, 321, 321, 321, 56, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 60, 321, 258, 321, 321, 321, 321, 321,
321, 321, 321, 291, 292, 321, 321, 321, 321, 321,
61, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 119, 321, 321,
321, 321, 321, 321, 321, 321, 198, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 21, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 147, 321, 321, 320,
304, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 97, 321, 321, 321, 321, 321, 321, 321, 266,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 170, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 146,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 96, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 32,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 33,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 58, 321, 321, 321, 321, 321,
321, 321, 321, 321, 121, 320, 321, 321, 321, 321,
321, 114, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 59, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 231,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 171, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 47, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 249, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 51, 321, 52, 321, 321, 321, 321, 321, 100,
321, 101, 321, 321, 321, 321, 98, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 7, 321, 320, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 220, 321, 321, 321, 321,
149, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 232, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 48, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 190,
321, 189, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 16, 17,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 62, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 197, 321, 321, 321, 321,
321, 321, 103, 321, 102, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 181, 321, 321, 321,
321, 321, 321, 321, 321, 129, 320, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 81, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 210, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
85, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 55, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 184, 185, 321, 321, 321, 260, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 6, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 264, 321, 321, 321, 321, 321, 321,
285, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 42, 321, 321, 321, 321, 44, 321, 321, 321,
321, 321, 321, 321, 321, 45, 321, 321, 321, 321,
321, 321, 321, 320, 321, 177, 321, 321, 321, 124,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
202, 321, 178, 321, 321, 321, 217, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 46, 321, 321,
321, 321, 321, 321, 321, 321, 321, 126, 108, 321,
109, 321, 321, 321, 107, 321, 321, 321, 321, 321,
321, 321, 321, 144, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 248, 321, 321, 321,
321, 321, 321, 321, 321, 179, 321, 321, 321, 321,
321, 182, 321, 188, 321, 321, 321, 321, 321, 216,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 95, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 120, 321, 321, 321, 321, 321, 321,
53, 321, 321, 321, 26, 321, 321, 321, 321, 321,
321, 321, 321, 321, 20, 321, 321, 321, 321, 321,
321, 27, 36, 321, 154, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 320, 321,
321, 321, 321, 321, 321, 70, 72, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
268, 321, 321, 321, 321, 228, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 110, 321, 321,
321, 321, 321, 321, 321, 321, 321, 143, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 279, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 148, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 208, 321, 321,
321, 321, 321, 321, 321, 321, 321, 288, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 165,
321, 321, 321, 321, 321, 321, 321, 321, 104, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 160, 321,
172, 321, 321, 321, 321, 320, 321, 132, 321, 321,
321, 321, 321, 91, 321, 321, 321, 321, 200, 321,
321, 321, 321, 321, 321, 218, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 240, 321, 321, 321, 321, 321, 321, 321,
321, 321, 125, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 164, 321, 321, 321, 321, 321, 321,
73, 74, 321, 321, 321, 321, 321, 54, 321, 321,
321, 321, 321, 80, 173, 321, 191, 321, 221, 321,
321, 183, 261, 321, 321, 321, 321, 321, 66, 321,
175, 321, 321, 321, 321, 321, 9, 321, 321, 321,
94, 321, 321, 321, 321, 253, 321, 321, 321, 321,
199, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 320, 321, 321, 321,
321, 163, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 150, 321, 267, 321, 321, 321, 321, 321,
239, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 212, 321, 321, 321, 321, 259, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 282, 321, 174, 321, 321, 321, 321,
321, 321, 321, 65, 67, 321, 321, 321, 321, 321,
321, 321, 93, 321, 321, 321, 321, 251, 321, 321,
321, 321, 263, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 204, 34, 28, 30, 321, 321,
321, 321, 321, 321, 321, 321, 321, 35, 321, 29,
31, 321, 321, 321, 321, 321, 321, 321, 321, 90,
321, 321, 321, 321, 321, 321, 320, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 206, 203,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 64, 321,
321, 127, 321, 111, 321, 321, 321, 321, 321, 321,
321, 321, 145, 312, 13, 321, 321, 321, 321, 321,
321, 321, 321, 321, 277, 321, 280, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 12, 321, 321,
22, 321, 321, 321, 257, 321, 321, 321, 321, 265,
321, 321, 321, 68, 321, 214, 321, 321, 321, 321,
205, 321, 321, 63, 321, 321, 321, 321, 23, 321,
43, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 159, 158, 312, 321, 321, 321, 321,
321, 321, 321, 321, 321, 207, 201, 321, 219, 321,
321, 269, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
75, 321, 321, 321, 252, 321, 321, 321, 321, 187,
321, 321, 321, 321, 213, 321, 321, 321, 321, 321,
321, 321, 321, 321, 286, 287, 156, 321, 321, 69,
321, 321, 321, 321, 166, 321, 321, 105, 106, 321,
321, 321, 321, 151, 321, 153, 321, 192, 321, 321,
321, 321, 157, 321, 321, 222, 321, 321, 321, 321,
321, 321, 321, 134, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 230, 321, 321, 321,
321, 321, 321, 321, 24, 321, 262, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 193, 321,
321, 250, 321, 281, 321, 186, 321, 321, 321, 321,
49, 321, 321, 321, 321, 4, 321, 321, 321, 321,
118, 133, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
225, 37, 38, 321, 321, 321, 321, 321, 321, 321,
270, 321, 321, 321, 321, 321, 321, 321, 238, 321,
321, 321, 321, 321, 321, 321, 196, 321, 321, 321,
321, 321, 321, 321, 321, 321, 78, 321, 50, 256,
321, 226, 321, 321, 321, 321, 11, 321, 321, 321,
321, 321, 321, 117, 321, 321, 321, 321, 194, 82,
321, 40, 321, 321, 321, 321, 321, 321, 321, 321,
162, 321, 321, 321, 321, 321, 136, 321, 321, 321,
321, 229, 321, 321, 321, 321, 321, 237, 321, 321,
321, 321, 130, 321, 321, 112, 113, 321, 321, 321,
84, 88, 83, 321, 76, 321, 321, 321, 321, 321,
10, 321, 321, 321, 254, 289, 321, 321, 321, 321,
294, 39, 321, 321, 321, 321, 321, 161, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
89, 87, 321, 77, 278, 321, 321, 321, 321, 321,
321, 321, 180, 321, 321, 321, 321, 321, 195, 321,
321, 321, 321, 321, 321, 321, 321, 152, 71, 321,
321, 321, 321, 321, 271, 321, 321, 321, 321, 321,
321, 321, 234, 321, 321, 233, 131, 321, 86, 137,
138, 141, 142, 139, 140, 79, 321, 255, 321, 321,
321, 321, 155, 321, 321, 321, 321, 321, 224, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 168, 167, 41, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 92, 321, 223, 321, 247, 275, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 5, 321, 321, 215, 321, 321, 276, 321, 321,
321, 321, 321, 321, 321, 321, 321, 235, 25, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 236, 321, 321, 321, 135, 321, 321, 321, 321,
321, 321, 321, 321, 169, 321, 176, 321, 321, 321,
321, 321, 321, 321, 321, 321, 272, 321, 321, 321,
321, 321, 321, 321, 321, 321, 321, 321, 321, 321,
321, 321, 321, 321, 293, 321, 321, 243, 321, 321,
321, 321, 321, 273, 321, 321, 321, 321, 321, 321,
274, 321, 321, 321, 241, 321, 244, 245, 321, 321,
321, 321, 321, 242, 246, 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[3155] =
{ 0,
0, 0, 38, 41, 44, 46, 59, 65, 71, 77,
90, 112, 96, 118, 124, 136, 4335, 3834, 81, 6133,
6133, 6133, 129, 52, 130, 63, 131, 152, 70, 140,
144, 156, 57, 88, 76, 173, 175, 95, 184, 135,
185, 205, 147, 204, 178, 123, 3717, 6133, 6133, 6133,
107, 3426, 6133, 6133, 6133, 178, 3362, 3153, 6133, 6133,
6133, 224, 2654, 6133, 6133, 6133, 204, 2276, 6133, 238,
6133, 242, 197, 2238, 1962, 6133, 6133, 6133, 246, 1833,
6133, 6133, 6133, 216, 1673, 252, 166, 0, 256, 0,
0, 216, 248, 162, 241, 250, 254, 258, 92, 259,
262, 263, 260, 264, 265, 272, 267, 273, 271, 282,
280, 288, 292, 290, 283, 299, 309, 289, 307, 310,
311, 300, 316, 191, 321, 315, 323, 304, 325, 327,
326, 337, 329, 338, 340, 348, 341, 345, 347, 350,
357, 227, 351, 354, 358, 362, 369, 359, 373, 379,
374, 377, 383, 385, 387, 384, 1618, 403, 1352, 406,
814, 416, 740, 688, 410, 600, 420, 424, 0, 416,
501, 430, 464, 442, 435, 422, 434, 429, 430, 431,
433, 397, 432, 435, 436, 437, 440, 454, 438, 453,
459, 462, 466, 461, 467, 471, 472, 473, 474, 476,
477, 490, 485, 487, 480, 493, 495, 496, 498, 499,
505, 512, 500, 502, 521, 526, 522, 530, 519, 535,
537, 532, 540, 533, 542, 547, 543, 544, 545, 548,
549, 552, 554, 556, 558, 561, 560, 564, 559, 572,
573, 565, 577, 567, 582, 584, 591, 586, 587, 588,
593, 594, 604, 605, 595, 613, 596, 597, 609, 616,
623, 624, 619, 620, 622, 625, 626, 628, 629, 630,
631, 639, 640, 642, 646, 650, 648, 652, 653, 655,
656, 632, 665, 658, 660, 667, 673, 672, 674, 676,
678, 680, 679, 681, 683, 684, 697, 686, 702, 687,
704, 699, 705, 707, 714, 701, 709, 710, 711, 715,
719, 717, 725, 713, 718, 733, 723, 737, 726, 745,
743, 730, 758, 744, 747, 749, 759, 748, 750, 756,
769, 761, 779, 766, 773, 781, 784, 792, 789, 795,
785, 797, 787, 798, 801, 803, 810, 808, 6133, 805,
807, 819, 822, 823, 826, 816, 832, 806, 836, 839,
841, 838, 846, 868, 824, 842, 845, 847, 850, 6133,
854, 852, 892, 861, 856, 878, 874, 858, 881, 870,
888, 882, 896, 883, 893, 898, 916, 899, 903, 905,
902, 914, 915, 924, 926, 921, 928, 929, 937, 932,
933, 934, 938, 942, 944, 945, 950, 946, 951, 952,
954, 965, 955, 963, 959, 967, 968, 970, 972, 983,
976, 977, 993, 984, 989, 994, 996, 997, 991, 1000,
1003, 1007, 1004, 1008, 1012, 1020, 1015, 1010, 1017, 1018,
1022, 1028, 1024, 1026, 1030, 1031, 1032, 1040, 1033, 1041,
1034, 1047, 1049, 752, 6133, 1051, 1053, 1054, 1055, 1056,
1057, 6133, 1059, 1058, 1061, 1066, 1063, 1071, 1080, 1067,
1082, 1070, 1083, 1084, 1092, 1087, 1088, 1095, 1094, 1096,
947, 1098, 1100, 1105, 1102, 1106, 1109, 1103, 1114, 1128,
6133, 1112, 1115, 1116, 1118, 1123, 1131, 1140, 1126, 1133,
1143, 1146, 1156, 1151, 1121, 1152, 1153, 1157, 1160, 1163,
1165, 1166, 1168, 1169, 1170, 1171, 1172, 1174, 1179, 1184,
6133, 1177, 1187, 1195, 1196, 1182, 1198, 1199, 1200, 1201,
1202, 1203, 1205, 1204, 1210, 1220, 1211, 1224, 1221, 1222,
1226, 1227, 1229, 1228, 1230, 1232, 1244, 1237, 1236, 1252,
1247, 1254, 1256, 1263, 1265, 1245, 1258, 1262, 1260, 1268,
1269, 1270, 1271, 1273, 1274, 1283, 1280, 1281, 1282, 1285,
1295, 1286, 1288, 1298, 1290, 1296, 1293, 1300, 1304, 1307,
1303, 1313, 6133, 1320, 1315, 1318, 1319, 1322, 1326, 1325,
1331, 1332, 1333, 1335, 1334, 1336, 1338, 1342, 1341, 1343,
1344, 1346, 1355, 1357, 1361, 1368, 1367, 1369, 1354, 1362,
1377, 1373, 1381, 1379, 1380, 1389, 1384, 1386, 1387, 1396,
1391, 1393, 1395, 1394, 1403, 1398, 1408, 1415, 1401, 1412,
1422, 1418, 1420, 1423, 1424, 1427, 1428, 1430, 1431, 1432,
1433, 1440, 1435, 1438, 1437, 1441, 1436, 1442, 1450, 1444,
1463, 1455, 1458, 1460, 1464, 1467, 1466, 1465, 1468, 1472,
1473, 1475, 1474, 1476, 1478, 1485, 875, 1487, 1489, 1493,
1495, 1497, 1496, 1500, 1499, 1502, 1508, 1498, 1511, 1512,
1515, 1517, 1519, 1520, 1524, 1528, 1522, 1530, 1523, 1533,
1534, 1541, 1542, 1545, 1537, 6133, 1535, 1556, 1548, 1549,
1552, 1557, 1558, 1565, 1561, 1560, 1562, 1563, 1566, 1589,
6133, 1570, 6133, 6133, 1573, 6133, 6133, 1572, 1571, 6133,
1578, 1579, 1583, 1574, 1592, 1596, 1597, 1599, 1600, 1610,
1621, 1612, 1603, 1614, 1602, 1616, 1635, 1630, 1605, 1626,
1642, 1631, 1644, 1645, 1649, 1651, 1646, 1638, 1652, 1654,
1659, 1655, 1660, 1662, 1665, 1666, 1664, 1668, 1669, 1676,
1681, 1672, 1689, 6133, 1685, 1693, 1698, 1694, 1701, 1697,
1696, 1703, 1705, 1707, 1708, 1709, 1710, 1712, 1713, 1718,
1675, 1714, 1726, 1721, 6133, 1724, 1725, 1723, 1730, 1728,
1736, 1738, 1731, 1729, 1741, 1742, 1752, 1748, 1744, 1753,
1756, 1757, 1758, 6133, 1760, 1764, 1766, 1768, 1767, 1770,
1771, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1789, 1784,
1786, 1792, 1794, 1801, 1802, 1804, 1806, 1803, 1810, 1812,
1813, 1814, 1815, 1817, 1818, 1826, 1828, 1825, 1830, 1827,
1835, 1846, 1841, 1831, 1842, 1843, 1844, 1851, 1855, 1853,
1857, 1858, 1866, 1859, 1864, 1867, 1868, 1878, 1861, 1870,
1880, 1869, 1882, 1883, 1884, 6133, 1886, 1887, 6133, 1889,
1890, 1912, 1892, 1894, 1899, 1896, 1897, 1900, 1905, 1913,
1919, 1916, 1932, 1925, 1929, 1935, 1937, 1940, 1906, 1936,
1942, 1938, 1944, 1948, 1947, 1960, 1967, 1908, 1968, 1970,
1949, 1946, 1962, 1981, 1966, 1969, 1972, 1973, 1975, 1979,
1983, 1988, 1977, 1990, 1993, 1994, 1997, 6133, 2005, 2003,
2004, 2008, 2016, 2013, 2011, 6133, 2015, 2019, 2020, 2031,
2026, 2014, 2022, 2012, 2029, 2034, 2037, 2038, 2039, 2040,
2041, 2050, 6133, 2045, 6133, 2042, 2051, 2053, 2052, 2055,
2059, 2057, 2060, 6133, 6133, 2063, 2067, 2069, 2081, 2064,
6133, 2078, 2085, 2082, 2087, 2088, 2080, 2089, 2091, 2093,
2092, 2101, 2096, 2103, 2098, 2099, 2108, 6133, 2111, 2110,
2112, 2115, 2118, 2119, 2121, 2123, 6133, 2127, 2125, 2130,
2138, 2129, 2137, 2139, 2140, 2144, 2142, 2147, 2148, 2149,
2150, 2159, 2161, 2151, 2162, 2164, 2171, 6133, 2154, 2158,
2176, 2174, 2181, 2173, 2175, 2177, 2183, 2185, 2186, 2187,
2190, 2191, 2192, 2199, 2200, 2197, 2196, 2205, 2206, 2207,
2210, 2213, 2214, 2215, 2216, 2217, 6133, 2218, 2220, 2223,
391, 2226, 2229, 2227, 2228, 2236, 2231, 2234, 2247, 2252,
2248, 2249, 2250, 2256, 2257, 2258, 2259, 2260, 2261, 2262,
2264, 6133, 2266, 2267, 2269, 2273, 2272, 2275, 2280, 6133,
2282, 2289, 2292, 2301, 2284, 2293, 2302, 2298, 2303, 2304,
2306, 2308, 2310, 2309, 2312, 2315, 6133, 2319, 2320, 2324,
2316, 2326, 2328, 2330, 2333, 2335, 2337, 2340, 2338, 2342,
2343, 2341, 2344, 2345, 2351, 2346, 2347, 2354, 2359, 6133,
2364, 2362, 2366, 2370, 2369, 2371, 2372, 2387, 2373, 2379,
2375, 2382, 2394, 2385, 2391, 2396, 2404, 2401, 2409, 2414,
2410, 2411, 2419, 2412, 2421, 2423, 2424, 2425, 2427, 2429,
2430, 2431, 2432, 2440, 2447, 2437, 2448, 2446, 2438, 2456,
2457, 6133, 2459, 2458, 2451, 2461, 2477, 2465, 2467, 2475,
2472, 2478, 2479, 2481, 2482, 2490, 2491, 2485, 2483, 2494,
2488, 2495, 2501, 2503, 2505, 2507, 2508, 2512, 2395, 6133,
2513, 2509, 2515, 2517, 2521, 2518, 2525, 2529, 2522, 2531,
2532, 2536, 2537, 2539, 2540, 2541, 2545, 2547, 2533, 6133,
2555, 2544, 2543, 2550, 2556, 2562, 2563, 2566, 2572, 2569,
2565, 2575, 2577, 2567, 6133, 2582, 2585, 2586, 2593, 2588,
2589, 2590, 2595, 2578, 6133, 2592, 2596, 2599, 2606, 2609,
2604, 6133, 2611, 2612, 2613, 2602, 2615, 2617, 2618, 2620,
2621, 2623, 2625, 2628, 2624, 2631, 6133, 2634, 2643, 2638,
2639, 2644, 2645, 2649, 2650, 2655, 2657, 2667, 2658, 6133,
2676, 2671, 2651, 2679, 2661, 2674, 2677, 2681, 2682, 2683,
2684, 2685, 6133, 2688, 2690, 2691, 2692, 2694, 2696, 2697,
2710, 2699, 2703, 2706, 2712, 2713, 2707, 2718, 2717, 2725,
2715, 2729, 2731, 2719, 2735, 2721, 2736, 2739, 2746, 2748,
2749, 2751, 6133, 2754, 2743, 2755, 2745, 2756, 2758, 2759,
2760, 2762, 2767, 2769, 2765, 2768, 2777, 2784, 2772, 2780,
2785, 2786, 2788, 2789, 2790, 2791, 2795, 2799, 2796, 2798,
2806, 2802, 2808, 2816, 2803, 2807, 2812, 2815, 2818, 2817,
2820, 2827, 2830, 2825, 2840, 2842, 2843, 2819, 2836, 2844,
2845, 2850, 6133, 2829, 2846, 2855, 2854, 2857, 2860, 2861,
2868, 2863, 2864, 2867, 2871, 2876, 2865, 2879, 2881, 2888,
2884, 6133, 2886, 6133, 2887, 2889, 2890, 2898, 2893, 6133,
2896, 6133, 2899, 2906, 2900, 2903, 6133, 2907, 2909, 2911,
2914, 2912, 2917, 2918, 2921, 2922, 2923, 2925, 2928, 2930,
2931, 2932, 2935, 2939, 2942, 2940, 2944, 2948, 2941, 2950,
2953, 2954, 2958, 2959, 2963, 6133, 2967, 2960, 2964, 2969,
2970, 2971, 2972, 2973, 2979, 2980, 2981, 2977, 2987, 2988,
2991, 2994, 3002, 2995, 3004, 6133, 3003, 3006, 3007, 3010,
6133, 3009, 3011, 3012, 3018, 3020, 3021, 3022, 3024, 3028,
3023, 3030, 3025, 3040, 3038, 3031, 3044, 6133, 3048, 3049,
3050, 3052, 3060, 3062, 3061, 3064, 3067, 3076, 3069, 3071,
3033, 3053, 3073, 3077, 3085, 3087, 3078, 3088, 3086, 3089,
3091, 3092, 3095, 3096, 3098, 3100, 3101, 3099, 3105, 3106,
3108, 3103, 3104, 3107, 3110, 6133, 3126, 3112, 3122, 3128,
3120, 3130, 3133, 3134, 3136, 3138, 3139, 3142, 3140, 6133,
3143, 6133, 3137, 3147, 3149, 3160, 3155, 3161, 3165, 3170,
3164, 3166, 3171, 3173, 3172, 3174, 3175, 3180, 3183, 3187,
3188, 3194, 3181, 3189, 3186, 3197, 3198, 3200, 6133, 6133,
3203, 3205, 3206, 3208, 3209, 3210, 3216, 3213, 3221, 3219,
3220, 3227, 3235, 6133, 3230, 3232, 3233, 3238, 3242, 3239,
3249, 3246, 3251, 3258, 3253, 6133, 3250, 3254, 3266, 3261,
3262, 3269, 6133, 3264, 6133, 3267, 3273, 3275, 3276, 3277,
3278, 3279, 3280, 3282, 3295, 3302, 3284, 3288, 3298, 3299,
3300, 3301, 3310, 3305, 3306, 3307, 6133, 3309, 3311, 3312,
3315, 3321, 3323, 3324, 3313, 6133, 3329, 3330, 3335, 3332,
3337, 3338, 3340, 3342, 3343, 3346, 3347, 3344, 3348, 3360,
3352, 3353, 3355, 3366, 3367, 3373, 6133, 3369, 3375, 3382,
3378, 3379, 3381, 3385, 3380, 3386, 3387, 3389, 3390, 3392,
3393, 3394, 3396, 3398, 3401, 3399, 3404, 3412, 3413, 3415,
3424, 3420, 6133, 3421, 3422, 3425, 3427, 3430, 3431, 3434,
3436, 3437, 3443, 3447, 3439, 3449, 3451, 3452, 3459, 3455,
6133, 3467, 3454, 3468, 3463, 3466, 3465, 3473, 3471, 3481,
3477, 3478, 3479, 3486, 3482, 6133, 3493, 3483, 3501, 3484,
3485, 3510, 3505, 3506, 3494, 3508, 3509, 3511, 3513, 3516,
3517, 3520, 3521, 6133, 6133, 3523, 3524, 3525, 6133, 3527,
3529, 3537, 3540, 3530, 3528, 3545, 3544, 3532, 3546, 3542,
3548, 6133, 3554, 3561, 3556, 3560, 3563, 3571, 3570, 3572,
3566, 3562, 3573, 3574, 3578, 3579, 3580, 3583, 3591, 3593,
3588, 3589, 3590, 6133, 3595, 3596, 3598, 3600, 3601, 3602,
6133, 3605, 3607, 3613, 3612, 3623, 3625, 3616, 3631, 3614,
3626, 3609, 3633, 3634, 3636, 3643, 3642, 3639, 3646, 3647,
3649, 6133, 3641, 3651, 3652, 3659, 6133, 3661, 3669, 3670,
3671, 3655, 3673, 3674, 3682, 6133, 3675, 3679, 3677, 3666,
3690, 3680, 3694, 3692, 3693, 6133, 3695, 3685, 3696, 6133,
3700, 3698, 3709, 3711, 3706, 3718, 3713, 3715, 3716, 3714,
6133, 3724, 6133, 3725, 3721, 3730, 6133, 3727, 3732, 3735,
3737, 3734, 3741, 3742, 3745, 3750, 3738, 3751, 3752, 3753,
3755, 3756, 3763, 3762, 3764, 3765, 3754, 6133, 3766, 3769,
3775, 3776, 3779, 3774, 3771, 3785, 3781, 6133, 6133, 3796,
6133, 3797, 3782, 3789, 6133, 3791, 3793, 3808, 3799, 3803,
3809, 3813, 3810, 6133, 3814, 3801, 3815, 3819, 3817, 3822,
3824, 3825, 3827, 3828, 3829, 3832, 6133, 3830, 3833, 3841,
3831, 3842, 3852, 3848, 3846, 6133, 3856, 3857, 3847, 3858,
3860, 6133, 3864, 6133, 3868, 3869, 3870, 3872, 3871, 6133,
3875, 3879, 3881, 3876, 3883, 3885, 3884, 3891, 3892, 3894,
3901, 3898, 3899, 3897, 6133, 3900, 3904, 3907, 3908, 3911,
3913, 3921, 3917, 3923, 3916, 3920, 3930, 3927, 3931, 3937,
3935, 3940, 3924, 6133, 3941, 3946, 3943, 3955, 3947, 3951,
6133, 3957, 3960, 3961, 6133, 3958, 3952, 3959, 3974, 3962,
3967, 3970, 3975, 3976, 6133, 3978, 3981, 3977, 3979, 3982,
3983, 6133, 6133, 3988, 6133, 3995, 3996, 3998, 3999, 4000,
4002, 4004, 4005, 4009, 4010, 4012, 4015, 4018, 4006, 4027,
4030, 4038, 4033, 4034, 4023, 6133, 6133, 4040, 4044, 4037,
4048, 4049, 4041, 4051, 4058, 4055, 4056, 4062, 4063, 4071,
6133, 4072, 4054, 4073, 4064, 6133, 4066, 4075, 4067, 4078,
4081, 4079, 4082, 4083, 4087, 4085, 4089, 4095, 4094, 4096,
4100, 4102, 4104, 4105, 4022, 4106, 4112, 6133, 4108, 4113,
4115, 4117, 4118, 4119, 4120, 4121, 4122, 6133, 4129, 4128,
4125, 4136, 4135, 4131, 4137, 4146, 4152, 4154, 4149, 4155,
4156, 4158, 4160, 4161, 6133, 4169, 4162, 4163, 4165, 4172,
4176, 4173, 4179, 4180, 4185, 4181, 4186, 4188, 4190, 4193,
4194, 4195, 4197, 6133, 4199, 4201, 4202, 4206, 4208, 4211,
4210, 4214, 4219, 4212, 4220, 4222, 4224, 6133, 4225, 4227,
4228, 4229, 4237, 4232, 4234, 4238, 4240, 6133, 4247, 4242,
4249, 4244, 4248, 4252, 4254, 4259, 4263, 4265, 4261, 6133,
4257, 4268, 4271, 4274, 4275, 4277, 4278, 4282, 6133, 4284,
4285, 4286, 4293, 4291, 4300, 4292, 4302, 4295, 4296, 4303,
4304, 4305, 4310, 4315, 4311, 4322, 4323, 4326, 6133, 4318,
6133, 4327, 4328, 4337, 4332, 4334, 4335, 6133, 4340, 4342,
4344, 4345, 4350, 6133, 4349, 4346, 4348, 4352, 6133, 4351,
4365, 4347, 4366, 4369, 4371, 6133, 4374, 4376, 4375, 4383,
4387, 4382, 4385, 4386, 4388, 4390, 4392, 4393, 4394, 4403,
4396, 4399, 6133, 4401, 4408, 4414, 4415, 4398, 4409, 4417,
4419, 4422, 6133, 4423, 4416, 4424, 4425, 4426, 4427, 4432,
4440, 4442, 4431, 6133, 4433, 4438, 4441, 4456, 4443, 4453,
6133, 6133, 4452, 4457, 4459, 4460, 4463, 6133, 4461, 4473,
4468, 4470, 4472, 6133, 6133, 4475, 6133, 4471, 6133, 4476,
4477, 6133, 6133, 4478, 4479, 4482, 4491, 4485, 6133, 4495,
6133, 4498, 4499, 4488, 4497, 4501, 6133, 4502, 4503, 4508,
6133, 4509, 4516, 4511, 4512, 6133, 4514, 4517, 4522, 4524,
6133, 4525, 4531, 4523, 4532, 4534, 4533, 4535, 4539, 4540,
4536, 4544, 4545, 4546, 4556, 4558, 4560, 4562, 4552, 4563,
4566, 4567, 4569, 4572, 4573, 4574, 4575, 4577, 4578, 4580,
4583, 4587, 4588, 4586, 4589, 4590, 4599, 4592, 4595, 4603,
4596, 4606, 4607, 4608, 4609, 4611, 4614, 4616, 4613, 4619,
4620, 6133, 4618, 4623, 4624, 4628, 4629, 4637, 4639, 4641,
4649, 4650, 6133, 4652, 6133, 4654, 4638, 4646, 4658, 4659,
6133, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4667, 4670,
4671, 4675, 6133, 4682, 4669, 4686, 4693, 6133, 4690, 4697,
4694, 4698, 4700, 4702, 4701, 4703, 4704, 4705, 4709, 4711,
4714, 4678, 4715, 4722, 4706, 4718, 4726, 4727, 4729, 4728,
4732, 4736, 4740, 6133, 4735, 6133, 4741, 4742, 4743, 4744,
4748, 4745, 4749, 6133, 6133, 4751, 4756, 4758, 4752, 4760,
4763, 4766, 6133, 4769, 4772, 4774, 4775, 6133, 4777, 4779,
4780, 4782, 6133, 4783, 4785, 4786, 4797, 4787, 4802, 4793,
4803, 4789, 4804, 4808, 6133, 6133, 6133, 6133, 4809, 4791,
4815, 4811, 4817, 4818, 4819, 4821, 4822, 6133, 4826, 6133,
6133, 4829, 4831, 4832, 4833, 4835, 4823, 4839, 4841, 6133,
4840, 4845, 4847, 4844, 4854, 4857, 4861, 4851, 4862, 4863,
4864, 4871, 4868, 4869, 4872, 4874, 4876, 4878, 6133, 6133,
4880, 4884, 4885, 4892, 4889, 4890, 4896, 4903, 4898, 4899,
4900, 4901, 4905, 4906, 4914, 4917, 4907, 4918, 6133, 4915,
4919, 6133, 4921, 6133, 4923, 4924, 4925, 4926, 4931, 4932,
4934, 4936, 6133, 6133, 6133, 4937, 4938, 4942, 4947, 4944,
4948, 4949, 4951, 4952, 6133, 4953, 6133, 4954, 4955, 4966,
4960, 4973, 4975, 4976, 4978, 4972, 4979, 6133, 4981, 4982,
6133, 4983, 4986, 4988, 6133, 4991, 4989, 4994, 4997, 6133,
4999, 5001, 5004, 6133, 5011, 6133, 5002, 5008, 5006, 5020,
6133, 5012, 5015, 6133, 5024, 5026, 5027, 5021, 6133, 5017,
6133, 5028, 5037, 5038, 5041, 5029, 5043, 5033, 5031, 5045,
5053, 5051, 5052, 6133, 6133, 181, 5061, 5054, 5058, 5062,
5057, 5070, 5065, 5067, 5069, 6133, 6133, 5074, 6133, 5072,
5073, 6133, 5066, 5081, 5085, 5075, 5083, 5087, 5089, 5094,
5096, 5097, 5099, 5098, 5100, 5106, 5121, 5103, 5117, 5123,
5125, 5127, 5129, 5118, 5131, 5113, 5132, 5135, 5137, 5139,
6133, 5141, 5101, 5138, 6133, 5143, 5145, 5147, 5148, 6133,
5150, 5151, 5154, 5155, 6133, 5161, 5166, 5167, 5168, 5169,
5176, 5172, 5173, 5174, 6133, 6133, 6133, 5181, 5188, 6133,
5190, 5180, 5183, 5191, 6133, 5192, 5193, 6133, 6133, 5195,
5197, 5196, 5204, 6133, 5199, 6133, 5200, 6133, 5202, 5210,
5212, 5214, 6133, 5217, 5224, 6133, 5219, 5227, 5230, 5231,
5232, 5234, 5233, 6133, 5241, 5237, 5239, 5246, 5236, 5243,
5247, 5251, 5248, 5263, 5249, 5259, 6133, 5260, 5262, 5265,
5271, 5250, 5261, 5273, 6133, 5278, 6133, 5275, 5279, 5280,
5281, 5282, 5283, 5286, 5291, 5285, 5300, 5287, 6133, 5304,
5308, 6133, 5289, 6133, 5313, 6133, 5301, 5305, 5309, 5314,
6133, 5316, 5318, 5297, 5322, 6133, 5323, 5326, 5327, 5329,
6133, 6133, 5330, 5337, 5334, 5332, 5336, 5343, 5333, 5345,
5347, 5348, 5349, 5361, 5351, 5356, 5352, 5360, 5362, 5366,
6133, 6133, 6133, 5363, 5371, 5379, 5377, 5378, 5380, 5382,
6133, 5383, 5385, 5387, 5386, 5395, 5390, 5394, 6133, 5397,
5396, 5398, 5399, 5402, 5403, 5404, 6133, 5411, 5416, 5419,
5406, 5421, 5418, 5428, 5430, 5431, 6133, 5433, 6133, 6133,
5425, 6133, 5434, 5435, 5437, 5438, 6133, 5441, 5446, 5442,
5443, 5448, 5450, 6133, 5451, 5453, 5455, 5458, 6133, 6133,
5465, 6133, 5467, 5470, 5454, 5477, 5469, 5472, 5479, 5482,
6133, 5476, 5483, 5484, 5485, 5486, 6133, 5490, 5488, 5491,
5493, 6133, 5494, 5499, 5500, 5495, 5501, 6133, 5504, 5502,
5514, 5505, 6133, 5519, 5520, 6133, 6133, 5524, 5526, 5527,
6133, 6133, 6133, 5529, 6133, 5535, 5540, 5544, 5548, 5532,
6133, 5550, 5543, 5551, 6133, 6133, 5547, 5552, 5553, 5555,
6133, 6133, 5556, 5557, 5559, 5521, 5560, 6133, 5562, 5568,
5569, 5574, 5579, 5571, 5582, 5576, 5590, 5597, 5583, 5592,
5593, 5594, 5595, 5596, 5602, 5604, 5603, 5606, 5611, 5612,
6133, 6133, 5619, 6133, 6133, 5621, 5623, 5625, 5627, 5629,
5631, 5633, 6133, 5634, 5636, 5637, 5638, 5639, 6133, 5641,
5645, 5640, 5648, 5642, 5651, 5647, 5657, 6133, 6133, 5649,
5613, 5653, 5663, 5658, 6133, 5665, 5672, 5669, 5670, 5671,
5673, 5677, 6133, 5674, 5678, 6133, 6133, 5681, 6133, 6133,
6133, 6133, 6133, 6133, 6133, 6133, 5682, 6133, 5684, 5689,
5695, 5699, 6133, 5686, 5692, 5700, 5702, 5703, 6133, 5705,
5707, 5706, 5708, 5712, 5713, 5716, 5715, 5719, 5720, 5721,
5723, 5724, 5730, 5726, 5725, 5735, 6133, 6133, 6133, 5739,
5731, 5744, 5732, 5749, 5754, 5757, 5759, 5750, 5752, 5760,
5761, 5762, 5764, 5765, 5774, 5770, 5771, 5773, 5775, 5777,
5779, 5781, 5786, 6133, 5782, 6133, 5787, 6133, 6133, 5791,
5792, 5788, 5798, 5807, 5808, 5799, 5803, 5804, 5806, 5810,
5815, 6133, 5812, 5818, 6133, 5820, 5821, 6133, 5819, 5822,
5824, 5828, 5829, 5826, 5830, 5831, 5847, 6133, 6133, 5832,
5837, 5840, 5849, 5851, 5850, 5853, 5857, 5858, 5860, 5861,
5870, 6133, 5867, 5868, 5872, 6133, 5874, 5869, 5875, 5876,
5877, 5885, 5881, 5884, 6133, 5886, 6133, 5890, 5892, 5893,
5883, 5891, 5894, 5905, 5903, 5899, 6133, 5909, 5913, 5911,
5915, 5917, 5919, 5920, 5921, 5923, 5926, 5932, 5929, 5936,
5937, 5933, 5941, 5938, 6133, 5948, 5939, 6133, 5945, 5949,
5942, 5951, 5955, 6133, 5960, 5953, 5962, 5963, 5966, 5967,
6133, 5969, 5976, 5971, 6133, 5977, 6133, 6133, 5979, 5973,
5980, 5986, 5988, 6133, 6133, 6133, 6013, 6020, 6027, 6034,
6041, 6048, 6055, 88, 6062, 6069, 6076, 6083, 6090, 6097,
6104, 6111, 6118, 6125
} ;
static const flex_int16_t yy_def[3155] =
{ 0,
3136, 1, 3137, 3137, 3138, 3138, 3139, 3139, 3140, 3140,
3141, 3141, 3142, 3142, 3143, 3143, 3136, 3144, 3136, 3136,
3136, 3136, 3145, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3146, 3136, 3136, 3136,
3146, 3147, 3136, 3136, 3136, 3147, 3148, 3136, 3136, 3136,
3136, 3148, 3149, 3136, 3136, 3136, 3149, 3150, 3136, 3151,
3136, 3150, 3150, 3152, 3136, 3136, 3136, 3136, 3152, 3153,
3136, 3136, 3136, 3153, 3144, 3144, 3136, 3154, 3145, 3154,
3145, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3146, 3146, 3147, 3147,
3148, 3148, 3136, 3149, 3149, 3150, 3150, 3151, 3151, 3150,
3152, 3152, 3136, 3153, 3153, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3150, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3136, 3136, 3144, 3136, 3136, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3150,
3150, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3150, 3144, 3144, 3144, 3144,
3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3150, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3150, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3150, 3144, 3136, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144,
3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3136, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
3136, 3144, 3144, 3144, 3144, 3150, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3136, 3136, 3144, 3136, 3144, 3136, 3144,
3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144,
3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3136, 3136, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136,
3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3150, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3136, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3136, 3150, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144, 3136, 3144,
3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3136, 3136, 3144, 3144, 3136,
3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3136, 3144,
3144, 3144, 3144, 3136, 3144, 3136, 3144, 3136, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
3144, 3136, 3144, 3136, 3144, 3136, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3136, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3136, 3136,
3144, 3136, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3136, 3136,
3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3136, 3136, 3144, 3144, 3144,
3136, 3136, 3136, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3136, 3136, 3144, 3144, 3144, 3144,
3136, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3136, 3144, 3136, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3136, 3136, 3144, 3136, 3136,
3136, 3136, 3136, 3136, 3136, 3136, 3144, 3136, 3144, 3144,
3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3136, 3144, 3136, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3136, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3136, 3136, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3136, 3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3136, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144,
3144, 3144, 3144, 3144, 3136, 3144, 3144, 3136, 3144, 3144,
3144, 3144, 3144, 3136, 3144, 3144, 3144, 3144, 3144, 3144,
3136, 3144, 3144, 3144, 3136, 3144, 3136, 3136, 3144, 3144,
3144, 3144, 3144, 3136, 3136, 0, 3136, 3136, 3136, 3136,
3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
3136, 3136, 3136, 3136
} ;
static const flex_int16_t yy_nxt[6174] =
{ 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, 118, 88, 108, 85, 86,
67, 19, 20, 21, 69, 70, 71, 75, 76, 77,
78, 86, 22, 72, 120, 86, 119, 109, 86, 79,
157, 157, 73, 19, 20, 21, 69, 70, 71, 75,
76, 77, 78, 184, 22, 72, 81, 82, 83, 128,
90, 79, 90, 90, 73, 90, 86, 84, 81, 82,
83, 90, 91, 86, 86, 98, 92, 93, 86, 84,
94, 156, 99, 86, 110, 95, 100, 86, 112, 101,
86, 145, 134, 146, 96, 86, 113, 87, 111, 86,
102, 88, 147, 114, 103, 86, 115, 104, 148, 105,
106, 159, 178, 116, 159, 117, 86, 121, 86, 125,
107, 86, 153, 126, 167, 122, 154, 86, 86, 135,
155, 123, 129, 136, 86, 124, 130, 164, 164, 127,
167, 223, 131, 137, 138, 132, 139, 86, 86, 174,
174, 149, 133, 140, 170, 161, 141, 161, 161, 86,
161, 150, 176, 142, 246, 151, 152, 143, 144, 90,
86, 90, 90, 166, 90, 166, 166, 171, 166, 171,
171, 169, 171, 85, 86, 85, 85, 90, 85, 90,
90, 86, 90, 86, 85, 177, 179, 86, 90, 91,
181, 86, 86, 86, 182, 86, 86, 86, 86, 194,
86, 185, 187, 180, 86, 86, 86, 183, 188, 186,
189, 190, 191, 86, 196, 86, 86, 193, 195, 192,
197, 86, 86, 86, 198, 86, 199, 200, 205, 204,
206, 202, 86, 86, 201, 207, 211, 86, 208, 203,
86, 213, 86, 86, 86, 214, 216, 221, 86, 86,
217, 209, 210, 222, 86, 225, 86, 227, 86, 86,
86, 212, 86, 219, 229, 215, 218, 224, 220, 226,
86, 86, 234, 86, 86, 231, 228, 230, 86, 232,
86, 86, 233, 86, 86, 236, 242, 86, 248, 239,
86, 86, 86, 235, 237, 86, 247, 243, 251, 241,
238, 244, 86, 245, 240, 249, 86, 86, 250, 252,
86, 253, 86, 255, 257, 261, 86, 86, 86, 260,
86, 254, 256, 258, 167, 264, 157, 157, 262, 159,
86, 265, 159, 164, 164, 259, 263, 161, 275, 161,
161, 166, 161, 166, 166, 90, 166, 90, 90, 167,
90, 171, 266, 171, 171, 86, 171, 169, 174, 174,
267, 268, 86, 86, 86, 86, 86, 86, 86, 86,
86, 86, 272, 86, 278, 175, 269, 274, 271, 273,
270, 281, 280, 277, 276, 173, 86, 86, 282, 286,
279, 284, 86, 285, 86, 86, 283, 287, 290, 86,
86, 295, 288, 291, 86, 86, 86, 86, 292, 86,
86, 298, 299, 86, 293, 294, 296, 302, 86, 289,
86, 300, 304, 86, 297, 305, 86, 306, 86, 86,
301, 86, 86, 86, 172, 86, 311, 312, 86, 313,
308, 307, 314, 309, 315, 86, 303, 310, 321, 323,
318, 320, 86, 319, 86, 86, 316, 325, 317, 86,
322, 324, 327, 86, 328, 86, 86, 331, 86, 333,
86, 332, 326, 86, 334, 86, 86, 86, 86, 329,
86, 86, 86, 335, 337, 86, 330, 86, 339, 86,
336, 86, 86, 86, 86, 341, 343, 86, 86, 348,
86, 338, 342, 344, 349, 86, 86, 340, 345, 354,
86, 350, 347, 346, 352, 86, 351, 86, 357, 86,
86, 86, 353, 360, 86, 359, 86, 86, 86, 86,
86, 363, 364, 167, 362, 355, 356, 86, 86, 358,
366, 367, 86, 369, 368, 361, 86, 365, 370, 86,
371, 373, 86, 86, 374, 86, 86, 86, 167, 86,
377, 86, 86, 86, 86, 86, 384, 385, 382, 380,
378, 375, 86, 86, 372, 86, 376, 388, 379, 86,
386, 86, 381, 86, 387, 86, 86, 383, 86, 86,
394, 86, 395, 86, 396, 397, 389, 393, 86, 390,
86, 398, 392, 399, 391, 86, 86, 86, 401, 86,
402, 86, 86, 86, 86, 405, 86, 86, 406, 86,
86, 165, 412, 400, 409, 407, 408, 403, 404, 411,
86, 413, 86, 410, 86, 86, 414, 86, 86, 416,
86, 418, 86, 86, 86, 417, 86, 86, 86, 423,
86, 86, 86, 415, 419, 424, 86, 422, 86, 86,
420, 163, 426, 86, 421, 427, 86, 429, 425, 428,
86, 433, 434, 431, 430, 436, 86, 86, 86, 435,
86, 86, 86, 86, 449, 86, 443, 445, 454, 86,
432, 86, 86, 455, 86, 446, 450, 447, 444, 86,
437, 451, 86, 438, 452, 453, 86, 606, 439, 440,
441, 442, 86, 448, 86, 456, 457, 86, 86, 458,
86, 459, 86, 460, 462, 86, 461, 463, 86, 464,
86, 86, 467, 465, 86, 466, 86, 471, 86, 86,
86, 86, 472, 86, 473, 476, 477, 162, 488, 86,
468, 470, 86, 474, 469, 86, 86, 86, 475, 86,
478, 479, 481, 483, 482, 86, 490, 480, 484, 86,
489, 86, 86, 491, 86, 86, 492, 503, 86, 86,
86, 485, 493, 86, 486, 86, 487, 86, 494, 86,
508, 167, 495, 505, 86, 506, 504, 507, 519, 510,
496, 86, 497, 86, 498, 520, 509, 86, 86, 518,
521, 86, 523, 522, 86, 86, 86, 499, 525, 841,
500, 86, 501, 528, 502, 86, 86, 511, 512, 86,
526, 86, 86, 524, 527, 86, 86, 513, 86, 514,
515, 516, 529, 532, 517, 531, 530, 86, 86, 86,
537, 540, 538, 533, 86, 534, 535, 86, 536, 86,
541, 86, 86, 539, 545, 86, 86, 86, 549, 550,
86, 86, 548, 543, 542, 86, 544, 86, 86, 86,
86, 555, 547, 86, 86, 86, 556, 86, 86, 558,
546, 559, 86, 552, 553, 551, 86, 554, 86, 561,
86, 86, 634, 86, 557, 86, 560, 562, 564, 86,
86, 563, 567, 572, 570, 566, 86, 86, 565, 573,
574, 571, 86, 568, 86, 569, 86, 86, 576, 86,
86, 577, 578, 86, 581, 579, 86, 86, 575, 583,
86, 86, 584, 86, 580, 86, 586, 587, 86, 582,
86, 86, 588, 86, 585, 86, 591, 86, 589, 86,
592, 86, 593, 86, 86, 86, 86, 86, 599, 595,
594, 590, 603, 86, 86, 602, 598, 600, 601, 596,
86, 597, 86, 605, 86, 607, 86, 86, 86, 86,
86, 86, 86, 617, 86, 609, 86, 610, 619, 86,
86, 604, 612, 86, 86, 618, 624, 608, 616, 611,
613, 615, 614, 86, 621, 86, 86, 86, 620, 627,
86, 86, 630, 622, 629, 86, 623, 86, 86, 86,
625, 86, 626, 86, 633, 86, 86, 636, 86, 86,
628, 632, 86, 637, 639, 86, 631, 86, 86, 86,
638, 86, 635, 653, 86, 641, 86, 667, 640, 86,
642, 86, 643, 652, 86, 651, 86, 644, 656, 645,
654, 660, 655, 86, 659, 646, 86, 647, 657, 86,
648, 649, 658, 664, 86, 86, 86, 650, 663, 86,
86, 670, 661, 86, 665, 662, 86, 672, 86, 86,
666, 86, 86, 86, 86, 86, 669, 86, 668, 678,
86, 674, 86, 673, 679, 86, 675, 86, 671, 683,
167, 676, 685, 682, 684, 677, 680, 681, 86, 86,
687, 86, 86, 86, 86, 86, 86, 86, 86, 692,
694, 686, 696, 86, 86, 695, 689, 697, 690, 693,
688, 699, 691, 86, 86, 86, 698, 86, 701, 86,
86, 86, 86, 86, 705, 86, 700, 704, 713, 86,
86, 710, 706, 702, 715, 703, 711, 86, 86, 707,
86, 709, 708, 712, 714, 86, 716, 86, 717, 86,
718, 86, 719, 86, 722, 86, 86, 720, 86, 721,
723, 86, 86, 86, 86, 726, 86, 86, 727, 725,
731, 730, 724, 86, 86, 86, 86, 732, 86, 86,
734, 86, 736, 86, 737, 729, 86, 728, 86, 86,
743, 86, 733, 86, 739, 738, 86, 86, 735, 740,
86, 742, 746, 741, 744, 747, 86, 750, 86, 745,
748, 86, 86, 86, 752, 86, 753, 751, 86, 86,
755, 749, 756, 757, 86, 86, 86, 86, 86, 86,
764, 86, 762, 760, 86, 86, 86, 86, 754, 86,
758, 761, 770, 759, 765, 160, 768, 86, 86, 763,
86, 769, 767, 766, 86, 86, 771, 772, 773, 774,
86, 86, 86, 775, 779, 777, 86, 776, 781, 778,
86, 780, 86, 86, 86, 782, 784, 86, 783, 86,
86, 785, 86, 791, 86, 788, 86, 86, 86, 86,
786, 86, 787, 794, 86, 793, 86, 796, 797, 789,
790, 86, 800, 792, 798, 86, 801, 795, 86, 803,
802, 86, 805, 86, 804, 86, 86, 86, 807, 799,
86, 86, 809, 86, 86, 86, 86, 815, 86, 86,
86, 86, 816, 86, 86, 86, 808, 86, 806, 810,
817, 811, 812, 86, 813, 818, 814, 820, 86, 819,
824, 86, 823, 86, 821, 822, 86, 86, 86, 86,
86, 86, 825, 826, 829, 86, 86, 86, 86, 86,
838, 86, 827, 836, 831, 839, 828, 830, 86, 832,
86, 837, 86, 833, 834, 835, 86, 843, 86, 86,
86, 86, 86, 86, 842, 86, 847, 840, 848, 849,
850, 86, 844, 846, 86, 86, 851, 845, 86, 852,
86, 853, 86, 167, 854, 86, 86, 86, 858, 856,
859, 86, 855, 86, 857, 860, 86, 86, 86, 861,
86, 863, 862, 866, 86, 86, 867, 869, 86, 870,
864, 86, 86, 872, 868, 86, 874, 871, 865, 86,
86, 86, 878, 86, 86, 86, 86, 875, 86, 86,
880, 873, 879, 86, 86, 86, 86, 86, 898, 877,
894, 86, 86, 881, 893, 876, 86, 895, 891, 883,
897, 882, 86, 892, 884, 86, 899, 885, 896, 86,
86, 886, 86, 86, 887, 86, 86, 904, 86, 920,
900, 888, 889, 86, 890, 86, 902, 86, 901, 86,
912, 158, 916, 903, 86, 905, 906, 913, 907, 86,
915, 908, 917, 86, 86, 914, 909, 918, 86, 923,
919, 86, 910, 911, 921, 86, 922, 86, 86, 86,
924, 926, 86, 925, 86, 86, 927, 86, 86, 930,
929, 928, 86, 86, 934, 86, 933, 86, 86, 86,
937, 86, 86, 941, 943, 86, 86, 931, 86, 86,
935, 932, 936, 939, 86, 938, 944, 962, 86, 942,
947, 945, 86, 946, 940, 948, 86, 86, 950, 86,
86, 86, 949, 951, 86, 952, 86, 954, 86, 955,
86, 86, 86, 86, 953, 86, 86, 86, 958, 956,
961, 86, 959, 964, 86, 963, 86, 86, 86, 86,
957, 86, 86, 86, 86, 960, 966, 967, 969, 86,
970, 86, 971, 965, 86, 86, 972, 86, 973, 977,
968, 86, 979, 975, 978, 86, 86, 974, 976, 86,
86, 86, 980, 86, 984, 986, 987, 86, 982, 86,
86, 86, 985, 86, 86, 981, 989, 86, 86, 86,
86, 86, 86, 86, 983, 997, 1000, 86, 995, 86,
988, 990, 86, 991, 992, 86, 1001, 86, 994, 993,
998, 1002, 999, 996, 86, 86, 86, 86, 1008, 86,
1005, 1004, 1007, 86, 1003, 86, 86, 86, 86, 1006,
86, 86, 1010, 1017, 1012, 1018, 1009, 1020, 86, 86,
86, 86, 1022, 86, 86, 1011, 175, 1013, 86, 1015,
1014, 1016, 1019, 1023, 86, 86, 86, 86, 1024, 86,
1021, 1028, 1031, 1025, 86, 1030, 86, 1026, 86, 1032,
86, 86, 86, 1035, 86, 1027, 1037, 86, 1029, 86,
86, 86, 86, 86, 1034, 1040, 1039, 1043, 1033, 1042,
1041, 167, 1036, 86, 1044, 86, 86, 86, 1038, 86,
86, 1047, 86, 86, 1045, 86, 1059, 86, 1062, 86,
86, 1060, 86, 86, 1050, 1046, 1048, 1064, 86, 86,
1087, 86, 1051, 1049, 1052, 86, 86, 1061, 1053, 86,
1054, 1078, 86, 1065, 1055, 1063, 1056, 1067, 86, 1069,
1066, 1057, 86, 1068, 1070, 86, 1058, 1071, 86, 86,
86, 86, 1073, 86, 1079, 86, 1072, 86, 1076, 86,
86, 86, 86, 173, 1074, 1075, 1084, 1085, 1077, 1080,
1083, 1082, 1081, 86, 1086, 86, 1088, 1089, 1091, 86,
86, 86, 86, 86, 1090, 86, 86, 1101, 86, 1104,
86, 1100, 86, 1092, 86, 1093, 86, 1105, 1103, 1102,
1094, 86, 1095, 86, 1106, 1110, 86, 86, 1096, 1108,
86, 1111, 1113, 1097, 1098, 1107, 86, 86, 86, 1114,
1099, 86, 1109, 1117, 86, 86, 86, 86, 86, 86,
1112, 1118, 86, 86, 1116, 86, 1115, 1120, 1123, 86,
1126, 1121, 86, 1119, 86, 1127, 1125, 86, 1124, 1122,
86, 86, 86, 86, 86, 86, 1128, 1135, 86, 1133,
1131, 1132, 1130, 86, 86, 86, 86, 1129, 86, 1137,
86, 1134, 86, 86, 1136, 1143, 86, 86, 1144, 1140,
86, 1145, 86, 1147, 1138, 1139, 1141, 1142, 1148, 1146,
1149, 86, 1151, 86, 86, 86, 1153, 1152, 86, 1154,
86, 86, 86, 1155, 86, 86, 86, 1150, 1162, 86,
1164, 86, 86, 1157, 86, 1156, 86, 1166, 1158, 1160,
1161, 86, 1159, 86, 86, 86, 1165, 1168, 86, 1163,
1170, 86, 86, 1171, 86, 1167, 86, 1173, 86, 1174,
86, 1180, 86, 86, 1169, 1179, 1176, 1172, 1175, 1178,
86, 86, 86, 86, 1177, 86, 1183, 86, 1184, 1181,
86, 86, 86, 86, 86, 1188, 1190, 86, 1191, 1192,
1182, 86, 86, 1185, 86, 86, 1189, 86, 1195, 1186,
1193, 1187, 1194, 1198, 86, 1196, 86, 86, 86, 86,
86, 1197, 1199, 1200, 86, 1201, 86, 1202, 86, 86,
86, 1205, 1206, 86, 86, 86, 1211, 1212, 1203, 86,
86, 1207, 86, 86, 1214, 1204, 1209, 1215, 86, 86,
86, 1208, 1219, 86, 1210, 1213, 86, 86, 86, 86,
86, 86, 1225, 86, 1217, 1218, 167, 1221, 1216, 86,
86, 86, 86, 1232, 86, 1220, 1230, 86, 1222, 86,
1224, 172, 1229, 1227, 1234, 1223, 1226, 1228, 1231, 1235,
86, 86, 86, 86, 1237, 86, 1236, 1233, 1238, 86,
86, 86, 86, 86, 86, 86, 1241, 86, 1247, 86,
86, 1244, 86, 1239, 1240, 86, 86, 1242, 86, 167,
1245, 1251, 1243, 86, 1248, 86, 1246, 86, 1253, 1257,
1249, 1250, 86, 1258, 1261, 86, 86, 1254, 1252, 1255,
1259, 86, 1256, 1260, 86, 86, 86, 86, 1263, 86,
1262, 86, 86, 86, 1267, 86, 1266, 1270, 86, 86,
1264, 1273, 86, 86, 1265, 1269, 1271, 86, 1274, 86,
1268, 86, 1275, 86, 1277, 1278, 86, 1272, 86, 1276,
86, 86, 1279, 86, 86, 86, 86, 86, 86, 86,
86, 1280, 1285, 1281, 86, 1283, 1284, 86, 1286, 1282,
1290, 1295, 86, 1287, 1291, 86, 1289, 86, 1288, 86,
1292, 1294, 86, 86, 86, 86, 86, 1293, 86, 1300,
1296, 1298, 86, 1297, 1302, 86, 1307, 1301, 86, 1303,
86, 1306, 1299, 1316, 86, 1304, 1305, 86, 86, 86,
1375, 1314, 1308, 1315, 86, 1309, 1310, 86, 1317, 1318,
1311, 1320, 86, 86, 86, 86, 1312, 86, 1321, 1322,
1313, 1319, 86, 1323, 86, 1325, 86, 86, 86, 1326,
86, 1327, 86, 86, 86, 86, 1324, 1335, 1332, 1330,
86, 86, 1344, 86, 1336, 1337, 1329, 1328, 1333, 86,
86, 86, 1331, 1334, 86, 1338, 1345, 1346, 1339, 86,
86, 86, 86, 1340, 86, 1341, 1348, 1342, 86, 1343,
86, 1347, 1350, 1351, 1352, 86, 1349, 1354, 86, 1353,
86, 86, 86, 1356, 86, 86, 86, 1362, 86, 1357,
1358, 86, 1355, 86, 86, 1363, 1364, 86, 86, 1361,
1365, 1359, 1366, 1360, 86, 1367, 86, 1368, 86, 1372,
86, 86, 86, 1371, 1374, 86, 86, 1377, 86, 1376,
86, 86, 1369, 1380, 86, 86, 1373, 1382, 86, 1379,
1384, 1370, 86, 1383, 86, 86, 86, 1378, 1387, 86,
86, 1381, 86, 86, 86, 1389, 86, 86, 86, 1391,
86, 1397, 1393, 86, 1394, 1385, 1386, 1392, 86, 86,
1388, 1395, 1396, 1390, 1399, 86, 86, 1398, 86, 86,
86, 1401, 86, 1400, 1402, 86, 1403, 1404, 86, 1409,
86, 86, 1410, 1408, 1406, 86, 1405, 1407, 86, 86,
1412, 86, 86, 86, 1411, 167, 86, 1416, 86, 86,
1413, 1417, 86, 1421, 1415, 86, 1422, 86, 1424, 86,
1418, 1414, 86, 1423, 86, 86, 86, 1428, 86, 1419,
86, 86, 1431, 86, 86, 1420, 86, 86, 86, 1425,
1436, 86, 1429, 1435, 86, 1426, 1427, 86, 1430, 1438,
1440, 86, 86, 1432, 1434, 1441, 86, 86, 86, 1433,
1437, 1443, 86, 86, 86, 1444, 1439, 165, 86, 1442,
86, 86, 1445, 1449, 86, 1456, 1450, 1446, 1447, 1451,
86, 1448, 1452, 1454, 86, 1453, 1457, 86, 1455, 86,
86, 1458, 86, 1459, 86, 86, 86, 86, 86, 1462,
1463, 86, 1465, 86, 86, 86, 1470, 86, 1461, 86,
86, 1471, 86, 1460, 1464, 1467, 86, 1474, 1466, 86,
86, 1468, 1469, 86, 1475, 86, 86, 1472, 86, 1473,
86, 86, 86, 1477, 86, 1476, 1481, 1482, 86, 1480,
1478, 1479, 86, 1483, 86, 1486, 1484, 1487, 86, 86,
1489, 1485, 86, 1492, 1488, 1493, 86, 1491, 86, 86,
1497, 86, 86, 1494, 86, 1495, 1496, 86, 86, 86,
1490, 86, 86, 86, 1503, 86, 1499, 1498, 86, 1502,
86, 86, 86, 1500, 1509, 86, 1501, 1506, 1505, 1510,
86, 1511, 1507, 86, 1514, 1504, 1512, 86, 86, 86,
1508, 86, 86, 86, 86, 1513, 1522, 1518, 86, 86,
1517, 86, 86, 1525, 1523, 86, 86, 1515, 1516, 86,
86, 86, 1519, 1528, 1520, 86, 1521, 1527, 86, 86,
86, 86, 86, 86, 1526, 1529, 1542, 1524, 86, 1530,
86, 1536, 86, 86, 1531, 1533, 1537, 1532, 1535, 86,
1538, 1534, 1539, 86, 1540, 86, 86, 86, 86, 86,
1549, 1541, 1543, 86, 1550, 1546, 1544, 86, 86, 1547,
86, 1545, 1554, 86, 86, 1556, 86, 86, 86, 1555,
86, 86, 1548, 1551, 86, 1559, 1553, 1552, 1560, 86,
1558, 1557, 86, 1561, 86, 1565, 1566, 86, 1562, 86,
86, 86, 86, 86, 1570, 1571, 86, 1569, 1573, 86,
1563, 86, 86, 86, 1564, 1574, 86, 1567, 1575, 86,
86, 1568, 86, 1578, 86, 86, 1572, 86, 1581, 1576,
86, 86, 1577, 1580, 86, 86, 86, 1587, 86, 1585,
1582, 86, 1579, 86, 86, 86, 1592, 1588, 86, 1586,
1584, 1583, 86, 86, 86, 86, 1597, 86, 1590, 1589,
1595, 86, 1593, 86, 1600, 1598, 86, 86, 1596, 1591,
1594, 86, 86, 167, 1599, 1603, 86, 86, 1602, 1606,
86, 1605, 86, 86, 86, 86, 86, 1614, 1601, 1607,
86, 1604, 86, 86, 86, 1608, 1609, 1615, 1612, 1618,
86, 86, 1610, 1611, 86, 1619, 1621, 86, 86, 1623,
1613, 1625, 1622, 1616, 1617, 86, 86, 86, 1627, 86,
86, 1620, 86, 86, 86, 86, 1632, 1630, 1624, 1629,
1626, 86, 1633, 86, 86, 86, 86, 86, 86, 1628,
1637, 86, 1638, 86, 86, 1645, 86, 1634, 1631, 1646,
1636, 86, 1635, 86, 1639, 1640, 1642, 86, 1641, 1643,
1647, 86, 86, 86, 1661, 86, 86, 1650, 1652, 1654,
1649, 1644, 1653, 86, 86, 86, 1648, 86, 1656, 1655,
86, 1657, 86, 1658, 86, 1662, 86, 1659, 1651, 86,
86, 86, 1665, 1664, 1666, 1668, 1667, 1660, 86, 86,
86, 86, 86, 1671, 86, 86, 1663, 1670, 86, 86,
1672, 86, 86, 86, 86, 1681, 86, 86, 86, 86,
86, 86, 1669, 86, 1678, 86, 1673, 1676, 1677, 1674,
1679, 1675, 1680, 86, 1684, 86, 1682, 1683, 1686, 86,
1688, 86, 1689, 86, 1685, 1687, 86, 86, 1690, 86,
86, 86, 86, 86, 163, 86, 86, 1691, 1694, 1696,
86, 1704, 86, 1703, 1697, 1693, 1695, 1698, 86, 1699,
1692, 1700, 1705, 86, 86, 1702, 1701, 86, 86, 86,
1706, 1708, 1709, 86, 86, 86, 86, 86, 86, 1712,
1710, 1713, 1707, 86, 86, 1721, 86, 1716, 1711, 86,
86, 86, 86, 1715, 1714, 1718, 1722, 86, 1719, 1720,
86, 86, 1717, 86, 1723, 1724, 86, 1725, 86, 86,
1731, 86, 86, 86, 1726, 1728, 86, 1727, 1734, 86,
1735, 1733, 86, 86, 86, 1737, 1730, 1732, 1738, 1739,
86, 1729, 1743, 86, 1736, 86, 86, 1744, 86, 1749,
1740, 86, 86, 1752, 1741, 86, 1748, 1745, 1742, 86,
1746, 1751, 86, 86, 86, 1754, 86, 86, 1747, 1753,
1750, 86, 1755, 1758, 86, 86, 1762, 86, 1760, 86,
86, 1757, 86, 1756, 1761, 1763, 86, 1759, 86, 86,
86, 86, 86, 86, 1772, 86, 1766, 86, 1767, 1764,
1777, 86, 1774, 1768, 1769, 1765, 1770, 1771, 86, 1775,
1776, 86, 86, 86, 86, 86, 1773, 1782, 86, 86,
86, 1786, 86, 86, 86, 86, 86, 1781, 86, 1788,
1779, 1778, 1780, 1789, 86, 1784, 86, 86, 1785, 1790,
1783, 1791, 167, 86, 1787, 86, 1792, 1796, 86, 1793,
86, 86, 1800, 86, 1794, 86, 86, 86, 1795, 86,
86, 86, 1798, 1802, 1797, 86, 86, 1807, 86, 1801,
1799, 1803, 1804, 86, 1810, 162, 1805, 1808, 1811, 86,
86, 1806, 86, 1812, 1809, 1813, 86, 1814, 86, 1816,
1817, 86, 86, 86, 86, 86, 1819, 1815, 86, 86,
86, 1820, 86, 86, 1818, 86, 86, 86, 1825, 86,
1826, 86, 86, 1821, 86, 1827, 1830, 86, 1823, 1828,
1824, 1822, 1834, 1831, 1829, 86, 86, 1838, 86, 1835,
1836, 1839, 1833, 86, 86, 86, 1832, 86, 86, 160,
86, 1837, 1844, 86, 86, 1847, 1848, 86, 1849, 86,
86, 1842, 86, 1841, 1840, 1851, 86, 1845, 1843, 1846,
86, 1852, 86, 1855, 86, 86, 1857, 86, 86, 1856,
1850, 1858, 86, 1853, 1859, 1861, 86, 1864, 86, 86,
86, 86, 1863, 1854, 86, 1860, 86, 1865, 1867, 1866,
86, 86, 86, 1874, 86, 86, 86, 86, 86, 86,
1876, 1862, 1868, 1869, 1870, 1877, 86, 86, 1880, 1871,
1878, 1872, 1873, 1881, 86, 1875, 1879, 1882, 86, 86,
1886, 86, 86, 86, 86, 1888, 86, 1883, 1885, 86,
86, 1891, 1892, 86, 86, 1894, 86, 86, 86, 1884,
86, 86, 86, 86, 1899, 86, 1889, 1896, 1887, 1897,
86, 1890, 1900, 86, 1893, 86, 1902, 86, 86, 86,
1906, 86, 1895, 1898, 1901, 1903, 1904, 86, 1910, 86,
1913, 1905, 1909, 86, 86, 86, 86, 1908, 1914, 86,
1912, 1907, 1915, 86, 86, 86, 86, 86, 1917, 1911,
1916, 86, 86, 86, 1921, 1918, 86, 1924, 1925, 1920,
1926, 86, 86, 86, 86, 1919, 86, 1929, 86, 86,
1922, 86, 1934, 86, 86, 86, 1933, 1928, 86, 1923,
86, 1927, 86, 1930, 1938, 86, 86, 86, 1931, 86,
1936, 1932, 1939, 1935, 1940, 1941, 86, 1937, 86, 86,
1943, 1948, 1942, 1945, 86, 1944, 86, 86, 1946, 86,
1952, 1949, 86, 1947, 86, 86, 86, 1954, 1955, 86,
86, 1956, 86, 1958, 86, 86, 1957, 1950, 86, 1951,
1953, 1962, 86, 1963, 86, 1959, 1964, 1966, 1967, 86,
1960, 1965, 86, 86, 86, 1961, 86, 86, 86, 1971,
86, 1969, 86, 86, 1968, 86, 1973, 1976, 86, 1970,
1972, 1978, 1974, 86, 1975, 167, 86, 86, 86, 86,
1979, 86, 1985, 86, 1983, 1977, 1984, 1982, 1980, 86,
1981, 1986, 86, 1987, 86, 1989, 86, 86, 86, 86,
158, 86, 1990, 1991, 86, 1992, 1993, 86, 86, 1988,
86, 1995, 1994, 86, 1997, 86, 1996, 86, 86, 2001,
86, 86, 1998, 2000, 86, 86, 2002, 1999, 86, 2003,
2004, 2005, 2006, 86, 86, 86, 86, 86, 86, 86,
2013, 2007, 2011, 2008, 2012, 86, 86, 86, 86, 86,
2018, 2017, 86, 2009, 86, 2010, 2015, 86, 86, 86,
2022, 2019, 86, 2014, 86, 86, 2016, 2021, 86, 2024,
2020, 2023, 86, 2026, 86, 2025, 86, 2027, 2028, 86,
86, 2030, 86, 2029, 86, 2034, 86, 2036, 2031, 2032,
2033, 86, 86, 86, 2037, 2038, 86, 86, 86, 2035,
86, 2039, 86, 2043, 2040, 86, 2041, 86, 86, 2044,
86, 86, 86, 86, 86, 86, 86, 86, 2042, 2046,
2047, 2051, 2048, 2055, 86, 86, 2045, 2050, 2054, 86,
86, 86, 2056, 2053, 2052, 86, 2059, 2049, 2058, 86,
86, 86, 2062, 86, 2061, 2057, 2064, 86, 2063, 2060,
2065, 86, 86, 86, 86, 86, 2066, 2070, 86, 86,
2072, 2068, 86, 2074, 86, 2069, 86, 86, 86, 2067,
2077, 2076, 2078, 2071, 86, 86, 2073, 86, 2082, 2079,
86, 86, 86, 86, 86, 2075, 2083, 86, 2085, 2088,
86, 86, 2089, 2080, 86, 2084, 86, 2081, 2092, 86,
86, 2087, 2086, 86, 86, 2093, 86, 86, 2094, 2090,
86, 2096, 2098, 86, 86, 2100, 2091, 2095, 86, 2097,
86, 2101, 2099, 86, 86, 2104, 86, 2102, 2103, 86,
86, 2107, 2109, 2105, 86, 86, 2106, 2110, 86, 2111,
86, 86, 86, 86, 86, 86, 2112, 2108, 2114, 2115,
86, 2118, 2113, 86, 2116, 2117, 2119, 86, 86, 86,
86, 86, 86, 2120, 86, 86, 86, 2128, 2121, 2122,
2129, 86, 2123, 2125, 2124, 2130, 2126, 2131, 86, 86,
2127, 86, 86, 86, 2133, 86, 2139, 86, 86, 167,
2132, 2141, 86, 86, 2138, 86, 2135, 2140, 86, 2143,
2136, 86, 2134, 2144, 2147, 86, 86, 2149, 2137, 2148,
86, 2146, 2142, 86, 2145, 2150, 86, 86, 2191, 2151,
86, 86, 2154, 86, 86, 2152, 2153, 86, 2155, 2158,
2159, 86, 86, 2160, 86, 2163, 2161, 86, 86, 86,
2165, 86, 2156, 2164, 2166, 86, 86, 86, 2168, 86,
86, 2167, 2162, 2157, 86, 86, 86, 2170, 86, 2169,
2171, 86, 86, 2174, 86, 86, 86, 2172, 86, 2177,
86, 2183, 86, 2175, 2173, 2181, 2176, 86, 86, 86,
2178, 2179, 2184, 86, 2186, 86, 2180, 86, 86, 86,
2182, 86, 2185, 2190, 2193, 86, 86, 2188, 86, 2194,
86, 86, 86, 86, 86, 86, 2189, 2192, 86, 2187,
2204, 86, 86, 2205, 86, 2195, 2201, 2196, 86, 86,
86, 2199, 2206, 2197, 2200, 2198, 2202, 2203, 2208, 86,
2210, 2207, 86, 2209, 2211, 86, 2212, 86, 86, 86,
2215, 86, 2218, 86, 86, 86, 86, 2213, 86, 2219,
2216, 2214, 86, 2217, 2224, 86, 86, 2220, 2225, 86,
2223, 2227, 86, 86, 86, 2221, 2222, 2229, 86, 86,
2232, 86, 2233, 86, 2231, 2226, 86, 86, 86, 2230,
86, 2228, 86, 2239, 86, 86, 2235, 2238, 2241, 86,
2234, 86, 2236, 86, 86, 86, 2244, 86, 2245, 2237,
2243, 2247, 86, 86, 2240, 86, 2251, 86, 86, 2242,
86, 86, 86, 2246, 2248, 86, 2255, 86, 2249, 2256,
86, 86, 2258, 86, 2250, 86, 2254, 86, 2252, 2261,
86, 86, 86, 2253, 2257, 86, 2259, 86, 2260, 2263,
86, 2264, 86, 2268, 86, 2262, 86, 2271, 86, 2265,
2270, 86, 2274, 2266, 86, 2269, 2275, 86, 86, 2276,
86, 86, 2272, 2267, 2273, 86, 2280, 86, 86, 86,
2285, 2278, 2282, 2283, 86, 86, 86, 2287, 86, 86,
2288, 2279, 2277, 86, 2284, 86, 86, 86, 86, 2292,
2289, 2281, 2291, 86, 86, 2286, 2293, 2294, 86, 2298,
2299, 86, 2295, 2290, 3136, 86, 86, 2296, 2297, 86,
86, 86, 2303, 2300, 2304, 86, 2305, 167, 86, 2302,
86, 2301, 2307, 86, 2306, 86, 2312, 86, 86, 86,
86, 86, 86, 86, 86, 86, 3136, 2319, 2308, 2310,
2309, 2311, 2314, 2313, 2315, 2316, 2317, 2318, 86, 86,
2321, 2323, 86, 2320, 86, 2324, 2325, 86, 86, 86,
2328, 2322, 2326, 2327, 2329, 86, 86, 2331, 86, 86,
86, 86, 2333, 86, 2330, 86, 86, 86, 2337, 86,
2338, 86, 86, 2332, 86, 2334, 86, 2340, 2341, 2335,
2345, 86, 86, 2339, 2342, 2336, 2343, 86, 86, 86,
86, 2348, 86, 2344, 2347, 86, 86, 86, 86, 86,
86, 2350, 2346, 2354, 86, 86, 86, 2357, 2349, 2351,
2356, 86, 2353, 86, 86, 86, 86, 2352, 2360, 2362,
2355, 2358, 2359, 2363, 2364, 86, 86, 2361, 2365, 86,
86, 2367, 86, 86, 86, 2368, 86, 2370, 2371, 2366,
2372, 86, 2374, 86, 86, 86, 86, 2376, 86, 86,
86, 86, 86, 2373, 2375, 86, 2380, 2384, 86, 2369,
2382, 86, 2377, 2378, 86, 2386, 2379, 2385, 86, 2383,
86, 86, 86, 2387, 86, 86, 86, 2388, 2381, 2390,
2393, 86, 86, 2395, 86, 86, 2398, 86, 2392, 86,
86, 2394, 2389, 2399, 2391, 86, 86, 86, 86, 2402,
2397, 2404, 2396, 2403, 86, 86, 86, 86, 86, 86,
2408, 2407, 86, 86, 2400, 2401, 2406, 86, 86, 86,
3136, 2411, 2412, 2405, 2414, 86, 2409, 2410, 2415, 86,
2416, 86, 2417, 86, 2418, 86, 86, 2419, 2413, 86,
86, 2422, 86, 2423, 2421, 86, 86, 86, 86, 2428,
86, 86, 2430, 86, 2420, 2431, 86, 2424, 2425, 86,
86, 86, 86, 86, 2427, 86, 2434, 2426, 86, 86,
2429, 2432, 86, 2433, 2435, 2440, 86, 2437, 2441, 86,
86, 86, 86, 2436, 86, 2438, 86, 167, 2439, 86,
2448, 86, 86, 86, 2444, 2449, 86, 86, 2446, 2447,
2443, 86, 86, 3136, 2455, 2442, 2445, 2450, 2451, 2452,
86, 86, 86, 2459, 86, 2457, 2456, 2458, 2453, 86,
2454, 2460, 86, 86, 2461, 86, 2462, 86, 2463, 2464,
2465, 86, 86, 86, 86, 86, 86, 86, 86, 86,
86, 2474, 86, 86, 86, 2496, 2472, 2467, 86, 2478,
2466, 86, 2469, 2468, 2479, 86, 2471, 2470, 2473, 86,
2475, 2476, 2477, 86, 2480, 2482, 86, 86, 2481, 2484,
86, 86, 2483, 86, 86, 86, 86, 86, 86, 86,
2487, 2493, 86, 2494, 86, 2485, 2495, 86, 86, 2486,
2488, 86, 2489, 2491, 2490, 86, 2500, 2492, 2499, 86,
86, 86, 86, 2504, 2505, 86, 2497, 2503, 86, 86,
2498, 2506, 2507, 86, 86, 86, 86, 86, 86, 2501,
2502, 86, 86, 2509, 86, 86, 2513, 2508, 2511, 86,
2518, 86, 2517, 86, 2510, 2521, 86, 2512, 2514, 86,
2519, 2515, 86, 2522, 2516, 86, 2525, 86, 86, 2524,
86, 2520, 86, 86, 2530, 86, 86, 2523, 86, 86,
86, 2526, 86, 2533, 86, 2527, 86, 2532, 2531, 2534,
86, 2537, 2528, 2529, 2536, 86, 86, 86, 2539, 2535,
2541, 86, 86, 2542, 86, 2538, 2543, 2544, 86, 2540,
86, 86, 86, 2549, 86, 86, 86, 2545, 2551, 86,
2547, 2548, 86, 2546, 86, 86, 86, 2552, 86, 2553,
2550, 2555, 86, 86, 86, 2557, 2556, 86, 86, 2554,
86, 2558, 2559, 2561, 86, 2562, 2564, 86, 2560, 2565,
86, 2567, 2563, 2566, 167, 86, 86, 86, 2571, 3136,
2568, 86, 86, 2573, 86, 86, 2572, 86, 2576, 86,
2577, 86, 2575, 86, 2569, 2570, 2579, 86, 86, 2581,
2574, 2580, 86, 86, 2582, 86, 2578, 2583, 2584, 86,
2586, 86, 86, 86, 86, 2587, 86, 2588, 86, 86,
86, 2593, 2589, 2585, 2594, 2595, 2591, 86, 86, 2590,
86, 86, 86, 2597, 86, 2598, 86, 86, 86, 86,
2592, 2600, 2601, 2596, 86, 86, 2599, 86, 2606, 86,
86, 86, 2603, 2604, 2605, 86, 2602, 86, 2607, 2611,
86, 86, 86, 2615, 86, 86, 86, 86, 86, 2608,
2613, 2609, 2619, 86, 2610, 3136, 2612, 2614, 2620, 86,
2622, 2617, 2623, 2624, 2616, 86, 86, 2618, 86, 86,
2625, 86, 86, 2626, 86, 86, 86, 2627, 2621, 86,
2630, 86, 86, 2628, 86, 2633, 2635, 86, 2629, 2636,
86, 2637, 86, 2631, 86, 86, 2632, 86, 2638, 86,
2634, 86, 2639, 2640, 86, 86, 2642, 2644, 86, 2647,
86, 2643, 2645, 86, 86, 2641, 2648, 86, 2649, 86,
86, 86, 86, 2650, 86, 2646, 86, 2651, 2652, 2654,
86, 86, 2655, 2656, 86, 2658, 86, 2657, 86, 2659,
2662, 2653, 2660, 2663, 86, 86, 86, 86, 2665, 2664,
86, 86, 2661, 2666, 86, 86, 2670, 2671, 86, 86,
86, 2674, 86, 86, 2673, 86, 86, 86, 86, 2677,
2667, 2668, 2675, 2676, 86, 2669, 86, 2679, 86, 2680,
86, 2683, 86, 2672, 2678, 2681, 2682, 86, 2687, 86,
86, 86, 86, 86, 86, 2689, 86, 2710, 2684, 86,
3136, 2686, 2685, 2690, 2688, 2691, 86, 2693, 2694, 2697,
86, 86, 2692, 2695, 86, 2696, 86, 2698, 86, 2699,
86, 2700, 86, 2701, 86, 86, 2704, 2702, 86, 2703,
86, 86, 86, 2709, 86, 2712, 86, 2706, 86, 2714,
86, 86, 2716, 86, 86, 2713, 2715, 86, 86, 2711,
2707, 2705, 2708, 2717, 86, 3136, 2718, 2719, 2721, 86,
86, 86, 86, 2725, 2722, 86, 86, 86, 2726, 86,
2723, 2729, 2720, 86, 86, 2728, 86, 2724, 2727, 2730,
2731, 86, 2732, 86, 86, 86, 86, 2733, 86, 86,
86, 2741, 86, 86, 2736, 86, 3136, 86, 2737, 2739,
2744, 2734, 2735, 86, 2742, 86, 2746, 86, 2745, 2740,
86, 2751, 86, 2738, 2743, 2748, 2747, 86, 2749, 2752,
86, 2750, 2753, 86, 86, 86, 86, 86, 2758, 86,
86, 2757, 86, 2754, 86, 2759, 86, 2760, 2761, 86,
86, 86, 86, 86, 86, 2755, 2756, 2762, 2763, 2765,
2767, 2769, 86, 86, 86, 86, 86, 2770, 86, 2766,
2771, 2764, 2774, 2772, 86, 2773, 86, 2768, 86, 2775,
2777, 86, 86, 86, 86, 86, 86, 2780, 86, 86,
86, 2778, 86, 2781, 86, 2779, 2776, 2784, 3136, 2785,
86, 2782, 2787, 86, 86, 2783, 2789, 86, 86, 2788,
2790, 86, 86, 2791, 2786, 2792, 86, 86, 2797, 86,
2793, 86, 2796, 2799, 2794, 86, 86, 2801, 2795, 86,
86, 2804, 86, 86, 2806, 86, 86, 86, 2809, 86,
86, 2798, 2807, 2802, 2800, 2810, 86, 2812, 86, 2803,
86, 86, 86, 2805, 86, 86, 2811, 2808, 2817, 86,
2815, 2814, 2821, 86, 86, 86, 86, 2813, 2822, 86,
2823, 2819, 2816, 2818, 86, 2820, 2826, 2829, 2824, 2827,
86, 86, 86, 86, 2828, 86, 86, 2832, 86, 86,
86, 2831, 2835, 86, 2825, 2833, 2838, 86, 86, 86,
86, 86, 86, 2830, 2843, 86, 86, 86, 2834, 86,
2836, 2837, 2839, 2846, 86, 2842, 2845, 2840, 2847, 86,
2851, 86, 86, 2849, 86, 2844, 2841, 2848, 86, 2850,
2852, 86, 2853, 86, 86, 2855, 86, 86, 86, 2854,
86, 86, 2860, 2861, 86, 86, 86, 2856, 2867, 86,
2865, 86, 2866, 86, 86, 2864, 86, 86, 86, 2857,
2858, 86, 2859, 2862, 3136, 2863, 2870, 2871, 86, 2872,
86, 2874, 86, 86, 2875, 86, 2868, 2869, 2873, 86,
86, 2878, 86, 2877, 2876, 86, 86, 86, 86, 86,
2879, 86, 2882, 86, 86, 2884, 86, 86, 86, 2880,
2883, 2885, 86, 86, 86, 86, 2881, 86, 86, 2894,
2886, 2897, 2895, 2898, 2887, 2889, 2888, 86, 2890, 2893,
2891, 2892, 86, 86, 86, 2896, 2901, 86, 2902, 86,
86, 2904, 86, 2923, 2903, 86, 2900, 2905, 86, 2912,
2906, 2907, 2899, 86, 2908, 2909, 86, 86, 2910, 2911,
86, 86, 2913, 86, 86, 86, 86, 2919, 86, 86,
86, 2918, 86, 86, 2914, 86, 2922, 2921, 2915, 3136,
2916, 86, 86, 2927, 86, 2917, 2928, 86, 2924, 86,
2926, 2929, 86, 2925, 2920, 86, 86, 2934, 2932, 2930,
2931, 2933, 2935, 86, 2936, 86, 86, 86, 86, 86,
86, 2944, 2940, 2941, 2943, 86, 86, 86, 2946, 86,
2938, 2937, 2945, 2947, 86, 86, 86, 2939, 2942, 2971,
2948, 2949, 86, 2950, 86, 2951, 86, 2952, 86, 2953,
86, 2954, 86, 2955, 86, 2956, 86, 86, 2958, 86,
86, 86, 86, 86, 86, 86, 2957, 2963, 86, 2959,
86, 86, 86, 2960, 86, 2967, 86, 2966, 2964, 2969,
86, 86, 2961, 2962, 2965, 2968, 86, 2973, 86, 2976,
2970, 2975, 86, 86, 86, 86, 86, 86, 2978, 2974,
86, 86, 2972, 2982, 86, 86, 2977, 86, 2985, 86,
2983, 2987, 86, 2979, 2980, 86, 2981, 2988, 86, 2984,
2986, 2989, 86, 86, 2991, 86, 86, 2992, 86, 86,
86, 86, 2990, 2998, 2997, 86, 86, 3000, 86, 86,
2994, 2996, 86, 86, 86, 2993, 86, 86, 86, 86,
2999, 2995, 3001, 86, 86, 86, 3007, 3002, 86, 3004,
3003, 3006, 86, 3011, 3015, 3008, 3014, 86, 3010, 3005,
3009, 3016, 86, 86, 3013, 86, 3012, 86, 3017, 3018,
86, 3019, 86, 86, 86, 86, 3022, 86, 86, 3023,
3024, 3027, 3020, 86, 86, 3021, 86, 86, 86, 3032,
86, 3030, 86, 3026, 86, 86, 3029, 3028, 3035, 86,
86, 86, 3025, 3038, 86, 86, 3039, 3033, 3031, 3040,
3036, 86, 86, 3034, 3042, 3043, 86, 86, 3037, 86,
86, 86, 3048, 86, 3047, 86, 3044, 3049, 86, 3045,
3041, 86, 86, 86, 86, 86, 3046, 86, 3053, 86,
3055, 86, 86, 86, 86, 86, 3050, 3052, 3060, 3061,
86, 3051, 3054, 86, 3057, 3058, 3056, 3068, 3059, 3062,
86, 3066, 86, 86, 86, 3063, 86, 3069, 3064, 3067,
86, 86, 3065, 86, 86, 3070, 3071, 3074, 3072, 3075,
86, 86, 86, 86, 3077, 86, 3076, 86, 86, 86,
86, 3078, 3083, 3073, 86, 3080, 86, 86, 86, 86,
3086, 3079, 3087, 86, 86, 86, 86, 86, 3081, 3082,
3085, 3090, 86, 3084, 3088, 3091, 86, 3089, 86, 3094,
3093, 3095, 86, 3092, 86, 3096, 86, 3098, 86, 3100,
86, 3101, 86, 86, 86, 3105, 86, 3102, 3136, 86,
3103, 3108, 86, 3099, 3106, 86, 86, 3107, 3097, 86,
86, 86, 86, 3104, 86, 86, 3109, 3110, 86, 3112,
3114, 86, 86, 3116, 86, 3111, 86, 3117, 86, 3120,
3113, 3115, 3121, 86, 3118, 86, 86, 3124, 3125, 86,
86, 3127, 86, 3119, 86, 3122, 86, 3126, 3128, 86,
86, 3129, 86, 86, 3123, 3130, 3136, 3131, 3134, 86,
3135, 86, 3136, 3136, 3136, 3132, 3136, 3136, 3136, 3136,
3136, 3136, 3133, 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, 3136, 89, 89, 89, 89, 157,
157, 3136, 3136, 3136, 157, 157, 159, 159, 3136, 3136,
159, 3136, 159, 161, 3136, 3136, 3136, 3136, 3136, 161,
164, 164, 3136, 3136, 3136, 164, 164, 166, 3136, 3136,
3136, 3136, 3136, 166, 168, 168, 3136, 168, 168, 168,
168, 171, 3136, 3136, 3136, 3136, 3136, 171, 174, 174,
3136, 3136, 3136, 174, 174, 90, 90, 3136, 90, 90,
90, 90, 17, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
3136, 3136, 3136
} ;
static const flex_int16_t yy_chk[6174] =
{ 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, 3144, 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, 40, 16,
25, 46, 27, 30, 30, 25, 27, 31, 31, 27,
43, 43, 40, 43, 25, 28, 31, 87, 30, 32,
28, 87, 43, 32, 28, 94, 32, 28, 43, 28,
28, 56, 94, 32, 56, 32, 36, 36, 37, 37,
28, 45, 45, 37, 2566, 36, 45, 39, 41, 41,
45, 36, 39, 41, 124, 36, 39, 67, 67, 37,
73, 124, 39, 41, 41, 39, 41, 44, 42, 84,
84, 44, 39, 42, 73, 62, 42, 62, 62, 92,
62, 44, 92, 42, 142, 44, 44, 42, 42, 70,
142, 70, 70, 72, 70, 72, 72, 79, 72, 79,
79, 70, 79, 86, 95, 86, 86, 89, 86, 89,
89, 93, 89, 96, 86, 93, 95, 97, 89, 89,
97, 98, 100, 103, 98, 101, 102, 104, 105, 106,
107, 100, 102, 96, 109, 106, 108, 98, 102, 101,
102, 103, 103, 111, 107, 110, 115, 105, 106, 104,
108, 112, 118, 114, 109, 113, 110, 110, 114, 113,
115, 111, 116, 122, 110, 116, 117, 128, 116, 112,
119, 118, 117, 120, 121, 119, 120, 122, 126, 123,
120, 116, 116, 123, 125, 126, 127, 128, 129, 131,
130, 117, 133, 121, 130, 119, 120, 125, 121, 127,
132, 134, 134, 135, 137, 132, 129, 131, 138, 132,
139, 136, 133, 140, 143, 136, 140, 144, 144, 137,
141, 145, 148, 135, 136, 146, 143, 140, 145, 139,
136, 140, 147, 141, 138, 144, 149, 151, 144, 145,
152, 146, 150, 148, 150, 152, 153, 156, 154, 151,
155, 147, 149, 150, 1041, 155, 158, 158, 153, 160,
182, 156, 160, 165, 165, 150, 154, 162, 182, 162,
162, 167, 162, 167, 167, 168, 167, 168, 168, 170,
168, 172, 170, 172, 172, 176, 172, 168, 175, 175,
176, 177, 178, 179, 180, 183, 181, 177, 184, 185,
186, 189, 180, 187, 185, 174, 177, 181, 179, 180,
178, 188, 187, 184, 183, 173, 190, 188, 188, 192,
186, 190, 191, 191, 194, 192, 189, 193, 194, 193,
195, 195, 193, 194, 196, 197, 198, 199, 194, 200,
201, 198, 199, 205, 194, 194, 196, 202, 203, 193,
204, 200, 203, 202, 197, 204, 206, 205, 207, 208,
201, 209, 210, 213, 171, 214, 209, 210, 211, 211,
207, 206, 211, 207, 211, 212, 202, 208, 215, 217,
212, 214, 219, 213, 215, 217, 211, 218, 211, 216,
216, 217, 220, 218, 221, 222, 224, 223, 220, 225,
221, 224, 219, 223, 226, 225, 227, 228, 229, 221,
226, 230, 231, 227, 229, 232, 222, 233, 231, 234,
228, 235, 239, 237, 236, 233, 235, 238, 242, 240,
244, 230, 234, 236, 240, 240, 241, 232, 237, 245,
243, 241, 239, 238, 243, 245, 242, 246, 247, 248,
249, 250, 244, 250, 247, 249, 251, 252, 255, 257,
258, 253, 254, 166, 252, 246, 246, 253, 254, 248,
256, 257, 259, 259, 258, 251, 256, 255, 260, 260,
261, 262, 263, 264, 263, 265, 261, 262, 266, 267,
265, 268, 269, 270, 271, 282, 272, 273, 270, 268,
266, 263, 272, 273, 261, 274, 264, 276, 267, 275,
274, 277, 269, 276, 275, 278, 279, 271, 280, 281,
282, 284, 283, 285, 284, 285, 277, 281, 283, 278,
286, 286, 280, 287, 279, 288, 287, 289, 289, 290,
290, 291, 293, 292, 294, 293, 295, 296, 294, 298,
300, 164, 300, 288, 297, 295, 296, 291, 292, 299,
297, 301, 302, 298, 306, 299, 302, 301, 303, 303,
304, 305, 307, 308, 309, 304, 314, 305, 310, 310,
312, 315, 311, 302, 306, 311, 317, 309, 313, 319,
307, 163, 313, 322, 308, 314, 316, 316, 312, 315,
318, 319, 320, 318, 317, 322, 321, 324, 320, 321,
325, 328, 326, 329, 328, 454, 324, 326, 332, 330,
318, 323, 327, 332, 332, 327, 329, 327, 325, 334,
323, 330, 331, 323, 331, 331, 335, 454, 323, 323,
323, 323, 333, 327, 336, 333, 334, 337, 341, 334,
343, 335, 339, 336, 338, 338, 337, 339, 340, 340,
342, 344, 343, 341, 345, 342, 346, 347, 350, 358,
351, 348, 348, 347, 348, 351, 352, 161, 358, 356,
344, 346, 352, 348, 345, 353, 354, 365, 350, 355,
353, 354, 355, 356, 355, 357, 360, 354, 357, 359,
359, 362, 360, 361, 361, 366, 362, 365, 367, 363,
368, 357, 363, 369, 357, 372, 357, 371, 363, 375,
371, 378, 363, 367, 374, 368, 366, 369, 375, 372,
363, 364, 364, 380, 364, 376, 371, 377, 667, 374,
376, 376, 378, 377, 379, 382, 384, 364, 380, 667,
364, 381, 364, 383, 364, 373, 385, 373, 373, 383,
381, 386, 388, 379, 382, 391, 389, 373, 390, 373,
373, 373, 384, 387, 373, 386, 385, 392, 393, 387,
391, 394, 392, 387, 396, 388, 389, 394, 390, 395,
395, 397, 398, 393, 399, 400, 401, 402, 403, 403,
399, 403, 402, 397, 396, 404, 398, 405, 406, 408,
481, 408, 401, 407, 409, 410, 409, 411, 413, 410,
400, 411, 415, 405, 406, 404, 414, 407, 412, 412,
416, 417, 481, 418, 409, 419, 411, 413, 415, 421,
422, 414, 418, 421, 419, 417, 420, 424, 416, 422,
423, 420, 425, 418, 429, 418, 423, 426, 425, 427,
428, 426, 427, 430, 430, 428, 431, 433, 424, 432,
432, 434, 433, 438, 429, 435, 435, 436, 437, 431,
439, 440, 437, 436, 434, 441, 440, 443, 438, 444,
441, 442, 442, 445, 446, 447, 449, 451, 447, 443,
442, 439, 451, 448, 450, 450, 446, 448, 449, 444,
452, 445, 453, 453, 456, 456, 457, 458, 459, 460,
461, 464, 463, 466, 465, 458, 467, 459, 468, 466,
470, 452, 461, 472, 468, 467, 472, 457, 465, 460,
463, 464, 463, 469, 470, 471, 473, 474, 469, 475,
476, 477, 478, 471, 477, 475, 471, 479, 478, 480,
473, 482, 474, 483, 480, 485, 488, 483, 484, 486,
476, 479, 487, 484, 486, 492, 478, 489, 493, 494,
485, 495, 482, 494, 505, 488, 496, 505, 487, 499,
489, 490, 490, 493, 497, 492, 500, 490, 497, 490,
495, 500, 496, 498, 499, 490, 501, 490, 498, 502,
490, 490, 498, 503, 504, 506, 507, 490, 502, 503,
508, 508, 501, 509, 503, 501, 510, 510, 511, 512,
504, 513, 514, 515, 516, 517, 507, 518, 506, 516,
522, 512, 519, 511, 517, 526, 513, 520, 509, 522,
523, 514, 524, 520, 523, 515, 518, 519, 524, 525,
526, 527, 528, 529, 530, 531, 532, 534, 533, 531,
533, 525, 535, 535, 537, 534, 528, 536, 529, 532,
527, 538, 530, 536, 539, 540, 537, 538, 540, 541,
542, 544, 543, 545, 544, 546, 539, 543, 549, 549,
548, 547, 545, 541, 551, 542, 547, 547, 556, 545,
551, 546, 545, 548, 550, 550, 552, 552, 553, 553,
554, 557, 555, 559, 557, 558, 554, 555, 555, 556,
558, 560, 561, 562, 563, 561, 564, 565, 562, 560,
566, 565, 559, 567, 568, 569, 566, 567, 570, 572,
569, 573, 571, 575, 572, 564, 577, 563, 571, 576,
576, 574, 568, 578, 574, 573, 581, 579, 570, 574,
580, 575, 579, 574, 577, 580, 582, 584, 585, 578,
581, 586, 587, 584, 586, 588, 587, 585, 590, 589,
588, 582, 589, 590, 591, 592, 593, 595, 594, 596,
597, 597, 595, 593, 599, 598, 600, 601, 587, 602,
591, 594, 603, 592, 598, 159, 601, 609, 603, 596,
604, 602, 600, 599, 605, 610, 604, 605, 606, 606,
607, 606, 608, 607, 611, 609, 612, 608, 613, 610,
611, 612, 614, 615, 613, 614, 616, 617, 615, 618,
619, 616, 616, 620, 621, 619, 622, 624, 623, 620,
617, 626, 618, 623, 629, 622, 625, 625, 626, 619,
619, 627, 628, 621, 627, 630, 629, 624, 628, 631,
630, 632, 632, 633, 631, 631, 634, 635, 634, 627,
636, 637, 636, 638, 639, 640, 641, 642, 643, 647,
645, 644, 643, 642, 646, 648, 635, 650, 633, 637,
644, 638, 639, 649, 640, 645, 641, 647, 652, 646,
651, 653, 650, 654, 648, 649, 651, 655, 658, 657,
656, 659, 652, 653, 656, 660, 661, 663, 662, 664,
664, 665, 654, 662, 658, 665, 655, 657, 666, 659,
668, 663, 669, 660, 660, 661, 670, 669, 671, 673,
672, 678, 675, 674, 668, 676, 673, 666, 674, 675,
676, 677, 670, 672, 679, 680, 677, 671, 681, 678,
682, 679, 683, 684, 680, 687, 689, 685, 684, 682,
685, 686, 681, 688, 683, 686, 690, 691, 697, 687,
695, 689, 688, 692, 692, 693, 693, 694, 694, 695,
690, 699, 700, 698, 693, 701, 700, 697, 691, 698,
702, 703, 704, 706, 705, 707, 708, 701, 704, 709,
706, 699, 705, 712, 719, 718, 715, 724, 724, 703,
719, 721, 722, 707, 718, 702, 723, 721, 712, 709,
723, 708, 710, 715, 710, 725, 725, 710, 722, 726,
727, 710, 728, 729, 710, 735, 733, 730, 739, 739,
726, 710, 710, 730, 710, 732, 728, 734, 727, 736,
732, 157, 736, 729, 731, 731, 731, 733, 731, 740,
735, 731, 737, 738, 742, 734, 731, 737, 737, 742,
738, 748, 731, 731, 740, 741, 741, 743, 744, 747,
743, 745, 745, 744, 746, 749, 746, 750, 752, 749,
748, 747, 751, 753, 753, 754, 752, 757, 755, 756,
756, 758, 759, 760, 762, 762, 85, 750, 781, 760,
754, 751, 755, 758, 761, 757, 763, 781, 765, 761,
766, 763, 763, 765, 759, 767, 766, 768, 769, 771,
770, 767, 768, 770, 769, 771, 772, 773, 773, 774,
774, 775, 776, 777, 772, 778, 779, 782, 777, 775,
780, 780, 778, 783, 784, 782, 788, 786, 787, 783,
776, 790, 794, 789, 793, 779, 786, 787, 789, 791,
790, 792, 791, 784, 795, 796, 792, 799, 793, 797,
788, 798, 798, 795, 797, 797, 800, 794, 796, 801,
802, 803, 799, 805, 803, 805, 806, 806, 801, 807,
809, 808, 803, 810, 811, 800, 808, 812, 813, 814,
815, 816, 817, 818, 802, 816, 819, 820, 814, 821,
807, 809, 819, 810, 811, 822, 820, 823, 813, 812,
817, 821, 818, 815, 824, 825, 828, 826, 827, 827,
824, 823, 826, 829, 822, 830, 831, 832, 833, 825,
834, 835, 829, 836, 831, 837, 828, 839, 838, 836,
840, 837, 841, 839, 844, 830, 80, 832, 841, 834,
833, 835, 838, 842, 843, 845, 846, 847, 843, 842,
840, 846, 849, 844, 848, 848, 850, 845, 849, 850,
851, 852, 854, 853, 859, 845, 855, 855, 847, 853,
856, 857, 862, 860, 852, 858, 857, 860, 851, 859,
858, 858, 854, 861, 861, 863, 864, 865, 856, 867,
868, 864, 870, 871, 862, 873, 873, 874, 876, 876,
877, 874, 875, 878, 868, 863, 865, 878, 879, 889,
898, 898, 870, 867, 871, 872, 880, 875, 872, 882,
872, 889, 881, 879, 872, 877, 872, 881, 884, 883,
880, 872, 885, 882, 883, 883, 872, 884, 886, 890,
887, 892, 886, 888, 890, 891, 885, 893, 888, 902,
895, 894, 901, 75, 886, 887, 895, 896, 888, 891,
894, 893, 892, 896, 897, 903, 899, 900, 902, 905,
897, 899, 906, 900, 901, 907, 908, 906, 909, 909,
913, 905, 910, 903, 904, 904, 911, 910, 908, 907,
904, 912, 904, 914, 911, 915, 915, 916, 904, 913,
917, 916, 919, 904, 904, 912, 920, 921, 919, 920,
904, 922, 914, 923, 925, 934, 924, 932, 927, 923,
917, 924, 928, 929, 922, 933, 921, 927, 930, 931,
933, 928, 935, 925, 930, 934, 932, 936, 931, 929,
937, 938, 939, 940, 941, 946, 935, 942, 944, 940,
938, 939, 937, 942, 947, 949, 948, 936, 950, 946,
952, 941, 951, 953, 944, 952, 956, 960, 953, 949,
957, 956, 958, 958, 947, 948, 950, 951, 959, 957,
960, 962, 963, 967, 959, 964, 964, 963, 963, 964,
965, 966, 968, 965, 969, 971, 970, 962, 972, 973,
974, 975, 976, 967, 972, 966, 974, 976, 968, 970,
971, 977, 969, 980, 979, 981, 975, 979, 982, 973,
981, 983, 984, 982, 985, 977, 986, 984, 989, 985,
988, 992, 992, 990, 980, 991, 988, 983, 986, 990,
993, 991, 994, 995, 989, 997, 995, 996, 996, 993,
998, 999, 1000, 1001, 1004, 1000, 1002, 1009, 1003, 1004,
994, 1010, 1002, 997, 1003, 1005, 1001, 1006, 1007, 998,
1005, 999, 1006, 1011, 1007, 1009, 1014, 1012, 1015, 1011,
1016, 1010, 1012, 1013, 1013, 1014, 1017, 1015, 1018, 1019,
1020, 1018, 1019, 1021, 1022, 1023, 1024, 1025, 1016, 1027,
1026, 1020, 1024, 1025, 1027, 1017, 1022, 1028, 1028, 1029,
1030, 1021, 1032, 1031, 1023, 1026, 1032, 1033, 1034, 1035,
1036, 1038, 1039, 1039, 1030, 1031, 1040, 1034, 1029, 1042,
1044, 1045, 1043, 1047, 1047, 1033, 1045, 1048, 1035, 1046,
1038, 74, 1044, 1042, 1049, 1036, 1040, 1043, 1046, 1050,
1049, 1051, 1052, 1053, 1052, 1050, 1051, 1048, 1053, 1054,
1055, 1056, 1057, 1058, 1059, 1060, 1056, 1061, 1063, 1063,
1064, 1059, 1065, 1054, 1055, 1067, 1066, 1057, 1068, 68,
1060, 1067, 1058, 1069, 1064, 1071, 1061, 1075, 1069, 1071,
1065, 1066, 1072, 1072, 1075, 1073, 1076, 1069, 1068, 1069,
1073, 1078, 1069, 1074, 1074, 1077, 1079, 1080, 1077, 1081,
1076, 1082, 1084, 1083, 1081, 1085, 1080, 1084, 1086, 1091,
1078, 1088, 1088, 1089, 1079, 1083, 1085, 1090, 1089, 1092,
1082, 1093, 1090, 1094, 1092, 1093, 1095, 1086, 1096, 1091,
1097, 1099, 1094, 1098, 1102, 1100, 1101, 1103, 1104, 1106,
1107, 1095, 1100, 1096, 1105, 1098, 1099, 1108, 1101, 1097,
1105, 1111, 1109, 1102, 1106, 1112, 1104, 1111, 1103, 1113,
1107, 1109, 1115, 1114, 1116, 1117, 1119, 1108, 1121, 1116,
1112, 1114, 1120, 1113, 1118, 1122, 1122, 1117, 1124, 1118,
1118, 1121, 1115, 1126, 1125, 1119, 1120, 1123, 1179, 1126,
1179, 1124, 1123, 1125, 1128, 1123, 1123, 1127, 1127, 1128,
1123, 1130, 1129, 1131, 1132, 1134, 1123, 1130, 1131, 1132,
1123, 1129, 1133, 1133, 1135, 1135, 1136, 1137, 1138, 1136,
1139, 1136, 1140, 1141, 1142, 1143, 1134, 1144, 1141, 1139,
1146, 1149, 1149, 1144, 1145, 1146, 1138, 1137, 1142, 1148,
1145, 1147, 1140, 1143, 1155, 1147, 1150, 1150, 1148, 1150,
1151, 1154, 1153, 1148, 1156, 1148, 1153, 1148, 1158, 1148,
1159, 1151, 1155, 1156, 1157, 1161, 1154, 1158, 1160, 1157,
1157, 1162, 1163, 1160, 1164, 1165, 1169, 1166, 1168, 1161,
1162, 1171, 1159, 1166, 1167, 1167, 1168, 1170, 1172, 1165,
1169, 1163, 1170, 1164, 1173, 1171, 1174, 1172, 1175, 1176,
1176, 1177, 1182, 1175, 1178, 1178, 1181, 1182, 1183, 1181,
1184, 1186, 1173, 1185, 1185, 1189, 1177, 1187, 1187, 1184,
1189, 1174, 1188, 1188, 1190, 1191, 1199, 1183, 1192, 1192,
1193, 1186, 1194, 1195, 1196, 1194, 1203, 1202, 1197, 1196,
1198, 1203, 1198, 1204, 1199, 1190, 1191, 1197, 1201, 1205,
1193, 1201, 1202, 1195, 1205, 1206, 1207, 1204, 1211, 1208,
1214, 1207, 1210, 1206, 1208, 1209, 1209, 1210, 1212, 1216,
1213, 1224, 1217, 1214, 1212, 1216, 1211, 1213, 1217, 1218,
1219, 1220, 1221, 1222, 1218, 1226, 1219, 1223, 1223, 1227,
1220, 1224, 1228, 1229, 1222, 1236, 1230, 1231, 1233, 1229,
1226, 1221, 1230, 1231, 1233, 1234, 1235, 1236, 1237, 1227,
1238, 1239, 1239, 1240, 1241, 1228, 1242, 1245, 1243, 1234,
1244, 1244, 1237, 1243, 1246, 1234, 1235, 1248, 1238, 1246,
1249, 1250, 1251, 1240, 1242, 1249, 1249, 1252, 1253, 1241,
1245, 1251, 1254, 1255, 1263, 1252, 1248, 63, 1256, 1250,
1257, 1259, 1253, 1256, 1265, 1263, 1256, 1254, 1255, 1257,
1258, 1255, 1258, 1261, 1262, 1259, 1264, 1266, 1262, 1261,
1267, 1264, 1264, 1265, 1268, 1269, 1270, 1271, 1272, 1268,
1269, 1274, 1271, 1275, 1276, 1277, 1277, 1278, 1267, 1279,
1280, 1278, 1282, 1266, 1270, 1274, 1283, 1281, 1272, 1284,
1287, 1275, 1276, 1281, 1282, 1285, 1286, 1279, 1291, 1280,
1289, 1288, 1294, 1284, 1296, 1283, 1288, 1289, 1290, 1287,
1285, 1286, 1292, 1290, 1293, 1293, 1291, 1294, 1295, 1297,
1296, 1292, 1298, 1299, 1295, 1300, 1305, 1298, 1307, 1299,
1305, 1300, 1301, 1301, 1302, 1302, 1304, 1304, 1306, 1308,
1297, 1309, 1310, 1311, 1311, 1312, 1307, 1306, 1315, 1310,
1313, 1316, 1314, 1308, 1317, 1319, 1309, 1314, 1313, 1317,
1317, 1318, 1315, 1320, 1320, 1312, 1318, 1318, 1321, 1322,
1316, 1323, 1324, 1325, 1326, 1319, 1328, 1324, 1327, 1329,
1323, 1330, 1328, 1331, 1329, 1332, 1335, 1321, 1322, 1331,
1336, 1333, 1325, 1334, 1326, 1337, 1327, 1333, 1338, 1334,
1340, 1339, 1348, 1341, 1332, 1335, 1348, 1330, 1344, 1336,
1342, 1342, 1354, 1343, 1337, 1339, 1343, 1338, 1341, 1349,
1344, 1340, 1345, 1345, 1346, 1346, 1347, 1350, 1351, 1355,
1354, 1347, 1349, 1352, 1355, 1352, 1350, 1357, 1356, 1352,
1358, 1351, 1359, 1359, 1360, 1361, 1362, 1363, 1367, 1360,
1364, 1361, 1352, 1356, 1365, 1364, 1358, 1357, 1365, 1366,
1363, 1362, 1368, 1366, 1369, 1370, 1371, 1371, 1367, 1373,
1375, 1370, 1376, 1377, 1377, 1378, 1379, 1376, 1381, 1381,
1368, 1378, 1383, 1385, 1369, 1383, 1386, 1373, 1384, 1384,
1388, 1375, 1389, 1388, 1390, 1392, 1379, 1391, 1391, 1385,
1393, 1394, 1386, 1390, 1395, 1396, 1397, 1397, 1398, 1395,
1392, 1399, 1389, 1400, 1401, 1402, 1402, 1398, 1403, 1396,
1394, 1393, 1404, 1406, 1409, 1405, 1407, 1407, 1400, 1399,
1405, 1408, 1403, 1410, 1410, 1408, 1411, 1412, 1406, 1401,
1404, 1413, 1414, 1418, 1409, 1413, 1415, 1419, 1412, 1417,
1417, 1415, 1420, 1421, 1422, 1423, 1424, 1424, 1411, 1418,
1428, 1414, 1425, 1426, 1427, 1419, 1420, 1425, 1422, 1428,
1429, 1430, 1421, 1421, 1431, 1429, 1431, 1432, 1434, 1433,
1423, 1435, 1432, 1426, 1427, 1433, 1437, 1435, 1438, 1438,
1439, 1430, 1442, 1440, 1443, 1444, 1444, 1442, 1434, 1440,
1437, 1445, 1445, 1446, 1447, 1448, 1451, 1449, 1453, 1439,
1449, 1450, 1450, 1452, 1456, 1455, 1471, 1446, 1443, 1456,
1448, 1455, 1447, 1454, 1451, 1452, 1454, 1457, 1453, 1454,
1457, 1459, 1460, 1461, 1471, 1462, 1472, 1460, 1462, 1464,
1459, 1454, 1463, 1463, 1465, 1464, 1457, 1466, 1466, 1465,
1467, 1467, 1469, 1468, 1470, 1472, 1473, 1469, 1461, 1468,
1474, 1477, 1475, 1474, 1476, 1478, 1477, 1470, 1475, 1479,
1476, 1478, 1480, 1481, 1481, 1482, 1473, 1480, 1483, 1484,
1482, 1485, 1488, 1486, 1487, 1491, 1492, 1493, 1489, 1490,
1494, 1491, 1479, 1495, 1488, 1498, 1483, 1486, 1487, 1484,
1489, 1485, 1490, 1501, 1494, 1499, 1492, 1493, 1497, 1497,
1499, 1500, 1500, 1502, 1495, 1498, 1503, 1504, 1501, 1505,
1513, 1506, 1507, 1509, 58, 1508, 1511, 1502, 1505, 1507,
1514, 1515, 1515, 1514, 1508, 1504, 1506, 1508, 1517, 1509,
1503, 1511, 1516, 1516, 1518, 1513, 1511, 1521, 1519, 1522,
1517, 1519, 1520, 1520, 1523, 1525, 1524, 1526, 1527, 1523,
1521, 1524, 1518, 1528, 1533, 1531, 1529, 1527, 1522, 1535,
1530, 1531, 1534, 1526, 1525, 1529, 1532, 1532, 1529, 1530,
1536, 1537, 1528, 1538, 1533, 1534, 1541, 1535, 1542, 1543,
1543, 1544, 1545, 1546, 1536, 1538, 1548, 1537, 1546, 1547,
1547, 1545, 1550, 1551, 1549, 1548, 1542, 1544, 1548, 1549,
1552, 1541, 1553, 1555, 1547, 1556, 1557, 1553, 1553, 1559,
1550, 1558, 1560, 1562, 1551, 1559, 1558, 1555, 1552, 1562,
1556, 1561, 1561, 1567, 1563, 1564, 1565, 1568, 1557, 1563,
1560, 1564, 1565, 1569, 1570, 1571, 1572, 1574, 1571, 1569,
1576, 1568, 1572, 1567, 1571, 1574, 1577, 1570, 1578, 1579,
1580, 1581, 1582, 1583, 1584, 1584, 1578, 1587, 1579, 1576,
1588, 1588, 1585, 1580, 1581, 1577, 1582, 1583, 1585, 1586,
1587, 1589, 1590, 1591, 1592, 1586, 1584, 1593, 1594, 1595,
1596, 1598, 1598, 1593, 1599, 1600, 1605, 1592, 1601, 1600,
1590, 1589, 1591, 1601, 1602, 1595, 1603, 1604, 1596, 1602,
1594, 1603, 1607, 1608, 1599, 1610, 1604, 1609, 1609, 1605,
1611, 1612, 1613, 1613, 1607, 1614, 1615, 1618, 1608, 1616,
1617, 1619, 1611, 1615, 1610, 1621, 1622, 1620, 1623, 1614,
1612, 1616, 1617, 1620, 1623, 57, 1618, 1621, 1624, 1624,
1625, 1619, 1628, 1625, 1622, 1626, 1626, 1628, 1629, 1630,
1631, 1631, 1632, 1635, 1633, 1630, 1633, 1629, 1634, 1636,
1637, 1634, 1638, 1639, 1632, 1640, 1641, 1642, 1639, 1643,
1640, 1644, 1646, 1635, 1645, 1641, 1644, 1647, 1637, 1642,
1638, 1636, 1647, 1645, 1643, 1648, 1649, 1650, 1650, 1647,
1648, 1651, 1646, 1652, 1654, 1655, 1645, 1651, 1656, 52,
1657, 1649, 1657, 1658, 1659, 1659, 1660, 1660, 1661, 1661,
1662, 1655, 1665, 1654, 1652, 1663, 1663, 1658, 1656, 1658,
1664, 1664, 1666, 1667, 1667, 1668, 1669, 1673, 1670, 1668,
1662, 1670, 1669, 1665, 1672, 1674, 1675, 1677, 1677, 1676,
1672, 1674, 1676, 1666, 1679, 1673, 1678, 1678, 1680, 1679,
1681, 1682, 1683, 1684, 1680, 1685, 1688, 1690, 1691, 1684,
1687, 1675, 1681, 1681, 1681, 1687, 1687, 1695, 1690, 1681,
1688, 1682, 1683, 1691, 1689, 1685, 1689, 1692, 1693, 1694,
1696, 1696, 1697, 1692, 1698, 1698, 1699, 1693, 1695, 1700,
1701, 1701, 1702, 1702, 1703, 1706, 1706, 1707, 1708, 1694,
1710, 1715, 1711, 1714, 1712, 1718, 1699, 1708, 1697, 1710,
1712, 1700, 1713, 1713, 1703, 1720, 1715, 1717, 1716, 1719,
1719, 1721, 1707, 1711, 1714, 1716, 1717, 1723, 1724, 1725,
1727, 1718, 1723, 1726, 1724, 1732, 1727, 1721, 1728, 1731,
1726, 1720, 1729, 1729, 1728, 1730, 1733, 1734, 1731, 1725,
1730, 1735, 1736, 1737, 1735, 1732, 1738, 1738, 1739, 1734,
1740, 1741, 1742, 1743, 1739, 1733, 1740, 1743, 1745, 1746,
1736, 1747, 1748, 1748, 1749, 1750, 1747, 1742, 1752, 1737,
1753, 1741, 1762, 1743, 1753, 1755, 1754, 1760, 1745, 1758,
1750, 1746, 1754, 1749, 1755, 1756, 1756, 1752, 1757, 1761,
1758, 1762, 1757, 1759, 1759, 1758, 1763, 1764, 1760, 1765,
1766, 1763, 1768, 1761, 1773, 1767, 1766, 1768, 1769, 1769,
1770, 1770, 1771, 1773, 1774, 1775, 1771, 1764, 1782, 1765,
1767, 1776, 1776, 1778, 1778, 1774, 1779, 1780, 1781, 1790,
1774, 1779, 1779, 1780, 1781, 1775, 1783, 1784, 1787, 1785,
1789, 1783, 1788, 1792, 1782, 1785, 1788, 1791, 1798, 1784,
1787, 1793, 1789, 1791, 1790, 1794, 1795, 1793, 1797, 1799,
1794, 1802, 1802, 1801, 1799, 1792, 1801, 1798, 1795, 1805,
1797, 1803, 1803, 1804, 1804, 1806, 1807, 1810, 1808, 1809,
47, 1806, 1807, 1808, 1815, 1809, 1810, 1812, 1814, 1805,
1818, 1814, 1812, 1816, 1816, 1819, 1815, 1822, 1820, 1821,
1821, 1827, 1818, 1820, 1823, 1824, 1822, 1819, 1825, 1823,
1824, 1825, 1826, 1826, 1828, 1829, 1830, 1837, 1831, 1832,
1833, 1827, 1831, 1828, 1832, 1834, 1833, 1835, 1836, 1839,
1839, 1837, 1840, 1829, 1845, 1830, 1835, 1844, 1841, 1842,
1842, 1839, 1843, 1834, 1847, 1853, 1836, 1841, 1846, 1844,
1840, 1843, 1854, 1846, 1856, 1845, 1857, 1847, 1850, 1850,
1852, 1853, 1859, 1852, 1866, 1858, 1860, 1860, 1854, 1856,
1857, 1858, 1861, 1863, 1861, 1862, 1862, 1865, 1867, 1859,
1869, 1863, 1868, 1868, 1865, 1870, 1866, 1871, 1872, 1869,
1873, 1874, 1875, 1878, 1881, 1876, 1879, 18, 1867, 1871,
1872, 1876, 1873, 1880, 1880, 1882, 1870, 1875, 1879, 1885,
1889, 1884, 1881, 1878, 1876, 1883, 1884, 1874, 1883, 1887,
1888, 1890, 1888, 1891, 1887, 1882, 1890, 1893, 1889, 1885,
1891, 1895, 1896, 1897, 1899, 1898, 1893, 1898, 1901, 1904,
1901, 1896, 1902, 1903, 1903, 1897, 1905, 1907, 1906, 1895,
1906, 1905, 1907, 1899, 1908, 1909, 1902, 1910, 1911, 1908,
1914, 1912, 1913, 1916, 1911, 1904, 1912, 1917, 1914, 1918,
1918, 1919, 1919, 1909, 1920, 1913, 1921, 1910, 1922, 1925,
1923, 1917, 1916, 1926, 1922, 1923, 1924, 1933, 1924, 1920,
1928, 1926, 1927, 1927, 1929, 1929, 1921, 1925, 1931, 1926,
1930, 1930, 1928, 1932, 1935, 1933, 1937, 1931, 1932, 1936,
1939, 1936, 1938, 1935, 1940, 1947, 1935, 1938, 1938, 1939,
1942, 1946, 1948, 1943, 1944, 1950, 1940, 1937, 1943, 1944,
1951, 1948, 1942, 1952, 1946, 1947, 1949, 1949, 1953, 1954,
1958, 1956, 1959, 1950, 1957, 1960, 1961, 1959, 1951, 1952,
1960, 1964, 1953, 1956, 1954, 1961, 1957, 1964, 1966, 1967,
1958, 1968, 1969, 1970, 1966, 1971, 1972, 1972, 1973, 1979,
1964, 1974, 1974, 1975, 1971, 1976, 1968, 1973, 1977, 1976,
1969, 1978, 1967, 1977, 1980, 2025, 1985, 1981, 1970, 1980,
1980, 1979, 1975, 1981, 1978, 1982, 1983, 1984, 2025, 1983,
1990, 1982, 1988, 1988, 1993, 1984, 1985, 1989, 1989, 1990,
1991, 1991, 1992, 1992, 1994, 1995, 1993, 2003, 1996, 1997,
1997, 1995, 1989, 1996, 1998, 1998, 1999, 2005, 2000, 2007,
2009, 1999, 1994, 1989, 2000, 2002, 2004, 2003, 2008, 2002,
2004, 2010, 2012, 2008, 2011, 2013, 2014, 2005, 2016, 2011,
2015, 2017, 2017, 2009, 2007, 2015, 2010, 2019, 2018, 2020,
2012, 2013, 2018, 2021, 2020, 2022, 2014, 2023, 2024, 2026,
2016, 2029, 2019, 2024, 2027, 2027, 2030, 2022, 2031, 2029,
2032, 2033, 2034, 2035, 2036, 2037, 2023, 2026, 2041, 2021,
2040, 2040, 2039, 2041, 2044, 2030, 2036, 2031, 2043, 2042,
2045, 2034, 2042, 2032, 2035, 2033, 2037, 2039, 2044, 2046,
2046, 2043, 2049, 2045, 2047, 2047, 2048, 2048, 2050, 2051,
2051, 2052, 2053, 2053, 2054, 2057, 2058, 2049, 2059, 2054,
2052, 2050, 2056, 2052, 2060, 2060, 2062, 2056, 2061, 2061,
2059, 2063, 2063, 2064, 2066, 2057, 2058, 2065, 2065, 2067,
2068, 2068, 2069, 2069, 2067, 2062, 2070, 2071, 2072, 2066,
2073, 2064, 2075, 2076, 2076, 2077, 2071, 2075, 2078, 2078,
2070, 2079, 2072, 2081, 2080, 2084, 2081, 2082, 2082, 2073,
2080, 2083, 2083, 2085, 2077, 2086, 2087, 2087, 2089, 2079,
2090, 2091, 2092, 2082, 2084, 2094, 2092, 2095, 2085, 2093,
2093, 2096, 2095, 2097, 2086, 2100, 2091, 2102, 2089, 2099,
2099, 2103, 2101, 2090, 2094, 2104, 2096, 2105, 2097, 2101,
2111, 2102, 2106, 2106, 2109, 2100, 2107, 2109, 2108, 2103,
2108, 2112, 2111, 2104, 2113, 2107, 2112, 2114, 2115, 2113,
2116, 2117, 2109, 2105, 2109, 2118, 2117, 2120, 2121, 2122,
2123, 2115, 2120, 2121, 2124, 2126, 2123, 2125, 2128, 2129,
2126, 2116, 2114, 2125, 2122, 2127, 2130, 2131, 2132, 2130,
2127, 2118, 2129, 2133, 2135, 2124, 2131, 2132, 2134, 2136,
2137, 2140, 2133, 2128, 17, 2136, 2137, 2134, 2135, 2138,
2142, 2143, 2143, 2138, 2144, 2145, 2145, 2146, 2147, 2142,
2144, 2140, 2146, 2149, 2145, 2150, 2151, 2151, 2152, 2156,
2162, 2157, 2155, 2153, 2160, 2158, 0, 2160, 2147, 2149,
2147, 2150, 2153, 2152, 2155, 2156, 2157, 2158, 2161, 2163,
2162, 2164, 2164, 2161, 2165, 2165, 2167, 2167, 2169, 2168,
2170, 2163, 2168, 2169, 2171, 2172, 2170, 2173, 2173, 2174,
2171, 2175, 2175, 2176, 2172, 2177, 2178, 2179, 2179, 2181,
2180, 2188, 2182, 2174, 2184, 2176, 2180, 2182, 2184, 2177,
2188, 2185, 2189, 2181, 2185, 2178, 2186, 2186, 2187, 2195,
2190, 2191, 2191, 2187, 2190, 2192, 2194, 2196, 2197, 2198,
2199, 2194, 2189, 2198, 2203, 2200, 2205, 2201, 2192, 2195,
2200, 2206, 2197, 2201, 2207, 2202, 2209, 2196, 2205, 2207,
2199, 2202, 2203, 2208, 2209, 2213, 2210, 2206, 2210, 2208,
2214, 2214, 2215, 2216, 2219, 2215, 2217, 2217, 2219, 2213,
2220, 2221, 2222, 2222, 2228, 2223, 2220, 2226, 2226, 2230,
2231, 2234, 2235, 2221, 2223, 2236, 2234, 2238, 2238, 2216,
2236, 2244, 2228, 2230, 2237, 2242, 2231, 2240, 2240, 2237,
2245, 2242, 2243, 2243, 2246, 2248, 2249, 2244, 2235, 2246,
2250, 2250, 2252, 2253, 2254, 2255, 2257, 2257, 2249, 2253,
2258, 2252, 2245, 2258, 2248, 2259, 2264, 2260, 2262, 2262,
2255, 2264, 2254, 2263, 2263, 2265, 2267, 2266, 2268, 2271,
2268, 2267, 2269, 2270, 2259, 2260, 2266, 2272, 2273, 2274,
0, 2271, 2272, 2265, 2274, 2279, 2269, 2270, 2275, 2275,
2276, 2276, 2277, 2277, 2278, 2278, 2280, 2279, 2273, 2281,
2282, 2282, 2283, 2283, 2281, 2284, 2285, 2286, 2287, 2288,
2288, 2289, 2290, 2290, 2280, 2291, 2291, 2284, 2285, 2294,
2292, 2293, 2295, 2296, 2287, 2298, 2294, 2286, 2299, 2301,
2289, 2292, 2297, 2293, 2295, 2300, 2300, 2297, 2301, 2302,
2303, 2304, 2305, 2296, 2306, 2298, 2309, 2307, 2299, 2308,
2308, 2313, 2310, 2311, 2304, 2309, 2314, 2315, 2306, 2307,
2303, 2316, 2317, 0, 2316, 2302, 2305, 2310, 2311, 2313,
2318, 2327, 2319, 2320, 2320, 2318, 2317, 2319, 2314, 2328,
2315, 2321, 2321, 2322, 2322, 2324, 2324, 2326, 2326, 2327,
2328, 2329, 2330, 2332, 2333, 2334, 2335, 2336, 2337, 2338,
2339, 2338, 2345, 2340, 2341, 2362, 2336, 2330, 2342, 2342,
2329, 2362, 2333, 2332, 2344, 2344, 2335, 2334, 2337, 2346,
2339, 2340, 2341, 2349, 2345, 2347, 2347, 2351, 2346, 2350,
2350, 2352, 2349, 2353, 2355, 2354, 2356, 2357, 2358, 2365,
2353, 2359, 2359, 2360, 2360, 2351, 2361, 2361, 2363, 2352,
2354, 2366, 2355, 2357, 2356, 2364, 2366, 2358, 2365, 2367,
2368, 2370, 2369, 2370, 2371, 2371, 2363, 2369, 2375, 2372,
2364, 2372, 2373, 2373, 2377, 2378, 2379, 2380, 2382, 2367,
2368, 2381, 2383, 2377, 2386, 2389, 2381, 2375, 2379, 2387,
2388, 2388, 2387, 2390, 2378, 2391, 2391, 2380, 2382, 2392,
2389, 2383, 2394, 2392, 2386, 2395, 2396, 2396, 2397, 2395,
2399, 2390, 2400, 2401, 2402, 2402, 2404, 2394, 2405, 2406,
2408, 2397, 2412, 2406, 2420, 2399, 2410, 2405, 2404, 2407,
2407, 2410, 2400, 2401, 2409, 2409, 2411, 2413, 2412, 2408,
2414, 2414, 2419, 2419, 2422, 2411, 2420, 2421, 2421, 2413,
2423, 2424, 2425, 2426, 2426, 2427, 2437, 2422, 2429, 2429,
2424, 2425, 2432, 2423, 2433, 2434, 2435, 2432, 2436, 2433,
2427, 2435, 2438, 2441, 2439, 2437, 2436, 2444, 2442, 2434,
2443, 2438, 2439, 2442, 2448, 2443, 2445, 2445, 2441, 2446,
2446, 2448, 2444, 2447, 2447, 2449, 2450, 2451, 2452, 0,
2449, 2453, 2454, 2454, 2452, 2455, 2453, 2456, 2457, 2457,
2458, 2458, 2456, 2461, 2450, 2451, 2462, 2462, 2463, 2464,
2455, 2463, 2465, 2466, 2464, 2464, 2461, 2465, 2466, 2467,
2468, 2469, 2470, 2471, 2472, 2469, 2468, 2470, 2473, 2474,
2477, 2475, 2471, 2467, 2476, 2477, 2473, 2475, 2480, 2472,
2476, 2478, 2481, 2480, 2483, 2481, 2485, 2486, 2487, 2488,
2474, 2485, 2486, 2478, 2489, 2490, 2483, 2491, 2491, 2492,
2496, 2497, 2488, 2489, 2490, 2498, 2487, 2500, 2492, 2499,
2499, 2501, 2502, 2503, 2503, 2504, 2506, 2508, 2509, 2496,
2501, 2497, 2509, 2511, 2498, 0, 2500, 2502, 2510, 2510,
2512, 2506, 2513, 2514, 2504, 2516, 2512, 2508, 2513, 2514,
2515, 2515, 2517, 2516, 2519, 2520, 2522, 2517, 2511, 2523,
2522, 2524, 2527, 2519, 2526, 2526, 2528, 2528, 2520, 2529,
2529, 2531, 2531, 2523, 2532, 2537, 2524, 2533, 2532, 2539,
2527, 2538, 2533, 2535, 2535, 2542, 2538, 2540, 2543, 2543,
2550, 2539, 2540, 2540, 2548, 2537, 2545, 2545, 2546, 2546,
2547, 2552, 2556, 2547, 2559, 2542, 2558, 2548, 2550, 2553,
2553, 2554, 2554, 2555, 2555, 2557, 2557, 2556, 2560, 2558,
2561, 2552, 2559, 2562, 2562, 2563, 2561, 2568, 2567, 2563,
2571, 2569, 2560, 2567, 2567, 2570, 2571, 2572, 2573, 2583,
2574, 2575, 2575, 2572, 2574, 2580, 2581, 2578, 2586, 2581,
2568, 2569, 2578, 2580, 2584, 2570, 2587, 2584, 2585, 2585,
2588, 2587, 2589, 2573, 2583, 2586, 2586, 2590, 2591, 2591,
2592, 2594, 2593, 2595, 2613, 2593, 2598, 2613, 2588, 2596,
0, 2590, 2589, 2593, 2592, 2594, 2606, 2596, 2597, 2599,
2599, 2604, 2595, 2597, 2597, 2598, 2600, 2600, 2601, 2601,
2602, 2602, 2603, 2603, 2605, 2607, 2606, 2604, 2608, 2605,
2609, 2614, 2610, 2612, 2612, 2616, 2616, 2608, 2617, 2618,
2618, 2619, 2621, 2621, 2622, 2617, 2619, 2623, 2624, 2614,
2609, 2607, 2610, 2622, 2626, 0, 2623, 2624, 2627, 2627,
2628, 2629, 2630, 2631, 2628, 2632, 2633, 2634, 2631, 2631,
2629, 2634, 2626, 2642, 2638, 2633, 2643, 2630, 2632, 2638,
2639, 2639, 2641, 2641, 2644, 2646, 2647, 2642, 2650, 2652,
2651, 2653, 2655, 2657, 2646, 2659, 0, 2653, 2647, 2651,
2659, 2643, 2644, 2660, 2655, 2661, 2661, 2662, 2660, 2652,
2664, 2667, 2667, 2650, 2657, 2664, 2662, 2665, 2665, 2668,
2668, 2665, 2669, 2669, 2670, 2671, 2673, 2672, 2675, 2679,
2676, 2673, 2677, 2670, 2675, 2676, 2680, 2677, 2678, 2678,
2681, 2683, 2685, 2692, 2682, 2671, 2672, 2679, 2680, 2682,
2684, 2686, 2686, 2688, 2693, 2689, 2684, 2688, 2690, 2683,
2689, 2681, 2692, 2690, 2691, 2691, 2694, 2685, 2698, 2693,
2696, 2696, 2699, 2700, 2701, 2702, 2703, 2700, 2706, 2704,
2708, 2698, 2713, 2701, 2705, 2699, 2694, 2704, 0, 2705,
2724, 2702, 2707, 2707, 2717, 2703, 2710, 2710, 2718, 2708,
2711, 2711, 2719, 2713, 2706, 2715, 2715, 2720, 2722, 2722,
2717, 2723, 2720, 2724, 2718, 2725, 2727, 2727, 2719, 2728,
2729, 2730, 2730, 2733, 2734, 2736, 2739, 2735, 2737, 2737,
2734, 2723, 2735, 2728, 2725, 2738, 2738, 2740, 2740, 2729,
2741, 2742, 2743, 2733, 2745, 2747, 2739, 2736, 2744, 2746,
2742, 2741, 2748, 2748, 2744, 2749, 2754, 2740, 2749, 2750,
2750, 2746, 2743, 2745, 2755, 2747, 2756, 2759, 2754, 2757,
2757, 2758, 2756, 2759, 2758, 2760, 2762, 2763, 2763, 2765,
2764, 2762, 2766, 2767, 2755, 2764, 2768, 2768, 2766, 2771,
2770, 2772, 2773, 2760, 2774, 2774, 2775, 2776, 2765, 2781,
2767, 2767, 2770, 2778, 2778, 2773, 2776, 2771, 2779, 2779,
2783, 2783, 2780, 2781, 2782, 2775, 2772, 2780, 2791, 2782,
2784, 2784, 2785, 2785, 2786, 2788, 2788, 2793, 2794, 2786,
2795, 2796, 2796, 2798, 2798, 2800, 2801, 2791, 2805, 2799,
2802, 2802, 2803, 2803, 2805, 2801, 2806, 2815, 2807, 2793,
2794, 2808, 2795, 2799, 0, 2800, 2808, 2811, 2811, 2813,
2813, 2815, 2817, 2814, 2816, 2818, 2806, 2807, 2814, 2822,
2816, 2819, 2819, 2818, 2817, 2820, 2823, 2824, 2825, 2826,
2820, 2829, 2824, 2828, 2830, 2826, 2831, 2833, 2836, 2822,
2825, 2828, 2834, 2835, 2837, 2840, 2823, 2839, 2842, 2837,
2829, 2841, 2839, 2842, 2830, 2833, 2831, 2841, 2834, 2836,
2835, 2835, 2844, 2845, 2876, 2840, 2848, 2848, 2849, 2849,
2850, 2854, 2854, 2876, 2850, 2860, 2845, 2856, 2856, 2860,
2857, 2857, 2844, 2857, 2858, 2858, 2863, 2858, 2859, 2859,
2867, 2859, 2862, 2862, 2864, 2868, 2869, 2870, 2870, 2873,
2874, 2869, 2875, 2877, 2863, 2879, 2875, 2874, 2864, 0,
2867, 2880, 2881, 2881, 2884, 2868, 2882, 2882, 2877, 2886,
2880, 2883, 2883, 2879, 2873, 2885, 2889, 2887, 2886, 2884,
2885, 2886, 2887, 2887, 2888, 2890, 2891, 2892, 2893, 2894,
2888, 2896, 2892, 2893, 2895, 2895, 2897, 2896, 2898, 2898,
2890, 2889, 2897, 2899, 2899, 2900, 2931, 2891, 2894, 2931,
2900, 2903, 2903, 2906, 2906, 2907, 2907, 2908, 2908, 2909,
2909, 2910, 2910, 2911, 2911, 2912, 2912, 2914, 2915, 2915,
2916, 2917, 2918, 2922, 2920, 2924, 2914, 2921, 2921, 2916,
2926, 2923, 2930, 2917, 2925, 2925, 2932, 2924, 2922, 2927,
2927, 2934, 2918, 2920, 2923, 2926, 2933, 2933, 2936, 2937,
2930, 2936, 2938, 2939, 2940, 2937, 2941, 2944, 2939, 2934,
2942, 2945, 2932, 2944, 2948, 2957, 2938, 2959, 2957, 2964,
2945, 2960, 2960, 2940, 2941, 2965, 2942, 2961, 2961, 2948,
2959, 2962, 2962, 2966, 2965, 2967, 2968, 2966, 2970, 2972,
2971, 2973, 2964, 2973, 2972, 2974, 2975, 2975, 2977, 2976,
2968, 2971, 2978, 2979, 2980, 2967, 2981, 2982, 2985, 2984,
2974, 2970, 2976, 2983, 2991, 2993, 2982, 2977, 2986, 2979,
2978, 2981, 2990, 2986, 2993, 2983, 2992, 2992, 2985, 2980,
2984, 2994, 2994, 2998, 2991, 2999, 2990, 2995, 2995, 2996,
2996, 2997, 2997, 3000, 3001, 3002, 3000, 3003, 3004, 3001,
3002, 3005, 2998, 3006, 3007, 2999, 3008, 3005, 3009, 3010,
3010, 3008, 3011, 3004, 3012, 3015, 3007, 3006, 3013, 3013,
3017, 3022, 3003, 3020, 3020, 3021, 3021, 3011, 3009, 3022,
3015, 3023, 3026, 3012, 3024, 3025, 3027, 3028, 3017, 3029,
3024, 3025, 3030, 3030, 3029, 3033, 3026, 3031, 3031, 3027,
3023, 3034, 3039, 3036, 3037, 3040, 3028, 3041, 3037, 3044,
3040, 3042, 3043, 3045, 3046, 3050, 3033, 3036, 3045, 3046,
3051, 3034, 3039, 3052, 3042, 3043, 3041, 3055, 3044, 3047,
3047, 3053, 3053, 3055, 3054, 3050, 3056, 3056, 3051, 3054,
3057, 3058, 3052, 3059, 3060, 3057, 3058, 3061, 3059, 3063,
3063, 3064, 3068, 3061, 3065, 3065, 3064, 3067, 3069, 3070,
3071, 3067, 3072, 3060, 3073, 3069, 3081, 3074, 3072, 3076,
3076, 3068, 3078, 3078, 3082, 3079, 3080, 3083, 3070, 3071,
3074, 3080, 3086, 3073, 3079, 3081, 3085, 3079, 3084, 3084,
3083, 3085, 3088, 3082, 3090, 3086, 3089, 3089, 3091, 3091,
3092, 3092, 3093, 3094, 3095, 3096, 3096, 3093, 0, 3097,
3094, 3099, 3099, 3090, 3097, 3098, 3102, 3098, 3088, 3100,
3101, 3104, 3107, 3095, 3103, 3111, 3100, 3101, 3109, 3103,
3106, 3106, 3110, 3109, 3112, 3102, 3116, 3110, 3113, 3113,
3104, 3107, 3115, 3115, 3111, 3117, 3118, 3118, 3119, 3119,
3120, 3122, 3122, 3112, 3124, 3116, 3130, 3120, 3123, 3123,
3126, 3124, 3129, 3131, 3117, 3126, 0, 3129, 3132, 3132,
3133, 3133, 0, 0, 0, 3130, 0, 0, 0, 0,
0, 0, 3131, 3137, 3137, 3137, 3137, 3137, 3137, 3137,
3138, 3138, 3138, 3138, 3138, 3138, 3138, 3139, 3139, 3139,
3139, 3139, 3139, 3139, 3140, 3140, 3140, 3140, 3140, 3140,
3140, 3141, 3141, 3141, 3141, 3141, 3141, 3141, 3142, 3142,
3142, 3142, 3142, 3142, 3142, 3143, 3143, 3143, 3143, 3143,
3143, 3143, 3145, 3145, 0, 3145, 3145, 3145, 3145, 3146,
3146, 0, 0, 0, 3146, 3146, 3147, 3147, 0, 0,
3147, 0, 3147, 3148, 0, 0, 0, 0, 0, 3148,
3149, 3149, 0, 0, 0, 3149, 3149, 3150, 0, 0,
0, 0, 0, 3150, 3151, 3151, 0, 3151, 3151, 3151,
3151, 3152, 0, 0, 0, 0, 0, 3152, 3153, 3153,
0, 0, 0, 3153, 3153, 3154, 3154, 0, 3154, 3154,
3154, 3154, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136,
3136, 3136, 3136
} ;
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 3024 "<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 3033 "<stdout>"
#line 3035 "<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 3259 "<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 >= 3137 )
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] != 6133 );
yy_find_action:
yy_act = yy_accept[yy_current_state];
if ( yy_act == 0 )
{ /* have to back up */
yy_cp = (yy_last_accepting_cpos);
yy_current_state = (yy_last_accepting_state);
yy_act = yy_accept[yy_current_state];
}
YY_DO_BEFORE_ACTION;
do_action: /* This label is used only to access EOF actions. */
switch ( yy_act )
{ /* beginning of action switch */
case 0: /* must back up */
/* undo the effects of YY_DO_BEFORE_ACTION */
*yy_cp = (yy_hold_char);
yy_cp = (yy_last_accepting_cpos);
yy_current_state = (yy_last_accepting_state);
goto yy_find_action;
case 1:
YY_RULE_SETUP
#line 212 "./util/configlexer.lex"
{
LEXOUT(("SP ")); /* ignore */ }
YY_BREAK
case 2:
YY_RULE_SETUP
#line 214 "./util/configlexer.lex"
{
/* note that flex makes the longest match and '.' is any but not nl */
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
YY_BREAK
case 3:
YY_RULE_SETUP
#line 217 "./util/configlexer.lex"
{ YDVAR(0, VAR_SERVER) }
YY_BREAK
case 4:
YY_RULE_SETUP
#line 218 "./util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION) }
YY_BREAK
case 5:
YY_RULE_SETUP
#line 219 "./util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) }
YY_BREAK
case 6:
YY_RULE_SETUP
#line 220 "./util/configlexer.lex"
{ YDVAR(1, VAR_NUM_THREADS) }
YY_BREAK
case 7:
YY_RULE_SETUP
#line 221 "./util/configlexer.lex"
{ YDVAR(1, VAR_VERBOSITY) }
YY_BREAK
case 8:
YY_RULE_SETUP
#line 222 "./util/configlexer.lex"
{ YDVAR(1, VAR_PORT) }
YY_BREAK
case 9:
YY_RULE_SETUP
#line 223 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_RANGE) }
YY_BREAK
case 10:
YY_RULE_SETUP
#line 224 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
YY_BREAK
case 11:
YY_RULE_SETUP
#line 225 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
YY_BREAK
case 12:
YY_RULE_SETUP
#line 226 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
YY_BREAK
case 13:
YY_RULE_SETUP
#line 227 "./util/configlexer.lex"
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
YY_BREAK
case 14:
YY_RULE_SETUP
#line 228 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP4) }
YY_BREAK
case 15:
YY_RULE_SETUP
#line 229 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP6) }
YY_BREAK
case 16:
YY_RULE_SETUP
#line 230 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFER_IP4) }
YY_BREAK
case 17:
YY_RULE_SETUP
#line 231 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFER_IP6) }
YY_BREAK
case 18:
YY_RULE_SETUP
#line 232 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_UDP) }
YY_BREAK
case 19:
YY_RULE_SETUP
#line 233 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_TCP) }
YY_BREAK
case 20:
YY_RULE_SETUP
#line 234 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_UPSTREAM) }
YY_BREAK
case 21:
YY_RULE_SETUP
#line 235 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_MSS) }
YY_BREAK
case 22:
YY_RULE_SETUP
#line 236 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_TCP_MSS) }
YY_BREAK
case 23:
YY_RULE_SETUP
#line 237 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_IDLE_TIMEOUT) }
YY_BREAK
case 24:
YY_RULE_SETUP
#line 238 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) }
YY_BREAK
case 25:
YY_RULE_SETUP
#line 239 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) }
YY_BREAK
case 26:
YY_RULE_SETUP
#line 240 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 27:
YY_RULE_SETUP
#line 241 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 28:
YY_RULE_SETUP
#line 242 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 29:
YY_RULE_SETUP
#line 243 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 30:
YY_RULE_SETUP
#line 244 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 31:
YY_RULE_SETUP
#line 245 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 32:
YY_RULE_SETUP
#line 246 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 33:
YY_RULE_SETUP
#line 247 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 34:
YY_RULE_SETUP
#line 248 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
YY_BREAK
case 35:
YY_RULE_SETUP
#line 249 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
YY_BREAK
case 36:
YY_RULE_SETUP
#line 250 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_WIN_CERT) }
YY_BREAK
case 37:
YY_RULE_SETUP
#line 251 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 38:
YY_RULE_SETUP
#line 252 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 39:
YY_RULE_SETUP
#line 253 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 40:
YY_RULE_SETUP
#line 254 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 41:
YY_RULE_SETUP
#line 255 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) }
YY_BREAK
case 42:
YY_RULE_SETUP
#line 256 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CIPHERS) }
YY_BREAK
case 43:
YY_RULE_SETUP
#line 257 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CIPHERSUITES) }
YY_BREAK
case 44:
YY_RULE_SETUP
#line 258 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_USE_SNI) }
YY_BREAK
case 45:
YY_RULE_SETUP
#line 259 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSTEMD) }
YY_BREAK
case 46:
YY_RULE_SETUP
#line 260 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_DAEMONIZE) }
YY_BREAK
case 47:
YY_RULE_SETUP
#line 261 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 48:
YY_RULE_SETUP
#line 262 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 49:
YY_RULE_SETUP
#line 263 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
YY_BREAK
case 50:
YY_RULE_SETUP
#line 264 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
YY_BREAK
case 51:
YY_RULE_SETUP
#line 265 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_RCVBUF) }
YY_BREAK
case 52:
YY_RULE_SETUP
#line 266 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_SNDBUF) }
YY_BREAK
case 53:
YY_RULE_SETUP
#line 267 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_REUSEPORT) }
YY_BREAK
case 54:
YY_RULE_SETUP
#line 268 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_TRANSPARENT) }
YY_BREAK
case 55:
YY_RULE_SETUP
#line 269 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_FREEBIND) }
YY_BREAK
case 56:
YY_RULE_SETUP
#line 270 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_DSCP) }
YY_BREAK
case 57:
YY_RULE_SETUP
#line 271 "./util/configlexer.lex"
{ YDVAR(1, VAR_CHROOT) }
YY_BREAK
case 58:
YY_RULE_SETUP
#line 272 "./util/configlexer.lex"
{ YDVAR(1, VAR_USERNAME) }
YY_BREAK
case 59:
YY_RULE_SETUP
#line 273 "./util/configlexer.lex"
{ YDVAR(1, VAR_DIRECTORY) }
YY_BREAK
case 60:
YY_RULE_SETUP
#line 274 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOGFILE) }
YY_BREAK
case 61:
YY_RULE_SETUP
#line 275 "./util/configlexer.lex"
{ YDVAR(1, VAR_PIDFILE) }
YY_BREAK
case 62:
YY_RULE_SETUP
#line 276 "./util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_HINTS) }
YY_BREAK
case 63:
YY_RULE_SETUP
#line 277 "./util/configlexer.lex"
{ YDVAR(1, VAR_STREAM_WAIT_SIZE) }
YY_BREAK
case 64:
YY_RULE_SETUP
#line 278 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
YY_BREAK
case 65:
YY_RULE_SETUP
#line 279 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
YY_BREAK
case 66:
YY_RULE_SETUP
#line 280 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
YY_BREAK
case 67:
YY_RULE_SETUP
#line 281 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
YY_BREAK
case 68:
YY_RULE_SETUP
#line 282 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
YY_BREAK
case 69:
YY_RULE_SETUP
#line 283 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
YY_BREAK
case 70:
YY_RULE_SETUP
#line 284 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
YY_BREAK
case 71:
YY_RULE_SETUP
#line 285 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
YY_BREAK
case 72:
YY_RULE_SETUP
#line 286 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
YY_BREAK
case 73:
YY_RULE_SETUP
#line 287 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
YY_BREAK
case 74:
YY_RULE_SETUP
#line 288 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
YY_BREAK
case 75:
YY_RULE_SETUP
#line 289 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
YY_BREAK
case 76:
YY_RULE_SETUP
#line 290 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
YY_BREAK
case 77:
YY_RULE_SETUP
#line 291 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
YY_BREAK
case 78:
YY_RULE_SETUP
#line 292 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
YY_BREAK
case 79:
YY_RULE_SETUP
#line 293 "./util/configlexer.lex"
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
YY_BREAK
case 80:
YY_RULE_SETUP
#line 294 "./util/configlexer.lex"
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
YY_BREAK
case 81:
YY_RULE_SETUP
#line 295 "./util/configlexer.lex"
{ YDVAR(1, VAR_DELAY_CLOSE) }
YY_BREAK
case 82:
YY_RULE_SETUP
#line 296 "./util/configlexer.lex"
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
YY_BREAK
case 83:
YY_RULE_SETUP
#line 297 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
YY_BREAK
case 84:
YY_RULE_SETUP
#line 298 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
YY_BREAK
case 85:
YY_RULE_SETUP
#line 299 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_GLUE) }
YY_BREAK
case 86:
YY_RULE_SETUP
#line 300 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
YY_BREAK
case 87:
YY_RULE_SETUP
#line 301 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
YY_BREAK
case 88:
YY_RULE_SETUP
#line 302 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
YY_BREAK
case 89:
YY_RULE_SETUP
#line 303 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
YY_BREAK
case 90:
YY_RULE_SETUP
#line 304 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
YY_BREAK
case 91:
YY_RULE_SETUP
#line 305 "./util/configlexer.lex"
{ YDVAR(1, VAR_CAPS_WHITELIST) }
YY_BREAK
case 92:
YY_RULE_SETUP
#line 306 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
YY_BREAK
case 93:
YY_RULE_SETUP
#line 307 "./util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
YY_BREAK
case 94:
YY_RULE_SETUP
#line 308 "./util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
YY_BREAK
case 95:
YY_RULE_SETUP
#line 309 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH_KEY) }
YY_BREAK
case 96:
YY_RULE_SETUP
#line 310 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH) }
YY_BREAK
case 97:
YY_RULE_SETUP
#line 311 "./util/configlexer.lex"
{ YDVAR(1, VAR_DENY_ANY) }
YY_BREAK
case 98:
YY_RULE_SETUP
#line 312 "./util/configlexer.lex"
{ YDVAR(0, VAR_STUB_ZONE) }
YY_BREAK
case 99:
YY_RULE_SETUP
#line 313 "./util/configlexer.lex"
{ YDVAR(1, VAR_NAME) }
YY_BREAK
case 100:
YY_RULE_SETUP
#line 314 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_ADDR) }
YY_BREAK
case 101:
YY_RULE_SETUP
#line 315 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_HOST) }
YY_BREAK
case 102:
YY_RULE_SETUP
#line 316 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_PRIME) }
YY_BREAK
case 103:
YY_RULE_SETUP
#line 317 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_FIRST) }
YY_BREAK
case 104:
YY_RULE_SETUP
#line 318 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_NO_CACHE) }
YY_BREAK
case 105:
YY_RULE_SETUP
#line 319 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 106:
YY_RULE_SETUP
#line 320 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 107:
YY_RULE_SETUP
#line 321 "./util/configlexer.lex"
{ YDVAR(0, VAR_FORWARD_ZONE) }
YY_BREAK
case 108:
YY_RULE_SETUP
#line 322 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_ADDR) }
YY_BREAK
case 109:
YY_RULE_SETUP
#line 323 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_HOST) }
YY_BREAK
case 110:
YY_RULE_SETUP
#line 324 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_FIRST) }
YY_BREAK
case 111:
YY_RULE_SETUP
#line 325 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_NO_CACHE) }
YY_BREAK
case 112:
YY_RULE_SETUP
#line 326 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 113:
YY_RULE_SETUP
#line 327 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 114:
YY_RULE_SETUP
#line 328 "./util/configlexer.lex"
{ YDVAR(0, VAR_AUTH_ZONE) }
YY_BREAK
case 115:
YY_RULE_SETUP
#line 329 "./util/configlexer.lex"
{ YDVAR(0, VAR_RPZ) }
YY_BREAK
case 116:
YY_RULE_SETUP
#line 330 "./util/configlexer.lex"
{ YDVAR(1, VAR_TAGS) }
YY_BREAK
case 117:
YY_RULE_SETUP
#line 331 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_ACTION_OVERRIDE) }
YY_BREAK
case 118:
YY_RULE_SETUP
#line 332 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_CNAME_OVERRIDE) }
YY_BREAK
case 119:
YY_RULE_SETUP
#line 333 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_LOG) }
YY_BREAK
case 120:
YY_RULE_SETUP
#line 334 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_LOG_NAME) }
YY_BREAK
case 121:
YY_RULE_SETUP
#line 335 "./util/configlexer.lex"
{ YDVAR(1, VAR_ZONEFILE) }
YY_BREAK
case 122:
YY_RULE_SETUP
#line 336 "./util/configlexer.lex"
{ YDVAR(1, VAR_MASTER) }
YY_BREAK
case 123:
YY_RULE_SETUP
#line 337 "./util/configlexer.lex"
{ YDVAR(1, VAR_URL) }
YY_BREAK
case 124:
YY_RULE_SETUP
#line 338 "./util/configlexer.lex"
{ YDVAR(1, VAR_ALLOW_NOTIFY) }
YY_BREAK
case 125:
YY_RULE_SETUP
#line 339 "./util/configlexer.lex"
{ YDVAR(1, VAR_FOR_DOWNSTREAM) }
YY_BREAK
case 126:
YY_RULE_SETUP
#line 340 "./util/configlexer.lex"
{ YDVAR(1, VAR_FOR_UPSTREAM) }
YY_BREAK
case 127:
YY_RULE_SETUP
#line 341 "./util/configlexer.lex"
{ YDVAR(1, VAR_FALLBACK_ENABLED) }
YY_BREAK
case 128:
YY_RULE_SETUP
#line 342 "./util/configlexer.lex"
{ YDVAR(0, VAR_VIEW) }
YY_BREAK
case 129:
YY_RULE_SETUP
#line 343 "./util/configlexer.lex"
{ YDVAR(1, VAR_VIEW_FIRST) }
YY_BREAK
case 130:
YY_RULE_SETUP
#line 344 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
YY_BREAK
case 131:
YY_RULE_SETUP
#line 345 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
YY_BREAK
case 132:
YY_RULE_SETUP
#line 346 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL) }
YY_BREAK
case 133:
YY_RULE_SETUP
#line 347 "./util/configlexer.lex"
{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) }
YY_BREAK
case 134:
YY_RULE_SETUP
#line 348 "./util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) }
YY_BREAK
case 135:
YY_RULE_SETUP
#line 349 "./util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) }
YY_BREAK
case 136:
YY_RULE_SETUP
#line 350 "./util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) }
YY_BREAK
case 137:
YY_RULE_SETUP
#line 351 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) }
YY_BREAK
case 138:
YY_RULE_SETUP
#line 352 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) }
YY_BREAK
case 139:
YY_RULE_SETUP
#line 353 "./util/configlexer.lex"
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) }
YY_BREAK
case 140:
YY_RULE_SETUP
#line 354 "./util/configlexer.lex"
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) }
YY_BREAK
case 141:
YY_RULE_SETUP
#line 355 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) }
YY_BREAK
case 142:
YY_RULE_SETUP
#line 356 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) }
YY_BREAK
case 143:
YY_RULE_SETUP
#line 357 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_IDENTITY) }
YY_BREAK
case 144:
YY_RULE_SETUP
#line 358 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_VERSION) }
YY_BREAK
case 145:
YY_RULE_SETUP
#line 359 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) }
YY_BREAK
case 146:
YY_RULE_SETUP
#line 360 "./util/configlexer.lex"
{ YDVAR(1, VAR_IDENTITY) }
YY_BREAK
case 147:
YY_RULE_SETUP
#line 361 "./util/configlexer.lex"
{ YDVAR(1, VAR_VERSION) }
YY_BREAK
case 148:
YY_RULE_SETUP
#line 362 "./util/configlexer.lex"
{ YDVAR(1, VAR_MODULE_CONF) }
YY_BREAK
case 149:
YY_RULE_SETUP
#line 363 "./util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR) }
YY_BREAK
case 150:
YY_RULE_SETUP
#line 364 "./util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
YY_BREAK
case 151:
YY_RULE_SETUP
#line 365 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
YY_BREAK
case 152:
YY_RULE_SETUP
#line 366 "./util/configlexer.lex"
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
YY_BREAK
case 153:
YY_RULE_SETUP
#line 367 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
YY_BREAK
case 154:
YY_RULE_SETUP
#line 368 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR) }
YY_BREAK
case 155:
YY_RULE_SETUP
#line 369 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) }
YY_BREAK
case 156:
YY_RULE_SETUP
#line 370 "./util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) }
YY_BREAK
case 157:
YY_RULE_SETUP
#line 371 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
YY_BREAK
case 158:
YY_RULE_SETUP
#line 372 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
YY_BREAK
case 159:
YY_RULE_SETUP
#line 373 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
YY_BREAK
case 160:
YY_RULE_SETUP
#line 374 "./util/configlexer.lex"
{ YDVAR(1, VAR_BOGUS_TTL) }
YY_BREAK
case 161:
YY_RULE_SETUP
#line 375 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
YY_BREAK
case 162:
YY_RULE_SETUP
#line 376 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
YY_BREAK
case 163:
YY_RULE_SETUP
#line 377 "./util/configlexer.lex"
{ YDVAR(1, VAR_AGGRESSIVE_NSEC) }
YY_BREAK
case 164:
YY_RULE_SETUP
#line 378 "./util/configlexer.lex"
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
YY_BREAK
case 165:
YY_RULE_SETUP
#line 379 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED) }
YY_BREAK
case 166:
YY_RULE_SETUP
#line 380 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) }
YY_BREAK
case 167:
YY_RULE_SETUP
#line 381 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) }
YY_BREAK
case 168:
YY_RULE_SETUP
#line 382 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_REPLY_TTL) }
YY_BREAK
case 169:
YY_RULE_SETUP
#line 383 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_CLIENT_TIMEOUT) }
YY_BREAK
case 170:
YY_RULE_SETUP
#line 384 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAKE_DSA) }
YY_BREAK
case 171:
YY_RULE_SETUP
#line 385 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAKE_SHA1) }
YY_BREAK
case 172:
YY_RULE_SETUP
#line 386 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
YY_BREAK
case 173:
YY_RULE_SETUP
#line 387 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
YY_BREAK
case 174:
YY_RULE_SETUP
#line 388 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
YY_BREAK
case 175:
YY_RULE_SETUP
#line 389 "./util/configlexer.lex"
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
YY_BREAK
case 176:
YY_RULE_SETUP
#line 390 "./util/configlexer.lex"
{
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
YY_BREAK
case 177:
YY_RULE_SETUP
#line 392 "./util/configlexer.lex"
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
YY_BREAK
case 178:
YY_RULE_SETUP
#line 393 "./util/configlexer.lex"
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
YY_BREAK
case 179:
YY_RULE_SETUP
#line 394 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEEP_MISSING) }
YY_BREAK
case 180:
YY_RULE_SETUP
#line 395 "./util/configlexer.lex"
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
YY_BREAK
case 181:
YY_RULE_SETUP
#line 396 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSLOG) }
YY_BREAK
case 182:
YY_RULE_SETUP
#line 397 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_IDENTITY) }
YY_BREAK
case 183:
YY_RULE_SETUP
#line 398 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
YY_BREAK
case 184:
YY_RULE_SETUP
#line 399 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_QUERIES) }
YY_BREAK
case 185:
YY_RULE_SETUP
#line 400 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_REPLIES) }
YY_BREAK
case 186:
YY_RULE_SETUP
#line 401 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TAG_QUERYREPLY) }
YY_BREAK
case 187:
YY_RULE_SETUP
#line 402 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_LOCAL_ACTIONS) }
YY_BREAK
case 188:
YY_RULE_SETUP
#line 403 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_SERVFAIL) }
YY_BREAK
case 189:
YY_RULE_SETUP
#line 404 "./util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE) }
YY_BREAK
case 190:
YY_RULE_SETUP
#line 405 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA) }
YY_BREAK
case 191:
YY_RULE_SETUP
#line 406 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
YY_BREAK
case 192:
YY_RULE_SETUP
#line 407 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
YY_BREAK
case 193:
YY_RULE_SETUP
#line 408 "./util/configlexer.lex"
{ YDVAR(1, VAR_INSECURE_LAN_ZONES) }
YY_BREAK
case 194:
YY_RULE_SETUP
#line 409 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
YY_BREAK
case 195:
YY_RULE_SETUP
#line 410 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
YY_BREAK
case 196:
YY_RULE_SETUP
#line 411 "./util/configlexer.lex"
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
YY_BREAK
case 197:
YY_RULE_SETUP
#line 412 "./util/configlexer.lex"
{ YDVAR(1, VAR_SHM_ENABLE) }
YY_BREAK
case 198:
YY_RULE_SETUP
#line 413 "./util/configlexer.lex"
{ YDVAR(1, VAR_SHM_KEY) }
YY_BREAK
case 199:
YY_RULE_SETUP
#line 414 "./util/configlexer.lex"
{ YDVAR(0, VAR_REMOTE_CONTROL) }
YY_BREAK
case 200:
YY_RULE_SETUP
#line 415 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_ENABLE) }
YY_BREAK
case 201:
YY_RULE_SETUP
#line 416 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
YY_BREAK
case 202:
YY_RULE_SETUP
#line 417 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_PORT) }
YY_BREAK
case 203:
YY_RULE_SETUP
#line 418 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
YY_BREAK
case 204:
YY_RULE_SETUP
#line 419 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
YY_BREAK
case 205:
YY_RULE_SETUP
#line 420 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
YY_BREAK
case 206:
YY_RULE_SETUP
#line 421 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
YY_BREAK
case 207:
YY_RULE_SETUP
#line 422 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
YY_BREAK
case 208:
YY_RULE_SETUP
#line 423 "./util/configlexer.lex"
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
YY_BREAK
case 209:
YY_RULE_SETUP
#line 424 "./util/configlexer.lex"
{ YDVAR(0, VAR_PYTHON) }
YY_BREAK
case 210:
YY_RULE_SETUP
#line 425 "./util/configlexer.lex"
{ YDVAR(1, VAR_DYNLIB_FILE) }
YY_BREAK
case 211:
YY_RULE_SETUP
#line 426 "./util/configlexer.lex"
{ YDVAR(0, VAR_DYNLIB) }
YY_BREAK
case 212:
YY_RULE_SETUP
#line 427 "./util/configlexer.lex"
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
YY_BREAK
case 213:
YY_RULE_SETUP
#line 428 "./util/configlexer.lex"
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
YY_BREAK
case 214:
YY_RULE_SETUP
#line 429 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
YY_BREAK
case 215:
YY_RULE_SETUP
#line 430 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) }
YY_BREAK
case 216:
YY_RULE_SETUP
#line 431 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
YY_BREAK
case 217:
YY_RULE_SETUP
#line 432 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_PREFIX) }
YY_BREAK
case 218:
YY_RULE_SETUP
#line 433 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
YY_BREAK
case 219:
YY_RULE_SETUP
#line 434 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_IGNORE_AAAA) }
YY_BREAK
case 220:
YY_RULE_SETUP
#line 435 "./util/configlexer.lex"
{ YDVAR(1, VAR_DEFINE_TAG) }
YY_BREAK
case 221:
YY_RULE_SETUP
#line 436 "./util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE_TAG) }
YY_BREAK
case 222:
YY_RULE_SETUP
#line 437 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) }
YY_BREAK
case 223:
YY_RULE_SETUP
#line 438 "./util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) }
YY_BREAK
case 224:
YY_RULE_SETUP
#line 439 "./util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) }
YY_BREAK
case 225:
YY_RULE_SETUP
#line 440 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
YY_BREAK
case 226:
YY_RULE_SETUP
#line 441 "./util/configlexer.lex"
{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
YY_BREAK
case 227:
YY_RULE_SETUP
#line 442 "./util/configlexer.lex"
{ YDVAR(0, VAR_DNSTAP) }
YY_BREAK
case 228:
YY_RULE_SETUP
#line 443 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
YY_BREAK
case 229:
YY_RULE_SETUP
#line 444 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_BIDIRECTIONAL) }
YY_BREAK
case 230:
YY_RULE_SETUP
#line 445 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
YY_BREAK
case 231:
YY_RULE_SETUP
#line 446 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IP) }
YY_BREAK
case 232:
YY_RULE_SETUP
#line 447 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_TLS) }
YY_BREAK
case 233:
YY_RULE_SETUP
#line 448 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_TLS_SERVER_NAME) }
YY_BREAK
case 234:
YY_RULE_SETUP
#line 449 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_TLS_CERT_BUNDLE) }
YY_BREAK
case 235:
YY_RULE_SETUP
#line 450 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_TLS_CLIENT_KEY_FILE) }
YY_BREAK
case 236:
YY_RULE_SETUP
#line 452 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_TLS_CLIENT_CERT_FILE) }
YY_BREAK
case 237:
YY_RULE_SETUP
#line 454 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
YY_BREAK
case 238:
YY_RULE_SETUP
#line 455 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
YY_BREAK
case 239:
YY_RULE_SETUP
#line 456 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
YY_BREAK
case 240:
YY_RULE_SETUP
#line 457 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_VERSION) }
YY_BREAK
case 241:
YY_RULE_SETUP
#line 458 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
YY_BREAK
case 242:
YY_RULE_SETUP
#line 460 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
YY_BREAK
case 243:
YY_RULE_SETUP
#line 462 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
YY_BREAK
case 244:
YY_RULE_SETUP
#line 464 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
YY_BREAK
case 245:
YY_RULE_SETUP
#line 466 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
YY_BREAK
case 246:
YY_RULE_SETUP
#line 468 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
YY_BREAK
case 247:
YY_RULE_SETUP
#line 470 "./util/configlexer.lex"
{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) }
YY_BREAK
case 248:
YY_RULE_SETUP
#line 471 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT) }
YY_BREAK
case 249:
YY_RULE_SETUP
#line 472 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT) }
YY_BREAK
case 250:
YY_RULE_SETUP
#line 473 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) }
YY_BREAK
case 251:
YY_RULE_SETUP
#line 474 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
YY_BREAK
case 252:
YY_RULE_SETUP
#line 475 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) }
YY_BREAK
case 253:
YY_RULE_SETUP
#line 476 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
YY_BREAK
case 254:
YY_RULE_SETUP
#line 477 "./util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
YY_BREAK
case 255:
YY_RULE_SETUP
#line 478 "./util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
YY_BREAK
case 256:
YY_RULE_SETUP
#line 479 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) }
YY_BREAK
case 257:
YY_RULE_SETUP
#line 480 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
YY_BREAK
case 258:
YY_RULE_SETUP
#line 481 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOW_RTT) }
YY_BREAK
case 259:
YY_RULE_SETUP
#line 482 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_NUM) }
YY_BREAK
case 260:
YY_RULE_SETUP
#line 483 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 261:
YY_RULE_SETUP
#line 484 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 262:
YY_RULE_SETUP
#line 485 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 263:
YY_RULE_SETUP
#line 486 "./util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP_TAG) }
YY_BREAK
case 264:
YY_RULE_SETUP
#line 487 "./util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP) }
YY_BREAK
case 265:
YY_RULE_SETUP
#line 488 "./util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP_DATA) }
YY_BREAK
case 266:
YY_RULE_SETUP
#line 489 "./util/configlexer.lex"
{ YDVAR(0, VAR_DNSCRYPT) }
YY_BREAK
case 267:
YY_RULE_SETUP
#line 490 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_ENABLE) }
YY_BREAK
case 268:
YY_RULE_SETUP
#line 491 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PORT) }
YY_BREAK
case 269:
YY_RULE_SETUP
#line 492 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) }
YY_BREAK
case 270:
YY_RULE_SETUP
#line 493 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) }
YY_BREAK
case 271:
YY_RULE_SETUP
#line 494 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) }
YY_BREAK
case 272:
YY_RULE_SETUP
#line 495 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) }
YY_BREAK
case 273:
YY_RULE_SETUP
#line 496 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) }
YY_BREAK
case 274:
YY_RULE_SETUP
#line 498 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) }
YY_BREAK
case 275:
YY_RULE_SETUP
#line 500 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) }
YY_BREAK
case 276:
YY_RULE_SETUP
#line 501 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) }
YY_BREAK
case 277:
YY_RULE_SETUP
#line 502 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_ENABLED) }
YY_BREAK
case 278:
YY_RULE_SETUP
#line 503 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) }
YY_BREAK
case 279:
YY_RULE_SETUP
#line 504 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_HOOK) }
YY_BREAK
case 280:
YY_RULE_SETUP
#line 505 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_MAX_TTL) }
YY_BREAK
case 281:
YY_RULE_SETUP
#line 506 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_WHITELIST) }
YY_BREAK
case 282:
YY_RULE_SETUP
#line 507 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_STRICT) }
YY_BREAK
case 283:
YY_RULE_SETUP
#line 508 "./util/configlexer.lex"
{ YDVAR(0, VAR_CACHEDB) }
YY_BREAK
case 284:
YY_RULE_SETUP
#line 509 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_BACKEND) }
YY_BREAK
case 285:
YY_RULE_SETUP
#line 510 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_SECRETSEED) }
YY_BREAK
case 286:
YY_RULE_SETUP
#line 511 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISHOST) }
YY_BREAK
case 287:
YY_RULE_SETUP
#line 512 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISPORT) }
YY_BREAK
case 288:
YY_RULE_SETUP
#line 513 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) }
YY_BREAK
case 289:
YY_RULE_SETUP
#line 514 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISEXPIRERECORDS) }
YY_BREAK
case 290:
YY_RULE_SETUP
#line 515 "./util/configlexer.lex"
{ YDVAR(0, VAR_IPSET) }
YY_BREAK
case 291:
YY_RULE_SETUP
#line 516 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSET_NAME_V4) }
YY_BREAK
case 292:
YY_RULE_SETUP
#line 517 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSET_NAME_V6) }
YY_BREAK
case 293:
YY_RULE_SETUP
#line 518 "./util/configlexer.lex"
{ YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) }
YY_BREAK
case 294:
YY_RULE_SETUP
#line 519 "./util/configlexer.lex"
{ YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
YY_BREAK
case 295:
/* rule 295 can match eol */
YY_RULE_SETUP
#line 520 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
/* Quoted strings. Strip leading and ending quotes */
case 296:
YY_RULE_SETUP
#line 523 "./util/configlexer.lex"
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
YY_BREAK
case YY_STATE_EOF(quotedstring):
#line 524 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 297:
YY_RULE_SETUP
#line 529 "./util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 298:
/* rule 298 can match eol */
YY_RULE_SETUP
#line 530 "./util/configlexer.lex"
{ yyerror("newline inside quoted string, no end \"");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 299:
YY_RULE_SETUP
#line 532 "./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 300:
YY_RULE_SETUP
#line 544 "./util/configlexer.lex"
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
YY_BREAK
case YY_STATE_EOF(singlequotedstr):
#line 545 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 301:
YY_RULE_SETUP
#line 550 "./util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 302:
/* rule 302 can match eol */
YY_RULE_SETUP
#line 551 "./util/configlexer.lex"
{ yyerror("newline inside quoted string, no end '");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 303:
YY_RULE_SETUP
#line 553 "./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 304:
YY_RULE_SETUP
#line 565 "./util/configlexer.lex"
{
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
YY_BREAK
case YY_STATE_EOF(include):
#line 567 "./util/configlexer.lex"
{
yyerror("EOF inside include directive");
BEGIN(inc_prev);
}
YY_BREAK
case 305:
YY_RULE_SETUP
#line 571 "./util/configlexer.lex"
{ LEXOUT(("ISP ")); /* ignore */ }
YY_BREAK
case 306:
/* rule 306 can match eol */
YY_RULE_SETUP
#line 572 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
YY_BREAK
case 307:
YY_RULE_SETUP
#line 573 "./util/configlexer.lex"
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
YY_BREAK
case 308:
YY_RULE_SETUP
#line 574 "./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 579 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
case 309:
YY_RULE_SETUP
#line 583 "./util/configlexer.lex"
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 310:
/* rule 310 can match eol */
YY_RULE_SETUP
#line 584 "./util/configlexer.lex"
{ yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev); }
YY_BREAK
case 311:
YY_RULE_SETUP
#line 586 "./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 592 "./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 312:
YY_RULE_SETUP
#line 606 "./util/configlexer.lex"
{
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include_toplevel);
}
YY_BREAK
case YY_STATE_EOF(include_toplevel):
#line 609 "./util/configlexer.lex"
{
yyerror("EOF inside include_toplevel directive");
BEGIN(inc_prev);
}
YY_BREAK
case 313:
YY_RULE_SETUP
#line 613 "./util/configlexer.lex"
{ LEXOUT(("ITSP ")); /* ignore */ }
YY_BREAK
case 314:
/* rule 314 can match eol */
YY_RULE_SETUP
#line 614 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
case 315:
YY_RULE_SETUP
#line 615 "./util/configlexer.lex"
{ LEXOUT(("ITQS ")); BEGIN(include_toplevel_quoted); }
YY_BREAK
case 316:
YY_RULE_SETUP
#line 616 "./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 622 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
case 317:
YY_RULE_SETUP
#line 626 "./util/configlexer.lex"
{ LEXOUT(("ITSTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 318:
/* rule 318 can match eol */
YY_RULE_SETUP
#line 627 "./util/configlexer.lex"
{
yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev);
}
YY_BREAK
case 319:
YY_RULE_SETUP
#line 631 "./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 320:
YY_RULE_SETUP
#line 639 "./util/configlexer.lex"
{ LEXOUT(("unquotedstr(%s) ", yytext));
if(--num_args == 0) { BEGIN(INITIAL); }
yylval.str = strdup(yytext); return STRING_ARG; }
YY_BREAK
case 321:
YY_RULE_SETUP
#line 643 "./util/configlexer.lex"
{
ub_c_error_msg("unknown keyword '%s'", yytext);
}
YY_BREAK
case 322:
YY_RULE_SETUP
#line 647 "./util/configlexer.lex"
{
ub_c_error_msg("stray '%s'", yytext);
}
YY_BREAK
case 323:
YY_RULE_SETUP
#line 651 "./util/configlexer.lex"
ECHO;
YY_BREAK
#line 5075 "<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 >= 3137 )
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 >= 3137 )
yy_c = yy_meta[yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
yy_is_jam = (yy_current_state == 3136);
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 651 "./util/configlexer.lex"