2009-03-24 08:47:56 -04:00
|
|
|
#include "config.h"
|
2007-10-18 18:49:08 -04:00
|
|
|
#include "util/configyyrename.h"
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#line 3 "<stdout>"
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04: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
|
|
|
|
|
#define YY_FLEX_MINOR_VERSION 5
|
2014-11-14 10:59:30 -05:00
|
|
|
#define YY_FLEX_SUBMINOR_VERSION 37
|
2008-06-09 05:34:40 -04:00
|
|
|
#if YY_FLEX_SUBMINOR_VERSION > 0
|
|
|
|
|
#define FLEX_BETA
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* First, we deal with platform-specific or compiler-specific issues. */
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* begin standard C headers. */
|
2007-10-18 18:49:08 -04:00
|
|
|
#include <stdio.h>
|
2008-06-09 05:34:40 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdlib.h>
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* end standard C headers. */
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* flex integer type definitions */
|
|
|
|
|
|
|
|
|
|
#ifndef FLEXINT_H
|
|
|
|
|
#define FLEXINT_H
|
|
|
|
|
|
|
|
|
|
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
|
|
|
|
|
|
2009-03-24 08:53:25 -04:00
|
|
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
2008-06-09 05:34:40 -04: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
|
2008-02-29 05:59:26 -05:00
|
|
|
#endif
|
2007-10-19 04:37:27 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#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;
|
2008-02-29 05:23:52 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* Limits of integral types. */
|
|
|
|
|
#ifndef INT8_MIN
|
|
|
|
|
#define INT8_MIN (-128)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef INT16_MIN
|
|
|
|
|
#define INT16_MIN (-32767-1)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef INT32_MIN
|
|
|
|
|
#define INT32_MIN (-2147483647-1)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef INT8_MAX
|
|
|
|
|
#define INT8_MAX (127)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef INT16_MAX
|
|
|
|
|
#define INT16_MAX (32767)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef INT32_MAX
|
|
|
|
|
#define INT32_MAX (2147483647)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef UINT8_MAX
|
|
|
|
|
#define UINT8_MAX (255U)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef UINT16_MAX
|
|
|
|
|
#define UINT16_MAX (65535U)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef UINT32_MAX
|
|
|
|
|
#define UINT32_MAX (4294967295U)
|
|
|
|
|
#endif
|
2008-02-29 05:23:52 -05:00
|
|
|
|
2013-04-15 03:57:08 -04:00
|
|
|
#endif /* ! C99 */
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif /* ! FLEXINT_H */
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifdef __cplusplus
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* The "const" storage-class-modifier is valid. */
|
|
|
|
|
#define YY_USE_CONST
|
|
|
|
|
|
|
|
|
|
#else /* ! __cplusplus */
|
|
|
|
|
|
2009-03-24 08:53:25 -04:00
|
|
|
/* C99 requires __STDC__ to be defined as 1. */
|
|
|
|
|
#if defined (__STDC__)
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#define YY_USE_CONST
|
|
|
|
|
|
2009-03-24 08:53:25 -04:00
|
|
|
#endif /* defined (__STDC__) */
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif /* ! __cplusplus */
|
|
|
|
|
|
|
|
|
|
#ifdef YY_USE_CONST
|
|
|
|
|
#define yyconst const
|
|
|
|
|
#else
|
|
|
|
|
#define yyconst
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Returned upon end-of-file. */
|
|
|
|
|
#define YY_NULL 0
|
|
|
|
|
|
|
|
|
|
/* Promotes a possibly negative, possibly signed char to an unsigned
|
|
|
|
|
* integer for use as an array index. If the signed char is negative,
|
|
|
|
|
* we want to instead treat it as an 8-bit unsigned char, hence the
|
|
|
|
|
* double cast.
|
|
|
|
|
*/
|
|
|
|
|
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
|
|
|
|
|
|
|
|
|
|
/* Enter a start condition. This macro really ought to take a parameter,
|
|
|
|
|
* but we do it the disgusting crufty way forced on us by the ()-less
|
|
|
|
|
* definition of BEGIN.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04: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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04: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". */
|
2008-06-09 05:34:40 -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. */
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_BUF_SIZE
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_BUF_SIZE 16384
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* The state buf must be large enough to hold one state per character in the main buffer.
|
|
|
|
|
*/
|
|
|
|
|
#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
|
|
|
|
|
|
|
|
|
|
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
|
|
|
|
|
#define YY_TYPEDEF_YY_BUFFER_STATE
|
2007-10-18 18:49:08 -04:00
|
|
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2013-11-12 05:08:54 -05:00
|
|
|
#ifndef YY_TYPEDEF_YY_SIZE_T
|
|
|
|
|
#define YY_TYPEDEF_YY_SIZE_T
|
|
|
|
|
typedef size_t yy_size_t;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
extern yy_size_t 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
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_LESS_LINENO(n)
|
|
|
|
|
|
|
|
|
|
/* 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. */ \
|
2008-06-09 05:34:40 -04:00
|
|
|
int yyless_macro_arg = (n); \
|
|
|
|
|
YY_LESS_LINENO(yyless_macro_arg);\
|
|
|
|
|
*yy_cp = (yy_hold_char); \
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RESTORE_YY_MORE_OFFSET \
|
2008-06-09 05:34:40 -04: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 )
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#define unput(c) yyunput( c, (yytext_ptr) )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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.
|
|
|
|
|
*/
|
|
|
|
|
yy_size_t yy_buf_size;
|
|
|
|
|
|
|
|
|
|
/* Number of characters read into yy_ch_buf, not including EOB
|
|
|
|
|
* characters.
|
|
|
|
|
*/
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t 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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
int yy_bs_lineno; /**< The line count. */
|
|
|
|
|
int yy_bs_column; /**< The column count. */
|
|
|
|
|
|
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;
|
2008-06-09 05:34:40 -04: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
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
};
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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. */
|
|
|
|
|
static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< 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".
|
2008-06-09 05:34:40 -04:00
|
|
|
*
|
|
|
|
|
* Returns the top of the stack, or NULL.
|
2007-10-18 18:49:08 -04:00
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
|
|
|
|
|
? (yy_buffer_stack)[(yy_buffer_stack_top)] \
|
|
|
|
|
: NULL)
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* 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;
|
2013-11-12 05:08:54 -05:00
|
|
|
static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */
|
|
|
|
|
yy_size_t yyleng;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Points to current character in buffer. */
|
|
|
|
|
static char *yy_c_buf_p = (char *) 0;
|
2008-06-09 05:34:40 -04: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;
|
|
|
|
|
|
2008-06-09 05:34:40 -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 );
|
|
|
|
|
|
|
|
|
|
static void yyensure_buffer_stack (void );
|
|
|
|
|
static void yy_load_buffer_state (void );
|
|
|
|
|
static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
|
2007-10-19 04:32:36 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
|
|
|
|
|
YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
|
2013-11-12 05:08:54 -05:00
|
|
|
YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len );
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -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) \
|
|
|
|
|
{ \
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( ! YY_CURRENT_BUFFER ){ \
|
|
|
|
|
yyensure_buffer_stack (); \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
|
|
|
|
yy_create_buffer(yyin,YY_BUF_SIZE ); \
|
|
|
|
|
} \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
|
|
|
{ \
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( ! YY_CURRENT_BUFFER ){\
|
|
|
|
|
yyensure_buffer_stack (); \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
|
|
|
|
yy_create_buffer(yyin,YY_BUF_SIZE ); \
|
|
|
|
|
} \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
|
|
|
|
|
|
|
|
|
|
/* Begin user sect3 */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
typedef unsigned char YY_CHAR;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
typedef int yy_state_type;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
|
|
|
|
extern int yylineno;
|
|
|
|
|
|
|
|
|
|
int yylineno = 1;
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
extern char *yytext;
|
|
|
|
|
#define yytext_ptr yytext
|
|
|
|
|
|
2008-06-09 05:34:40 -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 yy_fatal_error (yyconst 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 \
|
2008-06-09 05:34:40 -04:00
|
|
|
(yytext_ptr) = yy_bp; \
|
|
|
|
|
(yytext_ptr) -= (yy_more_len); \
|
|
|
|
|
yyleng = (size_t) (yy_cp - (yytext_ptr)); \
|
|
|
|
|
(yy_hold_char) = *yy_cp; \
|
2007-10-18 18:49:08 -04:00
|
|
|
*yy_cp = '\0'; \
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
#define YY_NUM_RULES 164
|
|
|
|
|
#define YY_END_OF_BUFFER 165
|
2008-06-09 05:34:40 -04: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;
|
|
|
|
|
};
|
2015-02-02 03:46:22 -05:00
|
|
|
static yyconst flex_int16_t yy_accept[1628] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2015-02-02 03:46:22 -05:00
|
|
|
1, 1, 146, 146, 150, 150, 154, 154, 158, 158,
|
|
|
|
|
1, 1, 165, 162, 1, 144, 144, 163, 2, 163,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 146,
|
|
|
|
|
147, 147, 148, 163, 150, 151, 151, 152, 163, 157,
|
|
|
|
|
154, 155, 155, 156, 163, 158, 159, 159, 160, 163,
|
|
|
|
|
161, 145, 2, 149, 163, 161, 162, 0, 1, 2,
|
|
|
|
|
2, 2, 2, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 146, 0, 150, 0, 157, 0, 154, 158,
|
|
|
|
|
0, 161, 0, 2, 2, 161, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 161, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 161, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 66, 162, 162, 162, 162,
|
|
|
|
|
162, 6, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 161, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 161, 162, 162, 162, 162, 29, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 131, 162, 12, 13, 162,
|
|
|
|
|
15, 14, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 124,
|
|
|
|
|
162, 162, 162, 162, 162, 3, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 161, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
153, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 32, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 33, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 81, 153, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 80, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
64, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 20, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
30, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 31, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 22, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 162, 26, 162, 27, 162,
|
|
|
|
|
162, 162, 67, 162, 68, 162, 65, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 5, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 83, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 23,
|
|
|
|
|
162, 162, 162, 162, 108, 107, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 34, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 70, 69, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 104, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 51, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 55, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 106, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 4, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 101, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 117, 162, 102, 162, 129,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
21, 162, 162, 162, 162, 72, 162, 73, 71, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 79, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 103, 162, 162, 162,
|
|
|
|
|
162, 128, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 63, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 28, 162, 162, 17, 162, 162, 162, 16,
|
|
|
|
|
162, 88, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 41, 42, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 132, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 74, 162,
|
|
|
|
|
162, 162, 162, 162, 78, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
82, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 123, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 92,
|
|
|
|
|
|
|
|
|
|
162, 96, 162, 162, 162, 162, 77, 162, 162, 115,
|
|
|
|
|
162, 162, 162, 162, 130, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 137, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 95, 162, 162, 162, 162, 162, 43,
|
|
|
|
|
44, 162, 50, 97, 162, 109, 105, 162, 162, 37,
|
|
|
|
|
162, 99, 162, 162, 162, 162, 162, 7, 162, 62,
|
|
|
|
|
114, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 84, 136, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 125, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 98, 162, 36, 38, 162, 162, 162, 162, 162,
|
|
|
|
|
61, 162, 162, 162, 162, 119, 18, 19, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 59, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 121, 118, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 35, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 11, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 10, 162, 162, 39, 162, 127, 120, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 91,
|
|
|
|
|
90, 162, 122, 116, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 45, 162, 126, 162, 162, 162, 162, 40, 162,
|
|
|
|
|
162, 162, 85, 87, 110, 162, 162, 162, 89, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 133, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 24, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 135, 162, 162,
|
|
|
|
|
113, 162, 162, 162, 162, 162, 162, 48, 162, 25,
|
|
|
|
|
162, 9, 162, 162, 111, 52, 162, 162, 162, 94,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 134, 75, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 54, 58, 53, 162, 46, 162, 8, 162, 162,
|
|
|
|
|
93, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
57, 162, 47, 162, 112, 162, 162, 86, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 76, 56, 49, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 60, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 100, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
|
|
|
|
|
162, 140, 162, 162, 162, 162, 162, 162, 162, 162,
|
|
|
|
|
162, 162, 162, 162, 162, 138, 162, 141, 142, 162,
|
|
|
|
|
162, 162, 162, 162, 139, 143, 0
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
static yyconst flex_int32_t 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,
|
|
|
|
|
1, 1, 1, 1, 8, 1, 1, 1, 1, 1,
|
|
|
|
|
9, 10, 1, 11, 1, 1, 1, 12, 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,
|
2007-11-28 03:10:45 -05:00
|
|
|
1, 13, 1, 1, 1, 1, 14, 15, 16, 17,
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-10-06 05:28:50 -04:00
|
|
|
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
|
|
|
|
|
28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
|
|
|
|
|
38, 39, 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
|
|
|
|
|
} ;
|
|
|
|
|
|
2008-10-06 05:28:50 -04:00
|
|
|
static yyconst flex_int32_t yy_meta[40] =
|
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,
|
|
|
|
|
1, 7, 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,
|
2008-10-06 05:28:50 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
static yyconst flex_int16_t yy_base[1642] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2008-10-06 05:28:50 -04:00
|
|
|
0, 0, 37, 40, 44, 51, 63, 75, 56, 68,
|
2015-02-02 03:46:22 -05:00
|
|
|
87, 108, 2422, 2151, 50, 3237, 3237, 3237, 129, 94,
|
2014-07-31 03:15:33 -04:00
|
|
|
70, 104, 130, 90, 92, 115, 127, 95, 84, 111,
|
2015-01-06 09:12:59 -05:00
|
|
|
137, 148, 50, 150, 155, 157, 163, 171, 178, 1935,
|
2015-02-02 03:46:22 -05:00
|
|
|
3237, 3237, 3237, 70, 1925, 3237, 3237, 3237, 42, 1776,
|
|
|
|
|
1709, 3237, 3237, 3237, 195, 1559, 3237, 3237, 3237, 141,
|
|
|
|
|
1156, 3237, 202, 3237, 206, 122, 1017, 212, 120, 0,
|
2014-07-31 03:15:33 -04:00
|
|
|
223, 0, 0, 103, 147, 154, 158, 192, 199, 207,
|
|
|
|
|
208, 205, 209, 221, 218, 220, 224, 225, 229, 230,
|
|
|
|
|
231, 238, 251, 236, 247, 250, 237, 248, 256, 259,
|
|
|
|
|
|
|
|
|
|
167, 263, 254, 249, 264, 265, 271, 273, 274, 125,
|
|
|
|
|
275, 277, 284, 278, 281, 285, 288, 286, 289, 292,
|
2014-08-05 03:57:52 -04:00
|
|
|
296, 298, 987, 308, 860, 315, 829, 326, 692, 342,
|
2014-07-31 03:15:33 -04:00
|
|
|
319, 301, 330, 334, 0, 327, 331, 337, 314, 305,
|
2014-08-05 03:57:52 -04:00
|
|
|
333, 335, 343, 340, 346, 349, 370, 350, 339, 352,
|
|
|
|
|
49, 356, 354, 353, 361, 363, 362, 366, 364, 368,
|
|
|
|
|
373, 377, 381, 392, 399, 386, 383, 401, 397, 405,
|
|
|
|
|
408, 406, 182, 407, 409, 410, 385, 411, 414, 412,
|
|
|
|
|
416, 418, 424, 420, 421, 422, 430, 428, 431, 441,
|
|
|
|
|
444, 450, 433, 446, 448, 449, 456, 454, 453, 455,
|
|
|
|
|
|
|
|
|
|
461, 460, 463, 464, 474, 475, 477, 470, 472, 479,
|
|
|
|
|
480, 481, 488, 489, 491, 493, 499, 495, 496, 497,
|
|
|
|
|
500, 501, 504, 505, 507, 511, 517, 512, 508, 521,
|
|
|
|
|
510, 516, 523, 534, 527, 538, 532, 533, 542, 540,
|
|
|
|
|
545, 543, 546, 547, 558, 554, 555, 559, 556, 557,
|
|
|
|
|
563, 571, 575, 565, 568, 569, 577, 579, 581, 599,
|
|
|
|
|
585, 583, 587, 590, 589, 596, 610, 597, 606, 607,
|
|
|
|
|
624, 603, 612, 625, 627, 628, 632, 631, 634, 636,
|
|
|
|
|
635, 637, 638, 640, 641, 644, 645, 656, 659, 648,
|
|
|
|
|
665, 662, 667, 664, 670, 593, 677, 673, 675, 674,
|
|
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
676, 646, 682, 678, 688, 3237, 690, 679, 685, 692,
|
|
|
|
|
695, 3237, 696, 697, 698, 703, 702, 709, 705, 706,
|
2014-08-05 03:57:52 -04:00
|
|
|
711, 714, 715, 719, 713, 720, 740, 722, 721, 731,
|
|
|
|
|
735, 725, 733, 727, 743, 747, 749, 750, 751, 753,
|
|
|
|
|
754, 755, 757, 758, 763, 774, 760, 768, 771, 778,
|
|
|
|
|
779, 780, 782, 781, 787, 783, 794, 788, 798, 804,
|
|
|
|
|
800, 806, 808, 814, 810, 811, 813, 820, 818, 819,
|
|
|
|
|
812, 826, 823, 825, 830, 834, 827, 841, 837, 840,
|
|
|
|
|
844, 847, 849, 850, 851, 853, 859, 857, 858, 866,
|
|
|
|
|
868, 856, 864, 871, 872, 877, 884, 885, 881, 886,
|
|
|
|
|
|
|
|
|
|
892, 893, 888, 894, 897, 898, 899, 900, 901, 902,
|
|
|
|
|
906, 908, 909, 917, 903, 913, 919, 925, 927, 928,
|
|
|
|
|
910, 930, 931, 934, 933, 937, 941, 935, 945, 947,
|
2015-02-02 03:46:22 -05:00
|
|
|
948, 949, 955, 957, 950, 959, 3237, 969, 963, 965,
|
|
|
|
|
966, 970, 972, 951, 991, 3237, 973, 3237, 3237, 975,
|
|
|
|
|
3237, 3237, 974, 979, 982, 994, 1014, 993, 981, 980,
|
2014-08-05 03:57:52 -04:00
|
|
|
1001, 1007, 995, 1008, 997, 1019, 1022, 1023, 1011, 1015,
|
|
|
|
|
1027, 1029, 1024, 1036, 1037, 1041, 1043, 1049, 1045, 1046,
|
2015-02-02 03:46:22 -05:00
|
|
|
1047, 1050, 1051, 1056, 1053, 1063, 1057, 1064, 1066, 3237,
|
|
|
|
|
1067, 1068, 1071, 1073, 1075, 3237, 1074, 1076, 1077, 1079,
|
2014-08-05 03:57:52 -04:00
|
|
|
|
|
|
|
|
1080, 1083, 1084, 1087, 1089, 1090, 1092, 1094, 1100, 1096,
|
|
|
|
|
1097, 1110, 1117, 1114, 1104, 1113, 1115, 1119, 1121, 1129,
|
|
|
|
|
1127, 1126, 1128, 1136, 1132, 1134, 1138, 1135, 1139, 1142,
|
|
|
|
|
1145, 1146, 1170, 1147, 1148, 1149, 1153, 1154, 1157, 1158,
|
|
|
|
|
1162, 1165, 1177, 1178, 1176, 1164, 1184, 1187, 1194, 1195,
|
2015-01-06 09:12:59 -05:00
|
|
|
1197, 1199, 1155, 1204, 1206, 1200, 1209, 1188, 1215, 1212,
|
2015-02-02 03:46:22 -05:00
|
|
|
3237, 1222, 1224, 1210, 1218, 1220, 1219, 1226, 1228, 1232,
|
|
|
|
|
1230, 1234, 1233, 1241, 3237, 1239, 1243, 1240, 1244, 1246,
|
|
|
|
|
1252, 1245, 1259, 1267, 3237, 1269, 1270, 1253, 1263, 1265,
|
2015-01-06 09:12:59 -05:00
|
|
|
1272, 1266, 1276, 1277, 1273, 1280, 1283, 1291, 1284, 1286,
|
|
|
|
|
|
|
|
|
|
1292, 1288, 1294, 1297, 1298, 1300, 1302, 1301, 1309, 1299,
|
|
|
|
|
1303, 1321, 1323, 1314, 1325, 1308, 1320, 1326, 1332, 1322,
|
2015-02-02 03:46:22 -05:00
|
|
|
1330, 1331, 1333, 3237, 239, 1335, 1336, 1337, 1346, 1347,
|
2015-01-06 09:12:59 -05:00
|
|
|
1343, 1345, 1352, 1355, 1353, 1344, 1354, 1356, 1362, 1364,
|
|
|
|
|
1365, 1367, 1372, 1374, 1370, 1376, 1378, 1380, 1383, 1384,
|
|
|
|
|
1385, 1386, 1388, 1393, 1394, 1395, 1396, 1400, 1399, 1401,
|
2015-02-02 03:46:22 -05:00
|
|
|
1402, 1408, 1406, 1405, 1415, 3237, 1428, 1413, 1409, 1416,
|
2015-01-06 09:12:59 -05:00
|
|
|
1426, 1434, 1419, 1430, 1432, 1440, 1444, 1437, 1446, 1447,
|
|
|
|
|
1449, 1450, 1439, 1452, 1459, 1461, 1457, 1460, 1463, 1465,
|
2015-02-02 03:46:22 -05:00
|
|
|
3237, 1467, 1468, 1466, 1473, 1469, 1474, 1475, 1478, 1480,
|
2015-01-06 09:12:59 -05:00
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
1486, 1491, 1493, 3237, 1494, 1490, 1498, 1500, 1501, 1503,
|
2015-01-06 09:12:59 -05:00
|
|
|
1504, 1508, 1510, 1511, 1512, 1513, 1514, 1519, 1522, 1524,
|
2015-02-02 03:46:22 -05:00
|
|
|
3237, 1532, 1534, 1533, 1540, 1536, 1523, 1539, 1526, 1541,
|
2015-01-06 09:12:59 -05:00
|
|
|
1543, 1549, 1547, 1548, 1546, 1551, 1553, 1554, 1556, 1555,
|
2015-02-02 03:46:22 -05:00
|
|
|
1557, 1558, 3237, 1570, 1562, 1575, 1576, 1572, 1582, 1581,
|
2015-01-06 09:12:59 -05:00
|
|
|
1584, 1587, 1588, 1589, 1591, 1590, 1592, 1593, 1598, 1594,
|
|
|
|
|
1601, 1602, 1599, 1600, 1603, 1604, 1611, 1619, 1620, 1621,
|
2015-02-02 03:46:22 -05:00
|
|
|
1622, 1625, 1631, 1637, 1623, 3237, 1634, 1636, 1638, 1639,
|
2015-01-06 09:12:59 -05:00
|
|
|
1645, 1647, 1642, 1648, 1649, 1650, 1651, 1659, 1653, 1655,
|
|
|
|
|
1660, 1662, 1656, 1663, 1665, 1676, 1666, 1664, 1673, 1678,
|
|
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
1682, 1689, 1685, 1691, 1683, 1697, 3237, 1693, 3237, 1694,
|
|
|
|
|
1700, 1709, 3237, 1706, 3237, 1708, 3237, 1710, 1714, 1712,
|
2015-01-06 09:12:59 -05:00
|
|
|
1696, 1716, 1717, 1718, 1720, 1723, 1724, 1726, 1728, 1731,
|
2015-02-02 03:46:22 -05:00
|
|
|
1732, 1729, 3237, 1736, 1738, 1740, 1737, 1742, 1744, 1745,
|
|
|
|
|
1750, 1758, 1746, 1761, 1749, 1760, 1765, 3237, 1767, 1768,
|
2015-01-06 09:12:59 -05:00
|
|
|
1770, 1772, 1775, 1779, 1780, 1777, 1783, 1773, 1784, 1794,
|
|
|
|
|
1795, 1790, 1797, 1799, 1800, 1801, 1802, 1804, 1806, 1809,
|
2015-02-02 03:46:22 -05:00
|
|
|
1810, 1812, 1814, 1813, 1818, 1820, 1817, 1821, 1822, 3237,
|
|
|
|
|
1823, 1826, 1835, 1829, 3237, 3237, 1840, 1846, 1848, 1834,
|
2015-01-06 09:12:59 -05:00
|
|
|
1842, 1836, 1852, 1854, 1862, 1859, 1856, 1860, 1865, 1866,
|
|
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
1867, 1868, 1869, 1871, 1872, 3237, 1879, 1875, 1882, 1878,
|
|
|
|
|
1881, 1894, 1885, 1888, 3237, 3237, 1895, 1896, 1899, 1900,
|
|
|
|
|
1907, 1904, 1905, 3237, 1906, 1908, 1910, 1911, 1913, 1921,
|
2015-01-06 09:12:59 -05:00
|
|
|
1914, 1924, 1928, 1922, 1929, 1931, 1938, 1932, 1934, 1940,
|
2015-02-02 03:46:22 -05:00
|
|
|
1948, 1942, 1950, 3237, 1951, 1954, 1955, 1956, 1957, 1958,
|
2015-01-06 09:12:59 -05:00
|
|
|
1959, 1963, 1962, 1965, 1964, 1973, 1980, 1969, 1976, 1977,
|
2015-02-02 03:46:22 -05:00
|
|
|
1982, 1978, 1987, 1989, 1996, 1999, 3237, 2005, 1983, 2008,
|
2015-01-06 09:12:59 -05:00
|
|
|
1992, 1994, 2006, 2009, 2010, 2011, 2012, 2013, 2014, 2016,
|
2015-02-02 03:46:22 -05:00
|
|
|
2018, 2019, 2021, 3237, 2025, 2027, 2028, 2030, 2036, 2038,
|
|
|
|
|
2039, 2042, 2046, 3237, 2047, 2053, 2049, 2050, 2055, 2051,
|
|
|
|
|
|
|
|
|
|
2058, 2059, 2060, 2061, 2063, 2065, 2072, 2074, 2066, 2084,
|
|
|
|
|
2070, 2076, 2092, 2086, 2094, 2100, 2088, 2096, 2102, 2098,
|
|
|
|
|
2099, 2101, 2104, 2111, 2105, 2112, 2109, 3237, 2115, 2117,
|
|
|
|
|
2120, 2122, 2125, 2126, 2124, 3237, 2131, 3237, 2123, 3237,
|
|
|
|
|
2134, 2138, 2139, 2140, 2142, 2143, 2141, 2147, 2153, 2144,
|
|
|
|
|
3237, 2154, 2150, 2156, 2161, 3237, 2164, 3237, 3237, 2157,
|
|
|
|
|
2172, 2169, 2173, 2175, 2179, 3237, 2176, 2180, 2181, 2184,
|
|
|
|
|
2185, 2187, 2189, 2190, 2188, 2191, 3237, 2192, 2194, 2195,
|
|
|
|
|
2198, 3237, 2204, 2209, 2205, 2210, 2212, 2216, 2217, 2219,
|
|
|
|
|
2220, 2228, 2224, 3237, 2225, 2227, 2233, 2226, 2230, 2234,
|
|
|
|
|
|
|
|
|
|
2243, 2235, 3237, 2245, 2246, 3237, 2248, 2249, 2254, 3237,
|
|
|
|
|
2253, 3237, 2256, 2257, 2255, 2258, 2264, 2265, 2276, 2260,
|
|
|
|
|
2273, 2266, 2268, 2283, 2278, 3237, 3237, 2284, 2288, 2289,
|
|
|
|
|
2285, 2291, 2294, 2296, 3237, 2292, 2298, 2300, 2301, 2302,
|
|
|
|
|
2304, 2305, 2311, 2308, 2313, 2314, 2306, 2315, 3237, 2318,
|
|
|
|
|
2320, 2324, 2325, 2326, 3237, 2330, 2333, 2327, 2335, 2331,
|
|
|
|
|
2350, 2353, 2355, 2343, 2358, 2360, 2346, 2362, 2364, 2348,
|
|
|
|
|
3237, 2366, 2369, 2370, 2373, 2374, 2375, 2338, 2377, 2380,
|
|
|
|
|
2376, 2383, 3237, 2385, 2386, 2387, 2390, 2391, 2396, 2394,
|
|
|
|
|
2397, 2400, 2402, 2398, 2405, 2406, 2404, 2416, 2420, 3237,
|
|
|
|
|
|
|
|
|
|
2408, 3237, 2417, 2422, 2430, 2431, 3237, 2427, 2429, 3237,
|
|
|
|
|
2433, 2434, 2435, 2438, 3237, 2444, 2445, 2446, 2448, 2449,
|
|
|
|
|
2450, 2451, 3237, 2453, 2458, 2465, 2462, 2454, 2466, 2456,
|
|
|
|
|
2468, 2477, 2475, 3237, 2471, 2478, 2484, 2480, 2489, 3237,
|
|
|
|
|
3237, 2485, 3237, 3237, 2493, 3237, 3237, 2490, 2497, 3237,
|
|
|
|
|
2499, 3237, 2505, 2501, 2494, 2482, 2503, 3237, 2507, 3237,
|
|
|
|
|
3237, 2509, 2511, 2512, 2515, 2517, 2519, 2522, 2523, 2524,
|
|
|
|
|
2525, 2527, 2528, 2529, 2530, 2532, 2536, 2533, 2538, 2541,
|
|
|
|
|
2543, 2546, 2544, 2547, 2548, 2556, 2564, 3237, 3237, 2549,
|
|
|
|
|
2557, 2551, 2561, 2565, 2566, 2570, 2571, 3237, 2577, 2578,
|
|
|
|
|
|
|
|
|
|
2568, 2579, 2580, 2584, 2582, 2590, 2596, 2585, 2592, 2593,
|
|
|
|
|
2594, 3237, 2599, 3237, 3237, 2595, 2602, 2609, 2604, 2606,
|
|
|
|
|
3237, 2611, 2613, 2617, 2621, 3237, 3237, 3237, 2622, 2625,
|
|
|
|
|
2626, 2628, 2629, 2627, 2630, 3237, 2636, 2637, 2639, 2640,
|
|
|
|
|
2649, 2653, 2650, 2657, 2659, 3237, 3237, 2665, 2662, 2663,
|
|
|
|
|
2661, 2654, 2664, 2671, 2631, 3237, 2674, 2667, 2673, 2675,
|
|
|
|
|
2678, 2681, 3237, 2683, 2685, 2687, 2689, 2686, 2692, 2693,
|
|
|
|
|
2694, 3237, 2698, 2696, 3237, 2704, 3237, 3237, 2697, 2710,
|
|
|
|
|
2712, 2714, 2719, 2721, 2708, 2716, 2727, 2724, 2725, 3237,
|
|
|
|
|
3237, 2728, 3237, 3237, 2731, 2732, 2733, 2735, 2736, 2739,
|
|
|
|
|
|
|
|
|
|
2740, 2744, 2741, 2742, 2745, 2753, 2746, 2747, 2754, 2756,
|
|
|
|
|
2757, 3237, 2762, 3237, 2764, 2768, 2770, 2769, 3237, 2771,
|
|
|
|
|
2772, 2775, 3237, 3237, 3237, 2781, 2787, 2783, 3237, 2785,
|
|
|
|
|
2789, 2791, 2794, 2779, 2801, 2793, 2803, 3237, 2795, 2804,
|
|
|
|
|
2806, 2807, 2808, 2809, 2813, 2810, 2811, 2823, 2817, 2826,
|
|
|
|
|
2827, 3237, 2830, 2820, 2831, 2834, 2839, 2835, 2843, 2841,
|
|
|
|
|
2845, 2846, 2842, 2848, 2856, 2852, 2850, 3237, 2860, 2857,
|
|
|
|
|
3237, 2863, 2866, 2865, 2873, 2875, 2878, 3237, 2880, 3237,
|
|
|
|
|
2881, 3237, 2885, 2886, 3237, 3237, 2887, 2889, 2892, 3237,
|
|
|
|
|
2893, 2890, 2894, 2896, 2899, 2900, 3237, 3237, 2901, 2903,
|
|
|
|
|
|
|
|
|
|
2907, 3237, 3237, 3237, 2916, 3237, 2918, 3237, 2924, 2904,
|
|
|
|
|
3237, 2909, 2926, 2906, 2917, 2912, 2929, 2930, 2928, 2937,
|
|
|
|
|
3237, 2939, 3237, 2941, 3237, 2942, 2943, 3237, 2950, 2946,
|
|
|
|
|
2948, 2949, 2951, 2955, 3237, 3237, 3237, 2952, 2957, 2959,
|
|
|
|
|
2961, 2958, 2962, 2963, 2964, 2966, 2973, 2970, 2981, 2967,
|
|
|
|
|
2974, 2990, 2983, 3237, 2984, 2987, 2996, 2998, 2994, 3000,
|
|
|
|
|
2995, 3001, 3002, 3003, 3004, 3005, 3007, 3018, 3009, 3010,
|
|
|
|
|
3020, 3022, 3026, 3019, 3034, 3033, 3030, 3035, 3036, 3044,
|
|
|
|
|
3040, 3043, 3237, 3041, 3042, 3045, 3047, 3048, 3052, 3050,
|
|
|
|
|
3062, 3065, 3053, 3067, 3051, 3072, 3068, 3073, 3076, 3077,
|
|
|
|
|
|
|
|
|
|
3078, 3237, 3079, 3081, 3083, 3085, 3087, 3089, 3090, 3091,
|
|
|
|
|
3094, 3096, 3099, 3101, 3105, 3237, 3106, 3237, 3237, 3110,
|
|
|
|
|
3107, 3113, 3117, 3119, 3237, 3237, 3237, 3145, 3152, 3159,
|
|
|
|
|
3166, 3173, 94, 3180, 3187, 3194, 3201, 3208, 3215, 3222,
|
|
|
|
|
3229
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
static yyconst flex_int16_t yy_def[1642] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2015-02-02 03:46:22 -05:00
|
|
|
1627, 1, 1628, 1628, 1629, 1629, 1630, 1630, 1631, 1631,
|
|
|
|
|
1632, 1632, 1627, 1633, 1627, 1627, 1627, 1627, 1634, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1635,
|
|
|
|
|
1627, 1627, 1627, 1635, 1636, 1627, 1627, 1627, 1636, 1637,
|
|
|
|
|
1627, 1627, 1627, 1627, 1637, 1638, 1627, 1627, 1627, 1638,
|
|
|
|
|
1639, 1627, 1640, 1627, 1639, 1639, 1633, 1633, 1627, 1641,
|
|
|
|
|
1634, 1641, 1634, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1635, 1635, 1636, 1636, 1637, 1637, 1627, 1638,
|
|
|
|
|
1638, 1639, 1639, 1640, 1640, 1639, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1639, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1639, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1639, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1639, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1627, 1633,
|
|
|
|
|
1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1639, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1627, 1639, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1633,
|
|
|
|
|
1633, 1633, 1627, 1633, 1627, 1633, 1627, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627,
|
|
|
|
|
1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1633, 1627,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1627, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1627, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633,
|
|
|
|
|
1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1627, 1633, 1633, 1627, 1633, 1633, 1633, 1627,
|
|
|
|
|
1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627,
|
|
|
|
|
|
|
|
|
|
1633, 1627, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1627,
|
|
|
|
|
1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1627,
|
|
|
|
|
1627, 1633, 1627, 1627, 1633, 1627, 1627, 1633, 1633, 1627,
|
|
|
|
|
1633, 1627, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627,
|
|
|
|
|
1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1627, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1627, 1633, 1633, 1633, 1633, 1627, 1627, 1627, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1627, 1633, 1633, 1627, 1633, 1627, 1627, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627,
|
|
|
|
|
1627, 1633, 1627, 1627, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1627, 1633, 1627, 1633, 1633, 1633, 1633, 1627, 1633,
|
|
|
|
|
1633, 1633, 1627, 1627, 1627, 1633, 1633, 1633, 1627, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1633,
|
|
|
|
|
1627, 1633, 1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627,
|
|
|
|
|
1633, 1627, 1633, 1633, 1627, 1627, 1633, 1633, 1633, 1627,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1627, 1627, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1627, 1627, 1627, 1633, 1627, 1633, 1627, 1633, 1633,
|
|
|
|
|
1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1627, 1633, 1627, 1633, 1627, 1633, 1633, 1627, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1627, 1627, 1627, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
|
|
|
|
|
1633, 1627, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1633, 1627, 1633, 1627, 1627, 1633,
|
|
|
|
|
1633, 1633, 1633, 1633, 1627, 1627, 0, 1627, 1627, 1627,
|
|
|
|
|
1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627,
|
|
|
|
|
1627
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
static yyconst flex_int16_t yy_nxt[3277] =
|
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,
|
|
|
|
|
14, 18, 20, 21, 14, 22, 23, 24, 25, 14,
|
|
|
|
|
26, 27, 28, 29, 30, 31, 32, 33, 34, 14,
|
|
|
|
|
35, 36, 37, 38, 39, 14, 14, 14, 14, 41,
|
2014-07-31 03:15:33 -04:00
|
|
|
42, 43, 41, 42, 43, 125, 46, 47, 125, 44,
|
2009-02-27 04:38:11 -05:00
|
|
|
48, 69, 44, 46, 47, 70, 49, 48, 57, 58,
|
2009-11-30 08:07:39 -05:00
|
|
|
59, 68, 68, 49, 51, 52, 53, 54, 60, 18,
|
2014-07-31 03:15:33 -04:00
|
|
|
57, 58, 59, 123, 123, 55, 51, 52, 53, 54,
|
2014-08-05 03:57:52 -04:00
|
|
|
60, 18, 68, 104, 215, 74, 75, 55, 15, 16,
|
2009-11-30 08:07:39 -05:00
|
|
|
17, 62, 63, 64, 67, 67, 68, 67, 67, 65,
|
|
|
|
|
|
2014-07-31 03:15:33 -04:00
|
|
|
67, 95, 68, 76, 68, 67, 85, 68, 66, 15,
|
|
|
|
|
16, 17, 62, 63, 64, 68, 68, 77, 137, 87,
|
|
|
|
|
65, 69, 94, 68, 78, 70, 86, 68, 88, 66,
|
|
|
|
|
72, 79, 72, 72, 133, 72, 89, 68, 96, 68,
|
|
|
|
|
72, 73, 68, 90, 130, 130, 91, 80, 136, 68,
|
|
|
|
|
97, 81, 179, 92, 82, 93, 83, 84, 98, 68,
|
|
|
|
|
68, 101, 68, 138, 99, 102, 68, 68, 100, 68,
|
|
|
|
|
68, 105, 109, 140, 112, 68, 116, 106, 117, 68,
|
|
|
|
|
107, 103, 110, 68, 113, 111, 139, 108, 114, 115,
|
|
|
|
|
68, 121, 169, 118, 68, 122, 127, 119, 127, 127,
|
|
|
|
|
|
2014-08-05 03:57:52 -04:00
|
|
|
239, 127, 120, 72, 68, 72, 72, 132, 72, 132,
|
2014-07-31 03:15:33 -04:00
|
|
|
132, 68, 132, 67, 135, 67, 67, 68, 67, 68,
|
|
|
|
|
68, 68, 141, 67, 72, 142, 72, 72, 147, 72,
|
|
|
|
|
68, 143, 68, 68, 72, 73, 68, 68, 144, 145,
|
|
|
|
|
146, 68, 68, 68, 149, 153, 148, 154, 68, 68,
|
|
|
|
|
68, 133, 150, 156, 151, 152, 157, 155, 159, 68,
|
|
|
|
|
68, 68, 68, 68, 161, 163, 68, 160, 68, 164,
|
|
|
|
|
158, 68, 167, 165, 166, 68, 68, 68, 168, 171,
|
|
|
|
|
173, 172, 170, 68, 162, 68, 68, 68, 175, 68,
|
|
|
|
|
68, 182, 176, 68, 184, 174, 68, 68, 68, 178,
|
|
|
|
|
|
|
|
|
|
68, 68, 183, 189, 68, 177, 180, 181, 68, 191,
|
|
|
|
|
68, 123, 123, 133, 185, 186, 187, 68, 125, 188,
|
|
|
|
|
192, 125, 130, 130, 190, 198, 68, 127, 193, 127,
|
|
|
|
|
127, 132, 127, 132, 132, 72, 132, 72, 72, 133,
|
|
|
|
|
72, 197, 194, 68, 196, 68, 135, 68, 195, 68,
|
2014-08-05 03:57:52 -04:00
|
|
|
201, 68, 68, 204, 131, 68, 202, 203, 68, 205,
|
|
|
|
|
199, 68, 68, 212, 68, 68, 68, 200, 68, 214,
|
|
|
|
|
213, 217, 216, 68, 68, 68, 68, 224, 68, 218,
|
|
|
|
|
68, 206, 68, 223, 227, 68, 207, 220, 219, 68,
|
|
|
|
|
221, 208, 222, 68, 228, 68, 209, 68, 68, 229,
|
|
|
|
|
|
|
|
|
|
225, 226, 210, 211, 68, 243, 231, 232, 234, 68,
|
|
|
|
|
230, 68, 236, 68, 235, 237, 233, 68, 68, 68,
|
|
|
|
|
68, 68, 68, 68, 68, 238, 68, 241, 68, 246,
|
|
|
|
|
68, 250, 68, 68, 68, 252, 68, 254, 244, 240,
|
|
|
|
|
68, 253, 68, 68, 242, 68, 245, 261, 248, 249,
|
|
|
|
|
247, 258, 251, 68, 257, 256, 68, 260, 133, 255,
|
|
|
|
|
68, 68, 68, 266, 262, 68, 68, 68, 68, 265,
|
|
|
|
|
263, 267, 68, 68, 259, 68, 68, 273, 272, 264,
|
|
|
|
|
268, 270, 68, 274, 68, 269, 68, 68, 275, 68,
|
|
|
|
|
276, 68, 68, 68, 279, 282, 280, 271, 277, 278,
|
|
|
|
|
|
|
|
|
|
68, 68, 281, 68, 284, 68, 286, 68, 68, 68,
|
|
|
|
|
285, 68, 68, 68, 291, 283, 68, 68, 295, 68,
|
|
|
|
|
68, 293, 68, 68, 68, 290, 288, 287, 68, 68,
|
|
|
|
|
289, 294, 296, 68, 292, 68, 297, 298, 306, 68,
|
|
|
|
|
299, 302, 300, 301, 68, 68, 68, 303, 304, 305,
|
|
|
|
|
68, 312, 68, 307, 68, 68, 314, 68, 68, 68,
|
|
|
|
|
310, 308, 313, 311, 309, 317, 68, 68, 68, 68,
|
|
|
|
|
68, 68, 319, 315, 320, 68, 321, 68, 327, 316,
|
|
|
|
|
68, 68, 322, 68, 326, 323, 318, 68, 324, 68,
|
|
|
|
|
325, 68, 328, 68, 333, 68, 331, 68, 329, 133,
|
|
|
|
|
|
|
|
|
|
330, 68, 68, 332, 344, 68, 380, 335, 68, 68,
|
|
|
|
|
334, 68, 343, 336, 337, 68, 347, 349, 68, 68,
|
|
|
|
|
345, 346, 68, 338, 68, 339, 340, 341, 348, 350,
|
|
|
|
|
342, 353, 356, 351, 352, 354, 68, 68, 355, 68,
|
|
|
|
|
68, 359, 360, 68, 68, 358, 68, 68, 68, 68,
|
|
|
|
|
68, 365, 68, 68, 366, 357, 68, 68, 68, 386,
|
|
|
|
|
68, 364, 362, 361, 363, 369, 371, 368, 68, 374,
|
|
|
|
|
367, 68, 375, 372, 68, 373, 68, 68, 370, 68,
|
|
|
|
|
376, 378, 68, 377, 381, 68, 68, 68, 68, 68,
|
|
|
|
|
68, 68, 385, 129, 68, 379, 383, 68, 384, 387,
|
|
|
|
|
|
|
|
|
|
68, 389, 68, 390, 68, 392, 382, 68, 68, 68,
|
|
|
|
|
68, 388, 391, 393, 68, 68, 400, 68, 68, 394,
|
|
|
|
|
398, 68, 399, 68, 397, 68, 68, 68, 395, 396,
|
|
|
|
|
404, 68, 68, 68, 68, 401, 406, 68, 416, 68,
|
|
|
|
|
402, 407, 405, 68, 403, 68, 420, 68, 417, 415,
|
|
|
|
|
418, 408, 68, 409, 414, 68, 422, 419, 410, 68,
|
|
|
|
|
411, 68, 68, 68, 421, 68, 68, 68, 412, 68,
|
|
|
|
|
68, 428, 68, 424, 423, 133, 429, 425, 413, 432,
|
|
|
|
|
68, 433, 426, 68, 434, 431, 68, 427, 430, 437,
|
|
|
|
|
68, 68, 68, 68, 68, 68, 436, 440, 435, 68,
|
|
|
|
|
|
|
|
|
|
68, 445, 442, 438, 439, 446, 68, 450, 441, 448,
|
|
|
|
|
68, 443, 68, 447, 444, 449, 68, 451, 68, 452,
|
|
|
|
|
68, 453, 68, 68, 68, 68, 68, 457, 455, 456,
|
|
|
|
|
68, 68, 68, 461, 458, 68, 459, 68, 68, 68,
|
|
|
|
|
462, 128, 68, 454, 460, 464, 68, 467, 469, 68,
|
|
|
|
|
465, 463, 68, 68, 466, 471, 68, 468, 470, 68,
|
|
|
|
|
472, 68, 68, 68, 474, 68, 479, 476, 68, 68,
|
|
|
|
|
68, 68, 126, 481, 475, 480, 68, 478, 68, 477,
|
|
|
|
|
68, 482, 473, 68, 68, 483, 484, 487, 486, 68,
|
|
|
|
|
485, 489, 491, 68, 488, 490, 68, 68, 68, 495,
|
|
|
|
|
|
|
|
|
|
68, 493, 492, 496, 68, 68, 68, 497, 499, 68,
|
|
|
|
|
68, 68, 68, 68, 68, 68, 494, 504, 68, 498,
|
|
|
|
|
68, 68, 68, 505, 509, 68, 511, 500, 501, 68,
|
|
|
|
|
502, 68, 503, 506, 510, 512, 508, 68, 507, 68,
|
|
|
|
|
68, 516, 68, 68, 514, 68, 68, 68, 513, 68,
|
|
|
|
|
518, 519, 520, 68, 521, 517, 515, 68, 522, 68,
|
|
|
|
|
68, 133, 68, 68, 524, 523, 527, 68, 525, 68,
|
|
|
|
|
528, 68, 531, 529, 526, 68, 533, 68, 68, 534,
|
|
|
|
|
532, 68, 68, 530, 68, 68, 68, 68, 539, 535,
|
|
|
|
|
537, 68, 68, 68, 68, 547, 536, 548, 549, 124,
|
|
|
|
|
|
|
|
|
|
545, 550, 538, 68, 546, 68, 68, 68, 540, 68,
|
|
|
|
|
557, 558, 541, 68, 562, 542, 560, 559, 561, 68,
|
|
|
|
|
68, 563, 543, 68, 564, 544, 68, 68, 551, 68,
|
|
|
|
|
552, 68, 565, 553, 68, 68, 68, 566, 554, 68,
|
|
|
|
|
567, 68, 571, 568, 555, 556, 569, 570, 68, 68,
|
|
|
|
|
576, 572, 575, 68, 574, 68, 577, 68, 68, 68,
|
|
|
|
|
578, 68, 68, 68, 579, 68, 573, 580, 68, 68,
|
|
|
|
|
581, 587, 584, 583, 585, 68, 68, 586, 68, 68,
|
|
|
|
|
68, 582, 589, 68, 591, 68, 68, 68, 68, 68,
|
|
|
|
|
593, 68, 68, 596, 590, 68, 68, 588, 594, 68,
|
|
|
|
|
|
|
|
|
|
592, 68, 68, 602, 68, 601, 68, 595, 68, 68,
|
|
|
|
|
597, 598, 68, 605, 599, 600, 68, 610, 607, 603,
|
|
|
|
|
606, 604, 68, 609, 611, 68, 68, 68, 608, 68,
|
|
|
|
|
612, 68, 615, 68, 617, 613, 618, 614, 68, 68,
|
|
|
|
|
68, 68, 619, 622, 68, 624, 68, 68, 68, 625,
|
|
|
|
|
133, 68, 616, 621, 68, 627, 620, 68, 68, 68,
|
2015-01-06 09:12:59 -05:00
|
|
|
68, 68, 626, 637, 623, 68, 68, 68, 133, 68,
|
|
|
|
|
68, 641, 630, 628, 68, 638, 68, 68, 644, 660,
|
|
|
|
|
640, 629, 68, 642, 643, 631, 639, 632, 68, 68,
|
|
|
|
|
68, 633, 645, 634, 646, 648, 68, 650, 635, 68,
|
|
|
|
|
|
|
|
|
|
68, 653, 649, 636, 647, 652, 68, 68, 654, 68,
|
|
|
|
|
651, 68, 68, 655, 658, 656, 68, 661, 68, 665,
|
|
|
|
|
663, 68, 68, 662, 68, 659, 666, 68, 667, 668,
|
|
|
|
|
68, 68, 68, 657, 68, 664, 68, 672, 68, 669,
|
|
|
|
|
68, 670, 68, 671, 68, 68, 68, 674, 680, 676,
|
|
|
|
|
673, 68, 68, 68, 679, 68, 68, 68, 68, 675,
|
|
|
|
|
678, 684, 677, 685, 68, 68, 687, 683, 694, 686,
|
|
|
|
|
681, 68, 688, 682, 689, 68, 690, 68, 68, 68,
|
|
|
|
|
691, 68, 68, 692, 68, 68, 693, 697, 68, 68,
|
|
|
|
|
695, 701, 68, 699, 700, 68, 68, 696, 68, 698,
|
|
|
|
|
|
|
|
|
|
68, 703, 704, 68, 68, 705, 68, 707, 702, 68,
|
|
|
|
|
68, 68, 68, 68, 68, 68, 706, 712, 708, 713,
|
|
|
|
|
68, 68, 716, 711, 715, 709, 68, 717, 718, 710,
|
|
|
|
|
719, 714, 68, 68, 68, 68, 721, 68, 68, 722,
|
|
|
|
|
725, 720, 68, 68, 68, 68, 723, 68, 68, 68,
|
|
|
|
|
724, 727, 726, 733, 734, 68, 68, 68, 68, 68,
|
|
|
|
|
735, 730, 728, 731, 68, 68, 68, 68, 68, 732,
|
|
|
|
|
729, 736, 738, 743, 68, 740, 68, 68, 737, 68,
|
|
|
|
|
739, 741, 68, 745, 68, 747, 68, 742, 68, 749,
|
|
|
|
|
68, 748, 68, 751, 744, 68, 68, 68, 68, 746,
|
|
|
|
|
|
|
|
|
|
68, 754, 750, 756, 753, 68, 68, 68, 68, 758,
|
|
|
|
|
752, 68, 68, 68, 68, 759, 755, 68, 68, 757,
|
|
|
|
|
68, 68, 760, 761, 762, 68, 766, 68, 68, 772,
|
|
|
|
|
763, 68, 765, 767, 764, 770, 769, 768, 68, 771,
|
|
|
|
|
68, 775, 68, 774, 68, 776, 68, 780, 773, 68,
|
|
|
|
|
777, 68, 68, 779, 782, 778, 68, 781, 68, 68,
|
|
|
|
|
784, 68, 68, 783, 68, 787, 789, 786, 790, 68,
|
|
|
|
|
785, 68, 68, 68, 791, 68, 792, 68, 68, 68,
|
|
|
|
|
68, 68, 788, 798, 793, 68, 68, 68, 797, 794,
|
|
|
|
|
68, 795, 68, 796, 803, 799, 800, 807, 68, 801,
|
|
|
|
|
|
|
|
|
|
802, 804, 68, 68, 809, 68, 68, 811, 805, 810,
|
|
|
|
|
68, 813, 68, 68, 815, 68, 68, 806, 808, 817,
|
|
|
|
|
68, 816, 68, 68, 68, 68, 68, 822, 819, 812,
|
|
|
|
|
821, 68, 820, 814, 68, 68, 68, 833, 68, 826,
|
|
|
|
|
824, 827, 818, 825, 68, 68, 68, 829, 68, 823,
|
|
|
|
|
828, 68, 68, 68, 831, 68, 836, 830, 68, 68,
|
|
|
|
|
68, 68, 832, 68, 840, 68, 68, 68, 68, 68,
|
|
|
|
|
68, 131, 844, 834, 68, 846, 839, 847, 835, 837,
|
|
|
|
|
838, 848, 68, 849, 68, 841, 843, 68, 68, 853,
|
|
|
|
|
851, 842, 845, 68, 68, 850, 68, 854, 852, 68,
|
|
|
|
|
|
|
|
|
|
68, 68, 68, 68, 68, 68, 68, 855, 859, 862,
|
|
|
|
|
68, 68, 68, 68, 68, 68, 68, 868, 856, 858,
|
|
|
|
|
860, 870, 869, 68, 861, 864, 857, 865, 863, 866,
|
|
|
|
|
867, 68, 68, 68, 68, 68, 879, 68, 877, 874,
|
|
|
|
|
872, 871, 876, 68, 878, 880, 68, 873, 68, 68,
|
|
|
|
|
68, 68, 884, 881, 68, 875, 885, 68, 886, 68,
|
|
|
|
|
68, 68, 68, 68, 882, 68, 892, 68, 68, 891,
|
|
|
|
|
883, 68, 68, 887, 68, 68, 68, 68, 68, 888,
|
|
|
|
|
902, 890, 897, 901, 893, 68, 894, 889, 68, 900,
|
|
|
|
|
68, 895, 899, 896, 68, 68, 898, 68, 903, 904,
|
|
|
|
|
|
|
|
|
|
906, 68, 907, 68, 910, 68, 68, 908, 68, 68,
|
|
|
|
|
129, 912, 68, 913, 905, 909, 914, 915, 68, 916,
|
|
|
|
|
68, 68, 68, 911, 68, 917, 68, 918, 68, 68,
|
|
|
|
|
68, 924, 68, 920, 922, 68, 68, 926, 68, 919,
|
|
|
|
|
68, 68, 921, 68, 68, 923, 931, 929, 68, 68,
|
|
|
|
|
68, 928, 68, 934, 68, 925, 68, 68, 68, 938,
|
|
|
|
|
927, 68, 68, 930, 933, 940, 932, 939, 942, 935,
|
|
|
|
|
68, 944, 68, 68, 936, 943, 937, 68, 941, 68,
|
|
|
|
|
68, 947, 68, 945, 68, 68, 953, 68, 128, 68,
|
|
|
|
|
950, 68, 68, 951, 948, 68, 68, 954, 955, 958,
|
|
|
|
|
|
|
|
|
|
956, 959, 68, 946, 949, 952, 68, 68, 960, 68,
|
|
|
|
|
957, 68, 68, 68, 68, 967, 68, 964, 68, 966,
|
|
|
|
|
961, 68, 68, 968, 68, 68, 68, 975, 962, 68,
|
|
|
|
|
68, 963, 68, 68, 68, 68, 965, 973, 68, 969,
|
|
|
|
|
972, 68, 970, 974, 971, 980, 68, 68, 68, 976,
|
|
|
|
|
979, 984, 68, 977, 68, 978, 981, 983, 68, 982,
|
|
|
|
|
68, 985, 987, 988, 68, 986, 68, 989, 68, 993,
|
|
|
|
|
994, 68, 68, 990, 68, 992, 991, 68, 68, 68,
|
|
|
|
|
68, 68, 1001, 68, 68, 996, 1004, 68, 995, 1006,
|
|
|
|
|
68, 68, 998, 68, 68, 997, 1007, 68, 1000, 1002,
|
|
|
|
|
|
|
|
|
|
68, 1009, 1003, 1011, 999, 1005, 68, 68, 68, 1012,
|
|
|
|
|
1010, 68, 68, 1008, 1017, 1013, 68, 68, 68, 68,
|
|
|
|
|
68, 1014, 68, 68, 1021, 68, 68, 1022, 1023, 1015,
|
|
|
|
|
1024, 1016, 1018, 68, 68, 1019, 68, 126, 1020, 1028,
|
|
|
|
|
68, 68, 1025, 68, 68, 1032, 68, 124, 1029, 1026,
|
|
|
|
|
68, 1027, 68, 1030, 68, 1031, 1033, 1037, 1035, 1036,
|
|
|
|
|
68, 1038, 68, 68, 1034, 1040, 68, 68, 68, 68,
|
|
|
|
|
68, 68, 1039, 1042, 68, 68, 68, 68, 1043, 1041,
|
|
|
|
|
1046, 68, 1044, 1047, 1051, 68, 1045, 1052, 68, 68,
|
|
|
|
|
68, 1050, 68, 1056, 68, 68, 1048, 1049, 1058, 68,
|
|
|
|
|
|
|
|
|
|
1059, 68, 1053, 1060, 68, 1066, 68, 1054, 68, 1055,
|
|
|
|
|
1057, 68, 1062, 1063, 1061, 1064, 1068, 68, 68, 1067,
|
2015-02-02 03:46:22 -05:00
|
|
|
68, 68, 68, 68, 68, 68, 68, 1077, 68, 1065,
|
|
|
|
|
68, 68, 1079, 68, 1069, 1070, 1071, 68, 1082, 68,
|
|
|
|
|
68, 1072, 68, 1073, 1074, 1075, 1081, 1076, 68, 1084,
|
|
|
|
|
68, 68, 1087, 1080, 68, 1083, 1078, 1085, 68, 68,
|
|
|
|
|
1091, 68, 68, 68, 1090, 68, 1094, 68, 1095, 1093,
|
|
|
|
|
68, 68, 68, 68, 1089, 68, 1086, 68, 68, 1096,
|
|
|
|
|
1088, 1092, 68, 1101, 68, 1103, 68, 1098, 68, 1104,
|
|
|
|
|
1100, 1097, 1099, 1102, 1105, 1106, 68, 1110, 68, 1109,
|
|
|
|
|
|
|
|
|
|
68, 1111, 1108, 1107, 68, 1112, 68, 1113, 68, 1116,
|
|
|
|
|
68, 68, 68, 68, 68, 1118, 68, 68, 1121, 1123,
|
|
|
|
|
1115, 68, 1117, 68, 68, 1119, 1114, 68, 1126, 68,
|
|
|
|
|
1125, 1127, 68, 1124, 68, 68, 68, 68, 68, 1122,
|
|
|
|
|
1128, 1120, 1129, 68, 1130, 1131, 68, 1133, 1132, 1135,
|
|
|
|
|
68, 68, 68, 68, 68, 68, 68, 1140, 1134, 68,
|
|
|
|
|
1142, 1137, 68, 68, 1141, 68, 68, 1144, 68, 68,
|
|
|
|
|
1143, 1136, 1138, 68, 1139, 1149, 68, 1147, 1145, 1151,
|
|
|
|
|
1146, 68, 1148, 1150, 68, 68, 1153, 68, 68, 1154,
|
|
|
|
|
1155, 68, 68, 68, 1158, 1156, 68, 68, 1152, 68,
|
|
|
|
|
|
|
|
|
|
68, 68, 68, 68, 68, 1159, 68, 68, 1167, 1166,
|
|
|
|
|
68, 1161, 1157, 1162, 1163, 1164, 68, 68, 1160, 1169,
|
|
|
|
|
1171, 68, 68, 1165, 68, 1168, 1174, 1173, 68, 68,
|
|
|
|
|
1170, 68, 68, 1175, 1176, 1179, 68, 68, 68, 68,
|
|
|
|
|
68, 1180, 68, 1172, 1183, 68, 68, 68, 1187, 1177,
|
|
|
|
|
1184, 1185, 1178, 1182, 1186, 68, 1181, 68, 68, 1189,
|
|
|
|
|
68, 68, 1190, 1191, 1188, 68, 68, 68, 68, 68,
|
|
|
|
|
68, 1195, 68, 1192, 1196, 1200, 68, 68, 68, 1199,
|
|
|
|
|
68, 1193, 1194, 1205, 1197, 68, 1201, 1202, 68, 1204,
|
|
|
|
|
68, 1203, 1198, 1206, 1207, 68, 68, 68, 1208, 1210,
|
|
|
|
|
|
|
|
|
|
68, 68, 1211, 68, 68, 1209, 68, 1215, 68, 1212,
|
|
|
|
|
68, 1214, 68, 68, 68, 1217, 68, 68, 68, 1220,
|
|
|
|
|
68, 1213, 1223, 68, 1224, 68, 68, 68, 1219, 1216,
|
|
|
|
|
68, 1226, 68, 1222, 1221, 1218, 68, 68, 68, 68,
|
|
|
|
|
1225, 1234, 68, 68, 1227, 68, 1228, 68, 1235, 1232,
|
|
|
|
|
68, 1230, 1236, 1255, 1229, 68, 1238, 1231, 68, 1233,
|
|
|
|
|
68, 1237, 68, 1239, 1240, 68, 1241, 68, 1242, 1243,
|
|
|
|
|
68, 1244, 68, 1246, 68, 1247, 68, 1245, 68, 1248,
|
|
|
|
|
1250, 68, 68, 1249, 1252, 68, 68, 68, 68, 68,
|
|
|
|
|
1256, 1258, 68, 1254, 1260, 68, 1261, 68, 68, 68,
|
|
|
|
|
|
|
|
|
|
1263, 1251, 68, 68, 1253, 1257, 68, 1259, 68, 68,
|
|
|
|
|
68, 1264, 68, 1266, 68, 1265, 68, 68, 68, 1270,
|
|
|
|
|
68, 1627, 1268, 1275, 1262, 1271, 1272, 1273, 68, 68,
|
|
|
|
|
1274, 1267, 68, 1269, 68, 1279, 1276, 1280, 1278, 68,
|
|
|
|
|
1277, 68, 68, 68, 1281, 68, 68, 68, 1285, 1288,
|
|
|
|
|
68, 1286, 1282, 1284, 1283, 1289, 68, 68, 68, 1291,
|
|
|
|
|
68, 68, 68, 68, 1295, 68, 68, 1287, 68, 1296,
|
|
|
|
|
68, 1290, 1292, 1297, 68, 1293, 1298, 68, 68, 1299,
|
|
|
|
|
68, 1294, 1301, 68, 1304, 1303, 1300, 68, 1302, 68,
|
|
|
|
|
68, 1308, 68, 1305, 68, 1307, 68, 68, 1311, 1306,
|
|
|
|
|
|
|
|
|
|
1309, 68, 68, 1310, 1312, 68, 68, 1313, 1314, 68,
|
|
|
|
|
1315, 68, 1316, 68, 1317, 68, 1319, 68, 1321, 68,
|
|
|
|
|
1320, 68, 1318, 68, 68, 1323, 1322, 68, 1326, 68,
|
|
|
|
|
1327, 68, 1325, 1328, 68, 68, 68, 68, 1324, 68,
|
|
|
|
|
68, 68, 68, 1336, 68, 68, 1334, 1329, 68, 1331,
|
|
|
|
|
68, 1332, 1333, 68, 1330, 68, 68, 1337, 68, 68,
|
|
|
|
|
68, 68, 1335, 68, 1344, 1345, 1340, 1346, 68, 68,
|
|
|
|
|
1339, 1338, 1342, 68, 1343, 1347, 68, 68, 68, 1341,
|
|
|
|
|
68, 1348, 68, 68, 1355, 1350, 1352, 1349, 1356, 68,
|
|
|
|
|
68, 68, 68, 1351, 68, 1358, 68, 68, 1353, 1357,
|
|
|
|
|
|
|
|
|
|
1354, 1363, 68, 1364, 68, 68, 68, 68, 68, 1359,
|
|
|
|
|
1360, 68, 1361, 1362, 68, 1365, 68, 1371, 68, 1366,
|
|
|
|
|
1372, 68, 1375, 68, 1367, 68, 1368, 1370, 1377, 68,
|
|
|
|
|
1369, 1373, 1378, 68, 68, 1379, 1374, 68, 68, 68,
|
|
|
|
|
68, 68, 68, 68, 1376, 1382, 1383, 1381, 68, 68,
|
|
|
|
|
1385, 68, 68, 1627, 1387, 1402, 1388, 1392, 1384, 1380,
|
|
|
|
|
1390, 68, 68, 1386, 1391, 68, 68, 1389, 1393, 68,
|
|
|
|
|
1394, 68, 1395, 68, 68, 68, 68, 68, 1396, 68,
|
|
|
|
|
1397, 1399, 1398, 68, 1400, 68, 68, 68, 1401, 1403,
|
|
|
|
|
68, 1407, 1404, 68, 1405, 68, 1406, 68, 68, 68,
|
|
|
|
|
|
|
|
|
|
1412, 68, 1408, 1414, 68, 68, 68, 1413, 68, 68,
|
|
|
|
|
68, 1416, 1627, 1415, 1409, 1419, 68, 1410, 1411, 1417,
|
|
|
|
|
68, 1418, 68, 1421, 68, 1423, 68, 1422, 68, 1420,
|
|
|
|
|
1424, 68, 1425, 68, 1428, 1429, 68, 68, 1426, 68,
|
|
|
|
|
68, 1430, 1427, 68, 68, 68, 1431, 68, 68, 1434,
|
|
|
|
|
1438, 68, 68, 68, 68, 1442, 68, 68, 68, 68,
|
|
|
|
|
1432, 1433, 1437, 1435, 1440, 68, 68, 1436, 68, 68,
|
|
|
|
|
1444, 1439, 1441, 1443, 68, 1447, 68, 1450, 1445, 1452,
|
|
|
|
|
68, 68, 68, 68, 68, 1446, 1453, 68, 1448, 1449,
|
|
|
|
|
1454, 68, 1455, 68, 1451, 68, 1456, 68, 1458, 68,
|
|
|
|
|
|
|
|
|
|
1459, 68, 1461, 68, 1460, 68, 68, 68, 1466, 1465,
|
|
|
|
|
1462, 1464, 1457, 68, 1468, 68, 68, 1471, 68, 68,
|
|
|
|
|
68, 68, 68, 68, 1463, 68, 1469, 1476, 1472, 68,
|
|
|
|
|
1467, 1470, 68, 1475, 1478, 68, 1473, 1480, 68, 68,
|
|
|
|
|
1474, 1482, 68, 68, 1481, 1485, 68, 68, 1479, 1477,
|
|
|
|
|
1486, 68, 1483, 68, 68, 68, 1490, 68, 68, 1492,
|
|
|
|
|
68, 1497, 68, 1494, 68, 1484, 1487, 1488, 68, 68,
|
|
|
|
|
1491, 1498, 68, 1489, 1627, 68, 1502, 68, 68, 1493,
|
|
|
|
|
1627, 1495, 1496, 1501, 1503, 68, 1504, 68, 1499, 1500,
|
|
|
|
|
68, 1506, 68, 68, 1507, 1505, 1508, 68, 68, 68,
|
|
|
|
|
|
|
|
|
|
1511, 68, 68, 1509, 68, 68, 68, 1510, 68, 1512,
|
|
|
|
|
1513, 68, 68, 68, 1521, 68, 68, 1519, 68, 68,
|
|
|
|
|
1514, 68, 1515, 1522, 68, 1516, 1517, 1523, 68, 68,
|
|
|
|
|
68, 1526, 1518, 1520, 1524, 1525, 68, 1528, 68, 1527,
|
|
|
|
|
68, 68, 68, 1529, 1530, 1531, 1532, 1533, 1535, 68,
|
|
|
|
|
1536, 68, 1537, 68, 68, 68, 1539, 1540, 68, 1534,
|
|
|
|
|
68, 68, 68, 68, 68, 1542, 1538, 68, 1546, 68,
|
|
|
|
|
68, 68, 1541, 68, 68, 68, 68, 1554, 68, 68,
|
|
|
|
|
1543, 1544, 68, 1545, 1548, 68, 68, 1556, 1550, 1547,
|
|
|
|
|
1551, 1553, 1549, 68, 1555, 68, 68, 1560, 1557, 68,
|
|
|
|
|
|
|
|
|
|
1552, 1559, 68, 1564, 1558, 1565, 68, 68, 68, 1561,
|
|
|
|
|
68, 1562, 68, 68, 68, 68, 68, 68, 1563, 68,
|
|
|
|
|
1566, 68, 68, 1577, 1574, 1567, 1568, 1569, 1571, 1572,
|
|
|
|
|
68, 68, 68, 1570, 68, 1575, 1573, 1578, 68, 1579,
|
|
|
|
|
1576, 1582, 68, 1580, 1583, 68, 68, 68, 68, 1584,
|
|
|
|
|
1581, 1587, 68, 68, 68, 68, 68, 68, 1590, 68,
|
|
|
|
|
68, 1594, 68, 68, 68, 68, 1585, 1586, 1589, 1595,
|
|
|
|
|
1599, 1588, 1593, 1591, 68, 1597, 1592, 68, 1598, 68,
|
|
|
|
|
68, 1596, 1601, 1602, 68, 68, 1600, 1603, 68, 68,
|
|
|
|
|
68, 68, 1604, 68, 1606, 68, 1608, 68, 1609, 68,
|
|
|
|
|
|
|
|
|
|
1612, 68, 68, 68, 1615, 1616, 68, 1605, 68, 1607,
|
|
|
|
|
1618, 68, 1619, 68, 1610, 1617, 1611, 68, 68, 68,
|
|
|
|
|
1613, 1614, 68, 1621, 1620, 68, 1627, 1622, 1625, 68,
|
|
|
|
|
1626, 68, 1627, 1627, 1627, 1627, 1627, 1627, 1623, 1627,
|
|
|
|
|
1627, 1627, 1627, 1627, 1624, 40, 40, 40, 40, 40,
|
|
|
|
|
40, 40, 45, 45, 45, 45, 45, 45, 45, 50,
|
|
|
|
|
50, 50, 50, 50, 50, 50, 56, 56, 56, 56,
|
|
|
|
|
56, 56, 56, 61, 61, 61, 61, 61, 61, 61,
|
|
|
|
|
71, 71, 1627, 71, 71, 71, 71, 123, 123, 1627,
|
|
|
|
|
1627, 1627, 123, 123, 125, 125, 1627, 1627, 125, 1627,
|
|
|
|
|
|
|
|
|
|
125, 127, 1627, 1627, 1627, 1627, 1627, 127, 130, 130,
|
|
|
|
|
1627, 1627, 1627, 130, 130, 132, 1627, 1627, 1627, 1627,
|
|
|
|
|
1627, 132, 134, 134, 1627, 134, 134, 134, 134, 72,
|
|
|
|
|
72, 1627, 72, 72, 72, 72, 13, 1627, 1627, 1627,
|
|
|
|
|
1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627,
|
|
|
|
|
1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627,
|
|
|
|
|
1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627,
|
|
|
|
|
1627, 1627, 1627, 1627, 1627, 1627
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
static yyconst flex_int16_t yy_chk[3277] =
|
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,
|
2008-10-06 05:28:50 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 3,
|
2009-08-12 11:26:47 -04:00
|
|
|
3, 3, 4, 4, 4, 49, 5, 5, 49, 3,
|
2009-02-06 05:19:16 -05:00
|
|
|
5, 15, 4, 6, 6, 15, 5, 6, 9, 9,
|
2014-07-31 03:15:33 -04:00
|
|
|
9, 151, 33, 6, 7, 7, 7, 7, 9, 7,
|
2009-10-29 06:37:44 -04:00
|
|
|
10, 10, 10, 44, 44, 7, 8, 8, 8, 8,
|
2014-07-31 03:15:33 -04:00
|
|
|
10, 8, 21, 33, 151, 21, 21, 8, 11, 11,
|
2015-02-02 03:46:22 -05:00
|
|
|
11, 11, 11, 11, 1633, 20, 29, 20, 20, 11,
|
2009-11-30 08:07:39 -05:00
|
|
|
|
|
|
|
|
20, 29, 24, 21, 25, 20, 24, 28, 11, 12,
|
|
|
|
|
12, 12, 12, 12, 12, 74, 22, 22, 74, 25,
|
2014-07-31 03:15:33 -04:00
|
|
|
12, 69, 28, 30, 22, 69, 24, 26, 26, 12,
|
|
|
|
|
19, 22, 19, 19, 66, 19, 26, 110, 30, 27,
|
|
|
|
|
19, 19, 23, 27, 60, 60, 27, 23, 66, 31,
|
|
|
|
|
31, 23, 110, 27, 23, 27, 23, 23, 31, 75,
|
|
|
|
|
32, 32, 34, 75, 31, 32, 76, 35, 31, 36,
|
|
|
|
|
77, 34, 35, 77, 36, 37, 37, 34, 37, 101,
|
|
|
|
|
34, 32, 35, 38, 36, 35, 76, 34, 36, 36,
|
|
|
|
|
39, 39, 101, 37, 173, 39, 55, 38, 55, 55,
|
|
|
|
|
|
|
|
|
|
173, 55, 38, 63, 78, 63, 63, 65, 63, 65,
|
|
|
|
|
65, 79, 65, 68, 63, 68, 68, 82, 68, 80,
|
|
|
|
|
81, 83, 78, 68, 71, 79, 71, 71, 84, 71,
|
|
|
|
|
85, 80, 86, 84, 71, 71, 87, 88, 81, 82,
|
|
|
|
|
83, 89, 90, 91, 85, 89, 84, 90, 94, 97,
|
2014-08-05 03:57:52 -04:00
|
|
|
92, 625, 86, 92, 87, 88, 92, 91, 93, 95,
|
2014-07-31 03:15:33 -04:00
|
|
|
98, 104, 96, 93, 95, 96, 103, 94, 99, 96,
|
|
|
|
|
92, 100, 99, 97, 98, 102, 105, 106, 100, 103,
|
|
|
|
|
105, 104, 102, 107, 95, 108, 109, 111, 107, 112,
|
|
|
|
|
114, 113, 107, 115, 115, 106, 113, 116, 118, 109,
|
|
|
|
|
|
|
|
|
|
117, 119, 114, 119, 120, 108, 111, 112, 121, 120,
|
|
|
|
|
122, 124, 124, 132, 115, 116, 117, 140, 126, 118,
|
|
|
|
|
121, 126, 131, 131, 119, 140, 139, 128, 122, 128,
|
|
|
|
|
128, 133, 128, 133, 133, 134, 133, 134, 134, 136,
|
|
|
|
|
134, 139, 136, 137, 138, 141, 134, 142, 137, 138,
|
2014-08-05 03:57:52 -04:00
|
|
|
143, 149, 144, 145, 130, 143, 143, 144, 145, 146,
|
|
|
|
|
141, 146, 148, 148, 150, 154, 153, 142, 152, 150,
|
|
|
|
|
149, 153, 152, 155, 157, 156, 159, 159, 158, 154,
|
|
|
|
|
160, 146, 147, 158, 162, 161, 147, 156, 155, 162,
|
|
|
|
|
156, 147, 157, 163, 163, 167, 147, 177, 166, 164,
|
|
|
|
|
|
|
|
|
|
160, 161, 147, 147, 164, 177, 165, 166, 168, 169,
|
|
|
|
|
164, 165, 170, 168, 169, 171, 167, 170, 172, 174,
|
|
|
|
|
171, 175, 176, 178, 180, 172, 179, 175, 181, 180,
|
|
|
|
|
182, 183, 184, 185, 186, 185, 183, 187, 178, 174,
|
|
|
|
|
188, 186, 187, 189, 176, 193, 179, 193, 182, 182,
|
|
|
|
|
181, 191, 184, 190, 190, 189, 191, 192, 194, 188,
|
|
|
|
|
195, 196, 192, 197, 193, 199, 198, 200, 197, 196,
|
|
|
|
|
194, 198, 202, 201, 191, 203, 204, 204, 203, 195,
|
|
|
|
|
199, 201, 208, 205, 209, 200, 205, 206, 206, 207,
|
|
|
|
|
207, 210, 211, 212, 210, 213, 211, 202, 208, 209,
|
|
|
|
|
|
|
|
|
|
213, 214, 212, 215, 215, 216, 217, 218, 219, 220,
|
|
|
|
|
216, 217, 221, 222, 222, 214, 223, 224, 226, 225,
|
|
|
|
|
229, 224, 231, 226, 228, 221, 219, 218, 232, 227,
|
|
|
|
|
220, 225, 227, 230, 223, 233, 228, 229, 235, 235,
|
|
|
|
|
229, 232, 230, 231, 237, 238, 234, 233, 234, 234,
|
|
|
|
|
236, 240, 240, 236, 239, 242, 242, 241, 243, 244,
|
|
|
|
|
238, 237, 241, 239, 237, 245, 246, 247, 249, 250,
|
|
|
|
|
245, 248, 247, 243, 248, 251, 248, 254, 252, 244,
|
|
|
|
|
255, 256, 249, 252, 251, 250, 246, 253, 250, 257,
|
|
|
|
|
250, 258, 253, 259, 258, 262, 256, 261, 254, 263,
|
|
|
|
|
|
|
|
|
|
255, 265, 264, 257, 262, 296, 296, 259, 266, 268,
|
|
|
|
|
258, 260, 261, 260, 260, 272, 265, 267, 269, 270,
|
|
|
|
|
263, 264, 267, 260, 273, 260, 260, 260, 266, 268,
|
|
|
|
|
260, 271, 274, 269, 270, 272, 271, 274, 273, 275,
|
|
|
|
|
276, 277, 277, 278, 277, 276, 279, 281, 280, 282,
|
|
|
|
|
283, 282, 284, 285, 283, 275, 286, 287, 302, 302,
|
|
|
|
|
290, 281, 279, 278, 280, 286, 287, 285, 288, 290,
|
|
|
|
|
284, 289, 291, 288, 292, 289, 294, 291, 286, 293,
|
|
|
|
|
292, 294, 295, 293, 297, 298, 300, 299, 301, 297,
|
|
|
|
|
304, 308, 301, 129, 303, 295, 299, 309, 300, 303,
|
|
|
|
|
|
|
|
|
|
305, 305, 307, 307, 310, 309, 298, 311, 313, 314,
|
|
|
|
|
315, 304, 308, 310, 317, 316, 318, 319, 320, 311,
|
|
|
|
|
316, 318, 317, 321, 315, 325, 322, 323, 313, 314,
|
|
|
|
|
322, 324, 326, 329, 328, 319, 324, 332, 330, 334,
|
|
|
|
|
320, 325, 323, 330, 321, 333, 333, 331, 330, 329,
|
|
|
|
|
331, 326, 327, 327, 328, 335, 335, 332, 327, 336,
|
|
|
|
|
327, 337, 338, 339, 334, 340, 341, 342, 327, 343,
|
|
|
|
|
344, 341, 347, 337, 336, 345, 342, 338, 327, 345,
|
|
|
|
|
348, 346, 339, 349, 347, 344, 346, 340, 343, 350,
|
|
|
|
|
350, 351, 352, 354, 353, 356, 349, 353, 348, 355,
|
|
|
|
|
|
|
|
|
|
358, 357, 355, 351, 352, 357, 357, 361, 354, 359,
|
|
|
|
|
359, 356, 361, 358, 356, 360, 360, 362, 362, 363,
|
|
|
|
|
363, 364, 365, 366, 371, 367, 364, 368, 366, 367,
|
|
|
|
|
369, 370, 368, 372, 369, 373, 370, 374, 372, 377,
|
|
|
|
|
373, 127, 375, 365, 371, 375, 376, 376, 378, 379,
|
|
|
|
|
375, 374, 380, 378, 375, 380, 381, 377, 379, 382,
|
|
|
|
|
381, 383, 384, 385, 382, 386, 387, 384, 392, 388,
|
|
|
|
|
389, 387, 125, 389, 383, 388, 393, 386, 390, 385,
|
|
|
|
|
391, 390, 381, 394, 395, 391, 392, 395, 394, 396,
|
|
|
|
|
393, 397, 398, 399, 396, 397, 397, 398, 400, 401,
|
|
|
|
|
|
|
|
|
|
403, 400, 399, 401, 401, 402, 404, 402, 404, 405,
|
|
|
|
|
406, 407, 408, 409, 410, 415, 400, 409, 411, 403,
|
|
|
|
|
412, 413, 421, 410, 414, 416, 416, 405, 406, 414,
|
|
|
|
|
407, 417, 408, 411, 415, 417, 413, 418, 412, 419,
|
|
|
|
|
420, 421, 422, 423, 419, 425, 424, 428, 418, 426,
|
|
|
|
|
423, 424, 425, 427, 426, 422, 420, 429, 427, 430,
|
|
|
|
|
431, 432, 435, 444, 429, 428, 432, 433, 430, 434,
|
|
|
|
|
433, 436, 436, 434, 431, 439, 438, 440, 441, 439,
|
|
|
|
|
436, 438, 442, 435, 443, 447, 453, 450, 444, 440,
|
|
|
|
|
442, 454, 460, 459, 455, 453, 441, 454, 455, 123,
|
|
|
|
|
|
|
|
|
|
447, 456, 443, 445, 450, 458, 456, 463, 445, 465,
|
|
|
|
|
458, 459, 445, 461, 463, 445, 461, 460, 462, 462,
|
|
|
|
|
464, 464, 445, 469, 465, 445, 457, 470, 457, 67,
|
|
|
|
|
457, 466, 466, 457, 467, 468, 473, 467, 457, 471,
|
|
|
|
|
468, 472, 472, 469, 457, 457, 470, 471, 474, 475,
|
|
|
|
|
477, 473, 476, 476, 475, 477, 478, 479, 480, 481,
|
|
|
|
|
479, 478, 482, 483, 480, 485, 474, 481, 484, 487,
|
|
|
|
|
482, 488, 485, 484, 486, 486, 488, 487, 489, 491,
|
|
|
|
|
492, 483, 491, 493, 493, 494, 497, 495, 498, 499,
|
|
|
|
|
495, 500, 501, 498, 492, 502, 503, 489, 495, 504,
|
|
|
|
|
|
|
|
|
|
494, 505, 506, 504, 507, 503, 508, 497, 510, 511,
|
|
|
|
|
499, 500, 509, 507, 501, 502, 515, 512, 509, 505,
|
|
|
|
|
508, 506, 512, 511, 513, 516, 514, 517, 510, 513,
|
|
|
|
|
514, 518, 517, 519, 519, 515, 520, 516, 522, 521,
|
|
|
|
|
523, 520, 521, 524, 525, 526, 526, 528, 524, 527,
|
|
|
|
|
527, 529, 518, 523, 530, 529, 522, 531, 532, 534,
|
|
|
|
|
535, 536, 528, 534, 525, 537, 538, 553, 61, 539,
|
|
|
|
|
540, 538, 532, 530, 541, 535, 546, 542, 541, 553,
|
|
|
|
|
537, 531, 533, 539, 540, 533, 536, 533, 545, 543,
|
|
|
|
|
544, 533, 542, 533, 543, 544, 547, 546, 533, 548,
|
|
|
|
|
|
2015-01-06 09:12:59 -05:00
|
|
|
558, 549, 545, 533, 543, 548, 549, 550, 550, 551,
|
|
|
|
|
547, 552, 556, 550, 551, 550, 554, 554, 555, 558,
|
|
|
|
|
556, 557, 564, 555, 560, 552, 559, 559, 560, 562,
|
|
|
|
|
565, 567, 566, 550, 562, 557, 563, 566, 568, 563,
|
|
|
|
|
569, 564, 571, 565, 570, 573, 572, 568, 574, 570,
|
|
|
|
|
567, 576, 578, 574, 573, 577, 579, 582, 580, 569,
|
|
|
|
|
572, 579, 571, 580, 581, 588, 582, 578, 588, 581,
|
|
|
|
|
576, 583, 583, 577, 584, 589, 586, 590, 592, 584,
|
|
|
|
|
586, 586, 587, 587, 591, 595, 587, 591, 593, 594,
|
|
|
|
|
589, 595, 596, 593, 594, 597, 599, 590, 600, 592,
|
|
|
|
|
|
|
|
|
|
602, 597, 598, 598, 601, 599, 603, 601, 596, 604,
|
|
|
|
|
605, 610, 606, 608, 607, 611, 600, 606, 602, 607,
|
|
|
|
|
616, 609, 610, 605, 609, 603, 614, 611, 612, 604,
|
|
|
|
|
613, 608, 617, 612, 620, 613, 615, 615, 618, 616,
|
|
|
|
|
619, 614, 621, 622, 619, 623, 617, 626, 627, 628,
|
|
|
|
|
618, 621, 620, 629, 630, 631, 636, 632, 629, 630,
|
|
|
|
|
631, 626, 622, 627, 633, 635, 637, 634, 638, 628,
|
|
|
|
|
623, 632, 634, 639, 639, 636, 640, 641, 633, 642,
|
|
|
|
|
635, 637, 645, 641, 643, 643, 644, 638, 646, 645,
|
|
|
|
|
647, 644, 648, 647, 640, 649, 650, 651, 652, 642,
|
|
|
|
|
|
|
|
|
|
653, 650, 646, 652, 649, 654, 655, 656, 657, 654,
|
|
|
|
|
648, 659, 658, 660, 661, 655, 651, 664, 663, 653,
|
|
|
|
|
662, 669, 656, 657, 658, 668, 662, 665, 670, 669,
|
|
|
|
|
659, 673, 661, 663, 660, 667, 665, 664, 671, 668,
|
|
|
|
|
667, 672, 674, 671, 675, 672, 672, 676, 670, 678,
|
|
|
|
|
673, 683, 676, 675, 678, 674, 677, 677, 679, 680,
|
|
|
|
|
680, 681, 682, 679, 684, 683, 685, 682, 686, 687,
|
|
|
|
|
681, 685, 688, 686, 687, 689, 688, 690, 694, 692,
|
|
|
|
|
693, 696, 684, 692, 689, 695, 697, 698, 690, 689,
|
|
|
|
|
699, 689, 700, 689, 697, 693, 694, 701, 701, 695,
|
|
|
|
|
|
|
|
|
|
696, 698, 706, 702, 703, 703, 705, 706, 699, 705,
|
|
|
|
|
707, 708, 708, 709, 710, 710, 711, 700, 702, 712,
|
|
|
|
|
712, 711, 713, 714, 715, 716, 717, 717, 714, 707,
|
|
|
|
|
716, 718, 715, 709, 719, 727, 720, 729, 729, 722,
|
|
|
|
|
719, 723, 713, 720, 722, 724, 723, 725, 726, 718,
|
|
|
|
|
724, 728, 725, 730, 727, 731, 732, 726, 735, 733,
|
|
|
|
|
734, 732, 728, 736, 736, 737, 738, 740, 739, 741,
|
|
|
|
|
742, 56, 740, 730, 745, 742, 735, 744, 731, 733,
|
|
|
|
|
734, 744, 744, 745, 748, 737, 739, 746, 747, 749,
|
|
|
|
|
747, 738, 741, 750, 749, 746, 751, 750, 748, 752,
|
|
|
|
|
|
|
|
|
|
753, 754, 756, 755, 757, 758, 760, 751, 755, 758,
|
|
|
|
|
759, 763, 764, 761, 762, 765, 766, 764, 752, 754,
|
|
|
|
|
756, 766, 765, 767, 757, 760, 753, 761, 759, 762,
|
|
|
|
|
763, 768, 769, 770, 771, 775, 775, 772, 773, 770,
|
|
|
|
|
768, 767, 772, 773, 774, 777, 777, 769, 778, 774,
|
|
|
|
|
779, 780, 781, 778, 783, 771, 781, 781, 782, 782,
|
|
|
|
|
784, 785, 786, 787, 779, 789, 788, 790, 793, 787,
|
|
|
|
|
780, 788, 791, 783, 792, 794, 798, 795, 797, 784,
|
|
|
|
|
798, 786, 793, 797, 789, 799, 790, 785, 796, 796,
|
|
|
|
|
800, 791, 795, 792, 801, 805, 794, 803, 799, 800,
|
|
|
|
|
|
|
|
|
|
802, 802, 803, 804, 806, 808, 810, 804, 821, 806,
|
|
|
|
|
51, 810, 811, 811, 801, 805, 812, 814, 814, 816,
|
|
|
|
|
816, 812, 818, 808, 820, 818, 819, 819, 822, 823,
|
|
|
|
|
824, 825, 825, 821, 823, 826, 827, 827, 828, 820,
|
|
|
|
|
829, 832, 822, 830, 831, 824, 832, 830, 834, 837,
|
|
|
|
|
835, 829, 836, 836, 838, 826, 839, 840, 843, 840,
|
|
|
|
|
828, 845, 841, 831, 835, 842, 834, 841, 844, 837,
|
|
|
|
|
842, 846, 846, 844, 838, 845, 839, 847, 843, 849,
|
|
|
|
|
850, 850, 851, 847, 852, 858, 854, 853, 50, 856,
|
|
|
|
|
853, 854, 855, 853, 851, 857, 859, 855, 856, 859,
|
|
|
|
|
|
|
|
|
|
857, 860, 862, 849, 852, 853, 860, 861, 861, 863,
|
|
|
|
|
858, 864, 865, 866, 867, 868, 868, 865, 869, 867,
|
|
|
|
|
862, 870, 871, 869, 872, 874, 873, 876, 863, 877,
|
|
|
|
|
875, 864, 876, 878, 879, 881, 866, 874, 882, 870,
|
|
|
|
|
873, 884, 871, 875, 872, 882, 890, 883, 892, 877,
|
|
|
|
|
881, 887, 887, 878, 891, 879, 883, 884, 888, 883,
|
|
|
|
|
889, 888, 890, 891, 893, 889, 894, 892, 897, 895,
|
|
|
|
|
896, 896, 898, 893, 895, 894, 893, 899, 900, 901,
|
|
|
|
|
902, 903, 903, 904, 905, 898, 907, 908, 897, 909,
|
|
|
|
|
910, 907, 900, 911, 909, 899, 910, 913, 902, 904,
|
|
|
|
|
|
|
|
|
|
914, 912, 905, 914, 901, 908, 912, 917, 918, 914,
|
|
|
|
|
913, 919, 920, 911, 921, 917, 922, 923, 925, 921,
|
|
|
|
|
926, 918, 927, 928, 926, 929, 931, 927, 928, 919,
|
|
|
|
|
929, 920, 922, 930, 934, 923, 932, 45, 925, 933,
|
|
|
|
|
933, 935, 930, 936, 938, 937, 939, 40, 934, 931,
|
|
|
|
|
937, 932, 940, 935, 942, 936, 938, 942, 940, 941,
|
|
|
|
|
941, 943, 943, 945, 939, 946, 946, 947, 948, 949,
|
|
|
|
|
950, 951, 945, 948, 953, 952, 955, 954, 949, 947,
|
|
|
|
|
952, 958, 950, 953, 956, 956, 951, 957, 959, 960,
|
|
|
|
|
962, 955, 957, 961, 961, 969, 953, 954, 963, 963,
|
|
|
|
|
|
|
|
|
|
964, 964, 958, 965, 971, 972, 972, 959, 965, 960,
|
|
|
|
|
962, 966, 968, 969, 966, 970, 974, 968, 973, 973,
|
|
|
|
|
970, 974, 975, 976, 977, 978, 979, 980, 980, 971,
|
2015-02-02 03:46:22 -05:00
|
|
|
981, 982, 982, 983, 975, 975, 975, 985, 986, 986,
|
|
|
|
|
987, 975, 988, 976, 977, 978, 985, 979, 989, 988,
|
|
|
|
|
990, 991, 991, 983, 992, 987, 981, 989, 993, 995,
|
|
|
|
|
996, 997, 998, 1000, 995, 996, 999, 999, 1000, 998,
|
|
|
|
|
1001, 1002, 1003, 1004, 993, 1005, 990, 1006, 1009, 1001,
|
|
|
|
|
992, 997, 1011, 1006, 1007, 1008, 1008, 1003, 1012, 1009,
|
|
|
|
|
1005, 1002, 1004, 1007, 1009, 1010, 1010, 1014, 1014, 1013,
|
|
|
|
|
|
|
|
|
|
1017, 1015, 1012, 1011, 1013, 1015, 1015, 1016, 1018, 1019,
|
|
|
|
|
1020, 1021, 1016, 1022, 1019, 1021, 1023, 1025, 1024, 1026,
|
|
|
|
|
1018, 1027, 1020, 1024, 1026, 1022, 1017, 1029, 1030, 1030,
|
|
|
|
|
1029, 1031, 1031, 1027, 1032, 1039, 1035, 1033, 1034, 1025,
|
|
|
|
|
1032, 1023, 1033, 1037, 1034, 1035, 1041, 1039, 1037, 1042,
|
|
|
|
|
1042, 1043, 1044, 1047, 1045, 1046, 1050, 1047, 1041, 1048,
|
|
|
|
|
1049, 1044, 1053, 14, 1048, 1049, 1052, 1052, 1054, 1060,
|
|
|
|
|
1050, 1043, 1045, 1055, 1046, 1057, 1057, 1054, 1052, 1061,
|
|
|
|
|
1053, 1062, 1055, 1060, 1061, 1063, 1063, 1064, 1067, 1064,
|
|
|
|
|
1065, 1065, 1068, 1069, 1069, 1067, 1070, 1071, 1062, 1072,
|
|
|
|
|
|
|
|
|
|
1075, 1073, 1074, 1076, 1078, 1070, 1079, 1080, 1079, 1078,
|
|
|
|
|
1081, 1072, 1068, 1073, 1074, 1075, 1083, 1085, 1071, 1081,
|
|
|
|
|
1084, 1084, 1086, 1076, 1087, 1080, 1087, 1086, 1088, 1089,
|
|
|
|
|
1083, 1090, 1091, 1088, 1089, 1092, 1093, 1095, 1098, 1096,
|
|
|
|
|
1092, 1093, 1099, 1085, 1097, 1097, 1100, 1102, 1100, 1090,
|
|
|
|
|
1098, 1099, 1091, 1096, 1099, 1101, 1095, 1104, 1105, 1102,
|
|
|
|
|
1107, 1108, 1104, 1105, 1101, 1111, 1109, 1115, 1113, 1114,
|
|
|
|
|
1116, 1111, 1120, 1107, 1113, 1117, 1117, 1118, 1122, 1116,
|
|
|
|
|
1123, 1108, 1109, 1122, 1114, 1121, 1118, 1119, 1119, 1121,
|
|
|
|
|
1125, 1120, 1115, 1123, 1124, 1124, 1128, 1131, 1125, 1129,
|
|
|
|
|
|
|
|
|
|
1129, 1130, 1130, 1132, 1136, 1128, 1133, 1134, 1134, 1131,
|
|
|
|
|
1137, 1133, 1138, 1139, 1140, 1137, 1141, 1142, 1147, 1140,
|
|
|
|
|
1144, 1132, 1143, 1143, 1144, 1145, 1146, 1148, 1139, 1136,
|
|
|
|
|
1150, 1146, 1151, 1142, 1141, 1138, 1152, 1153, 1154, 1158,
|
|
|
|
|
1145, 1156, 1156, 1160, 1147, 1157, 1148, 1159, 1157, 1153,
|
|
|
|
|
1178, 1151, 1158, 1178, 1150, 1164, 1160, 1152, 1167, 1154,
|
|
|
|
|
1170, 1159, 1161, 1161, 1162, 1162, 1163, 1163, 1164, 1165,
|
|
|
|
|
1165, 1166, 1166, 1168, 1168, 1169, 1169, 1167, 1172, 1170,
|
|
|
|
|
1173, 1173, 1174, 1172, 1175, 1175, 1176, 1177, 1181, 1179,
|
|
|
|
|
1179, 1180, 1180, 1177, 1182, 1182, 1184, 1184, 1185, 1186,
|
|
|
|
|
|
|
|
|
|
1186, 1174, 1187, 1188, 1176, 1179, 1190, 1181, 1189, 1191,
|
|
|
|
|
1194, 1187, 1192, 1189, 1193, 1188, 1197, 1195, 1196, 1193,
|
|
|
|
|
1201, 13, 1191, 1198, 1185, 1194, 1195, 1196, 1198, 1203,
|
|
|
|
|
1197, 1190, 1199, 1192, 1204, 1204, 1199, 1205, 1203, 1208,
|
|
|
|
|
1201, 1209, 1205, 1206, 1206, 1211, 1212, 1213, 1211, 1214,
|
|
|
|
|
1214, 1212, 1206, 1209, 1208, 1216, 1216, 1217, 1218, 1218,
|
|
|
|
|
1219, 1220, 1221, 1222, 1222, 1224, 1228, 1213, 1230, 1224,
|
|
|
|
|
1225, 1217, 1219, 1225, 1227, 1220, 1226, 1226, 1229, 1227,
|
|
|
|
|
1231, 1221, 1229, 1235, 1232, 1231, 1228, 1233, 1230, 1232,
|
|
|
|
|
1236, 1237, 1238, 1233, 1256, 1236, 1237, 1242, 1242, 1235,
|
|
|
|
|
|
|
|
|
|
1238, 1239, 1248, 1239, 1245, 1245, 1255, 1248, 1249, 1249,
|
|
|
|
|
1251, 1251, 1253, 1254, 1254, 1257, 1256, 1253, 1259, 1259,
|
|
|
|
|
1257, 1262, 1255, 1263, 1264, 1263, 1262, 1265, 1266, 1266,
|
|
|
|
|
1267, 1267, 1265, 1268, 1268, 1269, 1270, 1271, 1264, 1272,
|
|
|
|
|
1273, 1274, 1275, 1276, 1276, 1278, 1274, 1269, 1277, 1271,
|
|
|
|
|
1279, 1272, 1273, 1280, 1270, 1281, 1283, 1277, 1282, 1284,
|
|
|
|
|
1285, 1290, 1275, 1292, 1284, 1285, 1280, 1286, 1286, 1291,
|
|
|
|
|
1279, 1278, 1282, 1293, 1283, 1287, 1287, 1294, 1295, 1281,
|
|
|
|
|
1301, 1290, 1296, 1297, 1297, 1292, 1294, 1291, 1299, 1299,
|
|
|
|
|
1300, 1302, 1303, 1293, 1305, 1301, 1304, 1308, 1295, 1300,
|
|
|
|
|
|
|
|
|
|
1296, 1306, 1306, 1307, 1309, 1310, 1311, 1316, 1307, 1302,
|
|
|
|
|
1303, 1313, 1304, 1305, 1317, 1308, 1319, 1317, 1320, 1309,
|
|
|
|
|
1318, 1318, 1322, 1322, 1310, 1323, 1311, 1316, 1324, 1324,
|
|
|
|
|
1313, 1319, 1325, 1325, 1329, 1329, 1320, 1330, 1331, 1334,
|
|
|
|
|
1332, 1333, 1335, 1355, 1323, 1332, 1333, 1331, 1337, 1338,
|
|
|
|
|
1335, 1339, 1340, 0, 1338, 1355, 1339, 1343, 1334, 1330,
|
|
|
|
|
1341, 1341, 1343, 1337, 1342, 1342, 1352, 1340, 1344, 1344,
|
|
|
|
|
1345, 1345, 1348, 1351, 1349, 1350, 1353, 1348, 1349, 1358,
|
|
|
|
|
1350, 1352, 1351, 1354, 1353, 1359, 1357, 1360, 1354, 1357,
|
|
|
|
|
1361, 1361, 1358, 1362, 1359, 1364, 1360, 1365, 1368, 1366,
|
|
|
|
|
|
|
|
|
|
1367, 1367, 1362, 1369, 1369, 1370, 1371, 1368, 1374, 1379,
|
|
|
|
|
1373, 1371, 0, 1370, 1364, 1376, 1376, 1365, 1366, 1373,
|
|
|
|
|
1385, 1374, 1380, 1380, 1381, 1382, 1382, 1381, 1386, 1379,
|
|
|
|
|
1383, 1383, 1384, 1384, 1387, 1388, 1388, 1389, 1385, 1387,
|
|
|
|
|
1392, 1389, 1386, 1395, 1396, 1397, 1392, 1398, 1399, 1396,
|
|
|
|
|
1400, 1400, 1401, 1403, 1404, 1404, 1402, 1405, 1407, 1408,
|
|
|
|
|
1395, 1395, 1399, 1397, 1402, 1406, 1409, 1398, 1410, 1411,
|
|
|
|
|
1406, 1401, 1403, 1405, 1413, 1409, 1415, 1413, 1407, 1416,
|
|
|
|
|
1416, 1418, 1417, 1420, 1421, 1408, 1417, 1422, 1410, 1411,
|
|
|
|
|
1418, 1434, 1420, 1426, 1415, 1428, 1421, 1430, 1426, 1427,
|
|
|
|
|
|
|
|
|
|
1427, 1431, 1430, 1432, 1428, 1436, 1433, 1439, 1435, 1434,
|
|
|
|
|
1431, 1433, 1422, 1435, 1437, 1437, 1440, 1441, 1441, 1442,
|
|
|
|
|
1443, 1444, 1446, 1447, 1432, 1445, 1439, 1446, 1442, 1449,
|
|
|
|
|
1436, 1440, 1454, 1445, 1448, 1448, 1443, 1450, 1450, 1451,
|
|
|
|
|
1444, 1453, 1453, 1455, 1451, 1456, 1456, 1458, 1449, 1447,
|
|
|
|
|
1457, 1457, 1454, 1460, 1463, 1459, 1461, 1461, 1462, 1463,
|
|
|
|
|
1464, 1467, 1467, 1465, 1466, 1455, 1458, 1459, 1465, 1470,
|
|
|
|
|
1462, 1469, 1469, 1460, 0, 1472, 1474, 1474, 1473, 1464,
|
|
|
|
|
0, 1466, 1466, 1473, 1475, 1475, 1476, 1476, 1470, 1472,
|
|
|
|
|
1477, 1479, 1479, 1481, 1481, 1477, 1483, 1483, 1484, 1487,
|
|
|
|
|
|
|
|
|
|
1488, 1488, 1492, 1484, 1489, 1491, 1493, 1487, 1494, 1489,
|
|
|
|
|
1491, 1495, 1496, 1499, 1500, 1500, 1510, 1496, 1514, 1501,
|
|
|
|
|
1492, 1512, 1493, 1501, 1516, 1494, 1494, 1505, 1505, 1515,
|
|
|
|
|
1507, 1510, 1495, 1499, 1507, 1509, 1509, 1513, 1513, 1512,
|
|
|
|
|
1519, 1517, 1518, 1514, 1515, 1516, 1517, 1518, 1520, 1520,
|
|
|
|
|
1522, 1522, 1524, 1524, 1526, 1527, 1527, 1529, 1530, 1519,
|
|
|
|
|
1531, 1532, 1529, 1533, 1538, 1531, 1526, 1534, 1538, 1539,
|
|
|
|
|
1542, 1540, 1530, 1541, 1543, 1544, 1545, 1546, 1546, 1550,
|
|
|
|
|
1532, 1533, 1548, 1534, 1540, 1547, 1551, 1548, 1542, 1539,
|
|
|
|
|
1543, 1545, 1541, 1549, 1547, 1553, 1555, 1552, 1549, 1556,
|
|
|
|
|
|
|
|
|
|
1544, 1551, 1552, 1557, 1550, 1558, 1559, 1561, 1557, 1553,
|
|
|
|
|
1558, 1555, 1560, 1562, 1563, 1564, 1565, 1566, 1556, 1567,
|
|
|
|
|
1559, 1569, 1570, 1570, 1567, 1560, 1561, 1562, 1564, 1565,
|
|
|
|
|
1568, 1574, 1571, 1563, 1572, 1568, 1566, 1571, 1573, 1572,
|
|
|
|
|
1569, 1575, 1577, 1573, 1576, 1576, 1575, 1578, 1579, 1577,
|
|
|
|
|
1574, 1580, 1581, 1584, 1585, 1582, 1580, 1586, 1584, 1587,
|
|
|
|
|
1588, 1588, 1590, 1595, 1589, 1593, 1578, 1579, 1582, 1589,
|
|
|
|
|
1593, 1581, 1587, 1585, 1591, 1591, 1586, 1592, 1592, 1594,
|
|
|
|
|
1597, 1590, 1595, 1596, 1596, 1598, 1594, 1597, 1599, 1600,
|
|
|
|
|
1601, 1603, 1598, 1604, 1600, 1605, 1603, 1606, 1604, 1607,
|
|
|
|
|
|
|
|
|
|
1607, 1608, 1609, 1610, 1610, 1611, 1611, 1599, 1612, 1601,
|
|
|
|
|
1613, 1613, 1614, 1614, 1605, 1612, 1606, 1615, 1617, 1621,
|
|
|
|
|
1608, 1609, 1620, 1617, 1615, 1622, 0, 1620, 1623, 1623,
|
|
|
|
|
1624, 1624, 0, 0, 0, 0, 0, 0, 1621, 0,
|
|
|
|
|
0, 0, 0, 0, 1622, 1628, 1628, 1628, 1628, 1628,
|
|
|
|
|
1628, 1628, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1630,
|
|
|
|
|
1630, 1630, 1630, 1630, 1630, 1630, 1631, 1631, 1631, 1631,
|
|
|
|
|
1631, 1631, 1631, 1632, 1632, 1632, 1632, 1632, 1632, 1632,
|
|
|
|
|
1634, 1634, 0, 1634, 1634, 1634, 1634, 1635, 1635, 0,
|
|
|
|
|
0, 0, 1635, 1635, 1636, 1636, 0, 0, 1636, 0,
|
|
|
|
|
|
|
|
|
|
1636, 1637, 0, 0, 0, 0, 0, 1637, 1638, 1638,
|
|
|
|
|
0, 0, 0, 1638, 1638, 1639, 0, 0, 0, 0,
|
|
|
|
|
0, 1639, 1640, 1640, 0, 1640, 1640, 1640, 1640, 1641,
|
|
|
|
|
1641, 0, 1641, 1641, 1641, 1641, 1627, 1627, 1627, 1627,
|
|
|
|
|
1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627,
|
|
|
|
|
1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627,
|
|
|
|
|
1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627,
|
|
|
|
|
1627, 1627, 1627, 1627, 1627, 1627
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
static yy_state_type yy_last_accepting_state;
|
|
|
|
|
static char *yy_last_accepting_cpos;
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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;
|
2008-06-09 05:34:40 -04: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.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
#include <string.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;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
if(strlen(filename) == 0) {
|
|
|
|
|
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;
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE));
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2012-09-27 04:52:37 -04:00
|
|
|
static void config_start_include_glob(const char* filename)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* check for wildcards */
|
|
|
|
|
#ifdef HAVE_GLOB
|
|
|
|
|
glob_t g;
|
|
|
|
|
size_t i;
|
|
|
|
|
int r, flags;
|
|
|
|
|
if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') &&
|
|
|
|
|
!strchr(filename, '{') && !strchr(filename, '~'))) {
|
|
|
|
|
flags = 0
|
|
|
|
|
#ifdef GLOB_ERR
|
|
|
|
|
| GLOB_ERR
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef GLOB_NOSORT
|
|
|
|
|
| GLOB_NOSORT
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef GLOB_BRACE
|
|
|
|
|
| GLOB_BRACE
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef GLOB_TILDE
|
|
|
|
|
| GLOB_TILDE
|
|
|
|
|
#endif
|
|
|
|
|
;
|
|
|
|
|
memset(&g, 0, sizeof(g));
|
|
|
|
|
r = glob(filename, flags, NULL, &g);
|
|
|
|
|
if(r) {
|
|
|
|
|
/* some error */
|
|
|
|
|
globfree(&g);
|
2013-04-15 03:57:08 -04:00
|
|
|
if(r == GLOB_NOMATCH)
|
|
|
|
|
return; /* no matches for pattern */
|
2012-09-27 04:52:37 -04:00
|
|
|
config_start_include(filename); /* let original deal with it */
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
/* process files found, if any */
|
|
|
|
|
for(i=0; i<(size_t)g.gl_pathc; i++) {
|
|
|
|
|
config_start_include(g.gl_pathv[i]);
|
|
|
|
|
}
|
|
|
|
|
globfree(&g);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
#endif /* HAVE_GLOB */
|
|
|
|
|
|
|
|
|
|
config_start_include(filename);
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
static void config_end_include(void)
|
|
|
|
|
{
|
2013-06-10 09:37:14 -04:00
|
|
|
struct inc_state* s = config_include_stack;
|
2013-07-26 09:11:53 -04:00
|
|
|
--inc_depth;
|
2013-06-10 09:37:14 -04:00
|
|
|
if(!s) return;
|
2007-10-18 18:49:08 -04:00
|
|
|
free(cfg_parser->filename);
|
2013-06-10 09:37:14 -04:00
|
|
|
cfg_parser->filename = s->filename;
|
|
|
|
|
cfg_parser->line = s->line;
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER);
|
2013-06-10 09:37:14 -04:00
|
|
|
yy_switch_to_buffer(s->buffer);
|
|
|
|
|
config_include_stack = s->next;
|
|
|
|
|
free(s);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef yy_set_bol /* compat definition, for flex 2.4.6 */
|
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
|
|
|
{ \
|
|
|
|
|
if ( ! yy_current_buffer ) \
|
2008-06-09 05:34:40 -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
|
|
|
|
|
|
2008-05-22 06:41:13 -04:00
|
|
|
#define YY_NO_INPUT 1
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 177 "./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
|
|
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 1893 "<stdout>"
|
2008-06-09 05:34:40 -04: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
|
|
|
|
2008-06-09 05:34:40 -04: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
|
|
|
|
|
|
|
|
|
|
static int yy_init_globals (void );
|
|
|
|
|
|
2009-03-24 08:53:25 -04:00
|
|
|
/* Accessor methods to globals.
|
|
|
|
|
These are made visible to non-reentrant scanners for convenience. */
|
|
|
|
|
|
|
|
|
|
int yylex_destroy (void );
|
|
|
|
|
|
|
|
|
|
int yyget_debug (void );
|
|
|
|
|
|
|
|
|
|
void yyset_debug (int debug_flag );
|
|
|
|
|
|
|
|
|
|
YY_EXTRA_TYPE yyget_extra (void );
|
|
|
|
|
|
|
|
|
|
void yyset_extra (YY_EXTRA_TYPE user_defined );
|
|
|
|
|
|
|
|
|
|
FILE *yyget_in (void );
|
|
|
|
|
|
|
|
|
|
void yyset_in (FILE * in_str );
|
|
|
|
|
|
|
|
|
|
FILE *yyget_out (void );
|
|
|
|
|
|
|
|
|
|
void yyset_out (FILE * out_str );
|
|
|
|
|
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t yyget_leng (void );
|
2009-03-24 08:53:25 -04:00
|
|
|
|
|
|
|
|
char *yyget_text (void );
|
|
|
|
|
|
|
|
|
|
int yyget_lineno (void );
|
|
|
|
|
|
|
|
|
|
void yyset_lineno (int line_number );
|
|
|
|
|
|
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
|
2008-06-09 05:34:40 -04:00
|
|
|
extern "C" int yywrap (void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2008-06-09 05:34:40 -04:00
|
|
|
extern int yywrap (void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef yytext_ptr
|
2008-06-09 05:34:40 -04:00
|
|
|
static void yy_flex_strncpy (char *,yyconst char *,int );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef YY_NEED_STRLEN
|
2008-06-09 05:34:40 -04:00
|
|
|
static int yy_flex_strlen (yyconst char * );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef YY_NO_INPUT
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
static int yyinput (void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2008-06-09 05:34:40 -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
|
|
|
|
|
#define YY_READ_BUF_SIZE 8192
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Copy whatever the last rule matched to the standard output. */
|
|
|
|
|
#ifndef ECHO
|
|
|
|
|
/* This used to be an fputs(), but since the string might contain NUL's,
|
|
|
|
|
* we now use fwrite().
|
|
|
|
|
*/
|
2012-01-10 10:07:16 -05:00
|
|
|
#define ECHO do { if (fwrite( yytext, 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) \
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
|
2007-10-18 18:49:08 -04:00
|
|
|
{ \
|
2008-06-09 05:34:40 -04:00
|
|
|
int c = '*'; \
|
2013-04-15 03:57:08 -04:00
|
|
|
size_t 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; \
|
|
|
|
|
} \
|
2008-06-09 05:34:40 -04:00
|
|
|
else \
|
|
|
|
|
{ \
|
|
|
|
|
errno=0; \
|
|
|
|
|
while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
|
|
|
|
|
{ \
|
|
|
|
|
if( errno != EINTR) \
|
|
|
|
|
{ \
|
|
|
|
|
YY_FATAL_ERROR( "input in flex scanner failed" ); \
|
|
|
|
|
break; \
|
|
|
|
|
} \
|
|
|
|
|
errno=0; \
|
|
|
|
|
clearerr(yyin); \
|
|
|
|
|
} \
|
|
|
|
|
}\
|
|
|
|
|
\
|
|
|
|
|
|
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
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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
|
2008-06-09 05:34:40 -04: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
|
|
|
|
|
#define YY_BREAK break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define YY_RULE_SETUP \
|
|
|
|
|
YY_USER_ACTION
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** The main scanner function which does all the work.
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_DECL
|
2008-06-09 05:34:40 -04:00
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
register yy_state_type yy_current_state;
|
|
|
|
|
register char *yy_cp, *yy_bp;
|
|
|
|
|
register int yy_act;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 197 "./util/configlexer.lex"
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 2080 "<stdout>"
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( !(yy_init) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_init) = 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#ifdef YY_USER_INIT
|
|
|
|
|
YY_USER_INIT;
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( ! YY_CURRENT_BUFFER ) {
|
|
|
|
|
yyensure_buffer_stack ();
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE =
|
|
|
|
|
yy_create_buffer(yyin,YY_BUF_SIZE );
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_load_buffer_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while ( 1 ) /* loops until end-of-file is reached */
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_more_len) = 0;
|
|
|
|
|
if ( (yy_more_flag) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
|
|
|
|
|
(yy_more_flag) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Support of yytext. */
|
2008-06-09 05:34:40 -04: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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_current_state = (yy_start);
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_match:
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
|
|
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04: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];
|
2015-02-02 03:46:22 -05:00
|
|
|
if ( yy_current_state >= 1628 )
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
|
|
|
}
|
|
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
|
|
|
|
++yy_cp;
|
|
|
|
|
}
|
2015-02-02 03:46:22 -05:00
|
|
|
while ( yy_base[yy_current_state] != 3237 );
|
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 */
|
2008-06-09 05:34:40 -04: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 */
|
2008-06-09 05:34:40 -04: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
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 198 "./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
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 200 "./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
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 203 "./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
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 204 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_NUM_THREADS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 5:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 205 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_VERBOSITY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 6:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 206 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 7:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 207 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_RANGE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 8:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 208 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 9:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 209 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 10:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 210 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 11:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 211 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 12:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 212 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_DO_IP4) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 13:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 213 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_DO_IP6) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 14:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 214 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_DO_UDP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 15:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 215 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(1, VAR_DO_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 16:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 216 "./util/configlexer.lex"
|
2011-08-22 09:58:40 -04:00
|
|
|
{ YDVAR(1, VAR_TCP_UPSTREAM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 17:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 217 "./util/configlexer.lex"
|
2011-10-31 10:48:48 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_UPSTREAM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 18:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 218 "./util/configlexer.lex"
|
2011-10-31 10:48:48 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 19:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 219 "./util/configlexer.lex"
|
2011-10-31 10:48:48 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 20:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 220 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_SSL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 21:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 221 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_DO_DAEMONIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 22:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 222 "./util/configlexer.lex"
|
2011-11-08 05:56:42 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 23:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 223 "./util/configlexer.lex"
|
2013-11-05 21:48:59 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 24:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 224 "./util/configlexer.lex"
|
2013-11-05 21:48:59 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 25:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 225 "./util/configlexer.lex"
|
2013-11-05 21:48:59 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 26:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 226 "./util/configlexer.lex"
|
2013-11-05 21:48:59 -05:00
|
|
|
{ YDVAR(1, VAR_SO_RCVBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 27:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 227 "./util/configlexer.lex"
|
2013-11-05 21:48:59 -05:00
|
|
|
{ YDVAR(1, VAR_SO_SNDBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 28:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 228 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_SO_REUSEPORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 29:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 229 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_CHROOT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 30:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 230 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_USERNAME) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 31:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 231 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_DIRECTORY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 32:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 232 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_LOGFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 33:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 233 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_PIDFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 34:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 234 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_ROOT_HINTS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 35:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 235 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 36:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 236 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 37:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 237 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 38:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 238 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 39:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 239 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 40:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 240 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 41:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 241 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 42:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 242 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 43:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 243 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 44:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 244 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 45:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 245 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 46:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 246 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 47:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 247 "./util/configlexer.lex"
|
2014-01-24 06:43:38 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 48:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 248 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 49:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 249 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 50:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 250 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 51:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 251 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DELAY_CLOSE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 52:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 252 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 53:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 253 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 54:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 254 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 55:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 255 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_GLUE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 56:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 256 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 57:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 257 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 58:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 258 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 59:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 259 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 60:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 260 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
|
2007-10-19 04:32:36 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 61:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 261 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
|
2007-10-19 10:02:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 62:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 262 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
|
2007-10-22 02:25:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 63:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 263 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_PREFETCH_KEY) }
|
2007-10-31 03:46:30 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 64:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 264 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_PREFETCH) }
|
2007-11-01 11:32:27 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 65:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 265 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(0, VAR_STUB_ZONE) }
|
2007-11-19 10:32:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 66:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 266 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_NAME) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 67:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 267 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_ADDR) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 68:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 268 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_HOST) }
|
2008-01-15 04:45:30 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 69:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 269 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_PRIME) }
|
2008-02-05 05:23:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 70:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 270 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_FIRST) }
|
2008-02-20 02:26:03 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 71:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 271 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(0, VAR_FORWARD_ZONE) }
|
2008-02-27 04:39:27 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 72:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 272 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_ADDR) }
|
2008-04-09 08:29:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 73:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 273 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_HOST) }
|
2008-04-09 11:07:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 74:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 274 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_FIRST) }
|
2008-08-13 10:30:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 75:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 275 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
|
2008-08-21 10:58:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 76:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 276 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
|
2008-08-27 09:02:22 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 77:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 277 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL) }
|
2008-08-29 10:46:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 78:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 278 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_HIDE_IDENTITY) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 79:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 279 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_HIDE_VERSION) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 80:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 280 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_IDENTITY) }
|
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
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 281 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_VERSION) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 82:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 282 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_MODULE_CONF) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 83:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 283 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 84:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 284 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 85:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 285 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 86:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 286 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 87:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 287 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 88:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 288 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR) }
|
2008-09-16 05:08:45 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 89:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 289 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
|
2008-09-30 11:04:32 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 90:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 290 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 91:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 291 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 92:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 292 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_BOGUS_TTL) }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 93:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 293 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
|
2009-02-06 07:51:45 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 94:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 294 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
|
2009-03-18 10:02:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 95:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 295 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 96:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 296 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 97:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 297 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 98:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 298 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 99:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 299 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
|
2009-04-14 06:10:11 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 100:
|
|
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 300 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
|
2009-07-20 10:22:29 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 101:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 302 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
|
2009-08-12 11:26:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 102:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 303 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
|
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
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 304 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_KEEP_MISSING) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 104:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 305 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_USE_SYSLOG) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 105:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 306 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
|
2009-09-25 04:54:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 106:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 307 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_LOG_QUERIES) }
|
2009-10-29 06:37:44 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 107:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 308 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(2, VAR_LOCAL_ZONE) }
|
2010-01-07 09:38:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 108:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 309 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA) }
|
2010-01-13 08:33:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 109:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 310 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
|
2010-11-15 09:30:34 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 110:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 311 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
|
2010-11-18 03:49:15 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 111:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 312 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
|
2011-05-10 07:20:14 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 112:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 313 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
|
2011-06-16 09:15:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 113:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 314 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
|
2011-08-22 09:58:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 114:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 315 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(0, VAR_REMOTE_CONTROL) }
|
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
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 316 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_ENABLE) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 116:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 317 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 117:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 318 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_PORT) }
|
2011-11-08 05:56:42 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 118:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 319 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
|
2012-03-01 08:16:40 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 119:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 320 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
|
2012-03-01 08:16:40 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 120:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 321 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
|
2012-04-10 05:16:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 121:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 322 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
|
2012-04-10 05:16:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 122:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 323 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
|
2013-04-25 07:55:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 123:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 324 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
|
2013-11-05 21:48:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 124:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 325 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(0, VAR_PYTHON) }
|
2014-01-24 06:43:38 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 125:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 326 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
|
2014-01-28 09:35:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 126:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 327 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
|
2014-05-20 06:38:32 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 127:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 328 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
|
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
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 329 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
|
2014-07-31 03:15:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 129:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 330 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DNS64_PREFIX) }
|
2014-07-31 03:15:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 130:
|
|
|
|
|
YY_RULE_SETUP
|
2014-08-05 03:57:52 -04:00
|
|
|
#line 331 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 131:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 332 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(0, VAR_DNSTAP) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 132:
|
|
|
|
|
YY_RULE_SETUP
|
2014-07-31 04:00:38 -04:00
|
|
|
#line 333 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 133:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 334 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 134:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 335 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 135:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 336 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 136:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 337 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
|
2015-01-06 09:12:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 137:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 338 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_VERSION) }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 138:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 339 "./util/configlexer.lex"
|
2014-08-05 03:57:52 -04:00
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
|
|
|
|
|
YY_BREAK
|
2015-02-02 03:46:22 -05:00
|
|
|
case 139:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 341 "./util/configlexer.lex"
|
2014-08-05 03:57:52 -04:00
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
|
|
|
|
|
YY_BREAK
|
2015-02-02 03:46:22 -05:00
|
|
|
case 140:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 343 "./util/configlexer.lex"
|
2014-08-05 03:57:52 -04:00
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
|
|
|
|
|
YY_BREAK
|
2015-02-02 03:46:22 -05:00
|
|
|
case 141:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 345 "./util/configlexer.lex"
|
2014-08-05 03:57:52 -04:00
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
|
|
|
|
|
YY_BREAK
|
2015-02-02 03:46:22 -05:00
|
|
|
case 142:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 347 "./util/configlexer.lex"
|
2014-08-05 03:57:52 -04:00
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
|
|
|
|
|
YY_BREAK
|
2015-02-02 03:46:22 -05:00
|
|
|
case 143:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 349 "./util/configlexer.lex"
|
2014-08-05 03:57:52 -04:00
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
|
|
|
|
|
YY_BREAK
|
2015-02-02 03:46:22 -05:00
|
|
|
case 144:
|
|
|
|
|
/* rule 144 can match eol */
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 351 "./util/configlexer.lex"
|
2014-08-05 03:57:52 -04:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++; }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
/* Quoted strings. Strip leading and ending quotes */
|
2015-02-02 03:46:22 -05:00
|
|
|
case 145:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 354 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(quotedstring):
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 355 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 146:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 360 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 147:
|
|
|
|
|
/* rule 147 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 361 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 148:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 363 "./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 */
|
2015-02-02 03:46:22 -05:00
|
|
|
case 149:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 375 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(singlequotedstr):
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 376 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 150:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 381 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 151:
|
|
|
|
|
/* rule 151 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 382 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 152:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 384 "./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 */
|
2015-02-02 03:46:22 -05:00
|
|
|
case 153:
|
2007-11-28 03:10:45 -05:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 396 "./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):
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 398 "./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
|
2014-08-05 03:57:52 -04:00
|
|
|
case 154:
|
2014-01-28 09:35:55 -05:00
|
|
|
YY_RULE_SETUP
|
2014-08-05 03:57:52 -04:00
|
|
|
#line 402 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ LEXOUT(("ISP ")); /* ignore */ }
|
2014-05-20 06:38:32 -04:00
|
|
|
YY_BREAK
|
2014-08-05 03:57:52 -04:00
|
|
|
case 155:
|
2015-02-02 03:46:22 -05:00
|
|
|
/* rule 155 can match eol */
|
2014-05-20 06:38:32 -04:00
|
|
|
YY_RULE_SETUP
|
2014-08-05 03:57:52 -04:00
|
|
|
#line 403 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++;}
|
2015-01-06 09:12:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 156:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 404 "./util/configlexer.lex"
|
2015-02-02 03:46:22 -05:00
|
|
|
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 157:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 405 "./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):
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 410 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 158:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 414 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 159:
|
|
|
|
|
/* rule 159 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 415 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 160:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 417 "./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):
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 423 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 161:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 434 "./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
|
2015-02-02 03:46:22 -05:00
|
|
|
case 162:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 438 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("unknown keyword '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2015-02-02 03:46:22 -05:00
|
|
|
case 163:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 442 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("stray '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2015-02-02 03:46:22 -05:00
|
|
|
case 164:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 446 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
ECHO;
|
|
|
|
|
YY_BREAK
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 3088 "<stdout>"
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
case YY_END_OF_BUFFER:
|
|
|
|
|
{
|
|
|
|
|
/* Amount of text matched not including the EOB char. */
|
2008-06-09 05:34:40 -04: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. */
|
2008-06-09 05:34:40 -04:00
|
|
|
*yy_cp = (yy_hold_char);
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RESTORE_YY_MORE_OFFSET
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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
|
2008-06-09 05:34:40 -04: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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04: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().
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04: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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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 );
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( yy_next_state )
|
|
|
|
|
{
|
|
|
|
|
/* Consume the NUL. */
|
2008-06-09 05:34:40 -04: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
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
goto yy_find_action;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
else switch ( yy_get_next_buffer( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_did_buffer_switch_on_eof) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04: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
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04: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:
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) =
|
|
|
|
|
(yytext_ptr) + yy_amount_of_matched_text;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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:
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) =
|
|
|
|
|
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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 */
|
2008-06-09 05:34:40 -04: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
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
static int yy_get_next_buffer (void)
|
|
|
|
|
{
|
|
|
|
|
register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
|
|
|
|
|
register char *source = (yytext_ptr);
|
2007-10-18 18:49:08 -04:00
|
|
|
register int number_to_move, i;
|
|
|
|
|
int ret_val;
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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" );
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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. */
|
2008-06-09 05:34:40 -04: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. */
|
2008-06-09 05:34:40 -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++);
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t num_to_read =
|
2008-06-09 05:34:40 -04: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 */
|
2013-11-12 05:08:54 -05:00
|
|
|
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
int yy_c_buf_p_offset =
|
2008-06-09 05:34:40 -04:00
|
|
|
(int) ((yy_c_buf_p) - b->yy_ch_buf);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( b->yy_is_our_buffer )
|
|
|
|
|
{
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t 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. */
|
2008-06-09 05:34:40 -04:00
|
|
|
yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
/* Can't grow it, we don't own it. */
|
|
|
|
|
b->yy_ch_buf = 0;
|
|
|
|
|
|
|
|
|
|
if ( ! b->yy_ch_buf )
|
|
|
|
|
YY_FATAL_ERROR(
|
|
|
|
|
"fatal error - scanner input buffer overflow" );
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
|
2007-10-18 18:49:08 -04:00
|
|
|
number_to_move - 1;
|
2008-06-09 05:34:40 -04: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. */
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
|
2013-11-12 05:08:54 -05:00
|
|
|
(yy_n_chars), num_to_read );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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;
|
2008-06-09 05:34:40 -04:00
|
|
|
yyrestart(yyin );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ret_val = EOB_ACT_LAST_MATCH;
|
2008-06-09 05:34:40 -04: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;
|
|
|
|
|
|
2009-03-24 08:53:25 -04:00
|
|
|
if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
|
|
|
|
|
/* Extend the array by 50%, plus the number we really need. */
|
|
|
|
|
yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
|
|
|
|
|
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return ret_val;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_get_previous_state - get the state just before the EOB char was reached */
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
static yy_state_type yy_get_previous_state (void)
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
register yy_state_type yy_current_state;
|
|
|
|
|
register char *yy_cp;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
|
|
|
|
yy_current_state = (yy_start);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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
|
|
|
{
|
|
|
|
|
register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
|
|
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04: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];
|
2015-02-02 03:46:22 -05:00
|
|
|
if ( yy_current_state >= 1628 )
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
|
|
|
}
|
|
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return yy_current_state;
|
2008-06-09 05:34:40 -04: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 );
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
|
|
|
|
|
{
|
2007-10-19 10:02:53 -04:00
|
|
|
register int yy_is_jam;
|
2008-06-09 05:34:40 -04:00
|
|
|
register char *yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
register YY_CHAR yy_c = 1;
|
|
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04: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];
|
2015-02-02 03:46:22 -05:00
|
|
|
if ( yy_current_state >= 1628 )
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
|
|
|
}
|
|
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
2015-02-02 03:46:22 -05:00
|
|
|
yy_is_jam = (yy_current_state == 1627);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2013-11-12 05:08:54 -05:00
|
|
|
return yy_is_jam ? 0 : yy_current_state;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_NO_INPUT
|
2008-06-09 05:29:44 -04:00
|
|
|
#ifdef __cplusplus
|
2008-06-09 05:34:40 -04:00
|
|
|
static int yyinput (void)
|
2008-06-09 05:29:44 -04:00
|
|
|
#else
|
2008-06-09 05:34:40 -04:00
|
|
|
static int input (void)
|
2008-06-09 05:29:44 -04:00
|
|
|
#endif
|
2008-02-29 05:23:52 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
|
|
|
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04: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. */
|
2008-06-09 05:34:40 -04:00
|
|
|
*(yy_c_buf_p) = '\0';
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{ /* need more input */
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t offset = (yy_c_buf_p) - (yytext_ptr);
|
2008-06-09 05:34:40 -04:00
|
|
|
++(yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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. */
|
2008-06-09 05:34:40 -04:00
|
|
|
yyrestart(yyin );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/*FALLTHROUGH*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
|
|
|
{
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( yywrap( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
return EOF;
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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:
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + offset;
|
2007-10-18 18:49:08 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
|
|
|
|
#endif /* ifndef YY_NO_INPUT */
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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 =
|
|
|
|
|
yy_create_buffer(yyin,YY_BUF_SIZE );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_init_buffer(YY_CURRENT_BUFFER,input_file );
|
|
|
|
|
yy_load_buffer_state( );
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( YY_CURRENT_BUFFER )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* Flush out information for old buffer. */
|
2008-06-09 05:34:40 -04: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
|
|
|
}
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
YY_CURRENT_BUFFER_LVALUE = new_buffer;
|
|
|
|
|
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.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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);
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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;
|
2008-06-09 05:34:40 -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()" );
|
|
|
|
|
|
|
|
|
|
b->yy_buf_size = size;
|
|
|
|
|
|
|
|
|
|
/* yy_ch_buf has to be 2 characters longer than the size given because
|
|
|
|
|
* we need to put in 2 end-of-buffer characters.
|
|
|
|
|
*/
|
2008-06-09 05:34:40 -04:00
|
|
|
b->yy_ch_buf = (char *) yyalloc(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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_init_buffer(b,file );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return b;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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 )
|
2008-06-09 05:34:40 -04:00
|
|
|
yyfree((void *) b->yy_ch_buf );
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yyfree((void *) b );
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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 )
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
{
|
|
|
|
|
int oerrno = errno;
|
|
|
|
|
|
|
|
|
|
yy_flush_buffer(b );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
b->yy_input_file = file;
|
|
|
|
|
b->yy_fill_buffer = 1;
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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;
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ( b == YY_CURRENT_BUFFER )
|
|
|
|
|
yy_load_buffer_state( );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Pushes the new state onto the stack. The new state becomes
|
|
|
|
|
* the current state. This function will allocate the stack
|
|
|
|
|
* if necessary.
|
|
|
|
|
* @param new_buffer The new state.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
|
|
|
|
|
{
|
|
|
|
|
if (new_buffer == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
yyensure_buffer_stack();
|
|
|
|
|
|
|
|
|
|
/* This block is copied from yy_switch_to_buffer. */
|
|
|
|
|
if ( YY_CURRENT_BUFFER )
|
|
|
|
|
{
|
|
|
|
|
/* Flush out information for old buffer. */
|
|
|
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Only push if top exists. Otherwise, replace top. */
|
|
|
|
|
if (YY_CURRENT_BUFFER)
|
|
|
|
|
(yy_buffer_stack_top)++;
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = new_buffer;
|
|
|
|
|
|
|
|
|
|
/* copied from yy_switch_to_buffer. */
|
|
|
|
|
yy_load_buffer_state( );
|
|
|
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Removes and deletes the top of the stack, if present.
|
|
|
|
|
* The next element becomes the new top.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yypop_buffer_state (void)
|
|
|
|
|
{
|
|
|
|
|
if (!YY_CURRENT_BUFFER)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER );
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
|
|
|
if ((yy_buffer_stack_top) > 0)
|
|
|
|
|
--(yy_buffer_stack_top);
|
|
|
|
|
|
|
|
|
|
if (YY_CURRENT_BUFFER) {
|
|
|
|
|
yy_load_buffer_state( );
|
|
|
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Allocates the stack if it does not exist.
|
|
|
|
|
* Guarantees space for at least one push.
|
|
|
|
|
*/
|
|
|
|
|
static void yyensure_buffer_stack (void)
|
|
|
|
|
{
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t num_to_alloc;
|
2008-06-09 05:34:40 -04: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.
|
|
|
|
|
*/
|
|
|
|
|
num_to_alloc = 1;
|
|
|
|
|
(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
|
|
|
|
|
(num_to_alloc * sizeof(struct yy_buffer_state*)
|
|
|
|
|
);
|
2009-03-24 08:53:25 -04:00
|
|
|
if ( ! (yy_buffer_stack) )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
|
|
|
|
|
|
|
|
|
|
(yy_buffer_stack_max) = num_to_alloc;
|
|
|
|
|
(yy_buffer_stack_top) = 0;
|
|
|
|
|
return;
|
2008-02-29 05:59:26 -05:00
|
|
|
}
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* Increase the buffer to prepare for a possible push. */
|
|
|
|
|
int grow_size = 8 /* arbitrary grow size */;
|
|
|
|
|
|
|
|
|
|
num_to_alloc = (yy_buffer_stack_max) + grow_size;
|
|
|
|
|
(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
|
|
|
|
|
((yy_buffer_stack),
|
|
|
|
|
num_to_alloc * sizeof(struct yy_buffer_state*)
|
|
|
|
|
);
|
2009-03-24 08:53:25 -04:00
|
|
|
if ( ! (yy_buffer_stack) )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
|
2008-06-09 05:34:40 -04:00
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Setup the input buffer state to scan directly from a user-specified character buffer.
|
|
|
|
|
* @param base the character buffer
|
|
|
|
|
* @param size the size in bytes of the character buffer
|
|
|
|
|
*
|
|
|
|
|
* @return the newly allocated buffer state object.
|
|
|
|
|
*/
|
|
|
|
|
YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
|
|
|
|
|
{
|
|
|
|
|
YY_BUFFER_STATE b;
|
|
|
|
|
|
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. */
|
|
|
|
|
return 0;
|
|
|
|
|
|
2008-06-09 05:34:40 -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()" );
|
|
|
|
|
|
|
|
|
|
b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
|
|
|
|
|
b->yy_buf_pos = b->yy_ch_buf = base;
|
|
|
|
|
b->yy_is_our_buffer = 0;
|
|
|
|
|
b->yy_input_file = 0;
|
|
|
|
|
b->yy_n_chars = b->yy_buf_size;
|
|
|
|
|
b->yy_is_interactive = 0;
|
|
|
|
|
b->yy_at_bol = 1;
|
|
|
|
|
b->yy_fill_buffer = 0;
|
|
|
|
|
b->yy_buffer_status = YY_BUFFER_NEW;
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
yy_switch_to_buffer(b );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return b;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Setup the input buffer state to scan a string. The next call to yylex() will
|
|
|
|
|
* scan from a @e copy of @a str.
|
2009-03-24 08:53:25 -04:00
|
|
|
* @param yystr a NUL-terminated string to scan
|
2008-06-09 05:34:40 -04:00
|
|
|
*
|
|
|
|
|
* @return the newly allocated buffer state object.
|
|
|
|
|
* @note If you want to scan bytes that may contain NUL values, then use
|
|
|
|
|
* yy_scan_bytes() instead.
|
|
|
|
|
*/
|
|
|
|
|
YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return yy_scan_bytes(yystr,strlen(yystr) );
|
|
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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.
|
2013-04-15 03:57:08 -04:00
|
|
|
* @param yybytes the byte buffer to scan
|
|
|
|
|
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
|
2008-06-09 05:34:40 -04:00
|
|
|
*
|
|
|
|
|
* @return the newly allocated buffer state object.
|
|
|
|
|
*/
|
2013-11-12 05:08:54 -05:00
|
|
|
YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len )
|
2008-06-09 05:34:40 -04:00
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_STATE b;
|
|
|
|
|
char *buf;
|
|
|
|
|
yy_size_t n;
|
2014-11-14 10:59:30 -05:00
|
|
|
yy_size_t i;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Get memory for full buffer, including space for trailing EOB's. */
|
2008-06-09 05:34:40 -04:00
|
|
|
n = _yybytes_len + 2;
|
|
|
|
|
buf = (char *) yyalloc(n );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! buf )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
for ( i = 0; i < _yybytes_len; ++i )
|
|
|
|
|
buf[i] = yybytes[i];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -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;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef YY_EXIT_FAILURE
|
|
|
|
|
#define YY_EXIT_FAILURE 2
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
static void yy_fatal_error (yyconst char* msg )
|
|
|
|
|
{
|
|
|
|
|
(void) fprintf( stderr, "%s\n", msg );
|
|
|
|
|
exit( YY_EXIT_FAILURE );
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* Redefine yyless() so it works in section 3 code. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#undef yyless
|
|
|
|
|
#define yyless(n) \
|
|
|
|
|
do \
|
|
|
|
|
{ \
|
|
|
|
|
/* Undo effects of setting up yytext. */ \
|
|
|
|
|
int yyless_macro_arg = (n); \
|
|
|
|
|
YY_LESS_LINENO(yyless_macro_arg);\
|
|
|
|
|
yytext[yyleng] = (yy_hold_char); \
|
|
|
|
|
(yy_c_buf_p) = yytext + yyless_macro_arg; \
|
|
|
|
|
(yy_hold_char) = *(yy_c_buf_p); \
|
|
|
|
|
*(yy_c_buf_p) = '\0'; \
|
|
|
|
|
yyleng = yyless_macro_arg; \
|
|
|
|
|
} \
|
|
|
|
|
while ( 0 )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* Accessor methods (get/set functions) to struct members. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Get the current line number.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
int yyget_lineno (void)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return yylineno;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Get the input stream.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
FILE *yyget_in (void)
|
|
|
|
|
{
|
|
|
|
|
return yyin;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Get the output stream.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
FILE *yyget_out (void)
|
|
|
|
|
{
|
|
|
|
|
return yyout;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Get the length of the current token.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2013-11-12 05:08:54 -05:00
|
|
|
yy_size_t yyget_leng (void)
|
2008-06-09 05:34:40 -04:00
|
|
|
{
|
|
|
|
|
return yyleng;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Get the current token.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
char *yyget_text (void)
|
|
|
|
|
{
|
|
|
|
|
return yytext;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Set the current line number.
|
|
|
|
|
* @param line_number
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yyset_lineno (int line_number )
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
yylineno = line_number;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/** Set the input stream. This does not discard the current
|
|
|
|
|
* input buffer.
|
|
|
|
|
* @param in_str A readable stream.
|
|
|
|
|
*
|
|
|
|
|
* @see yy_switch_to_buffer
|
|
|
|
|
*/
|
|
|
|
|
void yyset_in (FILE * in_str )
|
|
|
|
|
{
|
|
|
|
|
yyin = in_str ;
|
|
|
|
|
}
|
2007-10-19 04:32:36 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
void yyset_out (FILE * out_str )
|
|
|
|
|
{
|
|
|
|
|
yyout = out_str ;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
int yyget_debug (void)
|
|
|
|
|
{
|
|
|
|
|
return yy_flex_debug;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void yyset_debug (int bdebug )
|
|
|
|
|
{
|
|
|
|
|
yy_flex_debug = bdebug ;
|
|
|
|
|
}
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
(yy_buffer_stack) = 0;
|
|
|
|
|
(yy_buffer_stack_top) = 0;
|
|
|
|
|
(yy_buffer_stack_max) = 0;
|
|
|
|
|
(yy_c_buf_p) = (char *) 0;
|
|
|
|
|
(yy_init) = 0;
|
|
|
|
|
(yy_start) = 0;
|
|
|
|
|
|
|
|
|
|
/* Defined in main.c */
|
|
|
|
|
#ifdef YY_STDINIT
|
|
|
|
|
yyin = stdin;
|
|
|
|
|
yyout = stdout;
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2008-06-09 05:34:40 -04:00
|
|
|
yyin = (FILE *) 0;
|
|
|
|
|
yyout = (FILE *) 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2008-06-09 05:34:40 -04: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
|
|
|
|
2008-06-09 05:34:40 -04: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){
|
|
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER );
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
|
|
|
yypop_buffer_state();
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/* Destroy the stack itself. */
|
|
|
|
|
yyfree((yy_buffer_stack) );
|
|
|
|
|
(yy_buffer_stack) = NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04: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
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
return 0;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
/*
|
|
|
|
|
* Internal utility routines.
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#ifndef yytext_ptr
|
2008-06-09 05:34:40 -04:00
|
|
|
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
register int i;
|
|
|
|
|
for ( i = 0; i < n; ++i )
|
|
|
|
|
s1[i] = s2[i];
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef YY_NEED_STRLEN
|
2008-06-09 05:34:40 -04:00
|
|
|
static int yy_flex_strlen (yyconst char * s )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
register int n;
|
|
|
|
|
for ( n = 0; s[n]; ++n )
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
return n;
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
void *yyalloc (yy_size_t size )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
return (void *) malloc( size );
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
void *yyrealloc (void * ptr, yy_size_t size )
|
|
|
|
|
{
|
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.
|
|
|
|
|
*/
|
|
|
|
|
return (void *) realloc( (char *) ptr, size );
|
2008-06-09 05:34:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void yyfree (void * ptr )
|
|
|
|
|
{
|
|
|
|
|
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define YYTABLES_NAME "yytables"
|
|
|
|
|
|
2015-02-02 03:46:22 -05:00
|
|
|
#line 446 "./util/configlexer.lex"
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2007-10-19 04:32:36 -04:00
|
|
|
|