2009-03-24 08:47:56 -04:00
|
|
|
#include "config.h"
|
2007-10-18 18:49:08 -04:00
|
|
|
#include "util/configyyrename.h"
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#line 3 "<stdout>"
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#define YY_INT_ALIGNED short int
|
|
|
|
|
|
|
|
|
|
/* A lexical scanner generated by flex */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#define FLEX_SCANNER
|
|
|
|
|
#define YY_FLEX_MAJOR_VERSION 2
|
2016-10-20 03:46:35 -04:00
|
|
|
#define YY_FLEX_MINOR_VERSION 6
|
2018-10-25 04:53:50 -04:00
|
|
|
#define YY_FLEX_SUBMINOR_VERSION 4
|
2015-12-01 03:11:48 -05:00
|
|
|
#if YY_FLEX_SUBMINOR_VERSION > 0
|
|
|
|
|
#define FLEX_BETA
|
|
|
|
|
#endif
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* First, we deal with platform-specific or compiler-specific issues. */
|
|
|
|
|
|
|
|
|
|
/* begin standard C headers. */
|
2007-10-18 18:49:08 -04:00
|
|
|
#include <stdio.h>
|
2015-12-01 03:11:48 -05:00
|
|
|
#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. */
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
2007-10-19 04:37:27 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* 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)
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
2015-12-01 03:11:48 -05:00
|
|
|
#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)
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
2013-04-15 03:57:08 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
#ifndef SIZE_MAX
|
|
|
|
|
#define SIZE_MAX (~(size_t)0)
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#endif /* ! C99 */
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#endif /* ! FLEXINT_H */
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
/* begin standard C++ headers. */
|
|
|
|
|
|
2017-07-24 05:04:18 -04:00
|
|
|
/* TODO: this is always defined, so inline it */
|
2017-06-16 03:56:28 -04:00
|
|
|
#define yyconst const
|
2017-07-24 05:04:18 -04:00
|
|
|
|
|
|
|
|
#if defined(__GNUC__) && __GNUC__ >= 3
|
|
|
|
|
#define yynoreturn __attribute__((__noreturn__))
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2017-07-24 05:04:18 -04:00
|
|
|
#define yynoreturn
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Returned upon end-of-file. */
|
|
|
|
|
#define YY_NULL 0
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
/* Promotes a possibly negative, possibly signed char to an
|
|
|
|
|
* integer in range [0..255] for use as an array index.
|
2007-10-18 18:49:08 -04:00
|
|
|
*/
|
2018-10-25 04:53:50 -04:00
|
|
|
#define YY_SC_TO_UI(c) ((YY_CHAR) (c))
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
#define BEGIN (yy_start) = 1 + 2 *
|
2007-10-18 18:49:08 -04:00
|
|
|
/* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
#define YY_START (((yy_start) - 1) / 2)
|
2007-10-18 18:49:08 -04:00
|
|
|
#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". */
|
2018-10-25 04:53:50 -04:00
|
|
|
#define YY_NEW_FILE yyrestart( yyin )
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_END_OF_BUFFER_CHAR 0
|
|
|
|
|
|
|
|
|
|
/* Size of default input buffer. */
|
2015-12-01 03:11:48 -05:00
|
|
|
#ifndef YY_BUF_SIZE
|
2016-06-13 02:57:28 -04:00
|
|
|
#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
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_BUF_SIZE 16384
|
2016-06-13 02:57:28 -04:00
|
|
|
#endif /* __ia64__ */
|
2015-12-01 03:11:48 -05:00
|
|
|
#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))
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
|
|
|
|
|
#define YY_TYPEDEF_YY_BUFFER_STATE
|
2007-10-18 18:49:08 -04:00
|
|
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
2015-12-01 03:11:48 -05:00
|
|
|
#endif
|
|
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
#ifndef YY_TYPEDEF_YY_SIZE_T
|
|
|
|
|
#define YY_TYPEDEF_YY_SIZE_T
|
|
|
|
|
typedef size_t yy_size_t;
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-07-24 05:04:18 -04:00
|
|
|
extern int yyleng;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
extern FILE *yyin, *yyout;
|
|
|
|
|
|
|
|
|
|
#define EOB_ACT_CONTINUE_SCAN 0
|
|
|
|
|
#define EOB_ACT_END_OF_FILE 1
|
|
|
|
|
#define EOB_ACT_LAST_MATCH 2
|
2018-10-25 04:53:50 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#define YY_LESS_LINENO(n)
|
2016-10-20 03:46:35 -04:00
|
|
|
#define YY_LINENO_REWIND_TO(ptr)
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
/* Return all but the first "n" matched characters back to the input stream. */
|
2007-10-18 18:49:08 -04:00
|
|
|
#define yyless(n) \
|
|
|
|
|
do \
|
|
|
|
|
{ \
|
|
|
|
|
/* Undo effects of setting up yytext. */ \
|
2018-10-25 04:53:50 -04:00
|
|
|
int yyless_macro_arg = (n); \
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_LESS_LINENO(yyless_macro_arg);\
|
|
|
|
|
*yy_cp = (yy_hold_char); \
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RESTORE_YY_MORE_OFFSET \
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
|
|
|
|
|
} \
|
|
|
|
|
while ( 0 )
|
2015-12-01 03:11:48 -05:00
|
|
|
#define unput(c) yyunput( c, (yytext_ptr) )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#ifndef YY_STRUCT_YY_BUFFER_STATE
|
|
|
|
|
#define YY_STRUCT_YY_BUFFER_STATE
|
2007-10-18 18:49:08 -04:00
|
|
|
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.
|
|
|
|
|
*/
|
2017-07-24 05:04:18 -04:00
|
|
|
int yy_buf_size;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Number of characters read into yy_ch_buf, not including EOB
|
|
|
|
|
* characters.
|
|
|
|
|
*/
|
2017-07-24 05:04:18 -04:00
|
|
|
int yy_n_chars;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
int yy_bs_lineno; /**< The line count. */
|
|
|
|
|
int yy_bs_column; /**< The column count. */
|
2018-10-25 04:53:50 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Whether to try to fill the input buffer when we reach the
|
|
|
|
|
* end of it.
|
|
|
|
|
*/
|
|
|
|
|
int yy_fill_buffer;
|
|
|
|
|
|
|
|
|
|
int yy_buffer_status;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
#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
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
};
|
2015-12-01 03:11:48 -05:00
|
|
|
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* 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. */
|
2017-07-24 05:04:18 -04:00
|
|
|
static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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".
|
2015-12-01 03:11:48 -05:00
|
|
|
*
|
|
|
|
|
* Returns the top of the stack, or NULL.
|
2007-10-18 18:49:08 -04:00
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
#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)]
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_hold_char holds the character lost when yytext is formed. */
|
|
|
|
|
static char yy_hold_char;
|
2017-07-24 05:04:18 -04:00
|
|
|
static int yy_n_chars; /* number of characters read into yy_ch_buf */
|
|
|
|
|
int yyleng;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Points to current character in buffer. */
|
2017-07-24 05:04:18 -04:00
|
|
|
static char *yy_c_buf_p = NULL;
|
2015-12-01 03:11:48 -05:00
|
|
|
static int yy_init = 0; /* whether we need to initialize */
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
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 );
|
2018-08-30 05:02:29 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
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 )
|
2007-10-19 04:32:36 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
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 );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
void *yyalloc ( yy_size_t );
|
|
|
|
|
void *yyrealloc ( void *, yy_size_t );
|
|
|
|
|
void yyfree ( void * );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#define yy_new_buffer yy_create_buffer
|
|
|
|
|
#define yy_set_interactive(is_interactive) \
|
|
|
|
|
{ \
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! YY_CURRENT_BUFFER ){ \
|
|
|
|
|
yyensure_buffer_stack (); \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
2015-12-01 03:11:48 -05:00
|
|
|
} \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
|
|
|
{ \
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! YY_CURRENT_BUFFER ){\
|
|
|
|
|
yyensure_buffer_stack (); \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
2015-12-01 03:11:48 -05:00
|
|
|
} \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2015-12-01 03:11:48 -05:00
|
|
|
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
|
|
|
|
|
|
|
|
|
|
/* Begin user sect3 */
|
2018-10-25 04:53:50 -04:00
|
|
|
typedef flex_uint8_t YY_CHAR;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2017-07-24 05:04:18 -04:00
|
|
|
FILE *yyin = NULL, *yyout = NULL;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
typedef int yy_state_type;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
extern int yylineno;
|
|
|
|
|
int yylineno = 1;
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
extern char *yytext;
|
2016-10-20 03:46:35 -04:00
|
|
|
#ifdef yytext_ptr
|
|
|
|
|
#undef yytext_ptr
|
|
|
|
|
#endif
|
2007-10-18 18:49:08 -04:00
|
|
|
#define yytext_ptr yytext
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
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 );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Done after the current pattern has been matched and before the
|
|
|
|
|
* corresponding action - sets up yytext.
|
|
|
|
|
*/
|
|
|
|
|
#define YY_DO_BEFORE_ACTION \
|
2015-12-01 03:11:48 -05:00
|
|
|
(yytext_ptr) = yy_bp; \
|
|
|
|
|
(yytext_ptr) -= (yy_more_len); \
|
2017-07-24 05:04:18 -04:00
|
|
|
yyleng = (int) (yy_cp - (yytext_ptr)); \
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_hold_char) = *yy_cp; \
|
2007-10-18 18:49:08 -04:00
|
|
|
*yy_cp = '\0'; \
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = yy_cp;
|
2018-10-25 04:53:50 -04:00
|
|
|
#define YY_NUM_RULES 285
|
|
|
|
|
#define YY_END_OF_BUFFER 286
|
2015-12-01 03:11:48 -05:00
|
|
|
/* 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;
|
|
|
|
|
};
|
2018-10-25 04:53:50 -04:00
|
|
|
static const flex_int16_t yy_accept[2821] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2018-10-25 04:53:50 -04:00
|
|
|
1, 1, 267, 267, 271, 271, 275, 275, 279, 279,
|
|
|
|
|
1, 1, 286, 283, 1, 265, 265, 284, 2, 284,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 267, 268, 268, 269, 284, 271, 272, 272,
|
|
|
|
|
273, 284, 278, 275, 276, 276, 277, 284, 279, 280,
|
|
|
|
|
280, 281, 284, 282, 266, 2, 270, 284, 282, 283,
|
|
|
|
|
0, 1, 2, 2, 2, 2, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 267,
|
|
|
|
|
0, 271, 0, 278, 0, 275, 279, 0, 282, 0,
|
|
|
|
|
2, 2, 282, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 282, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 110, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 282, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 92, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 8, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 115, 283, 282, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 282, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 51,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 208, 283, 14, 15, 283, 18,
|
|
|
|
|
17, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 109, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 193, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 3, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 282, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 258, 283, 283, 257, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 274, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 54, 283, 232, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 55, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 182, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 20, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 134, 283, 283,
|
|
|
|
|
274, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 90, 283, 283, 283, 283, 283, 283, 283, 240,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 155, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 133, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 89, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 31,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 32, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 52,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 108,
|
|
|
|
|
283, 283, 283, 283, 283, 107, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
53, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 156, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 42, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 223,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 46, 283, 47, 283, 283, 283,
|
|
|
|
|
283, 93, 283, 94, 283, 283, 283, 283, 91, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 7, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 201, 283, 283, 283, 283, 136, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 43, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 174, 283, 173, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 16,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 56, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 181, 283, 283, 283, 283, 283, 96, 283, 95,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 166, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 116, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 74, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 78, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
50, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 169, 170,
|
|
|
|
|
283, 283, 234, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 6, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 238, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
259, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 40,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 162, 283,
|
|
|
|
|
283, 283, 111, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 186, 283, 163, 283, 283, 283, 198,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 41, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 113, 101, 283, 102,
|
|
|
|
|
283, 283, 283, 100, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 131, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 222, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 164, 283, 283, 283, 283, 283, 167,
|
|
|
|
|
283, 172, 283, 283, 283, 283, 197, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 88, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 48, 283, 283, 283, 25, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 19, 283, 283, 283,
|
|
|
|
|
283, 26, 35, 283, 141, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 63, 65, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 242, 283,
|
|
|
|
|
283, 283, 209, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 103, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 130, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 253, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 135, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 192,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 262, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 152, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 97, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 147, 283, 157, 283, 283, 283, 283,
|
|
|
|
|
283, 119, 283, 283, 283, 283, 283, 84, 283, 283,
|
|
|
|
|
283, 283, 184, 283, 283, 283, 283, 283, 283, 199,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 214, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 112, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 151, 283, 283, 283, 283, 283, 66,
|
|
|
|
|
67, 283, 283, 283, 283, 283, 49, 283, 283, 283,
|
|
|
|
|
283, 283, 73, 158, 283, 175, 283, 202, 283, 168,
|
|
|
|
|
235, 283, 283, 283, 283, 283, 59, 283, 160, 283,
|
|
|
|
|
283, 283, 283, 283, 9, 283, 283, 283, 87, 283,
|
|
|
|
|
283, 283, 283, 227, 283, 283, 283, 183, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 150,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
137, 283, 241, 283, 283, 283, 283, 213, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 194, 283, 283, 283,
|
|
|
|
|
283, 233, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 256, 283, 159, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 58, 60, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 86, 283, 283, 283, 283, 225,
|
|
|
|
|
283, 283, 283, 237, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 188, 33, 27, 29, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 34, 28, 30, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 83, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
190, 187, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 57, 283, 283, 114,
|
|
|
|
|
283, 104, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
132, 13, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 251, 283, 254, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 12, 283, 283, 21, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
231, 283, 283, 283, 239, 283, 61, 283, 196, 283,
|
|
|
|
|
283, 189, 283, 283, 283, 283, 283, 283, 22, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
146, 145, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 191, 185, 283, 200, 283, 283, 243, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 68, 283, 283, 283, 226, 283, 283, 283,
|
|
|
|
|
283, 171, 283, 283, 283, 195, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 260, 261, 143, 62, 283, 283,
|
|
|
|
|
|
|
|
|
|
153, 283, 283, 98, 99, 283, 283, 283, 138, 283,
|
|
|
|
|
140, 283, 176, 283, 283, 283, 144, 283, 283, 203,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 121, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 210,
|
|
|
|
|
283, 283, 283, 23, 283, 236, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 177, 283, 283,
|
|
|
|
|
224, 283, 255, 283, 283, 283, 283, 283, 44, 283,
|
|
|
|
|
283, 283, 283, 4, 283, 283, 120, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 206, 36, 37, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 244, 283, 283, 283, 283, 283, 283, 212, 283,
|
|
|
|
|
283, 283, 180, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 71, 283, 45, 230, 283, 207, 283, 283,
|
|
|
|
|
283, 283, 11, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
178, 75, 283, 39, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
149, 283, 283, 283, 283, 283, 123, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 211, 117, 283, 283,
|
|
|
|
|
105, 106, 283, 283, 283, 77, 81, 76, 283, 69,
|
|
|
|
|
283, 283, 283, 283, 283, 10, 283, 283, 283, 228,
|
|
|
|
|
283, 283, 264, 38, 283, 283, 283, 148, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 82, 80, 283, 70,
|
|
|
|
|
252, 283, 283, 283, 283, 283, 283, 283, 165, 283,
|
|
|
|
|
283, 283, 179, 283, 283, 283, 283, 283, 283, 139,
|
|
|
|
|
64, 283, 283, 283, 283, 283, 245, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 118, 283, 79, 124, 125, 128,
|
|
|
|
|
129, 126, 127, 72, 283, 229, 283, 142, 283, 283,
|
|
|
|
|
283, 283, 205, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 154, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 85, 283, 204,
|
|
|
|
|
283, 221, 249, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 5, 283, 283, 283, 250, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 24, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
122, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
161, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
246, 283, 283, 283, 283, 283, 283, 283, 283, 283,
|
|
|
|
|
283, 283, 283, 283, 283, 283, 283, 283, 263, 283,
|
|
|
|
|
283, 217, 283, 283, 283, 283, 283, 247, 283, 283,
|
|
|
|
|
|
|
|
|
|
283, 283, 283, 283, 248, 283, 283, 283, 215, 283,
|
|
|
|
|
218, 219, 283, 283, 283, 283, 283, 216, 220, 0
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
static const YY_CHAR yy_ec[256] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 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,
|
2007-11-28 03:10:45 -05:00
|
|
|
1, 2, 1, 5, 6, 1, 1, 1, 7, 1,
|
2017-03-09 08:18:08 -05:00
|
|
|
1, 1, 1, 1, 8, 1, 1, 1, 9, 1,
|
|
|
|
|
10, 11, 1, 12, 1, 1, 1, 13, 1, 1,
|
2007-10-18 18:49:08 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2017-03-09 08:18:08 -05:00
|
|
|
1, 14, 1, 1, 1, 1, 15, 16, 17, 18,
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2017-03-09 08:18:08 -05:00
|
|
|
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,
|
2007-10-18 18:49:08 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1
|
|
|
|
|
} ;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
static const YY_CHAR yy_meta[41] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2009-11-30 08:07:39 -05:00
|
|
|
1, 2, 3, 4, 5, 1, 6, 1, 1, 1,
|
2017-03-09 08:18:08 -05:00
|
|
|
1, 1, 7, 1, 1, 1, 1, 1, 1, 1,
|
2007-10-18 18:49:08 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2017-03-09 08:18:08 -05:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
static const flex_int16_t yy_base[2835] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2017-03-09 08:18:08 -05:00
|
|
|
0, 0, 38, 41, 44, 46, 59, 65, 71, 77,
|
2018-10-25 04:53:50 -04:00
|
|
|
90, 112, 1508, 1461, 81, 5511, 5511, 5511, 96, 52,
|
2018-04-17 09:23:35 -04:00
|
|
|
106, 63, 107, 111, 70, 128, 130, 133, 57, 88,
|
|
|
|
|
76, 135, 141, 117, 148, 145, 160, 164, 185, 176,
|
2018-10-25 04:53:50 -04:00
|
|
|
191, 152, 1330, 5511, 5511, 5511, 107, 1275, 5511, 5511,
|
|
|
|
|
5511, 165, 1150, 1130, 5511, 5511, 5511, 211, 1086, 5511,
|
|
|
|
|
5511, 5511, 180, 1030, 5511, 217, 5511, 221, 168, 985,
|
2018-04-17 09:23:35 -04:00
|
|
|
225, 189, 0, 232, 0, 0, 226, 189, 85, 221,
|
2018-10-25 04:07:37 -04:00
|
|
|
114, 227, 234, 156, 219, 235, 239, 236, 238, 132,
|
|
|
|
|
246, 242, 241, 252, 244, 247, 266, 243, 258, 273,
|
|
|
|
|
|
|
|
|
|
275, 187, 277, 278, 267, 274, 280, 283, 287, 289,
|
|
|
|
|
295, 297, 298, 299, 304, 305, 306, 311, 307, 315,
|
|
|
|
|
309, 313, 330, 318, 329, 325, 320, 335, 336, 338,
|
2018-10-25 04:53:50 -04:00
|
|
|
339, 340, 343, 342, 346, 347, 349, 350, 358, 975,
|
|
|
|
|
371, 889, 375, 697, 383, 557, 369, 373, 198, 387,
|
2018-10-25 04:07:37 -04:00
|
|
|
391, 0, 383, 385, 393, 370, 389, 392, 257, 395,
|
|
|
|
|
394, 396, 401, 397, 399, 415, 398, 405, 418, 420,
|
|
|
|
|
424, 421, 428, 412, 432, 433, 434, 436, 445, 443,
|
|
|
|
|
448, 426, 449, 450, 451, 452, 454, 460, 458, 455,
|
2018-10-25 04:53:50 -04:00
|
|
|
467, 476, 471, 479, 487, 474, 488, 490, 477, 492,
|
|
|
|
|
|
|
|
|
|
491, 495, 503, 493, 501, 502, 504, 505, 506, 507,
|
|
|
|
|
509, 512, 510, 516, 513, 518, 520, 521, 523, 526,
|
|
|
|
|
536, 532, 540, 533, 535, 542, 547, 552, 543, 560,
|
|
|
|
|
544, 557, 564, 561, 565, 566, 567, 569, 570, 572,
|
|
|
|
|
573, 575, 571, 577, 584, 586, 583, 587, 599, 589,
|
|
|
|
|
594, 596, 597, 598, 601, 609, 602, 610, 615, 620,
|
|
|
|
|
607, 618, 621, 613, 623, 624, 628, 630, 637, 633,
|
|
|
|
|
640, 641, 642, 644, 645, 649, 656, 635, 651, 652,
|
|
|
|
|
653, 657, 659, 660, 663, 661, 670, 664, 672, 668,
|
|
|
|
|
683, 681, 674, 687, 676, 690, 688, 689, 695, 700,
|
|
|
|
|
|
|
|
|
|
691, 709, 702, 714, 715, 716, 718, 719, 721, 724,
|
|
|
|
|
722, 725, 733, 730, 726, 734, 736, 743, 739, 741,
|
|
|
|
|
750, 747, 753, 757, 749, 765, 761, 772, 769, 776,
|
|
|
|
|
798, 755, 756, 767, 773, 5511, 788, 778, 822, 780,
|
|
|
|
|
793, 806, 790, 783, 794, 803, 811, 808, 815, 816,
|
|
|
|
|
810, 812, 829, 748, 828, 831, 832, 835, 839, 849,
|
|
|
|
|
844, 846, 850, 853, 858, 855, 856, 859, 863, 857,
|
|
|
|
|
865, 868, 869, 871, 870, 875, 885, 876, 878, 882,
|
|
|
|
|
887, 888, 890, 892, 903, 896, 897, 913, 904, 909,
|
|
|
|
|
914, 911, 917, 919, 921, 922, 923, 928, 930, 931,
|
|
|
|
|
|
|
|
|
|
926, 932, 933, 939, 940, 942, 943, 946, 945, 947,
|
|
|
|
|
948, 955, 958, 951, 960, 961, 5511, 965, 968, 969,
|
|
|
|
|
970, 971, 972, 5511, 974, 973, 976, 986, 978, 988,
|
|
|
|
|
995, 983, 996, 1005, 998, 1003, 1008, 1001, 1009, 1010,
|
|
|
|
|
1012, 1013, 1011, 1019, 1020, 1021, 1022, 1042, 1024, 1023,
|
|
|
|
|
1027, 1028, 1029, 1035, 1046, 1040, 1049, 1036, 1057, 1059,
|
|
|
|
|
1060, 1067, 1063, 1071, 1065, 1073, 1069, 1075, 1077, 1078,
|
|
|
|
|
1079, 1080, 1082, 1081, 1088, 1089, 5511, 1093, 1094, 1105,
|
|
|
|
|
1096, 1104, 1106, 1107, 1109, 1110, 1111, 1113, 1112, 1122,
|
|
|
|
|
1117, 1129, 1120, 1133, 1131, 1134, 1135, 1136, 1139, 1138,
|
|
|
|
|
|
|
|
|
|
1145, 1140, 1148, 1146, 1153, 1158, 1166, 1163, 1168, 1171,
|
|
|
|
|
1155, 1169, 1170, 1173, 1174, 1177, 1178, 1179, 1181, 1184,
|
|
|
|
|
1191, 1186, 1187, 1189, 1193, 1201, 1198, 1196, 1204, 1197,
|
|
|
|
|
1208, 1199, 1206, 1214, 1218, 1220, 1227, 1222, 1223, 1224,
|
|
|
|
|
1225, 1233, 1229, 1237, 1238, 1239, 1240, 1241, 1243, 1246,
|
|
|
|
|
1244, 1248, 1249, 1247, 1257, 1254, 1262, 1266, 1267, 1268,
|
|
|
|
|
1270, 1277, 1273, 1280, 1276, 1282, 1289, 1281, 1285, 1290,
|
|
|
|
|
1297, 1292, 1293, 1295, 1296, 1307, 1303, 1308, 1318, 1304,
|
|
|
|
|
1306, 1319, 1316, 1320, 1323, 1324, 1325, 1326, 1327, 1328,
|
|
|
|
|
1329, 1333, 1334, 1336, 1337, 1339, 1340, 1350, 1346, 1352,
|
|
|
|
|
|
|
|
|
|
1353, 1357, 1358, 1359, 1361, 1363, 1365, 1366, 1367, 1369,
|
|
|
|
|
1370, 1371, 1378, 1374, 1375, 1385, 1386, 1387, 1388, 1391,
|
|
|
|
|
1397, 1399, 1400, 1401, 1404, 1403, 1408, 1406, 1413, 1405,
|
|
|
|
|
1414, 1415, 1419, 1421, 1422, 1426, 1429, 1432, 1427, 5511,
|
|
|
|
|
1423, 1439, 1437, 1440, 1441, 1445, 1446, 1454, 1447, 1449,
|
|
|
|
|
1450, 1451, 1452, 1462, 5511, 1458, 5511, 5511, 1460, 5511,
|
|
|
|
|
5511, 1466, 1459, 1463, 1478, 1485, 1487, 1469, 1483, 1489,
|
|
|
|
|
1490, 1497, 1511, 1493, 1495, 1496, 1492, 1499, 1505, 1500,
|
|
|
|
|
1508, 1506, 1519, 1522, 1525, 1526, 1532, 1524, 1533, 1535,
|
|
|
|
|
1537, 1540, 1538, 1541, 1543, 1547, 1544, 1548, 1550, 1549,
|
|
|
|
|
|
|
|
|
|
1551, 1554, 1569, 5511, 1555, 1570, 1573, 1572, 1580, 1575,
|
|
|
|
|
1576, 1579, 1581, 1565, 1585, 1584, 1586, 1593, 1588, 1594,
|
|
|
|
|
1601, 1596, 5511, 1598, 1599, 1604, 1603, 1610, 1606, 1600,
|
|
|
|
|
1616, 1617, 1619, 1620, 1621, 1622, 1624, 5511, 1623, 1629,
|
|
|
|
|
1626, 1631, 1632, 1637, 1638, 1633, 1640, 1642, 1644, 1643,
|
|
|
|
|
1645, 1656, 1654, 1659, 1649, 1652, 1667, 1662, 1665, 1675,
|
|
|
|
|
1669, 1672, 1677, 1678, 1679, 1680, 1688, 1685, 1690, 1683,
|
|
|
|
|
1692, 1687, 1693, 1694, 1702, 1695, 1704, 1715, 1708, 1710,
|
|
|
|
|
1713, 1723, 1718, 1720, 1721, 1722, 1725, 1729, 1730, 1731,
|
|
|
|
|
1733, 1736, 1735, 1741, 5511, 1737, 1743, 5511, 1742, 1745,
|
|
|
|
|
|
|
|
|
|
1767, 1746, 1748, 1749, 1751, 1754, 1759, 1753, 1771, 1769,
|
|
|
|
|
1773, 1781, 1777, 1782, 1784, 1789, 1790, 1792, 1793, 1796,
|
|
|
|
|
1797, 1807, 1808, 1812, 1805, 1815, 1798, 1813, 1816, 1835,
|
|
|
|
|
1817, 1818, 1819, 1825, 1821, 1826, 1830, 1828, 1827, 1839,
|
|
|
|
|
1845, 1847, 5511, 1856, 1857, 1840, 1852, 1868, 1848, 1863,
|
|
|
|
|
1864, 1866, 1867, 1876, 1869, 1871, 1872, 1874, 1879, 1880,
|
|
|
|
|
1884, 1886, 1888, 1881, 1891, 5511, 1889, 5511, 1892, 1898,
|
|
|
|
|
1901, 1899, 1903, 1902, 1904, 1907, 1910, 1914, 1924, 1922,
|
|
|
|
|
1919, 5511, 1911, 1934, 1935, 1926, 1930, 1931, 1937, 1940,
|
|
|
|
|
1941, 1948, 1938, 1949, 1947, 1945, 1952, 1954, 1946, 1960,
|
|
|
|
|
|
|
|
|
|
1963, 1961, 5511, 1964, 1967, 1969, 1977, 1979, 1972, 1974,
|
|
|
|
|
1982, 1976, 1980, 1984, 1986, 1987, 1996, 1997, 1988, 1998,
|
|
|
|
|
2001, 2008, 5511, 1995, 2005, 2015, 2011, 2007, 2012, 2014,
|
|
|
|
|
2018, 2020, 2019, 2022, 2029, 2032, 2024, 2028, 2036, 2027,
|
|
|
|
|
2038, 2041, 2044, 2042, 2045, 2043, 2047, 5511, 2048, 2050,
|
|
|
|
|
124, 2051, 2055, 2056, 2058, 2057, 2074, 2059, 2075, 2077,
|
|
|
|
|
2076, 2078, 2082, 2083, 2084, 2085, 2086, 2088, 1758, 2089,
|
|
|
|
|
2091, 5511, 2093, 2094, 2095, 2096, 2099, 2100, 2109, 5511,
|
|
|
|
|
2102, 2112, 2115, 2116, 2061, 2106, 2118, 2121, 2119, 2129,
|
|
|
|
|
2131, 2132, 5511, 2136, 2139, 2140, 2133, 2141, 2143, 2148,
|
|
|
|
|
|
|
|
|
|
2137, 2149, 2150, 2154, 2155, 2156, 2159, 2158, 2160, 2161,
|
|
|
|
|
2162, 2165, 2167, 2172, 2173, 5511, 2184, 2174, 2175, 2176,
|
|
|
|
|
2185, 2186, 2195, 2191, 2193, 2199, 2200, 2213, 2202, 2197,
|
|
|
|
|
2209, 2204, 2211, 2208, 2220, 2219, 2223, 2229, 2233, 2235,
|
|
|
|
|
2225, 2231, 2237, 2227, 2239, 2241, 2242, 2254, 2256, 2252,
|
|
|
|
|
2258, 2259, 2263, 2253, 2261, 5511, 2265, 2266, 2267, 2271,
|
|
|
|
|
2284, 2270, 2282, 2274, 2286, 2289, 2290, 2291, 2293, 2296,
|
|
|
|
|
2297, 2294, 2298, 2300, 2305, 2313, 2302, 2315, 2304, 5511,
|
|
|
|
|
2318, 2319, 2320, 2323, 2326, 2328, 2329, 2331, 2332, 2333,
|
|
|
|
|
2335, 2337, 2338, 2340, 2342, 2343, 2348, 5511, 2355, 2344,
|
|
|
|
|
|
|
|
|
|
2351, 2359, 2361, 2363, 2364, 2362, 2369, 2370, 2371, 5511,
|
|
|
|
|
2378, 2379, 2376, 2388, 2374, 2385, 2386, 2390, 2387, 5511,
|
|
|
|
|
2391, 2392, 2399, 2400, 2395, 5511, 2402, 2398, 2403, 2405,
|
|
|
|
|
2406, 2408, 2409, 2413, 2414, 2416, 2419, 2422, 2425, 2427,
|
|
|
|
|
5511, 2428, 2436, 2431, 2429, 2437, 2440, 2441, 2442, 2450,
|
|
|
|
|
2444, 2451, 2459, 2462, 2452, 2461, 2443, 2464, 2467, 2468,
|
|
|
|
|
2470, 2471, 5511, 2473, 2474, 2476, 2477, 2479, 2481, 2484,
|
|
|
|
|
2495, 2485, 2488, 2490, 2493, 2496, 2498, 2500, 2502, 2501,
|
|
|
|
|
2510, 2512, 2513, 2515, 2516, 2518, 2519, 2526, 2529, 2531,
|
|
|
|
|
2533, 5511, 2536, 2537, 2538, 2525, 2540, 2527, 2544, 2545,
|
|
|
|
|
|
|
|
|
|
2548, 2549, 2550, 2552, 2553, 2562, 2564, 2559, 2569, 2565,
|
|
|
|
|
2567, 2571, 2573, 2574, 2560, 2581, 2577, 2576, 2589, 2585,
|
|
|
|
|
2587, 2596, 2588, 2591, 2595, 2597, 2598, 2599, 2600, 2605,
|
|
|
|
|
2608, 2601, 2618, 2619, 2621, 2609, 2623, 2626, 2627, 5511,
|
|
|
|
|
2630, 2628, 2631, 2634, 2637, 2640, 2642, 2644, 2649, 2638,
|
|
|
|
|
2641, 2652, 2660, 2656, 5511, 2657, 5511, 2661, 2662, 2663,
|
|
|
|
|
2671, 5511, 2669, 5511, 2670, 2677, 2674, 2678, 5511, 2680,
|
|
|
|
|
2666, 2679, 2684, 2681, 2687, 2692, 2698, 2689, 2691, 2693,
|
|
|
|
|
2700, 2695, 2705, 2702, 2704, 2711, 2712, 2713, 2716, 2719,
|
|
|
|
|
2720, 2721, 2722, 5511, 2726, 2723, 2728, 2729, 2731, 2733,
|
|
|
|
|
|
|
|
|
|
2734, 2739, 2736, 2737, 2743, 2746, 2747, 2753, 2754, 2766,
|
|
|
|
|
2750, 2768, 5511, 2761, 2764, 2765, 2771, 5511, 2769, 2772,
|
|
|
|
|
2778, 2780, 2773, 2776, 2782, 2783, 2788, 2790, 2785, 2792,
|
|
|
|
|
2799, 2801, 2791, 2803, 2804, 2809, 2813, 2811, 2814, 2817,
|
|
|
|
|
2825, 2821, 2820, 2822, 2823, 2824, 2827, 2834, 2837, 2836,
|
|
|
|
|
2838, 2835, 2843, 2846, 2847, 2839, 2849, 2850, 2851, 2853,
|
|
|
|
|
2854, 2855, 2862, 2859, 2860, 2861, 2863, 5511, 2872, 2873,
|
|
|
|
|
2876, 2877, 2874, 2882, 2864, 2883, 2885, 2887, 2890, 2886,
|
|
|
|
|
2891, 5511, 2899, 5511, 2892, 2900, 2905, 2909, 2906, 2910,
|
|
|
|
|
2912, 2915, 2916, 2920, 2921, 2922, 2923, 2924, 2927, 2931,
|
|
|
|
|
|
|
|
|
|
2929, 2936, 2945, 2932, 2934, 2937, 2942, 2948, 2949, 5511,
|
|
|
|
|
2950, 2951, 2953, 2957, 2958, 2960, 2962, 2959, 2966, 2970,
|
|
|
|
|
2972, 2980, 5511, 2978, 2982, 2981, 2986, 2989, 2988, 3000,
|
|
|
|
|
2995, 5511, 2987, 2996, 3003, 2998, 3005, 5511, 3004, 5511,
|
|
|
|
|
3002, 3006, 3009, 3013, 3015, 3016, 3018, 3019, 3026, 3023,
|
|
|
|
|
3024, 3027, 3030, 3034, 3037, 3035, 3038, 5511, 3040, 3041,
|
|
|
|
|
3042, 3043, 3050, 3052, 3053, 3054, 5511, 3058, 3060, 3063,
|
|
|
|
|
3064, 3065, 3067, 3069, 3068, 3074, 3078, 3070, 3071, 3085,
|
|
|
|
|
3080, 3081, 3087, 3095, 3097, 3102, 5511, 3098, 3096, 3110,
|
|
|
|
|
3107, 3108, 3109, 3112, 3113, 3114, 3116, 3117, 3118, 3119,
|
|
|
|
|
|
|
|
|
|
3125, 3124, 3121, 3122, 3127, 3130, 3141, 3138, 3129, 3142,
|
|
|
|
|
3072, 3143, 3146, 3151, 3152, 3155, 3157, 3149, 3159, 3170,
|
|
|
|
|
3160, 3162, 3173, 3164, 3180, 3175, 5511, 3182, 3166, 3185,
|
|
|
|
|
3177, 3186, 3188, 3190, 3198, 3193, 3194, 3195, 3203, 3196,
|
|
|
|
|
5511, 3210, 3199, 3217, 3200, 3208, 3224, 3220, 3201, 3222,
|
|
|
|
|
3226, 3227, 3230, 3228, 3232, 3233, 3236, 3237, 5511, 5511,
|
|
|
|
|
3239, 3240, 5511, 3241, 3242, 3251, 3247, 3244, 3252, 3255,
|
|
|
|
|
3259, 3256, 3260, 3258, 3264, 5511, 3266, 3275, 3270, 3272,
|
|
|
|
|
3283, 3287, 3274, 3286, 3276, 3278, 3288, 3289, 3292, 3293,
|
|
|
|
|
3294, 3296, 3305, 3302, 3300, 3304, 5511, 3303, 3306, 3312,
|
|
|
|
|
|
|
|
|
|
5511, 3309, 3310, 3313, 3317, 3330, 3331, 3321, 3334, 3318,
|
|
|
|
|
3336, 3338, 3340, 3341, 3348, 3344, 3346, 3353, 3354, 3345,
|
|
|
|
|
3347, 3357, 3365, 3368, 3372, 3375, 3370, 3371, 3379, 5511,
|
|
|
|
|
3374, 3376, 3377, 3378, 3387, 3382, 3390, 3385, 5511, 3388,
|
|
|
|
|
3391, 3393, 5511, 3392, 3401, 3406, 3408, 3394, 3415, 3411,
|
|
|
|
|
3413, 3416, 3412, 5511, 3419, 5511, 3420, 3425, 3426, 5511,
|
|
|
|
|
3428, 3429, 3430, 3432, 3433, 3434, 3438, 3445, 3436, 3446,
|
|
|
|
|
3447, 3448, 3449, 3452, 3460, 3450, 5511, 3458, 3451, 3462,
|
|
|
|
|
3472, 3466, 3468, 3461, 3474, 3463, 5511, 5511, 3478, 5511,
|
|
|
|
|
3481, 3483, 3485, 5511, 3487, 3486, 3494, 3489, 3490, 3493,
|
|
|
|
|
|
|
|
|
|
3497, 3503, 5511, 3498, 3492, 3507, 3504, 3509, 3510, 3514,
|
|
|
|
|
3515, 3516, 3517, 3518, 5511, 3519, 3521, 3529, 3520, 3523,
|
|
|
|
|
3531, 3535, 3525, 5511, 3536, 3544, 3547, 3548, 3549, 5511,
|
|
|
|
|
3550, 5511, 3551, 3552, 3555, 3554, 5511, 3561, 3558, 3567,
|
|
|
|
|
3562, 3569, 3568, 3571, 3575, 3577, 3578, 3585, 3581, 3583,
|
|
|
|
|
3582, 5511, 3584, 3587, 3592, 3593, 3589, 3597, 3605, 3602,
|
|
|
|
|
3606, 3610, 3612, 3609, 3613, 3615, 3619, 3620, 3622, 3623,
|
|
|
|
|
3631, 3627, 3633, 5511, 3634, 3635, 3637, 5511, 3638, 3639,
|
|
|
|
|
3648, 3643, 3649, 3641, 3650, 3653, 5511, 3654, 3658, 3655,
|
|
|
|
|
3669, 5511, 5511, 3656, 5511, 3665, 3663, 3672, 3652, 3673,
|
|
|
|
|
|
|
|
|
|
3679, 3676, 3681, 3683, 3684, 3689, 3690, 3697, 3698, 3699,
|
|
|
|
|
3701, 3700, 3695, 5511, 5511, 3706, 3709, 3707, 3712, 3713,
|
|
|
|
|
3717, 3718, 3725, 3721, 3722, 3728, 3732, 3739, 5511, 3730,
|
|
|
|
|
3720, 3738, 5511, 3731, 3741, 3743, 3744, 3745, 3747, 3748,
|
|
|
|
|
3752, 3749, 3754, 3755, 3757, 3758, 3761, 3762, 3763, 3768,
|
|
|
|
|
3772, 5511, 3773, 3774, 3775, 3777, 3778, 3779, 3782, 3784,
|
|
|
|
|
3785, 5511, 3789, 3788, 3792, 3797, 3791, 3799, 3807, 3814,
|
|
|
|
|
3816, 3809, 3817, 3818, 3811, 3822, 3826, 5511, 3827, 3825,
|
|
|
|
|
3828, 3829, 3834, 3836, 3837, 3839, 3840, 3843, 3844, 3847,
|
|
|
|
|
3850, 3851, 3852, 3853, 3854, 5511, 3855, 3863, 3857, 3869,
|
|
|
|
|
|
|
|
|
|
3864, 3866, 3871, 3877, 3880, 3870, 3875, 3881, 3884, 5511,
|
|
|
|
|
3885, 3886, 3887, 3888, 3895, 3891, 3896, 3897, 5511, 3899,
|
|
|
|
|
3901, 3906, 3903, 3904, 3907, 3914, 3916, 3915, 5511, 3919,
|
|
|
|
|
3920, 3922, 3924, 3926, 3929, 3928, 5511, 3932, 3936, 3938,
|
|
|
|
|
3940, 3942, 3951, 3943, 3944, 3946, 3947, 3952, 3955, 3957,
|
|
|
|
|
3954, 3971, 3958, 5511, 3960, 5511, 3967, 3972, 3981, 3977,
|
|
|
|
|
3970, 5511, 3979, 3982, 3984, 3974, 3985, 5511, 3987, 3988,
|
|
|
|
|
3991, 3993, 5511, 3997, 3996, 4002, 4003, 4008, 4009, 5511,
|
|
|
|
|
4012, 4013, 4014, 4023, 4024, 4021, 4025, 4026, 4028, 4029,
|
|
|
|
|
4030, 4031, 5511, 4033, 4035, 4042, 4045, 4044, 4034, 4047,
|
|
|
|
|
|
|
|
|
|
4056, 4046, 5511, 4052, 4048, 4058, 4060, 4061, 4062, 4064,
|
|
|
|
|
4072, 4067, 4063, 5511, 4070, 4071, 4083, 4079, 4088, 5511,
|
|
|
|
|
5511, 4075, 4084, 4091, 4080, 4092, 5511, 4095, 4102, 4097,
|
|
|
|
|
4101, 4098, 5511, 5511, 4104, 5511, 4105, 5511, 4108, 5511,
|
|
|
|
|
5511, 4110, 4111, 4112, 4113, 4120, 5511, 4125, 5511, 4127,
|
|
|
|
|
4128, 4114, 4116, 4126, 5511, 4132, 4133, 4135, 5511, 4139,
|
|
|
|
|
4142, 4140, 4141, 5511, 4144, 4146, 4149, 5511, 4152, 4155,
|
|
|
|
|
4157, 4159, 4161, 4160, 4166, 4150, 4168, 4172, 4176, 4178,
|
|
|
|
|
4182, 4179, 4169, 4183, 4185, 4188, 4189, 4190, 4192, 4194,
|
|
|
|
|
4196, 4198, 4199, 4202, 4203, 4204, 4207, 4205, 4214, 4217,
|
|
|
|
|
|
|
|
|
|
4206, 4216, 4218, 4219, 4220, 4221, 4228, 4223, 4227, 5511,
|
|
|
|
|
4229, 4230, 4233, 4241, 4235, 4240, 4246, 4254, 4258, 4259,
|
|
|
|
|
5511, 4261, 5511, 4263, 4248, 3790, 4250, 5511, 4255, 4265,
|
|
|
|
|
4267, 4268, 4270, 4271, 4272, 4273, 5511, 4277, 4278, 4284,
|
|
|
|
|
4281, 5511, 4285, 4287, 4292, 4295, 4296, 4282, 4298, 4299,
|
|
|
|
|
4302, 4301, 4305, 4307, 4314, 4309, 4311, 4312, 4319, 4315,
|
|
|
|
|
4321, 4323, 4330, 4334, 4336, 4340, 5511, 4325, 5511, 4337,
|
|
|
|
|
4329, 4322, 4345, 4343, 4347, 5511, 5511, 4349, 4351, 4353,
|
|
|
|
|
4355, 4356, 4358, 4360, 5511, 4361, 4367, 4373, 4362, 5511,
|
|
|
|
|
4359, 4365, 4378, 5511, 4368, 4382, 4383, 4387, 4384, 4388,
|
|
|
|
|
|
|
|
|
|
4391, 5511, 5511, 5511, 5511, 4392, 4394, 4395, 4396, 4397,
|
|
|
|
|
4398, 4404, 4399, 5511, 5511, 5511, 4405, 4401, 4412, 4411,
|
|
|
|
|
4413, 4418, 5511, 4420, 4422, 4423, 4421, 4425, 4430, 4431,
|
|
|
|
|
4434, 4433, 4437, 4446, 4442, 4443, 4441, 4445, 4449, 4453,
|
|
|
|
|
5511, 5511, 4454, 4458, 4459, 4466, 4463, 4464, 4476, 4471,
|
|
|
|
|
4472, 4473, 4474, 4478, 4479, 4480, 5511, 4483, 4487, 5511,
|
|
|
|
|
4481, 5511, 4491, 4494, 4485, 4495, 4497, 4498, 4500, 4502,
|
|
|
|
|
5511, 5511, 4504, 4505, 4509, 4513, 4510, 4515, 4516, 4518,
|
|
|
|
|
4514, 5511, 4519, 5511, 4520, 4522, 4536, 4527, 4538, 4543,
|
|
|
|
|
4542, 4539, 4544, 5511, 4545, 4546, 5511, 4548, 4550, 4551,
|
|
|
|
|
|
|
|
|
|
5511, 4555, 4558, 4561, 5511, 4563, 5511, 4568, 5511, 4553,
|
|
|
|
|
4571, 5511, 4569, 4574, 4577, 4579, 4580, 4572, 5511, 4581,
|
|
|
|
|
4587, 4590, 4593, 4582, 4595, 4584, 4596, 4604, 4601, 4603,
|
|
|
|
|
5511, 5511, 4612, 4605, 4588, 4609, 4613, 4620, 4615, 4617,
|
|
|
|
|
4623, 5511, 5511, 4625, 5511, 4616, 4631, 5511, 4618, 4632,
|
|
|
|
|
4627, 4633, 4636, 4626, 4637, 4642, 4639, 4647, 4662, 4648,
|
|
|
|
|
4650, 4652, 4659, 4663, 4665, 4657, 4669, 4668, 4670, 4671,
|
|
|
|
|
4672, 4675, 5511, 4677, 4678, 4679, 5511, 4683, 4684, 4686,
|
|
|
|
|
4689, 5511, 4690, 4693, 4698, 5511, 4687, 4701, 4704, 4703,
|
|
|
|
|
4706, 4715, 4710, 4711, 5511, 5511, 5511, 5511, 4717, 4713,
|
|
|
|
|
|
|
|
|
|
5511, 4718, 4722, 5511, 5511, 4719, 4724, 4725, 5511, 4726,
|
|
|
|
|
5511, 4728, 5511, 4730, 4736, 4732, 5511, 4742, 4739, 5511,
|
|
|
|
|
4751, 4753, 4755, 4748, 4746, 4756, 4758, 5511, 4765, 4762,
|
|
|
|
|
4764, 4761, 4768, 4770, 4771, 4772, 4779, 4774, 4778, 5511,
|
|
|
|
|
4781, 4780, 4782, 5511, 4784, 5511, 4785, 4788, 4789, 4787,
|
|
|
|
|
4792, 4794, 4797, 4804, 4803, 4807, 4811, 5511, 4815, 4817,
|
|
|
|
|
5511, 4810, 5511, 4819, 4812, 4820, 4821, 4822, 5511, 4824,
|
|
|
|
|
4825, 4826, 4832, 5511, 4833, 4838, 5511, 4835, 4839, 4842,
|
|
|
|
|
4844, 4846, 4848, 4850, 4853, 4855, 4856, 4857, 4863, 4869,
|
|
|
|
|
4864, 5511, 5511, 5511, 4858, 4860, 4881, 4879, 4882, 4889,
|
|
|
|
|
|
|
|
|
|
4876, 5511, 4886, 4887, 4871, 4899, 4884, 4896, 5511, 4898,
|
|
|
|
|
4888, 4900, 5511, 4904, 4906, 4908, 4910, 4911, 4915, 4918,
|
|
|
|
|
4920, 4921, 5511, 4923, 5511, 5511, 4912, 5511, 4925, 4927,
|
|
|
|
|
4928, 4929, 5511, 4933, 4934, 4935, 4936, 4938, 4939, 4941,
|
|
|
|
|
5511, 5511, 4943, 5511, 4952, 4940, 4959, 4956, 4961, 4957,
|
|
|
|
|
5511, 4963, 4965, 4966, 4967, 4968, 5511, 4969, 4970, 4972,
|
|
|
|
|
4973, 4976, 4975, 4978, 4980, 4981, 5511, 5511, 4982, 4984,
|
|
|
|
|
5511, 5511, 4988, 4999, 5000, 5511, 5511, 5511, 5006, 5511,
|
|
|
|
|
5008, 5012, 5016, 5020, 5011, 5511, 5022, 5019, 5024, 5511,
|
|
|
|
|
5023, 5026, 5511, 5511, 5027, 5029, 5030, 5511, 5031, 5032,
|
|
|
|
|
|
|
|
|
|
5035, 5040, 5043, 5044, 5046, 5048, 5053, 5056, 5054, 5055,
|
|
|
|
|
5061, 5058, 5062, 5064, 5066, 5068, 5511, 5511, 5072, 5511,
|
|
|
|
|
5511, 5075, 5077, 5081, 5085, 5087, 5089, 5091, 5511, 5069,
|
|
|
|
|
5093, 5094, 5511, 5096, 5097, 5098, 5099, 5101, 5103, 5511,
|
|
|
|
|
5511, 5104, 5105, 5106, 5117, 5107, 5511, 5120, 5115, 5113,
|
|
|
|
|
5119, 5111, 5121, 5126, 5511, 5128, 5511, 5511, 5511, 5511,
|
|
|
|
|
5511, 5511, 5511, 5511, 5131, 5511, 5136, 5511, 5129, 5133,
|
|
|
|
|
5138, 5140, 5511, 5141, 5144, 5145, 5146, 5147, 5156, 4990,
|
|
|
|
|
5149, 5151, 5159, 5153, 5161, 5160, 5163, 5511, 5165, 5167,
|
|
|
|
|
5171, 5173, 5184, 5187, 5189, 5174, 5170, 5191, 5177, 5192,
|
|
|
|
|
|
|
|
|
|
5195, 5196, 5204, 5199, 5201, 5203, 5200, 5511, 5207, 5511,
|
|
|
|
|
5205, 5511, 5511, 5209, 5214, 5210, 5206, 5230, 5232, 5217,
|
|
|
|
|
5216, 5227, 5234, 5511, 5228, 5235, 5236, 5511, 5237, 5238,
|
|
|
|
|
5239, 5241, 5242, 5244, 5245, 5247, 5511, 5251, 5253, 5260,
|
|
|
|
|
5256, 5268, 5264, 5266, 5270, 5273, 5267, 5280, 5276, 5283,
|
|
|
|
|
5511, 5284, 5277, 5285, 5279, 5287, 5295, 5290, 5291, 5293,
|
|
|
|
|
5511, 5300, 5301, 5297, 5303, 5305, 5307, 5311, 5314, 5308,
|
|
|
|
|
5511, 5315, 5316, 5318, 5325, 5327, 5329, 5323, 5331, 5333,
|
|
|
|
|
5335, 5336, 5343, 5339, 5344, 5345, 5347, 5348, 5511, 5354,
|
|
|
|
|
5349, 5511, 5355, 5356, 5357, 5358, 5362, 5511, 5366, 5359,
|
|
|
|
|
|
|
|
|
|
5369, 5370, 5373, 5374, 5511, 5380, 5383, 5384, 5511, 5385,
|
|
|
|
|
5511, 5511, 5387, 5375, 5386, 5396, 5398, 5511, 5511, 5511,
|
|
|
|
|
5419, 5426, 5433, 5440, 5447, 88, 5454, 5461, 5468, 5475,
|
|
|
|
|
5482, 5489, 5496, 5503
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
static const flex_int16_t yy_def[2835] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2018-10-25 04:53:50 -04:00
|
|
|
2820, 1, 2821, 2821, 2822, 2822, 2823, 2823, 2824, 2824,
|
|
|
|
|
2825, 2825, 2820, 2826, 2820, 2820, 2820, 2820, 2827, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2828, 2820, 2820, 2820, 2828, 2829, 2820, 2820,
|
|
|
|
|
2820, 2829, 2830, 2820, 2820, 2820, 2820, 2830, 2831, 2820,
|
|
|
|
|
2820, 2820, 2831, 2832, 2820, 2833, 2820, 2832, 2832, 2826,
|
|
|
|
|
2826, 2820, 2834, 2827, 2834, 2827, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2828,
|
|
|
|
|
2828, 2829, 2829, 2830, 2830, 2820, 2831, 2831, 2832, 2832,
|
|
|
|
|
2833, 2833, 2832, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2832, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2832, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2832, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2832, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2820, 2826, 2820, 2820, 2826, 2820,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2832, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2820, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2820, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2832, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2820, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2820, 2826, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2820,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2820, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2820, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2820, 2826, 2820, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2820, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2820, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2820, 2826, 2820, 2826, 2820, 2826, 2820,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2826, 2820, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2820, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2820, 2820, 2820, 2820, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2820, 2820, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2820,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2820, 2826, 2826, 2826, 2820, 2826, 2820, 2826, 2820, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2820, 2826, 2820, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2820, 2820, 2820, 2820, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2820, 2826, 2826, 2820, 2820, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2820, 2826, 2820, 2826, 2826, 2826, 2820, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2820, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2820, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2820, 2820, 2820, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2820, 2820, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2820, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2820, 2826, 2826,
|
|
|
|
|
2820, 2820, 2826, 2826, 2826, 2820, 2820, 2820, 2826, 2820,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2820,
|
|
|
|
|
2826, 2826, 2820, 2820, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2820, 2826, 2820,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2820,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2820, 2826, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820, 2820, 2820, 2820, 2826, 2820, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2820,
|
|
|
|
|
2826, 2820, 2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2820, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2820, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826,
|
|
|
|
|
2826, 2826, 2826, 2826, 2826, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2826, 2820, 2826, 2826, 2826, 2826, 2826, 2820, 2826, 2826,
|
|
|
|
|
|
|
|
|
|
2826, 2826, 2826, 2826, 2820, 2826, 2826, 2826, 2820, 2826,
|
|
|
|
|
2820, 2820, 2826, 2826, 2826, 2826, 2826, 2820, 2820, 0,
|
|
|
|
|
2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820, 2820, 2820, 2820
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
static const flex_int16_t yy_nxt[5552] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2009-02-06 05:19:16 -05:00
|
|
|
14, 15, 16, 17, 18, 19, 18, 14, 14, 14,
|
2017-07-17 04:21:19 -04:00
|
|
|
14, 14, 18, 20, 21, 22, 23, 24, 25, 26,
|
|
|
|
|
14, 27, 28, 29, 30, 31, 32, 33, 34, 35,
|
2017-10-17 11:16:31 -04:00
|
|
|
36, 37, 38, 39, 40, 41, 14, 14, 14, 42,
|
|
|
|
|
44, 45, 46, 44, 45, 46, 49, 50, 49, 50,
|
|
|
|
|
51, 47, 51, 70, 47, 70, 70, 52, 70, 52,
|
|
|
|
|
54, 55, 56, 57, 70, 18, 54, 55, 56, 57,
|
2018-04-17 09:23:35 -04:00
|
|
|
71, 18, 58, 60, 61, 62, 71, 82, 58, 60,
|
|
|
|
|
61, 62, 72, 71, 63, 102, 73, 92, 70, 71,
|
2018-02-08 08:16:36 -05:00
|
|
|
63, 15, 16, 17, 65, 66, 67, 75, 71, 75,
|
|
|
|
|
|
2018-04-17 09:23:35 -04:00
|
|
|
75, 71, 75, 68, 104, 156, 103, 93, 75, 76,
|
|
|
|
|
140, 140, 69, 15, 16, 17, 65, 66, 67, 71,
|
|
|
|
|
71, 83, 77, 78, 71, 68, 79, 71, 84, 87,
|
|
|
|
|
71, 80, 85, 88, 69, 86, 89, 150, 90, 91,
|
|
|
|
|
81, 71, 94, 71, 96, 71, 71, 158, 71, 105,
|
|
|
|
|
98, 112, 97, 99, 71, 109, 95, 106, 71, 110,
|
2018-10-25 04:07:37 -04:00
|
|
|
100, 71, 101, 107, 171, 71, 113, 108, 142, 71,
|
2018-04-17 09:23:35 -04:00
|
|
|
114, 142, 118, 71, 119, 111, 115, 71, 120, 116,
|
|
|
|
|
139, 150, 123, 147, 147, 124, 117, 162, 121, 71,
|
|
|
|
|
72, 122, 125, 132, 73, 153, 126, 127, 71, 128,
|
|
|
|
|
|
|
|
|
|
71, 129, 71, 133, 71, 136, 155, 134, 135, 137,
|
2018-10-25 04:07:37 -04:00
|
|
|
130, 150, 144, 138, 144, 144, 131, 144, 75, 190,
|
2018-04-17 09:23:35 -04:00
|
|
|
75, 75, 149, 75, 149, 149, 70, 149, 70, 70,
|
|
|
|
|
152, 70, 71, 75, 71, 75, 75, 70, 75, 71,
|
|
|
|
|
71, 163, 154, 159, 75, 76, 157, 71, 71, 71,
|
2018-10-25 04:07:37 -04:00
|
|
|
160, 71, 71, 172, 71, 71, 71, 71, 165, 71,
|
|
|
|
|
71, 182, 164, 161, 166, 71, 167, 168, 169, 174,
|
|
|
|
|
71, 71, 173, 170, 175, 179, 176, 177, 180, 71,
|
|
|
|
|
71, 247, 188, 181, 178, 183, 71, 71, 71, 184,
|
|
|
|
|
71, 71, 185, 71, 193, 191, 71, 199, 194, 196,
|
|
|
|
|
|
|
|
|
|
71, 198, 71, 200, 197, 186, 187, 189, 71, 202,
|
|
|
|
|
71, 71, 71, 201, 195, 192, 206, 71, 71, 71,
|
|
|
|
|
71, 203, 71, 208, 71, 211, 71, 209, 71, 205,
|
|
|
|
|
204, 71, 213, 71, 224, 207, 222, 216, 71, 210,
|
|
|
|
|
212, 214, 71, 71, 221, 217, 218, 215, 71, 71,
|
|
|
|
|
223, 71, 71, 71, 225, 71, 71, 219, 231, 71,
|
|
|
|
|
71, 220, 71, 71, 234, 227, 226, 233, 237, 230,
|
|
|
|
|
228, 71, 235, 229, 140, 140, 147, 147, 142, 232,
|
|
|
|
|
236, 142, 148, 71, 144, 238, 144, 144, 149, 144,
|
|
|
|
|
149, 149, 75, 149, 75, 75, 150, 75, 71, 239,
|
|
|
|
|
|
|
|
|
|
241, 243, 71, 240, 152, 71, 71, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 245, 71, 242, 248, 244, 71, 251,
|
|
|
|
|
246, 253, 254, 257, 250, 71, 249, 259, 71, 255,
|
|
|
|
|
252, 71, 258, 71, 71, 260, 256, 71, 263, 71,
|
|
|
|
|
261, 71, 268, 264, 269, 71, 71, 71, 265, 71,
|
|
|
|
|
270, 271, 274, 278, 266, 267, 71, 262, 71, 272,
|
|
|
|
|
276, 71, 71, 71, 71, 71, 277, 71, 71, 273,
|
|
|
|
|
283, 71, 284, 71, 285, 280, 289, 279, 281, 286,
|
|
|
|
|
71, 275, 282, 292, 71, 293, 294, 71, 290, 71,
|
2018-10-25 04:53:50 -04:00
|
|
|
71, 287, 71, 288, 296, 298, 291, 299, 295, 302,
|
|
|
|
|
|
|
|
|
|
71, 71, 304, 71, 71, 71, 71, 297, 71, 303,
|
|
|
|
|
305, 301, 300, 306, 71, 71, 71, 71, 71, 71,
|
|
|
|
|
71, 308, 71, 71, 310, 71, 71, 307, 312, 71,
|
|
|
|
|
314, 71, 315, 71, 71, 313, 71, 309, 319, 71,
|
|
|
|
|
321, 311, 317, 323, 316, 71, 71, 326, 71, 71,
|
|
|
|
|
328, 318, 320, 71, 330, 71, 71, 71, 146, 331,
|
|
|
|
|
71, 322, 329, 324, 325, 71, 327, 333, 337, 334,
|
|
|
|
|
71, 335, 339, 71, 71, 332, 336, 71, 71, 71,
|
|
|
|
|
71, 340, 71, 150, 71, 71, 71, 343, 71, 348,
|
|
|
|
|
71, 350, 338, 351, 346, 344, 71, 71, 341, 71,
|
|
|
|
|
|
|
|
|
|
71, 352, 71, 342, 345, 353, 354, 71, 347, 71,
|
|
|
|
|
71, 71, 71, 349, 71, 71, 361, 355, 362, 359,
|
|
|
|
|
71, 356, 71, 71, 358, 363, 71, 357, 71, 364,
|
|
|
|
|
365, 71, 367, 71, 71, 368, 71, 71, 366, 360,
|
|
|
|
|
371, 71, 369, 71, 374, 372, 71, 376, 71, 378,
|
|
|
|
|
71, 370, 373, 71, 71, 71, 377, 71, 71, 381,
|
|
|
|
|
375, 379, 71, 383, 71, 71, 71, 382, 384, 71,
|
|
|
|
|
71, 388, 71, 71, 71, 389, 71, 71, 380, 387,
|
|
|
|
|
391, 71, 385, 71, 393, 71, 386, 71, 395, 71,
|
|
|
|
|
397, 390, 392, 396, 71, 394, 71, 398, 406, 399,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 71, 71, 409, 408, 410, 71, 400,
|
|
|
|
|
145, 412, 401, 71, 417, 71, 414, 402, 403, 404,
|
|
|
|
|
405, 407, 71, 411, 415, 416, 413, 71, 71, 71,
|
|
|
|
|
418, 71, 71, 424, 71, 71, 426, 71, 71, 71,
|
|
|
|
|
422, 423, 425, 71, 421, 419, 71, 71, 420, 71,
|
|
|
|
|
433, 428, 71, 427, 71, 429, 71, 436, 430, 435,
|
|
|
|
|
71, 71, 71, 71, 432, 437, 71, 431, 71, 71,
|
|
|
|
|
71, 438, 434, 440, 71, 441, 442, 439, 71, 448,
|
|
|
|
|
71, 443, 71, 447, 490, 71, 71, 449, 460, 71,
|
|
|
|
|
461, 71, 450, 71, 444, 462, 150, 445, 451, 446,
|
|
|
|
|
|
|
|
|
|
463, 71, 452, 71, 464, 466, 71, 71, 474, 478,
|
|
|
|
|
453, 71, 454, 476, 455, 475, 71, 479, 477, 71,
|
|
|
|
|
465, 71, 484, 71, 71, 71, 480, 456, 71, 71,
|
|
|
|
|
457, 481, 458, 482, 459, 71, 488, 467, 468, 487,
|
|
|
|
|
483, 71, 71, 486, 71, 71, 489, 469, 71, 470,
|
|
|
|
|
471, 472, 71, 494, 473, 485, 496, 71, 497, 71,
|
|
|
|
|
493, 491, 71, 71, 492, 501, 71, 495, 71, 71,
|
|
|
|
|
71, 71, 71, 505, 506, 499, 71, 504, 71, 498,
|
|
|
|
|
500, 71, 71, 71, 71, 503, 511, 513, 71, 71,
|
|
|
|
|
507, 71, 514, 502, 508, 71, 510, 509, 71, 516,
|
|
|
|
|
|
|
|
|
|
71, 71, 143, 71, 512, 71, 518, 515, 517, 71,
|
|
|
|
|
71, 519, 522, 527, 525, 521, 71, 71, 520, 528,
|
|
|
|
|
529, 526, 71, 523, 71, 524, 71, 71, 531, 533,
|
|
|
|
|
71, 532, 71, 535, 71, 71, 71, 540, 530, 71,
|
|
|
|
|
537, 71, 539, 71, 71, 71, 71, 536, 541, 538,
|
|
|
|
|
534, 544, 71, 71, 542, 71, 71, 545, 71, 71,
|
|
|
|
|
71, 71, 546, 551, 71, 552, 543, 547, 71, 555,
|
|
|
|
|
550, 71, 554, 71, 71, 557, 548, 549, 71, 558,
|
|
|
|
|
553, 71, 71, 71, 71, 71, 71, 71, 141, 71,
|
|
|
|
|
560, 71, 561, 568, 556, 570, 71, 563, 71, 71,
|
|
|
|
|
|
|
|
|
|
569, 71, 559, 567, 562, 564, 566, 565, 71, 71,
|
|
|
|
|
572, 71, 575, 571, 71, 578, 71, 573, 71, 577,
|
|
|
|
|
574, 71, 71, 71, 71, 71, 71, 581, 580, 585,
|
|
|
|
|
584, 576, 71, 71, 71, 71, 71, 71, 587, 579,
|
|
|
|
|
71, 71, 71, 150, 600, 582, 583, 586, 71, 71,
|
|
|
|
|
588, 599, 603, 71, 589, 71, 590, 598, 602, 71,
|
|
|
|
|
601, 591, 71, 592, 604, 607, 609, 606, 605, 593,
|
|
|
|
|
71, 594, 71, 71, 595, 596, 71, 610, 71, 608,
|
|
|
|
|
71, 597, 71, 612, 71, 614, 71, 616, 71, 611,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 613, 617, 622, 148,
|
|
|
|
|
|
|
|
|
|
618, 71, 71, 615, 623, 619, 71, 150, 626, 71,
|
|
|
|
|
620, 628, 629, 624, 621, 627, 625, 71, 71, 71,
|
|
|
|
|
71, 630, 71, 71, 71, 71, 71, 638, 636, 640,
|
|
|
|
|
71, 146, 631, 71, 633, 71, 641, 634, 632, 637,
|
|
|
|
|
643, 635, 71, 639, 71, 642, 71, 71, 71, 71,
|
|
|
|
|
645, 71, 71, 71, 649, 654, 644, 648, 71, 71,
|
|
|
|
|
655, 71, 646, 145, 647, 657, 71, 650, 71, 653,
|
|
|
|
|
658, 71, 656, 659, 651, 660, 71, 652, 662, 71,
|
|
|
|
|
661, 71, 71, 71, 71, 664, 71, 71, 665, 663,
|
|
|
|
|
71, 71, 71, 668, 71, 667, 669, 71, 673, 71,
|
|
|
|
|
|
|
|
|
|
71, 672, 71, 674, 71, 666, 71, 676, 678, 71,
|
|
|
|
|
71, 71, 71, 671, 71, 670, 679, 71, 675, 71,
|
|
|
|
|
681, 71, 685, 680, 687, 682, 677, 71, 684, 683,
|
|
|
|
|
686, 71, 688, 71, 691, 71, 71, 71, 71, 693,
|
|
|
|
|
71, 694, 71, 696, 692, 689, 71, 698, 690, 697,
|
|
|
|
|
71, 71, 71, 71, 71, 704, 71, 71, 702, 71,
|
|
|
|
|
71, 71, 71, 695, 710, 701, 699, 71, 705, 700,
|
|
|
|
|
71, 708, 709, 711, 703, 71, 706, 707, 712, 71,
|
|
|
|
|
71, 71, 713, 71, 717, 714, 71, 719, 143, 71,
|
|
|
|
|
71, 718, 720, 71, 71, 71, 722, 716, 71, 715,
|
|
|
|
|
|
|
|
|
|
721, 723, 71, 71, 728, 71, 71, 724, 71, 71,
|
|
|
|
|
71, 725, 732, 731, 734, 730, 71, 71, 739, 71,
|
|
|
|
|
71, 71, 726, 727, 729, 737, 736, 733, 735, 71,
|
|
|
|
|
738, 71, 71, 71, 741, 743, 71, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 141, 740, 749, 71, 71, 742, 71,
|
|
|
|
|
71, 750, 71, 71, 744, 745, 746, 757, 747, 71,
|
|
|
|
|
748, 751, 752, 71, 755, 71, 71, 753, 756, 754,
|
|
|
|
|
71, 71, 71, 758, 71, 762, 71, 759, 71, 71,
|
|
|
|
|
71, 768, 71, 71, 71, 760, 769, 71, 71, 761,
|
|
|
|
|
763, 71, 764, 767, 765, 771, 772, 766, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 770, 773, 71, 777, 776, 774, 778, 779,
|
|
|
|
|
71, 775, 71, 71, 71, 780, 71, 71, 71, 150,
|
|
|
|
|
782, 71, 789, 783, 787, 785, 71, 71, 71, 788,
|
|
|
|
|
781, 784, 71, 786, 71, 71, 71, 791, 795, 71,
|
|
|
|
|
71, 790, 71, 796, 798, 71, 801, 792, 793, 799,
|
|
|
|
|
71, 797, 71, 71, 71, 800, 794, 803, 71, 71,
|
|
|
|
|
71, 807, 71, 71, 71, 71, 804, 71, 808, 809,
|
|
|
|
|
802, 71, 71, 71, 71, 71, 71, 806, 821, 71,
|
|
|
|
|
813, 810, 71, 805, 814, 812, 818, 815, 820, 811,
|
|
|
|
|
819, 71, 822, 826, 816, 823, 71, 817, 71, 824,
|
|
|
|
|
|
|
|
|
|
71, 825, 71, 71, 830, 71, 71, 2820, 71, 71,
|
|
|
|
|
71, 838, 71, 71, 827, 842, 828, 843, 71, 71,
|
|
|
|
|
844, 71, 845, 829, 71, 831, 832, 840, 833, 839,
|
|
|
|
|
841, 834, 71, 847, 846, 71, 835, 71, 71, 71,
|
|
|
|
|
848, 849, 836, 837, 850, 71, 71, 851, 71, 852,
|
|
|
|
|
71, 71, 854, 71, 71, 858, 71, 71, 861, 857,
|
|
|
|
|
71, 71, 71, 71, 71, 853, 866, 71, 71, 865,
|
|
|
|
|
855, 859, 856, 869, 860, 863, 867, 870, 71, 862,
|
|
|
|
|
871, 868, 71, 71, 864, 71, 71, 873, 71, 71,
|
|
|
|
|
872, 874, 71, 71, 71, 875, 878, 71, 71, 71,
|
|
|
|
|
|
|
|
|
|
876, 71, 877, 879, 880, 882, 71, 71, 885, 71,
|
|
|
|
|
883, 71, 71, 71, 71, 884, 71, 71, 881, 71,
|
|
|
|
|
887, 888, 889, 71, 892, 890, 891, 893, 886, 71,
|
|
|
|
|
71, 895, 71, 71, 71, 71, 71, 71, 902, 71,
|
|
|
|
|
900, 903, 71, 898, 71, 71, 71, 896, 901, 905,
|
|
|
|
|
71, 71, 897, 71, 894, 71, 71, 71, 71, 899,
|
|
|
|
|
904, 912, 71, 915, 911, 71, 906, 71, 909, 71,
|
|
|
|
|
907, 908, 71, 910, 913, 71, 916, 914, 71, 919,
|
|
|
|
|
71, 918, 71, 922, 917, 71, 920, 923, 71, 921,
|
|
|
|
|
71, 71, 71, 71, 925, 930, 71, 932, 71, 934,
|
|
|
|
|
|
|
|
|
|
71, 71, 924, 71, 935, 71, 71, 71, 71, 2820,
|
|
|
|
|
926, 927, 931, 929, 928, 71, 933, 71, 941, 937,
|
|
|
|
|
939, 71, 942, 71, 943, 936, 71, 938, 71, 940,
|
|
|
|
|
946, 71, 948, 71, 71, 71, 71, 951, 150, 945,
|
|
|
|
|
950, 944, 71, 71, 71, 954, 71, 953, 71, 71,
|
|
|
|
|
71, 947, 949, 957, 71, 71, 71, 952, 71, 71,
|
|
|
|
|
969, 71, 71, 972, 71, 970, 71, 71, 955, 956,
|
|
|
|
|
960, 71, 71, 958, 959, 961, 974, 971, 1138, 962,
|
|
|
|
|
71, 975, 71, 963, 71, 964, 71, 977, 979, 965,
|
|
|
|
|
71, 966, 973, 980, 71, 71, 967, 71, 976, 982,
|
|
|
|
|
|
|
|
|
|
978, 968, 71, 71, 981, 71, 71, 984, 986, 71,
|
|
|
|
|
71, 71, 983, 994, 991, 992, 990, 985, 71, 987,
|
|
|
|
|
71, 71, 995, 989, 993, 71, 71, 988, 71, 71,
|
|
|
|
|
71, 71, 71, 996, 71, 1010, 1007, 2820, 71, 71,
|
|
|
|
|
71, 71, 1006, 71, 1011, 997, 1008, 998, 71, 999,
|
|
|
|
|
1009, 1012, 71, 71, 1000, 1013, 1001, 1016, 71, 1014,
|
|
|
|
|
71, 71, 1002, 1018, 1017, 71, 1023, 1003, 1004, 71,
|
|
|
|
|
71, 1015, 1020, 1019, 1005, 1022, 71, 71, 1021, 71,
|
|
|
|
|
71, 71, 71, 1028, 71, 71, 1025, 71, 1026, 71,
|
|
|
|
|
1031, 1029, 71, 71, 71, 1024, 1027, 71, 1039, 71,
|
|
|
|
|
|
|
|
|
|
1038, 71, 71, 1030, 71, 71, 1033, 1032, 1036, 1035,
|
|
|
|
|
1037, 71, 71, 1034, 71, 71, 71, 71, 1040, 1041,
|
|
|
|
|
71, 2820, 1047, 71, 71, 1048, 1044, 71, 1049, 1052,
|
|
|
|
|
1046, 1042, 71, 1043, 1045, 71, 1050, 71, 1051, 71,
|
|
|
|
|
1054, 1055, 1059, 71, 71, 1053, 1056, 71, 71, 1057,
|
|
|
|
|
71, 71, 1058, 71, 71, 1065, 1067, 1060, 71, 71,
|
|
|
|
|
71, 71, 71, 1068, 1061, 71, 1063, 71, 1062, 1064,
|
|
|
|
|
1070, 1066, 1071, 71, 71, 1072, 71, 71, 1073, 1069,
|
|
|
|
|
71, 1074, 71, 1076, 1079, 71, 1075, 71, 1078, 71,
|
|
|
|
|
71, 1080, 71, 71, 1081, 71, 1077, 71, 1083, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 1087, 1089, 1090, 1082, 1091, 1084, 71, 71,
|
|
|
|
|
71, 71, 1085, 1088, 71, 1094, 1092, 1086, 71, 1093,
|
|
|
|
|
71, 71, 1097, 1098, 71, 71, 1095, 71, 71, 1099,
|
|
|
|
|
1101, 71, 71, 71, 1102, 71, 1106, 71, 1096, 1107,
|
|
|
|
|
71, 71, 71, 1100, 1103, 71, 1109, 1105, 1110, 71,
|
|
|
|
|
1104, 71, 1108, 1114, 71, 71, 71, 71, 71, 1111,
|
|
|
|
|
71, 71, 1120, 71, 71, 1112, 1113, 1116, 71, 71,
|
|
|
|
|
71, 71, 71, 1115, 71, 1117, 1124, 1155, 1121, 1125,
|
|
|
|
|
1119, 1123, 1128, 1122, 1129, 1118, 1126, 71, 71, 71,
|
|
|
|
|
71, 71, 1127, 1131, 1130, 71, 71, 71, 71, 71,
|
|
|
|
|
|
|
|
|
|
1132, 71, 71, 1135, 71, 1141, 71, 71, 71, 71,
|
|
|
|
|
1133, 1134, 71, 71, 1136, 71, 1151, 1139, 1145, 71,
|
|
|
|
|
1137, 1142, 71, 1140, 1144, 71, 1143, 1147, 71, 71,
|
|
|
|
|
1152, 71, 71, 1146, 71, 1153, 1148, 1156, 1149, 1158,
|
|
|
|
|
1157, 1150, 71, 1154, 71, 71, 71, 1160, 1163, 71,
|
|
|
|
|
71, 1159, 71, 71, 71, 1161, 71, 1164, 1165, 1167,
|
|
|
|
|
1168, 71, 71, 71, 1162, 1170, 1166, 71, 71, 71,
|
|
|
|
|
1169, 71, 71, 71, 71, 71, 1175, 1171, 71, 1173,
|
|
|
|
|
71, 1180, 1172, 1174, 1176, 71, 71, 71, 71, 71,
|
|
|
|
|
1177, 1185, 1179, 1181, 1178, 1184, 1187, 71, 71, 71,
|
|
|
|
|
|
|
|
|
|
1182, 1186, 1191, 1189, 71, 1183, 71, 1192, 71, 1188,
|
|
|
|
|
71, 1190, 71, 71, 1196, 71, 1205, 71, 1206, 1204,
|
|
|
|
|
1194, 71, 71, 1193, 71, 1195, 71, 1209, 1203, 1207,
|
|
|
|
|
1208, 1197, 71, 71, 1198, 1199, 71, 1210, 71, 1200,
|
|
|
|
|
71, 1211, 71, 1212, 71, 1201, 71, 1213, 71, 1202,
|
|
|
|
|
71, 1214, 71, 1215, 71, 71, 2820, 1220, 1216, 1218,
|
|
|
|
|
1219, 1223, 1217, 1224, 1233, 71, 71, 71, 1221, 71,
|
|
|
|
|
1225, 71, 71, 1222, 71, 1226, 71, 1232, 71, 71,
|
|
|
|
|
71, 1227, 1235, 71, 71, 1234, 1228, 71, 1229, 2820,
|
|
|
|
|
1230, 1239, 1231, 1238, 1236, 71, 1240, 71, 1237, 71,
|
|
|
|
|
|
|
|
|
|
1242, 1243, 71, 71, 71, 1241, 71, 71, 1244, 71,
|
|
|
|
|
71, 71, 1247, 71, 1249, 71, 1251, 71, 71, 1258,
|
|
|
|
|
1248, 1245, 1246, 1254, 1250, 1255, 71, 1257, 71, 1252,
|
|
|
|
|
1256, 71, 71, 71, 1259, 1262, 71, 1260, 1253, 71,
|
|
|
|
|
1264, 71, 71, 1265, 71, 71, 71, 1269, 71, 1266,
|
|
|
|
|
71, 71, 1261, 71, 1271, 71, 71, 71, 2820, 1263,
|
|
|
|
|
1273, 71, 1277, 1275, 71, 1274, 1267, 1268, 71, 1278,
|
|
|
|
|
1270, 1276, 71, 1272, 71, 71, 71, 71, 1282, 1280,
|
|
|
|
|
1279, 1281, 71, 71, 71, 1287, 1288, 71, 1284, 71,
|
|
|
|
|
1285, 71, 71, 1283, 1289, 1290, 1291, 1286, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 1294, 71, 71, 71, 1298, 1299, 71, 1301,
|
|
|
|
|
1293, 71, 71, 71, 1300, 71, 71, 1292, 71, 71,
|
|
|
|
|
1295, 71, 71, 1308, 1296, 1302, 71, 71, 1297, 71,
|
|
|
|
|
1305, 1303, 71, 1306, 1313, 71, 1304, 1312, 71, 1307,
|
|
|
|
|
71, 71, 71, 1317, 71, 1315, 1309, 1311, 1318, 71,
|
|
|
|
|
71, 1320, 1310, 71, 71, 71, 71, 71, 1321, 1328,
|
|
|
|
|
1316, 1314, 1319, 71, 71, 71, 1330, 1322, 1326, 1323,
|
|
|
|
|
1324, 1327, 71, 1325, 71, 71, 1332, 71, 1329, 1331,
|
|
|
|
|
71, 71, 1334, 71, 71, 1336, 71, 71, 1338, 71,
|
|
|
|
|
71, 1343, 71, 1333, 71, 1335, 1344, 71, 71, 1337,
|
|
|
|
|
|
|
|
|
|
1340, 71, 1347, 71, 1339, 1341, 71, 1342, 71, 71,
|
|
|
|
|
1348, 71, 1345, 71, 71, 71, 1346, 1350, 1354, 1356,
|
|
|
|
|
1349, 1351, 1355, 71, 1352, 71, 71, 1359, 71, 71,
|
|
|
|
|
1353, 71, 71, 1364, 1358, 1361, 1365, 1363, 71, 71,
|
|
|
|
|
71, 1357, 71, 1360, 71, 1366, 71, 1367, 1368, 71,
|
|
|
|
|
71, 71, 1362, 71, 1369, 1373, 1371, 71, 71, 1375,
|
|
|
|
|
1370, 71, 71, 71, 1374, 71, 71, 1372, 1378, 1381,
|
|
|
|
|
1377, 1383, 71, 71, 1382, 71, 1384, 71, 71, 1379,
|
|
|
|
|
71, 1376, 71, 1386, 71, 1380, 71, 71, 1393, 71,
|
|
|
|
|
71, 1392, 1385, 1389, 71, 1394, 1396, 1387, 71, 1388,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 1399, 71, 1390, 1398, 1391, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 1395, 2820, 1397, 71, 1407,
|
|
|
|
|
1400, 71, 71, 1401, 1408, 1404, 1409, 1402, 1406, 1403,
|
|
|
|
|
1410, 71, 71, 1405, 71, 1413, 71, 1411, 1412, 71,
|
|
|
|
|
71, 71, 1416, 71, 71, 1414, 1417, 71, 1419, 1423,
|
|
|
|
|
71, 71, 1415, 71, 71, 71, 1420, 71, 1424, 1418,
|
|
|
|
|
1425, 1426, 71, 1422, 1421, 71, 1427, 1431, 1432, 71,
|
|
|
|
|
71, 1428, 1429, 71, 71, 71, 71, 1436, 1437, 71,
|
|
|
|
|
1435, 1438, 71, 71, 71, 1430, 1439, 71, 1433, 1440,
|
|
|
|
|
71, 71, 71, 71, 71, 1434, 1443, 71, 1446, 1444,
|
|
|
|
|
|
|
|
|
|
71, 1445, 71, 1441, 71, 71, 71, 1442, 71, 1447,
|
|
|
|
|
1449, 71, 1450, 71, 1454, 71, 1458, 71, 71, 1452,
|
|
|
|
|
1451, 1448, 1455, 1456, 71, 71, 71, 1461, 1459, 71,
|
|
|
|
|
1457, 1453, 71, 71, 71, 71, 71, 1464, 1467, 71,
|
|
|
|
|
1466, 71, 71, 1463, 71, 1460, 71, 71, 1474, 71,
|
|
|
|
|
71, 1462, 71, 1465, 1468, 1469, 71, 1475, 1472, 71,
|
|
|
|
|
71, 1470, 1471, 71, 1479, 1478, 71, 71, 1481, 1476,
|
|
|
|
|
1477, 1473, 1482, 1483, 71, 1485, 1487, 71, 71, 71,
|
|
|
|
|
1480, 71, 71, 1484, 71, 71, 71, 1490, 1486, 71,
|
|
|
|
|
1489, 71, 1492, 71, 1493, 71, 71, 1488, 71, 1497,
|
|
|
|
|
|
|
|
|
|
1494, 71, 1498, 71, 71, 71, 1504, 1495, 1501, 1491,
|
|
|
|
|
1496, 1502, 71, 1506, 71, 1499, 71, 71, 1500, 1505,
|
|
|
|
|
1510, 1507, 71, 1503, 71, 1509, 71, 71, 1512, 1511,
|
|
|
|
|
71, 1513, 1514, 71, 71, 71, 71, 71, 71, 1515,
|
|
|
|
|
71, 1521, 1508, 1520, 1522, 1524, 1516, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 1517, 1523, 1518, 71, 1519, 1527, 71,
|
|
|
|
|
71, 1526, 71, 71, 71, 1528, 71, 71, 71, 1536,
|
|
|
|
|
1529, 1525, 71, 71, 71, 71, 71, 71, 1532, 1534,
|
|
|
|
|
1533, 1535, 1530, 1531, 1541, 71, 71, 71, 1539, 71,
|
|
|
|
|
71, 1544, 1537, 1538, 1543, 71, 71, 1540, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 1547, 1545, 71, 71, 71, 1542, 1549, 1552, 1546,
|
|
|
|
|
1551, 1553, 71, 71, 1548, 1550, 1558, 1559, 71, 71,
|
|
|
|
|
1554, 1560, 71, 71, 1563, 71, 1562, 1555, 71, 71,
|
|
|
|
|
1557, 1561, 1556, 71, 71, 71, 71, 71, 1566, 1567,
|
|
|
|
|
71, 1564, 71, 1575, 71, 71, 1570, 71, 1565, 71,
|
|
|
|
|
71, 1574, 1569, 1572, 1568, 71, 1573, 1576, 71, 1571,
|
|
|
|
|
1578, 71, 71, 71, 71, 1577, 71, 1585, 1579, 1580,
|
|
|
|
|
71, 71, 71, 71, 1582, 71, 1589, 1581, 1588, 71,
|
|
|
|
|
1587, 1591, 1584, 71, 1592, 71, 1586, 1596, 1583, 1599,
|
|
|
|
|
1590, 71, 1597, 71, 71, 71, 1602, 1593, 1601, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 1595, 1594, 1598, 1603, 1604, 71, 71,
|
|
|
|
|
1608, 71, 1600, 71, 1605, 71, 71, 71, 71, 71,
|
|
|
|
|
1606, 1610, 71, 1607, 1609, 1612, 71, 1611, 71, 71,
|
|
|
|
|
1615, 71, 71, 1621, 1613, 1616, 71, 71, 1614, 71,
|
|
|
|
|
71, 1617, 1618, 71, 1627, 1619, 1620, 71, 71, 1622,
|
|
|
|
|
71, 71, 1630, 71, 71, 71, 71, 1623, 1624, 1632,
|
|
|
|
|
1626, 1633, 1625, 71, 1628, 71, 71, 71, 1634, 1629,
|
|
|
|
|
1635, 71, 1639, 71, 1631, 1636, 71, 71, 71, 1643,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 1638, 71, 1645, 1641,
|
|
|
|
|
1637, 71, 1650, 71, 71, 1640, 1644, 1642, 71, 1646,
|
|
|
|
|
|
|
|
|
|
71, 1681, 1648, 1647, 1649, 1651, 1653, 1654, 71, 71,
|
|
|
|
|
71, 71, 1652, 1655, 1656, 71, 1657, 1659, 1658, 1660,
|
|
|
|
|
71, 71, 71, 71, 1662, 71, 71, 71, 1663, 71,
|
|
|
|
|
71, 71, 71, 1661, 71, 71, 1668, 71, 71, 1672,
|
|
|
|
|
71, 1669, 71, 71, 1673, 1678, 1664, 1666, 1667, 1665,
|
|
|
|
|
1670, 71, 1671, 1677, 71, 71, 71, 1674, 1676, 71,
|
|
|
|
|
1675, 1683, 71, 1679, 71, 71, 1686, 1687, 71, 1688,
|
|
|
|
|
71, 1690, 71, 71, 1680, 71, 1682, 71, 1684, 71,
|
|
|
|
|
1685, 1695, 1689, 71, 1691, 1694, 71, 1696, 71, 1698,
|
|
|
|
|
71, 1697, 1700, 71, 1692, 71, 1693, 1699, 71, 71,
|
|
|
|
|
|
|
|
|
|
1703, 71, 1702, 71, 1704, 1705, 71, 71, 71, 71,
|
|
|
|
|
1712, 71, 71, 71, 71, 1701, 71, 1714, 1706, 1707,
|
|
|
|
|
1708, 71, 1715, 71, 1718, 1709, 1716, 1710, 1711, 1713,
|
|
|
|
|
71, 1720, 1717, 71, 1722, 71, 1719, 71, 1724, 71,
|
|
|
|
|
71, 71, 1721, 71, 1726, 71, 71, 1729, 1730, 71,
|
|
|
|
|
71, 1732, 71, 71, 71, 71, 1723, 71, 1736, 1737,
|
|
|
|
|
71, 1727, 1733, 1734, 71, 71, 1725, 1728, 71, 71,
|
|
|
|
|
1731, 71, 71, 71, 1743, 1740, 1735, 71, 1738, 71,
|
|
|
|
|
1739, 1741, 1747, 71, 1746, 71, 1752, 71, 71, 71,
|
|
|
|
|
1750, 71, 1749, 1745, 1751, 1742, 71, 1744, 1754, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 1748, 1753, 71, 71, 71, 1758, 71,
|
|
|
|
|
1761, 1755, 1762, 71, 1757, 71, 71, 71, 71, 71,
|
|
|
|
|
1756, 1765, 71, 71, 1759, 71, 71, 1771, 1764, 2820,
|
|
|
|
|
71, 71, 1772, 1760, 71, 1763, 1767, 1766, 1768, 1773,
|
|
|
|
|
1769, 1770, 1774, 71, 71, 1776, 1778, 71, 1775, 71,
|
|
|
|
|
1777, 71, 1779, 71, 71, 1784, 1781, 71, 71, 71,
|
|
|
|
|
71, 71, 1789, 1780, 1786, 1787, 71, 71, 1788, 1792,
|
|
|
|
|
71, 1790, 1785, 1782, 1783, 1794, 1791, 1793, 71, 1796,
|
|
|
|
|
1795, 71, 1797, 71, 71, 71, 1800, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 1802, 1805, 71, 1799, 1807, 71, 1801,
|
|
|
|
|
|
|
|
|
|
71, 71, 1803, 71, 71, 71, 71, 71, 1812, 1798,
|
|
|
|
|
1808, 1811, 2820, 1809, 71, 1813, 1804, 1806, 1814, 71,
|
|
|
|
|
1815, 71, 1817, 1810, 71, 71, 71, 1816, 71, 71,
|
|
|
|
|
1818, 1819, 71, 71, 1821, 1820, 1823, 1822, 71, 71,
|
|
|
|
|
1825, 71, 71, 71, 1829, 71, 71, 71, 1828, 71,
|
|
|
|
|
1824, 71, 1831, 1826, 1827, 1830, 1832, 1833, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 1838, 1840, 1835, 1834,
|
|
|
|
|
1839, 71, 1842, 71, 71, 71, 71, 1841, 1836, 71,
|
|
|
|
|
1837, 71, 1844, 1843, 1845, 71, 1846, 71, 1847, 1851,
|
|
|
|
|
1852, 71, 1850, 1848, 71, 1849, 71, 1853, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 1858, 71, 71, 1860, 71, 71, 71, 1861, 1862,
|
|
|
|
|
71, 71, 1854, 1857, 1855, 1856, 71, 71, 1864, 1859,
|
|
|
|
|
71, 1866, 71, 71, 1863, 1865, 1867, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 1869, 71, 1874, 71, 1870,
|
|
|
|
|
1871, 1878, 71, 1868, 71, 1873, 1877, 1881, 71, 71,
|
|
|
|
|
1875, 1879, 1876, 1882, 1884, 1872, 1880, 71, 1883, 1885,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 1887, 71, 71, 1888,
|
|
|
|
|
1892, 71, 1889, 1890, 71, 71, 1894, 1891, 1886, 1896,
|
|
|
|
|
71, 71, 71, 1899, 71, 1895, 1893, 1898, 71, 1900,
|
|
|
|
|
71, 71, 1904, 1901, 71, 71, 71, 71, 71, 1905,
|
|
|
|
|
|
|
|
|
|
71, 1897, 71, 1907, 1910, 71, 71, 1911, 1902, 1906,
|
|
|
|
|
71, 1903, 1914, 2820, 1909, 71, 1908, 1912, 71, 71,
|
|
|
|
|
1915, 1916, 71, 71, 1919, 71, 71, 1921, 71, 1922,
|
|
|
|
|
1913, 1917, 71, 71, 1920, 71, 71, 1926, 1928, 1918,
|
|
|
|
|
71, 1923, 1924, 1929, 71, 1925, 71, 71, 71, 1930,
|
|
|
|
|
71, 71, 71, 1933, 71, 1934, 71, 1927, 1931, 1932,
|
|
|
|
|
1937, 71, 71, 71, 1935, 71, 71, 71, 71, 71,
|
|
|
|
|
1940, 71, 1936, 1945, 1938, 1947, 71, 1941, 71, 1943,
|
|
|
|
|
1939, 1942, 71, 1944, 1949, 71, 71, 1946, 1948, 71,
|
|
|
|
|
1952, 1954, 71, 1956, 71, 1953, 71, 71, 1955, 1950,
|
|
|
|
|
|
|
|
|
|
1951, 1958, 71, 71, 1961, 1963, 1964, 1959, 71, 1962,
|
|
|
|
|
71, 71, 71, 71, 71, 1957, 1960, 1965, 1968, 71,
|
|
|
|
|
71, 1966, 71, 1969, 1973, 71, 71, 1974, 1967, 1972,
|
|
|
|
|
71, 71, 1977, 71, 71, 71, 1979, 1970, 71, 1978,
|
|
|
|
|
1980, 71, 1975, 71, 71, 71, 1982, 1983, 1971, 1976,
|
|
|
|
|
1981, 71, 71, 1984, 71, 1985, 71, 71, 71, 1987,
|
|
|
|
|
71, 71, 71, 1990, 1993, 71, 1994, 71, 71, 1986,
|
|
|
|
|
71, 71, 1989, 1996, 71, 71, 71, 1992, 1991, 1988,
|
|
|
|
|
2000, 71, 1995, 1998, 2003, 71, 71, 71, 71, 2001,
|
|
|
|
|
71, 71, 71, 1999, 2004, 71, 1997, 71, 71, 2002,
|
|
|
|
|
|
|
|
|
|
2014, 71, 71, 71, 71, 71, 2005, 2006, 2015, 2011,
|
|
|
|
|
71, 2009, 71, 2007, 2247, 2008, 2010, 2013, 2017, 2012,
|
|
|
|
|
71, 2019, 71, 2016, 71, 2018, 2020, 71, 2021, 71,
|
|
|
|
|
71, 71, 2024, 2025, 2027, 71, 2026, 2022, 71, 71,
|
|
|
|
|
71, 71, 71, 2023, 2028, 2029, 2033, 71, 2034, 71,
|
|
|
|
|
71, 2036, 71, 71, 2032, 2038, 71, 71, 2030, 2040,
|
|
|
|
|
71, 2031, 2041, 71, 71, 71, 71, 71, 71, 2035,
|
|
|
|
|
71, 2037, 2039, 2046, 2043, 2047, 71, 71, 2042, 71,
|
|
|
|
|
2044, 2049, 71, 71, 71, 2051, 2045, 2052, 71, 2048,
|
|
|
|
|
71, 2053, 2055, 71, 71, 2050, 2059, 71, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 2056, 2057, 71, 2063, 2054, 2064, 71, 71,
|
|
|
|
|
71, 2068, 71, 2058, 71, 2062, 71, 71, 2060, 71,
|
|
|
|
|
71, 2073, 2061, 2065, 2066, 2067, 2070, 71, 71, 71,
|
|
|
|
|
2071, 2075, 71, 71, 2069, 71, 2074, 71, 2078, 71,
|
|
|
|
|
2079, 71, 71, 2072, 2077, 71, 2083, 2087, 2076, 71,
|
|
|
|
|
2084, 71, 2081, 71, 2085, 71, 71, 71, 2089, 71,
|
|
|
|
|
71, 2090, 2080, 2082, 71, 71, 2086, 71, 71, 2093,
|
|
|
|
|
71, 71, 2092, 71, 2094, 2099, 2088, 2095, 2098, 2096,
|
|
|
|
|
71, 2097, 2091, 71, 71, 71, 2102, 71, 2103, 2101,
|
|
|
|
|
71, 2104, 71, 2100, 71, 71, 2110, 71, 71, 2105,
|
|
|
|
|
|
|
|
|
|
71, 71, 2111, 2106, 71, 2107, 71, 2112, 2108, 71,
|
|
|
|
|
71, 2109, 2113, 2117, 2118, 71, 71, 2114, 2116, 2115,
|
|
|
|
|
2121, 71, 71, 2122, 2123, 71, 71, 71, 2120, 2124,
|
|
|
|
|
2126, 2127, 2125, 2128, 71, 2119, 71, 71, 71, 71,
|
|
|
|
|
2130, 71, 71, 71, 71, 2134, 71, 71, 71, 2820,
|
|
|
|
|
2135, 2136, 2129, 2131, 2137, 71, 2132, 71, 71, 71,
|
|
|
|
|
71, 71, 2133, 2138, 2141, 71, 2139, 2140, 2142, 71,
|
|
|
|
|
2144, 71, 2143, 71, 71, 71, 71, 71, 2148, 2151,
|
|
|
|
|
71, 2145, 2150, 71, 71, 71, 2152, 2147, 71, 2155,
|
|
|
|
|
2156, 2146, 71, 71, 2153, 2149, 71, 71, 2160, 2154,
|
|
|
|
|
|
|
|
|
|
2157, 71, 2159, 2158, 71, 71, 2163, 2161, 71, 2165,
|
|
|
|
|
71, 71, 2164, 2167, 71, 71, 2169, 71, 71, 2162,
|
|
|
|
|
2168, 71, 2166, 71, 71, 71, 71, 71, 2172, 71,
|
|
|
|
|
2174, 2175, 2176, 71, 2178, 2171, 2170, 2177, 71, 71,
|
|
|
|
|
71, 71, 2179, 2180, 2182, 71, 71, 2185, 71, 2187,
|
|
|
|
|
2173, 2181, 71, 71, 71, 71, 2190, 71, 2184, 71,
|
|
|
|
|
2820, 2186, 71, 71, 2183, 71, 2193, 2194, 71, 2189,
|
|
|
|
|
71, 2188, 71, 71, 71, 2195, 2197, 2196, 2191, 71,
|
|
|
|
|
2192, 71, 71, 2200, 2202, 71, 2201, 2198, 2203, 71,
|
|
|
|
|
2204, 71, 71, 2199, 2205, 71, 71, 2208, 71, 2209,
|
|
|
|
|
|
|
|
|
|
2207, 71, 71, 71, 2206, 71, 2214, 71, 2215, 71,
|
|
|
|
|
2216, 71, 71, 2210, 2211, 71, 71, 71, 71, 71,
|
|
|
|
|
71, 2213, 2218, 2212, 2217, 2221, 2223, 71, 2219, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 2230, 71, 2220, 2222, 2224,
|
|
|
|
|
71, 71, 71, 71, 2227, 2225, 71, 2229, 71, 2226,
|
|
|
|
|
2231, 2232, 2820, 71, 71, 2233, 2228, 2237, 2239, 71,
|
|
|
|
|
2234, 71, 2238, 71, 2240, 2235, 2241, 71, 71, 2236,
|
|
|
|
|
2242, 71, 71, 2243, 71, 2244, 71, 2245, 71, 2246,
|
|
|
|
|
71, 71, 2248, 71, 71, 71, 71, 2256, 2249, 2257,
|
|
|
|
|
71, 71, 2253, 2260, 71, 71, 2250, 71, 71, 2262,
|
|
|
|
|
|
|
|
|
|
71, 2252, 2251, 2255, 2254, 71, 2259, 2261, 71, 71,
|
|
|
|
|
2266, 71, 71, 2258, 71, 71, 2265, 2271, 71, 2272,
|
|
|
|
|
71, 2273, 71, 2263, 71, 71, 2264, 71, 71, 2267,
|
|
|
|
|
2268, 2269, 71, 2270, 71, 71, 71, 2277, 71, 2275,
|
|
|
|
|
2274, 2280, 71, 71, 2276, 2281, 2282, 71, 2278, 71,
|
|
|
|
|
71, 2283, 2284, 71, 2279, 2288, 71, 2285, 71, 2286,
|
|
|
|
|
71, 2287, 71, 2289, 71, 2294, 71, 2293, 71, 71,
|
|
|
|
|
2297, 71, 71, 71, 71, 71, 2290, 2298, 71, 2291,
|
|
|
|
|
71, 71, 2292, 2295, 2300, 2301, 71, 2296, 2302, 2299,
|
|
|
|
|
2305, 71, 2303, 2306, 2307, 71, 71, 71, 2304, 2309,
|
|
|
|
|
|
|
|
|
|
71, 71, 2310, 2312, 71, 71, 2313, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 2311, 71, 2308, 2319, 71, 71, 2317,
|
|
|
|
|
2318, 2315, 2316, 2321, 71, 71, 71, 2320, 2322, 2314,
|
|
|
|
|
2323, 71, 2324, 71, 71, 71, 71, 2331, 71, 2326,
|
|
|
|
|
2328, 2329, 2332, 71, 71, 2325, 71, 71, 2327, 2330,
|
|
|
|
|
71, 2333, 2334, 2337, 71, 71, 71, 2339, 71, 71,
|
|
|
|
|
2338, 2342, 71, 2341, 2335, 2343, 71, 71, 2336, 2340,
|
|
|
|
|
2345, 71, 71, 2347, 2820, 2346, 71, 71, 2348, 71,
|
|
|
|
|
2344, 2349, 2350, 2351, 71, 71, 71, 71, 2352, 71,
|
|
|
|
|
2353, 71, 71, 71, 71, 2354, 71, 2357, 71, 2356,
|
|
|
|
|
|
|
|
|
|
71, 2359, 2355, 2360, 71, 2358, 2361, 71, 71, 2362,
|
|
|
|
|
71, 71, 2363, 71, 2368, 71, 2364, 71, 71, 2366,
|
|
|
|
|
2367, 2365, 71, 71, 2369, 2373, 71, 71, 71, 71,
|
|
|
|
|
2377, 71, 71, 71, 2383, 71, 2370, 2375, 2371, 2381,
|
|
|
|
|
71, 2372, 2374, 2820, 2376, 2384, 2378, 2379, 2382, 71,
|
|
|
|
|
2385, 71, 71, 2380, 2386, 71, 71, 71, 71, 71,
|
|
|
|
|
2387, 71, 2388, 71, 71, 2391, 71, 2389, 71, 2394,
|
|
|
|
|
2395, 71, 2390, 2396, 71, 2397, 71, 2392, 2400, 2393,
|
|
|
|
|
2398, 71, 71, 2401, 71, 71, 2399, 71, 2403, 2404,
|
|
|
|
|
71, 2405, 71, 71, 71, 71, 2406, 71, 2407, 2409,
|
|
|
|
|
|
|
|
|
|
71, 71, 2402, 71, 2410, 2411, 71, 2413, 71, 71,
|
|
|
|
|
2412, 2416, 2408, 2417, 71, 2414, 71, 71, 71, 2419,
|
|
|
|
|
2418, 2422, 71, 2415, 2420, 71, 71, 2425, 71, 71,
|
|
|
|
|
71, 71, 2424, 71, 2427, 2428, 71, 2430, 71, 71,
|
|
|
|
|
71, 2421, 2423, 2429, 71, 71, 71, 2431, 2433, 71,
|
|
|
|
|
71, 2436, 71, 2426, 2440, 71, 2432, 2434, 2435, 2438,
|
|
|
|
|
71, 71, 2446, 71, 2439, 71, 2447, 2437, 2442, 2443,
|
|
|
|
|
71, 2441, 71, 2448, 2444, 71, 71, 2449, 71, 2450,
|
|
|
|
|
2445, 71, 71, 71, 71, 71, 2451, 2452, 71, 2458,
|
|
|
|
|
71, 71, 71, 2455, 2459, 2461, 71, 71, 2463, 71,
|
|
|
|
|
|
|
|
|
|
71, 2453, 71, 71, 2462, 2456, 71, 2464, 2457, 2454,
|
|
|
|
|
2460, 71, 2465, 2469, 71, 2466, 71, 71, 2468, 71,
|
|
|
|
|
2467, 2470, 2473, 71, 71, 2471, 71, 2474, 71, 2477,
|
|
|
|
|
71, 71, 71, 2476, 2472, 71, 2475, 71, 71, 71,
|
|
|
|
|
2479, 71, 2820, 71, 2478, 71, 2482, 2480, 2486, 71,
|
|
|
|
|
2487, 2484, 71, 2490, 2488, 71, 2491, 2481, 2483, 71,
|
|
|
|
|
2489, 71, 2485, 2492, 71, 2493, 71, 2494, 71, 71,
|
|
|
|
|
2495, 71, 2499, 2502, 71, 71, 2498, 71, 71, 2496,
|
|
|
|
|
2500, 71, 2501, 71, 71, 71, 2507, 71, 2497, 2505,
|
|
|
|
|
2509, 71, 71, 71, 71, 71, 2513, 71, 71, 2503,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 2506, 2504, 71, 2516, 71, 2511, 2517,
|
|
|
|
|
71, 2514, 2508, 2510, 2515, 2512, 71, 71, 2520, 2523,
|
|
|
|
|
71, 2518, 2521, 71, 71, 71, 2519, 2525, 71, 2526,
|
|
|
|
|
71, 2528, 71, 71, 71, 71, 2533, 71, 71, 71,
|
|
|
|
|
2532, 2529, 2522, 2524, 2527, 71, 71, 2537, 71, 2530,
|
|
|
|
|
2531, 71, 71, 2539, 2541, 71, 2542, 71, 2534, 71,
|
|
|
|
|
2544, 71, 2535, 71, 2536, 2538, 71, 2820, 71, 71,
|
|
|
|
|
71, 71, 2546, 71, 2540, 2551, 71, 71, 2553, 2543,
|
|
|
|
|
2545, 2549, 71, 2554, 71, 2552, 2547, 2548, 2556, 71,
|
|
|
|
|
2550, 2557, 71, 2555, 71, 71, 2559, 71, 2558, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 2563, 2561, 2562, 2564, 2560, 2567, 71,
|
|
|
|
|
2568, 71, 71, 71, 2565, 2566, 2571, 71, 2572, 71,
|
|
|
|
|
2569, 71, 2570, 71, 71, 71, 2573, 2576, 71, 2575,
|
|
|
|
|
2577, 71, 2578, 71, 71, 2580, 71, 2574, 71, 2579,
|
|
|
|
|
71, 71, 71, 2585, 2581, 2586, 71, 71, 71, 71,
|
|
|
|
|
2590, 71, 71, 71, 71, 2593, 71, 2820, 2589, 2592,
|
|
|
|
|
2582, 2587, 2583, 2584, 2594, 71, 2596, 2595, 2588, 71,
|
|
|
|
|
71, 2591, 71, 2598, 71, 2599, 71, 2597, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 2602, 71, 71, 2604, 71, 71,
|
|
|
|
|
2605, 71, 2603, 71, 71, 71, 2600, 71, 2601, 2614,
|
|
|
|
|
|
|
|
|
|
2617, 71, 2606, 71, 2610, 2607, 2608, 2609, 2611, 2612,
|
|
|
|
|
2616, 2618, 71, 71, 2613, 2615, 2699, 2619, 2620, 71,
|
|
|
|
|
2621, 71, 2622, 2623, 71, 71, 2624, 2625, 2628, 71,
|
|
|
|
|
2626, 2627, 71, 71, 2629, 71, 71, 71, 2633, 71,
|
|
|
|
|
71, 2632, 71, 71, 71, 71, 2635, 2634, 71, 2639,
|
|
|
|
|
2630, 2631, 2640, 71, 2638, 2641, 71, 71, 2636, 71,
|
|
|
|
|
2646, 71, 2637, 2648, 2643, 2647, 71, 71, 71, 71,
|
|
|
|
|
2644, 71, 2642, 2645, 71, 71, 2652, 71, 2655, 71,
|
|
|
|
|
2653, 71, 71, 2650, 2657, 71, 2656, 2658, 71, 2659,
|
|
|
|
|
71, 2665, 2649, 2660, 71, 2651, 2654, 2661, 71, 2662,
|
|
|
|
|
|
|
|
|
|
71, 2663, 71, 2664, 71, 2666, 71, 71, 2668, 71,
|
|
|
|
|
71, 71, 71, 2671, 71, 2673, 71, 71, 71, 71,
|
|
|
|
|
71, 2675, 2680, 2670, 71, 2669, 71, 2667, 71, 2672,
|
|
|
|
|
71, 2677, 71, 71, 71, 2674, 2679, 2682, 2678, 71,
|
|
|
|
|
2681, 71, 71, 2683, 71, 2676, 71, 2687, 2688, 71,
|
|
|
|
|
2690, 71, 2684, 71, 71, 2685, 2686, 71, 71, 71,
|
|
|
|
|
71, 2696, 71, 2695, 71, 2689, 71, 2692, 2694, 71,
|
|
|
|
|
2698, 2691, 71, 71, 71, 2697, 71, 2693, 71, 2708,
|
|
|
|
|
71, 2700, 2701, 71, 71, 2710, 71, 71, 2702, 2704,
|
|
|
|
|
71, 2703, 2707, 2709, 2705, 2717, 2706, 71, 2711, 2712,
|
|
|
|
|
|
|
|
|
|
71, 2713, 71, 2715, 71, 71, 2714, 2716, 71, 71,
|
|
|
|
|
2718, 2721, 71, 71, 71, 2724, 71, 71, 71, 71,
|
|
|
|
|
71, 2728, 71, 71, 2720, 2820, 2722, 71, 2729, 71,
|
|
|
|
|
71, 2730, 2725, 2719, 2723, 2726, 2727, 2732, 2731, 2733,
|
|
|
|
|
71, 71, 2735, 71, 2734, 71, 2737, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 2740, 71, 71, 2742, 71, 71, 2736,
|
|
|
|
|
71, 2738, 2739, 2747, 71, 2748, 71, 2744, 2745, 71,
|
|
|
|
|
2741, 2743, 2751, 71, 2752, 2753, 2746, 71, 2754, 71,
|
|
|
|
|
71, 71, 2749, 71, 2755, 2750, 71, 2759, 2756, 71,
|
|
|
|
|
71, 2757, 71, 71, 2760, 2761, 71, 71, 71, 2758,
|
|
|
|
|
|
|
|
|
|
71, 2762, 2767, 71, 71, 2764, 71, 2770, 71, 2763,
|
|
|
|
|
71, 2765, 2771, 71, 71, 2774, 71, 2769, 71, 2766,
|
|
|
|
|
71, 71, 2768, 2772, 71, 2778, 2773, 71, 71, 71,
|
|
|
|
|
2782, 71, 2779, 2777, 2780, 2775, 71, 2776, 71, 2784,
|
|
|
|
|
71, 2785, 71, 2787, 71, 2789, 71, 2786, 71, 71,
|
|
|
|
|
2783, 2791, 71, 2790, 2781, 2792, 71, 71, 71, 2793,
|
|
|
|
|
71, 71, 71, 2788, 2794, 2796, 2798, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 2800, 2801, 71, 2804, 2795, 2805, 71,
|
|
|
|
|
2797, 2799, 71, 71, 2808, 2809, 71, 71, 71, 2802,
|
|
|
|
|
2803, 2806, 2811, 71, 2810, 2812, 71, 71, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 2807, 2820, 2814, 2813, 2815, 2820, 2816, 2818, 71,
|
|
|
|
|
2819, 71, 2820, 2820, 2820, 2820, 2820, 2820, 2817, 43,
|
|
|
|
|
43, 43, 43, 43, 43, 43, 48, 48, 48, 48,
|
|
|
|
|
48, 48, 48, 53, 53, 53, 53, 53, 53, 53,
|
|
|
|
|
59, 59, 59, 59, 59, 59, 59, 64, 64, 64,
|
|
|
|
|
64, 64, 64, 64, 74, 74, 2820, 74, 74, 74,
|
|
|
|
|
74, 140, 140, 2820, 2820, 2820, 140, 140, 142, 142,
|
|
|
|
|
2820, 2820, 142, 2820, 142, 144, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820, 144, 147, 147, 2820, 2820, 2820, 147, 147, 149,
|
|
|
|
|
2820, 2820, 2820, 2820, 2820, 149, 151, 151, 2820, 151,
|
|
|
|
|
|
|
|
|
|
151, 151, 151, 75, 75, 2820, 75, 75, 75, 75,
|
|
|
|
|
13, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
static const flex_int16_t yy_chk[5552] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 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,
|
2017-03-09 08:18:08 -05:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
3, 3, 3, 4, 4, 4, 5, 5, 6, 6,
|
|
|
|
|
5, 3, 6, 20, 4, 20, 20, 5, 20, 6,
|
|
|
|
|
7, 7, 7, 7, 20, 7, 8, 8, 8, 8,
|
2018-02-08 08:16:36 -05:00
|
|
|
29, 8, 7, 9, 9, 9, 22, 22, 8, 10,
|
2018-10-25 04:53:50 -04:00
|
|
|
10, 10, 15, 25, 9, 29, 15, 25, 2826, 31,
|
2018-02-08 08:16:36 -05:00
|
|
|
10, 11, 11, 11, 11, 11, 11, 19, 79, 19,
|
|
|
|
|
|
|
|
|
|
19, 30, 19, 11, 31, 79, 30, 25, 19, 19,
|
|
|
|
|
47, 47, 11, 12, 12, 12, 12, 12, 12, 21,
|
2018-04-17 09:23:35 -04:00
|
|
|
23, 23, 21, 21, 24, 12, 21, 81, 23, 24,
|
2018-10-25 04:53:50 -04:00
|
|
|
34, 21, 23, 24, 12, 23, 24, 951, 24, 24,
|
2018-04-17 09:23:35 -04:00
|
|
|
21, 26, 26, 27, 27, 90, 28, 81, 32, 32,
|
|
|
|
|
28, 34, 27, 28, 33, 33, 26, 32, 36, 33,
|
|
|
|
|
28, 35, 28, 32, 90, 42, 35, 32, 52, 84,
|
|
|
|
|
35, 52, 36, 37, 37, 33, 35, 38, 37, 35,
|
|
|
|
|
42, 69, 38, 63, 63, 38, 35, 84, 37, 40,
|
|
|
|
|
72, 37, 38, 40, 72, 69, 38, 38, 39, 39,
|
|
|
|
|
|
|
|
|
|
102, 39, 78, 40, 41, 41, 78, 40, 40, 41,
|
|
|
|
|
39, 149, 58, 41, 58, 58, 39, 58, 66, 102,
|
|
|
|
|
66, 66, 68, 66, 68, 68, 71, 68, 71, 71,
|
|
|
|
|
66, 71, 85, 74, 80, 74, 74, 71, 74, 77,
|
2018-10-25 04:07:37 -04:00
|
|
|
82, 85, 77, 82, 74, 74, 80, 83, 86, 88,
|
|
|
|
|
83, 89, 87, 91, 93, 92, 98, 95, 87, 91,
|
|
|
|
|
96, 98, 86, 83, 87, 94, 87, 88, 88, 92,
|
|
|
|
|
159, 99, 91, 89, 93, 95, 94, 94, 96, 97,
|
|
|
|
|
105, 159, 101, 97, 94, 99, 100, 106, 101, 100,
|
|
|
|
|
103, 104, 100, 107, 104, 103, 108, 107, 104, 105,
|
|
|
|
|
|
|
|
|
|
109, 106, 110, 108, 105, 100, 100, 101, 111, 110,
|
|
|
|
|
112, 113, 114, 109, 104, 103, 114, 115, 116, 117,
|
|
|
|
|
119, 111, 121, 116, 118, 118, 122, 116, 120, 113,
|
|
|
|
|
112, 124, 120, 127, 127, 115, 125, 121, 126, 117,
|
|
|
|
|
119, 120, 125, 123, 124, 122, 123, 120, 128, 129,
|
|
|
|
|
126, 130, 131, 132, 127, 134, 133, 123, 133, 135,
|
|
|
|
|
136, 123, 137, 138, 135, 129, 128, 134, 138, 132,
|
|
|
|
|
130, 139, 136, 131, 141, 141, 148, 148, 143, 133,
|
|
|
|
|
137, 143, 147, 156, 145, 139, 145, 145, 150, 145,
|
|
|
|
|
150, 150, 151, 150, 151, 151, 153, 151, 154, 153,
|
|
|
|
|
|
|
|
|
|
155, 156, 157, 154, 151, 158, 155, 161, 160, 162,
|
|
|
|
|
164, 167, 165, 158, 163, 155, 160, 157, 168, 163,
|
|
|
|
|
158, 165, 166, 168, 162, 174, 161, 170, 166, 166,
|
|
|
|
|
164, 169, 169, 170, 172, 171, 167, 171, 172, 182,
|
|
|
|
|
171, 173, 173, 172, 174, 175, 176, 177, 172, 178,
|
|
|
|
|
175, 176, 179, 182, 172, 172, 180, 171, 179, 177,
|
|
|
|
|
180, 181, 183, 184, 185, 186, 181, 187, 190, 178,
|
|
|
|
|
186, 189, 187, 188, 188, 184, 189, 183, 184, 188,
|
|
|
|
|
191, 179, 185, 192, 193, 193, 194, 196, 190, 192,
|
2018-10-25 04:53:50 -04:00
|
|
|
199, 188, 194, 188, 195, 197, 191, 198, 194, 200,
|
|
|
|
|
|
|
|
|
|
195, 197, 202, 198, 201, 200, 204, 196, 202, 201,
|
|
|
|
|
203, 199, 198, 204, 205, 206, 203, 207, 208, 209,
|
|
|
|
|
210, 206, 211, 213, 208, 212, 215, 205, 210, 214,
|
|
|
|
|
212, 216, 213, 217, 218, 211, 219, 207, 217, 220,
|
|
|
|
|
219, 209, 215, 221, 214, 222, 224, 223, 225, 221,
|
|
|
|
|
225, 216, 218, 223, 227, 226, 229, 231, 146, 228,
|
|
|
|
|
227, 220, 226, 222, 222, 228, 224, 230, 234, 231,
|
|
|
|
|
232, 232, 235, 230, 234, 229, 233, 233, 235, 236,
|
|
|
|
|
237, 236, 238, 239, 243, 240, 241, 238, 242, 243,
|
|
|
|
|
244, 245, 234, 246, 241, 239, 247, 245, 236, 246,
|
|
|
|
|
|
|
|
|
|
248, 247, 250, 237, 240, 248, 249, 251, 242, 252,
|
|
|
|
|
253, 254, 249, 244, 255, 257, 256, 250, 257, 254,
|
|
|
|
|
261, 251, 256, 258, 253, 258, 264, 252, 259, 259,
|
|
|
|
|
260, 262, 262, 260, 263, 263, 265, 266, 261, 255,
|
|
|
|
|
266, 267, 264, 268, 269, 267, 270, 271, 278, 273,
|
|
|
|
|
269, 265, 268, 271, 272, 273, 272, 274, 275, 275,
|
|
|
|
|
270, 274, 276, 277, 279, 280, 281, 276, 278, 277,
|
|
|
|
|
282, 282, 283, 284, 286, 283, 285, 288, 274, 281,
|
|
|
|
|
285, 290, 279, 287, 287, 289, 280, 293, 289, 295,
|
|
|
|
|
291, 284, 286, 290, 292, 288, 291, 292, 295, 293,
|
|
|
|
|
|
|
|
|
|
294, 297, 298, 296, 301, 298, 297, 298, 299, 294,
|
|
|
|
|
144, 299, 294, 300, 303, 303, 301, 294, 294, 294,
|
|
|
|
|
294, 296, 302, 298, 302, 302, 300, 304, 305, 306,
|
|
|
|
|
304, 307, 308, 309, 309, 311, 311, 310, 312, 315,
|
|
|
|
|
307, 308, 310, 314, 306, 305, 313, 316, 305, 317,
|
|
|
|
|
318, 313, 319, 312, 320, 314, 318, 321, 315, 320,
|
|
|
|
|
322, 354, 325, 321, 317, 322, 323, 316, 332, 333,
|
|
|
|
|
324, 323, 319, 324, 327, 324, 325, 323, 326, 328,
|
|
|
|
|
334, 326, 329, 327, 354, 328, 335, 329, 332, 330,
|
|
|
|
|
333, 338, 330, 340, 326, 334, 344, 326, 330, 326,
|
|
|
|
|
|
|
|
|
|
335, 337, 330, 343, 337, 338, 341, 345, 340, 343,
|
|
|
|
|
330, 331, 331, 342, 331, 341, 346, 344, 342, 342,
|
|
|
|
|
337, 348, 349, 351, 347, 352, 345, 331, 349, 350,
|
|
|
|
|
331, 346, 331, 347, 331, 339, 353, 339, 339, 352,
|
|
|
|
|
348, 355, 353, 351, 356, 357, 353, 339, 358, 339,
|
|
|
|
|
339, 339, 359, 358, 339, 350, 360, 361, 361, 362,
|
|
|
|
|
357, 355, 360, 363, 356, 365, 364, 359, 366, 367,
|
|
|
|
|
370, 365, 368, 369, 369, 363, 369, 368, 371, 362,
|
|
|
|
|
364, 372, 373, 375, 374, 367, 374, 375, 376, 378,
|
|
|
|
|
370, 379, 376, 366, 371, 380, 373, 372, 377, 377,
|
|
|
|
|
|
|
|
|
|
381, 382, 142, 383, 374, 384, 379, 376, 378, 386,
|
|
|
|
|
387, 380, 383, 386, 384, 382, 385, 389, 381, 387,
|
|
|
|
|
388, 385, 390, 383, 392, 383, 388, 391, 390, 392,
|
|
|
|
|
393, 391, 394, 394, 395, 396, 397, 399, 389, 401,
|
|
|
|
|
396, 398, 398, 399, 400, 402, 403, 395, 400, 397,
|
|
|
|
|
393, 403, 404, 405, 401, 406, 407, 404, 409, 408,
|
|
|
|
|
410, 411, 405, 410, 414, 411, 402, 406, 412, 414,
|
|
|
|
|
409, 413, 413, 415, 416, 416, 407, 408, 418, 418,
|
|
|
|
|
412, 419, 420, 421, 422, 423, 426, 425, 140, 427,
|
|
|
|
|
420, 429, 421, 428, 415, 430, 432, 423, 70, 428,
|
|
|
|
|
|
|
|
|
|
429, 430, 419, 427, 422, 425, 426, 425, 431, 433,
|
|
|
|
|
432, 435, 434, 431, 438, 437, 436, 433, 434, 436,
|
|
|
|
|
433, 437, 439, 440, 443, 441, 442, 439, 438, 443,
|
|
|
|
|
442, 435, 444, 445, 446, 447, 450, 449, 445, 437,
|
|
|
|
|
451, 452, 453, 64, 451, 440, 441, 444, 454, 458,
|
|
|
|
|
446, 450, 454, 456, 447, 448, 448, 449, 453, 455,
|
|
|
|
|
452, 448, 457, 448, 455, 458, 460, 457, 456, 448,
|
|
|
|
|
459, 448, 460, 461, 448, 448, 463, 460, 465, 459,
|
|
|
|
|
462, 448, 467, 462, 464, 464, 466, 466, 468, 461,
|
|
|
|
|
469, 470, 471, 472, 474, 473, 463, 467, 472, 59,
|
|
|
|
|
|
|
|
|
|
468, 475, 476, 465, 473, 469, 478, 479, 476, 481,
|
|
|
|
|
470, 479, 480, 474, 471, 478, 475, 482, 480, 483,
|
|
|
|
|
484, 481, 485, 486, 487, 489, 488, 489, 487, 491,
|
|
|
|
|
491, 54, 482, 493, 484, 490, 492, 485, 483, 488,
|
|
|
|
|
494, 486, 492, 490, 495, 493, 494, 496, 497, 498,
|
|
|
|
|
496, 500, 499, 502, 500, 503, 495, 499, 501, 504,
|
|
|
|
|
503, 503, 497, 53, 498, 505, 505, 501, 511, 502,
|
|
|
|
|
506, 506, 504, 507, 501, 508, 508, 501, 510, 507,
|
|
|
|
|
509, 509, 512, 513, 510, 512, 514, 515, 513, 511,
|
|
|
|
|
516, 517, 518, 516, 519, 515, 517, 520, 521, 522,
|
|
|
|
|
|
|
|
|
|
523, 520, 524, 522, 521, 514, 525, 524, 526, 528,
|
|
|
|
|
530, 527, 532, 519, 526, 518, 527, 529, 523, 533,
|
|
|
|
|
529, 531, 531, 528, 533, 529, 525, 534, 530, 529,
|
|
|
|
|
532, 535, 534, 536, 537, 538, 539, 540, 541, 539,
|
|
|
|
|
537, 540, 543, 541, 538, 535, 542, 543, 536, 542,
|
|
|
|
|
544, 545, 546, 547, 548, 549, 549, 551, 547, 550,
|
|
|
|
|
554, 552, 553, 540, 555, 546, 544, 556, 550, 545,
|
|
|
|
|
555, 553, 554, 556, 548, 557, 551, 552, 557, 558,
|
|
|
|
|
559, 560, 558, 561, 562, 559, 563, 564, 48, 565,
|
|
|
|
|
562, 563, 565, 564, 568, 566, 567, 561, 569, 560,
|
|
|
|
|
|
|
|
|
|
566, 567, 567, 570, 571, 572, 573, 568, 574, 575,
|
|
|
|
|
571, 569, 575, 574, 576, 573, 577, 580, 580, 581,
|
|
|
|
|
576, 578, 570, 570, 572, 579, 578, 575, 577, 583,
|
|
|
|
|
579, 579, 582, 584, 582, 584, 585, 586, 587, 588,
|
|
|
|
|
589, 590, 591, 43, 581, 590, 592, 593, 583, 594,
|
|
|
|
|
595, 591, 596, 597, 585, 586, 587, 598, 588, 599,
|
|
|
|
|
589, 592, 593, 598, 596, 600, 601, 594, 597, 595,
|
|
|
|
|
602, 603, 604, 599, 605, 603, 606, 600, 607, 608,
|
|
|
|
|
609, 609, 610, 611, 612, 601, 610, 614, 615, 602,
|
|
|
|
|
604, 613, 605, 608, 606, 612, 613, 607, 616, 617,
|
|
|
|
|
|
|
|
|
|
618, 619, 611, 614, 620, 618, 617, 615, 619, 620,
|
|
|
|
|
621, 616, 622, 623, 624, 621, 626, 625, 630, 628,
|
|
|
|
|
623, 627, 630, 624, 628, 626, 629, 631, 632, 629,
|
|
|
|
|
622, 625, 633, 627, 634, 635, 641, 632, 636, 636,
|
|
|
|
|
639, 631, 637, 637, 638, 638, 642, 633, 634, 639,
|
|
|
|
|
643, 637, 642, 644, 645, 641, 635, 644, 646, 647,
|
|
|
|
|
649, 648, 650, 651, 652, 653, 645, 648, 649, 650,
|
|
|
|
|
643, 656, 663, 659, 14, 654, 664, 647, 663, 662,
|
|
|
|
|
654, 651, 668, 646, 654, 653, 656, 654, 662, 652,
|
|
|
|
|
659, 665, 664, 668, 654, 665, 669, 654, 666, 666,
|
|
|
|
|
|
|
|
|
|
667, 667, 670, 671, 672, 677, 674, 13, 675, 676,
|
|
|
|
|
672, 674, 678, 680, 669, 678, 670, 679, 679, 682,
|
|
|
|
|
680, 681, 681, 671, 673, 673, 673, 676, 673, 675,
|
|
|
|
|
677, 673, 683, 683, 682, 684, 673, 688, 685, 686,
|
|
|
|
|
684, 685, 673, 673, 686, 687, 689, 687, 690, 688,
|
|
|
|
|
691, 693, 690, 692, 694, 694, 695, 697, 697, 693,
|
|
|
|
|
696, 698, 700, 699, 701, 689, 702, 702, 705, 701,
|
|
|
|
|
691, 695, 692, 705, 696, 699, 703, 706, 714, 698,
|
|
|
|
|
707, 703, 703, 706, 700, 708, 707, 709, 710, 711,
|
|
|
|
|
708, 710, 712, 709, 713, 711, 714, 716, 715, 717,
|
|
|
|
|
|
|
|
|
|
712, 719, 713, 715, 716, 718, 718, 720, 721, 722,
|
|
|
|
|
719, 724, 725, 730, 721, 720, 727, 726, 717, 729,
|
|
|
|
|
724, 725, 726, 728, 729, 727, 728, 730, 722, 731,
|
|
|
|
|
732, 732, 733, 734, 735, 736, 739, 737, 739, 741,
|
|
|
|
|
737, 740, 740, 735, 742, 743, 746, 733, 737, 742,
|
|
|
|
|
744, 745, 734, 747, 731, 748, 750, 749, 751, 736,
|
|
|
|
|
741, 749, 755, 752, 748, 756, 743, 753, 746, 752,
|
|
|
|
|
744, 745, 754, 747, 750, 758, 753, 751, 759, 756,
|
|
|
|
|
757, 755, 761, 759, 754, 762, 757, 760, 760, 758,
|
|
|
|
|
763, 764, 765, 766, 762, 767, 770, 769, 768, 771,
|
|
|
|
|
|
|
|
|
|
772, 767, 761, 769, 772, 771, 773, 774, 776, 0,
|
|
|
|
|
763, 764, 768, 766, 765, 775, 770, 777, 777, 774,
|
|
|
|
|
775, 779, 778, 780, 779, 773, 781, 774, 778, 776,
|
|
|
|
|
782, 783, 784, 784, 785, 786, 782, 787, 787, 781,
|
|
|
|
|
786, 780, 788, 789, 790, 790, 791, 789, 793, 792,
|
|
|
|
|
796, 783, 785, 793, 794, 799, 797, 788, 800, 802,
|
|
|
|
|
802, 803, 804, 805, 805, 803, 808, 806, 791, 792,
|
|
|
|
|
797, 969, 807, 794, 796, 799, 807, 804, 969, 800,
|
|
|
|
|
801, 808, 810, 801, 809, 801, 811, 810, 812, 801,
|
|
|
|
|
813, 801, 806, 812, 812, 814, 801, 815, 809, 814,
|
|
|
|
|
|
|
|
|
|
811, 801, 816, 817, 813, 818, 819, 816, 817, 820,
|
|
|
|
|
821, 827, 815, 825, 822, 823, 821, 816, 825, 818,
|
|
|
|
|
822, 823, 826, 820, 824, 824, 828, 819, 826, 829,
|
|
|
|
|
831, 832, 833, 827, 835, 835, 832, 0, 834, 836,
|
|
|
|
|
839, 838, 831, 837, 836, 828, 833, 829, 830, 830,
|
|
|
|
|
834, 837, 840, 846, 830, 838, 830, 841, 841, 839,
|
|
|
|
|
842, 849, 830, 844, 842, 847, 849, 830, 830, 844,
|
|
|
|
|
845, 840, 846, 845, 830, 848, 850, 851, 847, 852,
|
|
|
|
|
853, 848, 855, 854, 856, 857, 851, 858, 852, 854,
|
|
|
|
|
857, 855, 859, 860, 864, 850, 853, 861, 865, 862,
|
|
|
|
|
|
|
|
|
|
864, 863, 867, 856, 865, 869, 859, 858, 862, 861,
|
|
|
|
|
863, 870, 872, 860, 871, 874, 873, 875, 867, 869,
|
|
|
|
|
876, 0, 875, 877, 883, 876, 872, 878, 877, 880,
|
|
|
|
|
874, 870, 881, 871, 873, 880, 878, 879, 879, 886,
|
|
|
|
|
883, 884, 886, 887, 888, 881, 884, 884, 885, 885,
|
|
|
|
|
889, 893, 885, 890, 891, 892, 894, 887, 896, 899,
|
|
|
|
|
895, 892, 894, 895, 888, 897, 890, 898, 889, 891,
|
|
|
|
|
897, 893, 898, 900, 902, 899, 901, 904, 900, 896,
|
|
|
|
|
905, 901, 906, 904, 907, 909, 902, 910, 906, 912,
|
|
|
|
|
907, 908, 908, 913, 909, 911, 905, 914, 911, 915,
|
|
|
|
|
|
|
|
|
|
916, 919, 915, 917, 918, 910, 919, 912, 924, 917,
|
|
|
|
|
918, 920, 913, 916, 921, 922, 920, 914, 925, 921,
|
|
|
|
|
928, 922, 926, 927, 927, 929, 924, 930, 926, 928,
|
|
|
|
|
930, 931, 933, 932, 931, 934, 935, 937, 925, 936,
|
|
|
|
|
940, 938, 935, 929, 932, 936, 938, 934, 939, 939,
|
|
|
|
|
933, 941, 937, 943, 942, 944, 946, 943, 945, 940,
|
|
|
|
|
947, 949, 950, 950, 952, 941, 942, 945, 953, 954,
|
|
|
|
|
956, 955, 958, 944, 985, 946, 955, 985, 952, 956,
|
|
|
|
|
949, 954, 959, 953, 960, 947, 957, 957, 959, 961,
|
|
|
|
|
960, 962, 958, 962, 961, 963, 964, 965, 966, 967,
|
|
|
|
|
|
|
|
|
|
963, 968, 970, 966, 971, 973, 973, 974, 975, 976,
|
|
|
|
|
964, 965, 977, 978, 967, 981, 981, 970, 977, 986,
|
|
|
|
|
968, 974, 979, 971, 976, 982, 975, 979, 983, 984,
|
|
|
|
|
982, 987, 989, 978, 988, 983, 979, 986, 979, 988,
|
|
|
|
|
987, 979, 990, 984, 991, 992, 997, 990, 994, 994,
|
|
|
|
|
1001, 989, 995, 996, 998, 991, 999, 995, 996, 998,
|
|
|
|
|
999, 1000, 1002, 1003, 992, 1001, 997, 1004, 1005, 1006,
|
|
|
|
|
1000, 1008, 1007, 1009, 1010, 1011, 1006, 1002, 1012, 1004,
|
|
|
|
|
1013, 1011, 1003, 1005, 1007, 1014, 1015, 1018, 1019, 1020,
|
|
|
|
|
1008, 1017, 1010, 1012, 1009, 1015, 1019, 1017, 1021, 1022,
|
|
|
|
|
|
|
|
|
|
1013, 1018, 1023, 1021, 1024, 1014, 1025, 1023, 1023, 1020,
|
|
|
|
|
1030, 1022, 1026, 1027, 1027, 1029, 1031, 1032, 1032, 1030,
|
|
|
|
|
1025, 1034, 1031, 1024, 1033, 1026, 1028, 1035, 1029, 1033,
|
|
|
|
|
1034, 1028, 1036, 1035, 1028, 1028, 1037, 1036, 1041, 1028,
|
|
|
|
|
1044, 1037, 1038, 1038, 1042, 1028, 1039, 1039, 1040, 1028,
|
|
|
|
|
1043, 1040, 1045, 1040, 1046, 1047, 0, 1045, 1041, 1043,
|
|
|
|
|
1044, 1048, 1042, 1049, 1054, 1050, 1054, 1048, 1046, 1049,
|
|
|
|
|
1050, 1051, 1052, 1047, 1055, 1051, 1053, 1053, 1057, 1058,
|
|
|
|
|
1059, 1052, 1057, 1062, 1060, 1055, 1052, 1064, 1052, 0,
|
|
|
|
|
1052, 1061, 1052, 1060, 1058, 1063, 1061, 1061, 1059, 1065,
|
|
|
|
|
|
|
|
|
|
1063, 1064, 1066, 1067, 1068, 1062, 1069, 1072, 1065, 1070,
|
|
|
|
|
1071, 1073, 1068, 1074, 1070, 1077, 1072, 1079, 1075, 1079,
|
|
|
|
|
1069, 1066, 1067, 1075, 1071, 1076, 1076, 1078, 1078, 1073,
|
|
|
|
|
1077, 1081, 1082, 1083, 1081, 1084, 1084, 1082, 1074, 1085,
|
|
|
|
|
1086, 1086, 1087, 1087, 1088, 1089, 1090, 1091, 1091, 1088,
|
|
|
|
|
1092, 1093, 1083, 1094, 1093, 1095, 1096, 1100, 0, 1085,
|
|
|
|
|
1095, 1097, 1100, 1097, 1101, 1096, 1089, 1090, 1099, 1101,
|
|
|
|
|
1092, 1099, 1102, 1094, 1103, 1106, 1104, 1105, 1105, 1103,
|
|
|
|
|
1102, 1104, 1107, 1108, 1109, 1111, 1112, 1115, 1107, 1113,
|
|
|
|
|
1108, 1111, 1112, 1106, 1113, 1114, 1115, 1109, 1116, 1117,
|
|
|
|
|
|
|
|
|
|
1119, 1114, 1118, 1118, 1121, 1122, 1123, 1124, 1125, 1127,
|
|
|
|
|
1117, 1128, 1123, 1124, 1125, 1127, 1129, 1116, 1130, 1131,
|
|
|
|
|
1119, 1132, 1133, 1133, 1121, 1128, 1134, 1135, 1122, 1136,
|
|
|
|
|
1130, 1128, 1137, 1131, 1138, 1138, 1129, 1137, 1139, 1132,
|
|
|
|
|
1140, 1142, 1145, 1143, 1144, 1140, 1134, 1136, 1143, 1143,
|
|
|
|
|
1146, 1145, 1135, 1147, 1148, 1149, 1157, 1151, 1146, 1151,
|
|
|
|
|
1142, 1139, 1144, 1150, 1152, 1155, 1153, 1147, 1150, 1148,
|
|
|
|
|
1149, 1150, 1153, 1149, 1156, 1154, 1155, 1158, 1152, 1154,
|
|
|
|
|
1159, 1160, 1157, 1161, 1162, 1159, 1164, 1165, 1161, 1166,
|
|
|
|
|
1167, 1167, 1168, 1156, 1169, 1158, 1168, 1170, 1172, 1160,
|
|
|
|
|
|
|
|
|
|
1164, 1173, 1171, 1174, 1162, 1165, 1175, 1166, 1171, 1176,
|
|
|
|
|
1172, 1177, 1169, 1178, 1180, 1179, 1170, 1174, 1178, 1180,
|
|
|
|
|
1173, 1175, 1179, 1181, 1176, 1182, 1183, 1183, 1184, 1185,
|
|
|
|
|
1177, 1186, 1187, 1188, 1182, 1185, 1189, 1187, 1196, 1188,
|
|
|
|
|
1198, 1181, 1189, 1184, 1190, 1190, 1191, 1191, 1193, 1193,
|
|
|
|
|
1194, 1195, 1186, 1197, 1194, 1198, 1196, 1199, 1200, 1200,
|
|
|
|
|
1195, 1201, 1202, 1203, 1199, 1204, 1205, 1197, 1203, 1206,
|
|
|
|
|
1202, 1207, 1208, 1215, 1206, 1206, 1207, 1207, 1210, 1204,
|
|
|
|
|
1211, 1201, 1209, 1209, 1212, 1205, 1213, 1214, 1216, 1218,
|
|
|
|
|
1217, 1215, 1208, 1212, 1216, 1217, 1219, 1210, 1220, 1211,
|
|
|
|
|
|
|
|
|
|
1221, 1223, 1219, 1222, 1224, 1213, 1221, 1214, 1225, 1222,
|
|
|
|
|
1226, 1227, 1228, 1229, 1232, 1218, 0, 1220, 1230, 1230,
|
|
|
|
|
1223, 1231, 1236, 1224, 1231, 1227, 1232, 1225, 1229, 1226,
|
|
|
|
|
1233, 1233, 1234, 1228, 1235, 1236, 1237, 1234, 1235, 1238,
|
|
|
|
|
1239, 1242, 1239, 1241, 1243, 1237, 1239, 1244, 1241, 1245,
|
|
|
|
|
1245, 1250, 1238, 1246, 1251, 1247, 1242, 1248, 1246, 1239,
|
|
|
|
|
1247, 1248, 1249, 1244, 1243, 1252, 1249, 1253, 1254, 1254,
|
|
|
|
|
1256, 1250, 1251, 1253, 1258, 1259, 1260, 1260, 1261, 1271,
|
|
|
|
|
1259, 1263, 1263, 1265, 1261, 1252, 1265, 1267, 1256, 1266,
|
|
|
|
|
1266, 1268, 1272, 1270, 1274, 1258, 1270, 1273, 1273, 1271,
|
|
|
|
|
|
|
|
|
|
1275, 1272, 1278, 1267, 1279, 1276, 1280, 1268, 1282, 1274,
|
|
|
|
|
1276, 1277, 1277, 1281, 1281, 1284, 1285, 1285, 1283, 1279,
|
|
|
|
|
1278, 1275, 1282, 1283, 1286, 1287, 1288, 1288, 1286, 1289,
|
|
|
|
|
1284, 1280, 1290, 1291, 1292, 1293, 1296, 1291, 1295, 1295,
|
|
|
|
|
1293, 1297, 1298, 1290, 1299, 1287, 1300, 1301, 1301, 1303,
|
|
|
|
|
1304, 1289, 1302, 1292, 1296, 1297, 1305, 1302, 1299, 1306,
|
|
|
|
|
1307, 1298, 1298, 1311, 1306, 1305, 1308, 1309, 1308, 1303,
|
|
|
|
|
1304, 1300, 1309, 1310, 1314, 1312, 1315, 1315, 1316, 1310,
|
|
|
|
|
1307, 1312, 1319, 1311, 1317, 1320, 1323, 1319, 1314, 1324,
|
|
|
|
|
1317, 1321, 1321, 1322, 1322, 1325, 1326, 1316, 1329, 1326,
|
|
|
|
|
|
|
|
|
|
1323, 1327, 1327, 1328, 1333, 1330, 1331, 1324, 1330, 1320,
|
|
|
|
|
1325, 1330, 1331, 1333, 1332, 1328, 1334, 1335, 1329, 1332,
|
|
|
|
|
1337, 1334, 1336, 1330, 1338, 1336, 1337, 1339, 1339, 1338,
|
|
|
|
|
1340, 1340, 1341, 1343, 1342, 1344, 1345, 1346, 1341, 1342,
|
|
|
|
|
1347, 1348, 1335, 1347, 1349, 1351, 1343, 1348, 1352, 1350,
|
|
|
|
|
1349, 1351, 1356, 1344, 1350, 1345, 1353, 1346, 1354, 1354,
|
|
|
|
|
1355, 1353, 1357, 1358, 1359, 1355, 1360, 1361, 1362, 1363,
|
|
|
|
|
1356, 1352, 1364, 1365, 1366, 1363, 1367, 1375, 1359, 1361,
|
|
|
|
|
1360, 1362, 1357, 1358, 1369, 1369, 1370, 1373, 1366, 1371,
|
|
|
|
|
1372, 1372, 1364, 1365, 1371, 1374, 1376, 1367, 1377, 1380,
|
|
|
|
|
|
|
|
|
|
1378, 1375, 1373, 1379, 1381, 1385, 1370, 1377, 1380, 1374,
|
|
|
|
|
1379, 1380, 1383, 1386, 1376, 1378, 1386, 1387, 1387, 1389,
|
|
|
|
|
1381, 1388, 1388, 1390, 1391, 1391, 1390, 1383, 1392, 1393,
|
|
|
|
|
1385, 1389, 1383, 1394, 1395, 1396, 1397, 1398, 1394, 1395,
|
|
|
|
|
1399, 1392, 1401, 1402, 1400, 1404, 1398, 1405, 1393, 1402,
|
|
|
|
|
1406, 1401, 1397, 1400, 1396, 1407, 1400, 1403, 1403, 1399,
|
|
|
|
|
1405, 1408, 1409, 1411, 1412, 1404, 1413, 1413, 1406, 1407,
|
|
|
|
|
1414, 1415, 1418, 1416, 1409, 1417, 1417, 1408, 1416, 1419,
|
|
|
|
|
1415, 1418, 1412, 1420, 1418, 1421, 1414, 1422, 1411, 1425,
|
|
|
|
|
1417, 1424, 1422, 1422, 1426, 1425, 1428, 1419, 1427, 1427,
|
|
|
|
|
|
|
|
|
|
1433, 1429, 1428, 1421, 1420, 1424, 1429, 1430, 1431, 1434,
|
|
|
|
|
1435, 1436, 1426, 1430, 1431, 1441, 1435, 1439, 1437, 1442,
|
|
|
|
|
1433, 1437, 1443, 1434, 1436, 1439, 1444, 1437, 1445, 1446,
|
|
|
|
|
1443, 1447, 1448, 1449, 1441, 1444, 1450, 1451, 1442, 1449,
|
|
|
|
|
1452, 1445, 1446, 1453, 1455, 1447, 1448, 1454, 1456, 1450,
|
|
|
|
|
1455, 1457, 1459, 1459, 1460, 1461, 1462, 1451, 1452, 1461,
|
|
|
|
|
1454, 1462, 1453, 1463, 1456, 1464, 1465, 1466, 1463, 1457,
|
|
|
|
|
1464, 1468, 1469, 1469, 1460, 1465, 1470, 1471, 1472, 1473,
|
|
|
|
|
1473, 1475, 1474, 1478, 1479, 1511, 1468, 1476, 1475, 1471,
|
|
|
|
|
1466, 1477, 1480, 1481, 1482, 1470, 1474, 1472, 1480, 1476,
|
|
|
|
|
|
|
|
|
|
1483, 1511, 1478, 1477, 1479, 1481, 1483, 1484, 1484, 1489,
|
|
|
|
|
1485, 1488, 1482, 1485, 1486, 1486, 1488, 1490, 1489, 1491,
|
|
|
|
|
1491, 1492, 1493, 1490, 1493, 1494, 1495, 1496, 1494, 1497,
|
|
|
|
|
1498, 1499, 1500, 1492, 1503, 1504, 1499, 1502, 1501, 1503,
|
|
|
|
|
1505, 1500, 1509, 1506, 1504, 1508, 1495, 1497, 1498, 1496,
|
|
|
|
|
1501, 1508, 1502, 1507, 1507, 1510, 1512, 1504, 1506, 1513,
|
|
|
|
|
1505, 1513, 1518, 1509, 1514, 1515, 1515, 1516, 1516, 1517,
|
|
|
|
|
1517, 1519, 1519, 1521, 1510, 1522, 1512, 1524, 1514, 1529,
|
|
|
|
|
1514, 1524, 1518, 1520, 1520, 1523, 1523, 1525, 1526, 1528,
|
|
|
|
|
1531, 1526, 1530, 1525, 1521, 1528, 1522, 1529, 1530, 1532,
|
|
|
|
|
|
|
|
|
|
1533, 1533, 1532, 1534, 1534, 1535, 1536, 1537, 1538, 1540,
|
|
|
|
|
1539, 1535, 1543, 1545, 1549, 1531, 1539, 1542, 1536, 1536,
|
|
|
|
|
1536, 1546, 1542, 1542, 1545, 1536, 1543, 1537, 1538, 1540,
|
|
|
|
|
1544, 1547, 1544, 1548, 1549, 1550, 1546, 1547, 1551, 1551,
|
|
|
|
|
1552, 1554, 1548, 1553, 1553, 1555, 1556, 1556, 1557, 1557,
|
|
|
|
|
1558, 1561, 1561, 1562, 1564, 1565, 1550, 1568, 1566, 1567,
|
|
|
|
|
1567, 1554, 1562, 1564, 1566, 1569, 1552, 1555, 1570, 1572,
|
|
|
|
|
1558, 1574, 1571, 1573, 1573, 1570, 1565, 1575, 1568, 1577,
|
|
|
|
|
1569, 1571, 1578, 1579, 1577, 1580, 1583, 1583, 1578, 1585,
|
|
|
|
|
1581, 1586, 1580, 1575, 1582, 1572, 1581, 1574, 1585, 1584,
|
|
|
|
|
|
|
|
|
|
1582, 1587, 1588, 1579, 1584, 1589, 1590, 1591, 1589, 1592,
|
|
|
|
|
1592, 1586, 1593, 1595, 1588, 1594, 1598, 1596, 1593, 1599,
|
|
|
|
|
1587, 1596, 1602, 1603, 1590, 1600, 1604, 1603, 1595, 0,
|
|
|
|
|
1605, 1610, 1604, 1591, 1608, 1594, 1598, 1596, 1599, 1605,
|
|
|
|
|
1600, 1602, 1606, 1606, 1607, 1608, 1609, 1609, 1607, 1611,
|
|
|
|
|
1608, 1612, 1610, 1613, 1614, 1615, 1612, 1616, 1620, 1617,
|
|
|
|
|
1621, 1615, 1620, 1611, 1617, 1618, 1618, 1619, 1619, 1622,
|
|
|
|
|
1622, 1621, 1616, 1613, 1614, 1624, 1621, 1623, 1623, 1625,
|
|
|
|
|
1624, 1624, 1626, 1627, 1628, 1625, 1629, 1631, 1626, 1632,
|
|
|
|
|
1633, 1634, 1629, 1632, 1635, 1636, 1628, 1637, 1638, 1631,
|
|
|
|
|
|
|
|
|
|
1635, 1640, 1633, 1637, 1641, 1644, 1642, 1648, 1644, 1627,
|
|
|
|
|
1638, 1642, 0, 1640, 1645, 1645, 1634, 1636, 1646, 1646,
|
|
|
|
|
1647, 1647, 1649, 1641, 1650, 1653, 1651, 1648, 1649, 1652,
|
|
|
|
|
1650, 1651, 1655, 1657, 1653, 1652, 1657, 1655, 1658, 1659,
|
|
|
|
|
1659, 1661, 1662, 1663, 1664, 1664, 1665, 1666, 1663, 1669,
|
|
|
|
|
1658, 1667, 1666, 1661, 1662, 1665, 1667, 1668, 1668, 1670,
|
|
|
|
|
1671, 1672, 1673, 1676, 1679, 1674, 1673, 1675, 1670, 1669,
|
|
|
|
|
1674, 1678, 1678, 1675, 1684, 1680, 1686, 1676, 1671, 1682,
|
|
|
|
|
1672, 1683, 1679, 1678, 1680, 1681, 1681, 1685, 1682, 1686,
|
|
|
|
|
1689, 1689, 1685, 1683, 1691, 1684, 1692, 1691, 1693, 1696,
|
|
|
|
|
|
|
|
|
|
1695, 1697, 1698, 1699, 1699, 1705, 1700, 1697, 1700, 1701,
|
|
|
|
|
1701, 1704, 1692, 1696, 1693, 1695, 1702, 1707, 1704, 1698,
|
|
|
|
|
1706, 1706, 1708, 1709, 1702, 1705, 1707, 1710, 1711, 1712,
|
|
|
|
|
1713, 1714, 1716, 1719, 1717, 1709, 1720, 1714, 1723, 1710,
|
|
|
|
|
1711, 1718, 1718, 1708, 1721, 1713, 1717, 1721, 1722, 1725,
|
|
|
|
|
1714, 1719, 1716, 1722, 1725, 1712, 1720, 1726, 1723, 1726,
|
|
|
|
|
1727, 1728, 1729, 1731, 1733, 1734, 1728, 1736, 1735, 1729,
|
|
|
|
|
1735, 1739, 1731, 1733, 1738, 1741, 1738, 1734, 1727, 1740,
|
|
|
|
|
1740, 1743, 1742, 1743, 1744, 1739, 1736, 1742, 1745, 1744,
|
|
|
|
|
1746, 1747, 1748, 1745, 1749, 1751, 1750, 1753, 1748, 1749,
|
|
|
|
|
|
|
|
|
|
1754, 1741, 1757, 1751, 1755, 1755, 1756, 1756, 1746, 1750,
|
|
|
|
|
1758, 1747, 1759, 0, 1754, 1760, 1753, 1757, 1759, 1761,
|
|
|
|
|
1760, 1761, 1764, 1762, 1763, 1763, 1765, 1765, 1766, 1766,
|
|
|
|
|
1758, 1762, 1767, 1768, 1764, 1769, 1770, 1769, 1771, 1762,
|
|
|
|
|
1772, 1767, 1768, 1771, 1771, 1768, 1773, 1775, 1776, 1772,
|
|
|
|
|
1777, 1779, 1780, 1776, 1784, 1777, 1782, 1770, 1773, 1775,
|
|
|
|
|
1781, 1781, 1783, 1785, 1779, 1799, 1786, 1788, 1790, 1794,
|
|
|
|
|
1784, 1789, 1780, 1790, 1782, 1794, 1797, 1785, 1796, 1788,
|
|
|
|
|
1783, 1786, 1791, 1789, 1796, 1798, 1800, 1791, 1794, 1802,
|
|
|
|
|
1799, 1801, 1801, 1803, 1803, 1800, 1804, 1805, 1802, 1797,
|
|
|
|
|
|
|
|
|
|
1798, 1805, 1806, 1807, 1808, 1809, 1810, 1806, 1813, 1808,
|
|
|
|
|
1808, 1809, 1810, 1812, 1811, 1804, 1807, 1811, 1816, 1816,
|
|
|
|
|
1818, 1812, 1817, 1817, 1819, 1819, 1820, 1820, 1813, 1818,
|
|
|
|
|
1821, 1822, 1823, 1831, 1824, 1825, 1825, 1817, 1823, 1824,
|
|
|
|
|
1826, 1826, 1821, 1830, 1834, 1827, 1828, 1830, 1817, 1822,
|
|
|
|
|
1827, 1832, 1828, 1831, 1835, 1832, 1836, 1837, 1838, 1835,
|
|
|
|
|
1839, 1840, 1842, 1838, 1841, 1841, 1842, 1843, 1844, 1834,
|
|
|
|
|
1845, 1846, 1837, 1844, 1847, 1848, 1849, 1840, 1839, 1836,
|
|
|
|
|
1848, 1850, 1843, 1846, 1851, 1851, 1853, 1854, 1855, 1849,
|
|
|
|
|
1856, 1857, 1858, 1847, 1853, 1859, 1845, 1860, 1861, 1850,
|
|
|
|
|
|
|
|
|
|
1864, 1864, 1863, 2126, 1867, 1865, 1854, 1855, 1865, 1860,
|
|
|
|
|
1866, 1858, 1868, 1856, 2126, 1857, 1859, 1863, 1867, 1861,
|
|
|
|
|
1869, 1869, 1872, 1866, 1875, 1868, 1870, 1870, 1871, 1871,
|
|
|
|
|
1873, 1874, 1874, 1875, 1876, 1876, 1875, 1872, 1880, 1877,
|
|
|
|
|
1879, 1881, 1882, 1873, 1877, 1879, 1883, 1883, 1884, 1884,
|
|
|
|
|
1885, 1886, 1886, 1887, 1882, 1888, 1888, 1889, 1880, 1890,
|
|
|
|
|
1890, 1881, 1891, 1891, 1892, 1893, 1894, 1895, 1897, 1885,
|
|
|
|
|
1899, 1887, 1889, 1897, 1893, 1898, 1898, 1901, 1892, 1902,
|
|
|
|
|
1894, 1900, 1900, 1906, 1903, 1902, 1895, 1903, 1907, 1899,
|
|
|
|
|
1904, 1904, 1905, 1905, 1908, 1901, 1909, 1909, 1911, 1912,
|
|
|
|
|
|
|
|
|
|
1913, 1914, 1906, 1907, 1916, 1914, 1904, 1915, 1915, 1917,
|
|
|
|
|
1918, 1920, 1920, 1908, 1921, 1913, 1923, 1924, 1911, 1922,
|
|
|
|
|
1925, 1925, 1912, 1916, 1917, 1918, 1922, 1926, 1928, 1927,
|
|
|
|
|
1923, 1927, 1930, 1931, 1921, 1932, 1926, 1933, 1931, 1934,
|
|
|
|
|
1932, 1936, 1935, 1924, 1930, 1938, 1936, 1941, 1928, 1939,
|
|
|
|
|
1938, 1940, 1934, 1941, 1939, 1942, 1944, 1945, 1943, 1946,
|
|
|
|
|
1947, 1944, 1933, 1935, 1943, 1948, 1940, 1951, 1949, 1947,
|
|
|
|
|
1950, 1953, 1946, 1955, 1948, 1953, 1942, 1949, 1952, 1950,
|
|
|
|
|
1957, 1951, 1945, 1961, 1952, 1958, 1958, 1966, 1959, 1957,
|
|
|
|
|
1960, 1960, 1963, 1955, 1959, 1964, 1965, 1965, 1967, 1960,
|
|
|
|
|
|
|
|
|
|
1969, 1970, 1966, 1961, 1971, 1961, 1972, 1967, 1963, 1975,
|
|
|
|
|
1974, 1964, 1969, 1974, 1975, 1976, 1977, 1970, 1972, 1971,
|
|
|
|
|
1978, 1978, 1979, 1979, 1981, 1981, 1982, 1983, 1977, 1982,
|
|
|
|
|
1984, 1985, 1983, 1986, 1986, 1976, 1984, 1985, 1987, 1988,
|
|
|
|
|
1988, 1989, 1990, 1991, 1992, 1992, 1994, 1999, 1995, 0,
|
|
|
|
|
1994, 1995, 1987, 1989, 1996, 1996, 1990, 1998, 1997, 2002,
|
|
|
|
|
2000, 2005, 1991, 1997, 2000, 2004, 1998, 1999, 2001, 2001,
|
|
|
|
|
2004, 2006, 2002, 2007, 2008, 2009, 2013, 2010, 2008, 2011,
|
|
|
|
|
2012, 2005, 2010, 2015, 2016, 2011, 2012, 2007, 2022, 2016,
|
|
|
|
|
2017, 2006, 2018, 2025, 2013, 2009, 2017, 2023, 2023, 2015,
|
|
|
|
|
|
|
|
|
|
2018, 2019, 2022, 2019, 2024, 2026, 2026, 2024, 2028, 2029,
|
|
|
|
|
2030, 2032, 2028, 2031, 2031, 2029, 2035, 2035, 2037, 2025,
|
|
|
|
|
2032, 2039, 2030, 2042, 2043, 2044, 2045, 2052, 2042, 2053,
|
|
|
|
|
2044, 2045, 2046, 2046, 2050, 2039, 2037, 2048, 2048, 2054,
|
|
|
|
|
2050, 2051, 2051, 2052, 2054, 2056, 2057, 2058, 2058, 2061,
|
|
|
|
|
2043, 2053, 2060, 2062, 2063, 2061, 2065, 2065, 2057, 2066,
|
|
|
|
|
0, 2060, 2067, 2076, 2056, 2069, 2069, 2070, 2070, 2063,
|
|
|
|
|
2071, 2062, 2072, 2074, 2073, 2071, 2073, 2072, 2066, 2075,
|
|
|
|
|
2067, 2077, 2083, 2076, 2078, 2078, 2077, 2074, 2079, 2079,
|
|
|
|
|
2080, 2080, 2082, 2075, 2081, 2081, 2084, 2084, 2085, 2085,
|
|
|
|
|
|
|
|
|
|
2083, 2086, 2087, 2088, 2082, 2089, 2090, 2090, 2091, 2091,
|
|
|
|
|
2092, 2092, 2093, 2086, 2087, 2094, 2095, 2096, 2098, 2101,
|
|
|
|
|
2097, 2089, 2094, 2088, 2093, 2097, 2099, 2099, 2095, 2102,
|
|
|
|
|
2100, 2103, 2104, 2105, 2106, 2106, 2108, 2096, 2098, 2100,
|
|
|
|
|
2109, 2107, 2111, 2112, 2103, 2101, 2113, 2105, 2115, 2102,
|
|
|
|
|
2107, 2108, 0, 2116, 2114, 2109, 2104, 2114, 2116, 2117,
|
|
|
|
|
2111, 2125, 2115, 2127, 2117, 2112, 2118, 2118, 2129, 2113,
|
|
|
|
|
2119, 2119, 2120, 2120, 2122, 2122, 2124, 2124, 2130, 2125,
|
|
|
|
|
2131, 2132, 2127, 2133, 2134, 2135, 2136, 2136, 2129, 2138,
|
|
|
|
|
2138, 2139, 2133, 2141, 2141, 2148, 2130, 2140, 2143, 2144,
|
|
|
|
|
|
|
|
|
|
2144, 2132, 2131, 2135, 2134, 2145, 2140, 2143, 2146, 2147,
|
|
|
|
|
2148, 2149, 2150, 2139, 2152, 2151, 2147, 2153, 2153, 2154,
|
|
|
|
|
2154, 2155, 2156, 2145, 2157, 2158, 2146, 2155, 2160, 2149,
|
|
|
|
|
2150, 2151, 2159, 2152, 2161, 2172, 2162, 2159, 2168, 2157,
|
|
|
|
|
2156, 2162, 2171, 2163, 2158, 2163, 2164, 2164, 2160, 2165,
|
|
|
|
|
2170, 2165, 2166, 2166, 2161, 2172, 2174, 2168, 2173, 2170,
|
|
|
|
|
2175, 2171, 2178, 2173, 2179, 2180, 2180, 2179, 2181, 2182,
|
|
|
|
|
2183, 2183, 2191, 2184, 2186, 2189, 2174, 2184, 2192, 2175,
|
|
|
|
|
2187, 2195, 2178, 2181, 2187, 2188, 2188, 2182, 2189, 2186,
|
|
|
|
|
2193, 2193, 2191, 2195, 2196, 2196, 2197, 2199, 2192, 2198,
|
|
|
|
|
|
|
|
|
|
2198, 2200, 2199, 2201, 2201, 2206, 2206, 2207, 2208, 2209,
|
|
|
|
|
2210, 2211, 2213, 2200, 2218, 2197, 2212, 2212, 2217, 2210,
|
|
|
|
|
2211, 2208, 2209, 2217, 2220, 2219, 2221, 2213, 2218, 2207,
|
|
|
|
|
2219, 2222, 2220, 2224, 2227, 2225, 2226, 2228, 2228, 2222,
|
|
|
|
|
2225, 2226, 2229, 2229, 2230, 2221, 2232, 2231, 2224, 2227,
|
|
|
|
|
2233, 2230, 2231, 2234, 2237, 2235, 2236, 2236, 2238, 2234,
|
|
|
|
|
2235, 2239, 2239, 2238, 2232, 2240, 2240, 2243, 2233, 2237,
|
|
|
|
|
2244, 2244, 2245, 2246, 0, 2245, 2247, 2248, 2246, 2246,
|
|
|
|
|
2243, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2250, 2249,
|
|
|
|
|
2251, 2254, 2255, 2256, 2261, 2252, 2258, 2255, 2265, 2254,
|
|
|
|
|
|
|
|
|
|
2259, 2258, 2253, 2259, 2263, 2256, 2261, 2264, 2266, 2263,
|
|
|
|
|
2267, 2268, 2264, 2269, 2269, 2270, 2265, 2273, 2274, 2267,
|
|
|
|
|
2268, 2266, 2275, 2277, 2270, 2276, 2276, 2281, 2278, 2279,
|
|
|
|
|
2280, 2280, 2283, 2285, 2288, 2286, 2273, 2278, 2274, 2286,
|
|
|
|
|
2288, 2275, 2277, 0, 2279, 2289, 2281, 2283, 2287, 2287,
|
|
|
|
|
2290, 2289, 2292, 2285, 2291, 2291, 2290, 2293, 2295, 2296,
|
|
|
|
|
2292, 2298, 2293, 2299, 2300, 2298, 2310, 2295, 2302, 2302,
|
|
|
|
|
2303, 2303, 2296, 2304, 2304, 2306, 2306, 2299, 2311, 2300,
|
|
|
|
|
2308, 2308, 2313, 2311, 2311, 2318, 2310, 2314, 2314, 2315,
|
|
|
|
|
2315, 2316, 2316, 2317, 2320, 2324, 2317, 2326, 2318, 2321,
|
|
|
|
|
|
|
|
|
|
2321, 2335, 2313, 2322, 2322, 2323, 2323, 2325, 2325, 2327,
|
|
|
|
|
2324, 2328, 2320, 2329, 2329, 2326, 2330, 2328, 2334, 2333,
|
|
|
|
|
2330, 2335, 2336, 2327, 2333, 2333, 2337, 2338, 2339, 2346,
|
|
|
|
|
2340, 2349, 2337, 2338, 2340, 2341, 2341, 2346, 2344, 2354,
|
|
|
|
|
2351, 2334, 2336, 2344, 2347, 2350, 2352, 2347, 2350, 2353,
|
|
|
|
|
2355, 2352, 2357, 2339, 2356, 2356, 2349, 2351, 2351, 2354,
|
|
|
|
|
2358, 2360, 2361, 2361, 2355, 2362, 2362, 2353, 2358, 2359,
|
|
|
|
|
2366, 2357, 2363, 2363, 2359, 2359, 2364, 2364, 2365, 2365,
|
|
|
|
|
2360, 2368, 2367, 2369, 2370, 2371, 2366, 2367, 2372, 2374,
|
|
|
|
|
2374, 2375, 2376, 2370, 2375, 2378, 2378, 2379, 2380, 2380,
|
|
|
|
|
|
|
|
|
|
2387, 2368, 2381, 2383, 2379, 2371, 2384, 2381, 2372, 2369,
|
|
|
|
|
2376, 2385, 2383, 2388, 2388, 2384, 2390, 2389, 2387, 2391,
|
|
|
|
|
2385, 2389, 2392, 2393, 2394, 2390, 2400, 2392, 2392, 2399,
|
|
|
|
|
2399, 2402, 2406, 2394, 2391, 2403, 2393, 2407, 2408, 2410,
|
|
|
|
|
2402, 2412, 0, 2414, 2400, 2416, 2407, 2403, 2414, 2415,
|
|
|
|
|
2415, 2410, 2419, 2419, 2416, 2418, 2419, 2406, 2408, 2425,
|
|
|
|
|
2418, 2424, 2412, 2421, 2421, 2422, 2422, 2423, 2423, 2426,
|
|
|
|
|
2424, 2427, 2429, 2432, 2432, 2430, 2427, 2431, 2429, 2425,
|
|
|
|
|
2430, 2433, 2431, 2434, 2435, 2436, 2437, 2438, 2426, 2435,
|
|
|
|
|
2439, 2439, 2437, 2442, 2441, 2443, 2445, 2445, 2447, 2433,
|
|
|
|
|
|
|
|
|
|
2450, 2448, 2449, 2436, 2434, 2451, 2449, 2452, 2442, 2450,
|
|
|
|
|
2453, 2447, 2438, 2441, 2448, 2443, 2455, 2454, 2453, 2456,
|
|
|
|
|
2456, 2451, 2454, 2462, 2457, 2465, 2452, 2459, 2459, 2460,
|
|
|
|
|
2460, 2464, 2464, 2466, 2467, 2468, 2470, 2470, 2471, 2472,
|
|
|
|
|
2468, 2465, 2455, 2457, 2462, 2473, 2475, 2475, 2478, 2466,
|
|
|
|
|
2467, 2476, 2479, 2478, 2480, 2480, 2481, 2481, 2471, 2482,
|
|
|
|
|
2483, 2483, 2472, 2484, 2473, 2476, 2485, 0, 2486, 2487,
|
|
|
|
|
2488, 2495, 2484, 2496, 2479, 2489, 2489, 2491, 2491, 2482,
|
|
|
|
|
2483, 2487, 2490, 2495, 2505, 2490, 2485, 2486, 2497, 2501,
|
|
|
|
|
2488, 2498, 2498, 2496, 2497, 2499, 2500, 2507, 2499, 2503,
|
|
|
|
|
|
|
|
|
|
2504, 2511, 2500, 2505, 2503, 2504, 2506, 2501, 2508, 2508,
|
|
|
|
|
2510, 2510, 2506, 2512, 2507, 2507, 2514, 2514, 2515, 2515,
|
|
|
|
|
2511, 2516, 2512, 2517, 2518, 2527, 2516, 2519, 2519, 2518,
|
|
|
|
|
2520, 2520, 2521, 2521, 2522, 2524, 2524, 2517, 2529, 2522,
|
|
|
|
|
2530, 2531, 2532, 2532, 2527, 2534, 2534, 2535, 2536, 2537,
|
|
|
|
|
2538, 2538, 2539, 2546, 2540, 2543, 2543, 0, 2537, 2540,
|
|
|
|
|
2529, 2535, 2530, 2531, 2545, 2545, 2547, 2546, 2536, 2548,
|
|
|
|
|
2550, 2539, 2547, 2549, 2549, 2550, 2552, 2548, 2553, 2554,
|
|
|
|
|
2555, 2556, 2558, 2559, 2554, 2560, 2561, 2556, 2563, 2562,
|
|
|
|
|
2558, 2564, 2555, 2565, 2566, 2569, 2552, 2570, 2553, 2566,
|
|
|
|
|
|
|
|
|
|
2573, 2573, 2559, 2680, 2563, 2560, 2561, 2562, 2564, 2564,
|
|
|
|
|
2570, 2574, 2574, 2575, 2565, 2569, 2680, 2575, 2579, 2579,
|
|
|
|
|
2581, 2581, 2582, 2582, 2585, 2582, 2583, 2583, 2585, 2583,
|
|
|
|
|
2584, 2584, 2588, 2584, 2587, 2587, 2591, 2589, 2592, 2592,
|
|
|
|
|
2595, 2591, 2596, 2597, 2599, 2600, 2596, 2595, 2601, 2601,
|
|
|
|
|
2588, 2589, 2602, 2602, 2600, 2603, 2603, 2604, 2597, 2605,
|
|
|
|
|
2607, 2606, 2599, 2608, 2605, 2607, 2607, 2609, 2610, 2608,
|
|
|
|
|
2606, 2612, 2604, 2606, 2611, 2613, 2612, 2614, 2615, 2615,
|
|
|
|
|
2613, 2616, 2630, 2610, 2619, 2619, 2616, 2622, 2622, 2623,
|
|
|
|
|
2623, 2630, 2609, 2624, 2624, 2611, 2614, 2625, 2625, 2626,
|
|
|
|
|
|
|
|
|
|
2626, 2627, 2627, 2628, 2628, 2631, 2631, 2632, 2634, 2634,
|
|
|
|
|
2635, 2636, 2637, 2637, 2638, 2639, 2639, 2642, 2643, 2644,
|
|
|
|
|
2646, 2643, 2649, 2636, 2652, 2635, 2650, 2632, 2649, 2638,
|
|
|
|
|
2645, 2645, 2651, 2648, 2653, 2642, 2648, 2651, 2646, 2654,
|
|
|
|
|
2650, 2656, 2669, 2652, 2665, 2644, 2670, 2665, 2667, 2667,
|
|
|
|
|
2670, 2671, 2653, 2672, 2674, 2654, 2656, 2675, 2676, 2677,
|
|
|
|
|
2678, 2677, 2681, 2676, 2682, 2669, 2684, 2672, 2675, 2679,
|
|
|
|
|
2679, 2671, 2683, 2686, 2685, 2678, 2687, 2674, 2689, 2690,
|
|
|
|
|
2690, 2681, 2682, 2697, 2691, 2692, 2692, 2696, 2683, 2685,
|
|
|
|
|
2699, 2684, 2689, 2691, 2686, 2699, 2687, 2693, 2693, 2694,
|
|
|
|
|
|
|
|
|
|
2694, 2695, 2695, 2697, 2698, 2700, 2696, 2698, 2701, 2702,
|
|
|
|
|
2700, 2703, 2704, 2707, 2705, 2706, 2706, 2703, 2711, 2717,
|
|
|
|
|
2709, 2714, 2714, 2716, 2702, 0, 2704, 2715, 2715, 2721,
|
|
|
|
|
2720, 2716, 2707, 2701, 2705, 2709, 2711, 2718, 2717, 2719,
|
|
|
|
|
2722, 2725, 2721, 2718, 2720, 2719, 2723, 2723, 2726, 2727,
|
|
|
|
|
2729, 2730, 2731, 2727, 2732, 2733, 2730, 2734, 2735, 2722,
|
|
|
|
|
2736, 2725, 2726, 2735, 2738, 2736, 2739, 2732, 2733, 2741,
|
|
|
|
|
2729, 2731, 2740, 2740, 2741, 2742, 2734, 2743, 2743, 2744,
|
|
|
|
|
2747, 2742, 2738, 2745, 2744, 2739, 2746, 2748, 2745, 2749,
|
|
|
|
|
2753, 2746, 2755, 2748, 2749, 2750, 2750, 2752, 2754, 2747,
|
|
|
|
|
|
|
|
|
|
2756, 2752, 2757, 2758, 2759, 2754, 2760, 2760, 2757, 2753,
|
|
|
|
|
2764, 2755, 2762, 2762, 2763, 2764, 2765, 2759, 2766, 2756,
|
|
|
|
|
2767, 2770, 2758, 2763, 2768, 2768, 2763, 2769, 2772, 2773,
|
|
|
|
|
2773, 2774, 2769, 2767, 2770, 2765, 2778, 2766, 2775, 2775,
|
|
|
|
|
2776, 2776, 2777, 2778, 2779, 2780, 2780, 2777, 2781, 2782,
|
|
|
|
|
2774, 2782, 2784, 2781, 2772, 2783, 2783, 2785, 2786, 2784,
|
|
|
|
|
2787, 2788, 2791, 2779, 2785, 2787, 2790, 2790, 2793, 2794,
|
|
|
|
|
2795, 2796, 2800, 2793, 2794, 2797, 2797, 2786, 2799, 2799,
|
|
|
|
|
2788, 2791, 2801, 2802, 2802, 2803, 2803, 2804, 2814, 2795,
|
|
|
|
|
2796, 2800, 2806, 2806, 2804, 2807, 2807, 2808, 2810, 2815,
|
|
|
|
|
|
|
|
|
|
2813, 2801, 0, 2810, 2808, 2813, 0, 2814, 2816, 2816,
|
|
|
|
|
2817, 2817, 0, 0, 0, 0, 0, 0, 2815, 2821,
|
|
|
|
|
2821, 2821, 2821, 2821, 2821, 2821, 2822, 2822, 2822, 2822,
|
|
|
|
|
2822, 2822, 2822, 2823, 2823, 2823, 2823, 2823, 2823, 2823,
|
|
|
|
|
2824, 2824, 2824, 2824, 2824, 2824, 2824, 2825, 2825, 2825,
|
|
|
|
|
2825, 2825, 2825, 2825, 2827, 2827, 0, 2827, 2827, 2827,
|
|
|
|
|
2827, 2828, 2828, 0, 0, 0, 2828, 2828, 2829, 2829,
|
|
|
|
|
0, 0, 2829, 0, 2829, 2830, 0, 0, 0, 0,
|
|
|
|
|
0, 2830, 2831, 2831, 0, 0, 0, 2831, 2831, 2832,
|
|
|
|
|
0, 0, 0, 0, 0, 2832, 2833, 2833, 0, 2833,
|
|
|
|
|
|
|
|
|
|
2833, 2833, 2833, 2834, 2834, 0, 2834, 2834, 2834, 2834,
|
|
|
|
|
2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820, 2820,
|
|
|
|
|
2820
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
static yy_state_type yy_last_accepting_state;
|
|
|
|
|
static char *yy_last_accepting_cpos;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
extern int yy_flex_debug;
|
|
|
|
|
int yy_flex_debug = 0;
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* 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;
|
2015-12-01 03:11:48 -05:00
|
|
|
#define yymore() ((yy_more_flag) = 1)
|
|
|
|
|
#define YY_MORE_ADJ (yy_more_len)
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_RESTORE_YY_MORE_OFFSET
|
|
|
|
|
char *yytext;
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 1 "./util/configlexer.lex"
|
|
|
|
|
#line 2 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
/*
|
|
|
|
|
* configlexer.lex - lexical analyzer for unbound config file
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved
|
|
|
|
|
*
|
|
|
|
|
* See LICENSE for the license.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2016-09-13 06:44:24 -04:00
|
|
|
|
|
|
|
|
/* because flex keeps having sign-unsigned compare problems that are unfixed*/
|
2016-10-20 03:46:35 -04:00
|
|
|
#if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2))))
|
2016-09-13 06:44:24 -04:00
|
|
|
#pragma GCC diagnostic ignored "-Wsign-compare"
|
2016-10-20 03:46:35 -04:00
|
|
|
#endif
|
2016-09-13 06:44:24 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
#include <ctype.h>
|
|
|
|
|
#include <strings.h>
|
2012-09-27 04:52:37 -04:00
|
|
|
#ifdef HAVE_GLOB_H
|
|
|
|
|
# include <glob.h>
|
|
|
|
|
#endif
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
2009-04-17 08:14:43 -04:00
|
|
|
/** avoid warning in about fwrite return value */
|
|
|
|
|
#define ECHO ub_c_error_msg("syntax error at text: %s", yytext)
|
|
|
|
|
|
2009-02-06 05:19:16 -05:00
|
|
|
/** 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);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
struct inc_state {
|
|
|
|
|
char* filename;
|
|
|
|
|
int line;
|
2013-06-10 09:37:14 -04:00
|
|
|
YY_BUFFER_STATE buffer;
|
|
|
|
|
struct inc_state* next;
|
2007-10-18 18:49:08 -04:00
|
|
|
};
|
2013-06-10 09:37:14 -04:00
|
|
|
static struct inc_state* config_include_stack = NULL;
|
2013-07-26 09:11:53 -04:00
|
|
|
static int inc_depth = 0;
|
2009-02-06 05:19:16 -05:00
|
|
|
static int inc_prev = 0;
|
|
|
|
|
static int num_args = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2013-07-26 09:11:53 -04:00
|
|
|
void init_cfg_parse(void)
|
|
|
|
|
{
|
|
|
|
|
config_include_stack = NULL;
|
|
|
|
|
inc_depth = 0;
|
|
|
|
|
inc_prev = 0;
|
|
|
|
|
num_args = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
static void config_start_include(const char* filename)
|
|
|
|
|
{
|
|
|
|
|
FILE *input;
|
2013-06-10 09:37:14 -04:00
|
|
|
struct inc_state* s;
|
|
|
|
|
char* nm;
|
2013-07-26 09:11:53 -04:00
|
|
|
if(inc_depth++ > 100000) {
|
|
|
|
|
ub_c_error_msg("too many include files");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-01-14 03:28:46 -05:00
|
|
|
if(*filename == '\0') {
|
2007-10-18 18:49:08 -04:00
|
|
|
ub_c_error_msg("empty include file name");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2013-06-10 09:37:14 -04:00
|
|
|
s = (struct inc_state*)malloc(sizeof(*s));
|
|
|
|
|
if(!s) {
|
|
|
|
|
ub_c_error_msg("include %s: malloc failure", filename);
|
2007-10-18 18:49:08 -04:00
|
|
|
return;
|
|
|
|
|
}
|
2009-01-06 10:47:15 -05:00
|
|
|
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
|
|
|
|
|
strlen(cfg_parser->chroot)) == 0) {
|
|
|
|
|
filename += strlen(cfg_parser->chroot);
|
|
|
|
|
}
|
2013-06-10 09:37:14 -04:00
|
|
|
nm = strdup(filename);
|
|
|
|
|
if(!nm) {
|
2013-08-20 10:14:32 -04:00
|
|
|
ub_c_error_msg("include %s: strdup failure", filename);
|
2013-06-10 09:37:14 -04:00
|
|
|
free(s);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
input = fopen(filename, "r");
|
|
|
|
|
if(!input) {
|
|
|
|
|
ub_c_error_msg("cannot open include file '%s': %s",
|
|
|
|
|
filename, strerror(errno));
|
2013-06-10 09:37:14 -04:00
|
|
|
free(s);
|
|
|
|
|
free(nm);
|
2007-10-18 18:49:08 -04:00
|
|
|
return;
|
|
|
|
|
}
|
2013-06-10 09:37:14 -04:00
|
|
|
LEXOUT(("switch_to_include_file(%s)\n", filename));
|
|
|
|
|
s->filename = cfg_parser->filename;
|
|
|
|
|
s->line = cfg_parser->line;
|
|
|
|
|
s->buffer = YY_CURRENT_BUFFER;
|
|
|
|
|
s->next = config_include_stack;
|
|
|
|
|
config_include_stack = s;
|
|
|
|
|
cfg_parser->filename = nm;
|
2007-10-18 18:49:08 -04:00
|
|
|
cfg_parser->line = 1;
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_switch_to_buffer(yy_create_buffer(input, YY_BUF_SIZE));
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2012-09-27 04:52:37 -04:00
|
|
|
static void config_start_include_glob(const char* filename)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* check for wildcards */
|
|
|
|
|
#ifdef HAVE_GLOB
|
|
|
|
|
glob_t g;
|
|
|
|
|
size_t i;
|
|
|
|
|
int r, flags;
|
|
|
|
|
if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') &&
|
|
|
|
|
!strchr(filename, '{') && !strchr(filename, '~'))) {
|
|
|
|
|
flags = 0
|
|
|
|
|
#ifdef GLOB_ERR
|
|
|
|
|
| GLOB_ERR
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef GLOB_NOSORT
|
|
|
|
|
| GLOB_NOSORT
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef GLOB_BRACE
|
|
|
|
|
| GLOB_BRACE
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef GLOB_TILDE
|
|
|
|
|
| GLOB_TILDE
|
|
|
|
|
#endif
|
|
|
|
|
;
|
|
|
|
|
memset(&g, 0, sizeof(g));
|
2015-09-22 04:04:19 -04:00
|
|
|
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
|
|
|
|
|
strlen(cfg_parser->chroot)) == 0) {
|
|
|
|
|
filename += strlen(cfg_parser->chroot);
|
|
|
|
|
}
|
2012-09-27 04:52:37 -04:00
|
|
|
r = glob(filename, flags, NULL, &g);
|
|
|
|
|
if(r) {
|
|
|
|
|
/* some error */
|
|
|
|
|
globfree(&g);
|
2013-04-15 03:57:08 -04:00
|
|
|
if(r == GLOB_NOMATCH)
|
|
|
|
|
return; /* no matches for pattern */
|
2012-09-27 04:52:37 -04:00
|
|
|
config_start_include(filename); /* let original deal with it */
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
/* process files found, if any */
|
|
|
|
|
for(i=0; i<(size_t)g.gl_pathc; i++) {
|
|
|
|
|
config_start_include(g.gl_pathv[i]);
|
|
|
|
|
}
|
|
|
|
|
globfree(&g);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
#endif /* HAVE_GLOB */
|
|
|
|
|
|
|
|
|
|
config_start_include(filename);
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
static void config_end_include(void)
|
|
|
|
|
{
|
2013-06-10 09:37:14 -04:00
|
|
|
struct inc_state* s = config_include_stack;
|
2013-07-26 09:11:53 -04:00
|
|
|
--inc_depth;
|
2013-06-10 09:37:14 -04:00
|
|
|
if(!s) return;
|
2007-10-18 18:49:08 -04:00
|
|
|
free(cfg_parser->filename);
|
2013-06-10 09:37:14 -04:00
|
|
|
cfg_parser->filename = s->filename;
|
|
|
|
|
cfg_parser->line = s->line;
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER);
|
2013-06-10 09:37:14 -04:00
|
|
|
yy_switch_to_buffer(s->buffer);
|
|
|
|
|
config_include_stack = s->next;
|
|
|
|
|
free(s);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef yy_set_bol /* compat definition, for flex 2.4.6 */
|
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
|
|
|
{ \
|
|
|
|
|
if ( ! yy_current_buffer ) \
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 2779 "<stdout>"
|
2008-05-22 06:41:13 -04:00
|
|
|
#define YY_NO_INPUT 1
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 186 "./util/configlexer.lex"
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_NO_UNPUT
|
2008-06-09 05:29:44 -04:00
|
|
|
#define YY_NO_UNPUT 1
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
|
|
|
|
#ifndef YY_NO_INPUT
|
|
|
|
|
#define YY_NO_INPUT 1
|
|
|
|
|
#endif
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 2788 "<stdout>"
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 2790 "<stdout>"
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
#define INITIAL 0
|
2007-10-18 18:49:08 -04:00
|
|
|
#define quotedstring 1
|
2007-11-28 03:10:45 -05:00
|
|
|
#define singlequotedstr 2
|
|
|
|
|
#define include 3
|
|
|
|
|
#define include_quoted 4
|
2009-02-06 05:19:16 -05:00
|
|
|
#define val 5
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#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
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
static int yy_init_globals ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
/* Accessor methods to globals.
|
|
|
|
|
These are made visible to non-reentrant scanners for convenience. */
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
int yylex_destroy ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
int yyget_debug ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
void yyset_debug ( int debug_flag );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
YY_EXTRA_TYPE yyget_extra ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
void yyset_extra ( YY_EXTRA_TYPE user_defined );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
FILE *yyget_in ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
void yyset_in ( FILE * _in_str );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
FILE *yyget_out ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
void yyset_out ( FILE * _out_str );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
int yyget_leng ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
char *yyget_text ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
int yyget_lineno ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
void yyset_lineno ( int _line_number );
|
2009-03-24 08:53:25 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Macros after this point can all be overridden by user definitions in
|
|
|
|
|
* section 1.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef YY_SKIP_YYWRAP
|
|
|
|
|
#ifdef __cplusplus
|
2018-10-25 04:53:50 -04:00
|
|
|
extern "C" int yywrap ( void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2018-10-25 04:53:50 -04:00
|
|
|
extern int yywrap ( void );
|
2015-11-30 11:10:26 -05:00
|
|
|
#endif
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
#ifndef YY_NO_UNPUT
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
#ifndef yytext_ptr
|
2018-10-25 04:53:50 -04:00
|
|
|
static void yy_flex_strncpy ( char *, const char *, int );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef YY_NEED_STRLEN
|
2018-10-25 04:53:50 -04:00
|
|
|
static int yy_flex_strlen ( const char * );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef YY_NO_INPUT
|
2015-12-01 03:11:48 -05:00
|
|
|
#ifdef __cplusplus
|
2018-10-25 04:53:50 -04:00
|
|
|
static int yyinput ( void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2018-10-25 04:53:50 -04:00
|
|
|
static int input ( void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Amount of stuff to slurp up with each read. */
|
|
|
|
|
#ifndef YY_READ_BUF_SIZE
|
2016-06-13 02:57:28 -04:00
|
|
|
#ifdef __ia64__
|
|
|
|
|
/* On IA-64, the buffer size is 16k, not 8k */
|
|
|
|
|
#define YY_READ_BUF_SIZE 16384
|
|
|
|
|
#else
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_READ_BUF_SIZE 8192
|
2016-06-13 02:57:28 -04:00
|
|
|
#endif /* __ia64__ */
|
2007-10-18 18:49:08 -04:00
|
|
|
#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().
|
|
|
|
|
*/
|
2017-07-24 05:04:18 -04:00
|
|
|
#define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0)
|
2007-10-18 18:49:08 -04:00
|
|
|
#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) \
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
|
2007-10-18 18:49:08 -04:00
|
|
|
{ \
|
2015-12-01 03:11:48 -05:00
|
|
|
int c = '*'; \
|
2018-04-24 06:23:12 -04:00
|
|
|
int n; \
|
2007-10-18 18:49:08 -04:00
|
|
|
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; \
|
|
|
|
|
} \
|
2015-12-01 03:11:48 -05:00
|
|
|
else \
|
|
|
|
|
{ \
|
|
|
|
|
errno=0; \
|
2018-04-24 06:23:12 -04:00
|
|
|
while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
|
2015-12-01 03:11:48 -05:00
|
|
|
{ \
|
|
|
|
|
if( errno != EINTR) \
|
|
|
|
|
{ \
|
|
|
|
|
YY_FATAL_ERROR( "input in flex scanner failed" ); \
|
|
|
|
|
break; \
|
|
|
|
|
} \
|
|
|
|
|
errno=0; \
|
|
|
|
|
clearerr(yyin); \
|
|
|
|
|
} \
|
|
|
|
|
}\
|
|
|
|
|
\
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
#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
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* end tables serialization structures and prototypes */
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Default declaration of generated scanner - a define so the user can
|
|
|
|
|
* easily add parameters.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef YY_DECL
|
2015-12-01 03:11:48 -05:00
|
|
|
#define YY_DECL_IS_OURS 1
|
|
|
|
|
|
|
|
|
|
extern int yylex (void);
|
|
|
|
|
|
|
|
|
|
#define YY_DECL int yylex (void)
|
|
|
|
|
#endif /* !YY_DECL */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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
|
2016-10-20 03:46:35 -04:00
|
|
|
#define YY_BREAK /*LINTED*/break;
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define YY_RULE_SETUP \
|
|
|
|
|
YY_USER_ACTION
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** The main scanner function which does all the work.
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_DECL
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
yy_state_type yy_current_state;
|
|
|
|
|
char *yy_cp, *yy_bp;
|
|
|
|
|
int yy_act;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
if ( !(yy_init) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_init) = 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#ifdef YY_USER_INIT
|
|
|
|
|
YY_USER_INIT;
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! (yy_start) )
|
|
|
|
|
(yy_start) = 1; /* first start state */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( ! yyin )
|
|
|
|
|
yyin = stdin;
|
|
|
|
|
|
|
|
|
|
if ( ! yyout )
|
|
|
|
|
yyout = stdout;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! YY_CURRENT_BUFFER ) {
|
|
|
|
|
yyensure_buffer_stack ();
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE =
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_create_buffer( yyin, YY_BUF_SIZE );
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_load_buffer_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
{
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 206 "./util/configlexer.lex"
|
2016-10-20 03:46:35 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 3012 "<stdout>"
|
2016-10-20 03:46:35 -04:00
|
|
|
|
|
|
|
|
while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_more_len) = 0;
|
|
|
|
|
if ( (yy_more_flag) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2018-10-25 04:53:50 -04:00
|
|
|
(yy_more_len) = (int) ((yy_c_buf_p) - (yytext_ptr));
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_more_flag) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Support of yytext. */
|
2015-12-01 03:11:48 -05:00
|
|
|
*yy_cp = (yy_hold_char);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_bp points to the position in yy_ch_buf of the start of
|
|
|
|
|
* the current run.
|
|
|
|
|
*/
|
|
|
|
|
yy_bp = yy_cp;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_current_state = (yy_start);
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_match:
|
|
|
|
|
do
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
|
|
|
(yy_last_accepting_cpos) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
|
|
|
{
|
|
|
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
2018-10-25 04:53:50 -04:00
|
|
|
if ( yy_current_state >= 2821 )
|
|
|
|
|
yy_c = yy_meta[yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
++yy_cp;
|
|
|
|
|
}
|
2018-10-25 04:53:50 -04:00
|
|
|
while ( yy_base[yy_current_state] != 5511 );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
yy_find_action:
|
|
|
|
|
yy_act = yy_accept[yy_current_state];
|
|
|
|
|
if ( yy_act == 0 )
|
|
|
|
|
{ /* have to back up */
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = (yy_last_accepting_cpos);
|
|
|
|
|
yy_current_state = (yy_last_accepting_state);
|
2007-10-18 18:49:08 -04:00
|
|
|
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 */
|
2015-12-01 03:11:48 -05:00
|
|
|
*yy_cp = (yy_hold_char);
|
|
|
|
|
yy_cp = (yy_last_accepting_cpos);
|
|
|
|
|
yy_current_state = (yy_last_accepting_state);
|
2007-10-18 18:49:08 -04:00
|
|
|
goto yy_find_action;
|
|
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 207 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
LEXOUT(("SP ")); /* ignore */ }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 2:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 209 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
2009-12-01 03:12:12 -05:00
|
|
|
/* note that flex makes the longest match and '.' is any but not nl */
|
2009-02-06 05:19:16 -05:00
|
|
|
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 3:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 212 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(0, VAR_SERVER) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 4:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 213 "./util/configlexer.lex"
|
2015-11-30 11:10:26 -05:00
|
|
|
{ YDVAR(1, VAR_QNAME_MINIMISATION) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 5:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 214 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 6:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 215 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_NUM_THREADS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 7:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 216 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_VERBOSITY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 8:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 217 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 9:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 218 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_RANGE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 10:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 219 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 11:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 220 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 12:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 221 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 13:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 222 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 14:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 223 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_DO_IP4) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 15:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 224 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_DO_IP6) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 16:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 225 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_PREFER_IP6) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 17:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 226 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_DO_UDP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 18:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 227 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_DO_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 19:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 228 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_TCP_UPSTREAM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 20:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 229 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_TCP_MSS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 21:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 230 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_TCP_MSS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 22:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 231 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TCP_IDLE_TIMEOUT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 23:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 232 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 24:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 233 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 25:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 234 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_UPSTREAM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 26:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 235 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_UPSTREAM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 27:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 236 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 28:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 237 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 29:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 238 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 30:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 239 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 31:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 240 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 32:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 241 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 33:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 242 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 34:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 243 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 35:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 244 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_WIN_CERT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 36:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 245 "./util/configlexer.lex"
|
2018-06-12 04:45:57 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 37:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 246 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 38:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 247 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 39:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 248 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 40:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 249 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_USE_SYSTEMD) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 41:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 250 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_DO_DAEMONIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 42:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 251 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 43:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 252 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 44:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 253 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 45:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 254 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 46:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 255 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SO_RCVBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 47:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 256 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SO_SNDBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 48:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 257 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SO_REUSEPORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 49:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 258 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_IP_TRANSPARENT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 50:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 259 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_IP_FREEBIND) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 51:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 260 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_CHROOT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 52:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 261 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_USERNAME) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 53:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 262 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_DIRECTORY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 54:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 263 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_LOGFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 55:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 264 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_PIDFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 56:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 265 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_ROOT_HINTS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 57:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 266 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 58:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 267 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 59:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 268 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 60:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 269 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
|
2007-10-19 04:32:36 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 61:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 270 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
|
2007-10-19 10:02:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 62:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 271 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
|
2007-10-22 02:25:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 63:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 272 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
|
2007-10-31 03:46:30 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 64:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 273 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
|
2007-11-01 11:32:27 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 65:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 274 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
|
2007-11-19 10:32:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 66:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 275 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 67:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 276 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 68:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 277 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
|
2008-01-15 04:45:30 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 69:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 278 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
|
2008-02-05 05:23:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 70:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 279 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
|
2008-02-20 02:26:03 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 71:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 280 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
|
2008-02-27 04:39:27 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 72:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 281 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
|
2008-04-09 08:29:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 73:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 282 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
|
2008-04-09 11:07:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 74:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 283 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_DELAY_CLOSE) }
|
2008-08-13 10:30:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 75:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 284 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
|
2008-08-21 10:58:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 76:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 285 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
|
2008-08-27 09:02:22 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 77:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 286 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
|
2008-08-29 10:46:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 78:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 287 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_HARDEN_GLUE) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 79:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 288 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 80:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 289 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
2008-09-03 10:40:09 -04:00
|
|
|
case 81:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 290 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 82:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 291 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 83:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 292 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 84:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 293 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_CAPS_WHITELIST) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 85:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 294 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 86:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 295 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 87:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 296 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 88:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 297 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_PREFETCH_KEY) }
|
2008-09-16 05:08:45 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 89:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 298 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_PREFETCH) }
|
2008-09-30 11:04:32 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 90:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 299 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_DENY_ANY) }
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 91:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 300 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(0, VAR_STUB_ZONE) }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 92:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 301 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_NAME) }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 93:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 302 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_STUB_ADDR) }
|
2009-02-06 07:51:45 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 94:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 303 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_STUB_HOST) }
|
2009-03-18 10:02:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 95:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 304 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_STUB_PRIME) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 96:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 305 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_STUB_FIRST) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 97:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 306 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_STUB_NO_CACHE) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 98:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 307 "./util/configlexer.lex"
|
2018-08-09 08:44:40 -04:00
|
|
|
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 99:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 308 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
|
2009-04-14 06:10:11 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 100:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 309 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(0, VAR_FORWARD_ZONE) }
|
2009-07-20 10:22:29 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 101:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 310 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_FORWARD_ADDR) }
|
2009-08-12 11:26:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 102:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 311 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_FORWARD_HOST) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
2009-08-12 11:26:47 -04:00
|
|
|
case 103:
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 312 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_FORWARD_FIRST) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 104:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 313 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_FORWARD_NO_CACHE) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 105:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 314 "./util/configlexer.lex"
|
2018-08-09 08:44:40 -04:00
|
|
|
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
|
2009-09-25 04:54:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 106:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 315 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
|
2009-10-29 06:37:44 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 107:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 316 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(0, VAR_AUTH_ZONE) }
|
2010-01-07 09:38:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 108:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 317 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_ZONEFILE) }
|
2010-01-13 08:33:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 109:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 318 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_MASTER) }
|
2010-11-15 09:30:34 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 110:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 319 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_URL) }
|
2010-11-18 03:49:15 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 111:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 320 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_ALLOW_NOTIFY) }
|
2011-05-10 07:20:14 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 112:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 321 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_FOR_DOWNSTREAM) }
|
2011-06-16 09:15:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 113:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 322 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_FOR_UPSTREAM) }
|
2011-08-22 09:58:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 114:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 323 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_FALLBACK_ENABLED) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
2011-08-22 09:58:40 -04:00
|
|
|
case 115:
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 324 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(0, VAR_VIEW) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 116:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 325 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_VIEW_FIRST) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 117:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 326 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
|
2011-11-08 05:56:42 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 118:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 327 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
|
2012-03-01 08:16:40 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 119:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 328 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL) }
|
2012-03-01 08:16:40 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 120:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 329 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) }
|
2012-04-10 05:16:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 121:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 330 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) }
|
2012-04-10 05:16:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 122:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 331 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) }
|
2013-04-25 07:55:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 123:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 332 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) }
|
2013-11-05 21:48:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 124:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 333 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) }
|
2014-01-24 06:43:38 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 125:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 334 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) }
|
2014-01-28 09:35:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 126:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 335 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) }
|
2014-05-20 06:38:32 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 127:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 336 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
2014-05-20 06:38:32 -04:00
|
|
|
case 128:
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 337 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) }
|
2014-07-31 03:15:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 129:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 338 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) }
|
2014-07-31 03:15:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 130:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 339 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_HIDE_IDENTITY) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 131:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 340 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_HIDE_VERSION) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 132:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 341 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 133:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 342 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IDENTITY) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 134:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 343 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_VERSION) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 135:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 344 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_MODULE_CONF) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 136:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 345 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR) }
|
2015-01-06 09:12:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 137:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 346 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
|
2015-02-02 03:46:22 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 138:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 347 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
|
2015-03-09 09:30:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 139:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 348 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
|
2015-03-19 05:50:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 140:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 349 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 141:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 350 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 142:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 351 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 143:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 352 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 144:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 353 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 145:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 354 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 146:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 355 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 147:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 356 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_BOGUS_TTL) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 148:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 357 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 149:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 358 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 150:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 359 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_AGGRESSIVE_NSEC) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 151:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 360 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
|
2015-04-16 10:18:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 152:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 361 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_SERVE_EXPIRED) }
|
2015-05-01 08:36:16 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 153:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-09 08:44:40 -04:00
|
|
|
#line 362 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) }
|
2015-05-29 10:51:36 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 154:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-09 08:44:40 -04:00
|
|
|
#line 363 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) }
|
2015-07-30 07:52:12 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 155:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-28 10:21:56 -04:00
|
|
|
#line 364 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_FAKE_DSA) }
|
2015-11-30 11:10:26 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 156:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-28 10:21:56 -04:00
|
|
|
#line 365 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_FAKE_SHA1) }
|
2016-01-05 05:03:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 157:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-22 10:54:28 -04:00
|
|
|
#line 366 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
|
2016-01-05 05:03:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 158:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-22 10:54:28 -04:00
|
|
|
#line 367 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
|
2016-02-09 08:25:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 159:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:07:37 -04:00
|
|
|
#line 368 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
|
2016-03-15 05:35:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 160:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 369 "./util/configlexer.lex"
|
|
|
|
|
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
|
2016-04-21 05:49:02 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 161:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 370 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
|
2016-04-21 05:49:02 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 162:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 372 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
|
2016-05-24 08:17:42 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 163:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 373 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
|
2016-06-06 04:33:59 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 164:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 374 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_KEEP_MISSING) }
|
2016-06-06 06:00:25 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 165:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 375 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
|
2016-06-06 09:47:24 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 166:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 376 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_USE_SYSLOG) }
|
2016-06-06 09:47:24 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 167:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 377 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_IDENTITY) }
|
2016-07-04 10:49:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 168:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 378 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
2016-07-04 10:49:49 -04:00
|
|
|
case 169:
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 379 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_QUERIES) }
|
2016-10-05 05:36:25 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 170:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 380 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_REPLIES) }
|
2016-10-05 05:36:25 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 171:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 381 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_LOCAL_ACTIONS) }
|
2016-10-11 07:32:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 172:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 382 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_SERVFAIL) }
|
2016-10-24 08:43:20 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 173:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 383 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(2, VAR_LOCAL_ZONE) }
|
2016-10-26 03:38:00 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 174:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 384 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA) }
|
2016-11-03 04:51:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 175:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 385 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
|
2016-11-04 08:07:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 176:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 386 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
|
2016-11-04 08:07:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 177:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 387 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_INSECURE_LAN_ZONES) }
|
2017-01-03 08:43:29 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 178:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 388 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
|
2017-01-05 06:39:54 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 179:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 389 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
|
2016-10-05 05:36:25 -04:00
|
|
|
YY_BREAK
|
2017-01-05 06:39:54 -05:00
|
|
|
case 180:
|
2016-10-05 05:36:25 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 390 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 181:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 391 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_SHM_ENABLE) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 182:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 392 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_SHM_KEY) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 183:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 393 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(0, VAR_REMOTE_CONTROL) }
|
2017-02-23 07:05:05 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 184:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 394 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_ENABLE) }
|
2017-02-23 07:05:05 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 185:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 395 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
2017-02-23 07:05:05 -05:00
|
|
|
case 186:
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 396 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_PORT) }
|
2017-03-07 09:58:51 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 187:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 397 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
|
2017-03-07 09:58:51 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 188:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 398 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
|
2017-03-09 08:18:08 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 189:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 399 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
|
2017-03-16 05:17:58 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 190:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 400 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
|
2017-03-07 09:58:51 -05:00
|
|
|
YY_BREAK
|
2017-03-16 05:17:58 -04:00
|
|
|
case 191:
|
2017-03-07 09:58:51 -05:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 401 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 192:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 402 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 193:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 403 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(0, VAR_PYTHON) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 194:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 404 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 195:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 405 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 196:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 406 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 197:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 407 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 198:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 408 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNS64_PREFIX) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 199:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 409 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 200:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 410 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNS64_IGNORE_AAAA) }
|
2017-04-06 09:13:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 201:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 411 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DEFINE_TAG) }
|
2017-04-26 08:58:13 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 202:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 412 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(2, VAR_LOCAL_ZONE_TAG) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
2017-04-26 08:58:13 -04:00
|
|
|
case 203:
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 413 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 204:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 414 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 205:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-09 08:44:40 -04:00
|
|
|
#line 415 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 206:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-09 08:44:40 -04:00
|
|
|
#line 416 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 207:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-17 11:22:05 -04:00
|
|
|
#line 417 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 208:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-21 03:10:49 -04:00
|
|
|
#line 418 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(0, VAR_DNSTAP) }
|
2017-06-08 10:44:55 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 209:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-28 10:21:56 -04:00
|
|
|
#line 419 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
|
2017-07-17 04:21:19 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 210:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-28 10:21:56 -04:00
|
|
|
#line 420 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
|
2017-07-17 04:21:19 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 211:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-22 10:54:28 -04:00
|
|
|
#line 421 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
|
2017-08-08 05:09:45 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 212:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-22 10:54:28 -04:00
|
|
|
#line 422 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
2017-08-08 05:09:45 -04:00
|
|
|
case 213:
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:07:37 -04:00
|
|
|
#line 423 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
|
2017-08-31 07:59:38 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 214:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 424 "./util/configlexer.lex"
|
|
|
|
|
{ YDVAR(1, VAR_DNSTAP_VERSION) }
|
2017-09-18 04:42:24 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 215:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 425 "./util/configlexer.lex"
|
2018-08-28 10:21:56 -04:00
|
|
|
{
|
2018-10-25 04:53:50 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
|
2017-09-18 04:55:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 216:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 427 "./util/configlexer.lex"
|
2018-10-22 10:54:28 -04:00
|
|
|
{
|
2018-10-25 04:53:50 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
|
2017-09-18 04:55:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 217:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 429 "./util/configlexer.lex"
|
2018-10-22 10:54:28 -04:00
|
|
|
{
|
2018-10-25 04:53:50 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
|
2017-10-17 03:34:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 218:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 431 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{
|
2018-10-25 04:53:50 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
|
2017-08-31 07:59:38 -04:00
|
|
|
YY_BREAK
|
2017-10-17 03:34:49 -04:00
|
|
|
case 219:
|
2017-08-31 07:59:38 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 433 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 220:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 435 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 221:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 437 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 222:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 438 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 223:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 439 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 224:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 440 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 225:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 441 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 226:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 442 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 227:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 443 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 228:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 444 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 229:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 445 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 230:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 446 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) }
|
2018-01-30 05:35:20 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 231:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 447 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
|
2018-02-08 08:16:36 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 232:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 448 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_LOW_RTT) }
|
2018-02-13 05:35:09 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 233:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 449 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_NUM) }
|
2018-02-13 05:35:09 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 234:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 450 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
2018-02-13 05:35:09 -05:00
|
|
|
case 235:
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_RULE_SETUP
|
2018-08-09 08:44:40 -04:00
|
|
|
#line 451 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
|
2018-03-15 08:33:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 236:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-09 08:44:40 -04:00
|
|
|
#line 452 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
|
2018-03-15 08:33:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 237:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-17 11:22:05 -04:00
|
|
|
#line 453 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(2, VAR_RESPONSE_IP_TAG) }
|
2018-03-15 10:23:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 238:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-21 03:10:49 -04:00
|
|
|
#line 454 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(2, VAR_RESPONSE_IP) }
|
2018-03-15 10:23:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 239:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-28 10:21:56 -04:00
|
|
|
#line 455 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(2, VAR_RESPONSE_IP_DATA) }
|
2018-04-09 09:27:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 240:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-28 10:21:56 -04:00
|
|
|
#line 456 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(0, VAR_DNSCRYPT) }
|
2018-04-09 09:27:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 241:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-08 12:03:46 -04:00
|
|
|
#line 457 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_ENABLE) }
|
2018-04-17 09:23:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 242:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-08 12:03:46 -04:00
|
|
|
#line 458 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PORT) }
|
2018-04-24 05:03:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 243:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-22 10:54:28 -04:00
|
|
|
#line 459 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) }
|
2018-05-15 03:48:12 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 244:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-22 10:54:28 -04:00
|
|
|
#line 460 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) }
|
2018-05-28 10:15:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 245:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:07:37 -04:00
|
|
|
#line 461 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) }
|
2018-06-01 04:02:04 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 246:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 462 "./util/configlexer.lex"
|
|
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) }
|
2018-06-12 04:45:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 247:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 463 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) }
|
2018-06-29 08:58:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 248:
|
|
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 465 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) }
|
2018-03-15 08:33:51 -04:00
|
|
|
YY_BREAK
|
2018-06-29 08:58:52 -04:00
|
|
|
case 249:
|
2018-03-15 08:33:51 -04:00
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 467 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) }
|
2018-07-31 03:23:58 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 250:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 468 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) }
|
2018-07-31 03:23:58 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 251:
|
|
|
|
|
YY_RULE_SETUP
|
2018-08-03 05:47:53 -04:00
|
|
|
#line 469 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_ENABLED) }
|
2018-08-07 08:02:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 252:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 470 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) }
|
2018-08-09 08:44:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 253:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 471 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_HOOK) }
|
2018-08-09 08:44:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 254:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 472 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_MAX_TTL) }
|
2018-08-17 11:22:05 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 255:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 473 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_WHITELIST) }
|
2018-08-21 03:10:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 256:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 474 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_STRICT) }
|
2018-08-28 10:21:56 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 257:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 475 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(0, VAR_CACHEDB) }
|
2018-08-28 10:21:56 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 258:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 476 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_BACKEND) }
|
2018-10-08 12:03:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 259:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 477 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_SECRETSEED) }
|
2018-10-08 12:03:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 260:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 478 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_REDISHOST) }
|
2018-10-22 10:54:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 261:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 479 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_REDISPORT) }
|
2018-10-22 10:54:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 262:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 480 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) }
|
2018-10-25 04:07:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 263:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 481 "./util/configlexer.lex"
|
2018-10-25 04:53:50 -04:00
|
|
|
{ YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 264:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 482 "./util/configlexer.lex"
|
|
|
|
|
{ YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 265:
|
|
|
|
|
/* rule 265 can match eol */
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 483 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++; }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
/* Quoted strings. Strip leading and ending quotes */
|
2018-10-25 04:53:50 -04:00
|
|
|
case 266:
|
2018-07-31 03:23:58 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 486 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(quotedstring):
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 487 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside quoted string");
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 267:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 492 "./util/configlexer.lex"
|
2008-10-22 10:36:46 -04:00
|
|
|
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 268:
|
|
|
|
|
/* rule 268 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 493 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ yyerror("newline inside quoted string, no end \"");
|
|
|
|
|
cfg_parser->line++; BEGIN(INITIAL); }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 269:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 495 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("QE "));
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-10-18 18:49:08 -04:00
|
|
|
yytext[yyleng - 1] = '\0';
|
|
|
|
|
yylval.str = strdup(yytext);
|
|
|
|
|
if(!yylval.str)
|
|
|
|
|
yyerror("out of memory");
|
2009-04-09 11:23:14 -04:00
|
|
|
return STRING_ARG;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2007-11-28 03:10:45 -05:00
|
|
|
/* Single Quoted strings. Strip leading and ending quotes */
|
2018-10-25 04:53:50 -04:00
|
|
|
case 270:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 507 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(singlequotedstr):
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 508 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside quoted string");
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-11-28 03:10:45 -05:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 271:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 513 "./util/configlexer.lex"
|
2008-10-22 10:36:46 -04:00
|
|
|
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 272:
|
|
|
|
|
/* rule 272 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 514 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ yyerror("newline inside quoted string, no end '");
|
|
|
|
|
cfg_parser->line++; BEGIN(INITIAL); }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 273:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 516 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{
|
|
|
|
|
LEXOUT(("SQE "));
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-11-28 03:10:45 -05:00
|
|
|
yytext[yyleng - 1] = '\0';
|
|
|
|
|
yylval.str = strdup(yytext);
|
|
|
|
|
if(!yylval.str)
|
|
|
|
|
yyerror("out of memory");
|
2009-04-09 11:23:14 -04:00
|
|
|
return STRING_ARG;
|
2007-11-28 03:10:45 -05:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
|
|
|
|
/* include: directive */
|
2018-10-25 04:53:50 -04:00
|
|
|
case 274:
|
2007-11-28 03:10:45 -05:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 528 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(include):
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 530 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside include directive");
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 275:
|
2018-08-07 08:02:10 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 534 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ LEXOUT(("ISP ")); /* ignore */ }
|
2018-08-17 11:22:05 -04:00
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 276:
|
|
|
|
|
/* rule 276 can match eol */
|
2018-08-17 11:22:05 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 535 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++;}
|
2018-08-21 03:10:49 -04:00
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 277:
|
2018-08-21 03:10:49 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 536 "./util/configlexer.lex"
|
2018-10-25 04:07:37 -04:00
|
|
|
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
|
|
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 278:
|
2018-10-25 04:07:37 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 537 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("Iunquotedstr(%s) ", yytext));
|
2012-09-27 04:52:37 -04:00
|
|
|
config_start_include_glob(yytext);
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(include_quoted):
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 542 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside quoted string");
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 279:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 546 "./util/configlexer.lex"
|
2008-10-22 10:36:46 -04:00
|
|
|
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 280:
|
|
|
|
|
/* rule 280 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 547 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ yyerror("newline before \" in include name");
|
|
|
|
|
cfg_parser->line++; BEGIN(inc_prev); }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 281:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 549 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("IQE "));
|
|
|
|
|
yytext[yyleng - 1] = '\0';
|
2012-09-27 04:52:37 -04:00
|
|
|
config_start_include_glob(yytext);
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(INITIAL):
|
2009-02-06 05:19:16 -05:00
|
|
|
case YY_STATE_EOF(val):
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 555 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2013-06-10 09:37:14 -04:00
|
|
|
LEXOUT(("LEXEOF "));
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_set_bol(1); /* Set beginning of line, so "^" rules match. */
|
2013-06-10 09:37:14 -04:00
|
|
|
if (!config_include_stack) {
|
2007-10-18 18:49:08 -04:00
|
|
|
yyterminate();
|
|
|
|
|
} else {
|
|
|
|
|
fclose(yyin);
|
|
|
|
|
config_end_include();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 282:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 566 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{ LEXOUT(("unquotedstr(%s) ", yytext));
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-04-09 11:23:14 -04:00
|
|
|
yylval.str = strdup(yytext); return STRING_ARG; }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 283:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 570 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("unknown keyword '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 284:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 574 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("stray '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
case 285:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 578 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
ECHO;
|
|
|
|
|
YY_BREAK
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 4601 "<stdout>"
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
case YY_END_OF_BUFFER:
|
|
|
|
|
{
|
|
|
|
|
/* Amount of text matched not including the EOB char. */
|
2015-12-01 03:11:48 -05:00
|
|
|
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Undo the effects of YY_DO_BEFORE_ACTION. */
|
2015-12-01 03:11:48 -05:00
|
|
|
*yy_cp = (yy_hold_char);
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RESTORE_YY_MORE_OFFSET
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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
|
2015-12-01 03:11:48 -05:00
|
|
|
* consistency between YY_CURRENT_BUFFER and our
|
2007-10-18 18:49:08 -04:00
|
|
|
* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
(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;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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().
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
|
2007-10-18 18:49:08 -04:00
|
|
|
{ /* This was really a NUL. */
|
|
|
|
|
yy_state_type yy_next_state;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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 );
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( yy_next_state )
|
|
|
|
|
{
|
|
|
|
|
/* Consume the NUL. */
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = ++(yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_current_state = yy_next_state;
|
|
|
|
|
goto yy_match;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
goto yy_find_action;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
else switch ( yy_get_next_buffer( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_did_buffer_switch_on_eof) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
if ( yywrap( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
yy_act = YY_STATE_EOF(YY_START);
|
|
|
|
|
goto do_action;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! (yy_did_buffer_switch_on_eof) )
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_NEW_FILE;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) =
|
|
|
|
|
(yytext_ptr) + yy_amount_of_matched_text;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = (yy_c_buf_p);
|
|
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
goto yy_match;
|
|
|
|
|
|
|
|
|
|
case EOB_ACT_LAST_MATCH:
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) =
|
|
|
|
|
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = (yy_c_buf_p);
|
|
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
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 */
|
2016-10-20 03:46:35 -04:00
|
|
|
} /* end of user's declarations */
|
2015-12-01 03:11:48 -05:00
|
|
|
} /* end of yylex */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
static int yy_get_next_buffer (void)
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
|
|
|
|
|
char *source = (yytext_ptr);
|
2018-10-25 04:53:50 -04:00
|
|
|
int number_to_move, i;
|
2007-10-18 18:49:08 -04:00
|
|
|
int ret_val;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_FATAL_ERROR(
|
|
|
|
|
"fatal flex scanner internal error--end of buffer missed" );
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
|
2007-10-18 18:49:08 -04:00
|
|
|
{ /* Don't try to fill the buffer, so this is an EOF. */
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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. */
|
2018-10-25 04:53:50 -04:00
|
|
|
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
for ( i = 0; i < number_to_move; ++i )
|
|
|
|
|
*(dest++) = *(source++);
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
|
2007-10-18 18:49:08 -04:00
|
|
|
/* don't do the read, it's not guaranteed to return an EOF,
|
|
|
|
|
* just force an EOF
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-09-13 06:44:24 -04:00
|
|
|
int num_to_read =
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
while ( num_to_read <= 0 )
|
|
|
|
|
{ /* Not enough room in the buffer - grow it. */
|
|
|
|
|
|
|
|
|
|
/* just a shorter name for the current buffer */
|
2016-10-20 03:46:35 -04:00
|
|
|
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
int yy_c_buf_p_offset =
|
2015-12-01 03:11:48 -05:00
|
|
|
(int) ((yy_c_buf_p) - b->yy_ch_buf);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( b->yy_is_our_buffer )
|
|
|
|
|
{
|
2017-07-24 05:04:18 -04:00
|
|
|
int new_size = b->yy_buf_size * 2;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
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. */
|
2018-10-25 04:53:50 -04:00
|
|
|
yyrealloc( (void *) b->yy_ch_buf,
|
|
|
|
|
(yy_size_t) (b->yy_buf_size + 2) );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
/* Can't grow it, we don't own it. */
|
2017-07-24 05:04:18 -04:00
|
|
|
b->yy_ch_buf = NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( ! b->yy_ch_buf )
|
|
|
|
|
YY_FATAL_ERROR(
|
|
|
|
|
"fatal error - scanner input buffer overflow" );
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
|
2007-10-18 18:49:08 -04:00
|
|
|
number_to_move - 1;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( num_to_read > YY_READ_BUF_SIZE )
|
|
|
|
|
num_to_read = YY_READ_BUF_SIZE;
|
|
|
|
|
|
|
|
|
|
/* Read in more data. */
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
|
2016-10-20 03:46:35 -04:00
|
|
|
(yy_n_chars), num_to_read );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( (yy_n_chars) == 0 )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
if ( number_to_move == YY_MORE_ADJ )
|
|
|
|
|
{
|
|
|
|
|
ret_val = EOB_ACT_END_OF_FILE;
|
2018-10-25 04:53:50 -04:00
|
|
|
yyrestart( yyin );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ret_val = EOB_ACT_LAST_MATCH;
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_EOF_PENDING;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
ret_val = EOB_ACT_CONTINUE_SCAN;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Extend the array by 50%, plus the number we really need. */
|
2017-07-24 05:04:18 -04:00
|
|
|
int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
|
2018-10-25 04:53:50 -04:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc(
|
|
|
|
|
(void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size );
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
|
2018-10-25 04:53:50 -04:00
|
|
|
/* "- 2" to take care of EOB's */
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
(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;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
return ret_val;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_get_previous_state - get the state just before the EOB char was reached */
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
static yy_state_type yy_get_previous_state (void)
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
yy_state_type yy_current_state;
|
|
|
|
|
char *yy_cp;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
yy_current_state = (yy_start);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
|
|
|
(yy_last_accepting_cpos) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
|
|
|
{
|
|
|
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
2018-10-25 04:53:50 -04:00
|
|
|
if ( yy_current_state >= 2821 )
|
|
|
|
|
yy_c = yy_meta[yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return yy_current_state;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_try_NUL_trans - try to make a transition on the NUL character
|
|
|
|
|
*
|
|
|
|
|
* synopsis
|
|
|
|
|
* next_state = yy_try_NUL_trans( current_state );
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
int yy_is_jam;
|
|
|
|
|
char *yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
YY_CHAR yy_c = 1;
|
2015-11-30 11:10:26 -05:00
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
|
|
|
(yy_last_accepting_cpos) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
|
|
|
{
|
|
|
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
2018-10-25 04:53:50 -04:00
|
|
|
if ( yy_current_state >= 2821 )
|
|
|
|
|
yy_c = yy_meta[yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
|
|
|
|
|
yy_is_jam = (yy_current_state == 2820);
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
return yy_is_jam ? 0 : yy_current_state;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
#ifndef YY_NO_UNPUT
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_NO_INPUT
|
2008-06-09 05:29:44 -04:00
|
|
|
#ifdef __cplusplus
|
2015-12-01 03:11:48 -05:00
|
|
|
static int yyinput (void)
|
2015-11-30 11:10:26 -05:00
|
|
|
#else
|
2015-12-01 03:11:48 -05:00
|
|
|
static int input (void)
|
2015-11-30 11:10:26 -05:00
|
|
|
#endif
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
|
|
|
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
|
2007-10-18 18:49:08 -04:00
|
|
|
/* This was really a NUL. */
|
2015-12-01 03:11:48 -05:00
|
|
|
*(yy_c_buf_p) = '\0';
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{ /* need more input */
|
2018-10-25 04:53:50 -04:00
|
|
|
int offset = (int) ((yy_c_buf_p) - (yytext_ptr));
|
2015-12-01 03:11:48 -05:00
|
|
|
++(yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
switch ( yy_get_next_buffer( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
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. */
|
2018-10-25 04:53:50 -04:00
|
|
|
yyrestart( yyin );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/*FALLTHROUGH*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
|
|
|
{
|
2018-10-25 04:53:50 -04:00
|
|
|
if ( yywrap( ) )
|
2017-07-24 05:04:18 -04:00
|
|
|
return 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! (yy_did_buffer_switch_on_eof) )
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_NEW_FILE;
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
return yyinput();
|
|
|
|
|
#else
|
|
|
|
|
return input();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + offset;
|
2007-10-18 18:49:08 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
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);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return c;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif /* ifndef YY_NO_INPUT */
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** 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 =
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_create_buffer( yyin, YY_BUF_SIZE );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_init_buffer( YY_CURRENT_BUFFER, input_file );
|
|
|
|
|
yy_load_buffer_state( );
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** 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 )
|
2007-10-18 18:49:08 -04:00
|
|
|
return;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( YY_CURRENT_BUFFER )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* Flush out information for old buffer. */
|
2015-12-01 03:11:48 -05:00
|
|
|
*(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);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE = new_buffer;
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_load_buffer_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
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);
|
|
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** 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 )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_STATE b;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! b )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
|
|
|
|
|
|
2018-04-24 06:23:12 -04:00
|
|
|
b->yy_buf_size = size;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_ch_buf has to be 2 characters longer than the size given because
|
|
|
|
|
* we need to put in 2 end-of-buffer characters.
|
|
|
|
|
*/
|
2018-10-25 04:53:50 -04:00
|
|
|
b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! b->yy_ch_buf )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
|
|
|
|
|
|
|
|
|
|
b->yy_is_our_buffer = 1;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_init_buffer( b, file );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return b;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Destroy the buffer.
|
|
|
|
|
* @param b a buffer created with yy_create_buffer()
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yy_delete_buffer (YY_BUFFER_STATE b )
|
|
|
|
|
{
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! b )
|
|
|
|
|
return;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( b->yy_is_our_buffer )
|
2018-10-25 04:53:50 -04:00
|
|
|
yyfree( (void *) b->yy_ch_buf );
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
yyfree( (void *) b );
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* 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 )
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
int oerrno = errno;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_flush_buffer( b );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
b->yy_input_file = file;
|
|
|
|
|
b->yy_fill_buffer = 1;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* 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;
|
|
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** 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 )
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( b == YY_CURRENT_BUFFER )
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_load_buffer_state( );
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 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. */
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_load_buffer_state( );
|
2015-12-01 03:11:48 -05:00
|
|
|
(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) {
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_load_buffer_state( );
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
2008-02-29 05:59:26 -05:00
|
|
|
}
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Allocates the stack if it does not exist.
|
|
|
|
|
* Guarantees space for at least one push.
|
|
|
|
|
*/
|
|
|
|
|
static void yyensure_buffer_stack (void)
|
|
|
|
|
{
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_size_t num_to_alloc;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
2016-12-21 05:29:19 -05:00
|
|
|
num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
|
2015-12-01 03:11:48 -05:00
|
|
|
(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()" );
|
2018-10-25 04:53:50 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
|
2018-10-25 04:53:50 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_buffer_stack_max) = num_to_alloc;
|
|
|
|
|
(yy_buffer_stack_top) = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Increase the buffer to prepare for a possible push. */
|
2016-10-20 03:46:35 -04:00
|
|
|
yy_size_t grow_size = 8 /* arbitrary grow size */;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
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
|
|
|
|
|
*
|
2018-10-25 04:53:50 -04:00
|
|
|
* @return the newly allocated buffer state object.
|
2015-12-01 03:11:48 -05:00
|
|
|
*/
|
|
|
|
|
YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
|
|
|
|
|
{
|
|
|
|
|
YY_BUFFER_STATE b;
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
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. */
|
2017-07-24 05:04:18 -04:00
|
|
|
return NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! b )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
|
|
|
|
|
|
2018-04-24 06:23:12 -04:00
|
|
|
b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */
|
2007-10-18 18:49:08 -04:00
|
|
|
b->yy_buf_pos = b->yy_ch_buf = base;
|
|
|
|
|
b->yy_is_our_buffer = 0;
|
2017-07-24 05:04:18 -04:00
|
|
|
b->yy_input_file = NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_switch_to_buffer( b );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return b;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** 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.
|
|
|
|
|
*/
|
2018-10-25 04:53:50 -04:00
|
|
|
YY_BUFFER_STATE yy_scan_string (const char * yystr )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
return yy_scan_bytes( yystr, (int) strlen(yystr) );
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** 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.
|
|
|
|
|
*/
|
2018-10-25 04:53:50 -04:00
|
|
|
YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_STATE b;
|
|
|
|
|
char *buf;
|
|
|
|
|
yy_size_t n;
|
2018-10-25 04:53:50 -04:00
|
|
|
int i;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Get memory for full buffer, including space for trailing EOB's. */
|
2018-10-25 04:53:50 -04:00
|
|
|
n = (yy_size_t) (_yybytes_len + 2);
|
|
|
|
|
buf = (char *) yyalloc( n );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! buf )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
for ( i = 0; i < _yybytes_len; ++i )
|
|
|
|
|
buf[i] = yybytes[i];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
b = yy_scan_buffer( buf, n );
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef YY_EXIT_FAILURE
|
|
|
|
|
#define YY_EXIT_FAILURE 2
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
static void yynoreturn yy_fatal_error (const char* msg )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2018-10-25 04:53:50 -04:00
|
|
|
fprintf( stderr, "%s\n", msg );
|
2015-12-01 03:11:48 -05:00
|
|
|
exit( YY_EXIT_FAILURE );
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Redefine yyless() so it works in section 3 code. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#undef yyless
|
|
|
|
|
#define yyless(n) \
|
|
|
|
|
do \
|
|
|
|
|
{ \
|
|
|
|
|
/* Undo effects of setting up yytext. */ \
|
2018-10-25 04:53:50 -04:00
|
|
|
int yyless_macro_arg = (n); \
|
2015-12-01 03:11:48 -05:00
|
|
|
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 )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Accessor methods (get/set functions) to struct members. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Get the current line number.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
int yyget_lineno (void)
|
|
|
|
|
{
|
2018-10-25 04:53:50 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
return yylineno;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Get the input stream.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
FILE *yyget_in (void)
|
|
|
|
|
{
|
|
|
|
|
return yyin;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Get the output stream.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
FILE *yyget_out (void)
|
|
|
|
|
{
|
|
|
|
|
return yyout;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Get the length of the current token.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2017-07-24 05:04:18 -04:00
|
|
|
int yyget_leng (void)
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
return yyleng;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Get the current token.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
char *yyget_text (void)
|
|
|
|
|
{
|
|
|
|
|
return yytext;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Set the current line number.
|
2016-10-20 03:46:35 -04:00
|
|
|
* @param _line_number line number
|
2015-12-01 03:11:48 -05:00
|
|
|
*
|
|
|
|
|
*/
|
2016-10-20 03:46:35 -04:00
|
|
|
void yyset_lineno (int _line_number )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
yylineno = _line_number;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-19 04:32:36 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Set the input stream. This does not discard the current
|
|
|
|
|
* input buffer.
|
2016-10-20 03:46:35 -04:00
|
|
|
* @param _in_str A readable stream.
|
2015-12-01 03:11:48 -05:00
|
|
|
*
|
|
|
|
|
* @see yy_switch_to_buffer
|
|
|
|
|
*/
|
2016-10-20 03:46:35 -04:00
|
|
|
void yyset_in (FILE * _in_str )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
yyin = _in_str ;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
void yyset_out (FILE * _out_str )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
yyout = _out_str ;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
int yyget_debug (void)
|
|
|
|
|
{
|
|
|
|
|
return yy_flex_debug;
|
|
|
|
|
}
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
void yyset_debug (int _bdebug )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
yy_flex_debug = _bdebug ;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-24 05:04:18 -04:00
|
|
|
(yy_buffer_stack) = NULL;
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_buffer_stack_top) = 0;
|
|
|
|
|
(yy_buffer_stack_max) = 0;
|
2017-07-24 05:04:18 -04:00
|
|
|
(yy_c_buf_p) = NULL;
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_init) = 0;
|
|
|
|
|
(yy_start) = 0;
|
|
|
|
|
|
|
|
|
|
/* Defined in main.c */
|
|
|
|
|
#ifdef YY_STDINIT
|
|
|
|
|
yyin = stdin;
|
|
|
|
|
yyout = stdout;
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2017-07-24 05:04:18 -04:00
|
|
|
yyin = NULL;
|
|
|
|
|
yyout = NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* For future reference: Set errno on error, since we are called by
|
|
|
|
|
* yylex_init()
|
|
|
|
|
*/
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* 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){
|
2018-10-25 04:53:50 -04:00
|
|
|
yy_delete_buffer( YY_CURRENT_BUFFER );
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
|
|
|
yypop_buffer_state();
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Destroy the stack itself. */
|
|
|
|
|
yyfree((yy_buffer_stack) );
|
|
|
|
|
(yy_buffer_stack) = NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Reset the globals. This is important in a non-reentrant scanner so the next time
|
|
|
|
|
* yylex() is called, initialization will occur. */
|
|
|
|
|
yy_init_globals( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
return 0;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/*
|
|
|
|
|
* Internal utility routines.
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#ifndef yytext_ptr
|
2018-10-25 04:53:50 -04:00
|
|
|
static void yy_flex_strncpy (char* s1, const char * s2, int n )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
|
|
|
|
|
int i;
|
2007-10-18 18:49:08 -04:00
|
|
|
for ( i = 0; i < n; ++i )
|
|
|
|
|
s1[i] = s2[i];
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef YY_NEED_STRLEN
|
2018-10-25 04:53:50 -04:00
|
|
|
static int yy_flex_strlen (const char * s )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
int n;
|
2007-10-18 18:49:08 -04:00
|
|
|
for ( n = 0; s[n]; ++n )
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
return n;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
void *yyalloc (yy_size_t size )
|
|
|
|
|
{
|
2017-07-24 05:04:18 -04:00
|
|
|
return malloc(size);
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
void *yyrealloc (void * ptr, yy_size_t size )
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* 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.
|
|
|
|
|
*/
|
2017-07-24 05:04:18 -04:00
|
|
|
return realloc(ptr, size);
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
void yyfree (void * ptr )
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define YYTABLES_NAME "yytables"
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2018-10-25 04:53:50 -04:00
|
|
|
#line 578 "./util/configlexer.lex"
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-08-30 05:02:29 -04:00
|
|
|
|