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
|
2019-08-14 05:40:35 -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
|
|
|
|
2019-08-14 05:40:35 -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
|
|
|
|
2019-08-14 05:40:35 -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
|
|
|
|
|
|
2019-08-14 05:40:35 -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
|
|
|
*/
|
2019-08-14 05:40:35 -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". */
|
2019-08-14 05:40:35 -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
|
2019-08-14 05:40:35 -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. */ \
|
2019-08-14 05:40:35 -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. */
|
2019-08-14 05:40:35 -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;
|
|
|
|
|
|
2019-08-14 05:40:35 -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
|
|
|
|
2019-08-14 05:40:35 -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
|
|
|
|
2019-08-14 05:40:35 -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
|
|
|
|
2019-08-14 05:40:35 -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 = \
|
2019-08-14 05:40:35 -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 = \
|
2019-08-14 05:40:35 -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 */
|
2019-08-14 05:40:35 -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
|
|
|
|
|
|
2019-08-14 05:40:35 -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;
|
2019-09-09 11:11:26 -04:00
|
|
|
#define YY_NUM_RULES 300
|
|
|
|
|
#define YY_END_OF_BUFFER 301
|
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;
|
|
|
|
|
};
|
2019-09-09 11:11:26 -04:00
|
|
|
static const flex_int16_t yy_accept[2961] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2019-09-09 11:11:26 -04:00
|
|
|
1, 1, 282, 282, 286, 286, 290, 290, 294, 294,
|
|
|
|
|
1, 1, 301, 298, 1, 280, 280, 299, 2, 299,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 282, 283, 283, 284, 299, 286, 287, 287,
|
|
|
|
|
288, 299, 293, 290, 291, 291, 292, 299, 294, 295,
|
|
|
|
|
295, 296, 299, 297, 281, 2, 285, 299, 297, 298,
|
|
|
|
|
0, 1, 2, 2, 2, 2, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
282, 0, 286, 0, 293, 0, 290, 294, 0, 297,
|
|
|
|
|
0, 2, 2, 297, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 297, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 112, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 120, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 297, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 96, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 8, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 113, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 125, 298, 297, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 275, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 297, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 54, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 220, 298, 14, 15, 298, 18, 17, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 119, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 204, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
3, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 297, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 270, 298, 298, 269, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 289,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 57, 298, 244, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 276, 277, 298, 298, 298, 298,
|
|
|
|
|
298, 58, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 116, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 193, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 20, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 144, 298, 298, 289, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 94,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 252, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
165, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 143, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 93, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 31, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 32, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 55, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 118, 298, 298, 298, 298,
|
|
|
|
|
298, 111, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 56, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 166, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 45, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 235, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 49, 298, 50, 298, 298, 298,
|
|
|
|
|
298, 298, 97, 298, 98, 298, 298, 298, 298, 95,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 7, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 213, 298, 298, 298,
|
|
|
|
|
298, 146, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 46, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 185, 298, 184, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 16, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 59, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 192,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 100, 298, 99, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 176,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 126, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 78, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 82, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 53, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
179, 180, 298, 298, 298, 246, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 6, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 250,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 271, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 41, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
43, 298, 298, 298, 298, 298, 298, 298, 298, 172,
|
|
|
|
|
298, 298, 298, 121, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 197, 298, 173, 298, 298, 298,
|
|
|
|
|
210, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 44, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 123, 105, 298,
|
|
|
|
|
106, 298, 298, 298, 104, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 141, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 234, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 174, 298, 298, 298, 298, 298,
|
|
|
|
|
177, 298, 183, 298, 298, 298, 298, 298, 209, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 92, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 117, 298, 298, 298, 298, 298, 298, 51, 298,
|
|
|
|
|
298, 298, 25, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 19, 298, 298, 298, 298, 298, 298, 26,
|
|
|
|
|
35, 298, 151, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 67, 69, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 254, 298, 298,
|
|
|
|
|
298, 221, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
107, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
140, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 265, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 145, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 203,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 274, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
162, 298, 298, 298, 298, 298, 298, 298, 298, 101,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 157,
|
|
|
|
|
298, 167, 298, 298, 298, 298, 298, 129, 298, 298,
|
|
|
|
|
298, 298, 298, 88, 298, 298, 298, 298, 195, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 211, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 226, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 122, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 161,
|
|
|
|
|
298, 298, 298, 298, 298, 70, 71, 298, 298, 298,
|
|
|
|
|
298, 298, 52, 298, 298, 298, 298, 298, 77, 168,
|
|
|
|
|
298, 186, 298, 214, 298, 298, 178, 247, 298, 298,
|
|
|
|
|
298, 298, 298, 63, 298, 170, 298, 298, 298, 298,
|
|
|
|
|
298, 9, 298, 298, 298, 91, 298, 298, 298, 298,
|
|
|
|
|
239, 298, 298, 298, 194, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 160, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 147, 298, 253, 298, 298, 298, 298,
|
|
|
|
|
225, 298, 298, 298, 298, 298, 298, 298, 298, 205,
|
|
|
|
|
298, 298, 298, 298, 245, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 268,
|
|
|
|
|
298, 169, 298, 298, 298, 298, 298, 298, 298, 62,
|
|
|
|
|
64, 298, 298, 298, 298, 298, 298, 298, 90, 298,
|
|
|
|
|
298, 298, 298, 237, 298, 298, 298, 249, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 199, 33, 27,
|
|
|
|
|
29, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
34, 298, 28, 30, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 87, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
201, 198, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 61, 298, 298, 124,
|
|
|
|
|
298, 108, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
142, 13, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 263, 298, 266, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 298, 12, 298, 298, 21, 298, 298,
|
|
|
|
|
298, 243, 298, 298, 298, 251, 298, 298, 298, 65,
|
|
|
|
|
298, 207, 298, 298, 200, 298, 298, 60, 298, 298,
|
|
|
|
|
298, 298, 22, 298, 42, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 156, 155, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 202, 196,
|
|
|
|
|
298, 212, 298, 298, 255, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 72,
|
|
|
|
|
298, 298, 298, 238, 298, 298, 298, 298, 182, 298,
|
|
|
|
|
|
|
|
|
|
298, 298, 298, 206, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 272, 273, 153, 298, 298, 66, 298, 298,
|
|
|
|
|
163, 298, 298, 102, 103, 298, 298, 298, 298, 148,
|
|
|
|
|
298, 150, 298, 187, 298, 298, 298, 298, 154, 298,
|
|
|
|
|
298, 215, 298, 298, 298, 298, 298, 298, 298, 131,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 222, 298, 298, 298, 23, 298, 248, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 188,
|
|
|
|
|
298, 298, 236, 298, 267, 298, 181, 298, 298, 298,
|
|
|
|
|
298, 47, 298, 298, 298, 298, 4, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
115, 130, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 218, 36,
|
|
|
|
|
37, 298, 298, 298, 298, 298, 298, 298, 256, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 224, 298, 298, 298, 191,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 75,
|
|
|
|
|
298, 48, 242, 298, 219, 298, 298, 298, 298, 11,
|
|
|
|
|
298, 298, 298, 298, 298, 114, 298, 298, 189, 79,
|
|
|
|
|
298, 39, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
159, 298, 298, 298, 298, 298, 133, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 223, 127, 298, 298,
|
|
|
|
|
|
|
|
|
|
109, 110, 298, 298, 298, 81, 85, 80, 298, 73,
|
|
|
|
|
298, 298, 298, 298, 298, 10, 298, 298, 298, 240,
|
|
|
|
|
298, 298, 279, 38, 298, 298, 298, 298, 298, 158,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 86, 84,
|
|
|
|
|
298, 74, 264, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
175, 298, 298, 298, 190, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 149, 68, 298, 298, 298, 298, 298,
|
|
|
|
|
257, 298, 298, 298, 298, 298, 298, 298, 128, 298,
|
|
|
|
|
83, 134, 135, 138, 139, 136, 137, 76, 298, 241,
|
|
|
|
|
|
|
|
|
|
298, 298, 152, 298, 298, 298, 298, 298, 217, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 164, 40, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 89, 298, 216, 298,
|
|
|
|
|
233, 261, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 5, 298, 208, 298, 298, 262, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 24, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
132, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
|
|
|
|
|
171, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
258, 298, 298, 298, 298, 298, 298, 298, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 298, 298, 298, 298, 278, 298,
|
|
|
|
|
298, 229, 298, 298, 298, 298, 298, 259, 298, 298,
|
|
|
|
|
298, 298, 298, 298, 260, 298, 298, 298, 227, 298,
|
|
|
|
|
230, 231, 298, 298, 298, 298, 298, 228, 232, 0
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2019-08-14 05:40:35 -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
|
|
|
|
|
} ;
|
|
|
|
|
|
2019-08-14 05:40:35 -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
|
|
|
} ;
|
|
|
|
|
|
2019-09-09 11:11:26 -04:00
|
|
|
static const flex_int16_t yy_base[2975] =
|
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,
|
2019-09-09 11:11:26 -04:00
|
|
|
90, 112, 4198, 4028, 81, 5768, 5768, 5768, 96, 52,
|
2018-04-17 09:23:35 -04:00
|
|
|
106, 63, 107, 111, 70, 128, 130, 133, 57, 88,
|
2019-04-05 11:39:10 -04:00
|
|
|
76, 135, 141, 117, 148, 145, 160, 164, 185, 177,
|
2019-09-09 11:11:26 -04:00
|
|
|
189, 152, 3954, 5768, 5768, 5768, 107, 3854, 5768, 5768,
|
|
|
|
|
5768, 165, 3105, 2544, 5768, 5768, 5768, 211, 2291, 5768,
|
|
|
|
|
5768, 5768, 180, 2178, 5768, 217, 5768, 221, 168, 1832,
|
2019-04-05 11:39:10 -04:00
|
|
|
225, 231, 0, 237, 0, 0, 226, 231, 85, 180,
|
|
|
|
|
114, 238, 239, 156, 234, 206, 240, 232, 200, 132,
|
|
|
|
|
253, 244, 245, 248, 256, 257, 264, 271, 249, 277,
|
|
|
|
|
|
|
|
|
|
279, 262, 282, 285, 270, 272, 291, 293, 290, 299,
|
|
|
|
|
301, 284, 302, 305, 310, 312, 311, 315, 313, 319,
|
|
|
|
|
322, 318, 324, 327, 326, 193, 221, 334, 329, 340,
|
|
|
|
|
342, 325, 348, 349, 350, 353, 354, 357, 363, 359,
|
2019-09-09 11:11:26 -04:00
|
|
|
1432, 379, 1075, 381, 915, 388, 450, 365, 392, 278,
|
2019-04-05 11:39:10 -04:00
|
|
|
396, 400, 0, 377, 392, 401, 367, 394, 396, 402,
|
|
|
|
|
261, 398, 399, 403, 405, 406, 418, 407, 416, 422,
|
|
|
|
|
426, 430, 427, 434, 424, 437, 439, 440, 429, 451,
|
|
|
|
|
453, 454, 446, 455, 456, 458, 461, 462, 463, 472,
|
|
|
|
|
465, 473, 484, 479, 488, 492, 475, 493, 496, 491,
|
|
|
|
|
|
|
|
|
|
503, 499, 506, 507, 502, 498, 508, 510, 513, 515,
|
2019-05-16 16:30:42 -04:00
|
|
|
516, 518, 517, 520, 521, 523, 525, 533, 535, 526,
|
|
|
|
|
534, 528, 547, 542, 549, 546, 548, 552, 551, 555,
|
|
|
|
|
563, 564, 556, 565, 567, 568, 571, 574, 583, 584,
|
|
|
|
|
585, 569, 576, 586, 580, 588, 589, 590, 591, 600,
|
|
|
|
|
603, 602, 605, 612, 593, 611, 613, 615, 616, 617,
|
|
|
|
|
626, 618, 628, 622, 635, 619, 633, 638, 627, 636,
|
|
|
|
|
641, 645, 646, 653, 640, 656, 657, 658, 660, 661,
|
|
|
|
|
663, 671, 666, 667, 648, 670, 672, 674, 675, 676,
|
2019-09-09 11:11:26 -04:00
|
|
|
678, 687, 679, 689, 682, 690, 695, 691, 710, 699,
|
|
|
|
|
|
|
|
|
|
700, 701, 702, 711, 704, 712, 713, 726, 731, 721,
|
|
|
|
|
732, 733, 735, 737, 740, 748, 739, 746, 743, 750,
|
|
|
|
|
752, 753, 762, 758, 5768, 757, 760, 773, 766, 774,
|
|
|
|
|
775, 776, 781, 782, 763, 789, 787, 788, 792, 814,
|
|
|
|
|
796, 798, 794, 803, 806, 5768, 804, 808, 838, 810,
|
|
|
|
|
812, 832, 828, 824, 827, 829, 839, 836, 849, 842,
|
|
|
|
|
847, 851, 862, 858, 859, 860, 861, 864, 863, 877,
|
|
|
|
|
872, 870, 799, 874, 889, 875, 882, 886, 887, 892,
|
|
|
|
|
893, 894, 897, 899, 902, 903, 895, 904, 905, 908,
|
|
|
|
|
913, 914, 916, 917, 927, 929, 921, 940, 918, 935,
|
|
|
|
|
|
|
|
|
|
942, 943, 937, 944, 947, 950, 951, 952, 953, 961,
|
|
|
|
|
958, 959, 963, 964, 966, 967, 970, 972, 973, 975,
|
|
|
|
|
977, 979, 978, 985, 988, 981, 994, 989, 5768, 996,
|
|
|
|
|
998, 999, 1000, 1001, 1003, 5768, 1004, 1005, 1006, 1014,
|
|
|
|
|
1017, 1016, 1013, 1023, 1027, 1028, 1029, 1030, 1039, 1012,
|
|
|
|
|
1041, 1040, 1036, 1042, 1046, 1048, 1049, 1051, 1052, 1054,
|
|
|
|
|
1055, 1057, 1060, 1077, 5768, 1061, 1064, 1062, 1063, 1070,
|
|
|
|
|
1080, 1089, 1072, 1090, 1088, 1065, 1105, 1092, 1106, 1100,
|
|
|
|
|
1101, 1111, 1102, 1113, 1107, 1116, 1115, 1117, 1118, 1119,
|
|
|
|
|
1120, 1125, 1126, 1131, 5768, 1133, 1134, 1145, 1135, 1143,
|
|
|
|
|
|
|
|
|
|
1132, 1146, 1148, 1149, 1150, 1152, 1153, 1156, 1162, 1172,
|
|
|
|
|
1157, 1174, 1159, 1170, 1175, 1176, 1177, 1178, 1179, 1180,
|
|
|
|
|
1193, 1184, 1186, 1200, 1207, 1203, 1205, 1212, 1190, 1210,
|
|
|
|
|
1209, 1208, 1215, 1216, 1217, 1218, 1220, 1221, 1230, 1228,
|
|
|
|
|
1226, 1229, 1231, 1242, 1233, 1235, 1240, 1237, 1245, 1247,
|
|
|
|
|
1253, 1254, 1250, 1256, 5768, 1263, 1260, 1267, 1262, 1268,
|
|
|
|
|
1272, 1274, 1261, 1276, 1278, 1280, 1281, 1282, 1284, 1287,
|
|
|
|
|
1289, 1290, 1291, 1292, 1301, 1297, 1307, 1314, 1313, 1315,
|
|
|
|
|
1299, 1305, 1324, 1321, 1328, 1327, 1329, 1337, 1325, 1332,
|
|
|
|
|
1323, 1339, 1335, 1340, 1341, 1344, 1347, 1350, 1352, 1359,
|
|
|
|
|
|
|
|
|
|
1351, 1356, 1366, 1367, 1358, 1369, 1362, 1372, 1373, 1375,
|
|
|
|
|
1376, 1377, 1378, 1385, 1380, 1386, 1382, 1387, 1388, 1389,
|
|
|
|
|
1392, 1390, 1407, 1399, 1400, 1403, 1409, 1410, 1411, 1415,
|
|
|
|
|
1416, 1417, 1418, 1419, 1420, 1423, 1424, 1183, 1425, 1440,
|
|
|
|
|
1426, 1430, 1438, 1441, 1447, 1446, 1450, 1454, 1444, 1456,
|
|
|
|
|
1457, 1458, 1460, 1461, 1465, 1464, 1471, 1468, 1474, 1476,
|
|
|
|
|
1478, 1477, 1480, 1484, 1487, 1481, 5768, 1488, 1495, 1494,
|
|
|
|
|
1496, 1497, 1499, 1501, 1508, 1503, 1505, 1504, 1506, 1510,
|
|
|
|
|
1516, 5768, 1517, 5768, 5768, 1520, 5768, 5768, 1518, 1523,
|
|
|
|
|
1526, 1536, 1533, 1543, 1298, 1539, 1541, 1545, 1552, 1566,
|
|
|
|
|
|
|
|
|
|
1548, 1550, 1551, 1547, 1556, 1561, 1574, 1562, 1549, 1575,
|
|
|
|
|
1577, 1580, 1586, 1513, 1587, 1579, 1554, 1588, 1590, 1589,
|
|
|
|
|
1592, 1595, 1600, 1601, 1594, 1603, 1596, 1611, 1616, 1607,
|
|
|
|
|
1623, 5768, 1619, 1626, 1631, 1627, 1634, 1630, 1629, 1636,
|
|
|
|
|
1638, 1640, 1641, 1642, 1643, 1645, 1646, 1651, 1604, 1647,
|
|
|
|
|
1659, 1654, 5768, 1657, 1658, 1656, 1662, 1669, 1663, 1664,
|
|
|
|
|
1670, 1674, 1675, 1682, 1679, 1677, 1684, 1685, 1686, 1687,
|
|
|
|
|
5768, 1689, 1697, 1693, 1699, 1700, 1702, 1705, 1701, 1706,
|
|
|
|
|
1707, 1708, 1709, 1711, 1715, 1718, 1719, 1720, 1717, 1724,
|
|
|
|
|
1727, 1730, 1735, 1742, 1737, 1739, 1743, 1745, 1746, 1747,
|
|
|
|
|
|
|
|
|
|
1749, 1750, 1758, 1751, 1760, 1755, 1762, 1767, 1772, 1759,
|
|
|
|
|
1771, 1774, 1764, 1780, 1788, 1784, 1777, 1773, 1796, 1789,
|
|
|
|
|
1793, 1794, 1797, 1799, 1800, 1801, 1803, 1806, 1807, 1808,
|
|
|
|
|
1810, 5768, 1811, 1816, 5768, 1814, 1817, 1839, 1818, 1820,
|
|
|
|
|
1821, 1823, 1826, 1833, 1825, 1831, 1841, 1843, 1853, 1849,
|
|
|
|
|
1854, 1856, 1859, 1861, 1862, 1865, 1867, 1869, 1878, 1879,
|
|
|
|
|
1883, 1885, 1890, 1870, 1868, 1877, 1896, 1888, 1889, 1891,
|
|
|
|
|
1899, 1906, 1893, 1901, 1903, 1908, 1912, 1914, 1919, 5768,
|
|
|
|
|
1924, 1925, 1920, 1921, 1932, 1930, 1929, 1933, 1936, 1937,
|
|
|
|
|
1944, 1940, 1941, 1946, 1943, 1947, 1950, 1952, 1956, 1957,
|
|
|
|
|
|
|
|
|
|
1962, 1954, 1973, 5768, 1958, 5768, 1955, 1959, 1972, 1975,
|
|
|
|
|
1976, 1977, 1978, 1980, 5768, 5768, 1981, 1984, 1987, 1996,
|
|
|
|
|
1982, 5768, 1997, 2004, 2001, 2006, 2000, 1999, 2007, 2008,
|
|
|
|
|
2011, 2016, 2012, 2023, 2015, 2022, 2020, 5768, 2028, 2018,
|
|
|
|
|
2024, 2033, 2035, 2036, 2037, 2040, 5768, 2043, 2044, 2047,
|
|
|
|
|
2054, 2046, 2050, 2055, 2058, 2056, 2062, 2063, 2064, 2065,
|
|
|
|
|
2066, 2075, 2076, 2067, 2078, 2081, 2077, 5768, 2074, 2085,
|
|
|
|
|
2093, 2089, 2091, 2088, 2095, 2096, 2098, 2099, 2100, 2103,
|
|
|
|
|
2106, 2107, 2115, 2116, 2108, 2112, 2120, 2113, 2122, 2125,
|
|
|
|
|
2128, 2127, 2129, 2130, 2131, 5768, 2133, 2135, 124, 2139,
|
|
|
|
|
|
|
|
|
|
2140, 2142, 2141, 2148, 2144, 2147, 2164, 2165, 2161, 2160,
|
|
|
|
|
2163, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2177, 5768,
|
|
|
|
|
2151, 2179, 2180, 2182, 2185, 2186, 2189, 5768, 2199, 2202,
|
|
|
|
|
2188, 2201, 2209, 2204, 2210, 2211, 2213, 2218, 2214, 2217,
|
|
|
|
|
5768, 2221, 2224, 2226, 2227, 2228, 2230, 2235, 2237, 2238,
|
|
|
|
|
2239, 2242, 2240, 2241, 2245, 2243, 2246, 2250, 2259, 2249,
|
|
|
|
|
2251, 2256, 2260, 5768, 2272, 2261, 2270, 2263, 2274, 2273,
|
|
|
|
|
2287, 2277, 2280, 2282, 2288, 2297, 2290, 2284, 2298, 2299,
|
|
|
|
|
2304, 2308, 2307, 2313, 2314, 2311, 2315, 2321, 2323, 2324,
|
|
|
|
|
2325, 2329, 2327, 2330, 2331, 2332, 2339, 2340, 2337, 2348,
|
|
|
|
|
|
|
|
|
|
2346, 2353, 2351, 2356, 5768, 2357, 2358, 2341, 2363, 2371,
|
|
|
|
|
2368, 2369, 2375, 2376, 2377, 2378, 2379, 2386, 2381, 2383,
|
|
|
|
|
2384, 2387, 2388, 2394, 2395, 2399, 2400, 2407, 2401, 2409,
|
|
|
|
|
2410, 5768, 2411, 2415, 2404, 2417, 2419, 2421, 2428, 2429,
|
|
|
|
|
2431, 2422, 2425, 2433, 2434, 2435, 2437, 2439, 2440, 2445,
|
|
|
|
|
2442, 5768, 2448, 2450, 2453, 2456, 2455, 2459, 2462, 2468,
|
|
|
|
|
2466, 2452, 2472, 2473, 2474, 5768, 2481, 2482, 2479, 2483,
|
|
|
|
|
2485, 2486, 2488, 2490, 2491, 5768, 2492, 2493, 2501, 2502,
|
|
|
|
|
2497, 5768, 2504, 2500, 2506, 2507, 2508, 2509, 2517, 2510,
|
|
|
|
|
2513, 2515, 2523, 2525, 2521, 2529, 5768, 2531, 2541, 2536,
|
|
|
|
|
|
|
|
|
|
2537, 2539, 2542, 2543, 2545, 2557, 2549, 2552, 2559, 2564,
|
|
|
|
|
2561, 2548, 2555, 2569, 2570, 2571, 2573, 2574, 5768, 2576,
|
|
|
|
|
2577, 2579, 2582, 2580, 2585, 2586, 2598, 2588, 2591, 2593,
|
|
|
|
|
2596, 2599, 2601, 2604, 2606, 2612, 2608, 2615, 2618, 2616,
|
|
|
|
|
2621, 2602, 2625, 2628, 2635, 2632, 2636, 5768, 2639, 2640,
|
|
|
|
|
2634, 2641, 2642, 2645, 2646, 2647, 2649, 2650, 2652, 2651,
|
|
|
|
|
2654, 2667, 2676, 2662, 2663, 2655, 2668, 2671, 2672, 2678,
|
|
|
|
|
2679, 2683, 2690, 2681, 2685, 2694, 2689, 2692, 2702, 2691,
|
|
|
|
|
2693, 2695, 2700, 2703, 2704, 2705, 2706, 2713, 2709, 2723,
|
|
|
|
|
2724, 2726, 2715, 2718, 2731, 2732, 5768, 2735, 2733, 2736,
|
|
|
|
|
|
|
|
|
|
2737, 2742, 2745, 2749, 2739, 2746, 2747, 2757, 2758, 2755,
|
|
|
|
|
2760, 2763, 2770, 2766, 5768, 2767, 5768, 2768, 2769, 2771,
|
|
|
|
|
2779, 2776, 5768, 2781, 5768, 2784, 2791, 2777, 2782, 5768,
|
|
|
|
|
2792, 2786, 2788, 2799, 2794, 2801, 2802, 2803, 2804, 2810,
|
|
|
|
|
2805, 2812, 2807, 2813, 2815, 2816, 2819, 2820, 2826, 2833,
|
|
|
|
|
2828, 2830, 2817, 2836, 2838, 2840, 2841, 5768, 2844, 2845,
|
|
|
|
|
2850, 2849, 2851, 2852, 2853, 2855, 2856, 2858, 2857, 2862,
|
|
|
|
|
2861, 2870, 2874, 2886, 2871, 2888, 5768, 2873, 2884, 2875,
|
|
|
|
|
2889, 5768, 2885, 2892, 2896, 2898, 2893, 2900, 2902, 2901,
|
|
|
|
|
2905, 2903, 2908, 2919, 2920, 2921, 2923, 2924, 2909, 2910,
|
|
|
|
|
|
|
|
|
|
2933, 2930, 2911, 2938, 2942, 2940, 2931, 2941, 2943, 2946,
|
|
|
|
|
2947, 2954, 2955, 2951, 2958, 2953, 2960, 2964, 2967, 2957,
|
|
|
|
|
2961, 2968, 2969, 2970, 2973, 2974, 2977, 2978, 2979, 2980,
|
|
|
|
|
2982, 5768, 2990, 2986, 2991, 2992, 2995, 2997, 3000, 3001,
|
|
|
|
|
3004, 3002, 3005, 3009, 3007, 5768, 3014, 5768, 3008, 3022,
|
|
|
|
|
3016, 3027, 3020, 3028, 3035, 3031, 3036, 3037, 3039, 3040,
|
|
|
|
|
3041, 3042, 3043, 3047, 3050, 3048, 3061, 3054, 3051, 3063,
|
|
|
|
|
3064, 3065, 3067, 3068, 5768, 3069, 3070, 3072, 3074, 3075,
|
|
|
|
|
3081, 3077, 3087, 3085, 3089, 3091, 3101, 5768, 3093, 3097,
|
|
|
|
|
3098, 3106, 3108, 3104, 3114, 3121, 3118, 3125, 3124, 5768,
|
|
|
|
|
|
|
|
|
|
3116, 3117, 3132, 3127, 3134, 3135, 5768, 3133, 5768, 3128,
|
|
|
|
|
3138, 3142, 3139, 3145, 3146, 3149, 3151, 3153, 3160, 3161,
|
|
|
|
|
3156, 3144, 3162, 3166, 3168, 3173, 3170, 3171, 3172, 5768,
|
|
|
|
|
3176, 3177, 3178, 3179, 3183, 3186, 3189, 3193, 5768, 3194,
|
|
|
|
|
3196, 3199, 3200, 3201, 3203, 3205, 3204, 3210, 3213, 3207,
|
|
|
|
|
3208, 3221, 3217, 3206, 3227, 3231, 3232, 3237, 5768, 3234,
|
|
|
|
|
3214, 3244, 3241, 3242, 3243, 3246, 3247, 3248, 3250, 3251,
|
|
|
|
|
3252, 3253, 3259, 3258, 3255, 3256, 3261, 3264, 3275, 3272,
|
|
|
|
|
3263, 3276, 3277, 3280, 3283, 3282, 3286, 3289, 3291, 3292,
|
|
|
|
|
3302, 3303, 3294, 3297, 3306, 3307, 3314, 3310, 5768, 3322,
|
|
|
|
|
|
|
|
|
|
3299, 3325, 3309, 3320, 3327, 3328, 3330, 3331, 3321, 3332,
|
|
|
|
|
3339, 3335, 5768, 3348, 3337, 3336, 3346, 3349, 3359, 3354,
|
|
|
|
|
3340, 3356, 3362, 3358, 3365, 3367, 3368, 3369, 3372, 3373,
|
|
|
|
|
5768, 5768, 3375, 3376, 3379, 5768, 3380, 3378, 3391, 3382,
|
|
|
|
|
3383, 3392, 3395, 3394, 3386, 3396, 3398, 3400, 5768, 3405,
|
|
|
|
|
3414, 3406, 3411, 3415, 3419, 3421, 3417, 3423, 3425, 3427,
|
|
|
|
|
3428, 3430, 3429, 3431, 3434, 3442, 3438, 3437, 3439, 5768,
|
|
|
|
|
3441, 3444, 3448, 3450, 3451, 3454, 5768, 3455, 3456, 3462,
|
|
|
|
|
3463, 3465, 3467, 3473, 3476, 3477, 3478, 3480, 3481, 3482,
|
|
|
|
|
3483, 3485, 3490, 3488, 3495, 3496, 3487, 5768, 3500, 3501,
|
|
|
|
|
|
|
|
|
|
3504, 3507, 3511, 3514, 3521, 3522, 3518, 3520, 3519, 3529,
|
|
|
|
|
5768, 3526, 3528, 3527, 3530, 3540, 3535, 3542, 3533, 5768,
|
|
|
|
|
3537, 3541, 3543, 5768, 3547, 3551, 3554, 3559, 3546, 3562,
|
|
|
|
|
3561, 3563, 3564, 3565, 5768, 3571, 5768, 3569, 3573, 3577,
|
|
|
|
|
5768, 3575, 3579, 3581, 3583, 3580, 3588, 3590, 3597, 3584,
|
|
|
|
|
3592, 3594, 3598, 3599, 3600, 3608, 3606, 5768, 3609, 3607,
|
|
|
|
|
3613, 3614, 3618, 3611, 3616, 3619, 3626, 5768, 5768, 3629,
|
|
|
|
|
5768, 3630, 3631, 3632, 5768, 3634, 3636, 3641, 3638, 3642,
|
|
|
|
|
3644, 3652, 3645, 5768, 3654, 3640, 3656, 3658, 3659, 3662,
|
|
|
|
|
3663, 3664, 3665, 3666, 3671, 5768, 3668, 3670, 3673, 3669,
|
|
|
|
|
|
|
|
|
|
3678, 3683, 3679, 3685, 5768, 3689, 3693, 3692, 3696, 3697,
|
|
|
|
|
5768, 3699, 5768, 3700, 3702, 3703, 3707, 3706, 5768, 3712,
|
|
|
|
|
3713, 3717, 3719, 3721, 3720, 3723, 3724, 3730, 3731, 3738,
|
|
|
|
|
3734, 3733, 3735, 5768, 3736, 3740, 3742, 3749, 3737, 3744,
|
|
|
|
|
3753, 3756, 3757, 3758, 3763, 3760, 3767, 3769, 3771, 3773,
|
|
|
|
|
3765, 5768, 3775, 3777, 3776, 3791, 3786, 3781, 5768, 3782,
|
|
|
|
|
3796, 3798, 5768, 3789, 3788, 3800, 3805, 3792, 3799, 3806,
|
|
|
|
|
3807, 3811, 5768, 3812, 3813, 3814, 3815, 3818, 3819, 5768,
|
|
|
|
|
5768, 3827, 5768, 3829, 3816, 3830, 3831, 3832, 3838, 3837,
|
|
|
|
|
3841, 3843, 3840, 3844, 3851, 3852, 3861, 3864, 3868, 3863,
|
|
|
|
|
|
|
|
|
|
3867, 3853, 5768, 5768, 3870, 3871, 3874, 3877, 3878, 3880,
|
|
|
|
|
3881, 3888, 3884, 3890, 3894, 3895, 3902, 5768, 3901, 3887,
|
|
|
|
|
3904, 5768, 3885, 3898, 3906, 3909, 3911, 3912, 3915, 3914,
|
|
|
|
|
3917, 3918, 3920, 3919, 3922, 3923, 3927, 3926, 3928, 3936,
|
|
|
|
|
5768, 3940, 3937, 3938, 3941, 3943, 3944, 3947, 3949, 3950,
|
|
|
|
|
5768, 3951, 3953, 3955, 3959, 3960, 3962, 3969, 3977, 3979,
|
|
|
|
|
3965, 3973, 3981, 3983, 3985, 3988, 5768, 3989, 3987, 3990,
|
|
|
|
|
3991, 3997, 3999, 4000, 4002, 4004, 4006, 4008, 4009, 4012,
|
|
|
|
|
4016, 4013, 4017, 4018, 4020, 5768, 4024, 4031, 4021, 4034,
|
|
|
|
|
4025, 4035, 4042, 4036, 4047, 4038, 4044, 4048, 4050, 5768,
|
|
|
|
|
|
|
|
|
|
4051, 4053, 4054, 4056, 4062, 4055, 4058, 4063, 5768, 4065,
|
|
|
|
|
4066, 4068, 4070, 4072, 4077, 4079, 4080, 4082, 4083, 4087,
|
|
|
|
|
5768, 4088, 4089, 4092, 4093, 4096, 4098, 4099, 4101, 5768,
|
|
|
|
|
4103, 4106, 4102, 4116, 4112, 4120, 4121, 4123, 4113, 4122,
|
|
|
|
|
4129, 4115, 4125, 4130, 4131, 4136, 4143, 4147, 4142, 5768,
|
|
|
|
|
4144, 5768, 4145, 4148, 4157, 4152, 4155, 5768, 4156, 4158,
|
|
|
|
|
4160, 4163, 4162, 5768, 4167, 4165, 4168, 4170, 5768, 4166,
|
|
|
|
|
4180, 4173, 4176, 4187, 4189, 5768, 4192, 4194, 4195, 4202,
|
|
|
|
|
4204, 4206, 4199, 4207, 4203, 4209, 4201, 4210, 5768, 4212,
|
|
|
|
|
4214, 4219, 4221, 4222, 4224, 4225, 4228, 4230, 5768, 4232,
|
|
|
|
|
|
|
|
|
|
4233, 4234, 4235, 4236, 4238, 4241, 4245, 4242, 4247, 5768,
|
|
|
|
|
4250, 4251, 4261, 4252, 4257, 5768, 5768, 4262, 4263, 4267,
|
|
|
|
|
4268, 4271, 5768, 4269, 4280, 4275, 4278, 4279, 5768, 5768,
|
|
|
|
|
4282, 5768, 4283, 5768, 4284, 4286, 5768, 5768, 4285, 4289,
|
|
|
|
|
4291, 4292, 4300, 5768, 4304, 5768, 4311, 4306, 4293, 4295,
|
|
|
|
|
4308, 5768, 4310, 4312, 4319, 5768, 4314, 4322, 4320, 4321,
|
|
|
|
|
5768, 4326, 4327, 4330, 5768, 4331, 4334, 4335, 4337, 4341,
|
|
|
|
|
4339, 4343, 4328, 4347, 4349, 4351, 4353, 4358, 4360, 4363,
|
|
|
|
|
4354, 4364, 4365, 4367, 4371, 4373, 4374, 4375, 4376, 4378,
|
|
|
|
|
4379, 4381, 4384, 4388, 4389, 4387, 4390, 4391, 4400, 4393,
|
|
|
|
|
|
|
|
|
|
4396, 4404, 4397, 4407, 4408, 4409, 4410, 4412, 4414, 4418,
|
|
|
|
|
4417, 4420, 5768, 4419, 4421, 4423, 4436, 4424, 4425, 4440,
|
|
|
|
|
4442, 4448, 4449, 5768, 4451, 5768, 4453, 4444, 4455, 4456,
|
|
|
|
|
5768, 4457, 4458, 4459, 4460, 4461, 4463, 4464, 4467, 5768,
|
|
|
|
|
4472, 4465, 4469, 4474, 5768, 4479, 4485, 4486, 4489, 4490,
|
|
|
|
|
4491, 4492, 4493, 4496, 4494, 4499, 4501, 4508, 4503, 4505,
|
|
|
|
|
4495, 4517, 4509, 4515, 4518, 4429, 4525, 4526, 4531, 5768,
|
|
|
|
|
4519, 5768, 4527, 4532, 4533, 4534, 4537, 4539, 4541, 5768,
|
|
|
|
|
5768, 4543, 4544, 4549, 4540, 4546, 4553, 4557, 5768, 4550,
|
|
|
|
|
4558, 4567, 4556, 5768, 4568, 4570, 4572, 5768, 4573, 4574,
|
|
|
|
|
|
|
|
|
|
4575, 4577, 4578, 4581, 4582, 4584, 4592, 5768, 5768, 5768,
|
|
|
|
|
5768, 4593, 4586, 4599, 4589, 4600, 4595, 4601, 4606, 4603,
|
|
|
|
|
5768, 4612, 5768, 5768, 4609, 4615, 4607, 4617, 4616, 4619,
|
|
|
|
|
4623, 4625, 5768, 4626, 4629, 4630, 4627, 4637, 4640, 4643,
|
|
|
|
|
4644, 4628, 4645, 4653, 4651, 4654, 4652, 4657, 4659, 4661,
|
|
|
|
|
5768, 5768, 4664, 4666, 4668, 4675, 4673, 4676, 4685, 4680,
|
|
|
|
|
4682, 4683, 4686, 4688, 4689, 4690, 5768, 4693, 4697, 5768,
|
|
|
|
|
4691, 5768, 4699, 4705, 4695, 4706, 4707, 4708, 4711, 4709,
|
|
|
|
|
5768, 5768, 4714, 4715, 4720, 4722, 4723, 4725, 4726, 4728,
|
|
|
|
|
4724, 5768, 4729, 5768, 4730, 4732, 4738, 4731, 4746, 4751,
|
|
|
|
|
|
|
|
|
|
4753, 4749, 4752, 4754, 5768, 4755, 4757, 5768, 4758, 4761,
|
|
|
|
|
4763, 5768, 4765, 4768, 4772, 5768, 4774, 4776, 4777, 5768,
|
|
|
|
|
4784, 5768, 4769, 4787, 5768, 4779, 4790, 5768, 4793, 4795,
|
|
|
|
|
4785, 4796, 5768, 4797, 5768, 4798, 4801, 4802, 4805, 4806,
|
|
|
|
|
4808, 4810, 4811, 4812, 4819, 4817, 4820, 5768, 5768, 4828,
|
|
|
|
|
4814, 4825, 4830, 4832, 4839, 4831, 4836, 4835, 5768, 5768,
|
|
|
|
|
4841, 5768, 4843, 4844, 5768, 4842, 4849, 4848, 4853, 4854,
|
|
|
|
|
4855, 4857, 4860, 4861, 4862, 4869, 4864, 4874, 4876, 4878,
|
|
|
|
|
4881, 4884, 4886, 4887, 4888, 4889, 4890, 4891, 4893, 5768,
|
|
|
|
|
4895, 4897, 4896, 5768, 4904, 4898, 4907, 4912, 5768, 4910,
|
|
|
|
|
|
|
|
|
|
4916, 4918, 4919, 5768, 4920, 4922, 4926, 4923, 4924, 4935,
|
|
|
|
|
4931, 4933, 5768, 5768, 5768, 4936, 4946, 5768, 4948, 4937,
|
|
|
|
|
5768, 4940, 4950, 5768, 5768, 4943, 4951, 4952, 4959, 5768,
|
|
|
|
|
4954, 5768, 4956, 5768, 4958, 4964, 4970, 4965, 5768, 4973,
|
|
|
|
|
4975, 5768, 4981, 4983, 4985, 4986, 4967, 4988, 4989, 5768,
|
|
|
|
|
4996, 4992, 4993, 5000, 4991, 5001, 5003, 5002, 5010, 5005,
|
|
|
|
|
5012, 5768, 5006, 5013, 5014, 5768, 5016, 5768, 5018, 5019,
|
|
|
|
|
4957, 5017, 5021, 5023, 5027, 5024, 5033, 5039, 5036, 5768,
|
|
|
|
|
5041, 5044, 5768, 5045, 5768, 5047, 5768, 5048, 5049, 5051,
|
|
|
|
|
5052, 5768, 5054, 5050, 5056, 5058, 5768, 5060, 5062, 5069,
|
|
|
|
|
|
|
|
|
|
5768, 5768, 5073, 4648, 5072, 5075, 5063, 5081, 5082, 5085,
|
|
|
|
|
5084, 5092, 5087, 5089, 5088, 5091, 5095, 5096, 5768, 5768,
|
|
|
|
|
5768, 5099, 5102, 5109, 5113, 5107, 5120, 5105, 5768, 5116,
|
|
|
|
|
5119, 5115, 5131, 5118, 5127, 5768, 5129, 5130, 5132, 5768,
|
|
|
|
|
5138, 5140, 5142, 5143, 5145, 5152, 5154, 5156, 5158, 5768,
|
|
|
|
|
5160, 5768, 5768, 5146, 5768, 5144, 5148, 5161, 5167, 5768,
|
|
|
|
|
5172, 5162, 5164, 5169, 5174, 5768, 5175, 5177, 5768, 5768,
|
|
|
|
|
5180, 5768, 5186, 5187, 5181, 5196, 5188, 5189, 5199, 5201,
|
|
|
|
|
5768, 5191, 5193, 5202, 5203, 5204, 5768, 5208, 5205, 5209,
|
|
|
|
|
5212, 5217, 5117, 5219, 5218, 5220, 5768, 5768, 5214, 5227,
|
|
|
|
|
|
|
|
|
|
5768, 5768, 5222, 5231, 5238, 5768, 5768, 5768, 5244, 5768,
|
|
|
|
|
5246, 5250, 5254, 5258, 5249, 5768, 5260, 5223, 5257, 5768,
|
|
|
|
|
5228, 5262, 5768, 5768, 5263, 5265, 5264, 5266, 5267, 5768,
|
|
|
|
|
5269, 5270, 5273, 5277, 5281, 5278, 5284, 5283, 5291, 5300,
|
|
|
|
|
5286, 5297, 5296, 5298, 5299, 5301, 5306, 5302, 5768, 5768,
|
|
|
|
|
5309, 5768, 5768, 5314, 5316, 5319, 5322, 5324, 5326, 5328,
|
|
|
|
|
5768, 5329, 5331, 5332, 5768, 5334, 5336, 5333, 5337, 5339,
|
|
|
|
|
5340, 5342, 5344, 5768, 5768, 5345, 5346, 5347, 5354, 5356,
|
|
|
|
|
5768, 5358, 5365, 5362, 5364, 5360, 5366, 5367, 5768, 5370,
|
|
|
|
|
5768, 5768, 5768, 5768, 5768, 5768, 5768, 5768, 5368, 5768,
|
|
|
|
|
|
|
|
|
|
5378, 5381, 5768, 5372, 5382, 5386, 5387, 5375, 5768, 5388,
|
|
|
|
|
5392, 5393, 5394, 5397, 5399, 5401, 5402, 5404, 5408, 5405,
|
|
|
|
|
5410, 5406, 5409, 5768, 5768, 5417, 5413, 5416, 5419, 5435,
|
|
|
|
|
5436, 5439, 5441, 5423, 5426, 5444, 5443, 5445, 5432, 5449,
|
|
|
|
|
5458, 5451, 5453, 5455, 5456, 5460, 5768, 5461, 5768, 5462,
|
|
|
|
|
5768, 5768, 5467, 5468, 5463, 5470, 5478, 5483, 5474, 5479,
|
|
|
|
|
5481, 5485, 5768, 5482, 5768, 5487, 5486, 5768, 5491, 5493,
|
|
|
|
|
5494, 5495, 5496, 5497, 5499, 5505, 5768, 5503, 5506, 5515,
|
|
|
|
|
5507, 5523, 5518, 5522, 5524, 5526, 5520, 5534, 5530, 5533,
|
|
|
|
|
5768, 5536, 5537, 5538, 5541, 5542, 5549, 5544, 5546, 5547,
|
|
|
|
|
|
|
|
|
|
5768, 5551, 5553, 5552, 5554, 5555, 5558, 5566, 5564, 5568,
|
|
|
|
|
5768, 5570, 5575, 5572, 5577, 5579, 5582, 5583, 5584, 5586,
|
|
|
|
|
5588, 5418, 5595, 5592, 5597, 5589, 5600, 5598, 5768, 5602,
|
|
|
|
|
5606, 5768, 5607, 5609, 5610, 5611, 5615, 5768, 5619, 5613,
|
|
|
|
|
5620, 5621, 5624, 5626, 5768, 5628, 5635, 5631, 5768, 5636,
|
|
|
|
|
5768, 5768, 5637, 5640, 5643, 5645, 5647, 5768, 5768, 5768,
|
|
|
|
|
5676, 5683, 5690, 5697, 5704, 88, 5711, 5718, 5725, 5732,
|
|
|
|
|
5739, 5746, 5753, 5760
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2019-09-09 11:11:26 -04:00
|
|
|
static const flex_int16_t yy_def[2975] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2019-09-09 11:11:26 -04:00
|
|
|
2960, 1, 2961, 2961, 2962, 2962, 2963, 2963, 2964, 2964,
|
|
|
|
|
2965, 2965, 2960, 2966, 2960, 2960, 2960, 2960, 2967, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2968, 2960, 2960, 2960, 2968, 2969, 2960, 2960,
|
|
|
|
|
2960, 2969, 2970, 2960, 2960, 2960, 2960, 2970, 2971, 2960,
|
|
|
|
|
2960, 2960, 2971, 2972, 2960, 2973, 2960, 2972, 2972, 2966,
|
|
|
|
|
2966, 2960, 2974, 2967, 2974, 2967, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2968, 2968, 2969, 2969, 2970, 2970, 2960, 2971, 2971, 2972,
|
|
|
|
|
2972, 2973, 2973, 2972, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2972, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2972, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2972, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2972, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2960, 2960, 2966, 2960, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2972, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2972, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2960, 2966, 2960, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2960, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2960, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2960, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2960, 2960, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2960, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2960, 2960,
|
|
|
|
|
2966, 2960, 2966, 2960, 2966, 2966, 2960, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2960, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2960, 2960,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2960, 2960, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2960,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2960, 2966, 2966, 2960, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2960, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2960,
|
|
|
|
|
2966, 2960, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2960, 2960, 2960, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2960, 2960, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2960, 2966, 2960, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2960, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2960, 2966, 2960, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2960, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2960,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2960, 2960, 2966, 2960, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2960, 2960,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2960, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2960, 2960, 2966, 2966, 2966, 2960, 2960, 2960, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2960, 2960, 2966, 2966, 2966, 2966, 2966, 2960,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2960,
|
|
|
|
|
2966, 2960, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2960, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2966, 2960,
|
|
|
|
|
|
|
|
|
|
2966, 2966, 2960, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2960, 2960, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2960, 2966,
|
|
|
|
|
2960, 2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2960, 2966, 2960, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2960, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2966, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2966, 2960, 2966, 2966, 2966, 2966, 2966, 2960, 2966, 2966,
|
|
|
|
|
2966, 2966, 2966, 2966, 2960, 2966, 2966, 2966, 2960, 2966,
|
|
|
|
|
2960, 2960, 2966, 2966, 2966, 2966, 2966, 2960, 2960, 0,
|
|
|
|
|
2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960,
|
|
|
|
|
2960, 2960, 2960, 2960
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2019-09-09 11:11:26 -04:00
|
|
|
static const flex_int16_t yy_nxt[5809] =
|
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,
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
75, 71, 75, 68, 104, 157, 103, 93, 75, 76,
|
|
|
|
|
141, 141, 69, 15, 16, 17, 65, 66, 67, 71,
|
2018-04-17 09:23:35 -04:00
|
|
|
71, 83, 77, 78, 71, 68, 79, 71, 84, 87,
|
2019-04-05 11:39:10 -04:00
|
|
|
71, 80, 85, 88, 69, 86, 89, 151, 90, 91,
|
|
|
|
|
81, 71, 94, 71, 96, 71, 71, 159, 71, 105,
|
2018-04-17 09:23:35 -04:00
|
|
|
98, 112, 97, 99, 71, 109, 95, 106, 71, 110,
|
2019-04-05 11:39:10 -04:00
|
|
|
100, 71, 101, 107, 172, 71, 113, 108, 143, 71,
|
|
|
|
|
114, 143, 118, 71, 119, 111, 115, 71, 120, 116,
|
|
|
|
|
140, 151, 124, 148, 148, 125, 117, 163, 121, 122,
|
|
|
|
|
71, 123, 126, 71, 133, 154, 127, 128, 71, 129,
|
|
|
|
|
|
|
|
|
|
224, 130, 71, 137, 134, 158, 71, 138, 135, 136,
|
|
|
|
|
131, 139, 145, 71, 145, 145, 132, 145, 75, 71,
|
|
|
|
|
75, 75, 150, 75, 150, 150, 70, 150, 70, 70,
|
|
|
|
|
153, 70, 72, 165, 71, 171, 73, 70, 75, 71,
|
|
|
|
|
75, 75, 155, 75, 71, 71, 225, 71, 156, 75,
|
|
|
|
|
76, 71, 71, 71, 160, 161, 164, 71, 71, 166,
|
|
|
|
|
173, 71, 71, 169, 170, 167, 71, 168, 162, 71,
|
|
|
|
|
71, 175, 177, 178, 71, 71, 184, 71, 176, 174,
|
|
|
|
|
179, 182, 253, 71, 71, 71, 189, 180, 181, 183,
|
|
|
|
|
71, 151, 71, 185, 191, 71, 186, 71, 71, 199,
|
|
|
|
|
|
|
|
|
|
192, 194, 197, 71, 71, 195, 71, 198, 200, 187,
|
|
|
|
|
188, 190, 71, 201, 71, 71, 202, 205, 71, 203,
|
|
|
|
|
193, 196, 207, 71, 71, 71, 71, 204, 71, 212,
|
|
|
|
|
209, 71, 71, 206, 210, 71, 214, 71, 71, 71,
|
|
|
|
|
71, 208, 71, 220, 211, 215, 213, 71, 226, 229,
|
|
|
|
|
217, 216, 223, 71, 221, 71, 219, 218, 222, 233,
|
|
|
|
|
230, 71, 71, 71, 235, 227, 71, 71, 228, 231,
|
|
|
|
|
71, 239, 71, 236, 232, 238, 71, 234, 149, 240,
|
|
|
|
|
71, 242, 141, 141, 143, 237, 243, 143, 241, 145,
|
|
|
|
|
151, 145, 145, 244, 145, 148, 148, 150, 248, 150,
|
|
|
|
|
|
|
|
|
|
150, 75, 150, 75, 75, 71, 75, 71, 246, 71,
|
|
|
|
|
245, 71, 71, 153, 71, 71, 71, 250, 71, 71,
|
|
|
|
|
71, 256, 249, 247, 251, 259, 252, 255, 258, 71,
|
|
|
|
|
254, 71, 260, 264, 262, 71, 263, 71, 257, 71,
|
|
|
|
|
71, 265, 71, 71, 268, 261, 266, 71, 273, 269,
|
|
|
|
|
71, 147, 71, 71, 270, 275, 274, 276, 279, 71,
|
|
|
|
|
271, 272, 278, 267, 71, 277, 71, 71, 71, 71,
|
|
|
|
|
281, 71, 282, 283, 71, 71, 71, 290, 71, 288,
|
|
|
|
|
289, 285, 291, 284, 286, 71, 71, 280, 71, 287,
|
|
|
|
|
294, 297, 71, 298, 292, 299, 293, 71, 295, 301,
|
|
|
|
|
|
|
|
|
|
303, 71, 296, 304, 71, 71, 71, 300, 302, 71,
|
|
|
|
|
307, 71, 71, 309, 310, 71, 71, 308, 305, 71,
|
|
|
|
|
71, 71, 311, 71, 312, 306, 71, 313, 71, 71,
|
2019-05-16 16:30:42 -04:00
|
|
|
71, 71, 315, 71, 71, 319, 71, 317, 71, 71,
|
|
|
|
|
324, 71, 320, 314, 318, 325, 71, 71, 71, 321,
|
|
|
|
|
316, 328, 322, 326, 330, 71, 333, 327, 323, 71,
|
|
|
|
|
71, 71, 71, 329, 71, 71, 335, 336, 71, 71,
|
|
|
|
|
339, 340, 342, 331, 332, 338, 71, 71, 71, 334,
|
|
|
|
|
71, 71, 71, 337, 71, 345, 346, 71, 341, 71,
|
|
|
|
|
347, 349, 343, 71, 353, 344, 71, 71, 71, 151,
|
|
|
|
|
|
|
|
|
|
350, 71, 71, 71, 71, 352, 71, 360, 358, 356,
|
|
|
|
|
361, 354, 355, 71, 348, 71, 71, 351, 71, 364,
|
|
|
|
|
362, 365, 357, 363, 71, 71, 71, 359, 71, 71,
|
|
|
|
|
71, 71, 71, 371, 372, 71, 374, 369, 366, 71,
|
|
|
|
|
71, 71, 368, 373, 367, 375, 71, 377, 71, 71,
|
|
|
|
|
376, 71, 378, 71, 71, 370, 379, 381, 71, 71,
|
|
|
|
|
384, 71, 382, 386, 380, 388, 71, 385, 383, 71,
|
|
|
|
|
71, 71, 387, 71, 71, 391, 71, 389, 393, 71,
|
|
|
|
|
71, 392, 396, 71, 71, 71, 398, 71, 71, 71,
|
2019-09-09 11:11:26 -04:00
|
|
|
399, 71, 71, 401, 390, 71, 397, 408, 395, 394,
|
|
|
|
|
|
|
|
|
|
71, 403, 71, 71, 71, 405, 400, 407, 71, 402,
|
|
|
|
|
404, 409, 71, 71, 71, 71, 410, 71, 420, 419,
|
|
|
|
|
421, 417, 406, 71, 71, 71, 71, 423, 426, 427,
|
|
|
|
|
424, 418, 411, 428, 71, 412, 422, 425, 429, 71,
|
|
|
|
|
413, 414, 415, 416, 71, 71, 71, 430, 71, 436,
|
|
|
|
|
71, 431, 71, 71, 432, 434, 71, 435, 437, 71,
|
|
|
|
|
433, 71, 438, 71, 440, 71, 71, 439, 441, 445,
|
|
|
|
|
71, 71, 446, 71, 447, 71, 71, 463, 450, 71,
|
|
|
|
|
451, 444, 442, 448, 452, 443, 71, 71, 71, 71,
|
|
|
|
|
449, 455, 453, 456, 71, 71, 464, 458, 454, 465,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 457, 462, 71, 466, 71, 467, 71,
|
|
|
|
|
459, 71, 71, 460, 468, 461, 71, 71, 469, 71,
|
|
|
|
|
482, 71, 479, 71, 517, 71, 470, 71, 471, 477,
|
|
|
|
|
472, 480, 478, 481, 493, 484, 483, 151, 492, 494,
|
|
|
|
|
71, 71, 71, 473, 495, 71, 474, 496, 475, 71,
|
|
|
|
|
476, 71, 71, 485, 486, 71, 502, 499, 497, 498,
|
|
|
|
|
71, 500, 71, 487, 71, 488, 489, 490, 501, 506,
|
|
|
|
|
491, 71, 71, 71, 71, 71, 71, 71, 505, 507,
|
|
|
|
|
504, 503, 512, 71, 514, 71, 515, 71, 71, 511,
|
|
|
|
|
71, 513, 509, 510, 508, 71, 519, 523, 524, 71,
|
|
|
|
|
|
|
|
|
|
71, 518, 71, 516, 522, 71, 71, 71, 71, 534,
|
|
|
|
|
71, 521, 71, 520, 529, 71, 71, 71, 71, 531,
|
|
|
|
|
532, 71, 526, 527, 528, 525, 71, 71, 146, 71,
|
|
|
|
|
71, 71, 530, 536, 71, 533, 535, 537, 540, 543,
|
|
|
|
|
71, 539, 71, 546, 538, 544, 545, 547, 71, 541,
|
|
|
|
|
71, 542, 548, 71, 549, 71, 71, 71, 553, 550,
|
|
|
|
|
71, 551, 555, 71, 71, 71, 71, 558, 559, 556,
|
|
|
|
|
552, 71, 71, 554, 71, 560, 71, 71, 557, 71,
|
|
|
|
|
71, 565, 563, 71, 564, 71, 71, 561, 71, 566,
|
|
|
|
|
71, 71, 71, 571, 71, 567, 572, 562, 71, 574,
|
|
|
|
|
|
|
|
|
|
570, 71, 71, 573, 569, 568, 575, 71, 577, 71,
|
|
|
|
|
579, 71, 71, 71, 71, 576, 71, 71, 71, 71,
|
|
|
|
|
581, 589, 582, 591, 578, 71, 71, 71, 584, 71,
|
|
|
|
|
71, 592, 580, 588, 583, 585, 71, 586, 587, 590,
|
|
|
|
|
71, 71, 71, 71, 596, 600, 599, 602, 594, 71,
|
|
|
|
|
593, 595, 71, 71, 71, 71, 597, 601, 598, 71,
|
|
|
|
|
605, 71, 71, 604, 71, 71, 608, 71, 71, 609,
|
|
|
|
|
71, 603, 611, 71, 71, 71, 71, 71, 71, 625,
|
|
|
|
|
610, 606, 607, 71, 612, 71, 614, 634, 144, 613,
|
|
|
|
|
71, 615, 624, 71, 623, 626, 616, 628, 617, 627,
|
|
|
|
|
|
|
|
|
|
631, 71, 71, 71, 618, 71, 619, 629, 632, 620,
|
|
|
|
|
621, 630, 635, 71, 71, 71, 622, 633, 71, 71,
|
|
|
|
|
71, 637, 638, 636, 71, 641, 71, 643, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 640, 644, 639, 649, 71, 71,
|
|
|
|
|
642, 645, 650, 646, 71, 71, 71, 151, 71, 647,
|
|
|
|
|
653, 655, 656, 648, 652, 654, 71, 651, 71, 71,
|
|
|
|
|
657, 71, 71, 71, 659, 71, 71, 663, 665, 71,
|
|
|
|
|
71, 658, 71, 660, 667, 71, 661, 666, 664, 668,
|
|
|
|
|
662, 670, 669, 71, 671, 71, 672, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 676, 675, 71, 71, 684, 71,
|
|
|
|
|
|
|
|
|
|
681, 677, 673, 71, 674, 682, 71, 807, 678, 680,
|
|
|
|
|
683, 679, 685, 71, 686, 687, 71, 688, 71, 689,
|
|
|
|
|
71, 71, 71, 71, 690, 71, 691, 692, 71, 71,
|
|
|
|
|
71, 71, 695, 71, 71, 696, 694, 700, 699, 71,
|
|
|
|
|
693, 71, 71, 71, 71, 701, 71, 703, 71, 705,
|
|
|
|
|
71, 706, 698, 71, 697, 71, 708, 702, 71, 712,
|
|
|
|
|
71, 709, 707, 71, 704, 710, 71, 71, 711, 71,
|
|
|
|
|
718, 714, 715, 71, 71, 71, 71, 716, 713, 721,
|
|
|
|
|
71, 71, 719, 720, 717, 71, 723, 71, 724, 71,
|
|
|
|
|
726, 71, 725, 71, 71, 71, 732, 71, 728, 730,
|
|
|
|
|
|
|
|
|
|
71, 722, 71, 71, 71, 71, 729, 727, 738, 733,
|
|
|
|
|
71, 71, 71, 736, 71, 731, 739, 737, 71, 735,
|
|
|
|
|
71, 734, 863, 740, 741, 742, 71, 71, 71, 743,
|
|
|
|
|
745, 747, 746, 744, 71, 749, 71, 71, 71, 748,
|
|
|
|
|
71, 71, 71, 750, 752, 71, 758, 751, 71, 753,
|
|
|
|
|
71, 754, 71, 71, 71, 756, 757, 71, 755, 761,
|
|
|
|
|
71, 763, 760, 71, 71, 71, 767, 759, 765, 71,
|
|
|
|
|
764, 71, 71, 770, 769, 71, 768, 762, 771, 71,
|
|
|
|
|
71, 772, 71, 766, 774, 71, 71, 776, 71, 71,
|
|
|
|
|
71, 71, 782, 71, 775, 71, 773, 783, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 71, 777, 71, 778, 779, 784, 780,
|
|
|
|
|
785, 781, 71, 71, 791, 786, 71, 789, 790, 787,
|
|
|
|
|
71, 788, 71, 71, 71, 793, 792, 796, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 804, 794, 71, 71, 71, 71,
|
|
|
|
|
805, 795, 797, 71, 798, 142, 803, 799, 800, 801,
|
|
|
|
|
802, 71, 808, 71, 71, 810, 806, 71, 809, 71,
|
|
|
|
|
71, 813, 811, 71, 812, 814, 815, 71, 816, 71,
|
|
|
|
|
71, 71, 817, 71, 71, 818, 819, 71, 151, 820,
|
|
|
|
|
825, 71, 822, 824, 71, 821, 823, 71, 826, 71,
|
|
|
|
|
71, 71, 832, 71, 71, 827, 828, 71, 833, 835,
|
|
|
|
|
|
|
|
|
|
71, 71, 838, 836, 829, 830, 834, 71, 71, 71,
|
|
|
|
|
71, 831, 71, 840, 71, 844, 71, 71, 71, 71,
|
|
|
|
|
837, 71, 841, 71, 845, 846, 71, 839, 888, 71,
|
|
|
|
|
71, 71, 843, 71, 850, 847, 71, 842, 851, 71,
|
|
|
|
|
857, 852, 858, 849, 848, 855, 71, 861, 853, 71,
|
|
|
|
|
856, 854, 71, 860, 71, 859, 71, 862, 71, 867,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 875, 71, 865, 71,
|
|
|
|
|
864, 891, 879, 880, 71, 71, 882, 883, 866, 71,
|
|
|
|
|
868, 869, 877, 870, 876, 878, 871, 71, 71, 884,
|
|
|
|
|
71, 872, 71, 71, 881, 885, 886, 873, 874, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 71, 887, 71, 895, 71, 71, 71,
|
|
|
|
|
894, 890, 889, 71, 71, 898, 71, 71, 902, 904,
|
|
|
|
|
71, 892, 893, 896, 71, 899, 923, 897, 900, 71,
|
|
|
|
|
905, 901, 71, 908, 903, 906, 71, 907, 909, 71,
|
|
|
|
|
71, 911, 71, 71, 71, 910, 912, 71, 913, 71,
|
|
|
|
|
915, 71, 916, 71, 71, 71, 71, 914, 71, 71,
|
|
|
|
|
71, 919, 917, 922, 71, 920, 925, 71, 924, 71,
|
|
|
|
|
71, 71, 71, 918, 929, 71, 71, 71, 921, 927,
|
|
|
|
|
928, 932, 71, 71, 930, 931, 926, 71, 71, 937,
|
|
|
|
|
71, 933, 71, 939, 938, 71, 935, 71, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 936, 71, 944, 946, 940, 71, 942, 934, 947,
|
|
|
|
|
71, 945, 71, 71, 71, 71, 941, 949, 71, 71,
|
|
|
|
|
71, 71, 71, 943, 71, 960, 957, 948, 71, 955,
|
|
|
|
|
71, 71, 71, 71, 950, 951, 953, 71, 952, 954,
|
|
|
|
|
71, 961, 958, 71, 956, 962, 965, 959, 71, 963,
|
|
|
|
|
71, 964, 71, 967, 968, 71, 71, 966, 71, 71,
|
|
|
|
|
71, 970, 71, 71, 71, 977, 972, 979, 71, 981,
|
|
|
|
|
969, 71, 71, 71, 982, 71, 971, 71, 978, 973,
|
|
|
|
|
71, 975, 974, 976, 71, 71, 71, 71, 980, 983,
|
|
|
|
|
71, 984, 987, 71, 989, 990, 985, 71, 988, 993,
|
|
|
|
|
|
|
|
|
|
991, 71, 71, 994, 986, 996, 71, 71, 992, 71,
|
|
|
|
|
71, 999, 151, 71, 71, 998, 71, 1002, 1001, 71,
|
|
|
|
|
71, 71, 995, 71, 71, 997, 1005, 71, 1000, 71,
|
|
|
|
|
71, 71, 1017, 71, 71, 1020, 71, 1018, 71, 71,
|
|
|
|
|
1004, 1003, 1006, 1008, 71, 71, 71, 1009, 1007, 1019,
|
|
|
|
|
1022, 1010, 71, 1023, 71, 1011, 71, 1012, 1024, 1025,
|
|
|
|
|
1027, 1013, 71, 1014, 1021, 1028, 71, 71, 1015, 71,
|
|
|
|
|
1026, 1030, 71, 1016, 71, 71, 1029, 1032, 71, 1034,
|
|
|
|
|
71, 71, 71, 71, 1031, 1039, 1040, 1033, 1038, 1035,
|
|
|
|
|
71, 71, 71, 1042, 1037, 1041, 71, 1043, 71, 1036,
|
|
|
|
|
|
|
|
|
|
1045, 71, 71, 71, 71, 1044, 71, 1055, 1046, 71,
|
|
|
|
|
1047, 1059, 71, 1054, 71, 1048, 71, 1049, 1056, 71,
|
|
|
|
|
1058, 71, 1060, 1050, 1057, 71, 1064, 71, 1051, 1052,
|
|
|
|
|
1061, 1066, 71, 71, 71, 1053, 1065, 71, 71, 1070,
|
|
|
|
|
1062, 1067, 71, 71, 1063, 71, 71, 1069, 1071, 71,
|
|
|
|
|
71, 1076, 1068, 71, 71, 1073, 71, 71, 1074, 71,
|
|
|
|
|
71, 1072, 1077, 71, 1079, 71, 1075, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 1078, 1081, 71, 1080, 1083, 1084, 1085,
|
|
|
|
|
1088, 1086, 1090, 1082, 1087, 71, 71, 1089, 71, 71,
|
|
|
|
|
71, 71, 1091, 71, 71, 71, 1096, 71, 1097, 1098,
|
|
|
|
|
|
|
|
|
|
71, 1100, 1093, 1101, 1092, 1095, 1099, 1094, 1102, 71,
|
|
|
|
|
71, 1104, 71, 71, 71, 1106, 1105, 71, 1107, 71,
|
|
|
|
|
71, 71, 1108, 1114, 71, 71, 1103, 1109, 71, 71,
|
|
|
|
|
1116, 71, 1110, 71, 1112, 71, 71, 71, 1111, 1113,
|
|
|
|
|
1118, 71, 1122, 1117, 1120, 1115, 71, 1119, 71, 71,
|
|
|
|
|
71, 1123, 1121, 71, 1125, 1126, 71, 71, 1132, 71,
|
|
|
|
|
71, 1131, 1128, 71, 1124, 1127, 1130, 71, 71, 71,
|
|
|
|
|
1136, 71, 1133, 1129, 1135, 71, 71, 71, 71, 71,
|
|
|
|
|
71, 1140, 1142, 1143, 1147, 1144, 1134, 71, 71, 71,
|
|
|
|
|
71, 71, 1141, 1137, 71, 1138, 1145, 1139, 71, 1146,
|
|
|
|
|
|
|
|
|
|
1150, 71, 71, 1152, 71, 1148, 71, 1151, 71, 71,
|
|
|
|
|
1153, 71, 71, 71, 1156, 1157, 71, 1154, 1149, 71,
|
|
|
|
|
71, 71, 1162, 1163, 1158, 71, 71, 1155, 71, 71,
|
|
|
|
|
1165, 1160, 1166, 71, 1159, 71, 1164, 1170, 71, 1161,
|
|
|
|
|
71, 71, 71, 71, 71, 1167, 71, 1176, 71, 1168,
|
|
|
|
|
1169, 1172, 71, 71, 71, 71, 1182, 71, 1171, 1180,
|
|
|
|
|
71, 71, 1173, 1197, 71, 1175, 1177, 1179, 1178, 1174,
|
|
|
|
|
1181, 1184, 1185, 71, 71, 1187, 71, 71, 71, 1186,
|
|
|
|
|
1183, 1188, 71, 71, 71, 71, 71, 71, 71, 1191,
|
|
|
|
|
71, 151, 71, 71, 1194, 71, 1189, 1190, 71, 71,
|
|
|
|
|
|
|
|
|
|
1192, 71, 71, 1195, 1201, 1193, 1198, 1203, 1209, 1196,
|
|
|
|
|
1200, 1199, 71, 1207, 71, 71, 1204, 71, 1205, 1202,
|
|
|
|
|
1208, 1206, 71, 71, 71, 1211, 71, 71, 1210, 1214,
|
|
|
|
|
71, 71, 1213, 1219, 71, 1212, 1216, 71, 1217, 71,
|
|
|
|
|
71, 71, 1220, 71, 1221, 1215, 1223, 1224, 71, 1218,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 71, 1225, 71, 71,
|
|
|
|
|
1222, 1231, 71, 71, 71, 1226, 1227, 1229, 1230, 71,
|
|
|
|
|
1232, 1228, 71, 71, 71, 1233, 71, 1237, 1236, 1241,
|
|
|
|
|
1234, 1235, 1240, 71, 1238, 71, 71, 71, 1242, 1239,
|
|
|
|
|
71, 1243, 1245, 71, 1247, 71, 1244, 71, 1246, 1248,
|
|
|
|
|
|
|
|
|
|
71, 71, 1252, 71, 149, 1261, 1260, 1250, 1251, 1249,
|
|
|
|
|
71, 71, 71, 1262, 1265, 1253, 1259, 71, 1254, 1255,
|
|
|
|
|
71, 71, 1263, 1256, 71, 1268, 71, 71, 71, 1257,
|
|
|
|
|
1264, 1266, 1267, 1258, 71, 1270, 71, 71, 71, 1271,
|
|
|
|
|
71, 1272, 71, 71, 71, 71, 1280, 1281, 1277, 1269,
|
|
|
|
|
71, 1275, 71, 71, 71, 1282, 1274, 1273, 1278, 71,
|
|
|
|
|
1276, 71, 1290, 1279, 71, 1283, 71, 1289, 1284, 71,
|
|
|
|
|
71, 71, 1294, 1285, 1292, 1286, 71, 1287, 1296, 1288,
|
|
|
|
|
1291, 71, 71, 1297, 71, 1295, 1293, 1299, 71, 71,
|
|
|
|
|
71, 71, 71, 1305, 71, 1306, 71, 71, 1301, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 1300, 1298, 1307, 1309, 1304, 71, 71, 1302,
|
|
|
|
|
1303, 1308, 71, 71, 71, 1310, 1311, 71, 1314, 1315,
|
|
|
|
|
71, 1317, 71, 71, 71, 1318, 1312, 1319, 71, 1316,
|
|
|
|
|
71, 1323, 71, 1320, 71, 71, 1321, 1313, 71, 1322,
|
|
|
|
|
1325, 71, 71, 1326, 71, 1330, 71, 71, 71, 1327,
|
|
|
|
|
71, 1332, 71, 71, 1324, 71, 1328, 1334, 71, 1329,
|
|
|
|
|
1336, 71, 1335, 71, 1338, 71, 71, 1331, 71, 71,
|
|
|
|
|
1333, 1340, 71, 1337, 1341, 71, 1342, 1343, 1339, 71,
|
|
|
|
|
1344, 71, 1345, 1347, 1346, 71, 71, 71, 1351, 1352,
|
|
|
|
|
1354, 1348, 71, 1349, 71, 71, 71, 1353, 71, 71,
|
|
|
|
|
|
|
|
|
|
1350, 71, 1358, 71, 71, 71, 71, 1355, 1362, 1363,
|
|
|
|
|
71, 1365, 1357, 71, 71, 71, 1364, 71, 1356, 71,
|
|
|
|
|
71, 71, 71, 71, 1359, 1360, 71, 1366, 71, 1361,
|
|
|
|
|
71, 1372, 1369, 1367, 71, 1370, 71, 1377, 71, 1368,
|
|
|
|
|
1371, 1376, 71, 1373, 71, 147, 1375, 1379, 1381, 71,
|
|
|
|
|
71, 1374, 71, 1382, 71, 71, 71, 1378, 71, 1384,
|
|
|
|
|
1385, 71, 71, 1380, 1392, 71, 1394, 1383, 71, 1386,
|
|
|
|
|
71, 1387, 71, 1388, 71, 1390, 1389, 71, 1391, 1393,
|
|
|
|
|
1397, 1395, 71, 71, 71, 1396, 71, 71, 1400, 71,
|
|
|
|
|
71, 1402, 71, 71, 1398, 71, 1407, 1408, 71, 71,
|
|
|
|
|
|
|
|
|
|
1399, 71, 1401, 1404, 71, 1411, 71, 1403, 1405, 71,
|
|
|
|
|
1406, 71, 71, 1412, 71, 71, 1409, 71, 1410, 71,
|
|
|
|
|
1414, 71, 1418, 1413, 1415, 71, 1419, 1416, 71, 71,
|
|
|
|
|
1420, 71, 1423, 1417, 71, 1428, 1426, 1422, 71, 1421,
|
|
|
|
|
1425, 71, 1429, 1427, 1424, 71, 1430, 71, 71, 71,
|
|
|
|
|
1431, 1432, 71, 71, 71, 71, 1434, 1433, 71, 71,
|
|
|
|
|
71, 1439, 71, 71, 71, 71, 1438, 71, 71, 1436,
|
|
|
|
|
1442, 1441, 1435, 1437, 1445, 71, 71, 1450, 1443, 1446,
|
|
|
|
|
71, 71, 1440, 1447, 71, 71, 1444, 1451, 1448, 71,
|
|
|
|
|
1454, 71, 71, 1453, 71, 1449, 71, 1458, 71, 1459,
|
|
|
|
|
|
|
|
|
|
1452, 1461, 71, 71, 71, 71, 71, 71, 71, 1464,
|
|
|
|
|
1455, 1463, 1456, 71, 1457, 71, 71, 71, 71, 71,
|
|
|
|
|
1472, 1462, 71, 1465, 1460, 1466, 71, 1467, 71, 1473,
|
|
|
|
|
1469, 71, 1468, 1471, 1474, 1475, 71, 71, 1470, 71,
|
|
|
|
|
1479, 1478, 1476, 1477, 71, 71, 71, 1481, 71, 71,
|
|
|
|
|
71, 1482, 71, 1484, 1488, 71, 1490, 1480, 71, 71,
|
|
|
|
|
71, 1485, 71, 1489, 1483, 1493, 1487, 1491, 71, 1486,
|
|
|
|
|
71, 71, 1492, 71, 1494, 1495, 71, 1499, 1500, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 1504, 1505, 1503, 1496, 71,
|
|
|
|
|
71, 1497, 71, 1507, 71, 71, 1498, 71, 1501, 71,
|
|
|
|
|
|
|
|
|
|
1508, 71, 1502, 1509, 71, 71, 1510, 71, 1512, 1506,
|
|
|
|
|
1514, 1511, 71, 1515, 71, 71, 71, 71, 71, 1513,
|
|
|
|
|
71, 1519, 1516, 71, 1521, 71, 71, 1525, 71, 71,
|
|
|
|
|
71, 1520, 71, 71, 1518, 1517, 1522, 1528, 1530, 71,
|
|
|
|
|
1523, 71, 1526, 71, 1533, 1524, 71, 1527, 1529, 71,
|
|
|
|
|
1531, 71, 1534, 71, 71, 1536, 1539, 71, 71, 1538,
|
|
|
|
|
1535, 1532, 71, 71, 71, 71, 71, 1546, 71, 71,
|
|
|
|
|
71, 71, 1537, 1547, 71, 71, 1540, 1541, 1544, 1550,
|
|
|
|
|
1551, 1542, 1543, 71, 71, 1553, 71, 71, 71, 1548,
|
|
|
|
|
1545, 1549, 1554, 1555, 1552, 1557, 1559, 71, 71, 71,
|
|
|
|
|
|
|
|
|
|
1558, 71, 71, 1562, 1556, 71, 71, 1560, 1561, 71,
|
|
|
|
|
1564, 71, 1565, 71, 71, 71, 71, 1569, 71, 1570,
|
|
|
|
|
1566, 71, 71, 71, 71, 1584, 1581, 1576, 1571, 1563,
|
|
|
|
|
1568, 1567, 71, 71, 71, 1573, 71, 71, 1574, 1577,
|
|
|
|
|
1582, 1572, 1579, 71, 71, 1578, 71, 1580, 1583, 1586,
|
|
|
|
|
1575, 71, 1585, 71, 71, 71, 71, 1588, 1587, 71,
|
|
|
|
|
71, 1593, 1594, 1592, 71, 1596, 71, 71, 71, 1595,
|
|
|
|
|
71, 71, 1589, 71, 71, 1590, 1599, 71, 1598, 1591,
|
|
|
|
|
71, 71, 71, 71, 1608, 1600, 71, 71, 1601, 1597,
|
|
|
|
|
71, 71, 71, 71, 1602, 71, 1604, 1605, 1606, 71,
|
|
|
|
|
|
|
|
|
|
1607, 1603, 1613, 71, 71, 71, 1616, 1611, 71, 1615,
|
|
|
|
|
71, 1609, 1610, 71, 71, 71, 1612, 71, 71, 1614,
|
|
|
|
|
71, 71, 71, 1617, 1618, 1623, 1621, 71, 1631, 71,
|
|
|
|
|
1622, 1624, 1620, 71, 1625, 71, 1626, 1619, 1630, 1632,
|
|
|
|
|
71, 71, 1627, 1636, 71, 1633, 1629, 1628, 71, 71,
|
|
|
|
|
71, 1635, 71, 71, 71, 71, 71, 1639, 1640, 1634,
|
|
|
|
|
71, 71, 1637, 71, 71, 1643, 1649, 71, 1648, 1638,
|
|
|
|
|
1647, 1642, 1645, 1641, 71, 1646, 71, 71, 71, 1644,
|
|
|
|
|
71, 71, 71, 71, 1650, 71, 1658, 71, 71, 1651,
|
|
|
|
|
71, 1662, 1653, 1655, 71, 1652, 1654, 1660, 71, 1661,
|
|
|
|
|
|
|
|
|
|
71, 1657, 71, 1659, 71, 1663, 71, 1656, 1669, 1664,
|
|
|
|
|
71, 71, 1665, 1670, 71, 1675, 1666, 71, 146, 71,
|
|
|
|
|
1671, 71, 1668, 1667, 1674, 1672, 1677, 71, 1678, 71,
|
|
|
|
|
71, 71, 1680, 1673, 71, 1676, 1679, 71, 71, 1684,
|
|
|
|
|
71, 71, 1688, 1681, 1683, 71, 71, 71, 71, 1682,
|
|
|
|
|
1686, 71, 71, 1685, 1689, 71, 1687, 71, 71, 71,
|
|
|
|
|
1690, 1693, 71, 1692, 71, 1698, 71, 1700, 1701, 71,
|
|
|
|
|
1691, 1694, 1695, 71, 71, 71, 1696, 1703, 1697, 71,
|
|
|
|
|
1707, 71, 1702, 71, 71, 71, 71, 1699, 1711, 71,
|
|
|
|
|
71, 71, 71, 1704, 1706, 1713, 71, 1714, 1705, 71,
|
|
|
|
|
|
|
|
|
|
1709, 1715, 71, 1710, 1716, 1708, 71, 71, 1720, 71,
|
|
|
|
|
1712, 1717, 71, 71, 71, 1724, 71, 71, 71, 71,
|
|
|
|
|
71, 71, 1719, 71, 1726, 1722, 71, 71, 1731, 1718,
|
|
|
|
|
71, 1721, 1725, 1723, 71, 1727, 1739, 1733, 1728, 1729,
|
|
|
|
|
71, 1730, 1732, 1735, 71, 71, 1734, 71, 1736, 1737,
|
|
|
|
|
71, 1740, 1738, 1741, 71, 71, 71, 71, 1743, 71,
|
|
|
|
|
71, 71, 1744, 71, 71, 71, 71, 1742, 71, 71,
|
|
|
|
|
1749, 71, 71, 1753, 71, 1750, 71, 71, 1754, 1759,
|
|
|
|
|
1745, 1747, 1748, 1746, 1751, 71, 1752, 1758, 71, 71,
|
|
|
|
|
71, 1755, 1757, 71, 1756, 71, 71, 1760, 1764, 71,
|
|
|
|
|
|
|
|
|
|
1767, 1768, 71, 1769, 71, 71, 1762, 71, 1761, 1765,
|
|
|
|
|
71, 1766, 71, 1763, 1771, 71, 71, 1772, 1775, 71,
|
|
|
|
|
71, 1777, 71, 71, 1776, 1770, 1778, 71, 1773, 1779,
|
|
|
|
|
1780, 1774, 1781, 71, 71, 71, 1783, 1786, 71, 1784,
|
|
|
|
|
71, 71, 1785, 71, 71, 71, 1793, 1782, 71, 71,
|
|
|
|
|
71, 1798, 71, 71, 1791, 1795, 1787, 1788, 1789, 71,
|
|
|
|
|
1796, 71, 71, 1790, 1797, 1792, 1801, 71, 1794, 71,
|
|
|
|
|
1799, 71, 71, 1803, 1805, 71, 1802, 1800, 71, 1807,
|
|
|
|
|
71, 71, 71, 1810, 1811, 71, 71, 1813, 71, 71,
|
|
|
|
|
1804, 71, 71, 71, 1819, 71, 71, 1806, 1818, 71,
|
|
|
|
|
|
|
|
|
|
1808, 1815, 1816, 1809, 71, 71, 1812, 71, 71, 71,
|
|
|
|
|
1825, 71, 1817, 71, 1814, 1822, 1823, 1820, 71, 71,
|
|
|
|
|
1821, 1829, 1832, 1828, 71, 1824, 1833, 71, 71, 1827,
|
|
|
|
|
71, 1831, 71, 1834, 71, 1835, 71, 1826, 71, 1830,
|
|
|
|
|
71, 71, 71, 71, 71, 1836, 1840, 71, 1843, 1844,
|
|
|
|
|
71, 71, 71, 1839, 71, 71, 1847, 71, 1837, 1838,
|
|
|
|
|
1841, 71, 1852, 71, 71, 1846, 1851, 71, 71, 71,
|
|
|
|
|
1842, 1845, 1848, 1856, 1849, 71, 71, 1859, 71, 1850,
|
|
|
|
|
71, 1857, 1854, 1853, 1860, 1858, 71, 1855, 1863, 71,
|
|
|
|
|
71, 71, 1870, 71, 71, 71, 71, 1861, 71, 1867,
|
|
|
|
|
|
|
|
|
|
71, 71, 1862, 71, 1875, 1865, 1872, 1873, 71, 71,
|
|
|
|
|
1874, 1864, 1866, 71, 71, 1868, 1869, 71, 1871, 1880,
|
|
|
|
|
71, 1882, 1876, 1881, 71, 1877, 1883, 71, 1884, 1885,
|
|
|
|
|
1878, 71, 71, 71, 71, 71, 1889, 1879, 1887, 71,
|
|
|
|
|
71, 71, 71, 71, 1888, 1891, 71, 1894, 71, 1896,
|
|
|
|
|
71, 1890, 1892, 71, 71, 71, 71, 1886, 1897, 71,
|
|
|
|
|
71, 1900, 1898, 1901, 71, 1902, 1903, 71, 1893, 1906,
|
|
|
|
|
1895, 1904, 71, 1899, 71, 71, 71, 71, 71, 1905,
|
|
|
|
|
1907, 1908, 71, 1909, 71, 1912, 71, 1910, 71, 1911,
|
|
|
|
|
71, 1914, 71, 71, 71, 1918, 71, 71, 1913, 1917,
|
|
|
|
|
|
|
|
|
|
1915, 71, 1919, 71, 1916, 71, 1920, 71, 1921, 1922,
|
|
|
|
|
71, 71, 71, 71, 1924, 1929, 1927, 1923, 1928, 71,
|
|
|
|
|
71, 71, 71, 1931, 71, 1925, 71, 71, 1935, 71,
|
|
|
|
|
1926, 71, 71, 1930, 1932, 1934, 1937, 1939, 1933, 71,
|
|
|
|
|
1936, 1941, 71, 71, 71, 71, 1942, 71, 1947, 71,
|
|
|
|
|
1938, 71, 1940, 71, 71, 71, 1949, 71, 71, 1950,
|
|
|
|
|
1943, 1944, 1945, 1946, 1951, 71, 1952, 71, 1948, 71,
|
|
|
|
|
1955, 71, 71, 1954, 1953, 71, 71, 71, 71, 71,
|
|
|
|
|
1956, 71, 71, 71, 71, 1967, 71, 1958, 1959, 1960,
|
|
|
|
|
1963, 71, 71, 1957, 1962, 1966, 71, 1971, 71, 1970,
|
|
|
|
|
|
|
|
|
|
1968, 1965, 71, 1964, 1961, 71, 71, 1973, 1974, 71,
|
|
|
|
|
71, 1969, 71, 71, 1976, 71, 71, 1977, 1972, 71,
|
|
|
|
|
71, 1978, 1982, 1975, 1980, 71, 71, 1984, 1981, 1986,
|
|
|
|
|
71, 1979, 71, 71, 71, 1989, 71, 71, 1983, 1988,
|
|
|
|
|
1985, 1990, 1991, 71, 71, 1994, 71, 71, 71, 71,
|
|
|
|
|
71, 71, 1995, 71, 2000, 71, 1997, 71, 1987, 1996,
|
|
|
|
|
2004, 1992, 71, 2001, 1993, 2002, 71, 1999, 1998, 71,
|
|
|
|
|
71, 71, 2006, 71, 2005, 2009, 71, 2003, 71, 2007,
|
|
|
|
|
71, 2011, 71, 2012, 71, 2010, 71, 2008, 71, 71,
|
|
|
|
|
71, 2014, 2018, 2013, 71, 71, 2015, 2016, 2020, 71,
|
|
|
|
|
|
|
|
|
|
2017, 71, 71, 2021, 71, 71, 2023, 2024, 2022, 71,
|
|
|
|
|
2019, 71, 71, 71, 2025, 2027, 2026, 2030, 71, 71,
|
|
|
|
|
71, 2028, 2029, 2031, 71, 71, 71, 71, 71, 71,
|
|
|
|
|
2032, 71, 71, 2039, 2034, 2033, 2040, 2036, 2037, 2035,
|
|
|
|
|
71, 2041, 71, 71, 71, 71, 2042, 2038, 2044, 2050,
|
|
|
|
|
71, 71, 2045, 71, 71, 2052, 71, 71, 2046, 2043,
|
|
|
|
|
2049, 2054, 2047, 2051, 71, 71, 71, 144, 2057, 2055,
|
|
|
|
|
2048, 2059, 2053, 2058, 71, 2060, 71, 71, 2056, 2061,
|
|
|
|
|
71, 71, 2064, 71, 71, 2065, 2063, 71, 2062, 2069,
|
|
|
|
|
71, 71, 2070, 71, 71, 2073, 2068, 71, 71, 2066,
|
|
|
|
|
|
|
|
|
|
71, 71, 2074, 71, 2075, 2071, 2076, 71, 71, 2078,
|
|
|
|
|
2067, 71, 2072, 2077, 71, 71, 2083, 71, 2079, 71,
|
|
|
|
|
2080, 2081, 71, 2082, 71, 71, 2089, 71, 71, 2086,
|
|
|
|
|
71, 71, 71, 71, 2090, 71, 71, 2085, 2092, 71,
|
|
|
|
|
71, 71, 2084, 2087, 2088, 2096, 2091, 2094, 2099, 71,
|
|
|
|
|
71, 71, 2097, 71, 71, 2095, 71, 71, 2093, 2098,
|
|
|
|
|
71, 2100, 71, 71, 71, 2110, 71, 142, 71, 2101,
|
|
|
|
|
2102, 2111, 71, 71, 2107, 71, 2105, 2103, 71, 2109,
|
|
|
|
|
2104, 2106, 71, 2115, 2108, 2112, 71, 2113, 2114, 2116,
|
|
|
|
|
71, 2117, 71, 2118, 71, 2120, 71, 2123, 71, 2119,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 71, 71, 2121, 2124, 2125, 2122, 2129,
|
|
|
|
|
71, 2130, 71, 71, 2132, 71, 2128, 71, 2134, 71,
|
|
|
|
|
2126, 71, 71, 2127, 2137, 71, 71, 2136, 2138, 71,
|
|
|
|
|
71, 71, 2131, 71, 71, 2133, 2135, 71, 71, 2140,
|
|
|
|
|
2139, 71, 2143, 2144, 71, 2141, 2146, 71, 71, 71,
|
|
|
|
|
2150, 71, 2142, 2145, 2148, 71, 2147, 71, 2149, 2152,
|
|
|
|
|
71, 71, 2156, 71, 71, 2151, 71, 71, 71, 71,
|
|
|
|
|
2153, 71, 2154, 2160, 2161, 71, 71, 2165, 71, 71,
|
|
|
|
|
2155, 71, 2159, 71, 2157, 71, 2163, 2162, 2167, 2158,
|
|
|
|
|
71, 2164, 71, 71, 2172, 71, 71, 2168, 2174, 2166,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 2169, 2173, 71, 71, 2177, 2170, 71,
|
|
|
|
|
2178, 71, 71, 2176, 71, 71, 71, 2182, 2171, 71,
|
|
|
|
|
2175, 2184, 2180, 2187, 2185, 71, 71, 2189, 71, 71,
|
|
|
|
|
2186, 2179, 2181, 71, 71, 71, 71, 2195, 71, 2190,
|
|
|
|
|
2183, 2191, 71, 71, 71, 2194, 2188, 2196, 2193, 71,
|
|
|
|
|
2200, 2192, 2197, 2198, 2201, 71, 71, 71, 71, 2202,
|
|
|
|
|
71, 71, 2205, 2199, 2206, 71, 2207, 2204, 71, 71,
|
|
|
|
|
71, 71, 2213, 71, 2208, 71, 71, 2203, 71, 71,
|
|
|
|
|
71, 71, 2220, 71, 2215, 2211, 71, 2212, 2209, 71,
|
|
|
|
|
2210, 2214, 2216, 71, 2217, 2219, 2218, 2960, 2221, 2224,
|
|
|
|
|
|
|
|
|
|
71, 2223, 71, 2225, 2226, 71, 2222, 71, 71, 2229,
|
|
|
|
|
2227, 2230, 71, 2228, 71, 71, 71, 71, 2231, 71,
|
|
|
|
|
71, 2233, 71, 71, 2237, 71, 2232, 71, 2234, 2238,
|
|
|
|
|
2239, 2240, 71, 2236, 71, 71, 2235, 71, 71, 2241,
|
|
|
|
|
2245, 71, 2244, 71, 2242, 71, 71, 71, 71, 71,
|
|
|
|
|
2247, 71, 2254, 2251, 71, 71, 2246, 2243, 71, 2253,
|
|
|
|
|
71, 2255, 2250, 71, 71, 71, 2248, 2249, 2259, 2258,
|
|
|
|
|
71, 2252, 2261, 2260, 71, 71, 71, 2263, 2256, 2257,
|
|
|
|
|
71, 71, 71, 2264, 71, 2266, 2267, 2268, 71, 2262,
|
|
|
|
|
2270, 71, 71, 71, 2272, 71, 71, 71, 71, 71,
|
|
|
|
|
|
|
|
|
|
2269, 2271, 71, 2276, 71, 71, 71, 2265, 71, 2278,
|
|
|
|
|
2279, 2274, 2280, 71, 2273, 2275, 2281, 71, 2282, 71,
|
|
|
|
|
2283, 71, 2284, 71, 71, 71, 2286, 71, 2277, 2291,
|
|
|
|
|
2285, 2289, 71, 71, 71, 71, 2290, 2288, 2294, 71,
|
|
|
|
|
71, 71, 2287, 71, 71, 2297, 2298, 71, 71, 2293,
|
|
|
|
|
71, 2292, 71, 2299, 71, 2304, 71, 2302, 2303, 2295,
|
|
|
|
|
71, 2296, 71, 2301, 71, 2308, 71, 71, 2300, 2307,
|
|
|
|
|
2309, 71, 2310, 71, 2305, 2311, 71, 71, 71, 2312,
|
|
|
|
|
71, 2315, 2306, 2314, 71, 2316, 71, 71, 71, 71,
|
|
|
|
|
2321, 71, 71, 2323, 71, 2313, 2324, 71, 2317, 2318,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 71, 71, 2320, 71, 2327, 2319, 71,
|
|
|
|
|
71, 2322, 2325, 71, 2326, 2328, 2333, 71, 2330, 2334,
|
|
|
|
|
71, 71, 71, 71, 2329, 71, 2331, 71, 2340, 2332,
|
|
|
|
|
71, 71, 71, 71, 71, 2337, 71, 71, 71, 2339,
|
|
|
|
|
2341, 2336, 71, 2349, 2391, 2342, 2335, 2338, 2343, 71,
|
|
|
|
|
2344, 2348, 2347, 71, 2351, 71, 2345, 71, 2350, 2346,
|
|
|
|
|
2352, 71, 71, 2353, 71, 2354, 71, 2355, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 2356, 71, 71, 71, 2357,
|
|
|
|
|
71, 2366, 71, 2363, 2367, 71, 2370, 71, 2358, 2360,
|
|
|
|
|
2359, 2369, 71, 2362, 2361, 2365, 2364, 2372, 71, 71,
|
|
|
|
|
|
|
|
|
|
2368, 2371, 71, 71, 71, 71, 71, 71, 71, 71,
|
|
|
|
|
2375, 2381, 71, 2382, 71, 2383, 71, 2373, 71, 2376,
|
|
|
|
|
2374, 71, 71, 2377, 2378, 2379, 2380, 2386, 71, 2960,
|
|
|
|
|
71, 71, 71, 2385, 2384, 2387, 2390, 2392, 71, 71,
|
|
|
|
|
71, 2393, 2388, 2394, 71, 71, 71, 71, 2389, 2396,
|
|
|
|
|
71, 2395, 71, 71, 71, 2400, 71, 71, 2398, 71,
|
|
|
|
|
2404, 2405, 71, 71, 2397, 2408, 71, 2399, 2406, 71,
|
|
|
|
|
71, 71, 2401, 2402, 2409, 2411, 2403, 2407, 2410, 2412,
|
|
|
|
|
71, 71, 2413, 71, 2416, 71, 71, 71, 71, 2420,
|
|
|
|
|
71, 71, 2419, 2422, 71, 71, 2418, 71, 2417, 71,
|
|
|
|
|
|
|
|
|
|
2423, 2414, 71, 2415, 2425, 71, 71, 2426, 71, 2424,
|
|
|
|
|
2421, 2428, 71, 71, 71, 2429, 71, 2431, 2433, 71,
|
|
|
|
|
71, 2427, 71, 2432, 2435, 71, 2430, 2436, 71, 71,
|
|
|
|
|
71, 2434, 71, 2437, 2438, 2439, 71, 2440, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 2960, 2442, 2443, 2445, 2446, 2448,
|
|
|
|
|
71, 2441, 2449, 71, 2444, 2447, 71, 71, 71, 2452,
|
|
|
|
|
2454, 71, 2451, 2450, 71, 71, 71, 71, 2456, 2455,
|
|
|
|
|
71, 2459, 71, 2460, 71, 2458, 2453, 71, 2462, 71,
|
|
|
|
|
2457, 71, 2464, 2668, 2463, 2960, 71, 2465, 71, 71,
|
|
|
|
|
2461, 2466, 2468, 71, 2467, 71, 71, 2469, 71, 71,
|
|
|
|
|
|
|
|
|
|
2470, 71, 71, 71, 71, 2471, 71, 2474, 71, 2473,
|
|
|
|
|
71, 2476, 71, 2477, 2472, 2475, 2478, 2479, 71, 71,
|
|
|
|
|
71, 71, 71, 2480, 71, 2485, 2481, 71, 71, 2483,
|
|
|
|
|
2484, 2486, 2482, 71, 2490, 71, 71, 71, 71, 71,
|
|
|
|
|
2494, 71, 71, 71, 71, 71, 2487, 2492, 2488, 2498,
|
|
|
|
|
2499, 71, 2489, 2501, 2493, 2491, 2495, 2496, 2502, 71,
|
|
|
|
|
2503, 2504, 71, 2497, 71, 71, 71, 71, 71, 2500,
|
|
|
|
|
71, 71, 2506, 2505, 71, 2509, 71, 2507, 71, 2512,
|
|
|
|
|
2513, 71, 71, 2508, 2514, 71, 2515, 71, 2510, 71,
|
|
|
|
|
71, 2511, 71, 2516, 2520, 2517, 2518, 71, 71, 2521,
|
|
|
|
|
|
|
|
|
|
71, 2526, 2519, 71, 2523, 2524, 71, 2525, 71, 71,
|
|
|
|
|
71, 71, 2522, 2530, 71, 71, 2531, 2532, 71, 71,
|
|
|
|
|
2534, 71, 2527, 71, 71, 71, 2538, 71, 2528, 2539,
|
|
|
|
|
71, 2529, 71, 71, 2533, 2541, 2535, 2540, 71, 2537,
|
|
|
|
|
2542, 71, 2536, 71, 71, 71, 2547, 2550, 71, 71,
|
|
|
|
|
2543, 2546, 71, 2549, 71, 71, 71, 71, 2544, 2551,
|
|
|
|
|
2553, 71, 71, 2545, 2552, 2555, 71, 71, 71, 2548,
|
|
|
|
|
71, 2558, 2562, 71, 71, 71, 2565, 71, 2556, 2557,
|
|
|
|
|
2554, 2566, 71, 2564, 2561, 2559, 2568, 71, 2560, 71,
|
|
|
|
|
2569, 71, 2570, 2563, 71, 2571, 2567, 71, 2572, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 71, 71, 2574, 71, 2580, 71, 71,
|
|
|
|
|
71, 71, 2577, 2581, 2960, 2573, 2583, 71, 2584, 2585,
|
|
|
|
|
71, 2575, 2587, 71, 2578, 71, 2579, 2582, 2576, 71,
|
|
|
|
|
2586, 71, 71, 71, 2592, 71, 71, 71, 2588, 71,
|
|
|
|
|
2589, 2590, 2596, 2593, 71, 2594, 71, 2597, 71, 71,
|
|
|
|
|
71, 2591, 2595, 71, 2600, 2599, 71, 2598, 2601, 71,
|
|
|
|
|
2602, 71, 2604, 71, 71, 71, 2609, 71, 2603, 71,
|
|
|
|
|
71, 71, 71, 2607, 2643, 2605, 2612, 71, 71, 2610,
|
|
|
|
|
71, 2606, 2613, 71, 2614, 2608, 71, 2615, 71, 2617,
|
|
|
|
|
2611, 2616, 2618, 2619, 71, 2620, 71, 2621, 71, 71,
|
|
|
|
|
|
|
|
|
|
2623, 71, 71, 2626, 71, 71, 71, 2625, 2622, 71,
|
|
|
|
|
2627, 2628, 2629, 71, 71, 71, 71, 2634, 71, 71,
|
|
|
|
|
2624, 2632, 2630, 71, 2636, 71, 71, 71, 2640, 71,
|
|
|
|
|
71, 71, 71, 2633, 71, 2631, 71, 71, 2637, 2644,
|
|
|
|
|
71, 2638, 2648, 2635, 2641, 2642, 71, 2639, 2647, 71,
|
|
|
|
|
2645, 2650, 71, 2652, 71, 2646, 2653, 71, 71, 2655,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 2660, 71, 2651, 71,
|
|
|
|
|
2659, 71, 2649, 71, 2664, 71, 71, 2656, 2657, 2654,
|
|
|
|
|
2658, 2666, 71, 2661, 2669, 71, 71, 2670, 71, 2665,
|
|
|
|
|
2663, 2667, 2662, 2672, 71, 71, 2671, 71, 71, 2677,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 2681, 71, 71, 2674, 2675, 71, 71,
|
|
|
|
|
2683, 2682, 71, 2673, 2679, 71, 2686, 2676, 71, 2678,
|
|
|
|
|
71, 2680, 71, 2688, 2684, 2687, 71, 2689, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 2691, 2685, 2690, 2692, 2694, 2697,
|
|
|
|
|
71, 2698, 71, 71, 71, 71, 2742, 2693, 2695, 2696,
|
|
|
|
|
2701, 71, 2702, 71, 2700, 71, 71, 71, 71, 71,
|
|
|
|
|
2703, 71, 2699, 2705, 2706, 71, 2707, 71, 2708, 71,
|
|
|
|
|
2704, 71, 2710, 71, 71, 71, 2709, 71, 2711, 2712,
|
|
|
|
|
71, 2715, 71, 2713, 2716, 71, 2720, 71, 71, 2717,
|
|
|
|
|
71, 2719, 2723, 71, 71, 2722, 2714, 2718, 2724, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 2727, 71, 2725, 71, 2721, 2726, 71,
|
|
|
|
|
2729, 2730, 71, 2728, 71, 71, 71, 71, 71, 2731,
|
|
|
|
|
2734, 71, 71, 2736, 2732, 71, 2733, 71, 2735, 2737,
|
|
|
|
|
71, 71, 71, 71, 2749, 71, 71, 2738, 2746, 2960,
|
|
|
|
|
71, 71, 2739, 2750, 71, 2740, 2764, 2747, 2741, 2743,
|
|
|
|
|
2744, 71, 2745, 2748, 2762, 2751, 2752, 71, 2753, 71,
|
|
|
|
|
2754, 2755, 71, 71, 2756, 2757, 2760, 71, 2758, 2759,
|
|
|
|
|
71, 71, 2761, 71, 2765, 71, 71, 71, 71, 71,
|
|
|
|
|
71, 2768, 71, 71, 2763, 2767, 71, 2773, 2769, 2774,
|
|
|
|
|
71, 71, 2772, 2775, 71, 2770, 71, 71, 2780, 71,
|
|
|
|
|
|
|
|
|
|
2771, 2766, 2777, 2781, 71, 2778, 2776, 2782, 2779, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 2786, 2787, 2789, 71,
|
|
|
|
|
2790, 2791, 71, 2960, 2783, 2784, 2792, 71, 2793, 71,
|
|
|
|
|
2785, 2794, 71, 2788, 2795, 71, 2796, 71, 2797, 71,
|
|
|
|
|
2798, 71, 71, 2800, 71, 71, 71, 71, 2803, 71,
|
|
|
|
|
71, 2799, 71, 71, 2807, 71, 2809, 71, 71, 71,
|
|
|
|
|
71, 2804, 2811, 2805, 2806, 2801, 2802, 71, 2813, 71,
|
|
|
|
|
2808, 71, 2816, 71, 2815, 71, 2810, 71, 71, 71,
|
|
|
|
|
71, 71, 2818, 71, 2823, 71, 2812, 2814, 71, 2817,
|
|
|
|
|
2824, 71, 2819, 2825, 71, 71, 2821, 2820, 2822, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 2830, 2828, 2827, 71, 71, 71, 2826, 2834,
|
|
|
|
|
71, 2833, 71, 2836, 71, 71, 2832, 71, 71, 71,
|
|
|
|
|
2829, 71, 71, 71, 2831, 2835, 71, 2837, 2847, 71,
|
|
|
|
|
71, 71, 71, 2931, 2838, 2839, 71, 2840, 2842, 71,
|
|
|
|
|
2843, 2848, 2844, 2841, 2845, 71, 2846, 2849, 71, 71,
|
|
|
|
|
2850, 2851, 71, 2852, 71, 2853, 71, 71, 71, 2854,
|
|
|
|
|
2855, 2856, 71, 2857, 71, 2860, 71, 2863, 71, 71,
|
|
|
|
|
2858, 71, 2865, 71, 71, 71, 71, 2859, 2861, 2868,
|
|
|
|
|
71, 71, 2869, 71, 2870, 2872, 2862, 71, 2864, 2866,
|
|
|
|
|
2873, 71, 71, 2867, 71, 71, 71, 2877, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 2874, 2871, 2880, 71, 2875, 71, 71, 71, 71,
|
|
|
|
|
71, 2882, 71, 2876, 2879, 2878, 71, 2887, 71, 71,
|
|
|
|
|
71, 2884, 2885, 2888, 2881, 2892, 2883, 2891, 71, 2886,
|
|
|
|
|
2893, 71, 2894, 71, 2889, 71, 71, 71, 2890, 71,
|
|
|
|
|
2895, 2899, 2896, 71, 2897, 2901, 71, 71, 2900, 71,
|
|
|
|
|
71, 71, 2898, 2902, 71, 71, 2907, 71, 2904, 71,
|
|
|
|
|
71, 2910, 71, 2911, 71, 71, 71, 71, 71, 2903,
|
|
|
|
|
2914, 71, 2909, 2905, 2906, 2912, 2908, 71, 2913, 71,
|
|
|
|
|
2918, 71, 2919, 71, 2917, 71, 2915, 2916, 71, 2922,
|
|
|
|
|
71, 2924, 71, 2925, 2920, 71, 71, 71, 2929, 71,
|
|
|
|
|
|
|
|
|
|
2926, 71, 71, 2927, 2923, 71, 2930, 2932, 71, 2921,
|
|
|
|
|
71, 71, 2933, 71, 2938, 71, 2928, 2934, 2936, 71,
|
|
|
|
|
71, 2935, 71, 71, 71, 2940, 71, 2941, 71, 2944,
|
|
|
|
|
2937, 2945, 71, 71, 71, 2948, 2949, 71, 2939, 71,
|
|
|
|
|
2951, 71, 2942, 2943, 71, 2946, 2950, 2952, 71, 71,
|
|
|
|
|
71, 2953, 2947, 71, 2954, 2955, 71, 2958, 71, 2959,
|
|
|
|
|
71, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960,
|
|
|
|
|
2960, 2960, 2956, 2960, 2960, 2957, 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, 2960, 74, 74, 74, 74, 141, 141,
|
|
|
|
|
2960, 2960, 2960, 141, 141, 143, 143, 2960, 2960, 143,
|
|
|
|
|
2960, 143, 145, 2960, 2960, 2960, 2960, 2960, 145, 148,
|
|
|
|
|
148, 2960, 2960, 2960, 148, 148, 150, 2960, 2960, 2960,
|
|
|
|
|
2960, 2960, 150, 152, 152, 2960, 152, 152, 152, 152,
|
|
|
|
|
75, 75, 2960, 75, 75, 75, 75, 13, 2960, 2960,
|
|
|
|
|
2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960,
|
|
|
|
|
2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960,
|
|
|
|
|
2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960,
|
|
|
|
|
|
|
|
|
|
2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2019-09-09 11:11:26 -04:00
|
|
|
static const flex_int16_t yy_chk[5809] =
|
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,
|
2019-09-09 11:11:26 -04:00
|
|
|
10, 10, 15, 25, 9, 29, 15, 25, 2966, 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,
|
2019-09-09 11:11:26 -04:00
|
|
|
34, 21, 23, 24, 12, 23, 24, 999, 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,
|
2019-04-05 11:39:10 -04:00
|
|
|
42, 69, 38, 63, 63, 38, 35, 84, 37, 37,
|
|
|
|
|
40, 37, 38, 80, 40, 69, 38, 38, 39, 39,
|
2018-04-17 09:23:35 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
126, 39, 41, 41, 40, 80, 126, 41, 40, 40,
|
|
|
|
|
39, 41, 58, 89, 58, 58, 39, 58, 66, 86,
|
2018-04-17 09:23:35 -04:00
|
|
|
66, 66, 68, 66, 68, 68, 71, 68, 71, 71,
|
2019-04-05 11:39:10 -04:00
|
|
|
66, 71, 72, 86, 127, 89, 72, 71, 74, 77,
|
|
|
|
|
74, 74, 77, 74, 78, 88, 127, 85, 78, 74,
|
|
|
|
|
74, 82, 83, 87, 82, 83, 85, 92, 93, 87,
|
|
|
|
|
91, 94, 99, 88, 88, 87, 91, 87, 83, 95,
|
|
|
|
|
96, 92, 94, 94, 161, 102, 99, 97, 93, 91,
|
|
|
|
|
94, 97, 161, 105, 98, 106, 101, 95, 96, 98,
|
|
|
|
|
100, 150, 101, 100, 102, 103, 100, 112, 104, 106,
|
|
|
|
|
|
|
|
|
|
103, 104, 105, 109, 107, 104, 108, 105, 107, 100,
|
|
|
|
|
100, 101, 110, 108, 111, 113, 109, 112, 114, 110,
|
|
|
|
|
103, 104, 114, 115, 117, 116, 119, 111, 118, 118,
|
|
|
|
|
116, 122, 120, 113, 116, 121, 120, 123, 132, 125,
|
|
|
|
|
124, 115, 129, 124, 117, 120, 119, 128, 128, 129,
|
|
|
|
|
121, 120, 125, 130, 124, 131, 123, 122, 124, 132,
|
|
|
|
|
129, 133, 134, 135, 134, 128, 136, 137, 128, 130,
|
|
|
|
|
138, 136, 140, 134, 131, 135, 139, 133, 148, 137,
|
|
|
|
|
157, 139, 142, 142, 144, 134, 140, 144, 138, 146,
|
|
|
|
|
154, 146, 146, 154, 146, 149, 149, 151, 157, 151,
|
|
|
|
|
|
|
|
|
|
151, 152, 151, 152, 152, 155, 152, 158, 156, 159,
|
|
|
|
|
155, 162, 163, 152, 156, 160, 164, 159, 165, 166,
|
|
|
|
|
168, 164, 158, 156, 159, 167, 160, 163, 166, 169,
|
|
|
|
|
162, 167, 167, 171, 169, 170, 170, 175, 165, 171,
|
|
|
|
|
173, 172, 179, 172, 173, 168, 172, 174, 174, 173,
|
|
|
|
|
176, 147, 177, 178, 173, 176, 175, 177, 180, 183,
|
|
|
|
|
173, 173, 179, 172, 180, 178, 181, 182, 184, 185,
|
|
|
|
|
181, 186, 182, 183, 187, 188, 189, 189, 191, 187,
|
|
|
|
|
188, 185, 189, 184, 185, 190, 192, 180, 197, 186,
|
|
|
|
|
190, 193, 194, 194, 189, 195, 189, 193, 191, 196,
|
|
|
|
|
|
|
|
|
|
198, 195, 192, 199, 200, 196, 198, 195, 197, 199,
|
|
|
|
|
201, 206, 202, 203, 204, 205, 201, 202, 199, 203,
|
|
|
|
|
204, 207, 205, 208, 206, 200, 209, 207, 210, 211,
|
2019-05-16 16:30:42 -04:00
|
|
|
213, 212, 209, 214, 215, 213, 216, 211, 217, 220,
|
|
|
|
|
218, 222, 214, 208, 212, 218, 218, 221, 219, 215,
|
|
|
|
|
210, 221, 216, 219, 223, 224, 225, 220, 217, 226,
|
|
|
|
|
223, 227, 225, 222, 229, 228, 227, 228, 230, 233,
|
|
|
|
|
231, 232, 234, 224, 224, 230, 231, 232, 234, 226,
|
|
|
|
|
235, 236, 242, 229, 237, 237, 238, 238, 233, 243,
|
|
|
|
|
239, 240, 235, 245, 243, 236, 239, 240, 241, 244,
|
|
|
|
|
|
|
|
|
|
241, 246, 247, 248, 249, 242, 255, 250, 248, 246,
|
|
|
|
|
251, 244, 245, 250, 239, 252, 251, 241, 253, 254,
|
|
|
|
|
252, 255, 247, 253, 256, 254, 257, 249, 258, 259,
|
|
|
|
|
260, 262, 266, 261, 262, 264, 264, 259, 256, 261,
|
|
|
|
|
269, 263, 258, 263, 257, 265, 267, 267, 265, 270,
|
|
|
|
|
266, 268, 268, 275, 271, 260, 269, 271, 272, 273,
|
|
|
|
|
274, 285, 272, 276, 270, 278, 274, 275, 273, 276,
|
|
|
|
|
277, 278, 277, 279, 280, 280, 281, 279, 282, 283,
|
|
|
|
|
284, 281, 285, 286, 282, 287, 287, 288, 289, 290,
|
|
|
|
|
288, 291, 293, 290, 279, 295, 286, 296, 284, 283,
|
|
|
|
|
|
|
|
|
|
292, 292, 294, 296, 298, 294, 289, 295, 297, 291,
|
2019-09-09 11:11:26 -04:00
|
|
|
293, 297, 300, 301, 302, 303, 298, 305, 303, 302,
|
|
|
|
|
303, 300, 294, 299, 304, 306, 307, 304, 307, 307,
|
|
|
|
|
305, 301, 299, 308, 310, 299, 303, 306, 308, 308,
|
|
|
|
|
299, 299, 299, 299, 309, 311, 312, 309, 313, 314,
|
|
|
|
|
314, 310, 317, 315, 310, 312, 319, 313, 315, 318,
|
|
|
|
|
311, 316, 316, 320, 318, 321, 322, 317, 319, 323,
|
|
|
|
|
326, 324, 324, 327, 324, 323, 335, 335, 327, 329,
|
|
|
|
|
328, 322, 320, 324, 329, 321, 328, 330, 331, 332,
|
|
|
|
|
326, 331, 330, 331, 333, 334, 336, 333, 330, 337,
|
|
|
|
|
|
|
|
|
|
337, 338, 336, 332, 334, 339, 338, 343, 339, 341,
|
|
|
|
|
333, 342, 373, 333, 339, 333, 344, 347, 339, 345,
|
|
|
|
|
347, 348, 343, 350, 373, 351, 339, 340, 340, 341,
|
|
|
|
|
340, 344, 342, 345, 351, 348, 347, 354, 350, 352,
|
|
|
|
|
355, 353, 356, 340, 352, 352, 340, 353, 340, 358,
|
|
|
|
|
340, 349, 357, 349, 349, 360, 359, 356, 354, 355,
|
|
|
|
|
361, 357, 359, 349, 362, 349, 349, 349, 358, 363,
|
|
|
|
|
349, 364, 365, 366, 367, 363, 369, 368, 362, 363,
|
|
|
|
|
361, 360, 368, 372, 370, 371, 371, 374, 376, 367,
|
|
|
|
|
370, 369, 365, 366, 364, 377, 375, 379, 379, 378,
|
|
|
|
|
|
|
|
|
|
379, 374, 375, 372, 378, 380, 381, 382, 387, 387,
|
|
|
|
|
383, 377, 384, 376, 384, 385, 386, 388, 389, 385,
|
|
|
|
|
386, 390, 381, 382, 383, 380, 391, 392, 145, 393,
|
|
|
|
|
394, 399, 384, 389, 397, 386, 388, 390, 393, 394,
|
|
|
|
|
395, 392, 396, 397, 391, 395, 396, 398, 400, 393,
|
|
|
|
|
403, 393, 399, 398, 400, 401, 402, 404, 404, 401,
|
|
|
|
|
405, 402, 406, 406, 407, 408, 409, 409, 410, 407,
|
|
|
|
|
403, 411, 412, 405, 410, 411, 413, 414, 408, 415,
|
|
|
|
|
416, 416, 414, 417, 415, 418, 419, 412, 420, 416,
|
|
|
|
|
421, 423, 422, 421, 426, 417, 422, 413, 424, 424,
|
|
|
|
|
|
|
|
|
|
420, 425, 428, 423, 419, 418, 425, 427, 427, 430,
|
|
|
|
|
430, 431, 432, 433, 434, 426, 435, 437, 438, 439,
|
|
|
|
|
432, 440, 433, 442, 428, 450, 443, 440, 435, 442,
|
|
|
|
|
441, 443, 431, 439, 434, 437, 444, 437, 438, 441,
|
|
|
|
|
445, 446, 447, 448, 446, 450, 449, 452, 445, 453,
|
|
|
|
|
444, 445, 449, 452, 451, 454, 447, 451, 448, 455,
|
|
|
|
|
454, 456, 457, 453, 458, 459, 457, 460, 461, 458,
|
|
|
|
|
462, 452, 460, 463, 466, 468, 469, 467, 476, 468,
|
|
|
|
|
459, 455, 456, 470, 461, 473, 463, 476, 143, 462,
|
|
|
|
|
464, 464, 467, 471, 466, 469, 464, 471, 464, 470,
|
|
|
|
|
|
|
|
|
|
473, 475, 472, 474, 464, 478, 464, 472, 474, 464,
|
|
|
|
|
464, 472, 477, 480, 481, 483, 464, 475, 477, 479,
|
|
|
|
|
485, 478, 479, 477, 482, 482, 484, 484, 487, 486,
|
|
|
|
|
488, 489, 490, 491, 481, 485, 480, 490, 492, 493,
|
|
|
|
|
483, 486, 491, 487, 494, 501, 496, 497, 499, 488,
|
|
|
|
|
494, 497, 498, 489, 493, 496, 500, 492, 498, 502,
|
|
|
|
|
499, 503, 504, 505, 501, 506, 507, 505, 507, 508,
|
|
|
|
|
511, 500, 513, 502, 509, 509, 503, 508, 506, 510,
|
|
|
|
|
504, 512, 511, 514, 513, 510, 514, 512, 515, 516,
|
|
|
|
|
517, 518, 519, 520, 518, 517, 638, 522, 523, 523,
|
|
|
|
|
|
|
|
|
|
521, 519, 515, 529, 516, 521, 521, 638, 519, 520,
|
|
|
|
|
522, 519, 524, 524, 525, 526, 526, 527, 527, 528,
|
|
|
|
|
525, 532, 531, 530, 529, 528, 530, 531, 533, 534,
|
|
|
|
|
535, 536, 534, 537, 538, 535, 533, 539, 538, 541,
|
|
|
|
|
532, 540, 542, 539, 543, 540, 545, 542, 546, 544,
|
|
|
|
|
548, 545, 537, 547, 536, 544, 547, 541, 549, 549,
|
|
|
|
|
550, 547, 546, 553, 543, 547, 551, 552, 548, 554,
|
|
|
|
|
556, 551, 552, 557, 563, 559, 556, 553, 550, 559,
|
|
|
|
|
558, 560, 557, 558, 554, 561, 560, 562, 561, 564,
|
|
|
|
|
563, 565, 562, 566, 567, 568, 569, 569, 565, 567,
|
|
|
|
|
|
|
|
|
|
570, 559, 571, 572, 573, 574, 566, 564, 575, 570,
|
|
|
|
|
576, 695, 581, 573, 575, 568, 576, 574, 582, 572,
|
|
|
|
|
577, 571, 695, 577, 578, 578, 579, 578, 580, 579,
|
|
|
|
|
581, 583, 582, 580, 584, 585, 591, 583, 589, 584,
|
|
|
|
|
586, 585, 587, 586, 588, 590, 592, 587, 593, 588,
|
|
|
|
|
588, 589, 592, 594, 595, 591, 591, 596, 590, 595,
|
|
|
|
|
597, 597, 594, 598, 601, 599, 600, 593, 599, 602,
|
|
|
|
|
598, 605, 600, 603, 602, 607, 601, 596, 603, 603,
|
|
|
|
|
604, 604, 606, 599, 606, 608, 609, 608, 610, 611,
|
|
|
|
|
612, 613, 614, 615, 607, 617, 605, 615, 614, 616,
|
|
|
|
|
|
|
|
|
|
618, 619, 620, 622, 609, 621, 610, 611, 616, 612,
|
|
|
|
|
617, 613, 624, 625, 623, 618, 626, 621, 622, 619,
|
|
|
|
|
623, 620, 627, 628, 629, 625, 624, 628, 630, 631,
|
|
|
|
|
632, 633, 634, 635, 635, 626, 636, 637, 639, 641,
|
|
|
|
|
636, 627, 629, 642, 630, 141, 634, 631, 632, 632,
|
|
|
|
|
633, 643, 639, 640, 644, 641, 637, 649, 640, 646,
|
|
|
|
|
645, 644, 642, 647, 643, 645, 646, 648, 647, 650,
|
|
|
|
|
651, 652, 648, 653, 654, 649, 650, 656, 655, 651,
|
|
|
|
|
656, 658, 653, 655, 657, 652, 654, 659, 657, 660,
|
|
|
|
|
662, 661, 663, 663, 666, 658, 659, 664, 664, 665,
|
|
|
|
|
|
|
|
|
|
665, 668, 669, 666, 660, 661, 664, 670, 669, 671,
|
|
|
|
|
672, 662, 673, 671, 674, 675, 676, 678, 677, 679,
|
|
|
|
|
668, 675, 672, 680, 676, 677, 714, 670, 714, 681,
|
|
|
|
|
683, 689, 674, 686, 681, 678, 690, 673, 681, 691,
|
|
|
|
|
689, 681, 690, 680, 679, 683, 693, 693, 681, 692,
|
|
|
|
|
686, 681, 696, 692, 697, 691, 694, 694, 698, 699,
|
|
|
|
|
704, 701, 709, 702, 703, 699, 701, 717, 697, 705,
|
|
|
|
|
696, 717, 705, 706, 706, 708, 708, 709, 698, 700,
|
|
|
|
|
700, 700, 703, 700, 702, 704, 700, 707, 710, 710,
|
|
|
|
|
711, 700, 716, 712, 707, 711, 712, 700, 700, 713,
|
|
|
|
|
|
|
|
|
|
715, 718, 720, 719, 713, 721, 721, 725, 722, 727,
|
|
|
|
|
720, 716, 715, 723, 724, 724, 726, 749, 728, 730,
|
|
|
|
|
730, 718, 719, 722, 728, 725, 749, 723, 726, 729,
|
|
|
|
|
731, 727, 733, 734, 729, 731, 731, 733, 735, 734,
|
|
|
|
|
736, 737, 739, 738, 735, 736, 738, 737, 739, 740,
|
|
|
|
|
741, 741, 742, 742, 743, 744, 745, 740, 746, 747,
|
|
|
|
|
750, 745, 743, 748, 748, 746, 751, 752, 750, 756,
|
|
|
|
|
754, 755, 751, 744, 756, 757, 759, 760, 747, 754,
|
|
|
|
|
755, 759, 758, 761, 757, 758, 752, 762, 763, 764,
|
|
|
|
|
766, 760, 765, 765, 764, 764, 762, 767, 768, 769,
|
|
|
|
|
|
|
|
|
|
770, 763, 772, 770, 772, 766, 774, 768, 761, 773,
|
|
|
|
|
773, 770, 775, 776, 779, 777, 767, 775, 778, 780,
|
|
|
|
|
781, 782, 783, 769, 784, 786, 783, 774, 785, 781,
|
|
|
|
|
789, 786, 787, 788, 776, 777, 779, 790, 778, 780,
|
|
|
|
|
791, 787, 784, 792, 782, 788, 791, 785, 793, 789,
|
|
|
|
|
795, 790, 796, 793, 794, 794, 797, 792, 798, 799,
|
|
|
|
|
800, 796, 801, 802, 804, 803, 798, 805, 806, 807,
|
|
|
|
|
795, 803, 810, 805, 808, 807, 797, 813, 804, 799,
|
|
|
|
|
808, 801, 800, 802, 811, 809, 818, 812, 806, 809,
|
|
|
|
|
817, 810, 812, 814, 814, 815, 811, 816, 813, 818,
|
|
|
|
|
|
|
|
|
|
816, 815, 820, 819, 811, 821, 821, 822, 817, 819,
|
|
|
|
|
823, 824, 824, 825, 826, 823, 827, 827, 826, 828,
|
|
|
|
|
829, 830, 820, 831, 833, 822, 830, 836, 825, 834,
|
|
|
|
|
837, 839, 839, 840, 841, 842, 842, 840, 845, 843,
|
|
|
|
|
829, 828, 831, 834, 846, 70, 844, 836, 833, 841,
|
|
|
|
|
844, 837, 838, 845, 847, 838, 848, 838, 846, 847,
|
|
|
|
|
849, 838, 850, 838, 843, 849, 849, 851, 838, 852,
|
|
|
|
|
848, 851, 853, 838, 854, 855, 850, 853, 856, 854,
|
|
|
|
|
857, 865, 858, 864, 852, 859, 860, 853, 858, 855,
|
|
|
|
|
866, 859, 860, 862, 857, 861, 861, 863, 862, 856,
|
|
|
|
|
|
|
|
|
|
865, 868, 869, 863, 870, 864, 873, 869, 866, 867,
|
|
|
|
|
867, 873, 871, 868, 874, 867, 875, 867, 870, 872,
|
|
|
|
|
872, 876, 874, 867, 871, 877, 878, 878, 867, 867,
|
|
|
|
|
875, 881, 879, 883, 884, 867, 879, 881, 882, 885,
|
|
|
|
|
876, 882, 887, 886, 877, 885, 888, 884, 886, 889,
|
|
|
|
|
890, 891, 883, 892, 893, 888, 895, 891, 889, 894,
|
|
|
|
|
896, 887, 892, 897, 894, 898, 890, 902, 907, 899,
|
|
|
|
|
900, 905, 908, 893, 896, 901, 895, 898, 899, 900,
|
|
|
|
|
903, 901, 907, 897, 902, 909, 903, 905, 910, 911,
|
|
|
|
|
912, 913, 908, 914, 917, 921, 913, 918, 914, 917,
|
|
|
|
|
|
|
|
|
|
919, 919, 910, 920, 909, 912, 918, 911, 921, 920,
|
|
|
|
|
923, 924, 928, 927, 925, 925, 924, 924, 925, 926,
|
|
|
|
|
929, 930, 926, 932, 931, 933, 923, 927, 935, 932,
|
|
|
|
|
934, 940, 928, 937, 930, 936, 934, 941, 929, 931,
|
|
|
|
|
936, 939, 941, 935, 939, 933, 942, 937, 943, 944,
|
|
|
|
|
945, 942, 940, 946, 944, 945, 948, 949, 952, 952,
|
|
|
|
|
950, 951, 948, 953, 943, 946, 950, 951, 954, 956,
|
|
|
|
|
956, 955, 953, 949, 955, 957, 958, 959, 960, 961,
|
|
|
|
|
964, 960, 962, 963, 967, 964, 954, 969, 962, 963,
|
|
|
|
|
967, 965, 961, 957, 966, 958, 965, 959, 970, 966,
|
|
|
|
|
|
|
|
|
|
971, 974, 972, 973, 973, 969, 971, 972, 975, 976,
|
|
|
|
|
974, 977, 978, 979, 977, 978, 980, 975, 970, 981,
|
|
|
|
|
982, 985, 983, 984, 979, 986, 988, 976, 983, 984,
|
|
|
|
|
986, 981, 987, 987, 980, 989, 985, 991, 990, 982,
|
|
|
|
|
992, 991, 993, 994, 995, 988, 997, 998, 998, 989,
|
|
|
|
|
990, 993, 1000, 1001, 1003, 1002, 1005, 1005, 992, 1003,
|
|
|
|
|
1006, 1004, 994, 1021, 1021, 997, 1000, 1002, 1001, 995,
|
|
|
|
|
1004, 1007, 1008, 1010, 1009, 1010, 1011, 1007, 1008, 1009,
|
|
|
|
|
1006, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1014,
|
|
|
|
|
1019, 64, 1022, 1023, 1017, 1024, 1012, 1013, 1025, 1026,
|
|
|
|
|
|
|
|
|
|
1015, 1031, 1027, 1018, 1025, 1016, 1022, 1027, 1031, 1019,
|
|
|
|
|
1024, 1023, 1029, 1029, 1032, 1030, 1027, 1034, 1027, 1026,
|
|
|
|
|
1030, 1027, 1033, 1035, 1036, 1033, 1037, 1039, 1032, 1036,
|
|
|
|
|
1040, 1038, 1035, 1042, 1042, 1034, 1038, 1043, 1039, 1044,
|
|
|
|
|
1045, 1046, 1043, 1047, 1044, 1037, 1046, 1047, 1048, 1040,
|
|
|
|
|
1049, 1050, 1051, 1053, 1054, 1052, 1056, 1048, 1055, 1057,
|
|
|
|
|
1045, 1054, 1060, 1058, 1061, 1049, 1050, 1052, 1053, 1062,
|
|
|
|
|
1055, 1051, 1059, 1063, 1066, 1056, 1068, 1060, 1059, 1065,
|
|
|
|
|
1057, 1058, 1063, 1067, 1061, 1065, 1070, 1069, 1066, 1062,
|
|
|
|
|
1072, 1067, 1069, 1073, 1071, 1074, 1068, 1078, 1070, 1071,
|
|
|
|
|
|
|
|
|
|
1071, 1075, 1075, 1077, 59, 1079, 1078, 1073, 1074, 1072,
|
|
|
|
|
1076, 1079, 1080, 1080, 1083, 1076, 1077, 1081, 1076, 1076,
|
|
|
|
|
1083, 1082, 1081, 1076, 1086, 1086, 1084, 1085, 1087, 1076,
|
|
|
|
|
1082, 1084, 1085, 1076, 1088, 1088, 1089, 1090, 1091, 1089,
|
|
|
|
|
1093, 1089, 1092, 1094, 1095, 1096, 1097, 1098, 1094, 1087,
|
|
|
|
|
1099, 1092, 1097, 1098, 1108, 1099, 1091, 1090, 1095, 1101,
|
|
|
|
|
1093, 1100, 1103, 1096, 1103, 1100, 1102, 1102, 1101, 1104,
|
|
|
|
|
1106, 1107, 1108, 1101, 1106, 1101, 1109, 1101, 1110, 1101,
|
|
|
|
|
1104, 1111, 1112, 1110, 1110, 1109, 1107, 1112, 1113, 1114,
|
|
|
|
|
1115, 1116, 1117, 1118, 1119, 1119, 1120, 1121, 1114, 1118,
|
|
|
|
|
|
|
|
|
|
1122, 1123, 1113, 1111, 1120, 1122, 1117, 1124, 1125, 1115,
|
|
|
|
|
1116, 1121, 1126, 1127, 1129, 1123, 1124, 1135, 1127, 1128,
|
|
|
|
|
1128, 1130, 1130, 1131, 1133, 1131, 1125, 1133, 1134, 1129,
|
|
|
|
|
1136, 1137, 1137, 1134, 1138, 1142, 1135, 1126, 1143, 1136,
|
|
|
|
|
1139, 1139, 1140, 1140, 1141, 1144, 1144, 1145, 1146, 1141,
|
|
|
|
|
1147, 1146, 1148, 1149, 1138, 1151, 1142, 1148, 1150, 1143,
|
|
|
|
|
1150, 1153, 1149, 1154, 1153, 1162, 1155, 1145, 1157, 1156,
|
|
|
|
|
1147, 1155, 1158, 1151, 1156, 1159, 1157, 1158, 1154, 1161,
|
|
|
|
|
1159, 1160, 1160, 1162, 1161, 1163, 1164, 1165, 1167, 1168,
|
|
|
|
|
1170, 1163, 1169, 1164, 1167, 1168, 1170, 1169, 1171, 1172,
|
|
|
|
|
|
|
|
|
|
1165, 1173, 1174, 1174, 1175, 1177, 1178, 1171, 1179, 1180,
|
|
|
|
|
1181, 1183, 1173, 1184, 1179, 1180, 1181, 1183, 1172, 1185,
|
|
|
|
|
1186, 1187, 1188, 1190, 1175, 1177, 1191, 1184, 1192, 1178,
|
|
|
|
|
1189, 1189, 1186, 1184, 1195, 1187, 1193, 1194, 1194, 1185,
|
|
|
|
|
1188, 1193, 1196, 1190, 1198, 54, 1192, 1196, 1199, 1200,
|
|
|
|
|
1201, 1191, 1202, 1199, 1199, 1203, 1204, 1195, 1205, 1201,
|
|
|
|
|
1202, 1212, 1207, 1198, 1207, 1208, 1209, 1200, 1213, 1203,
|
|
|
|
|
1206, 1204, 1209, 1205, 1211, 1206, 1205, 1210, 1206, 1208,
|
|
|
|
|
1212, 1210, 1214, 1215, 1216, 1211, 1217, 1218, 1215, 1220,
|
|
|
|
|
1221, 1217, 1222, 1224, 1213, 1223, 1223, 1224, 1225, 1226,
|
|
|
|
|
|
|
|
|
|
1214, 1228, 1216, 1220, 1229, 1227, 1230, 1218, 1221, 1231,
|
|
|
|
|
1222, 1227, 1232, 1228, 1233, 1242, 1225, 1234, 1226, 1235,
|
|
|
|
|
1230, 1237, 1234, 1229, 1231, 1236, 1235, 1232, 1238, 1240,
|
|
|
|
|
1236, 1239, 1239, 1233, 1241, 1244, 1242, 1238, 1243, 1237,
|
|
|
|
|
1241, 1244, 1245, 1243, 1240, 1246, 1246, 1251, 1245, 1247,
|
|
|
|
|
1247, 1249, 1249, 1250, 1252, 1253, 1251, 1250, 1254, 1255,
|
|
|
|
|
1256, 1256, 1257, 1258, 1260, 1259, 1255, 1261, 1266, 1253,
|
|
|
|
|
1259, 1258, 1252, 1254, 1262, 1264, 1265, 1265, 1260, 1262,
|
|
|
|
|
1262, 1267, 1257, 1263, 1268, 1269, 1261, 1266, 1263, 1263,
|
|
|
|
|
1269, 1270, 1271, 1268, 1274, 1264, 1272, 1273, 1275, 1274,
|
|
|
|
|
|
|
|
|
|
1267, 1276, 1277, 1273, 1280, 1278, 1281, 1276, 1282, 1279,
|
|
|
|
|
1270, 1278, 1271, 1283, 1272, 1279, 1284, 1285, 1286, 1287,
|
|
|
|
|
1287, 1277, 1289, 1280, 1275, 1281, 1288, 1282, 1293, 1288,
|
|
|
|
|
1284, 1294, 1283, 1286, 1289, 1290, 1290, 1291, 1285, 1292,
|
|
|
|
|
1294, 1293, 1291, 1292, 1295, 1296, 1299, 1296, 1298, 1300,
|
|
|
|
|
1301, 1296, 1305, 1298, 1302, 1302, 1304, 1295, 1303, 1306,
|
|
|
|
|
1307, 1299, 1304, 1303, 1296, 1307, 1301, 1305, 1310, 1300,
|
|
|
|
|
1308, 1309, 1306, 1311, 1308, 1309, 1312, 1313, 1314, 1314,
|
|
|
|
|
1316, 1318, 1319, 1313, 1320, 1320, 1321, 1319, 1310, 1322,
|
|
|
|
|
1328, 1311, 1321, 1324, 1324, 1329, 1312, 1326, 1316, 1332,
|
|
|
|
|
|
|
|
|
|
1326, 1333, 1318, 1327, 1327, 1331, 1328, 1335, 1331, 1322,
|
|
|
|
|
1333, 1329, 1334, 1334, 1336, 1337, 1338, 1339, 1341, 1332,
|
|
|
|
|
1343, 1338, 1335, 1340, 1340, 1342, 1344, 1344, 1345, 1346,
|
|
|
|
|
1353, 1339, 1347, 1348, 1337, 1336, 1341, 1347, 1349, 1349,
|
|
|
|
|
1342, 1351, 1345, 1352, 1352, 1343, 1350, 1346, 1348, 1354,
|
|
|
|
|
1350, 1355, 1353, 1356, 1357, 1355, 1359, 1359, 1360, 1357,
|
|
|
|
|
1354, 1351, 1362, 1361, 1363, 1364, 1365, 1365, 1366, 1367,
|
|
|
|
|
1369, 1368, 1356, 1366, 1371, 1370, 1360, 1361, 1363, 1369,
|
|
|
|
|
1370, 1362, 1362, 1372, 1375, 1372, 1378, 1373, 1380, 1367,
|
|
|
|
|
1364, 1368, 1373, 1374, 1371, 1376, 1379, 1379, 1383, 1374,
|
|
|
|
|
|
|
|
|
|
1378, 1376, 1381, 1383, 1375, 1384, 1387, 1380, 1381, 1385,
|
|
|
|
|
1385, 1386, 1386, 1388, 1390, 1389, 1392, 1390, 1391, 1391,
|
|
|
|
|
1387, 1393, 1399, 1400, 1403, 1403, 1400, 1395, 1392, 1384,
|
|
|
|
|
1389, 1388, 1394, 1395, 1396, 1394, 1397, 1398, 1394, 1396,
|
|
|
|
|
1401, 1393, 1398, 1402, 1407, 1397, 1401, 1399, 1402, 1405,
|
|
|
|
|
1394, 1404, 1404, 1406, 1408, 1405, 1409, 1407, 1406, 1410,
|
|
|
|
|
1411, 1412, 1413, 1411, 1414, 1415, 1416, 1412, 1413, 1414,
|
|
|
|
|
1420, 1415, 1408, 1417, 1421, 1409, 1418, 1418, 1417, 1410,
|
|
|
|
|
1419, 1422, 1423, 1424, 1427, 1419, 1425, 1426, 1420, 1416,
|
|
|
|
|
1427, 1428, 1429, 1430, 1421, 1431, 1423, 1424, 1425, 1434,
|
|
|
|
|
|
|
|
|
|
1426, 1422, 1433, 1433, 1435, 1436, 1436, 1430, 1437, 1435,
|
|
|
|
|
1438, 1428, 1429, 1439, 1440, 1442, 1431, 1441, 1443, 1434,
|
|
|
|
|
1445, 1449, 1444, 1437, 1438, 1443, 1441, 1447, 1451, 1451,
|
|
|
|
|
1442, 1444, 1440, 1453, 1444, 1450, 1445, 1439, 1450, 1452,
|
|
|
|
|
1452, 1454, 1447, 1456, 1456, 1453, 1449, 1447, 1455, 1457,
|
|
|
|
|
1458, 1455, 1459, 1460, 1461, 1462, 1463, 1459, 1460, 1454,
|
|
|
|
|
1464, 1466, 1457, 1465, 1469, 1463, 1468, 1468, 1467, 1458,
|
|
|
|
|
1466, 1462, 1465, 1461, 1467, 1465, 1470, 1471, 1472, 1464,
|
|
|
|
|
1473, 1474, 1476, 1477, 1469, 1478, 1478, 1479, 1480, 1470,
|
|
|
|
|
1482, 1482, 1472, 1474, 1481, 1471, 1473, 1480, 1484, 1481,
|
|
|
|
|
|
|
|
|
|
1483, 1477, 1485, 1479, 1486, 1482, 1489, 1476, 1487, 1483,
|
|
|
|
|
1490, 1491, 1483, 1487, 1487, 1493, 1484, 1494, 53, 1492,
|
|
|
|
|
1489, 1493, 1486, 1485, 1492, 1490, 1495, 1495, 1496, 1501,
|
|
|
|
|
1502, 1497, 1498, 1491, 1496, 1494, 1497, 1499, 1498, 1503,
|
|
|
|
|
1504, 1510, 1506, 1499, 1502, 1503, 1508, 1505, 1506, 1501,
|
|
|
|
|
1505, 1511, 1513, 1504, 1508, 1512, 1505, 1522, 1514, 1515,
|
|
|
|
|
1510, 1513, 1516, 1512, 1517, 1518, 1518, 1519, 1520, 1521,
|
|
|
|
|
1511, 1514, 1515, 1519, 1520, 1523, 1516, 1522, 1517, 1524,
|
|
|
|
|
1526, 1525, 1521, 1527, 1528, 1529, 1526, 1518, 1531, 1531,
|
|
|
|
|
1532, 1533, 1534, 1523, 1525, 1533, 1535, 1534, 1524, 1536,
|
|
|
|
|
|
|
|
|
|
1528, 1535, 1537, 1529, 1536, 1527, 1538, 1540, 1541, 1541,
|
|
|
|
|
1532, 1537, 1542, 1543, 1544, 1545, 1545, 1547, 1546, 1554,
|
|
|
|
|
1550, 1551, 1540, 1548, 1547, 1543, 1549, 1561, 1552, 1538,
|
|
|
|
|
1553, 1542, 1546, 1544, 1552, 1548, 1561, 1554, 1549, 1550,
|
|
|
|
|
1555, 1551, 1553, 1556, 1556, 1557, 1555, 1560, 1557, 1558,
|
|
|
|
|
1558, 1562, 1560, 1563, 1563, 1564, 1565, 1562, 1565, 1566,
|
|
|
|
|
1567, 1568, 1566, 1569, 1570, 1571, 1572, 1564, 1575, 1576,
|
|
|
|
|
1571, 1574, 1573, 1575, 1577, 1572, 1581, 1578, 1576, 1580,
|
|
|
|
|
1567, 1569, 1570, 1568, 1573, 1580, 1574, 1579, 1579, 1582,
|
|
|
|
|
1583, 1576, 1578, 1584, 1577, 1586, 1585, 1581, 1585, 1587,
|
|
|
|
|
|
|
|
|
|
1587, 1588, 1588, 1589, 1589, 1590, 1583, 1593, 1582, 1586,
|
|
|
|
|
1594, 1586, 1601, 1584, 1591, 1591, 1592, 1592, 1595, 1595,
|
|
|
|
|
1596, 1597, 1603, 1598, 1596, 1590, 1598, 1597, 1593, 1600,
|
|
|
|
|
1601, 1594, 1602, 1604, 1609, 1600, 1604, 1607, 1602, 1605,
|
|
|
|
|
1605, 1606, 1606, 1607, 1608, 1610, 1611, 1603, 1612, 1616,
|
|
|
|
|
1615, 1616, 1611, 1621, 1609, 1614, 1608, 1608, 1608, 1617,
|
|
|
|
|
1614, 1614, 1618, 1608, 1615, 1610, 1619, 1620, 1612, 1622,
|
|
|
|
|
1617, 1624, 1619, 1621, 1623, 1623, 1620, 1618, 1625, 1625,
|
|
|
|
|
1626, 1627, 1628, 1628, 1629, 1629, 1630, 1633, 1633, 1634,
|
|
|
|
|
1622, 1638, 1635, 1637, 1640, 1640, 1641, 1624, 1639, 1645,
|
|
|
|
|
|
|
|
|
|
1626, 1635, 1637, 1627, 1639, 1642, 1630, 1644, 1643, 1646,
|
|
|
|
|
1646, 1647, 1638, 1648, 1634, 1643, 1644, 1641, 1650, 1652,
|
|
|
|
|
1642, 1651, 1654, 1650, 1653, 1645, 1655, 1651, 1654, 1648,
|
|
|
|
|
1657, 1653, 1655, 1656, 1656, 1657, 1658, 1647, 1659, 1652,
|
|
|
|
|
1660, 1661, 1663, 1662, 1664, 1658, 1662, 1665, 1665, 1666,
|
|
|
|
|
1668, 1667, 1669, 1661, 1671, 1666, 1669, 1672, 1659, 1660,
|
|
|
|
|
1663, 1673, 1674, 1674, 1675, 1668, 1673, 1676, 1678, 1679,
|
|
|
|
|
1664, 1667, 1669, 1679, 1671, 1680, 1681, 1682, 1682, 1672,
|
|
|
|
|
1683, 1680, 1676, 1675, 1683, 1681, 1684, 1678, 1685, 1685,
|
|
|
|
|
1686, 1687, 1692, 1688, 1689, 1690, 1691, 1684, 1692, 1689,
|
|
|
|
|
|
|
|
|
|
1697, 1694, 1684, 1693, 1697, 1687, 1694, 1695, 1695, 1696,
|
|
|
|
|
1696, 1686, 1688, 1699, 1700, 1690, 1691, 1701, 1693, 1702,
|
|
|
|
|
1702, 1704, 1699, 1703, 1703, 1700, 1704, 1704, 1705, 1706,
|
|
|
|
|
1700, 1707, 1709, 1708, 1705, 1706, 1710, 1701, 1708, 1712,
|
|
|
|
|
1714, 1713, 1710, 1715, 1709, 1713, 1719, 1716, 1717, 1718,
|
|
|
|
|
1721, 1712, 1714, 1716, 1722, 1718, 1723, 1707, 1719, 1729,
|
|
|
|
|
1725, 1723, 1721, 1725, 1726, 1726, 1727, 1727, 1715, 1730,
|
|
|
|
|
1717, 1728, 1728, 1722, 1731, 1730, 1732, 1733, 1734, 1729,
|
|
|
|
|
1731, 1732, 1738, 1733, 1736, 1738, 1739, 1734, 1742, 1736,
|
|
|
|
|
1740, 1740, 1743, 1746, 1744, 1745, 1745, 1750, 1739, 1744,
|
|
|
|
|
|
|
|
|
|
1742, 1747, 1746, 1748, 1743, 1751, 1747, 1752, 1748, 1749,
|
|
|
|
|
1749, 1753, 1754, 1755, 1751, 1756, 1754, 1750, 1755, 1757,
|
|
|
|
|
1760, 1756, 1759, 1759, 1764, 1752, 1761, 1762, 1762, 1765,
|
|
|
|
|
1753, 1763, 1766, 1757, 1759, 1761, 1764, 1766, 1760, 1767,
|
|
|
|
|
1763, 1770, 1770, 1772, 1773, 1774, 1772, 1776, 1778, 1777,
|
|
|
|
|
1765, 1779, 1767, 1786, 1778, 1780, 1780, 1781, 1783, 1781,
|
|
|
|
|
1773, 1774, 1776, 1777, 1782, 1782, 1783, 1785, 1779, 1787,
|
|
|
|
|
1787, 1788, 1789, 1786, 1785, 1790, 1791, 1792, 1793, 1794,
|
|
|
|
|
1788, 1797, 1800, 1798, 1795, 1799, 1799, 1790, 1791, 1792,
|
|
|
|
|
1795, 1801, 1803, 1789, 1794, 1798, 1802, 1803, 1804, 1802,
|
|
|
|
|
|
|
|
|
|
1800, 1797, 1806, 1795, 1793, 1808, 1807, 1806, 1807, 1809,
|
|
|
|
|
1810, 1801, 1812, 1814, 1809, 1815, 1816, 1810, 1804, 1818,
|
|
|
|
|
1817, 1812, 1817, 1808, 1815, 1820, 1821, 1820, 1816, 1822,
|
|
|
|
|
1822, 1814, 1823, 1825, 1824, 1825, 1826, 1827, 1818, 1824,
|
|
|
|
|
1821, 1826, 1827, 1828, 1829, 1830, 1832, 1831, 1833, 1835,
|
|
|
|
|
1839, 1830, 1831, 1836, 1837, 1837, 1833, 1840, 1823, 1832,
|
|
|
|
|
1841, 1828, 1838, 1838, 1829, 1839, 1841, 1836, 1835, 1842,
|
|
|
|
|
1843, 1844, 1843, 1846, 1842, 1845, 1845, 1840, 1851, 1844,
|
|
|
|
|
1847, 1847, 1848, 1848, 1849, 1846, 1850, 1844, 1853, 1855,
|
|
|
|
|
1854, 1850, 1854, 1849, 1858, 1860, 1851, 1853, 1856, 1857,
|
|
|
|
|
|
|
|
|
|
1853, 1865, 1864, 1856, 1856, 1868, 1858, 1860, 1857, 1861,
|
|
|
|
|
1855, 1862, 1869, 1866, 1861, 1864, 1862, 1867, 1867, 1870,
|
|
|
|
|
1871, 1865, 1866, 1868, 1872, 1874, 1875, 1876, 1877, 1885,
|
|
|
|
|
1869, 1878, 1879, 1877, 1871, 1870, 1878, 1874, 1875, 1872,
|
|
|
|
|
1882, 1879, 1884, 1886, 1887, 1888, 1882, 1876, 1884, 1890,
|
|
|
|
|
1890, 1889, 1885, 1893, 1891, 1892, 1892, 1894, 1886, 1882,
|
|
|
|
|
1889, 1894, 1887, 1891, 1895, 1896, 1902, 48, 1897, 1895,
|
|
|
|
|
1888, 1898, 1893, 1897, 1897, 1899, 1900, 1898, 1896, 1900,
|
|
|
|
|
1901, 1899, 1905, 1905, 1906, 1906, 1902, 1907, 1901, 1908,
|
|
|
|
|
1908, 1909, 1909, 1910, 1911, 1912, 1907, 1913, 1923, 1906,
|
|
|
|
|
|
|
|
|
|
1920, 1912, 1913, 1914, 1914, 1910, 1915, 1915, 1916, 1917,
|
|
|
|
|
1906, 1924, 1911, 1916, 1919, 1917, 1924, 1921, 1919, 1925,
|
|
|
|
|
1920, 1921, 1926, 1923, 1927, 1928, 1930, 1930, 1929, 1927,
|
|
|
|
|
1931, 1932, 1934, 1933, 1931, 1935, 1936, 1926, 1933, 1938,
|
|
|
|
|
1937, 1939, 1925, 1928, 1929, 1937, 1932, 1935, 1940, 1940,
|
|
|
|
|
1943, 1944, 1938, 1942, 1945, 1936, 1946, 1947, 1934, 1939,
|
|
|
|
|
1948, 1942, 1949, 1950, 1952, 1953, 1953, 43, 1954, 1943,
|
|
|
|
|
1944, 1954, 1955, 1956, 1949, 1957, 1947, 1945, 1961, 1952,
|
|
|
|
|
1946, 1948, 1958, 1958, 1950, 1955, 1962, 1956, 1957, 1959,
|
|
|
|
|
1959, 1960, 1960, 1961, 1963, 1963, 1964, 1965, 1965, 1962,
|
|
|
|
|
|
|
|
|
|
1969, 1966, 1968, 1970, 1971, 1964, 1966, 1968, 1964, 1972,
|
|
|
|
|
1972, 1973, 1973, 1974, 1975, 1975, 1971, 1976, 1977, 1977,
|
|
|
|
|
1969, 1978, 1979, 1970, 1980, 1980, 1982, 1979, 1981, 1981,
|
|
|
|
|
1983, 1984, 1974, 1985, 1989, 1976, 1978, 1987, 1991, 1983,
|
|
|
|
|
1982, 14, 1987, 1988, 1988, 1984, 1990, 1990, 1992, 1994,
|
|
|
|
|
1994, 1996, 1985, 1989, 1992, 1993, 1991, 1997, 1993, 1995,
|
|
|
|
|
1995, 1998, 1999, 1999, 2001, 1994, 2002, 2003, 2006, 2004,
|
|
|
|
|
1996, 2007, 1997, 2004, 2005, 2005, 2008, 2010, 2010, 2011,
|
|
|
|
|
1998, 2012, 2003, 2013, 2001, 2014, 2007, 2006, 2012, 2002,
|
|
|
|
|
2015, 2008, 2016, 2017, 2017, 2018, 2019, 2013, 2019, 2011,
|
|
|
|
|
|
|
|
|
|
2020, 2022, 2023, 2014, 2018, 2024, 2025, 2023, 2015, 2026,
|
|
|
|
|
2024, 2027, 2028, 2022, 2029, 2033, 2031, 2028, 2016, 2032,
|
|
|
|
|
2020, 2031, 2026, 2034, 2032, 2035, 2039, 2036, 2042, 2034,
|
|
|
|
|
2033, 2025, 2027, 2036, 2037, 2040, 2038, 2042, 2043, 2037,
|
|
|
|
|
2029, 2038, 2041, 2044, 2045, 2041, 2035, 2043, 2040, 2046,
|
|
|
|
|
2047, 2039, 2044, 2045, 2048, 2049, 2047, 2051, 2053, 2049,
|
|
|
|
|
2048, 2054, 2054, 2046, 2055, 2056, 2056, 2053, 2057, 2059,
|
|
|
|
|
2055, 2060, 2061, 2061, 2056, 2063, 2062, 2051, 2066, 2070,
|
|
|
|
|
2065, 2067, 2070, 2068, 2063, 2059, 2072, 2060, 2057, 2073,
|
|
|
|
|
2057, 2062, 2065, 2071, 2066, 2068, 2067, 13, 2071, 2074,
|
|
|
|
|
|
|
|
|
|
2074, 2073, 2075, 2075, 2077, 2077, 2072, 2078, 2079, 2080,
|
|
|
|
|
2078, 2081, 2083, 2079, 2087, 2080, 2085, 2081, 2082, 2082,
|
|
|
|
|
2084, 2084, 2086, 2088, 2088, 2090, 2083, 2091, 2085, 2090,
|
|
|
|
|
2091, 2092, 2092, 2087, 2093, 2094, 2086, 2095, 2096, 2093,
|
|
|
|
|
2097, 2097, 2096, 2098, 2094, 2100, 2101, 2102, 2103, 2104,
|
|
|
|
|
2100, 2105, 2107, 2104, 2106, 2108, 2098, 2095, 2107, 2106,
|
|
|
|
|
2109, 2108, 2103, 2111, 2112, 2114, 2101, 2102, 2113, 2112,
|
|
|
|
|
2115, 2105, 2115, 2114, 2113, 2118, 2119, 2119, 2109, 2111,
|
|
|
|
|
2120, 2121, 2124, 2120, 2122, 2122, 2124, 2125, 2126, 2118,
|
|
|
|
|
2127, 2127, 2128, 2125, 2131, 2131, 2133, 2135, 2139, 2136,
|
|
|
|
|
|
|
|
|
|
2126, 2128, 2140, 2139, 2141, 2142, 2149, 2121, 2150, 2141,
|
|
|
|
|
2142, 2135, 2143, 2143, 2133, 2136, 2145, 2145, 2147, 2148,
|
|
|
|
|
2148, 2151, 2149, 2153, 2147, 2154, 2151, 2157, 2140, 2158,
|
|
|
|
|
2150, 2155, 2155, 2159, 2160, 2158, 2157, 2154, 2162, 2162,
|
|
|
|
|
2163, 2173, 2153, 2164, 2166, 2166, 2167, 2167, 2168, 2160,
|
|
|
|
|
2169, 2159, 2171, 2168, 2170, 2173, 2172, 2171, 2172, 2163,
|
|
|
|
|
2174, 2164, 2175, 2170, 2176, 2177, 2177, 2181, 2169, 2176,
|
|
|
|
|
2178, 2178, 2179, 2179, 2174, 2180, 2180, 2182, 2183, 2181,
|
|
|
|
|
2184, 2184, 2175, 2183, 2185, 2185, 2186, 2187, 2188, 2189,
|
|
|
|
|
2190, 2190, 2191, 2192, 2192, 2182, 2193, 2193, 2186, 2187,
|
|
|
|
|
|
|
|
|
|
2196, 2194, 2195, 2197, 2198, 2189, 2200, 2196, 2188, 2201,
|
|
|
|
|
2203, 2191, 2194, 2199, 2195, 2197, 2202, 2202, 2199, 2203,
|
|
|
|
|
2204, 2205, 2206, 2207, 2198, 2208, 2200, 2209, 2209, 2201,
|
|
|
|
|
2211, 2210, 2214, 2212, 2215, 2206, 2216, 2218, 2219, 2208,
|
|
|
|
|
2210, 2205, 2266, 2219, 2266, 2211, 2204, 2207, 2212, 2217,
|
|
|
|
|
2214, 2218, 2217, 2220, 2221, 2221, 2215, 2228, 2220, 2216,
|
|
|
|
|
2222, 2222, 2223, 2223, 2225, 2225, 2227, 2227, 2229, 2230,
|
|
|
|
|
2232, 2233, 2234, 2235, 2236, 2228, 2237, 2238, 2242, 2229,
|
|
|
|
|
2239, 2239, 2243, 2236, 2241, 2241, 2244, 2244, 2230, 2233,
|
|
|
|
|
2232, 2243, 2246, 2235, 2234, 2238, 2237, 2247, 2247, 2248,
|
|
|
|
|
|
|
|
|
|
2242, 2246, 2249, 2250, 2251, 2252, 2253, 2255, 2261, 2254,
|
|
|
|
|
2250, 2256, 2256, 2257, 2257, 2258, 2259, 2248, 2260, 2251,
|
|
|
|
|
2249, 2258, 2263, 2252, 2253, 2254, 2255, 2261, 2264, 0,
|
|
|
|
|
2262, 2265, 2271, 2260, 2259, 2262, 2265, 2267, 2267, 2268,
|
|
|
|
|
2273, 2268, 2263, 2269, 2269, 2274, 2275, 2276, 2264, 2273,
|
|
|
|
|
2277, 2271, 2278, 2285, 2279, 2277, 2282, 2283, 2275, 2286,
|
|
|
|
|
2283, 2284, 2284, 2290, 2274, 2287, 2287, 2276, 2285, 2293,
|
|
|
|
|
2288, 2291, 2278, 2279, 2288, 2291, 2282, 2286, 2290, 2292,
|
|
|
|
|
2292, 2295, 2293, 2296, 2297, 2297, 2299, 2300, 2301, 2302,
|
|
|
|
|
2302, 2303, 2301, 2304, 2304, 2305, 2300, 2306, 2299, 2313,
|
|
|
|
|
|
|
|
|
|
2305, 2295, 2315, 2296, 2307, 2307, 2312, 2312, 2317, 2306,
|
|
|
|
|
2303, 2314, 2314, 2316, 2318, 2315, 2320, 2317, 2319, 2319,
|
|
|
|
|
2327, 2313, 2325, 2318, 2322, 2322, 2316, 2325, 2326, 2329,
|
|
|
|
|
2328, 2320, 2330, 2326, 2327, 2328, 2331, 2329, 2332, 2334,
|
|
|
|
|
2337, 2342, 2335, 2336, 0, 2331, 2332, 2335, 2336, 2338,
|
|
|
|
|
2338, 2330, 2339, 2339, 2334, 2337, 2340, 2341, 2343, 2342,
|
|
|
|
|
2344, 2604, 2341, 2340, 2345, 2347, 2344, 2346, 2346, 2345,
|
|
|
|
|
2348, 2349, 2349, 2350, 2350, 2348, 2343, 2353, 2354, 2354,
|
|
|
|
|
2347, 2355, 2356, 2604, 2355, 0, 2357, 2356, 2356, 2358,
|
|
|
|
|
2353, 2357, 2359, 2360, 2358, 2361, 2362, 2360, 2359, 2363,
|
|
|
|
|
|
|
|
|
|
2361, 2364, 2365, 2366, 2371, 2362, 2368, 2365, 2375, 2364,
|
|
|
|
|
2369, 2368, 2373, 2369, 2363, 2366, 2371, 2373, 2374, 2376,
|
|
|
|
|
2377, 2378, 2380, 2374, 2379, 2379, 2375, 2383, 2384, 2377,
|
|
|
|
|
2378, 2380, 2376, 2385, 2386, 2386, 2387, 2391, 2388, 2389,
|
|
|
|
|
2390, 2390, 2393, 2395, 2398, 2396, 2383, 2388, 2384, 2396,
|
|
|
|
|
2397, 2397, 2385, 2399, 2389, 2387, 2391, 2393, 2400, 2399,
|
|
|
|
|
2401, 2402, 2402, 2395, 2400, 2403, 2401, 2404, 2406, 2398,
|
|
|
|
|
2407, 2409, 2404, 2403, 2410, 2409, 2411, 2406, 2413, 2413,
|
|
|
|
|
2414, 2414, 2423, 2407, 2415, 2415, 2417, 2417, 2410, 2418,
|
|
|
|
|
2419, 2411, 2426, 2418, 2424, 2419, 2421, 2421, 2431, 2424,
|
|
|
|
|
|
|
|
|
|
2424, 2431, 2423, 2427, 2427, 2429, 2429, 2430, 2430, 2432,
|
|
|
|
|
2434, 2436, 2426, 2437, 2437, 2438, 2438, 2439, 2439, 2440,
|
|
|
|
|
2441, 2441, 2432, 2442, 2443, 2444, 2445, 2451, 2434, 2446,
|
|
|
|
|
2446, 2436, 2445, 2447, 2440, 2450, 2442, 2447, 2452, 2444,
|
|
|
|
|
2450, 2450, 2443, 2453, 2456, 2454, 2455, 2458, 2458, 2457,
|
|
|
|
|
2451, 2454, 2455, 2457, 2461, 2466, 2463, 2464, 2452, 2461,
|
|
|
|
|
2464, 2468, 2467, 2453, 2463, 2467, 2469, 2470, 2471, 2456,
|
|
|
|
|
2472, 2469, 2473, 2473, 2474, 2475, 2476, 2477, 2468, 2468,
|
|
|
|
|
2466, 2476, 2476, 2475, 2472, 2470, 2478, 2478, 2471, 2479,
|
|
|
|
|
2479, 2480, 2480, 2474, 2481, 2481, 2477, 2482, 2482, 2483,
|
|
|
|
|
|
|
|
|
|
2484, 2485, 2486, 2487, 2488, 2484, 2489, 2491, 2491, 2493,
|
|
|
|
|
2492, 2496, 2487, 2492, 0, 2483, 2495, 2495, 2496, 2497,
|
|
|
|
|
2497, 2485, 2500, 2500, 2488, 2498, 2489, 2493, 2486, 2501,
|
|
|
|
|
2498, 2502, 2503, 2505, 2506, 2506, 2508, 2509, 2501, 2507,
|
|
|
|
|
2502, 2503, 2510, 2507, 2511, 2508, 2512, 2510, 2510, 2516,
|
|
|
|
|
2520, 2505, 2509, 2522, 2516, 2512, 2526, 2511, 2517, 2517,
|
|
|
|
|
2519, 2519, 2522, 2523, 2527, 2528, 2529, 2531, 2520, 2533,
|
|
|
|
|
2571, 2535, 2529, 2527, 2571, 2523, 2535, 2536, 2538, 2531,
|
|
|
|
|
2547, 2526, 2536, 2537, 2537, 2528, 2540, 2538, 2541, 2541,
|
|
|
|
|
2533, 2540, 2541, 2543, 2543, 2544, 2544, 2545, 2545, 2546,
|
|
|
|
|
|
|
|
|
|
2547, 2548, 2549, 2551, 2555, 2552, 2553, 2549, 2546, 2551,
|
|
|
|
|
2552, 2553, 2554, 2554, 2556, 2558, 2557, 2559, 2560, 2563,
|
|
|
|
|
2548, 2557, 2555, 2559, 2561, 2561, 2564, 2565, 2567, 2567,
|
|
|
|
|
2572, 2569, 2570, 2558, 2573, 2556, 2574, 2576, 2563, 2572,
|
|
|
|
|
2575, 2564, 2576, 2560, 2569, 2570, 2577, 2565, 2575, 2579,
|
|
|
|
|
2573, 2578, 2578, 2581, 2581, 2574, 2582, 2582, 2584, 2586,
|
|
|
|
|
2586, 2588, 2589, 2594, 2590, 2591, 2593, 2593, 2579, 2595,
|
|
|
|
|
2591, 2596, 2577, 2598, 2598, 2599, 2607, 2588, 2589, 2584,
|
|
|
|
|
2590, 2600, 2600, 2594, 2605, 2605, 2603, 2606, 2606, 2599,
|
|
|
|
|
2596, 2603, 2595, 2608, 2608, 2609, 2607, 2611, 2610, 2612,
|
|
|
|
|
|
|
|
|
|
2613, 2615, 2614, 2616, 2616, 2612, 2609, 2610, 2617, 2618,
|
|
|
|
|
2618, 2617, 2622, 2608, 2614, 2623, 2624, 2611, 2628, 2613,
|
|
|
|
|
2626, 2615, 2624, 2626, 2622, 2625, 2625, 2627, 2632, 2630,
|
|
|
|
|
2693, 2634, 2631, 2627, 2630, 2623, 2628, 2631, 2633, 2635,
|
|
|
|
|
2635, 2637, 2637, 2638, 2633, 2639, 2693, 2632, 2634, 2634,
|
|
|
|
|
2641, 2641, 2642, 2642, 2639, 2643, 2644, 2656, 2645, 2654,
|
|
|
|
|
2643, 2657, 2638, 2645, 2646, 2646, 2647, 2647, 2648, 2648,
|
|
|
|
|
2644, 2649, 2651, 2651, 2658, 2662, 2649, 2663, 2654, 2656,
|
|
|
|
|
2659, 2659, 2664, 2657, 2661, 2661, 2665, 2665, 2667, 2662,
|
|
|
|
|
2668, 2664, 2671, 2671, 2675, 2668, 2658, 2663, 2673, 2673,
|
|
|
|
|
|
|
|
|
|
2674, 2677, 2678, 2676, 2682, 2674, 2683, 2667, 2675, 2676,
|
|
|
|
|
2678, 2679, 2679, 2677, 2680, 2684, 2685, 2686, 2689, 2680,
|
|
|
|
|
2684, 2688, 2690, 2686, 2682, 2691, 2683, 2699, 2685, 2688,
|
|
|
|
|
2692, 2695, 2694, 2696, 2703, 2703, 2718, 2689, 2696, 0,
|
|
|
|
|
2700, 2721, 2690, 2704, 2704, 2691, 2721, 2699, 2692, 2694,
|
|
|
|
|
2694, 2705, 2695, 2700, 2718, 2705, 2709, 2709, 2711, 2711,
|
|
|
|
|
2712, 2712, 2715, 2712, 2713, 2713, 2715, 2713, 2714, 2714,
|
|
|
|
|
2719, 2714, 2717, 2717, 2722, 2722, 2725, 2727, 2726, 2728,
|
|
|
|
|
2729, 2727, 2731, 2732, 2719, 2726, 2733, 2733, 2728, 2734,
|
|
|
|
|
2734, 2736, 2732, 2735, 2735, 2729, 2738, 2737, 2739, 2741,
|
|
|
|
|
|
|
|
|
|
2731, 2725, 2737, 2739, 2739, 2738, 2736, 2740, 2738, 2743,
|
|
|
|
|
2742, 2744, 2745, 2740, 2746, 2748, 2744, 2745, 2747, 2747,
|
|
|
|
|
2748, 2751, 2751, 0, 2741, 2742, 2754, 2754, 2755, 2755,
|
|
|
|
|
2743, 2756, 2756, 2746, 2757, 2757, 2758, 2758, 2759, 2759,
|
|
|
|
|
2760, 2760, 2762, 2763, 2763, 2764, 2768, 2766, 2767, 2767,
|
|
|
|
|
2769, 2762, 2770, 2771, 2771, 2772, 2773, 2773, 2776, 2777,
|
|
|
|
|
2778, 2768, 2777, 2769, 2770, 2764, 2766, 2779, 2779, 2780,
|
|
|
|
|
2772, 2782, 2783, 2786, 2782, 2784, 2776, 2785, 2783, 2787,
|
|
|
|
|
2788, 2799, 2785, 2790, 2799, 2804, 2778, 2780, 2808, 2784,
|
|
|
|
|
2801, 2801, 2786, 2802, 2802, 2805, 2788, 2787, 2790, 2806,
|
|
|
|
|
|
|
|
|
|
2807, 2810, 2808, 2806, 2805, 2811, 2812, 2813, 2804, 2813,
|
|
|
|
|
2814, 2812, 2815, 2815, 2816, 2817, 2811, 2818, 2820, 2822,
|
|
|
|
|
2807, 2819, 2823, 2821, 2810, 2814, 2827, 2816, 2828, 2828,
|
|
|
|
|
2826, 2922, 2829, 2922, 2817, 2818, 2834, 2819, 2821, 2835,
|
|
|
|
|
2822, 2829, 2823, 2820, 2826, 2839, 2827, 2830, 2830, 2831,
|
|
|
|
|
2831, 2832, 2832, 2833, 2833, 2834, 2837, 2836, 2838, 2835,
|
|
|
|
|
2836, 2837, 2840, 2838, 2842, 2841, 2843, 2844, 2844, 2845,
|
|
|
|
|
2839, 2841, 2846, 2846, 2848, 2850, 2855, 2840, 2842, 2853,
|
|
|
|
|
2853, 2854, 2854, 2856, 2855, 2857, 2843, 2859, 2845, 2848,
|
|
|
|
|
2858, 2857, 2860, 2850, 2861, 2864, 2858, 2862, 2862, 2867,
|
|
|
|
|
|
|
|
|
|
2866, 2859, 2856, 2867, 2869, 2860, 2870, 2871, 2872, 2873,
|
|
|
|
|
2874, 2870, 2875, 2861, 2866, 2864, 2878, 2875, 2876, 2879,
|
|
|
|
|
2881, 2872, 2873, 2876, 2869, 2881, 2871, 2880, 2880, 2874,
|
|
|
|
|
2882, 2883, 2883, 2887, 2878, 2884, 2882, 2885, 2879, 2886,
|
|
|
|
|
2884, 2888, 2885, 2889, 2886, 2890, 2890, 2888, 2889, 2892,
|
|
|
|
|
2893, 2894, 2887, 2892, 2895, 2896, 2897, 2898, 2894, 2899,
|
|
|
|
|
2900, 2900, 2897, 2902, 2902, 2904, 2903, 2905, 2906, 2893,
|
|
|
|
|
2904, 2907, 2899, 2895, 2896, 2903, 2898, 2909, 2903, 2908,
|
|
|
|
|
2908, 2910, 2909, 2912, 2907, 2914, 2905, 2906, 2913, 2913,
|
|
|
|
|
2915, 2915, 2916, 2916, 2910, 2917, 2918, 2919, 2920, 2920,
|
|
|
|
|
|
|
|
|
|
2917, 2921, 2926, 2918, 2914, 2924, 2921, 2923, 2923, 2912,
|
|
|
|
|
2925, 2928, 2924, 2927, 2930, 2930, 2919, 2925, 2927, 2931,
|
|
|
|
|
2933, 2926, 2934, 2935, 2936, 2933, 2940, 2934, 2937, 2937,
|
|
|
|
|
2928, 2939, 2939, 2941, 2942, 2942, 2943, 2943, 2931, 2944,
|
|
|
|
|
2946, 2946, 2935, 2936, 2948, 2940, 2944, 2947, 2947, 2950,
|
|
|
|
|
2953, 2948, 2941, 2954, 2950, 2953, 2955, 2956, 2956, 2957,
|
|
|
|
|
2957, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
|
0, 0, 2954, 0, 0, 2955, 2961, 2961, 2961, 2961,
|
|
|
|
|
2961, 2961, 2961, 2962, 2962, 2962, 2962, 2962, 2962, 2962,
|
|
|
|
|
2963, 2963, 2963, 2963, 2963, 2963, 2963, 2964, 2964, 2964,
|
|
|
|
|
|
|
|
|
|
2964, 2964, 2964, 2964, 2965, 2965, 2965, 2965, 2965, 2965,
|
|
|
|
|
2965, 2967, 2967, 0, 2967, 2967, 2967, 2967, 2968, 2968,
|
|
|
|
|
0, 0, 0, 2968, 2968, 2969, 2969, 0, 0, 2969,
|
|
|
|
|
0, 2969, 2970, 0, 0, 0, 0, 0, 2970, 2971,
|
|
|
|
|
2971, 0, 0, 0, 2971, 2971, 2972, 0, 0, 0,
|
|
|
|
|
0, 0, 2972, 2973, 2973, 0, 2973, 2973, 2973, 2973,
|
|
|
|
|
2974, 2974, 0, 2974, 2974, 2974, 2974, 2960, 2960, 2960,
|
|
|
|
|
2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960,
|
|
|
|
|
2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960,
|
|
|
|
|
2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960,
|
|
|
|
|
|
|
|
|
|
2960, 2960, 2960, 2960, 2960, 2960, 2960, 2960
|
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;
|
2019-08-14 05:40:35 -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;
|
2019-09-25 10:50:30 -04:00
|
|
|
int i, r, flags;
|
2012-09-27 04:52:37 -04:00
|
|
|
if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') &&
|
|
|
|
|
!strchr(filename, '{') && !strchr(filename, '~'))) {
|
|
|
|
|
flags = 0
|
|
|
|
|
#ifdef GLOB_ERR
|
|
|
|
|
| GLOB_ERR
|
|
|
|
|
#endif
|
2018-11-26 04:54:34 -05:00
|
|
|
/* do not set GLOB_NOSORT so the results are sorted
|
|
|
|
|
and in a predictable order. */
|
2012-09-27 04:52:37 -04:00
|
|
|
#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 */
|
2019-09-25 10:50:30 -04:00
|
|
|
for(i=(int)g.gl_pathc-1; i>=0; i--) {
|
2012-09-27 04:52:37 -04:00
|
|
|
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 ) \
|
2019-08-14 05:40:35 -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
|
|
|
|
|
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 2878 "<stdout>"
|
2008-05-22 06:41:13 -04:00
|
|
|
#define YY_NO_INPUT 1
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 184 "./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
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 2887 "<stdout>"
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 2889 "<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
|
|
|
|
|
|
2019-08-14 05:40:35 -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. */
|
|
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
int yylex_destroy ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
int yyget_debug ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
void yyset_debug ( int debug_flag );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
YY_EXTRA_TYPE yyget_extra ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
void yyset_extra ( YY_EXTRA_TYPE user_defined );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
FILE *yyget_in ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
void yyset_in ( FILE * _in_str );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
FILE *yyget_out ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
void yyset_out ( FILE * _out_str );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
int yyget_leng ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
char *yyget_text ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
int yyget_lineno ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-08-14 05:40:35 -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
|
2019-08-14 05:40:35 -04:00
|
|
|
extern "C" int yywrap ( void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2019-08-14 05:40:35 -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
|
2019-08-14 05:40:35 -04:00
|
|
|
static void yy_flex_strncpy ( char *, const char *, int );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef YY_NEED_STRLEN
|
2019-08-14 05:40:35 -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
|
2019-08-14 05:40:35 -04:00
|
|
|
static int yyinput ( void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2019-08-14 05:40:35 -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 =
|
2019-08-14 05:40:35 -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
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
yy_load_buffer_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
{
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 204 "./util/configlexer.lex"
|
2016-10-20 03:46:35 -04:00
|
|
|
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 3111 "<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
|
|
|
{
|
2019-08-14 05:40:35 -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];
|
2019-09-09 11:11:26 -04:00
|
|
|
if ( yy_current_state >= 2961 )
|
2019-08-14 05:40:35 -04:00
|
|
|
yy_c = yy_meta[yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2019-08-14 05:40:35 -04:00
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
++yy_cp;
|
|
|
|
|
}
|
2019-09-09 11:11:26 -04:00
|
|
|
while ( yy_base[yy_current_state] != 5768 );
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 205 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 207 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 210 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 211 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 212 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 213 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 214 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 215 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 216 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 217 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 218 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 219 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 220 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 221 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 222 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 223 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 224 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 225 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 226 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 227 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 228 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 229 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 230 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 231 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 232 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 233 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 234 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 235 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 236 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 237 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 238 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 239 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 240 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 241 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 242 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 243 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 244 "./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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 245 "./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
|
2019-09-25 10:50:30 -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 40:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 247 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 41:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 248 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_TLS_CIPHERS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 42:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 249 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_TLS_CIPHERSUITES) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 43:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 250 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_USE_SYSTEMD) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 44:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 251 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_DO_DAEMONIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 45:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 252 "./util/configlexer.lex"
|
2019-01-23 03:46:33 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 46:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 253 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 47:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 254 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 48:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 255 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 49:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 256 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_SO_RCVBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 50:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 257 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_SO_SNDBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 51:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 258 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_SO_REUSEPORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 52:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 259 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_IP_TRANSPARENT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 53:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 260 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_IP_FREEBIND) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 54:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 261 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_CHROOT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 55:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 262 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_USERNAME) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 56:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 263 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_DIRECTORY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 57:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 264 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_LOGFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 58:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 265 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_PIDFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 59:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 266 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_ROOT_HINTS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 60:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 267 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STREAM_WAIT_SIZE) }
|
2007-10-19 04:32:36 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 61:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 268 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
|
2007-10-19 10:02:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 62:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 269 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
|
2007-10-22 02:25:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 63:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 270 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
|
2007-10-31 03:46:30 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 64:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 271 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
|
2007-11-01 11:32:27 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 65:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 272 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
|
2007-11-19 10:32:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 66:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 273 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 67:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 274 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 68:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 275 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
|
2008-01-15 04:45:30 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 69:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 276 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
|
2008-02-05 05:23:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 70:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 277 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
|
2008-02-20 02:26:03 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 71:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 278 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
|
2008-02-27 04:39:27 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 72:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 279 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
|
2008-04-09 08:29:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 73:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 280 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
|
2008-04-09 11:07:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 74:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 281 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
|
2008-08-13 10:30:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 75:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 282 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
|
2008-08-21 10:58:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 76:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 283 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
|
2008-08-27 09:02:22 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 77:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 284 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
|
2008-08-29 10:46:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 78:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 285 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_DELAY_CLOSE) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 79:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 286 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 80:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 287 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 288 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 82:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 289 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_GLUE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 83:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 290 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 84:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 291 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 85:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 292 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 86:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 293 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 87:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 294 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 88:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 295 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_CAPS_WHITELIST) }
|
2008-09-16 05:08:45 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 89:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 296 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
|
2008-09-30 11:04:32 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 90:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 297 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 91:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 298 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 92:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 299 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_PREFETCH_KEY) }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 93:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 300 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_PREFETCH) }
|
2009-02-06 07:51:45 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 94:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 301 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_DENY_ANY) }
|
2009-03-18 10:02:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 95:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 302 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(0, VAR_STUB_ZONE) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 96:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 303 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_NAME) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 97:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 304 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_ADDR) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 98:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 305 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_HOST) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 99:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 306 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_PRIME) }
|
2009-04-14 06:10:11 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 100:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 307 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_FIRST) }
|
2009-07-20 10:22:29 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 101:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 308 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_NO_CACHE) }
|
2009-08-12 11:26:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 102:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 309 "./util/configlexer.lex"
|
2019-01-23 03:46:33 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 310 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 104:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 311 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(0, VAR_FORWARD_ZONE) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 105:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 312 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_ADDR) }
|
2009-09-25 04:54:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 106:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 313 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_HOST) }
|
2009-10-29 06:37:44 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 107:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 314 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_FIRST) }
|
2010-01-07 09:38:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 108:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 315 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_NO_CACHE) }
|
2010-01-13 08:33:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 109:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 316 "./util/configlexer.lex"
|
2019-01-23 03:46:33 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
|
2010-11-15 09:30:34 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 110:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 317 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
|
2010-11-18 03:49:15 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 111:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 318 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(0, VAR_AUTH_ZONE) }
|
2011-05-10 07:20:14 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 112:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 319 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(0, VAR_RPZ) }
|
2011-06-16 09:15:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 113:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 320 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_TAGS) }
|
2011-08-22 09:58:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 114:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 321 "./util/configlexer.lex"
|
2019-05-16 16:30:42 -04:00
|
|
|
{ YDVAR(1, VAR_RPZ_ACTION_OVERRIDE) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 322 "./util/configlexer.lex"
|
2019-05-16 16:30:42 -04:00
|
|
|
{ YDVAR(1, VAR_RPZ_CNAME_OVERRIDE) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 116:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 323 "./util/configlexer.lex"
|
2019-05-16 16:30:42 -04:00
|
|
|
{ YDVAR(1, VAR_RPZ_LOG) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 117:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 324 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_RPZ_LOG_NAME) }
|
2011-11-08 05:56:42 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 118:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 325 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_ZONEFILE) }
|
2012-03-01 08:16:40 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 119:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 326 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_MASTER) }
|
2012-03-01 08:16:40 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 120:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 327 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_URL) }
|
2012-04-10 05:16:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 121:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 328 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_ALLOW_NOTIFY) }
|
2012-04-10 05:16:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 122:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 329 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_FOR_DOWNSTREAM) }
|
2013-04-25 07:55:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 123:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 330 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_FOR_UPSTREAM) }
|
2013-11-05 21:48:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 124:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 331 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_FALLBACK_ENABLED) }
|
2014-01-24 06:43:38 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 125:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 332 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(0, VAR_VIEW) }
|
2014-01-28 09:35:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 126:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 333 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_VIEW_FIRST) }
|
2014-05-20 06:38:32 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 127:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 334 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 335 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
|
2014-07-31 03:15:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 129:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 336 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL) }
|
2014-07-31 03:15:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 130:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 337 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 131:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 338 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 132:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 339 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 133:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 340 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 134:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 341 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 135:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 342 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 136:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 343 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) }
|
2015-01-06 09:12:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 137:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 344 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) }
|
2015-02-02 03:46:22 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 138:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 345 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) }
|
2015-03-09 09:30:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 139:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 346 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) }
|
2015-03-19 05:50:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 140:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 347 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_HIDE_IDENTITY) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 348 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_HIDE_VERSION) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 349 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 350 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IDENTITY) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 351 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_VERSION) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 352 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_MODULE_CONF) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 353 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 354 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 148:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 355 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 149:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 356 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 150:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 357 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 151:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 358 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR) }
|
2015-04-16 10:18:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 152:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 359 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) }
|
2015-05-01 08:36:16 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 153:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 360 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) }
|
2015-05-29 10:51:36 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 154:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 361 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
|
2015-07-30 07:52:12 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 155:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 362 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
|
2015-11-30 11:10:26 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 156:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 363 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
|
2016-01-05 05:03:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 157:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 364 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_BOGUS_TTL) }
|
2016-01-05 05:03:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 158:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 365 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
|
2016-02-09 08:25:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 159:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 366 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
|
2016-03-15 05:35:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 160:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 367 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_AGGRESSIVE_NSEC) }
|
2016-04-21 05:49:02 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 161:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 368 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
|
2016-04-21 05:49:02 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 162:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 369 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_SERVE_EXPIRED) }
|
2016-05-24 08:17:42 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 163:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 370 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) }
|
2016-06-06 04:33:59 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 164:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 371 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) }
|
2016-06-06 06:00:25 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 165:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 372 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_FAKE_DSA) }
|
2016-06-06 09:47:24 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 166:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 373 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_FAKE_SHA1) }
|
2016-06-06 09:47:24 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 167:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 374 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
|
2016-07-04 10:49:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 168:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 375 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
|
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
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 376 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
|
2016-10-05 05:36:25 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 170:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 377 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
|
2016-10-05 05:36:25 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 171:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 378 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
|
2016-10-11 07:32:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 172:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 380 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
|
2016-10-24 08:43:20 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 173:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 381 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
|
2016-10-26 03:38:00 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 174:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 382 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_KEEP_MISSING) }
|
2016-11-03 04:51:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 175:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 383 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
|
2016-11-04 08:07:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 176:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 384 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_USE_SYSLOG) }
|
2016-11-04 08:07:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 177:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 385 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_IDENTITY) }
|
2017-01-03 08:43:29 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 178:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 386 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
|
2017-01-05 06:39:54 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 179:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 387 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_QUERIES) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 388 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_REPLIES) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 181:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 389 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_TAG_QUERYREPLY) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 182:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 390 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_LOCAL_ACTIONS) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 183:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 391 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_SERVFAIL) }
|
2017-02-23 07:05:05 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 184:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 392 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(2, VAR_LOCAL_ZONE) }
|
2017-02-23 07:05:05 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 185:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 393 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 394 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
|
2017-03-07 09:58:51 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 187:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 395 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
|
2017-03-07 09:58:51 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 188:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 396 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_INSECURE_LAN_ZONES) }
|
2017-03-09 08:18:08 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 189:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 397 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
|
2017-03-16 05:17:58 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 190:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 398 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 399 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 192:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 400 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_SHM_ENABLE) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 193:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 401 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_SHM_KEY) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 194:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 402 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(0, VAR_REMOTE_CONTROL) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 195:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 403 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_ENABLE) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 196:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 404 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 197:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 405 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_PORT) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 198:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 406 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 199:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 407 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 200:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 408 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
|
2017-04-06 09:13:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 201:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 409 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
|
2017-04-26 08:58:13 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 202:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 410 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 411 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 204:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 412 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(0, VAR_PYTHON) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 205:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 413 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 206:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 414 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 207:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 415 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 208:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 416 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) }
|
2017-06-08 10:44:55 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 209:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 417 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
|
2017-07-17 04:21:19 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 210:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 418 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNS64_PREFIX) }
|
2017-07-17 04:21:19 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 211:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 419 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
|
2017-08-08 05:09:45 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 212:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 420 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNS64_IGNORE_AAAA) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 421 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DEFINE_TAG) }
|
2017-08-31 07:59:38 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 214:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 422 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(2, VAR_LOCAL_ZONE_TAG) }
|
2017-09-18 04:42:24 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 215:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 423 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) }
|
2017-09-18 04:55:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 216:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 424 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) }
|
2017-09-18 04:55:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 217:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 425 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) }
|
2017-10-17 03:34:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 218:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 426 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 427 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 220:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 428 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(0, VAR_DNSTAP) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 221:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 429 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 222:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 430 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 223:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 431 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 224:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 432 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 225:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 433 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 226:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 434 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_VERSION) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 227:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 435 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{
|
2019-06-03 09:46:39 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 228:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 437 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{
|
2019-06-03 09:46:39 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 229:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 439 "./util/configlexer.lex"
|
2019-05-16 16:30:42 -04:00
|
|
|
{
|
2019-06-03 09:46:39 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 230:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 441 "./util/configlexer.lex"
|
2019-05-16 16:30:42 -04:00
|
|
|
{
|
2019-06-03 09:46:39 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
|
2018-01-30 05:35:20 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 231:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 443 "./util/configlexer.lex"
|
2019-05-16 16:30:42 -04:00
|
|
|
{
|
2019-06-03 09:46:39 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
|
2018-02-08 08:16:36 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 232:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 445 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
|
2018-02-13 05:35:09 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 233:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 447 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) }
|
2018-02-13 05:35:09 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 234:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 448 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 449 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT) }
|
2018-03-15 08:33:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 236:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 450 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) }
|
2018-03-15 08:33:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 237:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 451 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
|
2018-03-15 10:23:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 238:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 452 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) }
|
2018-03-15 10:23:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 239:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 453 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
|
2018-04-09 09:27:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 240:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 454 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
|
2018-04-09 09:27:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 241:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 455 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
|
2018-04-17 09:23:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 242:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 456 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) }
|
2018-04-24 05:03:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 243:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 457 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
|
2018-05-15 03:48:12 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 244:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 458 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_LOW_RTT) }
|
2018-05-28 10:15:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 245:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 459 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_NUM) }
|
2018-06-01 04:02:04 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 246:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 460 "./util/configlexer.lex"
|
2019-05-16 16:30:42 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
|
2018-06-12 04:45:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 247:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 461 "./util/configlexer.lex"
|
2019-05-16 16:30:42 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
|
2018-06-29 08:58:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 248:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 462 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
|
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
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 463 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(2, VAR_RESPONSE_IP_TAG) }
|
2018-07-31 03:23:58 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 250:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 464 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(2, VAR_RESPONSE_IP) }
|
2018-07-31 03:23:58 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 251:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 465 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(2, VAR_RESPONSE_IP_DATA) }
|
2018-08-07 08:02:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 252:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 466 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(0, VAR_DNSCRYPT) }
|
2018-08-09 08:44:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 253:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 467 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_ENABLE) }
|
2018-08-09 08:44:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 254:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 468 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PORT) }
|
2018-08-17 11:22:05 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 255:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 469 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) }
|
2018-08-21 03:10:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 256:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 470 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) }
|
2018-08-28 10:21:56 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 257:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 471 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) }
|
2018-08-28 10:21:56 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 258:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 472 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) }
|
2018-10-08 12:03:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 259:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 473 "./util/configlexer.lex"
|
2019-05-16 16:30:42 -04:00
|
|
|
{
|
2019-06-03 09:46:39 -04:00
|
|
|
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) }
|
2018-10-08 12:03:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 260:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 475 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) }
|
2018-10-22 10:54:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 261:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 477 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) }
|
2018-10-22 10:54:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 262:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 478 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) }
|
2018-10-25 04:07:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 263:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 479 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_ENABLED) }
|
2018-10-25 04:53:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 264:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 480 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) }
|
2018-10-25 04:53:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 265:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 481 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_HOOK) }
|
2018-10-25 05:21:41 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 266:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 482 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_MAX_TTL) }
|
2018-11-30 04:45:37 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 267:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 483 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_WHITELIST) }
|
2019-01-21 11:20:14 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 268:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 484 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_STRICT) }
|
2019-01-23 03:46:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 269:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 485 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(0, VAR_CACHEDB) }
|
2019-01-23 03:46:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 270:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 486 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_BACKEND) }
|
2019-01-23 04:35:52 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 271:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 487 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_SECRETSEED) }
|
2018-07-31 03:23:58 -04:00
|
|
|
YY_BREAK
|
2019-01-23 04:35:52 -05:00
|
|
|
case 272:
|
2018-07-31 03:23:58 -04:00
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 488 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_REDISHOST) }
|
2019-05-02 07:43:30 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 273:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 489 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_REDISPORT) }
|
2019-05-02 07:43:30 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 274:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 490 "./util/configlexer.lex"
|
2019-06-03 09:46:39 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) }
|
2019-05-02 07:43:30 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 275:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 491 "./util/configlexer.lex"
|
2019-09-09 11:11:26 -04:00
|
|
|
{ YDVAR(0, VAR_IPSET) }
|
2019-05-16 16:30:42 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 276:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 492 "./util/configlexer.lex"
|
2019-09-09 11:11:26 -04:00
|
|
|
{ YDVAR(1, VAR_IPSET_NAME_V4) }
|
2019-06-03 09:46:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 277:
|
|
|
|
|
YY_RULE_SETUP
|
2019-09-25 10:50:30 -04:00
|
|
|
#line 493 "./util/configlexer.lex"
|
2019-09-09 11:11:26 -04:00
|
|
|
{ YDVAR(1, VAR_IPSET_NAME_V6) }
|
2019-05-16 16:30:42 -04:00
|
|
|
YY_BREAK
|
2019-06-03 09:46:39 -04:00
|
|
|
case 278:
|
2019-05-16 16:30:42 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 494 "./util/configlexer.lex"
|
2019-09-09 11:11:26 -04:00
|
|
|
{ YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 279:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 495 "./util/configlexer.lex"
|
2019-09-09 11:11:26 -04:00
|
|
|
{ YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 280:
|
|
|
|
|
/* rule 280 can match eol */
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 496 "./util/configlexer.lex"
|
2019-09-09 11:11:26 -04:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++; }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
/* Quoted strings. Strip leading and ending quotes */
|
|
|
|
|
case 281:
|
|
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 499 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(quotedstring):
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 500 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 282:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 505 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 283:
|
|
|
|
|
/* rule 283 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 506 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 284:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 508 "./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 */
|
2019-09-09 11:11:26 -04:00
|
|
|
case 285:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 520 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(singlequotedstr):
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 521 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 286:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 526 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 287:
|
|
|
|
|
/* rule 287 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 527 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 288:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 529 "./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 */
|
2019-09-09 11:11:26 -04:00
|
|
|
case 289:
|
2007-11-28 03:10:45 -05:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 541 "./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):
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 543 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 290:
|
2018-10-25 05:21:41 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 547 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ LEXOUT(("ISP ")); /* ignore */ }
|
2018-11-30 04:45:37 -05:00
|
|
|
YY_BREAK
|
2019-09-09 11:11:26 -04:00
|
|
|
case 291:
|
|
|
|
|
/* rule 291 can match eol */
|
2018-11-30 04:45:37 -05:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 548 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++;}
|
2019-01-21 11:20:14 -05:00
|
|
|
YY_BREAK
|
2019-09-09 11:11:26 -04:00
|
|
|
case 292:
|
2019-01-21 11:20:14 -05:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 549 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
|
|
|
|
|
YY_BREAK
|
2019-09-09 11:11:26 -04:00
|
|
|
case 293:
|
2019-01-23 04:35:52 -05:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 550 "./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):
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 555 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 294:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 559 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 295:
|
|
|
|
|
/* rule 295 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 560 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 296:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 562 "./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):
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 568 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 297:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 579 "./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
|
2019-09-09 11:11:26 -04:00
|
|
|
case 298:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 583 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("unknown keyword '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2019-09-09 11:11:26 -04:00
|
|
|
case 299:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 587 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("stray '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2019-09-09 11:11:26 -04:00
|
|
|
case 300:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 591 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
ECHO;
|
|
|
|
|
YY_BREAK
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 4775 "<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
|
|
|
|
2019-08-14 05:40:35 -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);
|
2019-08-14 05:40:35 -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. */
|
2019-08-14 05:40:35 -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. */
|
2019-08-14 05:40:35 -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;
|
2019-08-14 05:40:35 -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;
|
|
|
|
|
|
2019-08-14 05:40:35 -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);
|
2019-08-14 05:40:35 -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()" );
|
2019-08-14 05:40:35 -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];
|
2019-09-09 11:11:26 -04:00
|
|
|
if ( yy_current_state >= 2961 )
|
2019-08-14 05:40:35 -04:00
|
|
|
yy_c = yy_meta[yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2019-08-14 05:40:35 -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];
|
2019-09-09 11:11:26 -04:00
|
|
|
if ( yy_current_state >= 2961 )
|
2019-08-14 05:40:35 -04:00
|
|
|
yy_c = yy_meta[yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2019-08-14 05:40:35 -04:00
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
|
2019-09-09 11:11:26 -04:00
|
|
|
yy_is_jam = (yy_current_state == 2960);
|
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 */
|
2019-08-14 05:40:35 -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. */
|
2019-08-14 05:40:35 -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:
|
|
|
|
|
{
|
2019-08-14 05:40:35 -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 =
|
2019-08-14 05:40:35 -04:00
|
|
|
yy_create_buffer( yyin, YY_BUF_SIZE );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2019-08-14 05:40:35 -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;
|
2019-08-14 05:40:35 -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
|
|
|
|
2019-08-14 05:40:35 -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.
|
|
|
|
|
*/
|
2019-08-14 05:40:35 -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;
|
|
|
|
|
|
2019-08-14 05:40:35 -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 )
|
2019-08-14 05:40:35 -04:00
|
|
|
yyfree( (void *) b->yy_ch_buf );
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2019-08-14 05:40:35 -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;
|
|
|
|
|
|
2019-08-14 05:40:35 -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 )
|
2019-08-14 05:40:35 -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. */
|
2019-08-14 05:40:35 -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) {
|
2019-08-14 05:40:35 -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)
|
|
|
|
|
{
|
2019-08-14 05:40:35 -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()" );
|
2019-08-14 05:40:35 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
|
2019-08-14 05:40:35 -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
|
|
|
|
|
*
|
2019-08-14 05:40:35 -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
|
|
|
|
2019-08-14 05:40:35 -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;
|
|
|
|
|
|
2019-08-14 05:40:35 -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.
|
|
|
|
|
*/
|
2019-08-14 05:40:35 -04:00
|
|
|
YY_BUFFER_STATE yy_scan_string (const char * yystr )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
|
2019-08-14 05:40:35 -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.
|
|
|
|
|
*/
|
2019-08-14 05:40:35 -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;
|
2019-01-25 08:00:09 -05: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. */
|
2019-01-25 08:00:09 -05:00
|
|
|
n = (yy_size_t) (_yybytes_len + 2);
|
2019-08-14 05:40:35 -04:00
|
|
|
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
|
|
|
|
2019-08-14 05:40:35 -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
|
|
|
|
|
|
2019-08-14 05:40:35 -04:00
|
|
|
static void yynoreturn yy_fatal_error (const char* msg )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2019-08-14 05:40:35 -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. */ \
|
2019-08-14 05:40:35 -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)
|
|
|
|
|
{
|
2019-08-14 05:40:35 -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){
|
2019-08-14 05:40:35 -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
|
2019-08-14 05:40:35 -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
|
2019-08-14 05:40:35 -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
|
|
|
|
2020-01-15 17:44:10 -05:00
|
|
|
#line 591 "./util/configlexer.lex"
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-08-30 05:02:29 -04:00
|
|
|
|