5975 lines
227 KiB
C
5975 lines
227 KiB
C
/*
|
|
* This is an open source non-commercial project. Dear PVS-Studio, please check it.
|
|
* PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#line 3 "toke.c"
|
|
|
|
#define YY_INT_ALIGNED short int
|
|
|
|
/* $OpenBSD: flex.skl,v 1.17 2020/08/06 17:23:29 deraadt Exp $ */
|
|
|
|
/* A lexical scanner generated by flex */
|
|
|
|
#define yy_create_buffer sudoers_create_buffer
|
|
#define yy_delete_buffer sudoers_delete_buffer
|
|
#define yy_flex_debug sudoers_flex_debug
|
|
#define yy_init_buffer sudoers_init_buffer
|
|
#define yy_flush_buffer sudoers_flush_buffer
|
|
#define yy_load_buffer_state sudoers_load_buffer_state
|
|
#define yy_switch_to_buffer sudoers_switch_to_buffer
|
|
#define yyin sudoersin
|
|
#define yyleng sudoersleng
|
|
#define yylex sudoerslex
|
|
#define yylineno sudoerslineno
|
|
#define yyout sudoersout
|
|
#define yyrestart sudoersrestart
|
|
#define yytext sudoerstext
|
|
#define yywrap sudoerswrap
|
|
#define yyalloc sudoersalloc
|
|
#define yyrealloc sudoersrealloc
|
|
#define yyfree sudoersfree
|
|
|
|
#define FLEX_SCANNER
|
|
#define YY_FLEX_MAJOR_VERSION 2
|
|
#define YY_FLEX_MINOR_VERSION 5
|
|
#define YY_FLEX_SUBMINOR_VERSION 39
|
|
#if YY_FLEX_SUBMINOR_VERSION > 0
|
|
#define FLEX_BETA
|
|
#endif
|
|
|
|
/* First, we deal with platform-specific or compiler-specific issues. */
|
|
|
|
/* begin standard C headers. */
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
|
|
/* end standard C headers. */
|
|
|
|
/* $OpenBSD: flexint.h,v 1.1 2015/11/19 19:43:40 tedu Exp $ */
|
|
|
|
/* flex integer type definitions */
|
|
|
|
#ifndef FLEXINT_H
|
|
#define FLEXINT_H
|
|
|
|
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
|
|
|
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
|
|
|
/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
|
|
* if you want the limit (max/min) macros for int types.
|
|
*/
|
|
#ifndef __STDC_LIMIT_MACROS
|
|
#define __STDC_LIMIT_MACROS 1
|
|
#endif
|
|
|
|
#include <inttypes.h>
|
|
typedef int8_t flex_int8_t;
|
|
typedef uint8_t flex_uint8_t;
|
|
typedef int16_t flex_int16_t;
|
|
typedef uint16_t flex_uint16_t;
|
|
typedef int32_t flex_int32_t;
|
|
typedef uint32_t flex_uint32_t;
|
|
#else
|
|
typedef signed char flex_int8_t;
|
|
typedef short int flex_int16_t;
|
|
typedef int flex_int32_t;
|
|
typedef unsigned char flex_uint8_t;
|
|
typedef unsigned short int flex_uint16_t;
|
|
typedef unsigned int flex_uint32_t;
|
|
|
|
/* Limits of integral types. */
|
|
#ifndef INT8_MIN
|
|
#define INT8_MIN (-128)
|
|
#endif
|
|
#ifndef INT16_MIN
|
|
#define INT16_MIN (-32767-1)
|
|
#endif
|
|
#ifndef INT32_MIN
|
|
#define INT32_MIN (-2147483647-1)
|
|
#endif
|
|
#ifndef INT8_MAX
|
|
#define INT8_MAX (127)
|
|
#endif
|
|
#ifndef INT16_MAX
|
|
#define INT16_MAX (32767)
|
|
#endif
|
|
#ifndef INT32_MAX
|
|
#define INT32_MAX (2147483647)
|
|
#endif
|
|
#ifndef UINT8_MAX
|
|
#define UINT8_MAX (255U)
|
|
#endif
|
|
#ifndef UINT16_MAX
|
|
#define UINT16_MAX (65535U)
|
|
#endif
|
|
#ifndef UINT32_MAX
|
|
#define UINT32_MAX (4294967295U)
|
|
#endif
|
|
|
|
#endif /* ! C99 */
|
|
|
|
#endif /* ! FLEXINT_H */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
/* The "const" storage-class-modifier is valid. */
|
|
#define YY_USE_CONST
|
|
|
|
#else /* ! __cplusplus */
|
|
|
|
/* C99 requires __STDC__ to be defined as 1. */
|
|
#if defined (__STDC__)
|
|
|
|
#define YY_USE_CONST
|
|
|
|
#endif /* defined (__STDC__) */
|
|
#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.
|
|
*/
|
|
#define BEGIN (yy_start) = 1 + 2 *
|
|
|
|
/* Translate the current start state into a value that can be later handed
|
|
* to BEGIN to return to the state. The YYSTATE alias is for lex
|
|
* compatibility.
|
|
*/
|
|
#define YY_START (((yy_start) - 1) / 2)
|
|
#define YYSTATE YY_START
|
|
|
|
/* Action number for EOF rule of a given start state. */
|
|
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
|
|
|
|
/* Special action meaning "start processing a new file". */
|
|
#define YY_NEW_FILE sudoersrestart(sudoersin )
|
|
|
|
#define YY_END_OF_BUFFER_CHAR 0
|
|
|
|
/* Size of default input buffer. */
|
|
#ifndef YY_BUF_SIZE
|
|
#define YY_BUF_SIZE 16384
|
|
#endif
|
|
|
|
/* The state buf must be large enough to hold one state per character in the main buffer.
|
|
*/
|
|
#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
|
|
|
|
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
|
|
#define YY_TYPEDEF_YY_BUFFER_STATE
|
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
|
#endif
|
|
|
|
#ifndef YY_TYPEDEF_YY_SIZE_T
|
|
#define YY_TYPEDEF_YY_SIZE_T
|
|
typedef size_t yy_size_t;
|
|
#endif
|
|
|
|
extern yy_size_t sudoersleng;
|
|
|
|
extern FILE *sudoersin, *sudoersout;
|
|
|
|
#define EOB_ACT_CONTINUE_SCAN 0
|
|
#define EOB_ACT_END_OF_FILE 1
|
|
#define EOB_ACT_LAST_MATCH 2
|
|
|
|
#define YY_LESS_LINENO(n)
|
|
#define YY_LINENO_REWIND_TO(ptr)
|
|
|
|
/* Return all but the first "n" matched characters back to the input stream. */
|
|
#define yyless(n) \
|
|
do \
|
|
{ \
|
|
/* Undo effects of setting up sudoerstext. */ \
|
|
int yyless_macro_arg = (n); \
|
|
YY_LESS_LINENO(yyless_macro_arg);\
|
|
*yy_cp = (yy_hold_char); \
|
|
YY_RESTORE_YY_MORE_OFFSET \
|
|
(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
|
|
YY_DO_BEFORE_ACTION; /* set up sudoerstext again */ \
|
|
} \
|
|
while ( 0 )
|
|
|
|
#define unput(c) yyunput( c, (yytext_ptr) )
|
|
|
|
#ifndef YY_STRUCT_YY_BUFFER_STATE
|
|
#define YY_STRUCT_YY_BUFFER_STATE
|
|
struct yy_buffer_state
|
|
{
|
|
FILE *yy_input_file;
|
|
|
|
char *yy_ch_buf; /* input buffer */
|
|
char *yy_buf_pos; /* current position in input buffer */
|
|
|
|
/* Size of input buffer in bytes, not including room for EOB
|
|
* characters.
|
|
*/
|
|
yy_size_t yy_buf_size;
|
|
|
|
/* Number of characters read into yy_ch_buf, not including EOB
|
|
* characters.
|
|
*/
|
|
yy_size_t yy_n_chars;
|
|
|
|
/* Whether we "own" the buffer - i.e., we know we created it,
|
|
* and can realloc() it to grow it, and should free() it to
|
|
* delete it.
|
|
*/
|
|
int yy_is_our_buffer;
|
|
|
|
/* Whether this is an "interactive" input source; if so, and
|
|
* if we're using stdio for input, then we want to use getc()
|
|
* instead of fread(), to make sure we stop fetching input after
|
|
* each newline.
|
|
*/
|
|
int yy_is_interactive;
|
|
|
|
/* Whether we're considered to be at the beginning of a line.
|
|
* If so, '^' rules will be active on the next match, otherwise
|
|
* not.
|
|
*/
|
|
int yy_at_bol;
|
|
|
|
int yy_bs_lineno; /**< The line count. */
|
|
int yy_bs_column; /**< The column count. */
|
|
|
|
/* Whether to try to fill the input buffer when we reach the
|
|
* end of it.
|
|
*/
|
|
int yy_fill_buffer;
|
|
|
|
int yy_buffer_status;
|
|
|
|
#define YY_BUFFER_NEW 0
|
|
#define YY_BUFFER_NORMAL 1
|
|
/* When an EOF's been seen but there's still some text to process
|
|
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
|
|
* shouldn't try reading from the input source any more. We might
|
|
* still have a bunch of tokens to match, though, because of
|
|
* possible backing-up.
|
|
*
|
|
* When we actually see the EOF, we change the status to "new"
|
|
* (via sudoersrestart()), so that the user can continue scanning by
|
|
* just pointing sudoersin at a new input file.
|
|
*/
|
|
#define YY_BUFFER_EOF_PENDING 2
|
|
|
|
};
|
|
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
|
|
|
|
/* Stack of input buffers. */
|
|
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
|
|
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
|
|
static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
|
|
|
|
/* We provide macros for accessing buffer states in case in the
|
|
* future we want to put the buffer states in a more general
|
|
* "scanner state".
|
|
*
|
|
* Returns the top of the stack, or NULL.
|
|
*/
|
|
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
|
|
? (yy_buffer_stack)[(yy_buffer_stack_top)] \
|
|
: NULL)
|
|
|
|
/* Same as previous macro, but useful when we know that the buffer stack is not
|
|
* NULL or when we need an lvalue. For internal use only.
|
|
*/
|
|
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
|
|
|
|
/* yy_hold_char holds the character lost when sudoerstext is formed. */
|
|
static char yy_hold_char;
|
|
static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */
|
|
yy_size_t sudoersleng;
|
|
|
|
/* Points to current character in buffer. */
|
|
static char *yy_c_buf_p = (char *) 0;
|
|
static int yy_init = 0; /* whether we need to initialize */
|
|
static int yy_start = 0; /* start state number */
|
|
|
|
/* Flag which is used to allow sudoerswrap()'s to do buffer switches
|
|
* instead of setting up a fresh sudoersin. A bit of a hack ...
|
|
*/
|
|
static int yy_did_buffer_switch_on_eof;
|
|
|
|
void sudoersrestart (FILE *input_file );
|
|
void sudoers_switch_to_buffer (YY_BUFFER_STATE new_buffer );
|
|
YY_BUFFER_STATE sudoers_create_buffer (FILE *file,int size );
|
|
void sudoers_delete_buffer (YY_BUFFER_STATE b );
|
|
void sudoers_flush_buffer (YY_BUFFER_STATE b );
|
|
void sudoerspush_buffer_state (YY_BUFFER_STATE new_buffer );
|
|
void sudoerspop_buffer_state (void );
|
|
|
|
static void sudoersensure_buffer_stack (void );
|
|
static void sudoers_load_buffer_state (void );
|
|
static void sudoers_init_buffer (YY_BUFFER_STATE b,FILE *file );
|
|
|
|
#define YY_FLUSH_BUFFER sudoers_flush_buffer(YY_CURRENT_BUFFER )
|
|
|
|
YY_BUFFER_STATE sudoers_scan_buffer (char *base,yy_size_t size );
|
|
YY_BUFFER_STATE sudoers_scan_string (yyconst char *yy_str );
|
|
YY_BUFFER_STATE sudoers_scan_bytes (yyconst char *bytes,yy_size_t len );
|
|
|
|
void *sudoersalloc (yy_size_t );
|
|
void *sudoersrealloc (void *,yy_size_t );
|
|
void sudoersfree (void * );
|
|
|
|
#define yy_new_buffer sudoers_create_buffer
|
|
|
|
#define yy_set_interactive(is_interactive) \
|
|
{ \
|
|
if ( ! YY_CURRENT_BUFFER ){ \
|
|
sudoersensure_buffer_stack (); \
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
|
sudoers_create_buffer(sudoersin,YY_BUF_SIZE ); \
|
|
} \
|
|
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
|
|
}
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
{ \
|
|
if ( ! YY_CURRENT_BUFFER ){\
|
|
sudoersensure_buffer_stack (); \
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
|
sudoers_create_buffer(sudoersin,YY_BUF_SIZE ); \
|
|
} \
|
|
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
|
|
}
|
|
|
|
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
|
|
|
|
/* Begin user sect3 */
|
|
|
|
#define sudoerswrap() 1
|
|
#define YY_SKIP_YYWRAP
|
|
|
|
typedef unsigned char YY_CHAR;
|
|
|
|
FILE *sudoersin = (FILE *) 0, *sudoersout = (FILE *) 0;
|
|
|
|
typedef int yy_state_type;
|
|
|
|
extern int sudoerslineno;
|
|
|
|
int sudoerslineno = 1;
|
|
|
|
extern char *sudoerstext;
|
|
#define yytext_ptr sudoerstext
|
|
|
|
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[] );
|
|
|
|
/* Done after the current pattern has been matched and before the
|
|
* corresponding action - sets up sudoerstext.
|
|
*/
|
|
#define YY_DO_BEFORE_ACTION \
|
|
(yytext_ptr) = yy_bp; \
|
|
sudoersleng = (size_t) (yy_cp - yy_bp); \
|
|
(yy_hold_char) = *yy_cp; \
|
|
*yy_cp = '\0'; \
|
|
(yy_c_buf_p) = yy_cp;
|
|
|
|
#define YY_NUM_RULES 88
|
|
#define YY_END_OF_BUFFER 89
|
|
/* This struct is not used in this scanner,
|
|
but its presence is necessary. */
|
|
struct yy_trans_info
|
|
{
|
|
flex_int32_t yy_verify;
|
|
flex_int32_t yy_nxt;
|
|
};
|
|
static yyconst flex_int16_t yy_accept[1226] =
|
|
{ 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
89, 74, 84, 83, 87, 82, 73, 86, 46, 77,
|
|
78, 46, 79, 74, 74, 74, 74, 81, 80, 87,
|
|
74, 63, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 87, 74, 74, 74, 84,
|
|
86, 63, 63, 63, 63, 63, 2, 87, 1, 74,
|
|
63, 63, 63, 74, 74, 17, 16, 16, 17, 16,
|
|
16, 87, 21, 21, 19, 19, 21, 19, 20, 87,
|
|
86, 87, 3, 9, 8, 9, 4, 9, 5, 87,
|
|
|
|
13, 13, 13, 11, 12, 87, 23, 23, 22, 22,
|
|
22, 23, 22, 22, 22, 22, 23, 23, 23, 23,
|
|
23, 23, 23, 87, 22, 23, 23, 75, 75, 76,
|
|
75, 70, 70, 70, 70, 70, 70, 70, 63, 63,
|
|
63, 63, 63, 63, 63, 63, 63, 63, 63, 87,
|
|
70, 70, 70, 74, 0, 84, 83, 82, 86, 86,
|
|
0, 0, 74, 48, 0, 46, 0, 47, 0, 71,
|
|
71, 0, 74, 74, 0, 74, 74, 74, 74, 0,
|
|
51, 74, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
|
|
0, 85, 74, 74, 74, 0, 72, 0, 74, 74,
|
|
84, 0, 0, 0, 0, 0, 86, 74, 74, 74,
|
|
74, 74, 2, 1, 0, 1, 64, 64, 0, 63,
|
|
74, 0, 64, 0, 74, 17, 17, 15, 0, 14,
|
|
15, 21, 21, 21, 18, 18, 0, 3, 9, 0,
|
|
6, 7, 9, 9, 13, 0, 13, 13, 0, 10,
|
|
0, 48, 0, 0, 47, 23, 23, 0, 23, 0,
|
|
0, 22, 22, 22, 22, 22, 22, 23, 23, 63,
|
|
23, 23, 23, 23, 23, 23, 23, 23, 72, 0,
|
|
23, 23, 75, 75, 75, 70, 0, 48, 0, 47,
|
|
|
|
0, 70, 70, 0, 70, 70, 70, 70, 70, 70,
|
|
63, 63, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
63, 70, 70, 70, 70, 0, 70, 70, 86, 86,
|
|
86, 0, 48, 74, 74, 74, 74, 74, 0, 0,
|
|
51, 51, 74, 63, 53, 63, 57, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 63, 63, 72, 74, 74,
|
|
74, 0, 0, 0, 0, 0, 86, 74, 74, 74,
|
|
74, 74, 74, 0, 64, 0, 64, 74, 74, 10,
|
|
0, 0, 0, 22, 22, 22, 23, 23, 23, 23,
|
|
|
|
23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
|
|
23, 72, 23, 23, 0, 70, 70, 70, 70, 70,
|
|
63, 53, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 63, 70, 70, 70, 70,
|
|
86, 86, 86, 74, 74, 74, 74, 74, 74, 0,
|
|
52, 52, 52, 0, 0, 51, 51, 51, 51, 51,
|
|
51, 51, 74, 63, 63, 63, 63, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
63, 63, 59, 63, 63, 60, 74, 74, 74, 74,
|
|
0, 0, 0, 0, 0, 0, 86, 74, 74, 74,
|
|
|
|
64, 74, 0, 0, 0, 0, 0, 22, 22, 23,
|
|
23, 23, 63, 23, 23, 23, 23, 23, 23, 23,
|
|
23, 23, 23, 23, 23, 23, 23, 70, 70, 70,
|
|
70, 70, 70, 63, 63, 63, 63, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 63, 63, 63, 70, 70,
|
|
70, 70, 74, 74, 74, 0, 0, 52, 52, 52,
|
|
0, 51, 51, 0, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 74, 63, 0, 33, 63,
|
|
63, 63, 63, 63, 0, 42, 63, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 63, 61, 63, 63, 74,
|
|
|
|
74, 74, 74, 74, 0, 0, 0, 86, 74, 74,
|
|
74, 0, 0, 0, 22, 22, 23, 23, 63, 63,
|
|
23, 23, 23, 23, 23, 23, 23, 23, 23, 23,
|
|
23, 23, 23, 23, 70, 70, 70, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
70, 70, 70, 70, 70, 74, 74, 74, 74, 74,
|
|
0, 52, 0, 51, 51, 51, 0, 0, 0, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 74, 58, 63, 63, 63, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
|
|
63, 65, 66, 67, 68, 74, 0, 0, 86, 74,
|
|
74, 74, 0, 0, 0, 0, 0, 23, 23, 63,
|
|
63, 23, 23, 23, 63, 23, 23, 23, 23, 23,
|
|
23, 23, 23, 23, 23, 70, 70, 70, 70, 70,
|
|
63, 63, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
63, 63, 63, 65, 66, 67, 68, 70, 49, 49,
|
|
49, 0, 0, 51, 51, 51, 51, 51, 51, 51,
|
|
0, 0, 0, 0, 0, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 74,
|
|
0, 44, 63, 63, 63, 63, 0, 32, 63, 63,
|
|
|
|
63, 63, 0, 43, 63, 63, 63, 63, 0, 31,
|
|
0, 36, 54, 74, 0, 0, 86, 74, 74, 74,
|
|
49, 49, 49, 23, 63, 63, 23, 23, 63, 63,
|
|
23, 23, 23, 49, 49, 49, 63, 63, 63, 63,
|
|
63, 63, 63, 63, 63, 70, 74, 49, 49, 49,
|
|
49, 0, 51, 0, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 0, 0, 0, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 24, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
63, 63, 56, 63, 69, 0, 0, 86, 74, 28,
|
|
|
|
64, 0, 49, 49, 49, 49, 23, 63, 63, 23,
|
|
23, 63, 63, 23, 23, 23, 70, 49, 49, 49,
|
|
49, 63, 63, 63, 63, 63, 63, 63, 63, 63,
|
|
69, 50, 50, 50, 50, 51, 0, 0, 0, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 0, 0, 0, 0, 0, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 74, 63, 63, 63, 63,
|
|
0, 45, 63, 63, 63, 0, 30, 0, 37, 55,
|
|
0, 28, 26, 86, 29, 0, 74, 50, 50, 50,
|
|
50, 23, 63, 63, 23, 63, 63, 50, 50, 50,
|
|
|
|
50, 63, 63, 63, 63, 63, 63, 74, 74, 50,
|
|
50, 50, 50, 0, 0, 0, 0, 0, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 74, 0,
|
|
34, 62, 0, 40, 63, 63, 63, 63, 29, 26,
|
|
26, 26, 26, 86, 28, 0, 0, 0, 0, 0,
|
|
28, 0, 0, 0, 50, 50, 50, 50, 63, 23,
|
|
63, 63, 70, 70, 50, 50, 50, 50, 63, 63,
|
|
63, 63, 74, 74, 74, 0, 0, 0, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 51, 51, 51, 51,
|
|
|
|
51, 51, 51, 51, 51, 51, 25, 0, 38, 63,
|
|
63, 63, 26, 86, 0, 28, 0, 0, 0, 23,
|
|
63, 63, 70, 70, 70, 63, 63, 63, 74, 74,
|
|
74, 74, 74, 0, 0, 0, 0, 0, 51, 51,
|
|
51, 51, 51, 51, 51, 51, 0, 35, 0, 41,
|
|
63, 27, 0, 0, 0, 0, 0, 63, 70, 70,
|
|
70, 70, 70, 63, 74, 74, 74, 51, 51, 51,
|
|
51, 51, 51, 0, 39, 27, 27, 27, 27, 0,
|
|
0, 0, 70, 70, 70, 74, 74, 74, 74, 74,
|
|
51, 51, 51, 51, 51, 27, 0, 0, 0, 0,
|
|
|
|
0, 70, 70, 70, 70, 70, 49, 49, 49, 49,
|
|
49, 49, 49, 49, 49, 49, 49, 49, 49, 49,
|
|
49, 49, 49, 49, 0
|
|
} ;
|
|
|
|
static yyconst flex_int32_t yy_ec[256] =
|
|
{ 0,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
|
|
4, 4, 5, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 6, 7, 8, 9, 10, 11, 1, 1, 12,
|
|
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
|
|
23, 24, 25, 26, 27, 28, 29, 30, 1, 1,
|
|
31, 32, 14, 33, 34, 35, 36, 37, 38, 39,
|
|
40, 41, 42, 43, 43, 44, 45, 46, 47, 48,
|
|
43, 49, 50, 51, 52, 53, 54, 55, 56, 43,
|
|
14, 57, 14, 58, 59, 1, 60, 61, 62, 63,
|
|
|
|
64, 65, 66, 67, 68, 66, 66, 69, 70, 71,
|
|
72, 66, 66, 73, 74, 75, 76, 66, 66, 66,
|
|
66, 66, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1
|
|
} ;
|
|
|
|
static yyconst flex_int32_t yy_meta[77] =
|
|
{ 0,
|
|
1, 2, 3, 4, 3, 2, 5, 6, 7, 8,
|
|
1, 9, 9, 1, 10, 11, 1, 12, 13, 14,
|
|
14, 14, 14, 14, 14, 14, 14, 14, 14, 15,
|
|
16, 9, 1, 14, 14, 14, 14, 14, 14, 17,
|
|
17, 17, 17, 17, 17, 17, 17, 17, 17, 17,
|
|
17, 17, 17, 17, 17, 17, 18, 1, 19, 20,
|
|
20, 20, 20, 20, 20, 21, 21, 21, 21, 21,
|
|
21, 21, 21, 21, 21, 21
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_base[1350] =
|
|
{ 0,
|
|
0, 75, 126, 199, 83, 91, 99, 176, 272, 347,
|
|
422, 478, 131, 147, 535, 0, 187, 219, 611, 0,
|
|
6107, 6049, 76, 9534, 6102, 6087, 9534, 685, 101, 9534,
|
|
9534, 6025, 9534, 199, 697, 238, 143, 6021, 9534, 9534,
|
|
23, 762, 6006, 76, 71, 97, 819, 5980, 76, 5991,
|
|
5976, 112, 5964, 5972, 87, 883, 914, 262, 152, 266,
|
|
969, 176, 39, 5937, 100, 5889, 197, 299, 167, 298,
|
|
5915, 5900, 5910, 1036, 237, 0, 9534, 5940, 5918, 9534,
|
|
0, 1092, 0, 196, 9534, 5921, 5916, 9534, 9534, 234,
|
|
1148, 249, 0, 5864, 9534, 94, 9534, 140, 9534, 290,
|
|
|
|
5860, 306, 153, 9534, 356, 240, 1177, 1236, 1281, 345,
|
|
355, 1340, 1391, 5869, 198, 194, 1448, 5853, 5830, 5842,
|
|
5828, 5824, 5811, 177, 363, 0, 233, 5772, 294, 9534,
|
|
391, 5771, 417, 5768, 433, 1496, 434, 378, 1561, 5780,
|
|
388, 270, 1618, 5765, 5756, 5768, 5754, 5743, 5727, 1682,
|
|
1713, 478, 415, 5700, 737, 462, 9534, 5736, 211, 9534,
|
|
5727, 490, 500, 5670, 672, 440, 926, 5669, 971, 861,
|
|
5667, 1769, 880, 1784, 5674, 5685, 939, 984, 927, 5672,
|
|
414, 379, 1849, 1906, 5644, 5624, 5635, 5626, 5562, 5539,
|
|
5542, 5546, 5541, 976, 5532, 5538, 5529, 5521, 5526, 5522,
|
|
|
|
528, 9534, 431, 1026, 1970, 385, 5502, 862, 300, 410,
|
|
1028, 5481, 5486, 5475, 5457, 5458, 857, 684, 387, 418,
|
|
659, 412, 859, 746, 1033, 768, 1077, 5474, 2026, 1076,
|
|
2057, 681, 5438, 1031, 414, 0, 5487, 1068, 5490, 9534,
|
|
9534, 0, 769, 5485, 9534, 1073, 1115, 0, 5413, 1094,
|
|
9534, 9534, 5382, 1125, 5381, 5406, 1105, 721, 1152, 864,
|
|
5410, 868, 1103, 1191, 5354, 2114, 0, 1250, 2173, 1184,
|
|
1204, 2215, 5381, 1250, 1263, 1196, 2266, 2323, 5354, 0,
|
|
5359, 5284, 5275, 5273, 5262, 1342, 5253, 5251, 9534, 694,
|
|
5235, 5224, 5229, 1203, 916, 5228, 1536, 5227, 1725, 5183,
|
|
|
|
1756, 1483, 5182, 2387, 1643, 2402, 5220, 1477, 1681, 1373,
|
|
2467, 2524, 5173, 5162, 5148, 5140, 5150, 5124, 1786, 5102,
|
|
5073, 432, 1671, 2588, 5066, 1154, 680, 854, 266, 847,
|
|
873, 1769, 1926, 2628, 2668, 2708, 2746, 5104, 5091, 2792,
|
|
910, 2839, 879, 2904, 2961, 5051, 0, 5048, 5037, 5042,
|
|
5029, 5011, 5023, 5001, 4995, 4995, 4993, 4995, 4983, 4965,
|
|
264, 4941, 4911, 4925, 4913, 4910, 4886, 3025, 3081, 994,
|
|
394, 16, 4858, 4848, 4840, 4823, 907, 896, 918, 4814,
|
|
913, 837, 123, 1979, 9534, 990, 3137, 3193, 978, 1080,
|
|
1993, 2023, 2054, 3231, 4855, 3282, 3339, 4834, 4809, 4814,
|
|
|
|
4792, 4770, 4751, 4758, 4758, 4737, 4741, 4740, 4735, 4716,
|
|
4720, 1015, 1094, 4685, 2089, 3387, 3427, 3467, 3507, 4738,
|
|
3553, 0, 4674, 4665, 4670, 4636, 4650, 4638, 4635, 4624,
|
|
4608, 4614, 4597, 4577, 4564, 4563, 3617, 3673, 1123, 1075,
|
|
9534, 1180, 1236, 1936, 925, 3713, 3753, 2079, 699, 4570,
|
|
4569, 2128, 1318, 4568, 4560, 1062, 1182, 3793, 2139, 1726,
|
|
3840, 2174, 1110, 3905, 992, 1544, 1057, 1212, 1162, 1341,
|
|
1827, 821, 955, 1477, 1342, 1222, 1215, 1645, 1122, 1075,
|
|
65, 1359, 4534, 1267, 1159, 4533, 1636, 736, 1145, 1424,
|
|
4503, 4497, 4490, 4457, 4468, 4454, 1524, 1351, 1697, 1350,
|
|
|
|
1241, 1490, 2187, 4480, 2199, 2237, 2088, 3962, 4013, 4088,
|
|
2006, 2140, 1447, 1850, 2024, 2361, 1973, 2367, 2368, 2449,
|
|
2562, 2444, 2563, 1514, 4458, 4461, 4398, 2550, 1520, 4136,
|
|
4176, 2357, 1507, 4413, 2268, 4395, 4392, 1650, 2442, 4396,
|
|
4371, 4344, 4354, 4349, 4340, 4326, 4315, 4322, 1758, 737,
|
|
1629, 1506, 4216, 4256, 4296, 4337, 4322, 2601, 4322, 4320,
|
|
4319, 4307, 1630, 2612, 1808, 2638, 1821, 4336, 0, 2650,
|
|
4384, 2678, 2688, 4431, 2720, 1516, 1688, 2443, 9534, 478,
|
|
1681, 1015, 1694, 1706, 2450, 9534, 1686, 1329, 1361, 1773,
|
|
1449, 1729, 1621, 1786, 1957, 1705, 4305, 1805, 1813, 1760,
|
|
|
|
1423, 1949, 1917, 1703, 4300, 4235, 4213, 2020, 1785, 1935,
|
|
1798, 2732, 2768, 2814, 4245, 4242, 2842, 2877, 4225, 4218,
|
|
2880, 2999, 2879, 3000, 3006, 3012, 2882, 3009, 3014, 4223,
|
|
4206, 4206, 4207, 4165, 4479, 4519, 4559, 4163, 4159, 4146,
|
|
4125, 4119, 4103, 4108, 4086, 4100, 4082, 4091, 4091, 4068,
|
|
1983, 1972, 2036, 2033, 1927, 2694, 2050, 4599, 4639, 3048,
|
|
4090, 4089, 4075, 4074, 4677, 1975, 3096, 3108, 3134, 2097,
|
|
2103, 2111, 3150, 2253, 4725, 0, 3056, 4773, 3160, 2869,
|
|
4820, 3190, 1934, 4063, 3097, 2054, 1832, 1521, 2087, 3190,
|
|
2093, 2036, 2146, 3191, 2007, 2188, 2056, 2096, 3232, 3233,
|
|
|
|
2216, 4035, 4034, 4014, 4013, 2216, 3977, 3962, 2406, 2297,
|
|
2172, 2298, 3220, 4012, 3253, 3361, 3208, 3284, 3389, 3981,
|
|
3886, 3390, 3391, 3392, 2092, 3427, 3428, 3429, 3430, 3437,
|
|
0, 0, 0, 0, 3850, 3480, 2358, 4868, 4908, 3456,
|
|
3440, 3879, 3859, 3848, 3467, 3848, 3824, 2359, 3508, 3818,
|
|
3805, 3509, 3510, 3793, 3768, 3767, 3752, 2345, 4947, 4986,
|
|
5025, 3758, 3742, 3714, 3527, 5065, 3537, 3441, 5111, 3575,
|
|
3614, 3714, 3632, 3644, 3587, 2423, 2424, 2537, 2584, 3670,
|
|
2587, 5159, 0, 3688, 5207, 3699, 3497, 5254, 3725, 2080,
|
|
3753, 9534, 5319, 2127, 2130, 3681, 3754, 9534, 2422, 2220,
|
|
|
|
2387, 2316, 3755, 9534, 2410, 2368, 1704, 1889, 3756, 9534,
|
|
3761, 9534, 3667, 2315, 3633, 3625, 2578, 2400, 2225, 2540,
|
|
3773, 3814, 3861, 5381, 3635, 3636, 2562, 2563, 3605, 3579,
|
|
2543, 2628, 3553, 5439, 5478, 5517, 5574, 2356, 3578, 2629,
|
|
2691, 2636, 2560, 2750, 2751, 2748, 3988, 1072, 5632, 5671,
|
|
4076, 3591, 3564, 4114, 2815, 4146, 2974, 5711, 0, 4158,
|
|
5724, 4186, 3783, 5770, 4198, 4228, 4240, 4268, 2868, 2876,
|
|
3030, 3033, 4278, 3035, 5818, 0, 4308, 5866, 4319, 3824,
|
|
4358, 2946, 5931, 2711, 3475, 2272, 4386, 2956, 2596, 3472,
|
|
4387, 4433, 3448, 2996, 3415, 3408, 3350, 3763, 2823, 3864,
|
|
|
|
3360, 4404, 3361, 4452, 4490, 4501, 5993, 3320, 3288, 4434,
|
|
3007, 3291, 3264, 4527, 4559, 0, 4546, 2744, 6051, 6090,
|
|
4572, 6147, 3247, 2627, 4600, 3047, 2798, 3213, 4602, 4603,
|
|
3179, 6206, 6246, 6286, 6326, 3197, 4616, 4651, 4663, 3192,
|
|
3010, 3066, 4697, 3074, 6366, 0, 4747, 6379, 4707, 3982,
|
|
6425, 4795, 4840, 3128, 4880, 4892, 4531, 3076, 3121, 3269,
|
|
2759, 2806, 6473, 0, 4807, 3215, 4947, 2800, 4948, 3064,
|
|
3906, 9534, 2962, 2819, 3013, 4100, 9534, 4101, 9534, 3057,
|
|
3027, 3757, 3908, 3097, 2936, 4481, 4870, 4961, 4998, 5010,
|
|
5037, 4950, 4229, 2860, 3059, 2795, 2731, 6485, 6525, 6565,
|
|
|
|
6605, 5066, 5067, 2673, 3156, 2884, 3375, 5085, 3091, 6645,
|
|
6685, 4937, 3180, 4918, 2669, 5133, 5181, 4758, 2613, 2527,
|
|
3388, 3407, 5227, 3410, 6725, 0, 5276, 6738, 5237, 5054,
|
|
6784, 5451, 5462, 5489, 5500, 3270, 2464, 3123, 2509, 4306,
|
|
9534, 2424, 4528, 9534, 5113, 2410, 2383, 3139, 9534, 2797,
|
|
4184, 9534, 3014, 3641, 5161, 5547, 5660, 5668, 5540, 5319,
|
|
5699, 5906, 5658, 2394, 5746, 5792, 5287, 2353, 4529, 2305,
|
|
2218, 2196, 5839, 3565, 6832, 6872, 5698, 3588, 5114, 2128,
|
|
2084, 3233, 6912, 6952, 6992, 6063, 6075, 6102, 2041, 1969,
|
|
3453, 3468, 6112, 3602, 7032, 0, 6218, 7045, 6229, 5191,
|
|
|
|
6258, 1970, 6269, 6297, 5690, 1748, 1642, 4605, 9534, 5528,
|
|
5820, 1504, 9534, 4644, 6307, 6336, 6348, 6401, 6447, 5821,
|
|
4869, 1397, 7093, 7133, 7173, 5910, 6514, 1372, 6501, 3645,
|
|
7213, 7253, 6513, 6551, 1296, 6577, 6589, 5758, 1208, 1154,
|
|
3658, 1005, 936, 6617, 0, 3992, 5546, 9534, 5575, 9534,
|
|
6645, 4990, 6632, 869, 6658, 6697, 6413, 5867, 6712, 3659,
|
|
7293, 7333, 6539, 6784, 7373, 7413, 7453, 6804, 6842, 6852,
|
|
709, 0, 460, 5868, 9534, 3161, 5904, 9534, 3367, 6884,
|
|
6896, 6924, 7493, 7533, 7573, 6934, 3660, 7613, 7653, 6670,
|
|
9534, 6972, 7002, 6317, 9534, 9534, 7012, 364, 7067, 7105,
|
|
|
|
6459, 7115, 3834, 7693, 7733, 6760, 7153, 7191, 7229, 7239,
|
|
7267, 7277, 7306, 7316, 7354, 172, 7392, 7146, 9534, 7430,
|
|
6771, 100, 7440, 7164, 9534, 7790, 7811, 7832, 7853, 7874,
|
|
7895, 7916, 7937, 7958, 7979, 8000, 3878, 8021, 8042, 8063,
|
|
8084, 8105, 8126, 3565, 8147, 8168, 8189, 8210, 8231, 8252,
|
|
8273, 8294, 8315, 8336, 8357, 8378, 8399, 8420, 8441, 8462,
|
|
8483, 8504, 8525, 8546, 4295, 4598, 8555, 8575, 8596, 8617,
|
|
8638, 8659, 8680, 8701, 8722, 3974, 8743, 8764, 8785, 8806,
|
|
8818, 8839, 4983, 8860, 8881, 8902, 8923, 8944, 8965, 8986,
|
|
9007, 9028, 9049, 5900, 9058, 9078, 9099, 9120, 9141, 5919,
|
|
|
|
6129, 6139, 9150, 9158, 9178, 9199, 5308, 6245, 6285, 6365,
|
|
9208, 9217, 6684, 6822, 6868, 9225, 9234, 6871, 6951, 9242,
|
|
9251, 9271, 6824, 9283, 9304, 6968, 9314, 9322, 9331, 9351,
|
|
6970, 9363, 9384, 6988, 9394, 9402, 9411, 9431, 9452, 9473,
|
|
6991, 9483, 4171, 7028, 9492, 7031, 5651, 9512, 4638
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_def[1350] =
|
|
{ 0,
|
|
1225, 1, 1, 1, 1226, 1226, 1227, 1227, 1228, 1228,
|
|
1229, 1229, 1230, 1230, 1225, 15, 1231, 1231, 1225, 19,
|
|
1225, 1232, 1225, 1225, 1225, 1225, 1225, 1233, 1234, 1225,
|
|
1225, 1235, 1225, 1236, 1232, 35, 35, 1237, 1225, 1225,
|
|
1232, 1225, 42, 42, 42, 42, 42, 47, 47, 47,
|
|
47, 47, 47, 47, 47, 1232, 1238, 35, 1232, 1225,
|
|
1233, 42, 42, 47, 47, 47, 1225, 1225, 1225, 1239,
|
|
47, 47, 47, 1240, 1232, 1241, 1225, 1225, 1241, 1225,
|
|
1241, 1225, 1242, 1242, 1225, 1225, 1242, 1225, 1225, 1243,
|
|
1233, 1225, 1244, 1245, 1225, 1245, 1225, 1245, 1225, 1246,
|
|
|
|
1247, 1247, 1247, 1225, 1225, 1248, 1249, 1250, 1225, 109,
|
|
109, 109, 1225, 113, 113, 113, 113, 117, 117, 117,
|
|
117, 117, 117, 1251, 109, 112, 112, 1252, 1252, 1225,
|
|
1252, 1253, 1254, 1255, 1256, 1253, 136, 136, 1225, 139,
|
|
139, 139, 139, 143, 143, 143, 143, 143, 143, 1253,
|
|
1257, 136, 1253, 1258, 1258, 1225, 1225, 1225, 1259, 1225,
|
|
1225, 1260, 1225, 1261, 1225, 1248, 1261, 1262, 1262, 1263,
|
|
1264, 1258, 1258, 1258, 1265, 174, 174, 174, 174, 1266,
|
|
1267, 1258, 1225, 183, 184, 184, 184, 184, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
|
|
|
|
1225, 1225, 1258, 1258, 1268, 1269, 1258, 1268, 1258, 1258,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1259, 1258, 174, 1258,
|
|
1258, 1258, 1225, 1225, 1225, 1225, 1270, 1271, 1258, 184,
|
|
1272, 1273, 1258, 1272, 1258, 1274, 1274, 1225, 1225, 1225,
|
|
1225, 1275, 1275, 1275, 1225, 1225, 1260, 1276, 1277, 1277,
|
|
1225, 1225, 1277, 1277, 1278, 1225, 1278, 1278, 1225, 1225,
|
|
1225, 1248, 1248, 1248, 1279, 1280, 1281, 1279, 1282, 1225,
|
|
1225, 1281, 272, 272, 272, 272, 1225, 277, 278, 1283,
|
|
278, 278, 278, 278, 278, 278, 278, 278, 1225, 1269,
|
|
1281, 1281, 1284, 1284, 1284, 1285, 1285, 1286, 1286, 1287,
|
|
|
|
1287, 1288, 1289, 1285, 1285, 1285, 306, 306, 306, 306,
|
|
1225, 311, 312, 312, 312, 312, 312, 312, 312, 312,
|
|
312, 1285, 1285, 1290, 1285, 1290, 1285, 1285, 1291, 1291,
|
|
1292, 1225, 1225, 1293, 1293, 1293, 1293, 337, 1294, 1225,
|
|
1295, 1225, 1293, 1225, 344, 345, 345, 345, 345, 345,
|
|
345, 345, 345, 345, 345, 345, 345, 345, 345, 345,
|
|
345, 345, 345, 345, 345, 345, 345, 1296, 1296, 1293,
|
|
1293, 1225, 1225, 1225, 1225, 1225, 1291, 1293, 1293, 337,
|
|
1293, 1293, 1293, 1225, 1225, 1297, 1298, 1298, 1293, 1225,
|
|
1225, 1225, 1225, 1281, 394, 1225, 396, 397, 397, 397,
|
|
|
|
397, 397, 397, 397, 397, 397, 397, 397, 397, 397,
|
|
397, 1299, 1281, 1281, 1225, 1285, 1285, 1285, 306, 419,
|
|
311, 312, 312, 312, 312, 312, 312, 312, 312, 312,
|
|
312, 312, 312, 312, 312, 312, 1290, 1290, 1285, 1285,
|
|
1225, 1292, 1292, 1293, 1293, 1293, 1293, 1293, 1293, 1300,
|
|
1301, 1301, 452, 1302, 1301, 1303, 1304, 1225, 458, 458,
|
|
1225, 458, 1293, 1225, 464, 464, 464, 464, 464, 464,
|
|
464, 464, 464, 464, 464, 464, 464, 464, 464, 464,
|
|
464, 464, 464, 464, 464, 464, 1293, 1293, 1293, 1293,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1305, 1293, 1293, 1293,
|
|
|
|
1306, 1293, 1225, 1225, 1225, 1225, 1225, 1281, 1225, 509,
|
|
510, 510, 1307, 510, 510, 510, 510, 510, 510, 510,
|
|
510, 510, 510, 1281, 1281, 1281, 1281, 1285, 1285, 1285,
|
|
1285, 1285, 1285, 312, 312, 312, 312, 312, 312, 312,
|
|
312, 312, 312, 312, 312, 312, 312, 312, 1285, 1285,
|
|
1285, 1285, 1293, 1293, 1293, 1225, 1308, 1308, 558, 1308,
|
|
1309, 1310, 1311, 1225, 1312, 461, 1312, 1225, 568, 1312,
|
|
1225, 571, 571, 1225, 571, 1293, 464, 1225, 1225, 464,
|
|
464, 464, 464, 464, 1225, 1225, 464, 464, 464, 464,
|
|
464, 464, 464, 464, 464, 464, 464, 464, 464, 1293,
|
|
|
|
1293, 1293, 1293, 1293, 1225, 1225, 1225, 1305, 1293, 1293,
|
|
1293, 1225, 1225, 1225, 508, 509, 510, 510, 1307, 1307,
|
|
510, 510, 510, 510, 510, 510, 510, 510, 510, 1281,
|
|
1281, 1281, 1281, 1281, 1285, 1285, 1285, 312, 312, 312,
|
|
312, 312, 312, 312, 312, 312, 312, 312, 312, 312,
|
|
1285, 1285, 1285, 1285, 1285, 1293, 1293, 1293, 1293, 1293,
|
|
1313, 1313, 1314, 1315, 1225, 1225, 1225, 1225, 1225, 1316,
|
|
1316, 1317, 574, 1317, 1225, 675, 1317, 1225, 678, 678,
|
|
1225, 678, 1293, 464, 464, 464, 464, 464, 464, 464,
|
|
464, 464, 464, 464, 464, 464, 464, 464, 464, 464,
|
|
|
|
464, 1293, 1293, 1293, 1293, 1293, 1225, 1225, 1305, 1293,
|
|
1293, 1293, 1225, 1225, 1225, 1225, 1225, 510, 510, 1307,
|
|
1307, 510, 510, 510, 1307, 510, 510, 510, 510, 510,
|
|
1281, 1281, 1281, 1281, 1281, 1285, 1285, 1285, 1285, 1285,
|
|
312, 312, 312, 312, 312, 312, 312, 312, 312, 312,
|
|
312, 312, 312, 1285, 1285, 1285, 1285, 1285, 1293, 1293,
|
|
1293, 1225, 1318, 1319, 665, 1225, 766, 766, 1225, 766,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1320, 1320, 1321, 681,
|
|
1321, 1225, 782, 1321, 1225, 785, 785, 1225, 785, 1293,
|
|
1225, 1225, 1225, 793, 793, 793, 1225, 1225, 793, 793,
|
|
|
|
793, 793, 1225, 1225, 793, 793, 793, 793, 1225, 1225,
|
|
1225, 1225, 793, 1293, 1225, 1225, 1322, 1293, 1293, 1293,
|
|
1225, 1225, 1225, 1225, 1323, 1323, 824, 824, 1323, 1323,
|
|
824, 824, 1324, 1325, 1325, 1325, 1225, 837, 837, 837,
|
|
837, 837, 837, 837, 837, 1325, 1293, 1293, 1293, 1293,
|
|
1293, 1225, 1326, 1225, 1327, 769, 1327, 1327, 858, 1327,
|
|
1225, 861, 861, 1225, 861, 1225, 1225, 1225, 1225, 1328,
|
|
1328, 1329, 788, 1329, 1225, 875, 1329, 1225, 878, 878,
|
|
878, 1293, 1225, 883, 883, 883, 883, 883, 883, 883,
|
|
883, 883, 883, 883, 1293, 1225, 1225, 1330, 1293, 1293,
|
|
|
|
1293, 1225, 1225, 1225, 1225, 1225, 1225, 1331, 1331, 907,
|
|
907, 1331, 1331, 907, 907, 1332, 1333, 1333, 1333, 1333,
|
|
1333, 1225, 922, 922, 922, 922, 922, 922, 922, 922,
|
|
1333, 1293, 1293, 1293, 1293, 1225, 1225, 1225, 1225, 1334,
|
|
1334, 1335, 864, 1335, 1335, 945, 1335, 1225, 948, 948,
|
|
1225, 948, 1225, 1225, 1225, 1225, 1225, 1225, 1336, 1336,
|
|
1337, 1337, 1337, 963, 1337, 1293, 883, 883, 883, 883,
|
|
1225, 1225, 883, 883, 883, 1225, 1225, 1225, 1225, 883,
|
|
1225, 1225, 1338, 1330, 1293, 1339, 1340, 1225, 1225, 1225,
|
|
1225, 907, 1331, 1331, 907, 1331, 1331, 1333, 1333, 1333,
|
|
|
|
1333, 922, 922, 922, 922, 922, 922, 1293, 1293, 1293,
|
|
1293, 1293, 1293, 1225, 1225, 1225, 1225, 1225, 1225, 1341,
|
|
1341, 1342, 951, 1342, 1342, 1025, 1342, 1225, 1028, 1028,
|
|
1225, 1028, 1225, 1225, 1225, 1225, 1343, 1343, 1293, 1225,
|
|
1225, 883, 1225, 1225, 883, 883, 883, 883, 1225, 1338,
|
|
1338, 1225, 1338, 1330, 1339, 1339, 1339, 1339, 1225, 1339,
|
|
1340, 1340, 1225, 1225, 1225, 1225, 1225, 1225, 1331, 907,
|
|
1331, 1331, 1333, 1333, 1333, 1333, 1333, 1333, 922, 922,
|
|
922, 922, 1293, 1293, 1293, 1225, 1225, 1225, 1225, 1344,
|
|
1344, 1345, 1031, 1345, 1345, 1095, 1345, 1225, 1098, 1098,
|
|
|
|
1098, 1225, 1225, 1225, 1225, 1225, 1293, 1225, 1225, 883,
|
|
883, 883, 1225, 1330, 1225, 1225, 1225, 1225, 1225, 907,
|
|
1331, 1331, 1333, 1333, 1333, 922, 922, 922, 1293, 1293,
|
|
1293, 1293, 1293, 1225, 1225, 1225, 1225, 1225, 1225, 1346,
|
|
1346, 1347, 1347, 1347, 1144, 1144, 1225, 1225, 1225, 1225,
|
|
883, 1348, 1225, 1225, 1225, 1225, 1225, 1331, 1333, 1333,
|
|
1333, 1333, 1333, 922, 1293, 1293, 1293, 1225, 1225, 1225,
|
|
1225, 1349, 1349, 1225, 1225, 1348, 1348, 1225, 1348, 1225,
|
|
1225, 1225, 1333, 1333, 1333, 1293, 1293, 1293, 1293, 1293,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
|
|
1225, 1333, 1333, 1333, 1333, 1333, 1293, 1293, 1293, 1225,
|
|
1225, 1225, 1333, 1333, 1333, 1293, 1293, 1293, 1225, 1225,
|
|
1225, 1333, 1333, 1333, 0, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_nxt[9611] =
|
|
{ 0,
|
|
22, 23, 24, 22, 25, 23, 26, 27, 28, 22,
|
|
29, 30, 31, 22, 32, 33, 22, 22, 34, 35,
|
|
36, 37, 35, 35, 35, 35, 35, 35, 35, 38,
|
|
39, 40, 41, 42, 43, 44, 43, 45, 46, 47,
|
|
47, 48, 47, 49, 50, 51, 47, 52, 53, 54,
|
|
55, 47, 47, 47, 47, 47, 56, 57, 22, 58,
|
|
58, 58, 58, 58, 58, 22, 22, 22, 22, 22,
|
|
22, 22, 22, 59, 22, 22, 60, 156, 491, 155,
|
|
60, 156, 184, 61, 23, 77, 492, 78, 23, 79,
|
|
182, 80, 23, 77, 1225, 78, 23, 79, 80, 80,
|
|
|
|
84, 85, 219, 86, 84, 87, 80, 88, 89, 165,
|
|
62, 63, 80, 81, 184, 64, 186, 191, 596, 184,
|
|
80, 81, 192, 65, 251, 188, 66, 67, 199, 187,
|
|
166, 67, 102, 24, 68, 25, 102, 103, 104, 82,
|
|
184, 69, 200, 189, 70, 195, 197, 82, 102, 24,
|
|
250, 25, 102, 103, 104, 90, 297, 167, 22, 258,
|
|
196, 43, 178, 178, 178, 178, 178, 179, 226, 71,
|
|
252, 72, 226, 73, 47, 221, 47, 84, 85, 155,
|
|
86, 84, 87, 74, 88, 89, 289, 105, 23, 24,
|
|
40, 25, 23, 129, 130, 378, 250, 243, 223, 75,
|
|
|
|
67, 243, 223, 105, 67, 171, 171, 68, 155, 256,
|
|
171, 171, 224, 160, 69, 330, 186, 70, 209, 184,
|
|
23, 24, 40, 25, 23, 129, 130, 210, 155, 187,
|
|
171, 22, 90, 290, 43, 246, 202, 278, 239, 246,
|
|
282, 278, 71, 131, 72, 218, 73, 47, 165, 47,
|
|
201, 202, 281, 239, 201, 172, 74, 177, 177, 177,
|
|
177, 177, 177, 177, 177, 177, 177, 211, 160, 263,
|
|
330, 211, 75, 23, 24, 131, 25, 23, 26, 154,
|
|
91, 176, 176, 176, 176, 176, 176, 176, 176, 176,
|
|
176, 254, 202, 155, 239, 254, 264, 479, 480, 291,
|
|
|
|
295, 212, 213, 209, 228, 228, 214, 257, 292, 228,
|
|
228, 257, 235, 312, 215, 225, 315, 216, 163, 163,
|
|
163, 163, 163, 163, 163, 163, 163, 163, 92, 228,
|
|
93, 93, 93, 93, 93, 93, 93, 93, 93, 93,
|
|
93, 93, 93, 93, 93, 93, 93, 93, 23, 24,
|
|
294, 25, 23, 26, 229, 91, 155, 259, 260, 370,
|
|
261, 259, 256, 255, 274, 274, 274, 274, 274, 274,
|
|
274, 274, 274, 274, 275, 275, 275, 275, 275, 276,
|
|
1225, 1197, 273, 273, 273, 273, 273, 273, 273, 273,
|
|
273, 273, 201, 202, 289, 239, 201, 309, 309, 309,
|
|
|
|
309, 309, 310, 92, 154, 93, 93, 93, 93, 93,
|
|
93, 93, 93, 93, 93, 93, 93, 93, 93, 93,
|
|
93, 93, 93, 23, 24, 165, 25, 23, 26, 95,
|
|
91, 312, 340, 202, 202, 155, 96, 97, 98, 303,
|
|
303, 290, 314, 342, 303, 303, 263, 294, 165, 343,
|
|
155, 380, 99, 308, 308, 308, 308, 308, 308, 308,
|
|
308, 308, 308, 156, 303, 490, 155, 156, 155, 1225,
|
|
155, 297, 371, 299, 155, 383, 389, 854, 100, 23,
|
|
24, 327, 25, 23, 26, 95, 91, 155, 297, 304,
|
|
328, 381, 96, 97, 98, 296, 264, 307, 307, 307,
|
|
|
|
307, 307, 307, 307, 307, 307, 307, 1225, 99, 163,
|
|
163, 163, 163, 163, 163, 163, 163, 163, 163, 163,
|
|
163, 163, 163, 163, 163, 163, 163, 163, 163, 201,
|
|
202, 685, 239, 201, 100, 40, 23, 24, 40, 25,
|
|
23, 26, 40, 40, 40, 106, 30, 31, 40, 107,
|
|
33, 40, 40, 108, 109, 110, 111, 109, 109, 109,
|
|
109, 109, 109, 109, 38, 112, 40, 40, 113, 114,
|
|
114, 114, 115, 116, 117, 117, 118, 117, 119, 120,
|
|
121, 117, 122, 117, 123, 117, 117, 117, 117, 117,
|
|
117, 92, 124, 40, 125, 125, 125, 125, 125, 125,
|
|
|
|
126, 126, 126, 126, 126, 126, 126, 126, 127, 126,
|
|
126, 132, 23, 24, 132, 25, 23, 26, 40, 40,
|
|
132, 133, 30, 31, 132, 134, 33, 132, 132, 135,
|
|
136, 137, 138, 136, 136, 136, 136, 136, 136, 136,
|
|
38, 39, 40, 132, 139, 140, 140, 140, 141, 142,
|
|
143, 143, 144, 143, 145, 146, 147, 143, 148, 143,
|
|
149, 143, 143, 143, 143, 143, 143, 150, 151, 132,
|
|
152, 152, 152, 152, 152, 152, 132, 132, 132, 132,
|
|
132, 132, 132, 132, 153, 132, 132, 160, 332, 161,
|
|
385, 333, 333, 333, 333, 333, 333, 333, 333, 333,
|
|
|
|
333, 162, 206, 412, 163, 163, 163, 163, 163, 163,
|
|
163, 163, 163, 163, 173, 155, 174, 174, 174, 174,
|
|
174, 174, 174, 174, 174, 174, 175, 258, 175, 382,
|
|
176, 176, 176, 176, 176, 176, 297, 386, 1093, 439,
|
|
155, 154, 154, 154, 154, 154, 378, 226, 154, 154,
|
|
290, 226, 154, 155, 379, 155, 176, 176, 176, 176,
|
|
176, 176, 154, 602, 653, 154, 154, 154, 154, 226,
|
|
243, 154, 154, 226, 243, 154, 154, 256, 154, 154,
|
|
154, 183, 183, 183, 183, 183, 183, 183, 183, 183,
|
|
183, 175, 155, 297, 154, 183, 183, 183, 183, 183,
|
|
|
|
183, 184, 184, 184, 184, 185, 184, 184, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 155, 154,
|
|
184, 176, 176, 176, 176, 176, 176, 154, 154, 154,
|
|
154, 154, 154, 154, 154, 154, 154, 154, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 1225, 441,
|
|
1225, 330, 184, 184, 184, 184, 184, 184, 587, 160,
|
|
223, 330, 184, 206, 223, 390, 154, 171, 171, 390,
|
|
205, 368, 171, 171, 224, 160, 1225, 443, 154, 154,
|
|
154, 154, 154, 154, 201, 202, 1153, 203, 204, 154,
|
|
154, 154, 171, 155, 154, 154, 500, 1225, 154, 334,
|
|
|
|
335, 336, 334, 334, 334, 334, 334, 334, 334, 160,
|
|
297, 330, 154, 154, 154, 206, 440, 172, 369, 206,
|
|
206, 206, 295, 207, 264, 206, 206, 377, 340, 206,
|
|
164, 164, 164, 164, 164, 155, 155, 164, 164, 457,
|
|
463, 164, 444, 206, 206, 206, 338, 338, 338, 338,
|
|
338, 338, 155, 1225, 498, 164, 164, 164, 338, 338,
|
|
338, 338, 338, 338, 338, 338, 338, 338, 497, 155,
|
|
208, 160, 294, 161, 155, 168, 168, 168, 168, 168,
|
|
378, 155, 168, 168, 1225, 162, 168, 378, 163, 163,
|
|
163, 163, 163, 163, 163, 163, 163, 163, 588, 501,
|
|
|
|
168, 168, 168, 338, 338, 338, 338, 338, 338, 338,
|
|
338, 338, 338, 354, 355, 487, 488, 356, 489, 357,
|
|
358, 1225, 854, 359, 289, 360, 361, 201, 202, 211,
|
|
239, 201, 232, 211, 155, 154, 217, 232, 577, 231,
|
|
387, 232, 232, 232, 1225, 233, 386, 232, 232, 502,
|
|
155, 232, 163, 163, 163, 163, 163, 163, 163, 163,
|
|
163, 163, 687, 212, 213, 232, 232, 232, 214, 201,
|
|
202, 290, 239, 201, 201, 202, 215, 239, 201, 216,
|
|
340, 390, 155, 228, 228, 390, 1225, 388, 228, 228,
|
|
847, 457, 234, 238, 202, 249, 239, 238, 240, 249,
|
|
|
|
241, 249, 249, 580, 1225, 240, 257, 241, 228, 249,
|
|
257, 165, 595, 354, 355, 524, 525, 356, 526, 357,
|
|
358, 241, 241, 359, 249, 360, 201, 202, 155, 239,
|
|
201, 297, 1225, 229, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 549, 550, 552, 551, 241, 240,
|
|
160, 1225, 161, 259, 260, 206, 261, 259, 296, 264,
|
|
594, 256, 324, 437, 247, 603, 155, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 265, 576, 297,
|
|
265, 250, 160, 1093, 443, 171, 265, 265, 1225, 171,
|
|
265, 1225, 171, 265, 265, 262, 262, 262, 262, 171,
|
|
|
|
340, 155, 262, 262, 293, 599, 262, 267, 293, 265,
|
|
438, 461, 582, 171, 171, 395, 395, 395, 395, 395,
|
|
395, 262, 262, 391, 392, 393, 391, 391, 391, 391,
|
|
391, 391, 391, 268, 265, 265, 171, 1023, 441, 171,
|
|
443, 1225, 171, 171, 1225, 171, 171, 171, 171, 171,
|
|
385, 1225, 171, 171, 265, 265, 265, 265, 265, 294,
|
|
581, 265, 265, 591, 592, 265, 267, 171, 171, 395,
|
|
395, 395, 395, 395, 395, 395, 395, 395, 395, 265,
|
|
265, 265, 395, 395, 395, 395, 395, 395, 395, 395,
|
|
395, 395, 270, 171, 171, 267, 1225, 386, 271, 267,
|
|
|
|
272, 272, 272, 272, 272, 272, 272, 272, 272, 272,
|
|
175, 267, 598, 1134, 273, 273, 273, 273, 273, 273,
|
|
267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
|
|
267, 267, 267, 267, 267, 267, 267, 560, 560, 560,
|
|
273, 273, 273, 273, 273, 273, 267, 267, 267, 267,
|
|
267, 267, 267, 267, 267, 267, 267, 1225, 1225, 267,
|
|
267, 267, 267, 267, 267, 267, 267, 267, 267, 1225,
|
|
1225, 1225, 691, 267, 267, 267, 267, 267, 267, 403,
|
|
404, 590, 583, 405, 609, 406, 407, 584, 1225, 408,
|
|
1225, 409, 420, 420, 420, 420, 420, 420, 692, 267,
|
|
|
|
267, 267, 267, 267, 267, 267, 155, 155, 597, 267,
|
|
277, 277, 277, 277, 277, 277, 277, 277, 277, 277,
|
|
175, 267, 1164, 378, 277, 277, 277, 277, 277, 277,
|
|
278, 278, 278, 278, 279, 278, 278, 278, 278, 278,
|
|
278, 278, 278, 278, 278, 278, 278, 1158, 703, 280,
|
|
273, 273, 273, 273, 273, 273, 267, 267, 267, 267,
|
|
267, 267, 267, 267, 267, 267, 267, 278, 278, 278,
|
|
278, 278, 278, 278, 278, 278, 278, 1225, 1225, 155,
|
|
155, 278, 278, 278, 278, 278, 278, 604, 619, 303,
|
|
303, 278, 694, 620, 303, 303, 420, 420, 420, 420,
|
|
|
|
420, 420, 420, 420, 420, 420, 1225, 267, 267, 267,
|
|
267, 267, 267, 305, 303, 306, 306, 306, 306, 306,
|
|
306, 306, 306, 306, 306, 175, 160, 589, 330, 307,
|
|
307, 307, 307, 307, 307, 630, 175, 528, 631, 304,
|
|
296, 296, 296, 296, 296, 578, 155, 296, 296, 578,
|
|
1225, 296, 297, 611, 1151, 307, 307, 307, 307, 307,
|
|
307, 296, 297, 297, 296, 296, 296, 296, 795, 655,
|
|
296, 296, 155, 579, 296, 296, 297, 296, 296, 296,
|
|
311, 311, 311, 311, 311, 311, 311, 311, 311, 311,
|
|
175, 683, 608, 296, 311, 311, 311, 311, 311, 311,
|
|
|
|
312, 312, 312, 312, 313, 312, 312, 312, 312, 312,
|
|
312, 312, 312, 312, 312, 312, 312, 297, 296, 312,
|
|
307, 307, 307, 307, 307, 307, 296, 296, 296, 296,
|
|
296, 296, 296, 296, 296, 296, 296, 312, 312, 312,
|
|
312, 312, 312, 312, 312, 312, 312, 1225, 340, 654,
|
|
1225, 312, 312, 312, 312, 312, 312, 600, 696, 457,
|
|
601, 312, 416, 417, 418, 416, 416, 416, 416, 416,
|
|
416, 416, 201, 202, 1225, 239, 201, 296, 296, 296,
|
|
296, 296, 296, 201, 202, 297, 322, 323, 296, 296,
|
|
296, 640, 155, 296, 296, 593, 641, 296, 155, 297,
|
|
|
|
420, 420, 420, 420, 420, 420, 420, 420, 420, 420,
|
|
1225, 296, 296, 296, 206, 1225, 686, 1225, 206, 206,
|
|
206, 690, 325, 1225, 206, 206, 175, 297, 206, 298,
|
|
298, 298, 298, 298, 1225, 1225, 298, 298, 684, 688,
|
|
298, 699, 206, 206, 206, 569, 569, 569, 569, 569,
|
|
570, 184, 893, 155, 298, 298, 298, 689, 1225, 155,
|
|
300, 300, 300, 300, 300, 706, 340, 300, 300, 326,
|
|
171, 300, 610, 154, 170, 154, 154, 170, 695, 651,
|
|
154, 154, 652, 702, 170, 300, 300, 300, 333, 333,
|
|
333, 333, 333, 333, 333, 333, 333, 333, 170, 170,
|
|
|
|
154, 173, 1225, 337, 337, 337, 337, 337, 337, 337,
|
|
337, 337, 337, 175, 297, 1225, 155, 337, 337, 337,
|
|
337, 337, 337, 428, 429, 564, 340, 430, 585, 431,
|
|
432, 693, 585, 433, 1225, 434, 697, 566, 1225, 340,
|
|
155, 155, 1225, 337, 337, 337, 337, 337, 337, 154,
|
|
566, 585, 154, 710, 155, 585, 586, 700, 154, 154,
|
|
712, 1225, 154, 154, 701, 154, 154, 154, 344, 344,
|
|
344, 344, 344, 344, 344, 344, 344, 344, 175, 586,
|
|
794, 154, 344, 344, 344, 344, 344, 344, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
|
|
|
|
184, 184, 184, 184, 184, 155, 154, 184, 337, 337,
|
|
337, 337, 337, 337, 154, 154, 154, 154, 154, 154,
|
|
154, 154, 154, 154, 154, 184, 184, 184, 184, 184,
|
|
184, 184, 184, 184, 184, 1225, 184, 894, 705, 184,
|
|
184, 184, 184, 184, 184, 333, 333, 333, 333, 333,
|
|
333, 333, 333, 333, 333, 553, 554, 555, 553, 553,
|
|
553, 553, 553, 553, 553, 154, 154, 154, 154, 154,
|
|
154, 206, 704, 155, 1225, 206, 206, 206, 1225, 207,
|
|
228, 206, 206, 297, 228, 206, 1225, 228, 340, 758,
|
|
155, 155, 155, 340, 228, 698, 790, 755, 1023, 206,
|
|
|
|
206, 206, 1225, 711, 457, 155, 754, 1225, 228, 228,
|
|
503, 1225, 504, 504, 504, 504, 504, 504, 504, 504,
|
|
504, 504, 160, 623, 330, 1225, 208, 228, 297, 1225,
|
|
154, 227, 154, 154, 227, 1225, 1225, 154, 154, 297,
|
|
503, 227, 505, 505, 505, 505, 505, 505, 505, 505,
|
|
505, 505, 617, 1225, 757, 227, 227, 154, 232, 756,
|
|
805, 621, 232, 232, 232, 1225, 233, 656, 232, 232,
|
|
943, 503, 232, 506, 506, 506, 506, 506, 507, 504,
|
|
504, 504, 504, 1225, 800, 1225, 232, 232, 232, 297,
|
|
303, 793, 297, 807, 303, 709, 444, 303, 445, 445,
|
|
|
|
445, 445, 445, 445, 303, 503, 155, 504, 504, 504,
|
|
504, 504, 504, 234, 265, 340, 1225, 265, 303, 303,
|
|
564, 340, 1225, 265, 265, 1225, 566, 265, 564, 340,
|
|
265, 265, 566, 829, 1127, 155, 155, 796, 830, 799,
|
|
673, 1225, 808, 882, 267, 1225, 265, 558, 558, 559,
|
|
560, 560, 560, 560, 560, 560, 560, 454, 568, 568,
|
|
568, 568, 568, 568, 568, 568, 568, 568, 884, 1225,
|
|
268, 265, 265, 171, 184, 1225, 171, 184, 1126, 171,
|
|
171, 885, 171, 171, 171, 171, 171, 801, 618, 171,
|
|
171, 1225, 802, 567, 567, 567, 567, 567, 567, 567,
|
|
|
|
567, 567, 567, 267, 171, 171, 612, 613, 614, 612,
|
|
612, 612, 612, 612, 612, 612, 503, 1225, 504, 504,
|
|
504, 504, 504, 504, 504, 504, 504, 504, 155, 270,
|
|
171, 171, 271, 806, 394, 394, 394, 394, 394, 394,
|
|
394, 394, 394, 394, 175, 1225, 819, 1122, 394, 394,
|
|
394, 394, 394, 394, 503, 888, 504, 504, 504, 504,
|
|
504, 504, 504, 504, 504, 504, 813, 184, 1121, 578,
|
|
1225, 340, 155, 578, 394, 394, 394, 394, 394, 394,
|
|
267, 155, 673, 814, 267, 396, 396, 396, 396, 396,
|
|
396, 396, 396, 396, 396, 175, 267, 579, 900, 396,
|
|
|
|
396, 396, 396, 396, 396, 278, 278, 278, 278, 278,
|
|
278, 278, 278, 278, 278, 278, 278, 278, 278, 278,
|
|
278, 278, 184, 970, 280, 394, 394, 394, 394, 394,
|
|
394, 267, 267, 267, 267, 267, 267, 267, 267, 267,
|
|
267, 267, 278, 278, 278, 278, 278, 278, 278, 278,
|
|
278, 278, 1225, 155, 155, 1120, 278, 278, 278, 278,
|
|
278, 278, 1225, 184, 818, 820, 1225, 890, 1225, 1225,
|
|
1063, 155, 1225, 1225, 528, 736, 529, 529, 529, 529,
|
|
529, 529, 267, 267, 267, 267, 267, 267, 303, 895,
|
|
1225, 296, 302, 296, 296, 302, 1225, 1225, 296, 296,
|
|
|
|
842, 297, 302, 312, 622, 843, 624, 923, 160, 625,
|
|
330, 1063, 846, 297, 297, 184, 302, 302, 296, 305,
|
|
892, 419, 419, 419, 419, 419, 419, 419, 419, 419,
|
|
419, 175, 889, 1111, 184, 419, 419, 419, 419, 419,
|
|
419, 340, 340, 585, 578, 1225, 891, 585, 578, 1225,
|
|
1225, 585, 566, 673, 1225, 585, 155, 184, 297, 899,
|
|
1110, 419, 419, 419, 419, 419, 419, 296, 817, 184,
|
|
296, 586, 579, 1225, 184, 887, 296, 296, 1225, 586,
|
|
296, 296, 340, 296, 296, 296, 421, 421, 421, 421,
|
|
421, 421, 421, 421, 421, 421, 175, 628, 626, 296,
|
|
|
|
421, 421, 421, 421, 421, 421, 312, 312, 312, 312,
|
|
312, 312, 312, 312, 312, 312, 312, 312, 312, 312,
|
|
312, 312, 312, 297, 296, 312, 419, 419, 419, 419,
|
|
419, 419, 296, 296, 296, 296, 296, 296, 296, 296,
|
|
296, 296, 296, 312, 312, 312, 312, 312, 312, 312,
|
|
312, 312, 312, 1225, 564, 340, 943, 312, 312, 312,
|
|
312, 312, 312, 1225, 1225, 155, 673, 1225, 1225, 635,
|
|
636, 637, 635, 635, 635, 635, 635, 635, 635, 914,
|
|
160, 1107, 330, 296, 296, 296, 296, 296, 296, 206,
|
|
278, 1225, 1225, 206, 206, 206, 155, 325, 911, 206,
|
|
|
|
206, 564, 340, 206, 1225, 340, 297, 312, 629, 278,
|
|
278, 928, 627, 780, 901, 910, 780, 206, 206, 206,
|
|
662, 662, 662, 662, 662, 662, 662, 662, 662, 662,
|
|
454, 667, 668, 669, 667, 667, 667, 667, 667, 667,
|
|
667, 898, 856, 974, 326, 444, 184, 445, 445, 445,
|
|
445, 445, 445, 445, 445, 445, 445, 575, 575, 575,
|
|
575, 575, 575, 575, 575, 575, 575, 564, 340, 671,
|
|
671, 671, 671, 671, 671, 278, 312, 312, 1004, 566,
|
|
915, 927, 925, 312, 155, 444, 1014, 446, 446, 446,
|
|
446, 446, 446, 446, 446, 446, 446, 675, 675, 675,
|
|
|
|
675, 675, 675, 675, 675, 675, 675, 676, 676, 676,
|
|
676, 676, 677, 759, 760, 761, 759, 759, 759, 759,
|
|
759, 759, 759, 1079, 155, 444, 926, 447, 447, 447,
|
|
447, 447, 448, 445, 445, 445, 445, 1225, 312, 674,
|
|
674, 674, 674, 674, 674, 674, 674, 674, 674, 713,
|
|
155, 714, 714, 714, 714, 714, 714, 714, 714, 714,
|
|
714, 184, 917, 968, 155, 449, 449, 449, 449, 449,
|
|
449, 449, 449, 449, 449, 175, 564, 340, 1072, 449,
|
|
449, 449, 449, 449, 449, 713, 929, 715, 715, 715,
|
|
715, 715, 715, 715, 715, 715, 715, 312, 312, 1052,
|
|
|
|
297, 1053, 155, 930, 297, 449, 449, 449, 449, 449,
|
|
449, 451, 452, 453, 453, 453, 453, 453, 453, 453,
|
|
453, 454, 931, 1225, 340, 455, 455, 455, 455, 455,
|
|
455, 713, 854, 716, 716, 716, 716, 716, 717, 714,
|
|
714, 714, 714, 1225, 856, 1006, 1071, 1225, 312, 1042,
|
|
184, 455, 455, 455, 455, 455, 455, 340, 458, 459,
|
|
460, 458, 458, 458, 458, 458, 458, 458, 461, 184,
|
|
1047, 1225, 462, 462, 462, 462, 462, 462, 1225, 155,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 340, 1225, 783, 783,
|
|
783, 783, 783, 784, 340, 718, 985, 673, 462, 462,
|
|
|
|
462, 462, 462, 462, 154, 780, 1225, 154, 1225, 1225,
|
|
1069, 1225, 719, 154, 154, 722, 724, 154, 154, 728,
|
|
154, 154, 154, 464, 464, 464, 464, 464, 464, 464,
|
|
464, 464, 464, 175, 312, 1081, 154, 464, 464, 464,
|
|
464, 464, 464, 184, 184, 184, 184, 184, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
|
|
155, 154, 184, 449, 449, 449, 449, 449, 449, 154,
|
|
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
|
|
1225, 1225, 155, 973, 184, 184, 184, 184, 184, 184,
|
|
|
|
1225, 1225, 155, 856, 1225, 1225, 184, 1225, 966, 1046,
|
|
1225, 1225, 184, 1225, 1225, 1225, 1113, 1225, 1053, 1225,
|
|
154, 154, 154, 154, 154, 154, 206, 854, 1225, 1225,
|
|
206, 206, 206, 980, 207, 1225, 206, 206, 1225, 856,
|
|
206, 1225, 723, 1225, 995, 729, 184, 564, 340, 726,
|
|
564, 340, 1225, 340, 206, 206, 206, 278, 725, 780,
|
|
1048, 727, 873, 184, 873, 656, 730, 657, 657, 657,
|
|
657, 657, 657, 564, 340, 778, 778, 778, 778, 778,
|
|
778, 208, 206, 854, 1005, 673, 206, 206, 206, 206,
|
|
368, 1225, 206, 206, 340, 943, 206, 312, 791, 160,
|
|
|
|
1049, 330, 791, 943, 155, 780, 1070, 184, 1008, 278,
|
|
206, 206, 206, 771, 1045, 772, 772, 772, 772, 772,
|
|
772, 772, 772, 772, 772, 771, 792, 773, 773, 773,
|
|
773, 773, 773, 773, 773, 773, 773, 208, 232, 340,
|
|
564, 340, 232, 232, 232, 953, 233, 155, 232, 232,
|
|
873, 771, 232, 774, 774, 774, 774, 774, 775, 772,
|
|
772, 772, 772, 1178, 1054, 1179, 232, 232, 232, 682,
|
|
682, 682, 682, 682, 682, 682, 682, 682, 682, 782,
|
|
782, 782, 782, 782, 782, 782, 782, 782, 782, 184,
|
|
1112, 797, 803, 234, 232, 797, 803, 1008, 232, 232,
|
|
|
|
232, 232, 387, 1080, 232, 232, 312, 1225, 232, 781,
|
|
781, 781, 781, 781, 781, 781, 781, 781, 781, 798,
|
|
804, 856, 232, 232, 232, 713, 765, 714, 714, 714,
|
|
714, 714, 714, 809, 811, 297, 155, 809, 811, 821,
|
|
822, 823, 821, 821, 821, 821, 821, 821, 821, 234,
|
|
508, 508, 508, 508, 508, 508, 508, 508, 508, 508,
|
|
175, 810, 812, 1007, 508, 508, 508, 508, 508, 508,
|
|
713, 155, 714, 714, 714, 714, 714, 714, 714, 714,
|
|
714, 714, 1039, 312, 1128, 791, 564, 340, 340, 791,
|
|
508, 508, 508, 508, 508, 508, 267, 1003, 873, 873,
|
|
|
|
267, 509, 509, 509, 509, 509, 509, 509, 509, 509,
|
|
509, 175, 267, 792, 997, 509, 509, 509, 509, 509,
|
|
509, 278, 278, 278, 278, 278, 278, 278, 278, 278,
|
|
278, 278, 278, 278, 278, 278, 278, 278, 996, 994,
|
|
280, 508, 508, 508, 508, 508, 508, 267, 267, 267,
|
|
267, 267, 267, 267, 267, 267, 267, 267, 278, 278,
|
|
278, 278, 278, 278, 278, 278, 278, 278, 1225, 1196,
|
|
993, 1179, 278, 278, 278, 278, 278, 278, 713, 902,
|
|
714, 714, 714, 714, 714, 714, 714, 714, 714, 714,
|
|
1225, 797, 1225, 1225, 1225, 797, 1225, 1225, 267, 267,
|
|
|
|
267, 267, 267, 267, 528, 854, 529, 529, 529, 529,
|
|
529, 529, 529, 529, 529, 529, 155, 943, 1225, 798,
|
|
1225, 1225, 1082, 982, 854, 312, 824, 1225, 803, 1225,
|
|
1225, 809, 803, 1225, 1225, 809, 1023, 827, 811, 1023,
|
|
828, 791, 811, 297, 528, 791, 530, 530, 530, 530,
|
|
530, 530, 530, 530, 530, 530, 804, 1225, 1225, 810,
|
|
859, 859, 859, 859, 859, 860, 812, 981, 797, 792,
|
|
854, 155, 797, 736, 832, 737, 737, 737, 737, 737,
|
|
737, 831, 1023, 297, 528, 854, 531, 531, 531, 531,
|
|
531, 532, 529, 529, 529, 529, 798, 1093, 184, 834,
|
|
|
|
835, 836, 834, 834, 834, 834, 834, 834, 834, 803,
|
|
809, 811, 297, 803, 809, 811, 876, 876, 876, 876,
|
|
876, 877, 975, 297, 296, 969, 533, 533, 533, 533,
|
|
533, 533, 533, 533, 533, 533, 297, 804, 810, 812,
|
|
533, 533, 533, 533, 533, 533, 770, 770, 770, 770,
|
|
770, 770, 770, 770, 770, 770, 858, 858, 858, 858,
|
|
858, 858, 858, 858, 858, 858, 533, 533, 533, 533,
|
|
533, 533, 534, 534, 534, 534, 534, 534, 534, 534,
|
|
534, 534, 1073, 248, 248, 248, 534, 534, 534, 534,
|
|
534, 534, 1225, 765, 857, 857, 857, 857, 857, 857,
|
|
|
|
857, 857, 857, 857, 771, 1073, 772, 772, 772, 772,
|
|
772, 772, 533, 533, 533, 533, 533, 533, 206, 1225,
|
|
562, 297, 206, 206, 206, 924, 325, 916, 206, 206,
|
|
913, 1093, 206, 866, 867, 868, 866, 866, 866, 866,
|
|
866, 866, 866, 160, 297, 330, 206, 206, 206, 771,
|
|
912, 772, 772, 772, 772, 772, 772, 772, 772, 772,
|
|
772, 771, 1129, 772, 772, 772, 772, 772, 772, 772,
|
|
772, 772, 772, 326, 206, 854, 1159, 1186, 206, 206,
|
|
206, 206, 437, 909, 206, 206, 908, 1093, 206, 789,
|
|
789, 789, 789, 789, 789, 789, 789, 789, 789, 897,
|
|
|
|
896, 155, 206, 206, 206, 564, 340, 871, 871, 871,
|
|
871, 871, 871, 1114, 184, 297, 155, 780, 875, 875,
|
|
875, 875, 875, 875, 875, 875, 875, 875, 886, 326,
|
|
444, 771, 445, 445, 445, 445, 445, 445, 445, 445,
|
|
445, 445, 1225, 765, 874, 874, 874, 874, 874, 874,
|
|
874, 874, 874, 874, 791, 797, 803, 809, 791, 797,
|
|
803, 809, 811, 986, 983, 160, 811, 330, 983, 155,
|
|
444, 562, 445, 445, 445, 445, 445, 445, 445, 445,
|
|
445, 445, 792, 798, 804, 810, 986, 454, 986, 986,
|
|
812, 902, 903, 903, 903, 903, 903, 903, 903, 903,
|
|
|
|
903, 903, 946, 946, 946, 946, 946, 947, 297, 155,
|
|
564, 340, 565, 565, 565, 565, 565, 565, 565, 565,
|
|
565, 565, 566, 297, 297, 984, 567, 567, 567, 567,
|
|
567, 567, 902, 904, 904, 904, 904, 904, 904, 904,
|
|
904, 904, 904, 964, 964, 964, 964, 964, 965, 297,
|
|
845, 1202, 567, 567, 567, 567, 567, 567, 340, 571,
|
|
572, 573, 571, 571, 571, 571, 571, 571, 571, 574,
|
|
986, 844, 841, 575, 575, 575, 575, 575, 575, 902,
|
|
905, 905, 905, 905, 905, 906, 903, 903, 903, 903,
|
|
297, 180, 180, 986, 840, 986, 987, 180, 839, 575,
|
|
|
|
575, 575, 575, 575, 575, 154, 838, 971, 154, 1051,
|
|
1052, 971, 1053, 1051, 154, 154, 837, 833, 154, 154,
|
|
155, 154, 154, 154, 184, 184, 184, 184, 184, 184,
|
|
184, 184, 184, 184, 175, 972, 826, 154, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
|
|
184, 155, 154, 184, 154, 154, 154, 154, 154, 154,
|
|
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
|
|
154, 615, 615, 615, 615, 615, 615, 615, 615, 615,
|
|
615, 175, 248, 248, 248, 615, 615, 615, 615, 615,
|
|
|
|
615, 1026, 1026, 1026, 1026, 1026, 1027, 932, 933, 934,
|
|
935, 932, 932, 932, 932, 932, 932, 1172, 1172, 1172,
|
|
1172, 615, 615, 615, 615, 615, 615, 267, 825, 713,
|
|
816, 267, 616, 616, 616, 616, 616, 616, 616, 616,
|
|
616, 616, 175, 267, 155, 815, 616, 616, 616, 616,
|
|
616, 616, 278, 278, 278, 278, 278, 278, 278, 278,
|
|
278, 278, 278, 278, 278, 278, 278, 278, 278, 155,
|
|
155, 280, 615, 615, 615, 615, 615, 615, 267, 267,
|
|
267, 267, 267, 267, 267, 267, 267, 267, 267, 578,
|
|
155, 155, 1225, 578, 847, 848, 848, 848, 848, 848,
|
|
|
|
848, 976, 978, 765, 562, 976, 978, 278, 278, 278,
|
|
278, 278, 278, 278, 278, 278, 278, 579, 454, 454,
|
|
753, 278, 278, 278, 278, 278, 278, 752, 751, 977,
|
|
979, 750, 155, 937, 938, 939, 937, 937, 937, 937,
|
|
937, 937, 937, 749, 748, 747, 746, 267, 267, 267,
|
|
267, 267, 267, 528, 745, 529, 529, 529, 529, 529,
|
|
529, 529, 529, 529, 529, 865, 865, 865, 865, 865,
|
|
865, 865, 865, 865, 865, 854, 744, 941, 941, 941,
|
|
941, 941, 941, 1106, 1106, 1051, 1052, 856, 1053, 1051,
|
|
1106, 743, 297, 528, 742, 529, 529, 529, 529, 529,
|
|
|
|
529, 529, 529, 529, 529, 945, 945, 945, 945, 945,
|
|
945, 945, 945, 945, 945, 1225, 741, 944, 944, 944,
|
|
944, 944, 944, 944, 944, 944, 944, 735, 734, 733,
|
|
1043, 732, 297, 656, 1043, 657, 657, 657, 657, 657,
|
|
657, 657, 657, 657, 657, 953, 731, 954, 954, 954,
|
|
954, 954, 954, 954, 954, 954, 954, 953, 1044, 955,
|
|
955, 955, 955, 955, 955, 955, 955, 955, 955, 721,
|
|
720, 1225, 155, 656, 1225, 658, 658, 658, 658, 658,
|
|
658, 658, 658, 658, 658, 953, 491, 956, 956, 956,
|
|
956, 956, 957, 954, 954, 954, 954, 881, 881, 881,
|
|
|
|
881, 881, 881, 881, 881, 881, 881, 1040, 180, 180,
|
|
708, 1040, 155, 656, 180, 659, 659, 659, 659, 659,
|
|
660, 657, 657, 657, 657, 564, 340, 960, 960, 960,
|
|
960, 960, 960, 707, 1225, 1041, 665, 873, 963, 963,
|
|
963, 963, 963, 963, 963, 963, 963, 963, 562, 454,
|
|
661, 454, 155, 564, 340, 671, 671, 671, 671, 671,
|
|
671, 671, 671, 671, 671, 566, 181, 650, 649, 670,
|
|
670, 670, 670, 670, 670, 1225, 648, 962, 962, 962,
|
|
962, 962, 962, 962, 962, 962, 962, 971, 976, 647,
|
|
646, 971, 976, 645, 644, 670, 670, 670, 670, 670,
|
|
|
|
670, 564, 340, 672, 672, 672, 672, 672, 672, 672,
|
|
672, 672, 672, 673, 643, 972, 977, 674, 674, 674,
|
|
674, 674, 674, 988, 989, 990, 991, 988, 988, 988,
|
|
988, 988, 988, 642, 978, 971, 184, 184, 978, 971,
|
|
639, 638, 175, 674, 674, 674, 674, 674, 674, 340,
|
|
678, 679, 680, 678, 678, 678, 678, 678, 678, 678,
|
|
681, 634, 979, 972, 682, 682, 682, 682, 682, 682,
|
|
902, 903, 903, 903, 903, 903, 903, 903, 903, 903,
|
|
903, 633, 1056, 184, 278, 632, 1056, 1057, 1058, 1059,
|
|
682, 682, 682, 682, 682, 682, 736, 503, 737, 737,
|
|
|
|
737, 737, 737, 737, 737, 737, 737, 737, 902, 903,
|
|
903, 903, 903, 903, 903, 903, 903, 903, 903, 902,
|
|
903, 903, 903, 903, 903, 903, 491, 607, 976, 1043,
|
|
1108, 491, 976, 1043, 1108, 297, 736, 1060, 738, 738,
|
|
738, 738, 738, 738, 738, 738, 738, 738, 953, 606,
|
|
954, 954, 954, 954, 954, 954, 977, 1044, 1109, 491,
|
|
978, 605, 1225, 1225, 978, 998, 999, 1000, 1001, 998,
|
|
998, 998, 998, 998, 998, 297, 736, 278, 739, 739,
|
|
739, 739, 739, 740, 737, 737, 737, 737, 979, 454,
|
|
917, 918, 918, 918, 918, 918, 918, 562, 454, 181,
|
|
|
|
548, 971, 297, 976, 978, 971, 1108, 976, 978, 278,
|
|
1108, 339, 339, 547, 546, 297, 656, 339, 657, 657,
|
|
657, 657, 657, 657, 657, 657, 657, 657, 297, 972,
|
|
545, 977, 979, 1014, 1109, 1015, 1015, 1015, 1015, 1015,
|
|
1015, 1015, 1015, 1015, 1015, 1152, 160, 544, 330, 1152,
|
|
312, 1195, 312, 312, 543, 155, 656, 1195, 657, 657,
|
|
657, 657, 657, 657, 657, 657, 657, 657, 1014, 542,
|
|
1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016,
|
|
1014, 541, 1017, 1017, 1017, 1017, 1017, 1018, 1015, 1015,
|
|
1015, 1015, 540, 539, 538, 155, 766, 767, 768, 766,
|
|
|
|
766, 766, 766, 766, 766, 766, 769, 537, 536, 535,
|
|
770, 770, 770, 770, 770, 770, 952, 952, 952, 952,
|
|
952, 952, 952, 952, 952, 952, 1025, 1025, 1025, 1025,
|
|
1025, 1025, 1025, 1025, 1025, 1025, 770, 770, 770, 770,
|
|
770, 770, 564, 340, 778, 778, 778, 778, 778, 778,
|
|
778, 778, 778, 778, 673, 305, 527, 523, 777, 777,
|
|
777, 777, 777, 777, 854, 522, 1021, 1021, 1021, 1021,
|
|
1021, 1021, 521, 520, 519, 1014, 943, 1015, 1015, 1015,
|
|
1015, 1015, 1015, 518, 777, 777, 777, 777, 777, 777,
|
|
564, 340, 779, 779, 779, 779, 779, 779, 779, 779,
|
|
|
|
779, 779, 780, 517, 516, 515, 781, 781, 781, 781,
|
|
781, 781, 1225, 514, 1024, 1024, 1024, 1024, 1024, 1024,
|
|
1024, 1024, 1024, 1024, 564, 340, 1038, 1038, 1038, 1038,
|
|
1038, 1038, 781, 781, 781, 781, 781, 781, 340, 785,
|
|
786, 787, 785, 785, 785, 785, 785, 785, 785, 788,
|
|
513, 512, 511, 789, 789, 789, 789, 789, 789, 1033,
|
|
1034, 1035, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 510,
|
|
1149, 1056, 271, 499, 1149, 1056, 1057, 1058, 1059, 789,
|
|
789, 789, 789, 789, 789, 736, 496, 737, 737, 737,
|
|
737, 737, 737, 737, 737, 737, 737, 953, 1150, 954,
|
|
|
|
954, 954, 954, 954, 954, 954, 954, 954, 954, 953,
|
|
495, 954, 954, 954, 954, 954, 954, 954, 954, 954,
|
|
954, 494, 493, 486, 297, 736, 1062, 737, 737, 737,
|
|
737, 737, 737, 737, 737, 737, 737, 1086, 1087, 1088,
|
|
1086, 1086, 1086, 1086, 1086, 1086, 1086, 485, 1040, 1043,
|
|
484, 1040, 1040, 1043, 1008, 1040, 1009, 1009, 1009, 1009,
|
|
1009, 1009, 483, 482, 297, 847, 848, 848, 848, 848,
|
|
848, 848, 848, 848, 848, 848, 1041, 1044, 1063, 1041,
|
|
1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064,
|
|
481, 1177, 1178, 155, 1179, 1177, 280, 184, 184, 280,
|
|
|
|
278, 280, 478, 155, 847, 849, 849, 849, 849, 849,
|
|
849, 849, 849, 849, 849, 1063, 477, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1065, 1065, 1063, 476, 1066,
|
|
1066, 1066, 1066, 1066, 1067, 1068, 1068, 1068, 1068, 475,
|
|
474, 473, 155, 847, 850, 850, 850, 850, 850, 851,
|
|
848, 848, 848, 848, 1063, 472, 1068, 1068, 1068, 1064,
|
|
1064, 1064, 1064, 1064, 1064, 1064, 471, 1040, 1043, 470,
|
|
469, 1040, 1043, 1096, 1096, 1096, 1096, 1096, 1097, 468,
|
|
467, 155, 854, 466, 855, 855, 855, 855, 855, 855,
|
|
855, 855, 855, 855, 856, 1041, 1044, 465, 857, 857,
|
|
|
|
857, 857, 857, 857, 1083, 1084, 1085, 1083, 1083, 1083,
|
|
1083, 1083, 1083, 1083, 1108, 1108, 312, 312, 1108, 1108,
|
|
181, 173, 297, 436, 857, 857, 857, 857, 857, 857,
|
|
861, 862, 863, 861, 861, 861, 861, 861, 861, 861,
|
|
864, 155, 1109, 1109, 865, 865, 865, 865, 865, 865,
|
|
1014, 435, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015,
|
|
1015, 1015, 1225, 184, 312, 427, 1225, 1225, 1225, 1225,
|
|
865, 865, 865, 865, 865, 865, 564, 340, 871, 871,
|
|
871, 871, 871, 871, 871, 871, 871, 871, 780, 426,
|
|
425, 424, 870, 870, 870, 870, 870, 870, 1014, 423,
|
|
|
|
1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015, 1015,
|
|
1145, 1145, 1145, 1145, 1145, 1146, 422, 1060, 870, 870,
|
|
870, 870, 870, 870, 564, 340, 872, 872, 872, 872,
|
|
872, 872, 872, 872, 872, 872, 873, 296, 415, 301,
|
|
874, 874, 874, 874, 874, 874, 1032, 1032, 1032, 1032,
|
|
1032, 1032, 1032, 1032, 1032, 1032, 1095, 1095, 1095, 1095,
|
|
1095, 1095, 1095, 1095, 1095, 1095, 874, 874, 874, 874,
|
|
874, 874, 340, 878, 879, 880, 878, 878, 878, 878,
|
|
878, 878, 878, 299, 297, 294, 414, 881, 881, 881,
|
|
881, 881, 881, 854, 413, 1091, 1091, 1091, 1091, 1091,
|
|
|
|
1091, 411, 410, 402, 1063, 1023, 1064, 1064, 1064, 1064,
|
|
1064, 1064, 401, 881, 881, 881, 881, 881, 881, 154,
|
|
1225, 280, 154, 1055, 280, 400, 280, 399, 154, 154,
|
|
1055, 1055, 154, 154, 1055, 154, 154, 154, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 1055, 1055,
|
|
1055, 154, 184, 184, 184, 184, 184, 184, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 883, 184, 184, 184,
|
|
184, 184, 184, 184, 184, 155, 154, 184, 154, 154,
|
|
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
|
|
154, 154, 154, 154, 154, 267, 398, 397, 1225, 267,
|
|
|
|
278, 278, 278, 278, 278, 278, 278, 278, 278, 278,
|
|
268, 267, 260, 255, 278, 278, 278, 278, 278, 278,
|
|
278, 278, 278, 278, 278, 278, 278, 278, 907, 278,
|
|
278, 278, 278, 278, 278, 278, 278, 256, 250, 280,
|
|
267, 267, 267, 267, 267, 267, 267, 267, 267, 267,
|
|
267, 267, 267, 267, 267, 267, 267, 917, 918, 918,
|
|
918, 918, 918, 918, 918, 918, 918, 918, 1225, 250,
|
|
1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094,
|
|
340, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102,
|
|
1102, 244, 202, 237, 155, 297, 917, 919, 919, 919,
|
|
|
|
919, 919, 919, 919, 919, 919, 919, 340, 1103, 1103,
|
|
1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 340, 1104,
|
|
1104, 1104, 1104, 1104, 1105, 1102, 1102, 1102, 1102, 1147,
|
|
384, 376, 375, 1147, 297, 917, 920, 920, 920, 920,
|
|
920, 921, 918, 918, 918, 918, 374, 1147, 1056, 373,
|
|
372, 1147, 1056, 1057, 1058, 1059, 1115, 1148, 155, 1116,
|
|
1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 367,
|
|
366, 365, 364, 297, 296, 1148, 1149, 296, 184, 363,
|
|
1149, 362, 353, 296, 296, 352, 351, 296, 296, 350,
|
|
296, 296, 296, 312, 312, 312, 312, 312, 312, 312,
|
|
|
|
312, 312, 312, 1060, 1150, 349, 296, 312, 312, 312,
|
|
312, 312, 312, 312, 312, 312, 312, 312, 312, 312,
|
|
312, 922, 312, 312, 312, 312, 312, 312, 312, 312,
|
|
297, 296, 312, 296, 296, 296, 296, 296, 296, 296,
|
|
296, 296, 296, 296, 296, 296, 296, 296, 296, 296,
|
|
847, 848, 848, 848, 848, 848, 848, 848, 848, 848,
|
|
848, 1225, 1172, 348, 1172, 1225, 1057, 1058, 1059, 1225,
|
|
1172, 347, 346, 1225, 1225, 1225, 1059, 1117, 1118, 1119,
|
|
1117, 1117, 1117, 1117, 1117, 1117, 1117, 345, 155, 847,
|
|
848, 848, 848, 848, 848, 848, 848, 848, 848, 848,
|
|
|
|
1225, 181, 154, 181, 1225, 1225, 1225, 1225, 340, 1102,
|
|
1102, 1102, 1102, 1102, 1102, 1073, 1060, 1074, 1074, 1074,
|
|
1074, 1074, 1074, 270, 1060, 169, 167, 155, 854, 160,
|
|
941, 941, 941, 941, 941, 941, 941, 941, 941, 941,
|
|
856, 854, 158, 942, 942, 942, 942, 942, 942, 942,
|
|
942, 942, 942, 943, 297, 1062, 155, 944, 944, 944,
|
|
944, 944, 944, 1063, 321, 1064, 1064, 1064, 1064, 1064,
|
|
1064, 1064, 1064, 1064, 1064, 1134, 320, 1135, 1135, 1135,
|
|
1135, 1135, 1135, 944, 944, 944, 944, 944, 944, 948,
|
|
949, 950, 948, 948, 948, 948, 948, 948, 948, 951,
|
|
|
|
319, 318, 317, 952, 952, 952, 952, 952, 952, 1063,
|
|
316, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1064,
|
|
1064, 1149, 1147, 312, 301, 1149, 1147, 297, 294, 952,
|
|
952, 952, 952, 952, 952, 564, 340, 960, 960, 960,
|
|
960, 960, 960, 960, 960, 960, 960, 873, 288, 1150,
|
|
1148, 959, 959, 959, 959, 959, 959, 287, 1123, 1124,
|
|
1125, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1174, 1174,
|
|
184, 278, 1174, 1174, 286, 285, 284, 959, 959, 959,
|
|
959, 959, 959, 564, 340, 961, 961, 961, 961, 961,
|
|
961, 961, 961, 961, 961, 297, 1175, 1175, 283, 962,
|
|
|
|
962, 962, 962, 962, 962, 1177, 1178, 1225, 1179, 1177,
|
|
1061, 1147, 278, 450, 450, 1147, 256, 1061, 1061, 450,
|
|
250, 1061, 244, 157, 237, 962, 962, 962, 962, 962,
|
|
962, 154, 556, 556, 154, 1061, 1061, 1061, 556, 1148,
|
|
154, 154, 157, 195, 154, 154, 230, 154, 154, 154,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
|
|
312, 192, 222, 154, 184, 184, 184, 184, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 184, 184, 184, 184,
|
|
184, 967, 184, 184, 184, 184, 184, 155, 154, 184,
|
|
154, 154, 154, 154, 154, 154, 154, 154, 154, 154,
|
|
|
|
154, 154, 154, 154, 154, 154, 154, 267, 220, 198,
|
|
197, 267, 278, 278, 278, 278, 278, 278, 278, 278,
|
|
278, 278, 194, 267, 193, 190, 278, 278, 278, 278,
|
|
278, 278, 278, 278, 278, 278, 278, 278, 278, 278,
|
|
278, 278, 278, 992, 278, 278, 278, 278, 278, 184,
|
|
181, 280, 267, 267, 267, 267, 267, 267, 267, 267,
|
|
267, 267, 267, 267, 267, 267, 267, 267, 267, 917,
|
|
918, 918, 918, 918, 918, 918, 918, 918, 918, 918,
|
|
1134, 169, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135,
|
|
1135, 1135, 1134, 158, 1136, 1136, 1136, 1136, 1136, 1136,
|
|
|
|
1136, 1136, 1136, 1136, 157, 155, 1225, 297, 917, 918,
|
|
918, 918, 918, 918, 918, 918, 918, 918, 918, 1134,
|
|
1225, 1137, 1137, 1137, 1137, 1137, 1138, 1135, 1135, 1135,
|
|
1135, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101,
|
|
1101, 1225, 557, 557, 1225, 1225, 297, 296, 557, 1225,
|
|
296, 1225, 561, 561, 1225, 1225, 296, 296, 561, 1225,
|
|
296, 296, 1225, 296, 296, 296, 312, 312, 312, 312,
|
|
312, 312, 312, 312, 312, 312, 1225, 1225, 1225, 296,
|
|
312, 312, 312, 312, 312, 312, 312, 312, 312, 312,
|
|
312, 312, 312, 312, 312, 312, 312, 1002, 312, 312,
|
|
|
|
312, 312, 312, 297, 296, 312, 296, 296, 296, 296,
|
|
296, 296, 296, 296, 296, 296, 296, 296, 296, 296,
|
|
296, 296, 296, 1008, 1225, 1009, 1009, 1009, 1009, 1009,
|
|
1009, 1009, 1009, 1009, 1009, 854, 1225, 1141, 1141, 1141,
|
|
1141, 1141, 1141, 1225, 1225, 1225, 1225, 1093, 1144, 1144,
|
|
1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 661, 661,
|
|
1225, 1225, 155, 1008, 661, 1010, 1010, 1010, 1010, 1010,
|
|
1010, 1010, 1010, 1010, 1010, 1225, 1225, 1143, 1143, 1143,
|
|
1143, 1143, 1143, 1143, 1143, 1143, 1143, 340, 1102, 1102,
|
|
1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 663, 663,
|
|
|
|
1225, 1225, 155, 1008, 663, 1011, 1011, 1011, 1011, 1011,
|
|
1012, 1013, 1013, 1013, 1013, 340, 1102, 1102, 1102, 1102,
|
|
1102, 1102, 1102, 1102, 1102, 1102, 1116, 1116, 1116, 1116,
|
|
1116, 1116, 1116, 1116, 1116, 1116, 1191, 1191, 1191, 1191,
|
|
1191, 1191, 155, 1008, 1225, 1013, 1013, 1013, 1009, 1009,
|
|
1009, 1009, 1009, 1009, 1009, 1116, 1116, 1116, 1116, 1116,
|
|
1116, 1116, 1116, 1116, 1116, 1153, 1225, 1154, 1154, 1154,
|
|
1154, 1154, 1154, 1154, 1154, 1154, 1154, 1225, 664, 664,
|
|
1225, 1225, 155, 854, 664, 1021, 1021, 1021, 1021, 1021,
|
|
1021, 1021, 1021, 1021, 1021, 943, 854, 1225, 1022, 1022,
|
|
|
|
1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1023, 1225,
|
|
1225, 1225, 1024, 1024, 1024, 1024, 1024, 1024, 1153, 1225,
|
|
1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155,
|
|
1153, 1225, 1154, 1154, 1154, 1154, 1154, 1154, 1024, 1024,
|
|
1024, 1024, 1024, 1024, 1028, 1029, 1030, 1028, 1028, 1028,
|
|
1028, 1028, 1028, 1028, 1031, 1225, 1225, 1225, 1032, 1032,
|
|
1032, 1032, 1032, 1032, 1153, 1225, 1156, 1156, 1156, 1156,
|
|
1156, 1157, 1154, 1154, 1154, 1154, 1197, 1225, 1198, 1198,
|
|
1198, 1198, 1198, 1198, 1032, 1032, 1032, 1032, 1032, 1032,
|
|
564, 340, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038,
|
|
|
|
1038, 1038, 1073, 1225, 1074, 1074, 1074, 1074, 1074, 1074,
|
|
1074, 1074, 1074, 1074, 1225, 1149, 1225, 1225, 1225, 1149,
|
|
1165, 1166, 1167, 1165, 1165, 1165, 1165, 1165, 1165, 1165,
|
|
1129, 1225, 1130, 1130, 1130, 1130, 1130, 1130, 1225, 1225,
|
|
1225, 297, 1073, 1150, 1075, 1075, 1075, 1075, 1075, 1075,
|
|
1075, 1075, 1075, 1075, 1225, 1225, 1159, 155, 1160, 1160,
|
|
1160, 1160, 1160, 1160, 312, 1225, 1225, 1225, 1225, 155,
|
|
1168, 1169, 1170, 1168, 1168, 1168, 1168, 1168, 1168, 1168,
|
|
1225, 297, 1073, 1225, 1076, 1076, 1076, 1076, 1076, 1077,
|
|
1078, 1078, 1078, 1078, 1134, 297, 1135, 1135, 1135, 1135,
|
|
|
|
1135, 1135, 1135, 1135, 1135, 1135, 1134, 1225, 1135, 1135,
|
|
1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1225, 1225,
|
|
1225, 297, 1073, 1225, 1078, 1078, 1078, 1074, 1074, 1074,
|
|
1074, 1074, 1074, 1074, 854, 1225, 1173, 1173, 1173, 1173,
|
|
1173, 1173, 1173, 1173, 1173, 1173, 1174, 1225, 1225, 1225,
|
|
1174, 1180, 1181, 1182, 1180, 1180, 1180, 1180, 1180, 1180,
|
|
1180, 297, 1008, 1225, 1009, 1009, 1009, 1009, 1009, 1009,
|
|
1009, 1009, 1009, 1009, 1175, 1153, 1225, 1154, 1154, 1154,
|
|
1154, 1154, 1154, 1154, 1154, 1154, 1154, 1186, 1225, 1187,
|
|
1187, 1187, 1187, 1187, 1187, 184, 1225, 762, 762, 1225,
|
|
|
|
1225, 155, 1008, 762, 1009, 1009, 1009, 1009, 1009, 1009,
|
|
1009, 1009, 1009, 1009, 1153, 1225, 1154, 1154, 1154, 1154,
|
|
1154, 1154, 1154, 1154, 1154, 1154, 155, 1225, 1225, 1225,
|
|
1225, 1183, 1184, 1185, 1183, 1183, 1183, 1183, 1183, 1183,
|
|
1183, 155, 854, 1225, 1091, 1091, 1091, 1091, 1091, 1091,
|
|
1091, 1091, 1091, 1091, 1023, 854, 1225, 1092, 1092, 1092,
|
|
1092, 1092, 1092, 1092, 1092, 1092, 1092, 1093, 297, 1225,
|
|
1225, 1094, 1094, 1094, 1094, 1094, 1094, 1202, 1225, 1203,
|
|
1203, 1203, 1203, 1203, 1203, 1174, 1225, 1225, 1225, 1174,
|
|
1219, 1219, 1219, 1219, 1219, 1219, 1225, 1094, 1094, 1094,
|
|
|
|
1094, 1094, 1094, 1098, 1099, 1100, 1098, 1098, 1098, 1098,
|
|
1098, 1098, 1098, 1175, 1225, 1225, 297, 1101, 1101, 1101,
|
|
1101, 1101, 1101, 1191, 1191, 1191, 1191, 1191, 1191, 1191,
|
|
1191, 1191, 1191, 1225, 312, 763, 763, 280, 1225, 1225,
|
|
280, 763, 280, 1101, 1101, 1101, 1101, 1101, 1101, 1073,
|
|
1225, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074,
|
|
1074, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192,
|
|
1192, 1193, 1193, 1193, 1193, 1193, 1194, 1191, 1191, 1191,
|
|
1191, 764, 764, 1225, 852, 852, 1225, 764, 297, 1073,
|
|
852, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074,
|
|
|
|
1074, 1197, 1225, 1198, 1198, 1198, 1198, 1198, 1198, 1198,
|
|
1198, 1198, 1198, 1197, 1225, 1199, 1199, 1199, 1199, 1199,
|
|
1199, 1199, 1199, 1199, 1199, 1225, 1225, 1225, 297, 1129,
|
|
1225, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130,
|
|
1130, 1197, 1225, 1200, 1200, 1200, 1200, 1200, 1201, 1198,
|
|
1198, 1198, 1198, 1207, 1208, 1209, 1207, 1207, 1207, 1207,
|
|
1207, 1207, 1207, 1225, 853, 853, 1225, 1225, 155, 1129,
|
|
853, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131,
|
|
1131, 936, 936, 280, 1225, 1225, 280, 936, 280, 1225,
|
|
155, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191,
|
|
|
|
1191, 1019, 1019, 1225, 1089, 1089, 1225, 1019, 155, 1129,
|
|
1089, 1132, 1132, 1132, 1132, 1132, 1133, 1130, 1130, 1130,
|
|
1130, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191,
|
|
1191, 1210, 1211, 1212, 1210, 1210, 1210, 1210, 1210, 1210,
|
|
1210, 1139, 1139, 1225, 1171, 1171, 1225, 1139, 155, 854,
|
|
1171, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141,
|
|
1141, 1093, 854, 1225, 1142, 1142, 1142, 1142, 1142, 1142,
|
|
1142, 1142, 1142, 1142, 1225, 1225, 1225, 1225, 1143, 1143,
|
|
1143, 1143, 1143, 1143, 1197, 1225, 1198, 1198, 1198, 1198,
|
|
1198, 1198, 1198, 1198, 1198, 1198, 1225, 1225, 1225, 1225,
|
|
|
|
1225, 1225, 1225, 1225, 1143, 1143, 1143, 1143, 1143, 1143,
|
|
1159, 1225, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160,
|
|
1160, 1160, 1197, 1225, 1198, 1198, 1198, 1198, 1198, 1198,
|
|
1198, 1198, 1198, 1198, 1213, 1214, 1215, 1213, 1213, 1213,
|
|
1213, 1213, 1213, 1213, 1225, 1225, 1225, 1225, 1225, 297,
|
|
1159, 1225, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161,
|
|
1161, 1161, 1225, 1225, 1225, 1216, 1216, 1216, 1216, 1216,
|
|
1216, 297, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216,
|
|
1216, 1216, 1225, 1222, 1222, 1222, 1222, 1222, 1222, 297,
|
|
1159, 1225, 1162, 1162, 1162, 1162, 1162, 1163, 1160, 1160,
|
|
|
|
1160, 1160, 155, 1225, 1225, 1225, 1225, 1225, 1225, 155,
|
|
1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207,
|
|
297, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 297,
|
|
1129, 1225, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130,
|
|
1130, 1130, 1225, 1225, 1225, 1225, 1225, 155, 1217, 1217,
|
|
1217, 1217, 1217, 1218, 1216, 1216, 1216, 1216, 1219, 1219,
|
|
1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1225, 155,
|
|
1129, 1225, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130,
|
|
1130, 1130, 1225, 1225, 1225, 155, 1210, 1210, 1210, 1210,
|
|
1210, 1210, 1210, 1210, 1210, 1210, 1220, 1220, 1220, 1220,
|
|
|
|
1220, 1221, 1219, 1219, 1219, 1219, 1225, 1225, 1225, 155,
|
|
1159, 1225, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160,
|
|
1160, 1160, 1225, 1225, 1225, 1222, 1222, 1222, 1222, 1222,
|
|
1222, 1222, 1222, 1222, 1222, 1213, 1213, 1213, 1213, 1213,
|
|
1213, 1213, 1213, 1213, 1213, 1225, 1225, 1225, 1225, 297,
|
|
1159, 1225, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160,
|
|
1160, 1160, 297, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 297, 1223, 1223, 1223, 1223, 1223, 1224, 1222,
|
|
1222, 1222, 1222, 1225, 1225, 1225, 1225, 1225, 1225, 297,
|
|
1186, 1225, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187,
|
|
|
|
1187, 1187, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
297, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216,
|
|
1216, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 155,
|
|
1186, 1225, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188,
|
|
1188, 1188, 1225, 1225, 1225, 1225, 1225, 1225, 155, 1219,
|
|
1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1222,
|
|
1222, 1222, 1222, 1222, 1222, 1222, 1222, 1222, 1222, 155,
|
|
1186, 1225, 1189, 1189, 1189, 1189, 1189, 1190, 1187, 1187,
|
|
1187, 1187, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 297, 1225, 1225, 1225,
|
|
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 155,
|
|
1202, 1225, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203,
|
|
1203, 1203, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 297,
|
|
1202, 1225, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204,
|
|
1204, 1204, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 297,
|
|
1202, 1225, 1205, 1205, 1205, 1205, 1205, 1206, 1203, 1203,
|
|
|
|
1203, 1203, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 297,
|
|
1186, 1225, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187,
|
|
1187, 1187, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 155,
|
|
1186, 1225, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187,
|
|
1187, 1187, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 155,
|
|
1202, 1225, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203,
|
|
1203, 1203, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 297,
|
|
1202, 1225, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203,
|
|
1203, 1203, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 297,
|
|
76, 76, 76, 76, 76, 76, 76, 76, 76, 76,
|
|
|
|
76, 76, 76, 76, 76, 76, 76, 76, 76, 76,
|
|
76, 83, 83, 83, 83, 83, 83, 83, 83, 83,
|
|
83, 83, 83, 83, 83, 83, 83, 83, 83, 83,
|
|
83, 83, 40, 40, 40, 40, 40, 40, 40, 40,
|
|
40, 40, 40, 40, 40, 40, 40, 40, 40, 40,
|
|
40, 40, 40, 94, 94, 94, 94, 94, 94, 94,
|
|
94, 94, 94, 94, 94, 94, 94, 94, 94, 94,
|
|
94, 94, 94, 94, 101, 101, 101, 101, 101, 101,
|
|
101, 101, 101, 101, 101, 101, 101, 101, 101, 101,
|
|
101, 101, 101, 101, 101, 128, 128, 128, 128, 128,
|
|
|
|
128, 128, 128, 128, 128, 128, 128, 128, 128, 128,
|
|
128, 128, 128, 128, 128, 128, 154, 1225, 1225, 154,
|
|
1225, 1225, 1225, 154, 1225, 154, 1225, 154, 154, 154,
|
|
1225, 1225, 154, 154, 154, 154, 154, 159, 159, 159,
|
|
159, 159, 159, 159, 159, 159, 159, 159, 159, 159,
|
|
159, 159, 159, 159, 159, 159, 159, 159, 164, 1225,
|
|
1225, 164, 1225, 1225, 164, 164, 1225, 164, 1225, 164,
|
|
164, 164, 164, 1225, 164, 164, 164, 164, 164, 168,
|
|
1225, 1225, 168, 1225, 1225, 1225, 168, 1225, 168, 1225,
|
|
168, 168, 168, 1225, 1225, 168, 168, 168, 168, 168,
|
|
|
|
170, 1225, 1225, 170, 170, 170, 1225, 170, 170, 170,
|
|
1225, 170, 170, 170, 1225, 1225, 170, 170, 170, 170,
|
|
170, 205, 205, 1225, 205, 205, 205, 1225, 205, 205,
|
|
205, 205, 205, 205, 205, 205, 205, 205, 205, 205,
|
|
205, 205, 227, 1225, 1225, 227, 227, 227, 1225, 227,
|
|
227, 227, 1225, 227, 227, 227, 1225, 1225, 227, 227,
|
|
227, 227, 227, 231, 231, 1225, 231, 231, 231, 1225,
|
|
231, 231, 231, 231, 231, 231, 231, 231, 231, 231,
|
|
231, 231, 231, 231, 236, 1225, 1225, 236, 236, 236,
|
|
1225, 236, 236, 236, 1225, 236, 236, 236, 1225, 236,
|
|
|
|
236, 1225, 236, 236, 236, 242, 242, 1225, 242, 242,
|
|
242, 1225, 1225, 242, 242, 242, 242, 242, 242, 242,
|
|
242, 242, 1225, 242, 242, 242, 245, 245, 245, 245,
|
|
245, 245, 245, 245, 245, 245, 245, 245, 245, 245,
|
|
245, 245, 245, 245, 245, 245, 245, 249, 1225, 1225,
|
|
249, 249, 1225, 1225, 249, 249, 249, 1225, 249, 249,
|
|
249, 249, 1225, 249, 249, 249, 249, 249, 253, 253,
|
|
253, 253, 253, 253, 253, 253, 253, 253, 253, 253,
|
|
253, 253, 253, 253, 253, 253, 253, 253, 253, 255,
|
|
255, 1225, 255, 255, 1225, 255, 255, 255, 255, 255,
|
|
|
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
|
262, 1225, 1225, 262, 1225, 1225, 262, 262, 1225, 262,
|
|
1225, 262, 262, 262, 262, 1225, 262, 262, 262, 262,
|
|
262, 266, 1225, 1225, 266, 1225, 1225, 1225, 266, 1225,
|
|
266, 1225, 266, 266, 266, 1225, 266, 266, 266, 266,
|
|
266, 266, 269, 1225, 1225, 269, 269, 269, 1225, 269,
|
|
269, 269, 1225, 269, 269, 269, 1225, 269, 269, 269,
|
|
269, 269, 269, 206, 206, 1225, 206, 206, 206, 1225,
|
|
206, 206, 206, 206, 206, 206, 206, 206, 206, 206,
|
|
206, 206, 206, 206, 293, 1225, 1225, 1225, 293, 293,
|
|
|
|
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
|
|
293, 293, 293, 293, 293, 296, 1225, 1225, 296, 1225,
|
|
1225, 1225, 296, 1225, 296, 1225, 296, 296, 296, 1225,
|
|
1225, 296, 296, 296, 296, 296, 298, 1225, 1225, 298,
|
|
1225, 1225, 298, 298, 1225, 298, 1225, 298, 298, 298,
|
|
298, 1225, 298, 298, 298, 298, 298, 300, 1225, 1225,
|
|
300, 1225, 1225, 1225, 300, 1225, 300, 1225, 300, 300,
|
|
300, 1225, 1225, 300, 300, 300, 300, 300, 302, 1225,
|
|
1225, 302, 302, 302, 1225, 302, 302, 302, 1225, 302,
|
|
302, 302, 1225, 1225, 302, 302, 302, 302, 302, 324,
|
|
|
|
324, 1225, 324, 324, 324, 1225, 324, 324, 324, 324,
|
|
324, 324, 324, 324, 324, 324, 324, 324, 324, 324,
|
|
154, 1225, 1225, 154, 1225, 1225, 1225, 154, 1225, 154,
|
|
1225, 154, 154, 154, 1225, 1225, 154, 154, 154, 154,
|
|
154, 329, 329, 329, 329, 329, 329, 329, 329, 329,
|
|
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
|
|
329, 329, 331, 331, 1225, 331, 331, 331, 331, 331,
|
|
331, 331, 331, 331, 331, 331, 331, 331, 331, 331,
|
|
331, 331, 331, 164, 1225, 1225, 164, 1225, 1225, 1225,
|
|
164, 1225, 164, 1225, 164, 164, 164, 1225, 1225, 164,
|
|
|
|
164, 164, 164, 164, 168, 1225, 1225, 168, 1225, 1225,
|
|
1225, 168, 1225, 168, 1225, 168, 168, 168, 1225, 1225,
|
|
168, 168, 168, 168, 168, 170, 1225, 1225, 170, 170,
|
|
170, 1225, 170, 170, 170, 1225, 170, 170, 170, 1225,
|
|
1225, 170, 170, 170, 170, 170, 171, 1225, 1225, 171,
|
|
171, 171, 1225, 171, 171, 171, 1225, 171, 171, 171,
|
|
1225, 1225, 171, 171, 171, 171, 171, 341, 341, 341,
|
|
1225, 1225, 1225, 1225, 341, 205, 205, 1225, 205, 205,
|
|
205, 1225, 205, 205, 205, 205, 205, 205, 205, 205,
|
|
205, 205, 205, 205, 205, 205, 206, 206, 1225, 206,
|
|
|
|
206, 206, 1225, 206, 206, 206, 206, 206, 206, 206,
|
|
206, 206, 206, 206, 206, 206, 206, 227, 1225, 1225,
|
|
227, 227, 227, 1225, 227, 227, 227, 1225, 227, 227,
|
|
227, 1225, 1225, 227, 227, 227, 227, 227, 228, 1225,
|
|
1225, 228, 228, 228, 1225, 228, 228, 228, 1225, 228,
|
|
228, 228, 1225, 1225, 228, 228, 228, 228, 228, 231,
|
|
231, 1225, 231, 231, 231, 1225, 231, 231, 231, 231,
|
|
231, 231, 231, 231, 231, 231, 231, 231, 231, 231,
|
|
232, 232, 1225, 232, 232, 232, 1225, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
|
|
232, 236, 1225, 1225, 236, 236, 236, 1225, 236, 236,
|
|
236, 1225, 236, 236, 236, 1225, 236, 236, 1225, 236,
|
|
236, 236, 242, 242, 1225, 242, 242, 242, 1225, 1225,
|
|
242, 242, 242, 242, 242, 242, 242, 242, 242, 1225,
|
|
242, 242, 242, 249, 1225, 1225, 249, 249, 1225, 1225,
|
|
249, 249, 249, 1225, 249, 249, 249, 249, 1225, 249,
|
|
249, 249, 249, 249, 255, 255, 1225, 255, 255, 1225,
|
|
255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
|
|
255, 255, 255, 255, 255, 265, 1225, 1225, 265, 1225,
|
|
1225, 1225, 265, 1225, 265, 1225, 265, 265, 265, 1225,
|
|
|
|
1225, 265, 265, 265, 265, 265, 266, 1225, 1225, 266,
|
|
1225, 1225, 1225, 266, 1225, 266, 1225, 266, 266, 266,
|
|
1225, 266, 266, 266, 266, 266, 266, 267, 1225, 1225,
|
|
267, 267, 1225, 267, 267, 1225, 1225, 267, 267, 269,
|
|
1225, 1225, 269, 269, 269, 1225, 269, 269, 269, 1225,
|
|
269, 269, 269, 1225, 269, 269, 269, 269, 269, 269,
|
|
293, 1225, 1225, 1225, 293, 293, 293, 293, 293, 293,
|
|
293, 293, 293, 293, 293, 293, 293, 293, 293, 293,
|
|
293, 296, 1225, 1225, 296, 1225, 1225, 1225, 296, 1225,
|
|
296, 1225, 296, 296, 296, 1225, 1225, 296, 296, 296,
|
|
|
|
296, 296, 298, 1225, 1225, 298, 1225, 1225, 1225, 298,
|
|
1225, 298, 1225, 298, 298, 298, 1225, 1225, 298, 298,
|
|
298, 298, 298, 300, 1225, 1225, 300, 1225, 1225, 1225,
|
|
300, 1225, 300, 1225, 300, 300, 300, 1225, 1225, 300,
|
|
300, 300, 300, 300, 302, 1225, 1225, 302, 302, 302,
|
|
1225, 302, 302, 302, 1225, 302, 302, 302, 1225, 1225,
|
|
302, 302, 302, 302, 302, 303, 1225, 1225, 303, 303,
|
|
303, 1225, 303, 303, 303, 1225, 303, 303, 303, 1225,
|
|
1225, 303, 303, 303, 303, 303, 324, 324, 1225, 324,
|
|
324, 324, 1225, 324, 324, 324, 324, 324, 324, 324,
|
|
|
|
324, 324, 324, 324, 324, 324, 324, 329, 329, 329,
|
|
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
|
|
329, 329, 329, 329, 329, 329, 329, 329, 442, 442,
|
|
442, 442, 442, 442, 442, 442, 442, 442, 442, 442,
|
|
442, 442, 442, 442, 442, 442, 442, 442, 442, 154,
|
|
1225, 1225, 154, 1225, 1225, 1225, 154, 1225, 154, 1225,
|
|
154, 154, 154, 1225, 1225, 154, 154, 154, 154, 154,
|
|
456, 456, 456, 1225, 1225, 1225, 1225, 456, 205, 205,
|
|
1225, 205, 205, 205, 1225, 205, 205, 205, 205, 205,
|
|
205, 205, 205, 205, 205, 205, 205, 205, 205, 232,
|
|
|
|
232, 1225, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
231, 231, 1225, 231, 231, 231, 1225, 231, 231, 231,
|
|
231, 231, 231, 231, 231, 231, 231, 231, 231, 231,
|
|
231, 206, 206, 1225, 206, 206, 206, 1225, 206, 206,
|
|
206, 206, 206, 206, 206, 206, 206, 206, 206, 206,
|
|
206, 206, 563, 563, 563, 1225, 1225, 1225, 1225, 563,
|
|
462, 462, 462, 1225, 1225, 1225, 1225, 462, 329, 329,
|
|
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
|
|
329, 329, 329, 329, 329, 329, 329, 329, 329, 232,
|
|
|
|
232, 1225, 232, 232, 232, 1225, 232, 232, 232, 232,
|
|
232, 232, 232, 232, 232, 232, 232, 232, 232, 232,
|
|
666, 666, 666, 1225, 1225, 1225, 1225, 666, 670, 670,
|
|
670, 670, 1225, 1225, 1225, 1225, 670, 776, 776, 776,
|
|
1225, 1225, 1225, 1225, 776, 777, 777, 777, 777, 1225,
|
|
1225, 1225, 1225, 777, 869, 869, 869, 1225, 1225, 1225,
|
|
1225, 869, 870, 870, 870, 870, 1225, 1225, 1225, 1225,
|
|
870, 329, 329, 329, 329, 329, 329, 329, 329, 329,
|
|
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
|
|
329, 329, 267, 1225, 1225, 267, 267, 1225, 267, 267,
|
|
|
|
1225, 1225, 267, 267, 296, 1225, 1225, 296, 1225, 1225,
|
|
1225, 296, 1225, 296, 1225, 296, 296, 296, 1225, 1225,
|
|
296, 296, 296, 296, 296, 940, 1225, 940, 940, 1225,
|
|
1225, 1225, 1225, 940, 958, 958, 958, 1225, 1225, 1225,
|
|
1225, 958, 959, 959, 959, 959, 1225, 1225, 1225, 1225,
|
|
959, 329, 329, 329, 329, 329, 329, 329, 329, 329,
|
|
329, 329, 329, 329, 329, 329, 329, 329, 329, 329,
|
|
329, 329, 267, 1225, 1225, 267, 267, 1225, 267, 267,
|
|
1225, 1225, 267, 267, 296, 1225, 1225, 296, 1225, 1225,
|
|
1225, 296, 1225, 296, 1225, 296, 296, 296, 1225, 1225,
|
|
|
|
296, 296, 296, 296, 296, 1020, 1225, 1020, 1020, 1225,
|
|
1225, 1225, 1225, 1020, 1036, 1036, 1036, 1225, 1225, 1225,
|
|
1225, 1036, 1037, 1037, 1037, 1225, 1225, 1225, 1225, 1225,
|
|
1037, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050,
|
|
1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050,
|
|
1050, 1050, 1055, 1055, 1225, 1055, 1055, 1055, 1055, 1055,
|
|
1225, 1055, 1225, 1055, 1055, 1055, 1225, 1225, 1055, 1055,
|
|
1055, 1055, 1055, 1061, 1061, 1225, 1061, 1061, 1061, 1061,
|
|
1061, 1225, 1061, 1225, 1061, 1061, 1061, 1225, 1225, 1061,
|
|
1061, 1061, 1061, 1061, 1090, 1225, 1090, 1090, 1225, 1225,
|
|
|
|
1225, 1225, 1090, 1140, 1225, 1140, 1140, 1225, 1225, 1225,
|
|
1225, 1140, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176,
|
|
1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176,
|
|
1176, 1176, 1176, 21, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225
|
|
} ;
|
|
|
|
static yyconst flex_int16_t yy_chk[9611] =
|
|
{ 0,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
1, 1, 1, 1, 1, 1, 2, 23, 372, 41,
|
|
2, 23, 63, 2, 5, 5, 372, 5, 5, 5,
|
|
41, 5, 6, 6, 481, 6, 6, 6, 5, 6,
|
|
|
|
7, 7, 63, 7, 7, 7, 6, 7, 7, 29,
|
|
2, 2, 5, 5, 45, 2, 44, 49, 481, 44,
|
|
6, 6, 49, 2, 96, 45, 2, 3, 55, 44,
|
|
29, 3, 13, 13, 3, 13, 13, 13, 13, 5,
|
|
46, 3, 55, 46, 3, 52, 65, 6, 14, 14,
|
|
96, 14, 14, 14, 14, 7, 1222, 29, 3, 103,
|
|
52, 3, 37, 37, 37, 37, 37, 37, 69, 3,
|
|
98, 3, 69, 3, 3, 65, 3, 8, 8, 383,
|
|
8, 8, 8, 3, 8, 8, 124, 13, 17, 17,
|
|
17, 17, 17, 17, 17, 383, 98, 84, 67, 3,
|
|
|
|
4, 84, 67, 14, 4, 34, 34, 4, 59, 103,
|
|
34, 34, 67, 159, 4, 159, 62, 4, 59, 62,
|
|
18, 18, 18, 18, 18, 18, 18, 59, 1216, 62,
|
|
34, 4, 8, 124, 4, 90, 90, 116, 90, 90,
|
|
116, 115, 4, 17, 4, 62, 4, 4, 106, 4,
|
|
92, 92, 115, 92, 92, 34, 4, 36, 36, 36,
|
|
36, 36, 36, 36, 36, 36, 36, 60, 329, 106,
|
|
329, 60, 4, 9, 9, 18, 9, 9, 9, 58,
|
|
9, 58, 58, 58, 58, 58, 58, 58, 58, 58,
|
|
58, 100, 100, 75, 100, 100, 106, 361, 361, 127,
|
|
|
|
129, 60, 60, 75, 70, 70, 60, 102, 127, 70,
|
|
70, 102, 75, 142, 60, 68, 142, 60, 68, 68,
|
|
68, 68, 68, 68, 68, 68, 68, 68, 9, 70,
|
|
9, 9, 9, 9, 9, 9, 9, 9, 9, 9,
|
|
9, 9, 9, 9, 9, 9, 9, 9, 10, 10,
|
|
129, 10, 10, 10, 70, 10, 209, 105, 105, 209,
|
|
105, 105, 102, 105, 110, 110, 110, 110, 110, 110,
|
|
110, 110, 110, 110, 111, 111, 111, 111, 111, 111,
|
|
125, 1198, 125, 125, 125, 125, 125, 125, 125, 125,
|
|
125, 125, 131, 131, 206, 131, 131, 138, 138, 138,
|
|
|
|
138, 138, 138, 10, 219, 10, 10, 10, 10, 10,
|
|
10, 10, 10, 10, 10, 10, 10, 10, 10, 10,
|
|
10, 10, 10, 11, 11, 133, 11, 11, 11, 11,
|
|
11, 141, 181, 203, 322, 182, 11, 11, 11, 135,
|
|
135, 206, 141, 181, 135, 135, 133, 131, 166, 182,
|
|
371, 219, 11, 137, 137, 137, 137, 137, 137, 137,
|
|
137, 137, 137, 156, 135, 371, 210, 156, 222, 166,
|
|
235, 153, 210, 133, 220, 222, 235, 1173, 11, 12,
|
|
12, 153, 12, 12, 12, 12, 12, 203, 322, 135,
|
|
153, 220, 12, 12, 12, 152, 166, 152, 152, 152,
|
|
|
|
152, 152, 152, 152, 152, 152, 152, 580, 12, 162,
|
|
162, 162, 162, 162, 162, 162, 162, 162, 162, 163,
|
|
163, 163, 163, 163, 163, 163, 163, 163, 163, 201,
|
|
201, 580, 201, 201, 12, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
|
|
15, 15, 15, 15, 15, 15, 15, 15, 15, 15,
|
|
15, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 19, 19, 19,
|
|
19, 19, 19, 19, 19, 19, 19, 28, 165, 28,
|
|
232, 165, 165, 165, 165, 165, 165, 165, 165, 165,
|
|
|
|
165, 28, 290, 290, 28, 28, 28, 28, 28, 28,
|
|
28, 28, 28, 28, 35, 221, 35, 35, 35, 35,
|
|
35, 35, 35, 35, 35, 35, 35, 258, 449, 221,
|
|
35, 35, 35, 35, 35, 35, 327, 232, 1171, 327,
|
|
218, 155, 155, 155, 155, 155, 218, 224, 155, 155,
|
|
290, 224, 155, 35, 218, 449, 35, 35, 35, 35,
|
|
35, 35, 42, 488, 550, 42, 155, 155, 155, 226,
|
|
243, 42, 42, 226, 243, 42, 42, 258, 42, 42,
|
|
42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
|
|
42, 42, 488, 550, 42, 42, 42, 42, 42, 42,
|
|
|
|
42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
|
|
42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
|
|
42, 42, 42, 42, 42, 42, 42, 42, 42, 42,
|
|
42, 42, 42, 42, 42, 42, 42, 42, 47, 47,
|
|
47, 47, 47, 47, 47, 47, 47, 47, 47, 330,
|
|
472, 330, 47, 47, 47, 47, 47, 47, 472, 217,
|
|
223, 217, 47, 208, 223, 260, 208, 170, 170, 260,
|
|
208, 208, 170, 170, 223, 331, 262, 331, 47, 47,
|
|
47, 47, 47, 47, 56, 56, 1154, 56, 56, 56,
|
|
56, 56, 170, 382, 56, 56, 382, 262, 56, 173,
|
|
|
|
173, 173, 173, 173, 173, 173, 173, 173, 173, 377,
|
|
328, 377, 56, 56, 56, 57, 328, 170, 208, 57,
|
|
57, 57, 295, 57, 262, 57, 57, 217, 341, 57,
|
|
167, 167, 167, 167, 167, 343, 173, 167, 167, 341,
|
|
343, 167, 445, 57, 57, 57, 179, 179, 179, 179,
|
|
179, 179, 378, 1143, 378, 167, 167, 167, 177, 177,
|
|
177, 177, 177, 177, 177, 177, 177, 177, 377, 381,
|
|
57, 61, 295, 61, 379, 169, 169, 169, 169, 169,
|
|
379, 445, 169, 169, 473, 61, 169, 381, 61, 61,
|
|
61, 61, 61, 61, 61, 61, 61, 61, 473, 386,
|
|
|
|
169, 169, 169, 178, 178, 178, 178, 178, 178, 178,
|
|
178, 178, 178, 194, 194, 370, 370, 194, 370, 194,
|
|
194, 465, 1142, 194, 412, 194, 194, 204, 204, 211,
|
|
204, 204, 234, 211, 389, 234, 61, 74, 465, 234,
|
|
234, 74, 74, 74, 582, 74, 386, 74, 74, 389,
|
|
370, 74, 225, 225, 225, 225, 225, 225, 225, 225,
|
|
225, 225, 582, 211, 211, 74, 74, 74, 211, 238,
|
|
238, 412, 238, 238, 246, 246, 211, 246, 246, 211,
|
|
456, 390, 204, 227, 227, 390, 467, 234, 227, 227,
|
|
848, 456, 74, 82, 82, 250, 82, 82, 82, 250,
|
|
|
|
82, 250, 250, 467, 480, 82, 257, 82, 227, 250,
|
|
257, 263, 480, 230, 230, 413, 413, 230, 413, 230,
|
|
230, 82, 82, 230, 250, 230, 254, 254, 848, 254,
|
|
254, 440, 263, 227, 247, 247, 247, 247, 247, 247,
|
|
247, 247, 247, 247, 439, 439, 440, 439, 82, 82,
|
|
91, 479, 91, 259, 259, 326, 259, 259, 326, 263,
|
|
479, 257, 326, 326, 91, 489, 463, 91, 91, 91,
|
|
91, 91, 91, 91, 91, 91, 91, 107, 463, 439,
|
|
107, 254, 442, 1140, 442, 270, 107, 107, 485, 270,
|
|
107, 469, 270, 107, 107, 264, 264, 264, 264, 270,
|
|
|
|
457, 489, 264, 264, 294, 485, 264, 107, 294, 107,
|
|
326, 457, 469, 270, 270, 276, 276, 276, 276, 276,
|
|
276, 264, 264, 271, 271, 271, 271, 271, 271, 271,
|
|
271, 271, 271, 107, 107, 107, 108, 1139, 443, 108,
|
|
443, 468, 108, 108, 477, 108, 108, 108, 108, 108,
|
|
501, 476, 108, 108, 268, 268, 268, 268, 268, 294,
|
|
468, 268, 268, 476, 477, 268, 108, 108, 108, 274,
|
|
274, 274, 274, 274, 274, 274, 274, 274, 274, 268,
|
|
268, 268, 275, 275, 275, 275, 275, 275, 275, 275,
|
|
275, 275, 108, 108, 108, 109, 484, 501, 109, 109,
|
|
|
|
109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
|
|
109, 109, 484, 1135, 109, 109, 109, 109, 109, 109,
|
|
109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
|
|
109, 109, 109, 109, 109, 109, 109, 453, 453, 453,
|
|
109, 109, 109, 109, 109, 109, 109, 109, 109, 109,
|
|
109, 109, 109, 109, 109, 109, 109, 112, 588, 112,
|
|
112, 112, 112, 112, 112, 112, 112, 112, 112, 112,
|
|
470, 475, 588, 112, 112, 112, 112, 112, 112, 286,
|
|
286, 475, 470, 286, 498, 286, 286, 470, 482, 286,
|
|
589, 286, 310, 310, 310, 310, 310, 310, 589, 112,
|
|
|
|
112, 112, 112, 112, 112, 113, 500, 498, 482, 113,
|
|
113, 113, 113, 113, 113, 113, 113, 113, 113, 113,
|
|
113, 113, 1128, 500, 113, 113, 113, 113, 113, 113,
|
|
113, 113, 113, 113, 113, 113, 113, 113, 113, 113,
|
|
113, 113, 113, 113, 113, 113, 113, 1122, 601, 113,
|
|
113, 113, 113, 113, 113, 113, 113, 113, 113, 113,
|
|
113, 113, 113, 113, 113, 113, 113, 117, 117, 117,
|
|
117, 117, 117, 117, 117, 117, 117, 117, 591, 601,
|
|
490, 117, 117, 117, 117, 117, 117, 490, 513, 302,
|
|
302, 117, 591, 513, 302, 302, 308, 308, 308, 308,
|
|
|
|
308, 308, 308, 308, 308, 308, 474, 117, 117, 117,
|
|
117, 117, 117, 136, 302, 136, 136, 136, 136, 136,
|
|
136, 136, 136, 136, 136, 136, 497, 474, 497, 136,
|
|
136, 136, 136, 136, 136, 524, 533, 529, 524, 302,
|
|
297, 297, 297, 297, 297, 466, 502, 297, 297, 466,
|
|
688, 297, 136, 502, 1112, 136, 136, 136, 136, 136,
|
|
136, 139, 552, 533, 139, 297, 297, 297, 688, 552,
|
|
139, 139, 576, 466, 139, 139, 529, 139, 139, 139,
|
|
139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
|
|
139, 576, 497, 139, 139, 139, 139, 139, 139, 139,
|
|
|
|
139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
|
|
139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
|
|
139, 139, 139, 139, 139, 139, 139, 139, 139, 139,
|
|
139, 139, 139, 139, 139, 139, 139, 143, 143, 143,
|
|
143, 143, 143, 143, 143, 143, 143, 143, 563, 551,
|
|
593, 143, 143, 143, 143, 143, 143, 487, 593, 563,
|
|
487, 143, 305, 305, 305, 305, 305, 305, 305, 305,
|
|
305, 305, 323, 323, 478, 323, 323, 143, 143, 143,
|
|
143, 143, 143, 150, 150, 551, 150, 150, 150, 150,
|
|
150, 538, 487, 150, 150, 478, 538, 150, 1107, 305,
|
|
|
|
309, 309, 309, 309, 309, 309, 309, 309, 309, 309,
|
|
581, 150, 150, 150, 151, 587, 581, 577, 151, 151,
|
|
151, 587, 151, 583, 151, 151, 499, 323, 151, 299,
|
|
299, 299, 299, 299, 596, 584, 299, 299, 577, 583,
|
|
299, 596, 151, 151, 151, 460, 460, 460, 460, 460,
|
|
460, 807, 807, 499, 299, 299, 299, 584, 592, 604,
|
|
301, 301, 301, 301, 301, 604, 1106, 301, 301, 151,
|
|
172, 301, 499, 172, 172, 172, 172, 172, 592, 549,
|
|
172, 172, 549, 600, 172, 301, 301, 301, 332, 332,
|
|
332, 332, 332, 332, 332, 332, 332, 332, 172, 172,
|
|
|
|
172, 174, 590, 174, 174, 174, 174, 174, 174, 174,
|
|
174, 174, 174, 174, 549, 594, 600, 174, 174, 174,
|
|
174, 174, 174, 319, 319, 565, 565, 319, 471, 319,
|
|
319, 590, 471, 319, 598, 319, 594, 565, 567, 567,
|
|
174, 609, 599, 174, 174, 174, 174, 174, 174, 183,
|
|
567, 514, 183, 609, 611, 514, 471, 598, 183, 183,
|
|
611, 687, 183, 183, 599, 183, 183, 183, 183, 183,
|
|
183, 183, 183, 183, 183, 183, 183, 183, 183, 514,
|
|
687, 183, 183, 183, 183, 183, 183, 183, 183, 183,
|
|
183, 183, 183, 183, 183, 183, 183, 183, 183, 183,
|
|
|
|
183, 183, 183, 183, 183, 183, 183, 183, 183, 183,
|
|
183, 183, 183, 183, 183, 183, 183, 183, 183, 183,
|
|
183, 183, 183, 183, 183, 184, 184, 184, 184, 184,
|
|
184, 184, 184, 184, 184, 184, 808, 808, 603, 184,
|
|
184, 184, 184, 184, 184, 333, 333, 333, 333, 333,
|
|
333, 333, 333, 333, 333, 444, 444, 444, 444, 444,
|
|
444, 444, 444, 444, 444, 184, 184, 184, 184, 184,
|
|
184, 205, 602, 603, 517, 205, 205, 205, 517, 205,
|
|
384, 205, 205, 655, 384, 205, 595, 384, 1102, 655,
|
|
683, 610, 444, 666, 384, 595, 683, 652, 1090, 205,
|
|
|
|
205, 205, 517, 610, 666, 602, 651, 511, 384, 384,
|
|
391, 511, 391, 391, 391, 391, 391, 391, 391, 391,
|
|
391, 391, 608, 517, 608, 515, 205, 229, 652, 515,
|
|
229, 229, 229, 229, 229, 511, 695, 229, 229, 651,
|
|
392, 229, 392, 392, 392, 392, 392, 392, 392, 392,
|
|
392, 392, 511, 515, 654, 229, 229, 229, 231, 653,
|
|
695, 515, 231, 231, 231, 692, 231, 657, 231, 231,
|
|
1089, 393, 231, 393, 393, 393, 393, 393, 393, 393,
|
|
393, 393, 393, 686, 692, 697, 231, 231, 231, 654,
|
|
415, 686, 653, 697, 415, 608, 448, 415, 448, 448,
|
|
|
|
448, 448, 448, 448, 415, 507, 657, 507, 507, 507,
|
|
507, 507, 507, 231, 266, 670, 689, 266, 415, 415,
|
|
671, 671, 691, 266, 266, 698, 670, 266, 672, 672,
|
|
266, 266, 671, 725, 1081, 448, 790, 689, 725, 691,
|
|
672, 512, 698, 790, 266, 512, 266, 452, 452, 452,
|
|
452, 452, 452, 452, 452, 452, 452, 452, 459, 459,
|
|
459, 459, 459, 459, 459, 459, 459, 459, 794, 512,
|
|
266, 266, 266, 269, 794, 693, 269, 795, 1080, 269,
|
|
269, 795, 269, 269, 269, 269, 269, 693, 512, 269,
|
|
269, 462, 693, 462, 462, 462, 462, 462, 462, 462,
|
|
|
|
462, 462, 462, 269, 269, 269, 503, 503, 503, 503,
|
|
503, 503, 503, 503, 503, 503, 505, 696, 505, 505,
|
|
505, 505, 505, 505, 505, 505, 505, 505, 711, 269,
|
|
269, 269, 272, 696, 272, 272, 272, 272, 272, 272,
|
|
272, 272, 272, 272, 272, 701, 711, 1072, 272, 272,
|
|
272, 272, 272, 272, 506, 800, 506, 506, 506, 506,
|
|
506, 506, 506, 506, 506, 506, 701, 800, 1071, 535,
|
|
674, 674, 706, 535, 272, 272, 272, 272, 272, 272,
|
|
277, 819, 674, 706, 277, 277, 277, 277, 277, 277,
|
|
277, 277, 277, 277, 277, 277, 277, 535, 819, 277,
|
|
|
|
277, 277, 277, 277, 277, 277, 277, 277, 277, 277,
|
|
277, 277, 277, 277, 277, 277, 277, 277, 277, 277,
|
|
277, 277, 886, 886, 277, 277, 277, 277, 277, 277,
|
|
277, 277, 277, 277, 277, 277, 277, 277, 277, 277,
|
|
277, 277, 278, 278, 278, 278, 278, 278, 278, 278,
|
|
278, 278, 278, 710, 712, 1070, 278, 278, 278, 278,
|
|
278, 278, 516, 802, 710, 712, 516, 802, 518, 519,
|
|
1068, 814, 518, 519, 532, 737, 532, 532, 532, 532,
|
|
532, 532, 278, 278, 278, 278, 278, 278, 304, 814,
|
|
516, 304, 304, 304, 304, 304, 518, 519, 304, 304,
|
|
|
|
748, 758, 304, 838, 516, 748, 518, 838, 709, 519,
|
|
709, 1064, 758, 532, 737, 806, 304, 304, 304, 306,
|
|
806, 306, 306, 306, 306, 306, 306, 306, 306, 306,
|
|
306, 306, 801, 1047, 801, 306, 306, 306, 306, 306,
|
|
306, 776, 777, 539, 578, 522, 805, 539, 578, 522,
|
|
520, 585, 776, 777, 520, 585, 818, 805, 306, 818,
|
|
1046, 306, 306, 306, 306, 306, 306, 311, 709, 799,
|
|
311, 539, 578, 522, 1042, 799, 311, 311, 520, 585,
|
|
311, 311, 1037, 311, 311, 311, 311, 311, 311, 311,
|
|
311, 311, 311, 311, 311, 311, 311, 522, 520, 311,
|
|
|
|
311, 311, 311, 311, 311, 311, 311, 311, 311, 311,
|
|
311, 311, 311, 311, 311, 311, 311, 311, 311, 311,
|
|
311, 311, 311, 311, 311, 311, 311, 311, 311, 311,
|
|
311, 311, 311, 311, 311, 311, 311, 311, 311, 311,
|
|
311, 311, 311, 312, 312, 312, 312, 312, 312, 312,
|
|
312, 312, 312, 312, 778, 778, 1020, 312, 312, 312,
|
|
312, 312, 312, 521, 523, 1039, 778, 521, 523, 528,
|
|
528, 528, 528, 528, 528, 528, 528, 528, 528, 831,
|
|
817, 1039, 817, 312, 312, 312, 312, 312, 312, 324,
|
|
831, 521, 523, 324, 324, 324, 820, 324, 828, 324,
|
|
|
|
324, 779, 779, 324, 781, 781, 528, 843, 523, 827,
|
|
828, 843, 521, 779, 820, 827, 781, 324, 324, 324,
|
|
558, 558, 558, 558, 558, 558, 558, 558, 558, 558,
|
|
558, 564, 564, 564, 564, 564, 564, 564, 564, 564,
|
|
564, 817, 1019, 889, 324, 334, 889, 334, 334, 334,
|
|
334, 334, 334, 334, 334, 334, 334, 566, 566, 566,
|
|
566, 566, 566, 566, 566, 566, 566, 570, 570, 570,
|
|
570, 570, 570, 570, 570, 832, 840, 924, 924, 570,
|
|
832, 842, 840, 842, 334, 335, 1015, 335, 335, 335,
|
|
335, 335, 335, 335, 335, 335, 335, 572, 572, 572,
|
|
|
|
572, 572, 572, 572, 572, 572, 572, 573, 573, 573,
|
|
573, 573, 573, 656, 656, 656, 656, 656, 656, 656,
|
|
656, 656, 656, 1004, 335, 336, 841, 336, 336, 336,
|
|
336, 336, 336, 336, 336, 336, 336, 575, 841, 575,
|
|
575, 575, 575, 575, 575, 575, 575, 575, 575, 612,
|
|
656, 612, 612, 612, 612, 612, 612, 612, 612, 612,
|
|
612, 884, 918, 884, 336, 337, 337, 337, 337, 337,
|
|
337, 337, 337, 337, 337, 337, 961, 961, 997, 337,
|
|
337, 337, 337, 337, 337, 613, 844, 613, 613, 613,
|
|
613, 613, 613, 613, 613, 613, 613, 844, 845, 1050,
|
|
|
|
918, 1050, 337, 845, 846, 337, 337, 337, 337, 337,
|
|
337, 340, 340, 340, 340, 340, 340, 340, 340, 340,
|
|
340, 340, 846, 962, 962, 340, 340, 340, 340, 340,
|
|
340, 614, 855, 614, 614, 614, 614, 614, 614, 614,
|
|
614, 614, 614, 617, 855, 927, 996, 617, 927, 968,
|
|
968, 340, 340, 340, 340, 340, 340, 342, 342, 342,
|
|
342, 342, 342, 342, 342, 342, 342, 342, 342, 974,
|
|
974, 617, 342, 342, 342, 342, 342, 342, 618, 899,
|
|
623, 621, 618, 627, 623, 621, 869, 627, 680, 680,
|
|
680, 680, 680, 680, 870, 617, 899, 869, 342, 342,
|
|
|
|
342, 342, 342, 342, 344, 870, 618, 344, 623, 621,
|
|
994, 627, 618, 344, 344, 621, 623, 344, 344, 627,
|
|
344, 344, 344, 344, 344, 344, 344, 344, 344, 344,
|
|
344, 344, 344, 344, 1006, 1006, 344, 344, 344, 344,
|
|
344, 344, 344, 344, 344, 344, 344, 344, 344, 344,
|
|
344, 344, 344, 344, 344, 344, 344, 344, 344, 344,
|
|
344, 344, 344, 344, 344, 344, 344, 344, 344, 344,
|
|
344, 344, 344, 344, 344, 344, 344, 344, 344, 344,
|
|
345, 345, 345, 345, 345, 345, 345, 345, 345, 345,
|
|
345, 857, 985, 888, 345, 345, 345, 345, 345, 345,
|
|
|
|
622, 624, 882, 857, 622, 624, 888, 625, 882, 973,
|
|
628, 625, 973, 626, 628, 629, 1053, 626, 1053, 629,
|
|
345, 345, 345, 345, 345, 345, 368, 941, 622, 624,
|
|
368, 368, 368, 894, 368, 625, 368, 368, 628, 941,
|
|
368, 626, 622, 629, 911, 628, 894, 871, 871, 625,
|
|
872, 872, 874, 874, 368, 368, 368, 911, 624, 871,
|
|
975, 626, 872, 975, 874, 660, 629, 660, 660, 660,
|
|
660, 660, 660, 677, 677, 677, 677, 677, 677, 677,
|
|
677, 368, 369, 942, 926, 677, 369, 369, 369, 369,
|
|
369, 944, 369, 369, 958, 942, 369, 926, 685, 984,
|
|
|
|
981, 984, 685, 944, 660, 958, 995, 980, 1009, 995,
|
|
369, 369, 369, 667, 970, 667, 667, 667, 667, 667,
|
|
667, 667, 667, 667, 667, 668, 685, 668, 668, 668,
|
|
668, 668, 668, 668, 668, 668, 668, 369, 387, 959,
|
|
1038, 1038, 387, 387, 387, 954, 387, 1009, 387, 387,
|
|
959, 669, 387, 669, 669, 669, 669, 669, 669, 669,
|
|
669, 669, 669, 1176, 984, 1176, 387, 387, 387, 673,
|
|
673, 673, 673, 673, 673, 673, 673, 673, 673, 679,
|
|
679, 679, 679, 679, 679, 679, 679, 679, 679, 1048,
|
|
1048, 690, 694, 387, 388, 690, 694, 1013, 388, 388,
|
|
|
|
388, 388, 388, 1005, 388, 388, 1005, 682, 388, 682,
|
|
682, 682, 682, 682, 682, 682, 682, 682, 682, 690,
|
|
694, 940, 388, 388, 388, 717, 936, 717, 717, 717,
|
|
717, 717, 717, 699, 700, 931, 1013, 699, 700, 713,
|
|
713, 713, 713, 713, 713, 713, 713, 713, 713, 388,
|
|
394, 394, 394, 394, 394, 394, 394, 394, 394, 394,
|
|
394, 699, 700, 928, 394, 394, 394, 394, 394, 394,
|
|
715, 966, 715, 715, 715, 715, 715, 715, 715, 715,
|
|
715, 715, 966, 1082, 1082, 718, 960, 960, 1036, 718,
|
|
394, 394, 394, 394, 394, 394, 396, 923, 960, 1036,
|
|
|
|
396, 396, 396, 396, 396, 396, 396, 396, 396, 396,
|
|
396, 396, 396, 718, 913, 396, 396, 396, 396, 396,
|
|
396, 396, 396, 396, 396, 396, 396, 396, 396, 396,
|
|
396, 396, 396, 396, 396, 396, 396, 396, 912, 909,
|
|
396, 396, 396, 396, 396, 396, 396, 396, 396, 396,
|
|
396, 396, 396, 396, 396, 396, 396, 396, 397, 397,
|
|
397, 397, 397, 397, 397, 397, 397, 397, 397, 1179,
|
|
908, 1179, 397, 397, 397, 397, 397, 397, 716, 903,
|
|
716, 716, 716, 716, 716, 716, 716, 716, 716, 716,
|
|
719, 722, 723, 724, 719, 722, 723, 724, 397, 397,
|
|
|
|
397, 397, 397, 397, 416, 1021, 416, 416, 416, 416,
|
|
416, 416, 416, 416, 416, 416, 901, 1021, 719, 722,
|
|
723, 724, 1007, 897, 1022, 1007, 719, 1024, 726, 727,
|
|
728, 729, 726, 727, 728, 729, 1022, 723, 730, 1024,
|
|
724, 741, 730, 416, 417, 741, 417, 417, 417, 417,
|
|
417, 417, 417, 417, 417, 417, 726, 727, 728, 729,
|
|
768, 768, 768, 768, 768, 768, 730, 896, 745, 741,
|
|
1091, 895, 745, 740, 728, 740, 740, 740, 740, 740,
|
|
740, 727, 1091, 417, 418, 1092, 418, 418, 418, 418,
|
|
418, 418, 418, 418, 418, 418, 745, 1092, 893, 736,
|
|
|
|
736, 736, 736, 736, 736, 736, 736, 736, 736, 749,
|
|
752, 753, 740, 749, 752, 753, 787, 787, 787, 787,
|
|
787, 787, 890, 418, 419, 885, 419, 419, 419, 419,
|
|
419, 419, 419, 419, 419, 419, 736, 749, 752, 753,
|
|
419, 419, 419, 419, 419, 419, 765, 765, 765, 765,
|
|
765, 765, 765, 765, 765, 765, 767, 767, 767, 767,
|
|
767, 767, 767, 767, 767, 767, 419, 419, 419, 419,
|
|
419, 419, 421, 421, 421, 421, 421, 421, 421, 421,
|
|
421, 421, 1074, 1244, 1244, 1244, 421, 421, 421, 421,
|
|
421, 421, 770, 853, 770, 770, 770, 770, 770, 770,
|
|
|
|
770, 770, 770, 770, 775, 1078, 775, 775, 775, 775,
|
|
775, 775, 421, 421, 421, 421, 421, 421, 437, 1094,
|
|
852, 1074, 437, 437, 437, 839, 437, 833, 437, 437,
|
|
830, 1094, 437, 771, 771, 771, 771, 771, 771, 771,
|
|
771, 771, 771, 1054, 1078, 1054, 437, 437, 437, 773,
|
|
829, 773, 773, 773, 773, 773, 773, 773, 773, 773,
|
|
773, 774, 1130, 774, 774, 774, 774, 774, 774, 774,
|
|
774, 774, 774, 437, 438, 1141, 1160, 1187, 438, 438,
|
|
438, 438, 438, 826, 438, 438, 825, 1141, 438, 780,
|
|
780, 780, 780, 780, 780, 780, 780, 780, 780, 816,
|
|
|
|
815, 1130, 438, 438, 438, 784, 784, 784, 784, 784,
|
|
784, 784, 784, 1054, 813, 1160, 1187, 784, 786, 786,
|
|
786, 786, 786, 786, 786, 786, 786, 786, 796, 438,
|
|
446, 772, 446, 446, 446, 446, 446, 446, 446, 446,
|
|
446, 446, 789, 764, 789, 789, 789, 789, 789, 789,
|
|
789, 789, 789, 789, 791, 797, 803, 809, 791, 797,
|
|
803, 809, 811, 982, 898, 898, 811, 898, 898, 446,
|
|
447, 763, 447, 447, 447, 447, 447, 447, 447, 447,
|
|
447, 447, 791, 797, 803, 809, 982, 762, 982, 982,
|
|
811, 821, 821, 821, 821, 821, 821, 821, 821, 821,
|
|
|
|
821, 821, 863, 863, 863, 863, 863, 863, 757, 447,
|
|
458, 458, 458, 458, 458, 458, 458, 458, 458, 458,
|
|
458, 458, 458, 756, 755, 898, 458, 458, 458, 458,
|
|
458, 458, 822, 822, 822, 822, 822, 822, 822, 822,
|
|
822, 822, 822, 880, 880, 880, 880, 880, 880, 754,
|
|
751, 1203, 458, 458, 458, 458, 458, 458, 461, 461,
|
|
461, 461, 461, 461, 461, 461, 461, 461, 461, 461,
|
|
900, 750, 747, 461, 461, 461, 461, 461, 461, 823,
|
|
823, 823, 823, 823, 823, 823, 823, 823, 823, 823,
|
|
1203, 1237, 1237, 900, 746, 900, 900, 1237, 744, 461,
|
|
|
|
461, 461, 461, 461, 461, 464, 743, 971, 464, 983,
|
|
983, 971, 983, 983, 464, 464, 742, 735, 464, 464,
|
|
900, 464, 464, 464, 464, 464, 464, 464, 464, 464,
|
|
464, 464, 464, 464, 464, 971, 721, 464, 464, 464,
|
|
464, 464, 464, 464, 464, 464, 464, 464, 464, 464,
|
|
464, 464, 464, 464, 464, 464, 464, 464, 464, 464,
|
|
464, 464, 464, 464, 464, 464, 464, 464, 464, 464,
|
|
464, 464, 464, 464, 464, 464, 464, 464, 464, 464,
|
|
464, 508, 508, 508, 508, 508, 508, 508, 508, 508,
|
|
508, 508, 1276, 1276, 1276, 508, 508, 508, 508, 508,
|
|
|
|
508, 950, 950, 950, 950, 950, 950, 847, 847, 847,
|
|
847, 847, 847, 847, 847, 847, 847, 1146, 1146, 1146,
|
|
1146, 508, 508, 508, 508, 508, 508, 509, 720, 714,
|
|
708, 509, 509, 509, 509, 509, 509, 509, 509, 509,
|
|
509, 509, 509, 509, 847, 707, 509, 509, 509, 509,
|
|
509, 509, 509, 509, 509, 509, 509, 509, 509, 509,
|
|
509, 509, 509, 509, 509, 509, 509, 509, 509, 705,
|
|
704, 509, 509, 509, 509, 509, 509, 509, 509, 509,
|
|
509, 509, 509, 509, 509, 509, 509, 509, 509, 510,
|
|
703, 702, 684, 510, 851, 851, 851, 851, 851, 851,
|
|
|
|
851, 976, 978, 664, 663, 976, 978, 510, 510, 510,
|
|
510, 510, 510, 510, 510, 510, 510, 510, 662, 661,
|
|
650, 510, 510, 510, 510, 510, 510, 649, 648, 976,
|
|
978, 647, 851, 854, 854, 854, 854, 854, 854, 854,
|
|
854, 854, 854, 646, 645, 644, 643, 510, 510, 510,
|
|
510, 510, 510, 530, 642, 530, 530, 530, 530, 530,
|
|
530, 530, 530, 530, 530, 856, 856, 856, 856, 856,
|
|
856, 856, 856, 856, 856, 860, 641, 860, 860, 860,
|
|
860, 860, 860, 1343, 1343, 1051, 1051, 860, 1051, 1051,
|
|
1343, 640, 530, 531, 639, 531, 531, 531, 531, 531,
|
|
|
|
531, 531, 531, 531, 531, 862, 862, 862, 862, 862,
|
|
862, 862, 862, 862, 862, 865, 638, 865, 865, 865,
|
|
865, 865, 865, 865, 865, 865, 865, 634, 633, 632,
|
|
993, 631, 531, 553, 993, 553, 553, 553, 553, 553,
|
|
553, 553, 553, 553, 553, 866, 630, 866, 866, 866,
|
|
866, 866, 866, 866, 866, 866, 866, 867, 993, 867,
|
|
867, 867, 867, 867, 867, 867, 867, 867, 867, 620,
|
|
619, 616, 553, 554, 615, 554, 554, 554, 554, 554,
|
|
554, 554, 554, 554, 554, 868, 607, 868, 868, 868,
|
|
868, 868, 868, 868, 868, 868, 868, 873, 873, 873,
|
|
|
|
873, 873, 873, 873, 873, 873, 873, 1040, 1265, 1265,
|
|
606, 1040, 554, 555, 1265, 555, 555, 555, 555, 555,
|
|
555, 555, 555, 555, 555, 877, 877, 877, 877, 877,
|
|
877, 877, 877, 605, 597, 1040, 562, 877, 879, 879,
|
|
879, 879, 879, 879, 879, 879, 879, 879, 561, 560,
|
|
559, 557, 555, 568, 568, 568, 568, 568, 568, 568,
|
|
568, 568, 568, 568, 568, 568, 556, 548, 547, 568,
|
|
568, 568, 568, 568, 568, 881, 546, 881, 881, 881,
|
|
881, 881, 881, 881, 881, 881, 881, 887, 891, 545,
|
|
544, 887, 891, 543, 542, 568, 568, 568, 568, 568,
|
|
|
|
568, 571, 571, 571, 571, 571, 571, 571, 571, 571,
|
|
571, 571, 571, 571, 541, 887, 891, 571, 571, 571,
|
|
571, 571, 571, 902, 902, 902, 902, 902, 902, 902,
|
|
902, 902, 902, 540, 892, 910, 887, 891, 892, 910,
|
|
537, 536, 534, 571, 571, 571, 571, 571, 571, 574,
|
|
574, 574, 574, 574, 574, 574, 574, 574, 574, 574,
|
|
574, 527, 892, 910, 574, 574, 574, 574, 574, 574,
|
|
904, 904, 904, 904, 904, 904, 904, 904, 904, 904,
|
|
904, 526, 986, 892, 910, 525, 986, 986, 986, 986,
|
|
574, 574, 574, 574, 574, 574, 635, 504, 635, 635,
|
|
|
|
635, 635, 635, 635, 635, 635, 635, 635, 905, 905,
|
|
905, 905, 905, 905, 905, 905, 905, 905, 905, 906,
|
|
906, 906, 906, 906, 906, 906, 496, 495, 914, 1043,
|
|
1069, 494, 914, 1043, 1069, 635, 636, 986, 636, 636,
|
|
636, 636, 636, 636, 636, 636, 636, 636, 957, 493,
|
|
957, 957, 957, 957, 957, 957, 914, 1043, 1069, 492,
|
|
915, 491, 486, 483, 915, 917, 917, 917, 917, 917,
|
|
917, 917, 917, 917, 917, 636, 637, 914, 637, 637,
|
|
637, 637, 637, 637, 637, 637, 637, 637, 915, 455,
|
|
921, 921, 921, 921, 921, 921, 921, 454, 451, 450,
|
|
|
|
436, 925, 917, 929, 930, 925, 1108, 929, 930, 915,
|
|
1108, 1266, 1266, 435, 434, 637, 658, 1266, 658, 658,
|
|
658, 658, 658, 658, 658, 658, 658, 658, 921, 925,
|
|
433, 929, 930, 937, 1108, 937, 937, 937, 937, 937,
|
|
937, 937, 937, 937, 937, 1114, 1114, 432, 1114, 1114,
|
|
925, 1349, 929, 930, 431, 658, 659, 1349, 659, 659,
|
|
659, 659, 659, 659, 659, 659, 659, 659, 938, 430,
|
|
938, 938, 938, 938, 938, 938, 938, 938, 938, 938,
|
|
939, 429, 939, 939, 939, 939, 939, 939, 939, 939,
|
|
939, 939, 428, 427, 426, 659, 665, 665, 665, 665,
|
|
|
|
665, 665, 665, 665, 665, 665, 665, 425, 424, 423,
|
|
665, 665, 665, 665, 665, 665, 943, 943, 943, 943,
|
|
943, 943, 943, 943, 943, 943, 949, 949, 949, 949,
|
|
949, 949, 949, 949, 949, 949, 665, 665, 665, 665,
|
|
665, 665, 675, 675, 675, 675, 675, 675, 675, 675,
|
|
675, 675, 675, 675, 675, 420, 414, 411, 675, 675,
|
|
675, 675, 675, 675, 947, 410, 947, 947, 947, 947,
|
|
947, 947, 409, 408, 407, 1018, 947, 1018, 1018, 1018,
|
|
1018, 1018, 1018, 406, 675, 675, 675, 675, 675, 675,
|
|
678, 678, 678, 678, 678, 678, 678, 678, 678, 678,
|
|
|
|
678, 678, 678, 405, 404, 403, 678, 678, 678, 678,
|
|
678, 678, 952, 402, 952, 952, 952, 952, 952, 952,
|
|
952, 952, 952, 952, 965, 965, 965, 965, 965, 965,
|
|
965, 965, 678, 678, 678, 678, 678, 678, 681, 681,
|
|
681, 681, 681, 681, 681, 681, 681, 681, 681, 681,
|
|
401, 400, 399, 681, 681, 681, 681, 681, 681, 953,
|
|
953, 953, 953, 953, 953, 953, 953, 953, 953, 398,
|
|
1121, 987, 395, 380, 1121, 987, 987, 987, 987, 681,
|
|
681, 681, 681, 681, 681, 738, 376, 738, 738, 738,
|
|
738, 738, 738, 738, 738, 738, 738, 955, 1121, 955,
|
|
|
|
955, 955, 955, 955, 955, 955, 955, 955, 955, 956,
|
|
375, 956, 956, 956, 956, 956, 956, 956, 956, 956,
|
|
956, 374, 373, 367, 738, 739, 987, 739, 739, 739,
|
|
739, 739, 739, 739, 739, 739, 739, 1014, 1014, 1014,
|
|
1014, 1014, 1014, 1014, 1014, 1014, 1014, 366, 967, 969,
|
|
365, 992, 967, 969, 1012, 992, 1012, 1012, 1012, 1012,
|
|
1012, 1012, 364, 363, 739, 759, 759, 759, 759, 759,
|
|
759, 759, 759, 759, 759, 759, 967, 969, 988, 992,
|
|
988, 988, 988, 988, 988, 988, 988, 988, 988, 988,
|
|
362, 1152, 1152, 1012, 1152, 1152, 1283, 967, 969, 1283,
|
|
|
|
992, 1283, 360, 759, 760, 760, 760, 760, 760, 760,
|
|
760, 760, 760, 760, 760, 989, 359, 989, 989, 989,
|
|
989, 989, 989, 989, 989, 989, 989, 990, 358, 990,
|
|
990, 990, 990, 990, 990, 990, 990, 990, 990, 357,
|
|
356, 355, 760, 761, 761, 761, 761, 761, 761, 761,
|
|
761, 761, 761, 761, 991, 354, 991, 991, 991, 991,
|
|
991, 991, 991, 991, 991, 991, 353, 1002, 1003, 352,
|
|
351, 1002, 1003, 1030, 1030, 1030, 1030, 1030, 1030, 350,
|
|
349, 761, 766, 348, 766, 766, 766, 766, 766, 766,
|
|
766, 766, 766, 766, 766, 1002, 1003, 346, 766, 766,
|
|
|
|
766, 766, 766, 766, 1008, 1008, 1008, 1008, 1008, 1008,
|
|
1008, 1008, 1008, 1008, 1045, 1079, 1002, 1003, 1045, 1079,
|
|
339, 338, 325, 321, 766, 766, 766, 766, 766, 766,
|
|
769, 769, 769, 769, 769, 769, 769, 769, 769, 769,
|
|
769, 1008, 1045, 1079, 769, 769, 769, 769, 769, 769,
|
|
1016, 320, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016,
|
|
1016, 1016, 1055, 1045, 1079, 318, 1055, 1055, 1055, 1055,
|
|
769, 769, 769, 769, 769, 769, 782, 782, 782, 782,
|
|
782, 782, 782, 782, 782, 782, 782, 782, 782, 317,
|
|
316, 315, 782, 782, 782, 782, 782, 782, 1017, 314,
|
|
|
|
1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017, 1017,
|
|
1100, 1100, 1100, 1100, 1100, 1100, 313, 1055, 782, 782,
|
|
782, 782, 782, 782, 785, 785, 785, 785, 785, 785,
|
|
785, 785, 785, 785, 785, 785, 785, 307, 303, 300,
|
|
785, 785, 785, 785, 785, 785, 1023, 1023, 1023, 1023,
|
|
1023, 1023, 1023, 1023, 1023, 1023, 1029, 1029, 1029, 1029,
|
|
1029, 1029, 1029, 1029, 1029, 1029, 785, 785, 785, 785,
|
|
785, 785, 788, 788, 788, 788, 788, 788, 788, 788,
|
|
788, 788, 788, 298, 296, 293, 292, 788, 788, 788,
|
|
788, 788, 788, 1027, 291, 1027, 1027, 1027, 1027, 1027,
|
|
|
|
1027, 288, 287, 285, 1067, 1027, 1067, 1067, 1067, 1067,
|
|
1067, 1067, 284, 788, 788, 788, 788, 788, 788, 793,
|
|
1060, 1307, 793, 1060, 1307, 283, 1307, 282, 793, 793,
|
|
1060, 1060, 793, 793, 1060, 793, 793, 793, 793, 793,
|
|
793, 793, 793, 793, 793, 793, 793, 793, 1060, 1060,
|
|
1060, 793, 793, 793, 793, 793, 793, 793, 793, 793,
|
|
793, 793, 793, 793, 793, 793, 793, 793, 793, 793,
|
|
793, 793, 793, 793, 793, 793, 793, 793, 793, 793,
|
|
793, 793, 793, 793, 793, 793, 793, 793, 793, 793,
|
|
793, 793, 793, 793, 793, 824, 281, 279, 273, 824,
|
|
|
|
824, 824, 824, 824, 824, 824, 824, 824, 824, 824,
|
|
265, 824, 261, 256, 824, 824, 824, 824, 824, 824,
|
|
824, 824, 824, 824, 824, 824, 824, 824, 824, 824,
|
|
824, 824, 824, 824, 824, 824, 824, 255, 253, 824,
|
|
824, 824, 824, 824, 824, 824, 824, 824, 824, 824,
|
|
824, 824, 824, 824, 824, 824, 824, 834, 834, 834,
|
|
834, 834, 834, 834, 834, 834, 834, 834, 1032, 249,
|
|
1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032,
|
|
1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033, 1033,
|
|
1033, 244, 239, 237, 233, 834, 835, 835, 835, 835,
|
|
|
|
835, 835, 835, 835, 835, 835, 835, 1034, 1034, 1034,
|
|
1034, 1034, 1034, 1034, 1034, 1034, 1034, 1034, 1035, 1035,
|
|
1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1035, 1110,
|
|
228, 216, 215, 1110, 835, 836, 836, 836, 836, 836,
|
|
836, 836, 836, 836, 836, 836, 214, 1147, 1056, 213,
|
|
212, 1147, 1056, 1056, 1056, 1056, 1059, 1110, 207, 1059,
|
|
1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 200,
|
|
199, 198, 197, 836, 837, 1147, 1149, 837, 1110, 196,
|
|
1149, 195, 193, 837, 837, 192, 191, 837, 837, 190,
|
|
837, 837, 837, 837, 837, 837, 837, 837, 837, 837,
|
|
|
|
837, 837, 837, 1056, 1149, 189, 837, 837, 837, 837,
|
|
837, 837, 837, 837, 837, 837, 837, 837, 837, 837,
|
|
837, 837, 837, 837, 837, 837, 837, 837, 837, 837,
|
|
837, 837, 837, 837, 837, 837, 837, 837, 837, 837,
|
|
837, 837, 837, 837, 837, 837, 837, 837, 837, 837,
|
|
849, 849, 849, 849, 849, 849, 849, 849, 849, 849,
|
|
849, 1057, 1347, 188, 1347, 1057, 1057, 1057, 1057, 1058,
|
|
1347, 187, 186, 1058, 1058, 1058, 1058, 1063, 1063, 1063,
|
|
1063, 1063, 1063, 1063, 1063, 1063, 1063, 185, 849, 850,
|
|
850, 850, 850, 850, 850, 850, 850, 850, 850, 850,
|
|
|
|
1061, 180, 176, 175, 1061, 1061, 1061, 1061, 1105, 1105,
|
|
1105, 1105, 1105, 1105, 1105, 1077, 1057, 1077, 1077, 1077,
|
|
1077, 1077, 1077, 171, 1058, 168, 164, 850, 858, 161,
|
|
858, 858, 858, 858, 858, 858, 858, 858, 858, 858,
|
|
858, 861, 158, 861, 861, 861, 861, 861, 861, 861,
|
|
861, 861, 861, 861, 1077, 1061, 154, 861, 861, 861,
|
|
861, 861, 861, 1065, 149, 1065, 1065, 1065, 1065, 1065,
|
|
1065, 1065, 1065, 1065, 1065, 1138, 148, 1138, 1138, 1138,
|
|
1138, 1138, 1138, 861, 861, 861, 861, 861, 861, 864,
|
|
864, 864, 864, 864, 864, 864, 864, 864, 864, 864,
|
|
|
|
147, 146, 145, 864, 864, 864, 864, 864, 864, 1066,
|
|
144, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066,
|
|
1066, 1111, 1120, 140, 134, 1111, 1120, 132, 128, 864,
|
|
864, 864, 864, 864, 864, 875, 875, 875, 875, 875,
|
|
875, 875, 875, 875, 875, 875, 875, 875, 123, 1111,
|
|
1120, 875, 875, 875, 875, 875, 875, 122, 1073, 1073,
|
|
1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1158, 1174,
|
|
1111, 1120, 1158, 1174, 121, 120, 119, 875, 875, 875,
|
|
875, 875, 875, 878, 878, 878, 878, 878, 878, 878,
|
|
878, 878, 878, 878, 878, 1073, 1158, 1174, 118, 878,
|
|
|
|
878, 878, 878, 878, 878, 1177, 1177, 1062, 1177, 1177,
|
|
1062, 1126, 114, 1294, 1294, 1126, 101, 1062, 1062, 1294,
|
|
94, 1062, 87, 86, 79, 878, 878, 878, 878, 878,
|
|
878, 883, 1300, 1300, 883, 1062, 1062, 1062, 1300, 1126,
|
|
883, 883, 78, 73, 883, 883, 72, 883, 883, 883,
|
|
883, 883, 883, 883, 883, 883, 883, 883, 883, 883,
|
|
1126, 71, 66, 883, 883, 883, 883, 883, 883, 883,
|
|
883, 883, 883, 883, 883, 883, 883, 883, 883, 883,
|
|
883, 883, 883, 883, 883, 883, 883, 883, 883, 883,
|
|
883, 883, 883, 883, 883, 883, 883, 883, 883, 883,
|
|
|
|
883, 883, 883, 883, 883, 883, 883, 907, 64, 54,
|
|
53, 907, 907, 907, 907, 907, 907, 907, 907, 907,
|
|
907, 907, 51, 907, 50, 48, 907, 907, 907, 907,
|
|
907, 907, 907, 907, 907, 907, 907, 907, 907, 907,
|
|
907, 907, 907, 907, 907, 907, 907, 907, 907, 43,
|
|
38, 907, 907, 907, 907, 907, 907, 907, 907, 907,
|
|
907, 907, 907, 907, 907, 907, 907, 907, 907, 919,
|
|
919, 919, 919, 919, 919, 919, 919, 919, 919, 919,
|
|
1086, 32, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086,
|
|
1086, 1086, 1087, 26, 1087, 1087, 1087, 1087, 1087, 1087,
|
|
|
|
1087, 1087, 1087, 1087, 25, 22, 21, 919, 920, 920,
|
|
920, 920, 920, 920, 920, 920, 920, 920, 920, 1088,
|
|
0, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088,
|
|
1088, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093,
|
|
1093, 0, 1301, 1301, 0, 0, 920, 922, 1301, 0,
|
|
922, 0, 1302, 1302, 0, 0, 922, 922, 1302, 0,
|
|
922, 922, 0, 922, 922, 922, 922, 922, 922, 922,
|
|
922, 922, 922, 922, 922, 922, 0, 0, 0, 922,
|
|
922, 922, 922, 922, 922, 922, 922, 922, 922, 922,
|
|
922, 922, 922, 922, 922, 922, 922, 922, 922, 922,
|
|
|
|
922, 922, 922, 922, 922, 922, 922, 922, 922, 922,
|
|
922, 922, 922, 922, 922, 922, 922, 922, 922, 922,
|
|
922, 922, 922, 932, 0, 932, 932, 932, 932, 932,
|
|
932, 932, 932, 932, 932, 1097, 0, 1097, 1097, 1097,
|
|
1097, 1097, 1097, 0, 0, 0, 0, 1097, 1099, 1099,
|
|
1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1308, 1308,
|
|
0, 0, 932, 933, 1308, 933, 933, 933, 933, 933,
|
|
933, 933, 933, 933, 933, 1101, 0, 1101, 1101, 1101,
|
|
1101, 1101, 1101, 1101, 1101, 1101, 1101, 1103, 1103, 1103,
|
|
1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1309, 1309,
|
|
|
|
0, 0, 933, 934, 1309, 934, 934, 934, 934, 934,
|
|
934, 934, 934, 934, 934, 1104, 1104, 1104, 1104, 1104,
|
|
1104, 1104, 1104, 1104, 1104, 1104, 1115, 1115, 1115, 1115,
|
|
1115, 1115, 1115, 1115, 1115, 1115, 1194, 1194, 1194, 1194,
|
|
1194, 1194, 934, 935, 0, 935, 935, 935, 935, 935,
|
|
935, 935, 935, 935, 935, 1116, 1116, 1116, 1116, 1116,
|
|
1116, 1116, 1116, 1116, 1116, 1117, 0, 1117, 1117, 1117,
|
|
1117, 1117, 1117, 1117, 1117, 1117, 1117, 0, 1310, 1310,
|
|
0, 0, 935, 945, 1310, 945, 945, 945, 945, 945,
|
|
945, 945, 945, 945, 945, 945, 948, 0, 948, 948,
|
|
|
|
948, 948, 948, 948, 948, 948, 948, 948, 948, 0,
|
|
0, 0, 948, 948, 948, 948, 948, 948, 1118, 0,
|
|
1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118,
|
|
1157, 0, 1157, 1157, 1157, 1157, 1157, 1157, 948, 948,
|
|
948, 948, 948, 948, 951, 951, 951, 951, 951, 951,
|
|
951, 951, 951, 951, 951, 0, 0, 0, 951, 951,
|
|
951, 951, 951, 951, 1119, 0, 1119, 1119, 1119, 1119,
|
|
1119, 1119, 1119, 1119, 1119, 1119, 1201, 0, 1201, 1201,
|
|
1201, 1201, 1201, 1201, 951, 951, 951, 951, 951, 951,
|
|
963, 963, 963, 963, 963, 963, 963, 963, 963, 963,
|
|
|
|
963, 963, 998, 0, 998, 998, 998, 998, 998, 998,
|
|
998, 998, 998, 998, 0, 1127, 0, 0, 0, 1127,
|
|
1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129,
|
|
1133, 0, 1133, 1133, 1133, 1133, 1133, 1133, 0, 0,
|
|
0, 998, 999, 1127, 999, 999, 999, 999, 999, 999,
|
|
999, 999, 999, 999, 0, 0, 1163, 1129, 1163, 1163,
|
|
1163, 1163, 1163, 1163, 1127, 0, 0, 0, 0, 1133,
|
|
1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134,
|
|
0, 999, 1000, 0, 1000, 1000, 1000, 1000, 1000, 1000,
|
|
1000, 1000, 1000, 1000, 1136, 1163, 1136, 1136, 1136, 1136,
|
|
|
|
1136, 1136, 1136, 1136, 1136, 1136, 1137, 0, 1137, 1137,
|
|
1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 0, 0,
|
|
0, 1000, 1001, 0, 1001, 1001, 1001, 1001, 1001, 1001,
|
|
1001, 1001, 1001, 1001, 1144, 0, 1144, 1144, 1144, 1144,
|
|
1144, 1144, 1144, 1144, 1144, 1144, 1151, 0, 0, 0,
|
|
1151, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153,
|
|
1153, 1001, 1010, 0, 1010, 1010, 1010, 1010, 1010, 1010,
|
|
1010, 1010, 1010, 1010, 1151, 1155, 0, 1155, 1155, 1155,
|
|
1155, 1155, 1155, 1155, 1155, 1155, 1155, 1190, 0, 1190,
|
|
1190, 1190, 1190, 1190, 1190, 1151, 0, 1313, 1313, 0,
|
|
|
|
0, 1010, 1011, 1313, 1011, 1011, 1011, 1011, 1011, 1011,
|
|
1011, 1011, 1011, 1011, 1156, 0, 1156, 1156, 1156, 1156,
|
|
1156, 1156, 1156, 1156, 1156, 1156, 1190, 0, 0, 0,
|
|
0, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159,
|
|
1159, 1011, 1025, 0, 1025, 1025, 1025, 1025, 1025, 1025,
|
|
1025, 1025, 1025, 1025, 1025, 1028, 0, 1028, 1028, 1028,
|
|
1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1159, 0,
|
|
0, 1028, 1028, 1028, 1028, 1028, 1028, 1206, 0, 1206,
|
|
1206, 1206, 1206, 1206, 1206, 1164, 0, 0, 0, 1164,
|
|
1221, 1221, 1221, 1221, 1221, 1221, 0, 1028, 1028, 1028,
|
|
|
|
1028, 1028, 1028, 1031, 1031, 1031, 1031, 1031, 1031, 1031,
|
|
1031, 1031, 1031, 1164, 0, 0, 1206, 1031, 1031, 1031,
|
|
1031, 1031, 1031, 1168, 1168, 1168, 1168, 1168, 1168, 1168,
|
|
1168, 1168, 1168, 0, 1164, 1314, 1314, 1323, 0, 0,
|
|
1323, 1314, 1323, 1031, 1031, 1031, 1031, 1031, 1031, 1075,
|
|
0, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075, 1075,
|
|
1075, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169,
|
|
1169, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170,
|
|
1170, 1315, 1315, 0, 1318, 1318, 0, 1315, 1075, 1076,
|
|
1318, 1076, 1076, 1076, 1076, 1076, 1076, 1076, 1076, 1076,
|
|
|
|
1076, 1180, 0, 1180, 1180, 1180, 1180, 1180, 1180, 1180,
|
|
1180, 1180, 1180, 1181, 0, 1181, 1181, 1181, 1181, 1181,
|
|
1181, 1181, 1181, 1181, 1181, 0, 0, 0, 1076, 1083,
|
|
0, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083,
|
|
1083, 1182, 0, 1182, 1182, 1182, 1182, 1182, 1182, 1182,
|
|
1182, 1182, 1182, 1186, 1186, 1186, 1186, 1186, 1186, 1186,
|
|
1186, 1186, 1186, 0, 1319, 1319, 0, 0, 1083, 1084,
|
|
1319, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084,
|
|
1084, 1326, 1326, 1331, 0, 0, 1331, 1326, 1331, 0,
|
|
1186, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192,
|
|
|
|
1192, 1334, 1334, 0, 1341, 1341, 0, 1334, 1084, 1085,
|
|
1341, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085,
|
|
1085, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193,
|
|
1193, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197,
|
|
1197, 1344, 1344, 0, 1346, 1346, 0, 1344, 1085, 1095,
|
|
1346, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095,
|
|
1095, 1095, 1098, 0, 1098, 1098, 1098, 1098, 1098, 1098,
|
|
1098, 1098, 1098, 1098, 0, 0, 0, 0, 1098, 1098,
|
|
1098, 1098, 1098, 1098, 1199, 0, 1199, 1199, 1199, 1199,
|
|
1199, 1199, 1199, 1199, 1199, 1199, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 1098, 1098, 1098, 1098, 1098, 1098,
|
|
1123, 0, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123,
|
|
1123, 1123, 1200, 0, 1200, 1200, 1200, 1200, 1200, 1200,
|
|
1200, 1200, 1200, 1200, 1202, 1202, 1202, 1202, 1202, 1202,
|
|
1202, 1202, 1202, 1202, 0, 0, 0, 0, 0, 1123,
|
|
1124, 0, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124,
|
|
1124, 1124, 0, 0, 0, 1218, 1218, 1218, 1218, 1218,
|
|
1218, 1202, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207,
|
|
1207, 1207, 0, 1224, 1224, 1224, 1224, 1224, 1224, 1124,
|
|
1125, 0, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125,
|
|
|
|
1125, 1125, 1218, 0, 0, 0, 0, 0, 0, 1207,
|
|
1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
|
|
1224, 0, 0, 0, 0, 0, 0, 0, 0, 1125,
|
|
1131, 0, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131,
|
|
1131, 1131, 0, 0, 0, 0, 0, 1208, 1209, 1209,
|
|
1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1210, 1210,
|
|
1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 0, 1131,
|
|
1132, 0, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132,
|
|
1132, 1132, 0, 0, 0, 1209, 1211, 1211, 1211, 1211,
|
|
1211, 1211, 1211, 1211, 1211, 1211, 1212, 1212, 1212, 1212,
|
|
|
|
1212, 1212, 1212, 1212, 1212, 1212, 0, 0, 0, 1132,
|
|
1161, 0, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161,
|
|
1161, 1161, 0, 0, 0, 1213, 1213, 1213, 1213, 1213,
|
|
1213, 1213, 1213, 1213, 1213, 1214, 1214, 1214, 1214, 1214,
|
|
1214, 1214, 1214, 1214, 1214, 0, 0, 0, 0, 1161,
|
|
1162, 0, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162,
|
|
1162, 1162, 1213, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 1214, 1215, 1215, 1215, 1215, 1215, 1215, 1215,
|
|
1215, 1215, 1215, 0, 0, 0, 0, 0, 0, 1162,
|
|
1165, 0, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165,
|
|
|
|
1165, 1165, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
1215, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217,
|
|
1217, 0, 0, 0, 0, 0, 0, 0, 0, 1165,
|
|
1166, 0, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166,
|
|
1166, 1166, 0, 0, 0, 0, 0, 0, 1217, 1220,
|
|
1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1223,
|
|
1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1166,
|
|
1167, 0, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167,
|
|
1167, 1167, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 1223, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1167,
|
|
1183, 0, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183,
|
|
1183, 1183, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1183,
|
|
1184, 0, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184,
|
|
1184, 1184, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1184,
|
|
1185, 0, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185,
|
|
|
|
1185, 1185, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1185,
|
|
1188, 0, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188,
|
|
1188, 1188, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1188,
|
|
1189, 0, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189,
|
|
1189, 1189, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1189,
|
|
1204, 0, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204,
|
|
1204, 1204, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1204,
|
|
1205, 0, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205,
|
|
1205, 1205, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0, 1205,
|
|
1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226,
|
|
|
|
1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226,
|
|
1226, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227,
|
|
1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227, 1227,
|
|
1227, 1227, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228,
|
|
1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228,
|
|
1228, 1228, 1228, 1229, 1229, 1229, 1229, 1229, 1229, 1229,
|
|
1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229, 1229,
|
|
1229, 1229, 1229, 1229, 1230, 1230, 1230, 1230, 1230, 1230,
|
|
1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230,
|
|
1230, 1230, 1230, 1230, 1230, 1231, 1231, 1231, 1231, 1231,
|
|
|
|
1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231,
|
|
1231, 1231, 1231, 1231, 1231, 1231, 1232, 0, 0, 1232,
|
|
0, 0, 0, 1232, 0, 1232, 0, 1232, 1232, 1232,
|
|
0, 0, 1232, 1232, 1232, 1232, 1232, 1233, 1233, 1233,
|
|
1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233,
|
|
1233, 1233, 1233, 1233, 1233, 1233, 1233, 1233, 1234, 0,
|
|
0, 1234, 0, 0, 1234, 1234, 0, 1234, 0, 1234,
|
|
1234, 1234, 1234, 0, 1234, 1234, 1234, 1234, 1234, 1235,
|
|
0, 0, 1235, 0, 0, 0, 1235, 0, 1235, 0,
|
|
1235, 1235, 1235, 0, 0, 1235, 1235, 1235, 1235, 1235,
|
|
|
|
1236, 0, 0, 1236, 1236, 1236, 0, 1236, 1236, 1236,
|
|
0, 1236, 1236, 1236, 0, 0, 1236, 1236, 1236, 1236,
|
|
1236, 1238, 1238, 0, 1238, 1238, 1238, 0, 1238, 1238,
|
|
1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238,
|
|
1238, 1238, 1239, 0, 0, 1239, 1239, 1239, 0, 1239,
|
|
1239, 1239, 0, 1239, 1239, 1239, 0, 0, 1239, 1239,
|
|
1239, 1239, 1239, 1240, 1240, 0, 1240, 1240, 1240, 0,
|
|
1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240,
|
|
1240, 1240, 1240, 1240, 1241, 0, 0, 1241, 1241, 1241,
|
|
0, 1241, 1241, 1241, 0, 1241, 1241, 1241, 0, 1241,
|
|
|
|
1241, 0, 1241, 1241, 1241, 1242, 1242, 0, 1242, 1242,
|
|
1242, 0, 0, 1242, 1242, 1242, 1242, 1242, 1242, 1242,
|
|
1242, 1242, 0, 1242, 1242, 1242, 1243, 1243, 1243, 1243,
|
|
1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243,
|
|
1243, 1243, 1243, 1243, 1243, 1243, 1243, 1245, 0, 0,
|
|
1245, 1245, 0, 0, 1245, 1245, 1245, 0, 1245, 1245,
|
|
1245, 1245, 0, 1245, 1245, 1245, 1245, 1245, 1246, 1246,
|
|
1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246,
|
|
1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1247,
|
|
1247, 0, 1247, 1247, 0, 1247, 1247, 1247, 1247, 1247,
|
|
|
|
1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247,
|
|
1248, 0, 0, 1248, 0, 0, 1248, 1248, 0, 1248,
|
|
0, 1248, 1248, 1248, 1248, 0, 1248, 1248, 1248, 1248,
|
|
1248, 1249, 0, 0, 1249, 0, 0, 0, 1249, 0,
|
|
1249, 0, 1249, 1249, 1249, 0, 1249, 1249, 1249, 1249,
|
|
1249, 1249, 1250, 0, 0, 1250, 1250, 1250, 0, 1250,
|
|
1250, 1250, 0, 1250, 1250, 1250, 0, 1250, 1250, 1250,
|
|
1250, 1250, 1250, 1251, 1251, 0, 1251, 1251, 1251, 0,
|
|
1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251,
|
|
1251, 1251, 1251, 1251, 1252, 0, 0, 0, 1252, 1252,
|
|
|
|
1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252,
|
|
1252, 1252, 1252, 1252, 1252, 1253, 0, 0, 1253, 0,
|
|
0, 0, 1253, 0, 1253, 0, 1253, 1253, 1253, 0,
|
|
0, 1253, 1253, 1253, 1253, 1253, 1254, 0, 0, 1254,
|
|
0, 0, 1254, 1254, 0, 1254, 0, 1254, 1254, 1254,
|
|
1254, 0, 1254, 1254, 1254, 1254, 1254, 1255, 0, 0,
|
|
1255, 0, 0, 0, 1255, 0, 1255, 0, 1255, 1255,
|
|
1255, 0, 0, 1255, 1255, 1255, 1255, 1255, 1256, 0,
|
|
0, 1256, 1256, 1256, 0, 1256, 1256, 1256, 0, 1256,
|
|
1256, 1256, 0, 0, 1256, 1256, 1256, 1256, 1256, 1257,
|
|
|
|
1257, 0, 1257, 1257, 1257, 0, 1257, 1257, 1257, 1257,
|
|
1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257,
|
|
1258, 0, 0, 1258, 0, 0, 0, 1258, 0, 1258,
|
|
0, 1258, 1258, 1258, 0, 0, 1258, 1258, 1258, 1258,
|
|
1258, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259,
|
|
1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259,
|
|
1259, 1259, 1260, 1260, 0, 1260, 1260, 1260, 1260, 1260,
|
|
1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260,
|
|
1260, 1260, 1260, 1261, 0, 0, 1261, 0, 0, 0,
|
|
1261, 0, 1261, 0, 1261, 1261, 1261, 0, 0, 1261,
|
|
|
|
1261, 1261, 1261, 1261, 1262, 0, 0, 1262, 0, 0,
|
|
0, 1262, 0, 1262, 0, 1262, 1262, 1262, 0, 0,
|
|
1262, 1262, 1262, 1262, 1262, 1263, 0, 0, 1263, 1263,
|
|
1263, 0, 1263, 1263, 1263, 0, 1263, 1263, 1263, 0,
|
|
0, 1263, 1263, 1263, 1263, 1263, 1264, 0, 0, 1264,
|
|
1264, 1264, 0, 1264, 1264, 1264, 0, 1264, 1264, 1264,
|
|
0, 0, 1264, 1264, 1264, 1264, 1264, 1267, 1267, 1267,
|
|
0, 0, 0, 0, 1267, 1268, 1268, 0, 1268, 1268,
|
|
1268, 0, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268,
|
|
1268, 1268, 1268, 1268, 1268, 1268, 1269, 1269, 0, 1269,
|
|
|
|
1269, 1269, 0, 1269, 1269, 1269, 1269, 1269, 1269, 1269,
|
|
1269, 1269, 1269, 1269, 1269, 1269, 1269, 1270, 0, 0,
|
|
1270, 1270, 1270, 0, 1270, 1270, 1270, 0, 1270, 1270,
|
|
1270, 0, 0, 1270, 1270, 1270, 1270, 1270, 1271, 0,
|
|
0, 1271, 1271, 1271, 0, 1271, 1271, 1271, 0, 1271,
|
|
1271, 1271, 0, 0, 1271, 1271, 1271, 1271, 1271, 1272,
|
|
1272, 0, 1272, 1272, 1272, 0, 1272, 1272, 1272, 1272,
|
|
1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272,
|
|
1273, 1273, 0, 1273, 1273, 1273, 0, 1273, 1273, 1273,
|
|
1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273,
|
|
|
|
1273, 1274, 0, 0, 1274, 1274, 1274, 0, 1274, 1274,
|
|
1274, 0, 1274, 1274, 1274, 0, 1274, 1274, 0, 1274,
|
|
1274, 1274, 1275, 1275, 0, 1275, 1275, 1275, 0, 0,
|
|
1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 0,
|
|
1275, 1275, 1275, 1277, 0, 0, 1277, 1277, 0, 0,
|
|
1277, 1277, 1277, 0, 1277, 1277, 1277, 1277, 0, 1277,
|
|
1277, 1277, 1277, 1277, 1278, 1278, 0, 1278, 1278, 0,
|
|
1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278,
|
|
1278, 1278, 1278, 1278, 1278, 1279, 0, 0, 1279, 0,
|
|
0, 0, 1279, 0, 1279, 0, 1279, 1279, 1279, 0,
|
|
|
|
0, 1279, 1279, 1279, 1279, 1279, 1280, 0, 0, 1280,
|
|
0, 0, 0, 1280, 0, 1280, 0, 1280, 1280, 1280,
|
|
0, 1280, 1280, 1280, 1280, 1280, 1280, 1281, 0, 0,
|
|
1281, 1281, 0, 1281, 1281, 0, 0, 1281, 1281, 1282,
|
|
0, 0, 1282, 1282, 1282, 0, 1282, 1282, 1282, 0,
|
|
1282, 1282, 1282, 0, 1282, 1282, 1282, 1282, 1282, 1282,
|
|
1284, 0, 0, 0, 1284, 1284, 1284, 1284, 1284, 1284,
|
|
1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284,
|
|
1284, 1285, 0, 0, 1285, 0, 0, 0, 1285, 0,
|
|
1285, 0, 1285, 1285, 1285, 0, 0, 1285, 1285, 1285,
|
|
|
|
1285, 1285, 1286, 0, 0, 1286, 0, 0, 0, 1286,
|
|
0, 1286, 0, 1286, 1286, 1286, 0, 0, 1286, 1286,
|
|
1286, 1286, 1286, 1287, 0, 0, 1287, 0, 0, 0,
|
|
1287, 0, 1287, 0, 1287, 1287, 1287, 0, 0, 1287,
|
|
1287, 1287, 1287, 1287, 1288, 0, 0, 1288, 1288, 1288,
|
|
0, 1288, 1288, 1288, 0, 1288, 1288, 1288, 0, 0,
|
|
1288, 1288, 1288, 1288, 1288, 1289, 0, 0, 1289, 1289,
|
|
1289, 0, 1289, 1289, 1289, 0, 1289, 1289, 1289, 0,
|
|
0, 1289, 1289, 1289, 1289, 1289, 1290, 1290, 0, 1290,
|
|
1290, 1290, 0, 1290, 1290, 1290, 1290, 1290, 1290, 1290,
|
|
|
|
1290, 1290, 1290, 1290, 1290, 1290, 1290, 1291, 1291, 1291,
|
|
1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291,
|
|
1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1292, 1292,
|
|
1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292,
|
|
1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1293,
|
|
0, 0, 1293, 0, 0, 0, 1293, 0, 1293, 0,
|
|
1293, 1293, 1293, 0, 0, 1293, 1293, 1293, 1293, 1293,
|
|
1295, 1295, 1295, 0, 0, 0, 0, 1295, 1296, 1296,
|
|
0, 1296, 1296, 1296, 0, 1296, 1296, 1296, 1296, 1296,
|
|
1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1297,
|
|
|
|
1297, 0, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297,
|
|
1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297,
|
|
1298, 1298, 0, 1298, 1298, 1298, 0, 1298, 1298, 1298,
|
|
1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298,
|
|
1298, 1299, 1299, 0, 1299, 1299, 1299, 0, 1299, 1299,
|
|
1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299,
|
|
1299, 1299, 1303, 1303, 1303, 0, 0, 0, 0, 1303,
|
|
1304, 1304, 1304, 0, 0, 0, 0, 1304, 1305, 1305,
|
|
1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305,
|
|
1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1306,
|
|
|
|
1306, 0, 1306, 1306, 1306, 0, 1306, 1306, 1306, 1306,
|
|
1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306,
|
|
1311, 1311, 1311, 0, 0, 0, 0, 1311, 1312, 1312,
|
|
1312, 1312, 0, 0, 0, 0, 1312, 1316, 1316, 1316,
|
|
0, 0, 0, 0, 1316, 1317, 1317, 1317, 1317, 0,
|
|
0, 0, 0, 1317, 1320, 1320, 1320, 0, 0, 0,
|
|
0, 1320, 1321, 1321, 1321, 1321, 0, 0, 0, 0,
|
|
1321, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322,
|
|
1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322,
|
|
1322, 1322, 1324, 0, 0, 1324, 1324, 0, 1324, 1324,
|
|
|
|
0, 0, 1324, 1324, 1325, 0, 0, 1325, 0, 0,
|
|
0, 1325, 0, 1325, 0, 1325, 1325, 1325, 0, 0,
|
|
1325, 1325, 1325, 1325, 1325, 1327, 0, 1327, 1327, 0,
|
|
0, 0, 0, 1327, 1328, 1328, 1328, 0, 0, 0,
|
|
0, 1328, 1329, 1329, 1329, 1329, 0, 0, 0, 0,
|
|
1329, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330,
|
|
1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330,
|
|
1330, 1330, 1332, 0, 0, 1332, 1332, 0, 1332, 1332,
|
|
0, 0, 1332, 1332, 1333, 0, 0, 1333, 0, 0,
|
|
0, 1333, 0, 1333, 0, 1333, 1333, 1333, 0, 0,
|
|
|
|
1333, 1333, 1333, 1333, 1333, 1335, 0, 1335, 1335, 0,
|
|
0, 0, 0, 1335, 1336, 1336, 1336, 0, 0, 0,
|
|
0, 1336, 1337, 1337, 1337, 0, 0, 0, 0, 0,
|
|
1337, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338,
|
|
1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338,
|
|
1338, 1338, 1339, 1339, 0, 1339, 1339, 1339, 1339, 1339,
|
|
0, 1339, 0, 1339, 1339, 1339, 0, 0, 1339, 1339,
|
|
1339, 1339, 1339, 1340, 1340, 0, 1340, 1340, 1340, 1340,
|
|
1340, 0, 1340, 0, 1340, 1340, 1340, 0, 0, 1340,
|
|
1340, 1340, 1340, 1340, 1342, 0, 1342, 1342, 0, 0,
|
|
|
|
0, 0, 1342, 1345, 0, 1345, 1345, 0, 0, 0,
|
|
0, 1345, 1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348,
|
|
1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348,
|
|
1348, 1348, 1348, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225,
|
|
|
|
1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225, 1225
|
|
} ;
|
|
|
|
static yy_state_type yy_last_accepting_state;
|
|
static char *yy_last_accepting_cpos;
|
|
|
|
extern int sudoers_flex_debug;
|
|
int sudoers_flex_debug = 0;
|
|
|
|
/* The intent behind this definition is that it'll catch
|
|
* any uses of REJECT which flex missed.
|
|
*/
|
|
#define REJECT reject_used_but_not_detected
|
|
#define yymore() yymore_used_but_not_detected
|
|
#define YY_MORE_ADJ 0
|
|
#define YY_RESTORE_YY_MORE_OFFSET
|
|
char *sudoerstext;
|
|
#line 1 "toke.l"
|
|
#line 2 "toke.l"
|
|
/*
|
|
* SPDX-License-Identifier: ISC
|
|
*
|
|
* Copyright (c) 1996, 1998-2005, 2007-2022
|
|
* Todd C. Miller <Todd.Miller@sudo.ws>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* Sponsored in part by the Defense Advanced Research Projects
|
|
* Agency (DARPA) and Air Force Research Laboratory, Air Force
|
|
* Materiel Command, USAF, under agreement number F39502-99-1-0512.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#if defined(HAVE_STDINT_H)
|
|
# include <stdint.h>
|
|
#elif defined(HAVE_INTTYPES_H)
|
|
# include <inttypes.h>
|
|
#endif
|
|
#include <unistd.h>
|
|
#include <dirent.h>
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include "sudoers.h"
|
|
#include "toke.h"
|
|
#include <gram.h>
|
|
#include "sudo_digest.h"
|
|
#include "sudo_lbuf.h"
|
|
|
|
#if defined(HAVE_STRUCT_DIRENT_D_NAMLEN) && HAVE_STRUCT_DIRENT_D_NAMLEN
|
|
# define NAMLEN(dirent) (dirent)->d_namlen
|
|
#else
|
|
# define NAMLEN(dirent) strlen((dirent)->d_name)
|
|
#endif
|
|
|
|
// PVS Studio suppression
|
|
// -V::519, 1004, 1037
|
|
|
|
int sudolineno; /* current sudoers line number. */
|
|
char *sudoers; /* sudoers file being parsed. */
|
|
const char *sudoers_errstr; /* description of last error from lexer. */
|
|
struct sudolinebuf sudolinebuf; /* sudoers line being parsed. */
|
|
|
|
/* Default sudoers path, mode and owner (may be set via sudo.conf) */
|
|
const char *sudoers_file = _PATH_SUDOERS;
|
|
mode_t sudoers_mode = SUDOERS_MODE;
|
|
uid_t sudoers_uid = SUDOERS_UID;
|
|
gid_t sudoers_gid = SUDOERS_GID;
|
|
|
|
static bool continued, sawspace;
|
|
static int prev_state;
|
|
static int digest_type = -1;
|
|
|
|
static bool pop_include(void);
|
|
static yy_size_t sudoers_input(char *buf, yy_size_t max_size);
|
|
|
|
#ifndef TRACELEXER
|
|
static struct sudo_lbuf trace_lbuf;
|
|
#endif
|
|
|
|
int (*trace_print)(const char *msg) = sudoers_trace_print;
|
|
|
|
#define ECHO ignore_result(fwrite(sudoerstext, sudoersleng, 1, sudoersout))
|
|
|
|
#define YY_INPUT(buf, result, max_size) (result) = sudoers_input(buf, max_size)
|
|
|
|
#define YY_USER_ACTION do { \
|
|
sudolinebuf.toke_start = sudolinebuf.toke_end; \
|
|
sudolinebuf.toke_end += sudoersleng; \
|
|
} while (0);
|
|
|
|
#define sudoersless(n) do { \
|
|
sudolinebuf.toke_end = sudolinebuf.toke_start + (n); \
|
|
yyless(n); \
|
|
} while (0);
|
|
|
|
#define YY_NO_INPUT 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#line 3127 "toke.c"
|
|
|
|
#define INITIAL 0
|
|
#define GOTDEFS 1
|
|
#define GOTCMND 2
|
|
#define GOTREGEX 3
|
|
#define STARTDEFS 4
|
|
#define INDEFS 5
|
|
#define INSTR 6
|
|
#define WANTDIGEST 7
|
|
#define GOTINC 8
|
|
#define EXPECTPATH 9
|
|
|
|
#ifndef YY_NO_UNISTD_H
|
|
/* Special case for "unistd.h", since it is non-ANSI. We include it way
|
|
* down here because we want the user's section 1 to have been scanned first.
|
|
* The user has a chance to override it with an option.
|
|
*/
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#ifndef YY_EXTRA_TYPE
|
|
#define YY_EXTRA_TYPE void *
|
|
#endif
|
|
|
|
static int yy_init_globals (void );
|
|
|
|
/* Accessor methods to globals.
|
|
These are made visible to non-reentrant scanners for convenience. */
|
|
|
|
int sudoerslex_destroy (void );
|
|
|
|
int sudoersget_debug (void );
|
|
|
|
void sudoersset_debug (int debug_flag );
|
|
|
|
YY_EXTRA_TYPE sudoersget_extra (void );
|
|
|
|
void sudoersset_extra (YY_EXTRA_TYPE user_defined );
|
|
|
|
FILE *sudoersget_in (void );
|
|
|
|
void sudoersset_in (FILE * in_str );
|
|
|
|
FILE *sudoersget_out (void );
|
|
|
|
void sudoersset_out (FILE * out_str );
|
|
|
|
yy_size_t sudoersget_leng (void );
|
|
|
|
char *sudoersget_text (void );
|
|
|
|
int sudoersget_lineno (void );
|
|
|
|
void sudoersset_lineno (int line_number );
|
|
|
|
/* Macros after this point can all be overridden by user definitions in
|
|
* section 1.
|
|
*/
|
|
|
|
#ifndef YY_SKIP_YYWRAP
|
|
#ifdef __cplusplus
|
|
extern "C" int sudoerswrap (void );
|
|
#else
|
|
extern int sudoerswrap (void );
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef yytext_ptr
|
|
static void yy_flex_strncpy (char *,yyconst char *,int );
|
|
#endif
|
|
|
|
#ifdef YY_NEED_STRLEN
|
|
static int yy_flex_strlen (yyconst char * );
|
|
#endif
|
|
|
|
#ifndef YY_NO_INPUT
|
|
|
|
#ifdef __cplusplus
|
|
static int yyinput (void );
|
|
#else
|
|
static int input (void );
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/* Amount of stuff to slurp up with each read. */
|
|
#ifndef YY_READ_BUF_SIZE
|
|
#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().
|
|
*/
|
|
#define ECHO do { if (fwrite( sudoerstext, sudoersleng, 1, sudoersout )) {} } while (0)
|
|
#endif
|
|
|
|
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
|
|
* is returned in "result".
|
|
*/
|
|
#ifndef YY_INPUT
|
|
#define YY_INPUT(buf,result,max_size) \
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
|
|
{ \
|
|
int c = '*'; \
|
|
size_t n; \
|
|
for ( n = 0; n < max_size && \
|
|
(c = getc( sudoersin )) != EOF && c != '\n'; ++n ) \
|
|
buf[n] = (char) c; \
|
|
if ( c == '\n' ) \
|
|
buf[n++] = (char) c; \
|
|
if ( c == EOF && ferror( sudoersin ) ) \
|
|
YY_FATAL_ERROR( "input in flex scanner failed" ); \
|
|
result = n; \
|
|
} \
|
|
else \
|
|
{ \
|
|
errno=0; \
|
|
while ( (result = fread(buf, 1, max_size, sudoersin))==0 && ferror(sudoersin)) \
|
|
{ \
|
|
if( errno != EINTR) \
|
|
{ \
|
|
YY_FATAL_ERROR( "input in flex scanner failed" ); \
|
|
break; \
|
|
} \
|
|
errno=0; \
|
|
clearerr(sudoersin); \
|
|
} \
|
|
}\
|
|
\
|
|
|
|
#endif
|
|
|
|
/* No semi-colon after return; correct usage is to write "yyterminate();" -
|
|
* we don't want an extra ';' after the "return" because that will cause
|
|
* some compilers to complain about unreachable statements.
|
|
*/
|
|
#ifndef yyterminate
|
|
#define yyterminate() return YY_NULL
|
|
#endif
|
|
|
|
/* Number of entries by which start-condition stack grows. */
|
|
#ifndef YY_START_STACK_INCR
|
|
#define YY_START_STACK_INCR 25
|
|
#endif
|
|
|
|
/* Report a fatal error. */
|
|
#ifndef YY_FATAL_ERROR
|
|
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
|
|
#endif
|
|
|
|
/* end tables serialization structures and prototypes */
|
|
|
|
/* Default declaration of generated scanner - a define so the user can
|
|
* easily add parameters.
|
|
*/
|
|
#ifndef YY_DECL
|
|
#define YY_DECL_IS_OURS 1
|
|
|
|
extern int sudoerslex (void);
|
|
|
|
#define YY_DECL int sudoerslex (void)
|
|
#endif /* !YY_DECL */
|
|
|
|
/* Code executed at the beginning of each rule, after sudoerstext and sudoersleng
|
|
* 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 \
|
|
if ( sudoersleng > 0 ) \
|
|
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \
|
|
(sudoerstext[sudoersleng - 1] == '\n'); \
|
|
YY_USER_ACTION
|
|
|
|
/** The main scanner function which does all the work.
|
|
*/
|
|
YY_DECL
|
|
{
|
|
yy_state_type yy_current_state;
|
|
char *yy_cp, *yy_bp;
|
|
int yy_act;
|
|
|
|
if ( !(yy_init) )
|
|
{
|
|
(yy_init) = 1;
|
|
|
|
#ifdef YY_USER_INIT
|
|
YY_USER_INIT;
|
|
#endif
|
|
|
|
if ( ! (yy_start) )
|
|
(yy_start) = 1; /* first start state */
|
|
|
|
if ( ! sudoersin ) {
|
|
sudoersin = stdin;
|
|
}
|
|
|
|
if ( ! sudoersout ) {
|
|
sudoersout = stdout;
|
|
}
|
|
|
|
if ( ! YY_CURRENT_BUFFER ) {
|
|
sudoersensure_buffer_stack ();
|
|
YY_CURRENT_BUFFER_LVALUE =
|
|
sudoers_create_buffer(sudoersin,YY_BUF_SIZE );
|
|
}
|
|
|
|
sudoers_load_buffer_state( );
|
|
}
|
|
|
|
{
|
|
#line 124 "toke.l"
|
|
|
|
#line 3350 "toke.c"
|
|
|
|
while ( 1 ) /* loops until end-of-file is reached */
|
|
{
|
|
yy_cp = (yy_c_buf_p);
|
|
|
|
/* Support of sudoerstext. */
|
|
*yy_cp = (yy_hold_char);
|
|
|
|
/* yy_bp points to the position in yy_ch_buf of the start of
|
|
* the current run.
|
|
*/
|
|
yy_bp = yy_cp;
|
|
|
|
yy_current_state = (yy_start);
|
|
yy_current_state += YY_AT_BOL();
|
|
yy_match:
|
|
do
|
|
{
|
|
YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
|
|
if ( yy_accept[yy_current_state] )
|
|
{
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
(yy_last_accepting_cpos) = yy_cp;
|
|
}
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
{
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
|
if ( yy_current_state >= 1226 )
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
}
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
|
++yy_cp;
|
|
}
|
|
while ( yy_base[yy_current_state] != 9534 );
|
|
|
|
yy_find_action:
|
|
yy_act = yy_accept[yy_current_state];
|
|
if ( yy_act == 0 )
|
|
{ /* have to back up */
|
|
yy_cp = (yy_last_accepting_cpos);
|
|
yy_current_state = (yy_last_accepting_state);
|
|
yy_act = yy_accept[yy_current_state];
|
|
}
|
|
|
|
YY_DO_BEFORE_ACTION;
|
|
|
|
do_action: /* This label is used only to access EOF actions. */
|
|
|
|
switch ( yy_act )
|
|
{ /* beginning of action switch */
|
|
case 0: /* must back up */
|
|
/* undo the effects of YY_DO_BEFORE_ACTION */
|
|
*yy_cp = (yy_hold_char);
|
|
yy_cp = (yy_last_accepting_cpos);
|
|
yy_current_state = (yy_last_accepting_state);
|
|
goto yy_find_action;
|
|
|
|
case 1:
|
|
YY_RULE_SETUP
|
|
#line 125 "toke.l"
|
|
{
|
|
LEXTRACE(", ");
|
|
return ',';
|
|
} /* return ',' */
|
|
YY_BREAK
|
|
case 2:
|
|
YY_RULE_SETUP
|
|
#line 130 "toke.l"
|
|
BEGIN STARTDEFS;
|
|
YY_BREAK
|
|
case 3:
|
|
YY_RULE_SETUP
|
|
#line 132 "toke.l"
|
|
{
|
|
BEGIN INDEFS;
|
|
LEXTRACE("DEFVAR ");
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
return DEFVAR;
|
|
}
|
|
YY_BREAK
|
|
|
|
case 4:
|
|
YY_RULE_SETUP
|
|
#line 141 "toke.l"
|
|
{
|
|
BEGIN STARTDEFS;
|
|
LEXTRACE(", ");
|
|
return ',';
|
|
} /* return ',' */
|
|
YY_BREAK
|
|
case 5:
|
|
YY_RULE_SETUP
|
|
#line 147 "toke.l"
|
|
{
|
|
LEXTRACE("= ");
|
|
return '=';
|
|
} /* return '=' */
|
|
YY_BREAK
|
|
case 6:
|
|
YY_RULE_SETUP
|
|
#line 152 "toke.l"
|
|
{
|
|
LEXTRACE("+= ");
|
|
return '+';
|
|
} /* return '+' */
|
|
YY_BREAK
|
|
case 7:
|
|
YY_RULE_SETUP
|
|
#line 157 "toke.l"
|
|
{
|
|
LEXTRACE("-= ");
|
|
return '-';
|
|
} /* return '-' */
|
|
YY_BREAK
|
|
case 8:
|
|
YY_RULE_SETUP
|
|
#line 162 "toke.l"
|
|
{
|
|
LEXTRACE("BEGINSTR ");
|
|
sudoerslval.string = NULL;
|
|
prev_state = YY_START;
|
|
BEGIN INSTR;
|
|
}
|
|
YY_BREAK
|
|
case 9:
|
|
YY_RULE_SETUP
|
|
#line 169 "toke.l"
|
|
{
|
|
LEXTRACE("WORD(2) ");
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
return WORD;
|
|
}
|
|
YY_BREAK
|
|
|
|
|
|
case 10:
|
|
/* rule 10 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 178 "toke.l"
|
|
{
|
|
/* Line continuation char followed by newline. */
|
|
sudolineno++;
|
|
continued = true;
|
|
}
|
|
YY_BREAK
|
|
case 11:
|
|
YY_RULE_SETUP
|
|
#line 184 "toke.l"
|
|
{
|
|
LEXTRACE("ENDSTR ");
|
|
BEGIN prev_state;
|
|
|
|
if (sudoerslval.string == NULL) {
|
|
sudoers_errstr = N_("empty string");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
if (prev_state == INITIAL || prev_state == GOTDEFS) {
|
|
switch (sudoerslval.string[0]) {
|
|
case '%':
|
|
if (sudoerslval.string[1] == '\0' ||
|
|
(sudoerslval.string[1] == ':' &&
|
|
sudoerslval.string[2] == '\0')) {
|
|
parser_leak_remove(LEAK_PTR, sudoerslval.string);
|
|
free(sudoerslval.string);
|
|
sudoers_errstr = N_("empty group");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
LEXTRACE("USERGROUP ");
|
|
return USERGROUP;
|
|
case '+':
|
|
if (sudoerslval.string[1] == '\0') {
|
|
parser_leak_remove(LEAK_PTR, sudoerslval.string);
|
|
free(sudoerslval.string);
|
|
sudoers_errstr = N_("empty netgroup");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
LEXTRACE("NETGROUP ");
|
|
return NETGROUP;
|
|
}
|
|
}
|
|
LEXTRACE("WORD(4) ");
|
|
return WORD;
|
|
}
|
|
YY_BREAK
|
|
case 12:
|
|
YY_RULE_SETUP
|
|
#line 223 "toke.l"
|
|
{
|
|
LEXTRACE("BACKSLASH ");
|
|
if (!append(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
}
|
|
YY_BREAK
|
|
case 13:
|
|
YY_RULE_SETUP
|
|
#line 229 "toke.l"
|
|
{
|
|
LEXTRACE("STRBODY ");
|
|
if (!append(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
}
|
|
YY_BREAK
|
|
|
|
|
|
case 14:
|
|
YY_RULE_SETUP
|
|
#line 237 "toke.l"
|
|
{
|
|
/* quoted fnmatch glob char, pass verbatim */
|
|
LEXTRACE("QUOTEDCHAR ");
|
|
if (!fill_args(sudoerstext, 2, sawspace))
|
|
yyterminate();
|
|
sawspace = false;
|
|
}
|
|
YY_BREAK
|
|
case 15:
|
|
YY_RULE_SETUP
|
|
#line 245 "toke.l"
|
|
{
|
|
/* quoted sudoers special char, strip backslash */
|
|
LEXTRACE("QUOTEDCHAR ");
|
|
if (!fill_args(sudoerstext + 1, 1, sawspace))
|
|
yyterminate();
|
|
sawspace = false;
|
|
}
|
|
YY_BREAK
|
|
case 16:
|
|
/* rule 16 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 253 "toke.l"
|
|
{
|
|
BEGIN INITIAL;
|
|
sudoersless(0);
|
|
yy_set_bol(0);
|
|
return COMMAND;
|
|
} /* end of command line args */
|
|
YY_BREAK
|
|
case 17:
|
|
YY_RULE_SETUP
|
|
#line 260 "toke.l"
|
|
{
|
|
if (sudoerslval.command.args == NULL && sudoerstext[0] == '^') {
|
|
LEXTRACE("ARG REGEX ");
|
|
BEGIN GOTREGEX;
|
|
sudoersless(0);
|
|
yy_set_bol(0);
|
|
} else {
|
|
LEXTRACE("ARG ");
|
|
if (!fill_args(sudoerstext, sudoersleng, sawspace))
|
|
yyterminate();
|
|
sawspace = false;
|
|
}
|
|
} /* a command line arg */
|
|
YY_BREAK
|
|
|
|
|
|
case 18:
|
|
YY_RULE_SETUP
|
|
#line 276 "toke.l"
|
|
{
|
|
/* quoted character, pass verbatim */
|
|
LEXTRACE("QUOTEDCHAR ");
|
|
if (!fill_args(sudoerstext, 2, false))
|
|
yyterminate();
|
|
}
|
|
YY_BREAK
|
|
case 19:
|
|
/* rule 19 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 283 "toke.l"
|
|
{
|
|
/* Let the parser attempt to recover. */
|
|
sudoersless(0);
|
|
yy_set_bol(0);
|
|
BEGIN INITIAL;
|
|
|
|
sudoers_errstr = N_("unterminated regular expression");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
} /* illegal inside regex */
|
|
YY_BREAK
|
|
case 20:
|
|
YY_RULE_SETUP
|
|
#line 294 "toke.l"
|
|
{
|
|
if (!fill_args("$", 1, false))
|
|
yyterminate();
|
|
BEGIN INITIAL;
|
|
continued = false;
|
|
if (sudoers_strict) {
|
|
if (!sudo_regex_compile(NULL, sudoerstext, &sudoers_errstr)) {
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
}
|
|
return COMMAND;
|
|
}
|
|
YY_BREAK
|
|
case 21:
|
|
YY_RULE_SETUP
|
|
#line 308 "toke.l"
|
|
{
|
|
if (continued) {
|
|
/* remove whitespace after line continuation */
|
|
while (isblank((unsigned char)*sudoerstext)) {
|
|
sudoerstext++;
|
|
sudoersleng--;
|
|
}
|
|
continued = false;
|
|
}
|
|
if (sudoersleng != 0) {
|
|
if (!fill_args(sudoerstext, sudoersleng, false))
|
|
yyterminate();
|
|
}
|
|
}
|
|
YY_BREAK
|
|
|
|
case 22:
|
|
YY_RULE_SETUP
|
|
#line 324 "toke.l"
|
|
{
|
|
/* Only return DIGEST if the length is correct. */
|
|
yy_size_t digest_len =
|
|
sudo_digest_getlen(digest_type);
|
|
if ((yy_size_t)sudoersleng == digest_len * 2) {
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
BEGIN INITIAL;
|
|
LEXTRACE("DIGEST ");
|
|
return DIGEST;
|
|
}
|
|
BEGIN INITIAL;
|
|
sudoersless(sudoersleng);
|
|
} /* hex digest */
|
|
YY_BREAK
|
|
case 23:
|
|
YY_RULE_SETUP
|
|
#line 339 "toke.l"
|
|
{
|
|
/* Only return DIGEST if the length is correct. */
|
|
yy_size_t len, digest_len =
|
|
sudo_digest_getlen(digest_type);
|
|
if (sudoerstext[sudoersleng - 1] == '=') {
|
|
/* use padding */
|
|
len = 4 * ((digest_len + 2) / 3);
|
|
} else {
|
|
/* no padding */
|
|
len = (4 * digest_len + 2) / 3;
|
|
}
|
|
if ((yy_size_t)sudoersleng == len) {
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
BEGIN INITIAL;
|
|
LEXTRACE("DIGEST ");
|
|
return DIGEST;
|
|
}
|
|
BEGIN INITIAL;
|
|
sudoersless(sudoersleng);
|
|
} /* base64 digest */
|
|
YY_BREAK
|
|
case 24:
|
|
YY_RULE_SETUP
|
|
#line 361 "toke.l"
|
|
{
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
BEGIN GOTINC;
|
|
LEXTRACE("INCLUDE ");
|
|
return INCLUDE;
|
|
}
|
|
YY_BREAK
|
|
case 25:
|
|
YY_RULE_SETUP
|
|
#line 373 "toke.l"
|
|
{
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
BEGIN GOTINC;
|
|
LEXTRACE("INCLUDEDIR ");
|
|
return INCLUDEDIR;
|
|
}
|
|
YY_BREAK
|
|
case 26:
|
|
/* rule 26 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 385 "toke.l"
|
|
{
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
/* only consume #include */
|
|
sudoersless(sizeof("#include") - 1);
|
|
yy_set_bol(0);
|
|
|
|
BEGIN GOTINC;
|
|
LEXTRACE("INCLUDE ");
|
|
return INCLUDE;
|
|
}
|
|
YY_BREAK
|
|
case 27:
|
|
/* rule 27 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 401 "toke.l"
|
|
{
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
/* only consume #includedir */
|
|
sudoersless(sizeof("#includedir") - 1);
|
|
yy_set_bol(0);
|
|
|
|
BEGIN GOTINC;
|
|
LEXTRACE("INCLUDEDIR ");
|
|
return INCLUDEDIR;
|
|
}
|
|
YY_BREAK
|
|
case 28:
|
|
YY_RULE_SETUP
|
|
#line 417 "toke.l"
|
|
{
|
|
char deftype;
|
|
int n;
|
|
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
for (n = 0; isblank((unsigned char)sudoerstext[n]); n++)
|
|
continue;
|
|
n += sizeof("Defaults") - 1;
|
|
if ((deftype = sudoerstext[n++]) != '\0') {
|
|
while (isblank((unsigned char)sudoerstext[n]))
|
|
n++;
|
|
}
|
|
BEGIN GOTDEFS;
|
|
switch (deftype) {
|
|
case ':':
|
|
sudoersless(n);
|
|
LEXTRACE("DEFAULTS_USER ");
|
|
return DEFAULTS_USER;
|
|
case '>':
|
|
sudoersless(n);
|
|
LEXTRACE("DEFAULTS_RUNAS ");
|
|
return DEFAULTS_RUNAS;
|
|
case '@':
|
|
sudoersless(n);
|
|
LEXTRACE("DEFAULTS_HOST ");
|
|
return DEFAULTS_HOST;
|
|
case '!':
|
|
sudoersless(n);
|
|
LEXTRACE("DEFAULTS_CMND ");
|
|
return DEFAULTS_CMND;
|
|
default:
|
|
LEXTRACE("DEFAULTS ");
|
|
return DEFAULTS;
|
|
}
|
|
}
|
|
YY_BREAK
|
|
case 29:
|
|
YY_RULE_SETUP
|
|
#line 458 "toke.l"
|
|
{
|
|
int n;
|
|
|
|
if (continued) {
|
|
sudoers_errstr = N_("invalid line continuation");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
|
|
for (n = 0; isblank((unsigned char)sudoerstext[n]); n++)
|
|
continue;
|
|
switch (sudoerstext[n]) {
|
|
case 'H':
|
|
LEXTRACE("HOSTALIAS ");
|
|
return HOSTALIAS;
|
|
case 'C':
|
|
LEXTRACE("CMNDALIAS ");
|
|
return CMNDALIAS;
|
|
case 'U':
|
|
LEXTRACE("USERALIAS ");
|
|
return USERALIAS;
|
|
case 'R':
|
|
LEXTRACE("RUNASALIAS ");
|
|
return RUNASALIAS;
|
|
}
|
|
}
|
|
YY_BREAK
|
|
case 30:
|
|
YY_RULE_SETUP
|
|
#line 485 "toke.l"
|
|
{
|
|
/* cmnd does not require passwd for this user */
|
|
LEXTRACE("NOPASSWD ");
|
|
return NOPASSWD;
|
|
}
|
|
YY_BREAK
|
|
case 31:
|
|
YY_RULE_SETUP
|
|
#line 491 "toke.l"
|
|
{
|
|
/* cmnd requires passwd for this user */
|
|
LEXTRACE("PASSWD ");
|
|
return PASSWD;
|
|
}
|
|
YY_BREAK
|
|
case 32:
|
|
YY_RULE_SETUP
|
|
#line 497 "toke.l"
|
|
{
|
|
LEXTRACE("NOEXEC ");
|
|
return NOEXEC;
|
|
}
|
|
YY_BREAK
|
|
case 33:
|
|
YY_RULE_SETUP
|
|
#line 502 "toke.l"
|
|
{
|
|
LEXTRACE("EXEC ");
|
|
return EXEC;
|
|
}
|
|
YY_BREAK
|
|
case 34:
|
|
YY_RULE_SETUP
|
|
#line 507 "toke.l"
|
|
{
|
|
LEXTRACE("INTERCEPT ");
|
|
return INTERCEPT;
|
|
}
|
|
YY_BREAK
|
|
case 35:
|
|
YY_RULE_SETUP
|
|
#line 512 "toke.l"
|
|
{
|
|
LEXTRACE("NOINTERCEPT ");
|
|
return NOINTERCEPT;
|
|
}
|
|
YY_BREAK
|
|
case 36:
|
|
YY_RULE_SETUP
|
|
#line 517 "toke.l"
|
|
{
|
|
LEXTRACE("SETENV ");
|
|
return SETENV;
|
|
}
|
|
YY_BREAK
|
|
case 37:
|
|
YY_RULE_SETUP
|
|
#line 522 "toke.l"
|
|
{
|
|
LEXTRACE("NOSETENV ");
|
|
return NOSETENV;
|
|
}
|
|
YY_BREAK
|
|
case 38:
|
|
YY_RULE_SETUP
|
|
#line 527 "toke.l"
|
|
{
|
|
LEXTRACE("LOG_OUTPUT ");
|
|
return LOG_OUTPUT;
|
|
}
|
|
YY_BREAK
|
|
case 39:
|
|
YY_RULE_SETUP
|
|
#line 532 "toke.l"
|
|
{
|
|
LEXTRACE("NOLOG_OUTPUT ");
|
|
return NOLOG_OUTPUT;
|
|
}
|
|
YY_BREAK
|
|
case 40:
|
|
YY_RULE_SETUP
|
|
#line 537 "toke.l"
|
|
{
|
|
LEXTRACE("LOG_INPUT ");
|
|
return LOG_INPUT;
|
|
}
|
|
YY_BREAK
|
|
case 41:
|
|
YY_RULE_SETUP
|
|
#line 542 "toke.l"
|
|
{
|
|
LEXTRACE("NOLOG_INPUT ");
|
|
return NOLOG_INPUT;
|
|
}
|
|
YY_BREAK
|
|
case 42:
|
|
YY_RULE_SETUP
|
|
#line 547 "toke.l"
|
|
{
|
|
LEXTRACE("MAIL ");
|
|
return MAIL;
|
|
}
|
|
YY_BREAK
|
|
case 43:
|
|
YY_RULE_SETUP
|
|
#line 552 "toke.l"
|
|
{
|
|
LEXTRACE("NOMAIL ");
|
|
return NOMAIL;
|
|
}
|
|
YY_BREAK
|
|
case 44:
|
|
YY_RULE_SETUP
|
|
#line 557 "toke.l"
|
|
{
|
|
LEXTRACE("FOLLOW ");
|
|
return FOLLOWLNK;
|
|
}
|
|
YY_BREAK
|
|
case 45:
|
|
YY_RULE_SETUP
|
|
#line 562 "toke.l"
|
|
{
|
|
LEXTRACE("NOFOLLOW ");
|
|
return NOFOLLOWLNK;
|
|
}
|
|
YY_BREAK
|
|
case 46:
|
|
YY_RULE_SETUP
|
|
#line 567 "toke.l"
|
|
{
|
|
if (sudoerstext[0] == '+')
|
|
sudoers_errstr = N_("empty netgroup");
|
|
else
|
|
sudoers_errstr = N_("empty group");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
YY_BREAK
|
|
case 47:
|
|
YY_RULE_SETUP
|
|
#line 576 "toke.l"
|
|
{
|
|
/* netgroup */
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("NETGROUP ");
|
|
return NETGROUP;
|
|
}
|
|
YY_BREAK
|
|
case 48:
|
|
YY_RULE_SETUP
|
|
#line 584 "toke.l"
|
|
{
|
|
/* group */
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("USERGROUP ");
|
|
return USERGROUP;
|
|
}
|
|
YY_BREAK
|
|
case 49:
|
|
YY_RULE_SETUP
|
|
#line 592 "toke.l"
|
|
{
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("NTWKADDR ");
|
|
return NTWKADDR;
|
|
}
|
|
YY_BREAK
|
|
case 50:
|
|
YY_RULE_SETUP
|
|
#line 599 "toke.l"
|
|
{
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("NTWKADDR ");
|
|
return NTWKADDR;
|
|
}
|
|
YY_BREAK
|
|
case 51:
|
|
YY_RULE_SETUP
|
|
#line 606 "toke.l"
|
|
{
|
|
if (!ipv6_valid(sudoerstext)) {
|
|
sudoers_errstr = N_("invalid IPv6 address");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("NTWKADDR ");
|
|
return NTWKADDR;
|
|
}
|
|
YY_BREAK
|
|
case 52:
|
|
YY_RULE_SETUP
|
|
#line 618 "toke.l"
|
|
{
|
|
if (!ipv6_valid(sudoerstext)) {
|
|
sudoers_errstr = N_("invalid IPv6 address");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("NTWKADDR ");
|
|
return NTWKADDR;
|
|
}
|
|
YY_BREAK
|
|
case 53:
|
|
YY_RULE_SETUP
|
|
#line 630 "toke.l"
|
|
{
|
|
LEXTRACE("ALL ");
|
|
return ALL;
|
|
|
|
}
|
|
YY_BREAK
|
|
case 54:
|
|
YY_RULE_SETUP
|
|
#line 636 "toke.l"
|
|
{
|
|
LEXTRACE("CMND_TIMEOUT ");
|
|
return CMND_TIMEOUT;
|
|
}
|
|
YY_BREAK
|
|
case 55:
|
|
YY_RULE_SETUP
|
|
#line 641 "toke.l"
|
|
{
|
|
LEXTRACE("NOTBEFORE ");
|
|
return NOTBEFORE;
|
|
}
|
|
YY_BREAK
|
|
case 56:
|
|
YY_RULE_SETUP
|
|
#line 646 "toke.l"
|
|
{
|
|
LEXTRACE("NOTAFTER ");
|
|
return NOTAFTER;
|
|
}
|
|
YY_BREAK
|
|
case 57:
|
|
YY_RULE_SETUP
|
|
#line 651 "toke.l"
|
|
{
|
|
LEXTRACE("CWD ");
|
|
prev_state = YY_START;
|
|
BEGIN EXPECTPATH;
|
|
return CWD;
|
|
}
|
|
YY_BREAK
|
|
case 58:
|
|
YY_RULE_SETUP
|
|
#line 658 "toke.l"
|
|
{
|
|
LEXTRACE("CHROOT ");
|
|
prev_state = YY_START;
|
|
BEGIN EXPECTPATH;
|
|
return CHROOT;
|
|
}
|
|
YY_BREAK
|
|
case 59:
|
|
YY_RULE_SETUP
|
|
#line 665 "toke.l"
|
|
{
|
|
#ifdef HAVE_SELINUX
|
|
LEXTRACE("ROLE ");
|
|
return ROLE;
|
|
#else
|
|
goto got_alias;
|
|
#endif
|
|
}
|
|
YY_BREAK
|
|
case 60:
|
|
YY_RULE_SETUP
|
|
#line 674 "toke.l"
|
|
{
|
|
#ifdef HAVE_SELINUX
|
|
LEXTRACE("TYPE ");
|
|
return TYPE;
|
|
#else
|
|
goto got_alias;
|
|
#endif
|
|
}
|
|
YY_BREAK
|
|
case 61:
|
|
YY_RULE_SETUP
|
|
#line 682 "toke.l"
|
|
{
|
|
#ifdef HAVE_PRIV_SET
|
|
LEXTRACE("PRIVS ");
|
|
return PRIVS;
|
|
#else
|
|
goto got_alias;
|
|
#endif
|
|
}
|
|
YY_BREAK
|
|
case 62:
|
|
YY_RULE_SETUP
|
|
#line 691 "toke.l"
|
|
{
|
|
#ifdef HAVE_PRIV_SET
|
|
LEXTRACE("LIMITPRIVS ");
|
|
return LIMITPRIVS;
|
|
#else
|
|
goto got_alias;
|
|
#endif
|
|
}
|
|
YY_BREAK
|
|
case 63:
|
|
YY_RULE_SETUP
|
|
#line 700 "toke.l"
|
|
{
|
|
got_alias:
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("ALIAS ");
|
|
return ALIAS;
|
|
}
|
|
YY_BREAK
|
|
case 64:
|
|
YY_RULE_SETUP
|
|
#line 708 "toke.l"
|
|
{
|
|
/* XXX - no way to specify digest for command */
|
|
/* no command args allowed for Defaults!/path */
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("COMMAND ");
|
|
return COMMAND;
|
|
}
|
|
YY_BREAK
|
|
case 65:
|
|
YY_RULE_SETUP
|
|
#line 717 "toke.l"
|
|
{
|
|
digest_type = SUDO_DIGEST_SHA224;
|
|
BEGIN WANTDIGEST;
|
|
LEXTRACE("SHA224_TOK ");
|
|
return SHA224_TOK;
|
|
}
|
|
YY_BREAK
|
|
case 66:
|
|
YY_RULE_SETUP
|
|
#line 724 "toke.l"
|
|
{
|
|
digest_type = SUDO_DIGEST_SHA256;
|
|
BEGIN WANTDIGEST;
|
|
LEXTRACE("SHA256_TOK ");
|
|
return SHA256_TOK;
|
|
}
|
|
YY_BREAK
|
|
case 67:
|
|
YY_RULE_SETUP
|
|
#line 731 "toke.l"
|
|
{
|
|
digest_type = SUDO_DIGEST_SHA384;
|
|
BEGIN WANTDIGEST;
|
|
LEXTRACE("SHA384_TOK ");
|
|
return SHA384_TOK;
|
|
}
|
|
YY_BREAK
|
|
case 68:
|
|
YY_RULE_SETUP
|
|
#line 738 "toke.l"
|
|
{
|
|
digest_type = SUDO_DIGEST_SHA512;
|
|
BEGIN WANTDIGEST;
|
|
LEXTRACE("SHA512_TOK ");
|
|
return SHA512_TOK;
|
|
}
|
|
YY_BREAK
|
|
case 69:
|
|
YY_RULE_SETUP
|
|
#line 745 "toke.l"
|
|
{
|
|
BEGIN GOTCMND;
|
|
LEXTRACE("COMMAND ");
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
} /* sudo -e */
|
|
YY_BREAK
|
|
case 70:
|
|
YY_RULE_SETUP
|
|
#line 752 "toke.l"
|
|
{
|
|
BEGIN prev_state;
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("WORD(5) ");
|
|
return WORD;
|
|
}
|
|
YY_BREAK
|
|
case 71:
|
|
YY_RULE_SETUP
|
|
#line 760 "toke.l"
|
|
{
|
|
/* directories can't have args... */
|
|
if (sudoerstext[sudoersleng - 1] == '/') {
|
|
LEXTRACE("COMMAND ");
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
return COMMAND;
|
|
}
|
|
BEGIN GOTCMND;
|
|
LEXTRACE("COMMAND ");
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
} /* a pathname */
|
|
YY_BREAK
|
|
case 72:
|
|
YY_RULE_SETUP
|
|
#line 774 "toke.l"
|
|
{
|
|
if (sudoers_strict) {
|
|
if (!sudo_regex_compile(NULL, sudoerstext, &sudoers_errstr)) {
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
}
|
|
BEGIN GOTCMND;
|
|
LEXTRACE("COMMAND ");
|
|
if (!fill_cmnd(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
} /* a regex */
|
|
YY_BREAK
|
|
case 73:
|
|
YY_RULE_SETUP
|
|
#line 787 "toke.l"
|
|
{
|
|
LEXTRACE("BEGINSTR ");
|
|
sudoerslval.string = NULL;
|
|
prev_state = YY_START;
|
|
BEGIN INSTR;
|
|
}
|
|
YY_BREAK
|
|
case 74:
|
|
YY_RULE_SETUP
|
|
#line 794 "toke.l"
|
|
{
|
|
/* a word */
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
LEXTRACE("WORD(6) ");
|
|
return WORD;
|
|
}
|
|
YY_BREAK
|
|
|
|
case 75:
|
|
YY_RULE_SETUP
|
|
#line 803 "toke.l"
|
|
{
|
|
/* include file/directory */
|
|
if (!fill(sudoerstext, sudoersleng))
|
|
yyterminate();
|
|
BEGIN INITIAL;
|
|
LEXTRACE("WORD(7) ");
|
|
return WORD;
|
|
}
|
|
YY_BREAK
|
|
case 76:
|
|
YY_RULE_SETUP
|
|
#line 812 "toke.l"
|
|
{
|
|
LEXTRACE("BEGINSTR ");
|
|
sudoerslval.string = NULL;
|
|
prev_state = INITIAL;
|
|
BEGIN INSTR;
|
|
}
|
|
YY_BREAK
|
|
|
|
case 77:
|
|
YY_RULE_SETUP
|
|
#line 820 "toke.l"
|
|
{
|
|
LEXTRACE("( ");
|
|
return '(';
|
|
}
|
|
YY_BREAK
|
|
case 78:
|
|
YY_RULE_SETUP
|
|
#line 825 "toke.l"
|
|
{
|
|
LEXTRACE(") ");
|
|
return ')';
|
|
}
|
|
YY_BREAK
|
|
case 79:
|
|
YY_RULE_SETUP
|
|
#line 830 "toke.l"
|
|
{
|
|
LEXTRACE(", ");
|
|
return ',';
|
|
} /* return ',' */
|
|
YY_BREAK
|
|
case 80:
|
|
YY_RULE_SETUP
|
|
#line 835 "toke.l"
|
|
{
|
|
LEXTRACE("= ");
|
|
return '=';
|
|
} /* return '=' */
|
|
YY_BREAK
|
|
case 81:
|
|
YY_RULE_SETUP
|
|
#line 840 "toke.l"
|
|
{
|
|
LEXTRACE(": ");
|
|
return ':';
|
|
} /* return ':' */
|
|
YY_BREAK
|
|
case 82:
|
|
YY_RULE_SETUP
|
|
#line 845 "toke.l"
|
|
{
|
|
if (sudoersleng & 1) {
|
|
LEXTRACE("!");
|
|
return '!'; /* return '!' */
|
|
}
|
|
}
|
|
YY_BREAK
|
|
case 83:
|
|
/* rule 83 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 852 "toke.l"
|
|
{
|
|
if (YY_START == INSTR) {
|
|
/* throw away old string */
|
|
parser_leak_remove(LEAK_PTR, sudoerslval.string);
|
|
free(sudoerslval.string);
|
|
/* re-scan after changing state */
|
|
BEGIN INITIAL;
|
|
sudoersless(0);
|
|
sudoers_errstr = N_("unexpected line break in string");
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
BEGIN INITIAL;
|
|
sudolineno++;
|
|
continued = false;
|
|
LEXTRACE("\n");
|
|
return '\n';
|
|
} /* return newline */
|
|
YY_BREAK
|
|
case 84:
|
|
YY_RULE_SETUP
|
|
#line 871 "toke.l"
|
|
{ /* throw away space/tabs */
|
|
sawspace = true; /* but remember for fill_args */
|
|
}
|
|
YY_BREAK
|
|
case 85:
|
|
/* rule 85 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 875 "toke.l"
|
|
{
|
|
sawspace = true; /* remember for fill_args */
|
|
sudolineno++;
|
|
continued = true;
|
|
} /* throw away EOL after \ */
|
|
YY_BREAK
|
|
case 86:
|
|
/* rule 86 can match eol */
|
|
YY_RULE_SETUP
|
|
#line 881 "toke.l"
|
|
{
|
|
if (sudoerstext[sudoersleng - 1] == '\n') {
|
|
/* comment ending in a newline */
|
|
BEGIN INITIAL;
|
|
sudolineno++;
|
|
continued = false;
|
|
} else if (!feof(sudoersin)) {
|
|
sudoers_errstr = strerror(errno);
|
|
LEXTRACE("ERROR ");
|
|
return ERROR;
|
|
}
|
|
LEXTRACE("#\n");
|
|
return '\n';
|
|
} /* comment, not uid/gid */
|
|
YY_BREAK
|
|
case 87:
|
|
YY_RULE_SETUP
|
|
#line 896 "toke.l"
|
|
{
|
|
LEXTRACE("NOMATCH ");
|
|
return NOMATCH;
|
|
} /* parse error, no matching token */
|
|
YY_BREAK
|
|
case YY_STATE_EOF(INITIAL):
|
|
case YY_STATE_EOF(GOTDEFS):
|
|
case YY_STATE_EOF(GOTCMND):
|
|
case YY_STATE_EOF(GOTREGEX):
|
|
case YY_STATE_EOF(STARTDEFS):
|
|
case YY_STATE_EOF(INDEFS):
|
|
case YY_STATE_EOF(INSTR):
|
|
case YY_STATE_EOF(WANTDIGEST):
|
|
case YY_STATE_EOF(GOTINC):
|
|
case YY_STATE_EOF(EXPECTPATH):
|
|
#line 901 "toke.l"
|
|
{
|
|
if (!pop_include())
|
|
yyterminate();
|
|
}
|
|
YY_BREAK
|
|
case 88:
|
|
YY_RULE_SETUP
|
|
#line 906 "toke.l"
|
|
ECHO;
|
|
YY_BREAK
|
|
#line 4475 "toke.c"
|
|
|
|
case YY_END_OF_BUFFER:
|
|
{
|
|
/* Amount of text matched not including the EOB char. */
|
|
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
|
|
|
|
/* Undo the effects of YY_DO_BEFORE_ACTION. */
|
|
*yy_cp = (yy_hold_char);
|
|
YY_RESTORE_YY_MORE_OFFSET
|
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
|
|
{
|
|
/* We're scanning a new file or input source. It's
|
|
* possible that this happened because the user
|
|
* just pointed sudoersin at a new source and called
|
|
* sudoerslex(). If so, then we have to assure
|
|
* consistency between YY_CURRENT_BUFFER and our
|
|
* globals. Here is the right place to do so, because
|
|
* this is the first action (other than possibly a
|
|
* back-up) that will match for the new input source.
|
|
*/
|
|
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
|
|
YY_CURRENT_BUFFER_LVALUE->yy_input_file = sudoersin;
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
|
|
}
|
|
|
|
/* Note that here we test for yy_c_buf_p "<=" to the position
|
|
* of the first EOB in the buffer, since yy_c_buf_p will
|
|
* already have been incremented past the NUL character
|
|
* (since all states make transitions on EOB to the
|
|
* end-of-buffer state). Contrast this with the test
|
|
* in input().
|
|
*/
|
|
if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
|
|
{ /* This was really a NUL. */
|
|
yy_state_type yy_next_state;
|
|
|
|
(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
|
|
|
|
yy_current_state = yy_get_previous_state( );
|
|
|
|
/* Okay, we're now positioned to make the NUL
|
|
* transition. We couldn't have
|
|
* yy_get_previous_state() go ahead and do it
|
|
* for us because it doesn't know how to deal
|
|
* with the possibility of jamming (and we don't
|
|
* want to build jamming into it because then it
|
|
* will run more slowly).
|
|
*/
|
|
|
|
yy_next_state = yy_try_NUL_trans( yy_current_state );
|
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
|
|
|
if ( yy_next_state )
|
|
{
|
|
/* Consume the NUL. */
|
|
yy_cp = ++(yy_c_buf_p);
|
|
yy_current_state = yy_next_state;
|
|
goto yy_match;
|
|
}
|
|
|
|
else
|
|
{
|
|
yy_cp = (yy_c_buf_p);
|
|
goto yy_find_action;
|
|
}
|
|
}
|
|
|
|
else switch ( yy_get_next_buffer( ) )
|
|
{
|
|
case EOB_ACT_END_OF_FILE:
|
|
{
|
|
(yy_did_buffer_switch_on_eof) = 0;
|
|
|
|
if ( sudoerswrap( ) )
|
|
{
|
|
/* Note: because we've taken care in
|
|
* yy_get_next_buffer() to have set up
|
|
* sudoerstext, we can now set up
|
|
* yy_c_buf_p so that if some total
|
|
* hoser (like flex itself) wants to
|
|
* call the scanner after we return the
|
|
* YY_NULL, it'll still work - another
|
|
* YY_NULL will get returned.
|
|
*/
|
|
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
|
|
|
|
yy_act = YY_STATE_EOF(YY_START);
|
|
goto do_action;
|
|
}
|
|
|
|
else
|
|
{
|
|
if ( ! (yy_did_buffer_switch_on_eof) )
|
|
YY_NEW_FILE;
|
|
}
|
|
break;
|
|
}
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
|
(yy_c_buf_p) =
|
|
(yytext_ptr) + yy_amount_of_matched_text;
|
|
|
|
yy_current_state = yy_get_previous_state( );
|
|
|
|
yy_cp = (yy_c_buf_p);
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
|
goto yy_match;
|
|
|
|
case EOB_ACT_LAST_MATCH:
|
|
(yy_c_buf_p) =
|
|
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
|
|
|
|
yy_current_state = yy_get_previous_state( );
|
|
|
|
yy_cp = (yy_c_buf_p);
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
|
goto yy_find_action;
|
|
}
|
|
break;
|
|
}
|
|
|
|
default:
|
|
YY_FATAL_ERROR(
|
|
"fatal flex scanner internal error--no action found" );
|
|
} /* end of action switch */
|
|
} /* end of scanning one token */
|
|
} /* end of user's declarations */
|
|
} /* end of sudoerslex */
|
|
|
|
/* yy_get_next_buffer - try to read in a new buffer
|
|
*
|
|
* Returns a code representing an action:
|
|
* EOB_ACT_LAST_MATCH -
|
|
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
|
|
* EOB_ACT_END_OF_FILE - end of file
|
|
*/
|
|
static int yy_get_next_buffer (void)
|
|
{
|
|
char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
|
|
char *source = (yytext_ptr);
|
|
int number_to_move, i;
|
|
int ret_val;
|
|
|
|
if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
|
|
YY_FATAL_ERROR(
|
|
"fatal flex scanner internal error--end of buffer missed" );
|
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
|
|
{ /* Don't try to fill the buffer, so this is an EOF. */
|
|
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
|
|
{
|
|
/* We matched a single character, the EOB, so
|
|
* treat this as a final EOF.
|
|
*/
|
|
return EOB_ACT_END_OF_FILE;
|
|
}
|
|
|
|
else
|
|
{
|
|
/* We matched some text prior to the EOB, first
|
|
* process it.
|
|
*/
|
|
return EOB_ACT_LAST_MATCH;
|
|
}
|
|
}
|
|
|
|
/* Try to read more data. */
|
|
|
|
/* First move last chars to start of buffer. */
|
|
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
|
|
|
|
for ( i = 0; i < number_to_move; ++i )
|
|
*(dest++) = *(source++);
|
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
|
|
/* don't do the read, it's not guaranteed to return an EOF,
|
|
* just force an EOF
|
|
*/
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
|
|
|
|
else
|
|
{
|
|
yy_size_t num_to_read =
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
|
|
|
|
while ( num_to_read <= 0 )
|
|
{ /* Not enough room in the buffer - grow it. */
|
|
|
|
/* just a shorter name for the current buffer */
|
|
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
|
|
|
|
int yy_c_buf_p_offset =
|
|
(int) ((yy_c_buf_p) - b->yy_ch_buf);
|
|
|
|
if ( b->yy_is_our_buffer )
|
|
{
|
|
yy_size_t new_size = b->yy_buf_size * 2;
|
|
|
|
if ( new_size <= 0 )
|
|
b->yy_buf_size += b->yy_buf_size / 8;
|
|
else
|
|
b->yy_buf_size *= 2;
|
|
|
|
b->yy_ch_buf = (char *)
|
|
/* Include room in for 2 EOB chars. */
|
|
sudoersrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
|
|
}
|
|
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" );
|
|
|
|
(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
|
|
|
|
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
|
|
number_to_move - 1;
|
|
|
|
}
|
|
|
|
if ( num_to_read > YY_READ_BUF_SIZE )
|
|
num_to_read = YY_READ_BUF_SIZE;
|
|
|
|
/* Read in more data. */
|
|
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
|
|
(yy_n_chars), num_to_read );
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
|
}
|
|
|
|
if ( (yy_n_chars) == 0 )
|
|
{
|
|
if ( number_to_move == YY_MORE_ADJ )
|
|
{
|
|
ret_val = EOB_ACT_END_OF_FILE;
|
|
sudoersrestart(sudoersin );
|
|
}
|
|
|
|
else
|
|
{
|
|
ret_val = EOB_ACT_LAST_MATCH;
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
|
|
YY_BUFFER_EOF_PENDING;
|
|
}
|
|
}
|
|
|
|
else
|
|
ret_val = EOB_ACT_CONTINUE_SCAN;
|
|
|
|
if ((yy_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 *) sudoersrealloc((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()" );
|
|
/* "- 2" to take care of EOB's */
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
|
|
}
|
|
|
|
(yy_n_chars) += number_to_move;
|
|
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
|
|
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
|
|
|
|
(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
|
|
|
|
return ret_val;
|
|
}
|
|
|
|
/* yy_get_previous_state - get the state just before the EOB char was reached */
|
|
|
|
static yy_state_type yy_get_previous_state (void)
|
|
{
|
|
yy_state_type yy_current_state;
|
|
char *yy_cp;
|
|
|
|
yy_current_state = (yy_start);
|
|
yy_current_state += YY_AT_BOL();
|
|
|
|
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
|
|
{
|
|
YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
|
|
if ( yy_accept[yy_current_state] )
|
|
{
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
(yy_last_accepting_cpos) = yy_cp;
|
|
}
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
{
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
|
if ( yy_current_state >= 1226 )
|
|
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;
|
|
}
|
|
|
|
/* yy_try_NUL_trans - try to make a transition on the NUL character
|
|
*
|
|
* synopsis
|
|
* next_state = yy_try_NUL_trans( current_state );
|
|
*/
|
|
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
|
|
{
|
|
int yy_is_jam;
|
|
char *yy_cp = (yy_c_buf_p);
|
|
|
|
YY_CHAR yy_c = 1;
|
|
if ( yy_accept[yy_current_state] )
|
|
{
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
(yy_last_accepting_cpos) = yy_cp;
|
|
}
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
{
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
|
if ( yy_current_state >= 1226 )
|
|
yy_c = yy_meta[(unsigned int) yy_c];
|
|
}
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
|
|
yy_is_jam = (yy_current_state == 1225);
|
|
|
|
return yy_is_jam ? 0 : yy_current_state;
|
|
}
|
|
|
|
#ifndef YY_NO_INPUT
|
|
#ifdef __cplusplus
|
|
static int yyinput (void)
|
|
#else
|
|
static int input (void)
|
|
#endif
|
|
|
|
{
|
|
int c;
|
|
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
|
|
|
if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
|
|
{
|
|
/* yy_c_buf_p now points to the character we want to return.
|
|
* If this occurs *before* the EOB characters, then it's a
|
|
* valid NUL; if not, then we've hit the end of the buffer.
|
|
*/
|
|
if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
|
|
/* This was really a NUL. */
|
|
*(yy_c_buf_p) = '\0';
|
|
|
|
else
|
|
{ /* need more input */
|
|
yy_size_t offset = (yy_c_buf_p) - (yytext_ptr);
|
|
++(yy_c_buf_p);
|
|
|
|
switch ( yy_get_next_buffer( ) )
|
|
{
|
|
case EOB_ACT_LAST_MATCH:
|
|
/* This happens because yy_g_n_b()
|
|
* sees that we've accumulated a
|
|
* token and flags that we need to
|
|
* try matching the token before
|
|
* proceeding. But for input(),
|
|
* there's no matching to consider.
|
|
* So convert the EOB_ACT_LAST_MATCH
|
|
* to EOB_ACT_END_OF_FILE.
|
|
*/
|
|
|
|
/* Reset buffer status. */
|
|
sudoersrestart(sudoersin );
|
|
|
|
FALLTHROUGH;
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
{
|
|
if ( sudoerswrap( ) )
|
|
return EOF;
|
|
|
|
if ( ! (yy_did_buffer_switch_on_eof) )
|
|
YY_NEW_FILE;
|
|
#ifdef __cplusplus
|
|
return yyinput();
|
|
#else
|
|
return input();
|
|
#endif
|
|
}
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
|
(yy_c_buf_p) = (yytext_ptr) + offset;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
|
|
*(yy_c_buf_p) = '\0'; /* preserve sudoerstext */
|
|
(yy_hold_char) = *++(yy_c_buf_p);
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n');
|
|
|
|
return c;
|
|
}
|
|
#endif /* ifndef YY_NO_INPUT */
|
|
|
|
/** Immediately switch to a different input stream.
|
|
* @param input_file A readable stream.
|
|
*
|
|
* @note This function does not reset the start condition to @c INITIAL .
|
|
*/
|
|
void sudoersrestart (FILE * input_file )
|
|
{
|
|
|
|
if ( ! YY_CURRENT_BUFFER ){
|
|
sudoersensure_buffer_stack ();
|
|
YY_CURRENT_BUFFER_LVALUE =
|
|
sudoers_create_buffer(sudoersin,YY_BUF_SIZE );
|
|
}
|
|
|
|
sudoers_init_buffer(YY_CURRENT_BUFFER,input_file );
|
|
sudoers_load_buffer_state( );
|
|
}
|
|
|
|
/** Switch to a different input buffer.
|
|
* @param new_buffer The new input buffer.
|
|
*
|
|
*/
|
|
void sudoers_switch_to_buffer (YY_BUFFER_STATE new_buffer )
|
|
{
|
|
|
|
/* TODO. We should be able to replace this entire function body
|
|
* with
|
|
* sudoerspop_buffer_state();
|
|
* sudoerspush_buffer_state(new_buffer);
|
|
*/
|
|
sudoersensure_buffer_stack ();
|
|
if ( YY_CURRENT_BUFFER == new_buffer )
|
|
return;
|
|
|
|
if ( YY_CURRENT_BUFFER )
|
|
{
|
|
/* Flush out information for old buffer. */
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
|
}
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = new_buffer;
|
|
sudoers_load_buffer_state( );
|
|
|
|
/* We don't actually know whether we did this switch during
|
|
* EOF (sudoerswrap()) processing, but the only time this flag
|
|
* is looked at is after sudoerswrap() is called, so it's safe
|
|
* to go ahead and always set it.
|
|
*/
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
}
|
|
|
|
static void sudoers_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;
|
|
sudoersin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
|
|
(yy_hold_char) = *(yy_c_buf_p);
|
|
}
|
|
|
|
/** Allocate and initialize an input buffer state.
|
|
* @param file A readable stream.
|
|
* @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
|
|
*
|
|
* @return the allocated buffer state.
|
|
*/
|
|
YY_BUFFER_STATE sudoers_create_buffer (FILE * file, int size )
|
|
{
|
|
YY_BUFFER_STATE b;
|
|
|
|
b = (YY_BUFFER_STATE) sudoersalloc(sizeof( struct yy_buffer_state ) );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoers_create_buffer()" );
|
|
|
|
b->yy_buf_size = size;
|
|
|
|
/* yy_ch_buf has to be 2 characters longer than the size given because
|
|
* we need to put in 2 end-of-buffer characters.
|
|
*/
|
|
b->yy_ch_buf = (char *) sudoersalloc(b->yy_buf_size + 2 );
|
|
if ( ! b->yy_ch_buf )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoers_create_buffer()" );
|
|
|
|
b->yy_is_our_buffer = 1;
|
|
|
|
sudoers_init_buffer(b,file );
|
|
|
|
return b;
|
|
}
|
|
|
|
/** Destroy the buffer.
|
|
* @param b a buffer created with sudoers_create_buffer()
|
|
*
|
|
*/
|
|
void sudoers_delete_buffer (YY_BUFFER_STATE b )
|
|
{
|
|
|
|
if ( ! b )
|
|
return;
|
|
|
|
if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
|
|
YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
|
|
|
|
if ( b->yy_is_our_buffer )
|
|
sudoersfree((void *) b->yy_ch_buf );
|
|
|
|
sudoersfree((void *) b );
|
|
}
|
|
|
|
/* Initializes or reinitializes a buffer.
|
|
* This function is sometimes called more than once on the same buffer,
|
|
* such as during a sudoersrestart() or at EOF.
|
|
*/
|
|
static void sudoers_init_buffer (YY_BUFFER_STATE b, FILE * file )
|
|
|
|
{
|
|
int oerrno = errno;
|
|
|
|
sudoers_flush_buffer(b );
|
|
|
|
b->yy_input_file = file;
|
|
b->yy_fill_buffer = 1;
|
|
|
|
/* If b is the current buffer, then sudoers_init_buffer was _probably_
|
|
* called from sudoersrestart() or through yy_get_next_buffer.
|
|
* In that case, we don't want to reset the lineno or column.
|
|
*/
|
|
if (b != YY_CURRENT_BUFFER){
|
|
b->yy_bs_lineno = 1;
|
|
b->yy_bs_column = 0;
|
|
}
|
|
|
|
b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
|
|
|
|
errno = oerrno;
|
|
}
|
|
|
|
/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
|
|
* @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
|
|
*
|
|
*/
|
|
void sudoers_flush_buffer (YY_BUFFER_STATE b )
|
|
{
|
|
if ( ! b )
|
|
return;
|
|
|
|
b->yy_n_chars = 0;
|
|
|
|
/* We always need two end-of-buffer characters. The first causes
|
|
* a transition to the end-of-buffer state. The second causes
|
|
* a jam in that state.
|
|
*/
|
|
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
|
|
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
|
|
|
|
b->yy_buf_pos = &b->yy_ch_buf[0];
|
|
|
|
b->yy_at_bol = 1;
|
|
b->yy_buffer_status = YY_BUFFER_NEW;
|
|
|
|
if ( b == YY_CURRENT_BUFFER )
|
|
sudoers_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 sudoerspush_buffer_state (YY_BUFFER_STATE new_buffer )
|
|
{
|
|
if (new_buffer == NULL)
|
|
return;
|
|
|
|
sudoersensure_buffer_stack();
|
|
|
|
/* This block is copied from sudoers_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 sudoers_switch_to_buffer. */
|
|
sudoers_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 sudoerspop_buffer_state (void)
|
|
{
|
|
if (!YY_CURRENT_BUFFER)
|
|
return;
|
|
|
|
sudoers_delete_buffer(YY_CURRENT_BUFFER );
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
if ((yy_buffer_stack_top) > 0)
|
|
--(yy_buffer_stack_top);
|
|
|
|
if (YY_CURRENT_BUFFER) {
|
|
sudoers_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 sudoersensure_buffer_stack (void)
|
|
{
|
|
yy_size_t num_to_alloc;
|
|
|
|
if (!(yy_buffer_stack)) {
|
|
|
|
/* First allocation is just for 2 elements, since we don't know if this
|
|
* scanner will even need a stack. We use 2 instead of 1 to avoid an
|
|
* immediate realloc on the next call.
|
|
*/
|
|
num_to_alloc = 1;
|
|
(yy_buffer_stack) = (struct yy_buffer_state**)sudoersalloc
|
|
(num_to_alloc * sizeof(struct yy_buffer_state*)
|
|
);
|
|
if ( ! (yy_buffer_stack) )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoersensure_buffer_stack()" );
|
|
|
|
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
|
|
|
|
(yy_buffer_stack_max) = num_to_alloc;
|
|
(yy_buffer_stack_top) = 0;
|
|
return;
|
|
}
|
|
|
|
if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
|
|
|
|
/* Increase the buffer to prepare for a possible push. */
|
|
int grow_size = 8 /* arbitrary grow size */;
|
|
|
|
num_to_alloc = (yy_buffer_stack_max) + grow_size;
|
|
(yy_buffer_stack) = (struct yy_buffer_state**)sudoersrealloc
|
|
((yy_buffer_stack),
|
|
num_to_alloc * sizeof(struct yy_buffer_state*)
|
|
);
|
|
if ( ! (yy_buffer_stack) )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoersensure_buffer_stack()" );
|
|
|
|
/* zero only the new slots.*/
|
|
memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
|
|
(yy_buffer_stack_max) = num_to_alloc;
|
|
}
|
|
}
|
|
|
|
/** Setup the input buffer state to scan directly from a user-specified character buffer.
|
|
* @param base the character buffer
|
|
* @param size the size in bytes of the character buffer
|
|
*
|
|
* @return the newly allocated buffer state object.
|
|
*/
|
|
YY_BUFFER_STATE sudoers_scan_buffer (char * base, yy_size_t size )
|
|
{
|
|
YY_BUFFER_STATE b;
|
|
|
|
if ( size < 2 ||
|
|
base[size-2] != YY_END_OF_BUFFER_CHAR ||
|
|
base[size-1] != YY_END_OF_BUFFER_CHAR )
|
|
/* They forgot to leave room for the EOB's. */
|
|
return 0;
|
|
|
|
b = (YY_BUFFER_STATE) sudoersalloc(sizeof( struct yy_buffer_state ) );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoers_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;
|
|
|
|
sudoers_switch_to_buffer(b );
|
|
|
|
return b;
|
|
}
|
|
|
|
/** Setup the input buffer state to scan a string. The next call to sudoerslex() will
|
|
* scan from a @e copy of @a str.
|
|
* @param yystr a NUL-terminated string to scan
|
|
*
|
|
* @return the newly allocated buffer state object.
|
|
* @note If you want to scan bytes that may contain NUL values, then use
|
|
* sudoers_scan_bytes() instead.
|
|
*/
|
|
YY_BUFFER_STATE sudoers_scan_string (yyconst char * yystr )
|
|
{
|
|
|
|
return sudoers_scan_bytes(yystr,strlen(yystr) );
|
|
}
|
|
|
|
/** Setup the input buffer state to scan the given bytes. The next call to sudoerslex() will
|
|
* scan from a @e copy of @a bytes.
|
|
* @param yybytes the byte buffer to scan
|
|
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
|
|
*
|
|
* @return the newly allocated buffer state object.
|
|
*/
|
|
YY_BUFFER_STATE sudoers_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len )
|
|
{
|
|
YY_BUFFER_STATE b;
|
|
char *buf;
|
|
yy_size_t n;
|
|
yy_size_t i;
|
|
|
|
/* Get memory for full buffer, including space for trailing EOB's. */
|
|
n = _yybytes_len + 2;
|
|
buf = (char *) sudoersalloc(n );
|
|
if ( ! buf )
|
|
YY_FATAL_ERROR( "out of dynamic memory in sudoers_scan_bytes()" );
|
|
|
|
for ( i = 0; i < _yybytes_len; ++i )
|
|
buf[i] = yybytes[i];
|
|
|
|
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
|
|
|
|
b = sudoers_scan_buffer(buf,n );
|
|
if ( ! b )
|
|
YY_FATAL_ERROR( "bad buffer in sudoers_scan_bytes()" );
|
|
|
|
/* It's okay to grow etc. this buffer, and we should throw it
|
|
* away when we're done.
|
|
*/
|
|
b->yy_is_our_buffer = 1;
|
|
|
|
return b;
|
|
}
|
|
|
|
#ifndef YY_EXIT_FAILURE
|
|
#define YY_EXIT_FAILURE 2
|
|
#endif
|
|
|
|
static void yy_fatal_error (yyconst char* msg )
|
|
{
|
|
(void) fprintf( stderr, "%s\n", msg );
|
|
exit( YY_EXIT_FAILURE );
|
|
}
|
|
|
|
/* Redefine yyless() so it works in section 3 code. */
|
|
|
|
#undef yyless
|
|
#define yyless(n) \
|
|
do \
|
|
{ \
|
|
/* Undo effects of setting up sudoerstext. */ \
|
|
int yyless_macro_arg = (n); \
|
|
YY_LESS_LINENO(yyless_macro_arg);\
|
|
sudoerstext[sudoersleng] = (yy_hold_char); \
|
|
(yy_c_buf_p) = sudoerstext + yyless_macro_arg; \
|
|
(yy_hold_char) = *(yy_c_buf_p); \
|
|
*(yy_c_buf_p) = '\0'; \
|
|
sudoersleng = yyless_macro_arg; \
|
|
} \
|
|
while ( 0 )
|
|
|
|
/* Accessor methods (get/set functions) to struct members. */
|
|
|
|
/** Get the current line number.
|
|
*
|
|
*/
|
|
int sudoersget_lineno (void)
|
|
{
|
|
|
|
return sudoerslineno;
|
|
}
|
|
|
|
/** Get the input stream.
|
|
*
|
|
*/
|
|
FILE *sudoersget_in (void)
|
|
{
|
|
return sudoersin;
|
|
}
|
|
|
|
/** Get the output stream.
|
|
*
|
|
*/
|
|
FILE *sudoersget_out (void)
|
|
{
|
|
return sudoersout;
|
|
}
|
|
|
|
/** Get the length of the current token.
|
|
*
|
|
*/
|
|
yy_size_t sudoersget_leng (void)
|
|
{
|
|
return sudoersleng;
|
|
}
|
|
|
|
/** Get the current token.
|
|
*
|
|
*/
|
|
|
|
char *sudoersget_text (void)
|
|
{
|
|
return sudoerstext;
|
|
}
|
|
|
|
/** Set the current line number.
|
|
* @param line_number
|
|
*
|
|
*/
|
|
void sudoersset_lineno (int line_number )
|
|
{
|
|
|
|
sudoerslineno = line_number;
|
|
}
|
|
|
|
/** Set the input stream. This does not discard the current
|
|
* input buffer.
|
|
* @param in_str A readable stream.
|
|
*
|
|
* @see sudoers_switch_to_buffer
|
|
*/
|
|
void sudoersset_in (FILE * in_str )
|
|
{
|
|
sudoersin = in_str ;
|
|
}
|
|
|
|
void sudoersset_out (FILE * out_str )
|
|
{
|
|
sudoersout = out_str ;
|
|
}
|
|
|
|
int sudoersget_debug (void)
|
|
{
|
|
return sudoers_flex_debug;
|
|
}
|
|
|
|
void sudoersset_debug (int bdebug )
|
|
{
|
|
sudoers_flex_debug = bdebug ;
|
|
}
|
|
|
|
static int yy_init_globals (void)
|
|
{
|
|
/* Initialization is the same as for the non-reentrant scanner.
|
|
* This function is called from sudoerslex_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
|
|
sudoersin = stdin;
|
|
sudoersout = stdout;
|
|
#else
|
|
sudoersin = (FILE *) 0;
|
|
sudoersout = (FILE *) 0;
|
|
#endif
|
|
|
|
/* For future reference: Set errno on error, since we are called by
|
|
* sudoerslex_init()
|
|
*/
|
|
return 0;
|
|
}
|
|
|
|
/* sudoerslex_destroy is for both reentrant and non-reentrant scanners. */
|
|
int sudoerslex_destroy (void)
|
|
{
|
|
|
|
/* Pop the buffer stack, destroying each element. */
|
|
while(YY_CURRENT_BUFFER){
|
|
sudoers_delete_buffer(YY_CURRENT_BUFFER );
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
sudoerspop_buffer_state();
|
|
}
|
|
|
|
/* Destroy the stack itself. */
|
|
sudoersfree((yy_buffer_stack) );
|
|
(yy_buffer_stack) = NULL;
|
|
|
|
/* Reset the globals. This is important in a non-reentrant scanner so the next time
|
|
* sudoerslex() is called, initialization will occur. */
|
|
yy_init_globals( );
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Internal utility routines.
|
|
*/
|
|
|
|
#ifndef yytext_ptr
|
|
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
|
|
{
|
|
int i;
|
|
for ( i = 0; i < n; ++i )
|
|
s1[i] = s2[i];
|
|
}
|
|
#endif
|
|
|
|
#ifdef YY_NEED_STRLEN
|
|
static int yy_flex_strlen (yyconst char * s )
|
|
{
|
|
int n;
|
|
for ( n = 0; s[n]; ++n )
|
|
;
|
|
|
|
return n;
|
|
}
|
|
#endif
|
|
|
|
void *sudoersalloc (yy_size_t size )
|
|
{
|
|
return (void *) malloc( size );
|
|
}
|
|
|
|
void *sudoersrealloc (void * ptr, yy_size_t size )
|
|
{
|
|
/* The cast to (char *) in the following accommodates both
|
|
* implementations that use char* generic pointers, and those
|
|
* that use void* generic pointers. It works with the latter
|
|
* because both ANSI C and C++ allow castless assignment from
|
|
* any pointer type to void*, and deal with argument conversions
|
|
* as though doing an assignment.
|
|
*/
|
|
return (void *) realloc( (char *) ptr, size );
|
|
}
|
|
|
|
void sudoersfree (void * ptr )
|
|
{
|
|
free( (char *) ptr ); /* see sudoersrealloc() for (char *) cast */
|
|
}
|
|
|
|
#define YYTABLES_NAME "yytables"
|
|
|
|
#line 906 "toke.l"
|
|
|
|
|
|
struct path_list {
|
|
SLIST_ENTRY(path_list) entries;
|
|
char *path;
|
|
};
|
|
|
|
SLIST_HEAD(path_list_head, path_list);
|
|
|
|
struct include_stack {
|
|
struct sudolinebuf line;
|
|
YY_BUFFER_STATE bs;
|
|
char *path;
|
|
struct path_list_head more; /* more files in case of includedir */
|
|
int lineno;
|
|
bool keepopen;
|
|
};
|
|
|
|
/*
|
|
* Compare two struct path_list structs in reverse order.
|
|
*/
|
|
static int
|
|
pl_compare(const void *v1, const void *v2)
|
|
{
|
|
const struct path_list * const *p1 = v1;
|
|
const struct path_list * const *p2 = v2;
|
|
|
|
return strcmp((*p2)->path, (*p1)->path);
|
|
}
|
|
|
|
/*
|
|
* Open dirpath and fill in pathsp with an array of regular files
|
|
* that do not end in '~' or contain a '.'.
|
|
* Returns the number of files or -1 on error.
|
|
* If zero files are found, NULL is stored in pathsp.
|
|
*/
|
|
static int
|
|
read_dir_files(const char *dirpath, struct path_list ***pathsp)
|
|
{
|
|
DIR *dir;
|
|
int i, count = 0;
|
|
int max_paths = 32;
|
|
struct dirent *dent;
|
|
struct path_list **paths = NULL;
|
|
const size_t dirlen = strlen(dirpath);
|
|
debug_decl(read_dir_files, SUDOERS_DEBUG_PARSER);
|
|
|
|
dir = opendir(dirpath);
|
|
if (dir == NULL) {
|
|
if (errno == ENOENT)
|
|
goto done;
|
|
sudo_warn("%s", dirpath);
|
|
goto bad;
|
|
}
|
|
paths = reallocarray(NULL, max_paths, sizeof(*paths));
|
|
if (paths == NULL)
|
|
goto oom;
|
|
while ((dent = readdir(dir)) != NULL) {
|
|
const size_t namelen = NAMLEN(dent);
|
|
struct path_list *pl;
|
|
struct stat sb;
|
|
size_t len;
|
|
char *path;
|
|
|
|
/* Ignore files that end in '~' or have a '.' in them. */
|
|
if (namelen == 0 || dent->d_name[namelen - 1] == '~'
|
|
|| strchr(dent->d_name, '.') != NULL) {
|
|
continue;
|
|
}
|
|
len = dirlen + 1 + namelen;
|
|
if ((path = sudo_rcstr_alloc(len)) == NULL)
|
|
goto oom;
|
|
if ((size_t)snprintf(path, len + 1, "%s/%s", dirpath, dent->d_name) != len) {
|
|
sudo_warnx(U_("internal error, %s overflow"), __func__);
|
|
sudo_rcstr_delref(path);
|
|
goto bad;
|
|
}
|
|
if (stat(path, &sb) != 0 || !S_ISREG(sb.st_mode)) {
|
|
sudo_rcstr_delref(path);
|
|
continue;
|
|
}
|
|
pl = malloc(sizeof(*pl));
|
|
if (pl == NULL) {
|
|
sudo_rcstr_delref(path);
|
|
goto oom;
|
|
}
|
|
pl->path = path;
|
|
if (count >= max_paths) {
|
|
struct path_list **tmp;
|
|
max_paths <<= 1;
|
|
tmp = reallocarray(paths, max_paths, sizeof(*paths));
|
|
if (tmp == NULL) {
|
|
sudo_rcstr_delref(path);
|
|
free(pl);
|
|
goto oom;
|
|
}
|
|
paths = tmp;
|
|
}
|
|
paths[count++] = pl;
|
|
}
|
|
closedir(dir);
|
|
if (count == 0) {
|
|
free(paths);
|
|
paths = NULL;
|
|
}
|
|
done:
|
|
*pathsp = paths;
|
|
debug_return_int(count);
|
|
oom:
|
|
sudo_warnx(U_("%s: %s"), __func__, U_("unable to allocate memory"));
|
|
bad:
|
|
sudoerserror(NULL);
|
|
if (dir != NULL)
|
|
closedir(dir);
|
|
for (i = 0; i < count; i++) {
|
|
sudo_rcstr_delref(paths[i]->path);
|
|
free(paths[i]);
|
|
}
|
|
free(paths);
|
|
debug_return_int(-1);
|
|
}
|
|
|
|
/*
|
|
* Push a list of all files in dirpath onto stack.
|
|
* Returns the number of files or -1 on error.
|
|
*/
|
|
static int
|
|
switch_dir(struct include_stack *stack, char *dirpath)
|
|
{
|
|
struct path_list **paths = NULL;
|
|
int count, i;
|
|
debug_decl(switch_dir, SUDOERS_DEBUG_PARSER);
|
|
|
|
count = read_dir_files(dirpath, &paths);
|
|
if (count > 0) {
|
|
/* Sort the list as an array in reverse order. */
|
|
qsort(paths, count, sizeof(*paths), pl_compare);
|
|
|
|
/* Build up the list in sorted order. */
|
|
for (i = 0; i < count; i++) {
|
|
SLIST_INSERT_HEAD(&stack->more, paths[i], entries);
|
|
}
|
|
free(paths);
|
|
}
|
|
|
|
debug_return_int(count);
|
|
}
|
|
|
|
#define MAX_SUDOERS_DEPTH 128
|
|
#define SUDOERS_STACK_INCREMENT 16
|
|
|
|
static size_t istacksize, idepth;
|
|
static struct include_stack *istack;
|
|
static bool keepopen;
|
|
|
|
void
|
|
init_lexer(void)
|
|
{
|
|
struct path_list *pl;
|
|
debug_decl(init_lexer, SUDOERS_DEBUG_PARSER);
|
|
|
|
#ifndef TRACELEXER
|
|
free(trace_lbuf.buf);
|
|
sudo_lbuf_init(&trace_lbuf, NULL, 0, NULL, 0);
|
|
#endif
|
|
|
|
while (idepth) {
|
|
idepth--;
|
|
while ((pl = SLIST_FIRST(&istack[idepth].more)) != NULL) {
|
|
SLIST_REMOVE_HEAD(&istack[idepth].more, entries);
|
|
sudo_rcstr_delref(pl->path);
|
|
free(pl);
|
|
}
|
|
sudo_rcstr_delref(istack[idepth].path);
|
|
if (idepth && !istack[idepth].keepopen)
|
|
fclose(istack[idepth].bs->yy_input_file);
|
|
sudoers_delete_buffer(istack[idepth].bs);
|
|
free(istack[idepth].line.buf);
|
|
}
|
|
free(istack);
|
|
istack = NULL;
|
|
istacksize = idepth = 0;
|
|
free(sudolinebuf.buf);
|
|
memset(&sudolinebuf, 0, sizeof(sudolinebuf));
|
|
sudolineno = 1;
|
|
keepopen = false;
|
|
sawspace = false;
|
|
continued = false;
|
|
digest_type = -1;
|
|
prev_state = INITIAL;
|
|
BEGIN INITIAL;
|
|
|
|
debug_return;
|
|
}
|
|
|
|
/*
|
|
* Expand any embedded %h (host) escapes in the given path and makes
|
|
* a relative path fully-qualified based on the current sudoers file.
|
|
* Returns a reference-counted string.
|
|
*/
|
|
static char *
|
|
expand_include(const char *opath)
|
|
{
|
|
const char *cp, *ep;
|
|
char *path, *pp;
|
|
size_t len, olen, dirlen = 0;
|
|
bool subst = false;
|
|
debug_decl(expand_include, SUDOERS_DEBUG_PARSER);
|
|
|
|
/* Strip double quotes if present. */
|
|
olen = strlen(opath);
|
|
if (olen > 1 && opath[0] == '"' && opath[olen - 1] == '"') {
|
|
opath++;
|
|
olen -= 2;
|
|
}
|
|
if (olen == 0)
|
|
debug_return_ptr(NULL);
|
|
|
|
/* Relative paths are located in the same dir as the sudoers file. */
|
|
if (*opath != '/') {
|
|
char *dirend = strrchr(sudoers, '/');
|
|
if (dirend != NULL)
|
|
dirlen = (size_t)(dirend - sudoers) + 1;
|
|
}
|
|
|
|
cp = opath;
|
|
ep = opath + olen;
|
|
len = olen;
|
|
while (cp < ep) {
|
|
if (cp[0] == '%' && cp[1] == 'h') {
|
|
subst = true;
|
|
len += strlen(user_shost);
|
|
cp += 2;
|
|
continue;
|
|
}
|
|
cp++;
|
|
}
|
|
|
|
/* Make a copy of the fully-qualified path and return it. */
|
|
path = pp = sudo_rcstr_alloc(dirlen + len);
|
|
if (path == NULL) {
|
|
sudo_warnx(U_("%s: %s"), __func__, U_("unable to allocate memory"));
|
|
sudoerserror(NULL);
|
|
debug_return_str(NULL);
|
|
}
|
|
if (dirlen) {
|
|
memcpy(path, sudoers, dirlen);
|
|
pp += dirlen;
|
|
}
|
|
if (subst) {
|
|
/* substitute for %h */
|
|
cp = opath;
|
|
while (cp < ep) {
|
|
if (cp[0] == '%' && cp[1] == 'h') {
|
|
size_t n = strlcpy(pp, user_shost, len + 1);
|
|
if (n >= len + 1)
|
|
goto oflow;
|
|
cp += 2;
|
|
pp += n;
|
|
len -= n;
|
|
continue;
|
|
}
|
|
if (len < 1)
|
|
goto oflow;
|
|
*pp++ = *cp++;
|
|
len--;
|
|
}
|
|
*pp = '\0';
|
|
} else {
|
|
memcpy(pp, opath, len);
|
|
pp[len] = '\0';
|
|
}
|
|
|
|
debug_return_str(path);
|
|
oflow:
|
|
sudo_warnx(U_("internal error, %s overflow"), __func__);
|
|
sudoerserror(NULL);
|
|
sudo_rcstr_delref(path);
|
|
debug_return_str(NULL);
|
|
}
|
|
|
|
/*
|
|
* Open an include file (or file from a directory), push the old
|
|
* sudoers file buffer and switch to the new one.
|
|
* A missing or insecure include dir is simply ignored.
|
|
* Returns false on error, else true.
|
|
*/
|
|
bool
|
|
push_include(const char *opath, bool isdir)
|
|
{
|
|
struct path_list *pl;
|
|
char *path;
|
|
FILE *fp;
|
|
debug_decl(push_include, SUDOERS_DEBUG_PARSER);
|
|
|
|
if ((path = expand_include(opath)) == NULL)
|
|
debug_return_bool(false);
|
|
|
|
/* push current state onto stack */
|
|
if (idepth >= istacksize) {
|
|
struct include_stack *new_istack;
|
|
|
|
if (idepth > MAX_SUDOERS_DEPTH) {
|
|
if (sudoers_warnings)
|
|
sudo_warnx(U_("%s: %s"), path, U_("too many levels of includes"));
|
|
sudoerserror(NULL);
|
|
sudo_rcstr_delref(path);
|
|
debug_return_bool(false);
|
|
}
|
|
istacksize += SUDOERS_STACK_INCREMENT;
|
|
new_istack = reallocarray(istack, istacksize, sizeof(*istack));
|
|
if (new_istack == NULL) {
|
|
sudo_warnx(U_("%s: %s"), __func__, U_("unable to allocate memory"));
|
|
sudoerserror(NULL);
|
|
sudo_rcstr_delref(path);
|
|
debug_return_bool(false);
|
|
}
|
|
istack = new_istack;
|
|
}
|
|
SLIST_INIT(&istack[idepth].more);
|
|
if (isdir) {
|
|
struct stat sb;
|
|
int count, status;
|
|
|
|
status = sudo_secure_dir(path, sudoers_uid, sudoers_gid, &sb);
|
|
if (status != SUDO_PATH_SECURE) {
|
|
if (sudoers_warnings) {
|
|
switch (status) {
|
|
case SUDO_PATH_BAD_TYPE:
|
|
errno = ENOTDIR;
|
|
sudo_warn("%s", path);
|
|
break;
|
|
case SUDO_PATH_WRONG_OWNER:
|
|
sudo_warnx(U_("%s is owned by uid %u, should be %u"),
|
|
path, (unsigned int) sb.st_uid,
|
|
(unsigned int) sudoers_uid);
|
|
break;
|
|
case SUDO_PATH_WORLD_WRITABLE:
|
|
sudo_warnx(U_("%s is world writable"), path);
|
|
break;
|
|
case SUDO_PATH_GROUP_WRITABLE:
|
|
sudo_warnx(U_("%s is owned by gid %u, should be %u"),
|
|
path, (unsigned int) sb.st_gid,
|
|
(unsigned int) sudoers_gid);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
/* A missing or insecure include dir is not a fatal error. */
|
|
sudo_rcstr_delref(path);
|
|
debug_return_bool(true);
|
|
}
|
|
count = switch_dir(&istack[idepth], path);
|
|
if (count <= 0) {
|
|
/* switch_dir() called sudoerserror() for us */
|
|
sudo_rcstr_delref(path);
|
|
debug_return_bool(count ? false : true);
|
|
}
|
|
|
|
/* Parse the first dir entry we can open, leave the rest for later. */
|
|
do {
|
|
sudo_rcstr_delref(path);
|
|
if ((pl = SLIST_FIRST(&istack[idepth].more)) == NULL) {
|
|
/* Unable to open any files in include dir, not an error. */
|
|
debug_return_bool(true);
|
|
}
|
|
SLIST_REMOVE_HEAD(&istack[idepth].more, entries);
|
|
path = pl->path;
|
|
free(pl);
|
|
} while ((fp = open_sudoers(path, false, &keepopen)) == NULL);
|
|
} else {
|
|
if ((fp = open_sudoers(path, true, &keepopen)) == NULL) {
|
|
/* The error was already printed by open_sudoers() */
|
|
sudoerserror(NULL);
|
|
sudo_rcstr_delref(path);
|
|
debug_return_bool(false);
|
|
}
|
|
}
|
|
/* Push the old (current) file and open the new one. */
|
|
istack[idepth].path = sudoers; /* push old path (and its ref) */
|
|
istack[idepth].line = sudolinebuf;
|
|
istack[idepth].bs = YY_CURRENT_BUFFER;
|
|
istack[idepth].lineno = sudolineno;
|
|
istack[idepth].keepopen = keepopen;
|
|
idepth++;
|
|
sudolineno = 1;
|
|
sudoers = path;
|
|
sudoers_switch_to_buffer(sudoers_create_buffer(fp, YY_BUF_SIZE));
|
|
memset(&sudolinebuf, 0, sizeof(sudolinebuf));
|
|
|
|
debug_return_bool(true);
|
|
}
|
|
|
|
/*
|
|
* Restore the previous sudoers file and buffer, or, in the case
|
|
* of an includedir, switch to the next file in the dir.
|
|
* Returns false if there is nothing to pop, else true.
|
|
*/
|
|
static bool
|
|
pop_include(void)
|
|
{
|
|
struct path_list *pl;
|
|
FILE *fp;
|
|
debug_decl(pop_include, SUDOERS_DEBUG_PARSER);
|
|
|
|
if (idepth == 0 || YY_CURRENT_BUFFER == NULL)
|
|
debug_return_bool(false);
|
|
|
|
if (!keepopen)
|
|
fclose(YY_CURRENT_BUFFER->yy_input_file);
|
|
sudoers_delete_buffer(YY_CURRENT_BUFFER);
|
|
/* If we are in an include dir, move to the next file. */
|
|
while ((pl = SLIST_FIRST(&istack[idepth - 1].more)) != NULL) {
|
|
SLIST_REMOVE_HEAD(&istack[idepth - 1].more, entries);
|
|
fp = open_sudoers(pl->path, false, &keepopen);
|
|
if (fp != NULL) {
|
|
sudolinebuf.len = sudolinebuf.off = 0;
|
|
sudolinebuf.toke_start = sudolinebuf.toke_end = 0;
|
|
sudo_rcstr_delref(sudoers);
|
|
sudoers = pl->path;
|
|
sudolineno = 1;
|
|
sudoers_switch_to_buffer(sudoers_create_buffer(fp, YY_BUF_SIZE));
|
|
free(pl);
|
|
break;
|
|
}
|
|
/* Unable to open path in include dir, go to next one. */
|
|
sudo_rcstr_delref(pl->path);
|
|
free(pl);
|
|
}
|
|
/* If no path list, just pop the last dir on the stack. */
|
|
if (pl == NULL) {
|
|
idepth--;
|
|
sudoers_switch_to_buffer(istack[idepth].bs);
|
|
free(sudolinebuf.buf);
|
|
sudolinebuf = istack[idepth].line;
|
|
sudo_rcstr_delref(sudoers);
|
|
sudoers = istack[idepth].path;
|
|
sudolineno = istack[idepth].lineno;
|
|
keepopen = istack[idepth].keepopen;
|
|
}
|
|
debug_return_bool(true);
|
|
}
|
|
|
|
#ifdef TRACELEXER
|
|
int
|
|
sudoers_trace_print(const char *msg)
|
|
{
|
|
return fputs(msg, stderr);
|
|
}
|
|
#else
|
|
int
|
|
sudoers_trace_print(const char *msg)
|
|
{
|
|
sudo_lbuf_append(&trace_lbuf, "%s", msg);
|
|
if (strchr(msg, '\n') != NULL)
|
|
{
|
|
sudo_debug_printf2(NULL, NULL, 0, SUDOERS_DEBUG_PARSER|SUDO_DEBUG_DEBUG,
|
|
"%s:%d: %s", sudoers, sudolineno, trace_lbuf.buf);
|
|
trace_lbuf.len = 0;
|
|
}
|
|
return 0;
|
|
}
|
|
#endif /* TRACELEXER */
|
|
|
|
/*
|
|
* Custom input function that uses getdelim(3) and stores the buffer
|
|
* where the error functions can access it for better reporting.
|
|
* On success, buf is guaranteed to end in a newline and not contain
|
|
* embedded NULs. Calls YY_FATAL_ERROR on error.
|
|
*/
|
|
static yy_size_t
|
|
sudoers_input(char *buf, yy_size_t max_size)
|
|
{
|
|
char *cp;
|
|
size_t avail = sudolinebuf.len - sudolinebuf.off;
|
|
|
|
/* Refill line buffer if needed. */
|
|
if (avail == 0) {
|
|
/*
|
|
* Some getdelim(3) implementations write NUL to buf on EOF.
|
|
* We peek ahead one char to detect EOF and skip the getdelim() call.
|
|
* This will preserve the original value of the last line read.
|
|
*/
|
|
int ch = getc(sudoersin);
|
|
if (ch == EOF)
|
|
goto sudoers_eof;
|
|
ungetc(ch, sudoersin);
|
|
avail = getdelim(&sudolinebuf.buf, &sudolinebuf.size, '\n', sudoersin);
|
|
if (avail == (size_t)-1) {
|
|
sudoers_eof:
|
|
/* EOF or error. */
|
|
if (feof(sudoersin))
|
|
return 0;
|
|
YY_FATAL_ERROR("input in flex scanner failed");
|
|
}
|
|
|
|
/* getdelim() can return embedded NULs, truncate if we find one. */
|
|
cp = memchr(sudolinebuf.buf, '\0', avail);
|
|
if (cp != NULL) {
|
|
*cp++ = '\n';
|
|
*cp = '\0';
|
|
avail = (size_t)(cp - sudolinebuf.buf);
|
|
}
|
|
|
|
/* Add trailing newline if it is missing. */
|
|
if (sudolinebuf.buf[avail - 1] != '\n') {
|
|
if (avail + 2 >= sudolinebuf.size) {
|
|
cp = realloc(sudolinebuf.buf, avail + 2);
|
|
if (cp == NULL) {
|
|
YY_FATAL_ERROR("unable to allocate memory");
|
|
return 0;
|
|
}
|
|
sudolinebuf.buf = cp;
|
|
sudolinebuf.size = avail + 2;
|
|
}
|
|
sudolinebuf.buf[avail++] = '\n';
|
|
sudolinebuf.buf[avail] = '\0';
|
|
}
|
|
|
|
sudolinebuf.len = avail;
|
|
sudolinebuf.off = 0;
|
|
sudolinebuf.toke_start = sudolinebuf.toke_end = 0;
|
|
}
|
|
|
|
if (avail > max_size)
|
|
avail = max_size;
|
|
memcpy(buf, sudolinebuf.buf + sudolinebuf.off, avail);
|
|
sudolinebuf.off += avail;
|
|
|
|
return avail;
|
|
}
|
|
|