zend_language_scanner.c   [plain text]


#define yy_create_buffer zend_create_buffer
#define yy_delete_buffer zend_delete_buffer
#define yy_scan_buffer zend_scan_buffer
#define yy_scan_string zend_scan_string
#define yy_scan_bytes zend_scan_bytes
#define yy_flex_debug zend_flex_debug
#define yy_init_buffer zend_init_buffer
#define yy_flush_buffer zend_flush_buffer
#define yy_load_buffer_state zend_load_buffer_state
#define yy_switch_to_buffer zend_switch_to_buffer
#define yyin zendin
#define yyleng zendleng
#define yylex zendlex
#define yyout zendout
#define yyrestart zendrestart
#define yytext zendtext

/* A Lexical scanner generated by flex */

/* Scanner skeleton version:
 * $Header: /repository/ZendEngine2/flex.skl,v 1.31 2003/08/11 05:24:41 fujimoto Exp $
 * vim:ft=lex:
 */

#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5

#include <stdio.h>


/* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
#ifdef c_plusplus
#ifndef __cplusplus
#define __cplusplus
#endif
#endif


#ifdef __cplusplus

#include <stdlib.h>
#if HAVE_UNISTD_H
#include <unistd.h>
#endif

/* Use prototypes in function declarations. */
#define YY_USE_PROTOS

/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST

#else	/* ! __cplusplus */

#if __STDC__

#define YY_USE_PROTOS
#define YY_USE_CONST

#endif	/* __STDC__ */
#endif	/* ! __cplusplus */

#ifdef __TURBOC__
 #pragma warn -rch
 #pragma warn -use
#include <io.h>
#include <stdlib.h>
#define YY_USE_CONST
#define YY_USE_PROTOS
#endif

#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif

#undef YY_USE_PROTOS
#define YY_USE_PROTOS

#ifdef YY_USE_PROTOS
#define YY_PROTO(proto) proto
#else
#define YY_PROTO(proto) ()
#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 yyrestart( SCNG(yy_in) TSRMLS_CC )

#define YY_END_OF_BUFFER_CHAR 0

/* Size of default input buffer. */
#define YY_BUF_SIZE 16384

typedef struct yy_buffer_state *YY_BUFFER_STATE;

extern int yyleng;


#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2

/* The funky do-while in the following #define is used to turn the definition
 * int a single C statement (which needs a semi-colon terminator).  This
 * avoids problems with code like:
 *
 * 	if ( condition_holds )
 *		yyless( 5 );
 *	else
 *		do_something_else();
 *
 * Prior to using the do-while the compiler would get upset at the
 * "else" because it interpreted the "if" statement as being all
 * done when it reached the ';' after the yyless() call.
 */

/* Return all but the first 'n' matched characters back to the input stream. */

#define yyless(n) \
	do \
		{ \
		/* Undo effects of setting up yytext. */ \
		*yy_cp = yy_hold_char; \
		yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
		YY_DO_BEFORE_ACTION; /* set up yytext again */ \
		} \
	while ( 0 )

#define unput(c) yyunput( c, yytext_ptr TSRMLS_CC )

/* The following is because we cannot portably get our hands on size_t
 * (without autoconf's help, which isn't available because we want
 * flex-generated scanners to compile on their own).
 */
typedef unsigned int yy_size_t;


struct yy_buffer_state
	{
	struct _zend_file_handle *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.
	 */
	int yy_n_chars;

	/* Whether we "own" the buffer - i.e., we know we created it,
	 * and can realloc() it to grow it, and should free() it to
	 * delete it.
	 */
	int yy_is_our_buffer;

	/* Whether this is an "interactive" input source; if so, and
	 * if we're using stdio for input, then we want to use getc()
	 * instead of fread(), to make sure we stop fetching input after
	 * each newline.
	 */
	int yy_is_interactive;

	/* Whether we're considered to be at the beginning of a line.
	 * If so, '^' rules will be active on the next match, otherwise
	 * not.
	 */
	int yy_at_bol;

	/* Whether to try to fill the input buffer when we reach the
	 * end of it.
	 */
	int yy_fill_buffer;

	int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
	/* When an EOF's been seen but there's still some text to process
	 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
	 * shouldn't try reading from the input source any more.  We might
	 * still have a bunch of tokens to match, though, because of
	 * possible backing-up.
	 *
	 * When we actually see the EOF, we change the status to "new"
	 * (via yyrestart()), so that the user can continue scanning by
	 * just pointing yyin at a new input file.
	 */
#define YY_BUFFER_EOF_PENDING 2
	};

#define yy_current_buffer SCNG(current_buffer)
#define yy_hold_char SCNG(_yy_hold_char)

/* 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".
 */
#define YY_CURRENT_BUFFER yy_current_buffer


/* yy_hold_char holds the character lost when yytext is formed. */

#if 0
static char yy_hold_char;

static int yy_n_chars;		/* number of characters read into yy_ch_buf */
#endif

/* Points to current character in buffer. */
#define yy_c_buf_p SCNG(c_buf_p)
#define yy_init SCNG(init)
#define yy_start SCNG(start)

#ifdef ZTS
#define TSRMLS_D	void ***tsrm_ls
#define TSRMLS_DC	, TSRMLS_D
#define TSRMLS_C	tsrm_ls
#define TSRMLS_CC	, TSRMLS_C
#else
#define TSRMLS_D
#define TSRMLS_DC
#define TSRMLS_C
#define TSRMLS_CC
#endif

/* Flag which is used to allow yywrap()'s to do buffer switches
 * instead of setting up a fresh yyin.  A bit of a hack ...
 */
/* static int yy_did_buffer_switch_on_eof; */
#define yy_did_buffer_switch_on_eof SCNG(_yy_did_buffer_switch_on_eof)

void yyrestart YY_PROTO(( struct _zend_file_handle *input_file TSRMLS_DC ));

void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer TSRMLS_DC ));
void yy_load_buffer_state YY_PROTO(( TSRMLS_D ));
YY_BUFFER_STATE yy_create_buffer YY_PROTO(( struct _zend_file_handle *file, int size TSRMLS_DC ));
void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b TSRMLS_DC ));
void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, struct _zend_file_handle *file TSRMLS_DC ));
void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b TSRMLS_DC ));
#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer TSRMLS_CC )

YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size TSRMLS_DC ));
YY_BUFFER_STATE yy_scan_string YY_PROTO(( yyconst char *yy_str TSRMLS_DC ));
YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len TSRMLS_DC ));


static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
static void yy_flex_free YY_PROTO(( void * ));

#define yy_new_buffer yy_create_buffer

#define yy_set_interactive(is_interactive) \
	{ \
	if ( ! yy_current_buffer ) \
		yy_current_buffer = yy_create_buffer( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC ); \
	yy_current_buffer->yy_is_interactive = is_interactive; \
	}

#define yy_set_bol(at_bol) \
	{ \
	if ( ! yy_current_buffer ) \
		yy_current_buffer = yy_create_buffer( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC ); \
	yy_current_buffer->yy_at_bol = at_bol; \
	}

#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)


#define yywrap() 1
#define YY_SKIP_YYWRAP
typedef unsigned char YY_CHAR;
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
typedef int yy_state_type;
extern char *yytext;
#define yytext_ptr yytext
#undef yyleng
#define yyleng SCNG(yy_leng)
#undef yytext
#define yytext SCNG(yy_text)
#undef yytext_ptr
#define yytext_ptr SCNG(yy_text)
#undef yyin
#define yyin SCNG(yy_in)
#undef yyout
#define yyout SCNG(yy_out)
#undef yy_last_accepting_state
#define yy_last_accepting_state SCNG(_yy_last_accepting_state)
#undef yy_last_accepting_cpos
#define yy_last_accepting_cpos SCNG(_yy_last_accepting_cpos)
#undef yy_more_flag
#define yy_more_flag SCNG(_yy_more_flag)
#undef yy_more_len
#define yy_more_len SCNG(_yy_more_len)


static yy_state_type yy_get_previous_state YY_PROTO(( TSRMLS_D ));
static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state TSRMLS_DC ));
static int yy_get_next_buffer YY_PROTO(( TSRMLS_D ));
static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));

#undef TSRMLS_D
#undef TSRMLS_DC
#undef TSRMLS_C
#undef TSRMLS_CC

/* Done after the current pattern has been matched and before the
 * corresponding action - sets up yytext.
 */
#define YY_DO_BEFORE_ACTION \
	yytext_ptr = yy_bp; \
	yytext_ptr -= yy_more_len; \
	yyleng = (int) (yy_cp - yytext_ptr); \
	yy_hold_char = *yy_cp; \
	*yy_cp = '\0'; \
	yy_c_buf_p = yy_cp;

#undef yyleng
#undef yytext
#undef yytext_ptr
#undef yyin
#undef yyout
#undef yy_last_accepting_state
#undef yy_last_accepting_cpos
#undef yy_more_flag
#undef yy_more_len


#define YY_NUM_RULES 159
#define YY_END_OF_BUFFER 160
static yyconst short int yy_accept[1493] =
    {   0,
        0,    0,    0,    0,    0,    0,    0,    0,  154,  154,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,  160,  114,  114,  158,
      126,   98,  142,  127,   98,   98,   98,  158,   98,   98,
       98,   98,   98,   98,   98,  104,  104,   98,   98,   98,
       98,   98,   98,  125,  144,  125,  125,  125,  125,  125,
      125,  125,  125,  125,  125,  125,  125,  125,  125,  125,
      125,  125,  125,  125,  125,   99,   98,  101,  150,  156,
      159,  159,  159,  152,  159,  159,  157,  159,  154,  154,
      154,  159,  159,  154,  159,  145,  145,  148,   39,   39,

       38,  103,  102,  124,  123,  123,  106,  106,  122,  134,
      137,  137,  129,  129,  129,  128,  128,  128,  114,    0,
      114,  117,  115,  114,  126,   77,    0,  140,    0,    0,
        0,  119,   85,  139,   92,   88,    0,  141,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0,    0,   82,
       72,   80,   73,   81,   36,  108,   84,  133,  127,   83,
      108,  104,    0,    0,   40,    0,   96,   78,   77,   76,
       69,   79,   97,  138,   90,  125,  125,  125,  125,  125,
       23,  142,    0,    0,  125,  125,  125,  125,  125,  125,
       15,  125,  125,  125,  125,  125,  125,  125,  125,  125,

      125,    9,  125,  125,  125,  125,  125,   93,  125,  125,
      125,  125,  125,  125,  125,  125,  125,  125,  125,  125,
       89,   91,  150,    0,    0,    0,  150,  151,  151,    0,
      119,  100,  149,  151,  152,    0,    0,    0,  152,  153,
        0,  153,  153,  154,  154,  154,    0,    0,  154,    0,
      154,    0,    0,  154,    0,  154,  154,  155,    0,    0,
      154,  154,    0,  154,    0,  155,  146,    0,    0,   37,
       38,  102,  107,    0,  106,  134,  136,  135,  129,  129,
      130,  131,  114,    0,  116,    0,    0,   75,    0,    0,
      119,  139,  139,    0,    0,    0,    0,    0,    0,    0,

        0,    0,    0,    0,  108,    0,  108,  105,    0,    0,
       86,   74,   87,  138,  138,  125,  125,  125,  125,  125,
      125,   94,  125,    0,  125,  125,  125,  125,  125,  125,
      125,  125,    2,  125,  125,  125,  125,  125,  125,  125,
      125,   16,  125,  125,  125,  125,  125,  125,  125,  125,
       41,  125,  125,  125,  125,  125,  125,  125,  125,    6,
      125,   57,   43,  125,   95,  151,    0,  119,  121,  151,
      153,  153,  154,  155,    0,  154,  147,    0,  154,  154,
        0,    0,  155,  155,  155,    0,  155,  155,  107,  114,
        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,

        0,    0,    0,  132,    0,    0,    0,  125,  125,  125,
      125,  125,  125,  125,  125,  125,   26,  125,  125,  125,
      125,  125,  125,  125,   30,   12,  125,  125,  125,  125,
      125,  125,   52,    1,  125,  125,  125,  125,  125,  125,
      125,  125,  125,  125,   70,  125,  125,  125,  125,  125,
      125,  125,  125,  125,  125,  125,    0,  155,  154,  155,
        0,  154,  155,  155,  155,  155,  114,    0,    0,    0,
        0,    0,    0,    0,    0,    0,   44,    0,    0,    0,
        0,    0,    0,  143,  143,    0,  125,  125,  125,  125,
      125,  125,  125,   71,   28,    7,   32,   42,    4,  125,

      125,  125,  125,   60,  125,  125,   11,  125,  125,  125,
       64,  125,  125,  125,  125,  125,  125,  125,   59,   31,
      125,  125,  125,  125,  125,  125,  125,    8,   68,   13,
      120,  155,  155,  114,    0,  118,  118,    0,    0,    0,
        0,   50,    0,    0,    0,    0,    0,   45,    0,    0,
        0,  125,  125,  125,  125,  125,  125,  125,  125,  125,
      125,   10,  125,   17,  125,  125,  125,  125,  125,   58,
      125,  125,  125,  125,  125,  125,   67,  125,    5,   62,
       24,  114,    0,    0,    0,   48,    0,    0,    0,    0,
        0,    0,   51,    0,  125,  125,  125,  125,  125,  125,

      125,  125,   20,   27,  125,  125,  125,  125,   34,   18,
      125,  125,   53,  125,  125,   65,  125,   55,  114,    0,
        0,    0,   47,    0,    0,    0,   49,    0,   46,    0,
      125,  113,  125,  125,  112,  125,   63,   29,  125,  125,
      125,   14,    3,  125,  125,  125,  125,  125,  125,  114,
        0,    0,    0,  109,  125,  125,  125,  125,  125,   25,
      125,  125,  125,   33,   66,  125,  114,    0,    0,  125,
      125,  111,   21,   19,   35,  125,   22,  125,  114,    0,
        0,  125,  125,  125,  125,  114,    0,    0,  110,  125,
       54,   56,  114,    0,    0,  125,  114,    0,    0,  125,

      114,    0,    0,   61,  114,    0,    0,  114,    0,    0,
        0,  114,    0,    0,    0,    0,    0,  114,    0,    0,
        0,    0,  114,    0,    0,    0,    0,  114,    0,    0,
        0,    0,  115,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,

        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,

        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,

        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,

        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,

        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,

        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,

        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,  114,    0,  114,    0,  114,    0,  114,    0,  114,
        0,    0

    } ;

static yyconst int yy_ec[256] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
        1,    1,    4,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    2,    5,    6,    7,    8,    9,   10,   11,   12,
       13,   14,   15,   16,   17,   18,   19,   20,   21,   21,
       21,   21,   21,   21,   21,   21,   21,   22,   23,   24,
       25,   26,   27,   16,   34,   35,   36,   37,   38,   39,
       40,   41,   42,   43,   44,   45,   46,   47,   48,   49,
       50,   51,   52,   53,   54,   55,   56,   57,   58,   59,
       28,   29,   30,   31,   32,   33,   34,   35,   36,   37,

       38,   39,   40,   41,   42,   43,   44,   45,   46,   47,
       48,   49,   50,   51,   52,   53,   54,   55,   56,   57,
       58,   59,   60,   61,   62,   16,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,

       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59,   59,   59,   59,   59,   59,
       59,   59,   59,   59,   59
    } ;

static yyconst int yy_meta[63] =
    {   0,
        1,    2,    3,    3,    1,    4,    1,    1,    1,    1,
        1,    1,    1,    5,    1,    1,    6,    1,    1,    7,
        7,    1,    8,    9,    1,    1,    1,    6,    1,    1,
        1,   10,   11,   10,   10,   10,   10,   10,   10,   10,
       10,   10,   10,   10,   10,   10,   10,   10,   10,   10,
       10,   10,   10,   10,   10,   10,   10,   10,   10,   12,
        1,    1
    } ;

static yyconst short int yy_base[1922] =
    {   0,
     8941, 8940,    0,    0,   57,   58,   59,   60,  120,    0,
      182,    0,    0,    0,  244,    0,  306,    0,  368,    0,
     8949, 8948, 8947, 8946,   68,   70, 8959, 8934,  422, 8966,
       78, 8932,  426, 8966,    0,   44,   65,   72,  485, 8966,
     8931,   83,   59,   79,   88,  415,  419, 8933,   86,   89,
      416, 8928, 8928, 8920, 8966,  409,  439,  414,  416,  434,
      423, 8906,    0,  436, 8908, 8911, 8897,   52, 8909,  390,
      425,  400, 8912, 8904, 8896, 8966,  442, 8966,  465, 8966,
      539, 8937,  596,  470,  656, 8909, 8966,  595,  718,  780,
     8938,  842,  897,  957, 1012, 8966,  481, 8966, 8966, 8914,

        0, 8966,    0, 8966, 8966,    0,  448,  472, 8966,    0,
     8920, 8919,  505, 8966, 8934, 8910, 8966, 8909, 8910,  486,
     8909, 8907,  472, 8895,  498, 8905, 1015, 8966,  600,    0,
     1016,    0, 8966,  503, 8966, 8966,   80, 8966,    0,    0,
     8878,  469, 8880, 8882, 8879, 8890, 8886, 8870, 8875, 8966,
     8966, 8966, 8966, 8966, 8966,  589, 8966, 8907, 8966, 8966,
      592,  596,  616,  886, 8966, 8868,  491, 8966, 8966, 8894,
     8966, 8966, 8893,  525, 8966,    0,  599, 8865, 8879, 8864,
        0, 1019,  594, 8890, 8875,  482,  464, 8865,  487, 8873,
        0, 8869, 8857, 8859, 8870, 8872,  565, 8858, 8853, 8856,

     8854,    0, 8852,  590, 8848, 8847, 8842,    0,  573, 8862,
      569, 8862, 8853, 8843, 8835, 8840, 8853, 8839, 8847, 8837,
     8966, 8966, 1018, 1022, 8881, 1023, 1024, 8966, 1027, 1053,
      622, 8966, 8966, 1057, 1106, 1026, 8853, 1107, 1108, 1028,
     1137, 8966, 1110,    0,    0, 8882, 1035,    0,    0, 1190,
        0, 1116, 1243, 1303, 1192,    0,    0, 1118, 1363, 1124,
        0, 1193,    0,    0, 1194, 1195, 8966,  905,  643, 8966,
        0,    0,  628, 1121,  631,    0, 8966, 8966, 1201, 8966,
     8966, 8966, 8860, 1190, 8966, 8842, 8831, 8966, 1200, 1392,
        0, 8966, 8878, 8829, 8832, 8830, 8823, 8828, 8822, 8831,

     8839, 8821, 8819,  908, 1029,  633,  893, 1210, 8834, 8867,
     8966, 8966, 8966, 8966, 8865, 8822,  578, 8832, 8823, 8826,
     8810,    0, 8828, 8837, 8826, 8821, 8822, 8805, 8809,  863,
     8810, 8820,    0, 8805, 8814, 8798, 1092, 8805, 8796, 8810,
     8813, 8808, 8809, 8809, 8798, 8797, 8788, 8802, 8801, 8785,
        0,  872, 8784, 8791, 8781, 8780, 8780, 8779, 8783,    0,
     8792,    0,    0, 8784,    0, 1052, 8802, 1045, 8966, 1203,
     1117, 1204,    0, 1212, 1450,    0, 8966, 1232,    0, 1491,
      914, 1365, 1205, 1367, 1452,    0, 1210, 1543, 1437, 8803,
     1543, 8777, 8783, 8790, 8789, 8777, 8786, 8786, 1551, 8781,

     8773, 8775, 8778, 1066, 8764, 8812, 1148, 8779, 8767, 8764,
     8765, 8762, 8755, 8756, 8748, 8761,    0, 8763, 8751, 8764,
     8748, 8758, 8765, 8744,    0, 8755, 8738, 8757, 8746, 8754,
     8736, 8750,    0,    0, 8743, 8744, 8754, 8734, 8752, 8747,
     8730, 8749, 8731, 8728,    0, 8727, 8745, 8740, 8735, 8734,
     8724, 8732, 8737, 8716, 8718, 8732,    0, 1551,    0, 1553,
     1601,    0, 1565, 1550, 1573, 1554, 8745, 1566, 1159, 8719,
     8709, 8715, 1558, 8720, 8711, 1064, 8966, 8723, 8726, 1069,
     8714, 8707, 8717, 8966, 8755, 1161, 8705, 8718, 8719, 8701,
     8715, 8711, 8717,    0,    0,    0,    0,    0,    0, 8703,

     8698, 8703, 8708,    0, 8710, 8694,    0, 8702, 8701, 8705,
        0, 8705, 8698, 8694, 8692, 8700, 8689, 8696,    0,    0,
     8681, 8697, 8696, 8680, 8683, 8693, 8687,    0,    0,    0,
     8966, 1583, 1603, 8703, 1653, 8966, 8723, 8672, 1136, 8666,
     1254, 8966, 8689, 8684, 8683, 8667, 1255, 8966, 8679, 1256,
     8669, 8665, 8684, 8662, 8682, 8681, 8664, 8675, 8656, 8671,
     8655,    0, 8662, 8668, 8652, 8659, 8651, 8661, 8653,    0,
     8662, 8661, 8662, 8663, 8658, 8642,    0, 8656,    0,    0,
        0, 8669, 1655, 1374, 1260, 8966, 1370, 8645, 8640, 1372,
     1377, 1378, 8966, 8637, 8657, 8656, 8645, 8650, 8653, 8647,

     8630, 8644,    0,    0, 8647, 8646, 8643, 8640,    0,    0,
     8630, 8629, 8643, 8636, 8637,    0, 8634, 8639, 8646, 1657,
     1475, 1379, 8966, 1380, 1457, 1467, 8966, 1511, 8966, 1595,
     8637,    0, 8620, 8619,    0, 8634,    0,    0, 8614, 8628,
     8622,    0,    0, 3868, 3872, 3870, 3879, 3879, 3841, 3854,
     1659, 3843, 1667,    0, 3829, 3829, 3842, 3835, 3831,    0,
     3805, 3799, 3796,    0,    0, 3777, 3799, 1663, 3772, 3776,
     3758,    0,    0,    0,    0, 3768,    0, 3727, 3733, 1664,
     3716, 3721, 3710, 3711, 3708, 3721, 1665, 3690,    0, 3696,
        0,    0, 3698, 1676, 3683, 3678, 3663, 1686, 3553, 3541,

     3567, 1695, 3552,    0, 3565, 1697, 1695, 3563, 1699, 1727,
     1730, 3562, 1716, 1742, 3536, 3534, 3541, 3557, 1730, 3539,
     3538, 3528, 3552, 1746, 3526, 3524, 1757, 3548, 1747, 3565,
     3559, 1760, 8966, 3544, 1757, 3540, 1763, 3538, 1768, 3534,
     1769, 3530, 1776, 3528, 1780, 3523, 1792, 3519, 1799, 3502,
     1803, 3501, 1809, 3484, 1813, 3480, 1815, 3478, 1822, 3475,
     1826, 3473, 1832, 3457, 1836, 3456, 1845, 3452, 1849, 3438,
     1853, 3434, 1855, 3433, 1859, 3429, 1866, 3411, 1872, 3406,
     1876, 3390, 1882, 3388, 1886, 3385, 1893, 3383, 1895, 3367,
     1899, 3362, 1903, 3344, 1905, 3343, 1912, 3339, 1916, 3338,

     1922, 3335, 1926, 3321, 1932, 3317, 1939, 3316, 1943, 3300,
     1945, 3298, 1949, 3293, 1953, 3289, 1962, 3272, 1966, 3271,
     1972, 3254, 1976, 3250, 1983, 3248, 1985, 3245, 1989, 3243,
     1993, 3227, 1995, 3226, 1999, 3222, 2006, 3208, 2012, 3204,
     2016, 3203, 2022, 3199, 2029, 3181, 2033, 3176, 2035, 3160,
     2039, 3158, 2043, 3155, 2045, 3153, 2052, 3137, 2056, 3132,
     2062, 3114, 2066, 3113, 2075, 3109, 2079, 3108, 2083, 3105,
     2085, 3091, 2089, 3087, 2096, 3086, 2102, 3070, 2106, 3068,
     2112, 3063, 2116, 3059, 2123, 3042, 2125, 3041, 2129, 3024,
     2133, 3020, 2135, 3018, 2142, 3015, 2146, 3013, 2152, 2997,

     2156, 2996, 2162, 2992, 2169, 2978, 2173, 2974, 2175, 2973,
     2179, 2969, 2183, 2951, 2192, 2946, 2196, 2930, 2202, 2928,
     2206, 2925, 2213, 2923, 2215, 2907, 2219, 2902, 2223, 2884,
     2225, 2883, 2229, 2879, 2236, 2878, 2242, 2875, 2246, 2861,
     2252, 2857, 2259, 2856, 2263, 2840, 2265, 2838, 2269, 2833,
     2273, 2829, 2275, 2812, 2282, 2811, 2286, 2794, 2292, 2790,
     2296, 2788, 2305, 2785, 2309, 2783, 2313, 2767, 2315, 2766,
     2319, 2762, 2326, 2748, 2332, 2744, 2336, 2743, 2342, 2739,
     2346, 2721, 2353, 2716, 2355, 2700, 2359, 2698, 2363, 2695,
     2365, 2693, 2372, 2677, 2376, 2672, 2382, 2654, 2386, 2653,

     2392, 2649, 2399, 2648, 2403, 2645, 2405, 2631, 2409, 2627,
     2413, 2626, 2422,   54, 2426,   92, 2432,  414, 2436,  427,
     2443,  472, 2445,  494, 2449,  587, 2453,  617, 2455,  906,
     2459, 1013, 2466, 1016, 2472, 1018, 2476, 1022, 2482, 1030,
     2489, 1050, 2493, 1056, 2495, 1099, 2499, 1106, 2503, 1109,
     2505, 1130, 2512, 1183, 2516, 1201, 2522, 1202, 2526, 1214,
     2535, 1219, 2539, 1235, 2543, 1242, 2545, 1247, 2549, 1250,
     2556, 1252, 2562, 1360, 2566, 1362, 2572, 1363, 2576, 1364,
     2583, 1365, 2585, 1437, 2589, 1438, 2593, 1439, 2595, 1440,
     2602, 1441, 2606, 1442, 2612, 1443, 2616, 1444, 2622, 1459,

     2629, 1491, 2633, 1492, 2635, 1493, 2639, 1494, 2643, 1495,
     2652, 1497, 2656, 1498, 2662, 1539, 2666, 1541, 2673, 1542,
     2675, 1550, 2679, 1554, 2683, 1560, 2685, 1561, 2689, 1564,
     2696, 1568, 2702, 1576, 2706, 1577, 2712, 1584, 2719, 1585,
     2723, 1589, 2725, 1591, 2729, 1592, 2733, 1593, 2735, 1595,
     2742, 1596, 2746, 1598, 2752, 1599, 2756, 1600, 2765, 1602,
     2769, 1603, 2773, 1604, 2775, 1605, 2779, 1606, 2786, 1607,
     2792, 1610, 2796, 1641, 2802, 1643, 2806, 1651, 2813, 1652,
     2815, 1654, 2819, 1670, 2823, 1672, 2825, 1677, 2832, 1678,
     2836, 1688, 2842, 1690, 2846, 1694, 2852, 1703, 2859, 1711,

     2863, 1713, 2865, 1718, 2869, 1726, 2873, 1734, 2882, 1741,
     2886, 1743, 2892, 1745, 2896, 1751, 2903, 1752, 2905, 1756,
     2909, 1764, 2913, 1770, 2915, 1773, 2919, 1778, 2926, 1781,
     2932, 1782, 2936, 1786, 2942, 1787, 2949, 1789, 2953, 1790,
     2955, 1793, 2959, 1801, 2963, 1805, 2965, 1810, 2972, 1814,
     2976, 1819, 2982, 1823, 2986, 1824, 2995, 1828, 2999, 1833,
     3003, 1842, 3005, 1846, 3009, 1847, 3016, 1863, 3022, 1865,
     3026, 1868, 3032, 1870, 3036, 1874, 3043, 1891, 3045, 1892,
     3049, 1909, 3053, 1913, 3055, 1918, 3062, 1920, 3066, 1936,
     3072, 1937, 3076, 1941, 3082, 1955, 3089, 1958, 3093, 1959,

     3095, 1963, 3099, 1964, 3103, 1982, 3112, 1987, 3116, 2003,
     3122, 2005, 3126, 2008, 3133, 2010, 3135, 2026, 3139, 2031,
     3143, 2049, 3145, 2053, 3149, 2054, 3156, 2058, 3162, 2072,
     3166, 2076, 3172, 2077, 3179, 2093, 3183, 2095, 3185, 2098,
     3189, 2100, 3193, 2104, 3195, 2121, 3202, 2122, 3206, 2139,
     3212, 2143, 3216, 2148, 3225, 2150, 3229, 2166, 3233, 2167,
     3235, 2171, 3239, 2185, 3246, 2188, 3252, 2189, 3256, 2193,
     3262, 2194, 3266, 2212, 3273, 2217, 3275, 2233, 3279, 2235,
     3283, 2238, 3285, 2240, 3292, 2256, 3296, 2261, 3302, 2279,
     3306, 2283, 3312, 2284, 3319, 2288, 3323, 2302, 3325, 2306,

     3329, 2307, 3333, 2323, 3342, 2325, 3346, 2328, 3352, 2330,
     3356, 2334, 3363, 2351, 3365, 2352, 3369, 2369, 3373, 2373,
     3375, 2378, 3379, 2380, 3386, 2396, 3392, 2397, 3396, 2401,
     3402, 2415, 3409, 2418, 3413, 2419, 3415, 2423, 3419, 2424,
     3423, 2442, 3425, 2447, 3432, 2463, 3436, 2465, 3442, 2468,
     3446, 2470, 3455, 2486, 3459, 2491, 3463, 2509, 3465, 2513,
     3469, 2514, 3476, 2518, 3482, 2532, 3486, 2536, 3492, 2537,
     3496, 2553, 3503, 2555, 3505, 2558, 3509, 2560, 3513, 2564,
     3515, 2581, 3522, 2582, 3526, 2599, 3532, 2603, 3536, 8966,
     3542, 8966, 3594, 3606, 3618, 3630, 3642, 3654, 3666, 3678,

     3690, 2622, 3702, 3708, 3718, 3730, 3740, 3744, 3748, 3758,
     3770, 3782, 3794, 3799, 3809, 3815, 3825, 3836, 3847, 3858,
     3869, 3879, 3890, 3902, 3912, 2624, 3922, 3934, 3946, 3958,
     3970, 3982, 3994, 4006, 4018, 4030, 4042, 4054, 4066, 4078,
     4090, 4102, 4114, 4126, 4138, 4150, 4162, 4174, 4186, 4198,
     4210, 4222, 4234, 4246, 4258, 4270, 4282, 4294, 4306, 4318,
     4330, 4342, 4354, 4366, 4378, 4390, 4402, 4414, 4426, 4438,
     4450, 4462, 4474, 4486, 4498, 4510, 4522, 4534, 4546, 4558,
     4570, 4582, 4594, 4606, 4618, 4630, 4642, 4654, 4666, 4678,
     4690, 4702, 4714, 4726, 4738, 4750, 4762, 4774, 4786, 4798,

     4810, 4822, 4834, 4846, 4858, 4870, 4882, 4894, 4906, 4918,
     4930, 4942, 4954, 4966, 4978, 4990, 5002, 5014, 5026, 5038,
     5050, 5062, 5074, 5086, 5098, 5110, 5122, 5134, 5146, 5158,
     5170, 5182, 5194, 5206, 5218, 5230, 5242, 5254, 5266, 5278,
     5290, 5302, 5314, 5326, 5338, 5350, 5362, 5374, 5386, 5398,
     5410, 5422, 5434, 5446, 5458, 5470, 5482, 5494, 5506, 5518,
     5530, 5542, 5554, 5566, 5578, 5590, 5602, 5614, 5626, 5638,
     5650, 5662, 5674, 5686, 5698, 5710, 5722, 5734, 5746, 5758,
     5770, 5782, 5794, 5806, 5818, 5830, 5842, 5854, 5866, 5878,
     5890, 5902, 5914, 5926, 5938, 5950, 5962, 5974, 5986, 5998,

     6010, 6022, 6034, 6046, 6058, 6070, 6082, 6094, 6106, 6118,
     6130, 6142, 6154, 6166, 6178, 6190, 6202, 6214, 6226, 6238,
     6250, 6262, 6274, 6286, 6298, 6310, 6322, 6334, 6346, 6358,
     6370, 6382, 6394, 6406, 6418, 6430, 6442, 6454, 6466, 6478,
     6490, 6502, 6514, 6526, 6538, 6550, 6562, 6574, 6586, 6598,
     6610, 6622, 6634, 6646, 6658, 6670, 6682, 6694, 6706, 6718,
     6730, 6742, 6754, 6766, 6778, 6790, 6802, 6814, 6826, 6838,
     6850, 6862, 6874, 6886, 6898, 6910, 6922, 6934, 6946, 6958,
     6970, 6982, 6994, 7006, 7018, 7030, 7042, 7054, 7066, 7078,
     7090, 7102, 7114, 7126, 7138, 7150, 7162, 7174, 7186, 7198,

     7210, 7222, 7234, 7246, 7258, 7270, 7282, 7294, 7306, 7318,
     7330, 7342, 7354, 7366, 7378, 7390, 7402, 7414, 7426, 7438,
     7450, 7462, 7474, 7486, 7498, 7510, 7522, 7534, 7546, 7558,
     7570, 7582, 7594, 7606, 7618, 7630, 7642, 7654, 7666, 7678,
     7690, 7702, 7714, 7726, 7738, 7750, 7762, 7774, 7786, 7798,
     7810, 7822, 7834, 7846, 7858, 7870, 7882, 7894, 7906, 7918,
     7930, 7942, 7954, 7966, 7978, 7990, 8002, 8014, 8026, 8038,
     8050, 8062, 8074, 8086, 8098, 8110, 8122, 8134, 8146, 8158,
     8170, 8182, 8194, 8206, 8218, 8230, 8242, 8254, 8266, 8278,
     8290, 8302, 8314, 8326, 8338, 8350, 8362, 8374, 8386, 8398,

     8410, 8422, 8434, 8446, 8458, 8470, 8482, 8494, 8506, 8518,
     8530, 8542, 8554, 8566, 8578, 8590, 8602, 8614, 8626, 8638,
     8650
    } ;

static yyconst short int yy_def[1922] =
    {   0,
     1493, 1493, 1492,    3, 1494, 1494, 1495, 1495, 1492,    9,
     1492,   11, 1496, 1496, 1492,   15, 1492,   17, 1492,   19,
     1497, 1497, 1497, 1497, 1498, 1498, 1492, 1499, 1500, 1492,
     1492, 1492, 1501, 1492, 1502, 1492, 1492, 1503, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1504, 1492, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1492, 1492, 1492, 1505, 1492,
     1492, 1505, 1505, 1506, 1492, 1506, 1492, 1506, 1492, 1492,
       90, 1492,   89, 1492,   93, 1492, 1507, 1492, 1492, 1492,

     1508, 1492, 1509, 1492, 1492, 1502, 1492, 1492, 1492, 1510,
     1492, 1492, 1511, 1492, 1492, 1492, 1492, 1492, 1512, 1499,
     1499, 1492, 1492, 1492, 1492, 1492, 1501, 1492, 1513, 1501,
     1501, 1514, 1492, 1492, 1492, 1492, 1503, 1492, 1503,   39,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1504, 1504, 1504, 1504, 1504,
     1504, 1501, 1503, 1492, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,

     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1492, 1492, 1505, 1515, 1505, 1505, 1505, 1492, 1515, 1515,
     1516, 1492, 1492, 1505, 1506, 1517, 1506, 1506, 1506, 1517,
     1517, 1492, 1506,   89,   90,   90, 1518,   93,   94,   93,
       89, 1519,   90, 1492,  253,   90,   89, 1518, 1518, 1518,
       94,   89,   93,   94,   93,   93, 1492, 1507, 1492, 1492,
     1508, 1509, 1492, 1492, 1492, 1510, 1492, 1492, 1511, 1492,
     1492, 1492, 1520, 1512, 1492, 1492, 1492, 1492, 1501, 1513,
     1514, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1521,
     1492, 1492, 1492, 1492, 1492, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1492, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1515, 1492, 1516, 1492, 1505,
     1517, 1506,   89, 1519, 1519,   89, 1492, 1522,  254,  254,
     1523, 1523,  253, 1518, 1518,  259,   93,   93, 1492, 1524,
     1520, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1521, 1525, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1526, 1519,   89, 1522,
     1522,   89, 1523,  253, 1518,   93, 1527, 1524, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1525, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,

     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1492, 1522, 1523, 1528, 1527, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1529, 1528, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1504, 1504, 1504, 1504, 1504, 1504,

     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1530, 1529,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1531,
     1530, 1492, 1492, 1504, 1504, 1504, 1504, 1504, 1504, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1532, 1531, 1492, 1504,
     1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1533, 1532,
     1492, 1504, 1504, 1504, 1504, 1534, 1533, 1492, 1504, 1504,
     1504, 1504, 1535, 1534, 1492, 1504, 1536, 1535, 1492, 1504,

     1537, 1536, 1492, 1504, 1538, 1537, 1492, 1539, 1538, 1492,
     1492, 1540, 1539, 1492, 1492, 1492, 1492, 1541, 1540, 1492,
     1492, 1492, 1542, 1541, 1492, 1492, 1492, 1543, 1542, 1492,
     1492, 1492, 1492, 1544, 1543, 1545, 1544, 1546, 1545, 1547,
     1546, 1548, 1547, 1549, 1548, 1550, 1549, 1551, 1550, 1552,
     1551, 1553, 1552, 1554, 1553, 1555, 1554, 1556, 1555, 1557,
     1556, 1558, 1557, 1559, 1558, 1560, 1559, 1561, 1560, 1562,
     1561, 1563, 1562, 1564, 1563, 1565, 1564, 1566, 1565, 1567,
     1566, 1568, 1567, 1569, 1568, 1570, 1569, 1571, 1570, 1572,
     1571, 1573, 1572, 1574, 1573, 1575, 1574, 1576, 1575, 1577,

     1576, 1578, 1577, 1579, 1578, 1580, 1579, 1581, 1580, 1582,
     1581, 1583, 1582, 1584, 1583, 1585, 1584, 1586, 1585, 1587,
     1586, 1588, 1587, 1589, 1588, 1590, 1589, 1591, 1590, 1592,
     1591, 1593, 1592, 1594, 1593, 1595, 1594, 1596, 1595, 1597,
     1596, 1598, 1597, 1599, 1598, 1600, 1599, 1601, 1600, 1602,
     1601, 1603, 1602, 1604, 1603, 1605, 1604, 1606, 1605, 1607,
     1606, 1608, 1607, 1609, 1608, 1610, 1609, 1611, 1610, 1612,
     1611, 1613, 1612, 1614, 1613, 1615, 1614, 1616, 1615, 1617,
     1616, 1618, 1617, 1619, 1618, 1620, 1619, 1621, 1620, 1622,
     1621, 1623, 1622, 1624, 1623, 1625, 1624, 1626, 1625, 1627,

     1626, 1628, 1627, 1629, 1628, 1630, 1629, 1631, 1630, 1632,
     1631, 1633, 1632, 1634, 1633, 1635, 1634, 1636, 1635, 1637,
     1636, 1638, 1637, 1639, 1638, 1640, 1639, 1641, 1640, 1642,
     1641, 1643, 1642, 1644, 1643, 1645, 1644, 1646, 1645, 1647,
     1646, 1648, 1647, 1649, 1648, 1650, 1649, 1651, 1650, 1652,
     1651, 1653, 1652, 1654, 1653, 1655, 1654, 1656, 1655, 1657,
     1656, 1658, 1657, 1659, 1658, 1660, 1659, 1661, 1660, 1662,
     1661, 1663, 1662, 1664, 1663, 1665, 1664, 1666, 1665, 1667,
     1666, 1668, 1667, 1669, 1668, 1670, 1669, 1671, 1670, 1672,
     1671, 1673, 1672, 1674, 1673, 1675, 1674, 1676, 1675, 1677,

     1676, 1678, 1677, 1679, 1678, 1680, 1679, 1681, 1680, 1682,
     1681, 1683, 1682, 1684, 1683, 1685, 1684, 1686, 1685, 1687,
     1686, 1688, 1687, 1689, 1688, 1690, 1689, 1691, 1690, 1692,
     1691, 1693, 1692, 1694, 1693, 1695, 1694, 1696, 1695, 1697,
     1696, 1698, 1697, 1699, 1698, 1700, 1699, 1701, 1700, 1702,
     1701, 1703, 1702, 1704, 1703, 1705, 1704, 1706, 1705, 1707,
     1706, 1708, 1707, 1709, 1708, 1710, 1709, 1711, 1710, 1712,
     1711, 1713, 1712, 1714, 1713, 1715, 1714, 1716, 1715, 1717,
     1716, 1718, 1717, 1719, 1718, 1720, 1719, 1721, 1720, 1722,
     1721, 1723, 1722, 1724, 1723, 1725, 1724, 1726, 1725, 1727,

     1726, 1728, 1727, 1729, 1728, 1730, 1729, 1731, 1730, 1732,
     1731, 1733, 1732, 1734, 1733, 1735, 1734, 1736, 1735, 1737,
     1736, 1738, 1737, 1739, 1738, 1740, 1739, 1741, 1740, 1742,
     1741, 1743, 1742, 1744, 1743, 1745, 1744, 1746, 1745, 1747,
     1746, 1748, 1747, 1749, 1748, 1750, 1749, 1751, 1750, 1752,
     1751, 1753, 1752, 1754, 1753, 1755, 1754, 1756, 1755, 1757,
     1756, 1758, 1757, 1759, 1758, 1760, 1759, 1761, 1760, 1762,
     1761, 1763, 1762, 1764, 1763, 1765, 1764, 1766, 1765, 1767,
     1766, 1768, 1767, 1769, 1768, 1770, 1769, 1771, 1770, 1772,
     1771, 1773, 1772, 1774, 1773, 1775, 1774, 1776, 1775, 1777,

     1776, 1778, 1777, 1779, 1778, 1780, 1779, 1781, 1780, 1782,
     1781, 1783, 1782, 1784, 1783, 1785, 1784, 1786, 1785, 1787,
     1786, 1788, 1787, 1789, 1788, 1790, 1789, 1791, 1790, 1792,
     1791, 1793, 1792, 1794, 1793, 1795, 1794, 1796, 1795, 1797,
     1796, 1798, 1797, 1799, 1798, 1800, 1799, 1801, 1800, 1802,
     1801, 1803, 1802, 1804, 1803, 1805, 1804, 1806, 1805, 1807,
     1806, 1808, 1807, 1809, 1808, 1810, 1809, 1811, 1810, 1812,
     1811, 1813, 1812, 1814, 1813, 1815, 1814, 1816, 1815, 1817,
     1816, 1818, 1817, 1819, 1818, 1820, 1819, 1821, 1820, 1822,
     1821, 1823, 1822, 1824, 1823, 1825, 1824, 1826, 1825, 1827,

     1826, 1828, 1827, 1829, 1828, 1830, 1829, 1831, 1830, 1832,
     1831, 1833, 1832, 1834, 1833, 1835, 1834, 1836, 1835, 1837,
     1836, 1838, 1837, 1839, 1838, 1840, 1839, 1841, 1840, 1842,
     1841, 1843, 1842, 1844, 1843, 1845, 1844, 1846, 1845, 1847,
     1846, 1848, 1847, 1849, 1848, 1850, 1849, 1851, 1850, 1852,
     1851, 1853, 1852, 1854, 1853, 1855, 1854, 1856, 1855, 1857,
     1856, 1858, 1857, 1859, 1858, 1860, 1859, 1861, 1860, 1862,
     1861, 1863, 1862, 1864, 1863, 1865, 1864, 1866, 1865, 1867,
     1866, 1868, 1867, 1869, 1868, 1870, 1869, 1871, 1870, 1872,
     1871, 1873, 1872, 1874, 1873, 1875, 1874, 1876, 1875, 1877,

     1876, 1878, 1877, 1879, 1878, 1880, 1879, 1881, 1880, 1882,
     1881, 1883, 1882, 1884, 1883, 1885, 1884, 1886, 1885, 1887,
     1886, 1888, 1887, 1889, 1888, 1890, 1889, 1891, 1890, 1892,
     1891, 1893, 1892, 1894, 1893, 1895, 1894, 1896, 1895, 1897,
     1896, 1898, 1897, 1899, 1898, 1900, 1899, 1901, 1900, 1902,
     1901, 1903, 1902, 1904, 1903, 1905, 1904, 1906, 1905, 1907,
     1906, 1908, 1907, 1909, 1908, 1910, 1909, 1911, 1910, 1912,
     1911, 1913, 1912, 1914, 1913, 1915, 1914, 1916, 1915, 1917,
     1916, 1918, 1917, 1919, 1918, 1920, 1919, 1921, 1920, 1492,
     1921,    0, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492
    } ;

static yyconst short int yy_nxt[9029] =
    {   0,
       30,   31,   31,   31,   32,   33,   34,   35,   36,   37,
       38,   39,   40,   41,   42,   40,   43,   44,   45,   46,
       47,   48,   40,   49,   50,   51,   52,   40,   30,   40,
       53,   54,   55,   56,   57,   58,   59,   60,   61,   62,
       63,   64,   63,   63,   65,   63,   66,   67,   68,   63,
       69,   70,   71,   72,   73,   74,   75,   63,   63,   76,
       77,   78,   80,   80,   81,   81,   85,   85,  133,  134,
      114,  115,  114,  115,  135,  153,  116, 1017,  116,  125,
      125,  125,  138,  154,  155,   82,   82,   86,   86,  136,
      138,   87,   87,  117,  118,  117,  118,  151,  156,  156,

      139,  158,  209,  157,  166,  210,  159,  152,  139,  167,
      168,  169,  160,  170,  171, 1019,   83,   83,   88,   88,
       89,   89,   90,   91,   89,   89,   89,   92,   89,   89,
       89,   89,   89,   89,   89,   89,   89,   89,   89,   89,
       89,   89,   89,   89,   89,   89,   89,   89,   93,   89,
       89,   94,   89,   94,   94,   94,   94,   94,   94,   94,
       94,   94,   94,   94,   94,   94,   94,   94,   94,   94,
       94,   94,   94,   94,   94,   94,   94,   94,   94,   95,
       89,   89,   96,   96,   96,   96,   96,   96,   96,   96,
       96,   96,   96,   96,   96,   96,   96,   96,   96,   96,

       96,   96,   96,   96,   96,   96,   96,   96,   96,   96,
       96,   96,   96,   97,   96,   97,   97,   97,   97,   97,
       97,   97,   97,   97,   97,   97,   97,   97,   97,   97,
       97,   97,   97,   97,   97,   97,   97,   97,   97,   97,
       97,   96,   96,   96,   99,   99,   99,   99,   99,   99,
       99,   99,   99,   99,   99,   99,   99,   99,   99,   99,
      100,   99,   99,   99,   99,   99,   99,   99,   99,   99,
       99,   99,   99,   99,   99,  101,   99,  101,  101,  101,
      101,  101,  101,  101,  101,  101,  101,  101,  101,  101,
      101,  101,  101,  101,  101,  101,  101,  101,  101,  101,

      101,  101,  101,   99,   99,   99,  102,  102,  102,  102,
      102,  102,  102,  102,  102,  102,  102,  102,  102,  102,
      102,  102,  102,  102,  102,  102,  102,  102,  102,  102,
      102,  102,  102,  102,  102,  102,  102,  103,  102,  103,
      103,  103,  103,  103,  103,  103,  103,  103,  103,  103,
      103,  103,  103,  103,  103,  103,  103,  103,  103,  103,
      103,  103,  103,  103,  103,  102,  102,  102,   30,  104,
      104,  104,  105,  105,  104,  106,  105,  105,  104,  105,
      105,  105,  105,  105,  105,  105,  105,  107,  108,  105,
      105,  105,  105,  105,  105,  105,  104,  109,  105,   63,

      105,   63,   63,   63,   63,   63,   63,   63,   63,   63,
       63,   63,   63,   63,   63,   63,   63,   63,   63,   63,
       63,   63,   63,   63,   63,   63,   63,  105,  105,  105,
      122,  128,  161,  129,  162,  162,  161, 1021,  162,  162,
      172,  173,  212,  178,  182,  213,  216,  186,  123,  183,
     1023,  217,  163,  189,  130,  179,  163,  190,  187,  180,
      181,  188,  184,  191,  198,  214,  221,  273,  273,  192,
      199,  164,  224,  124,  202,  215,  200,  236,  193,  194,
      195,  203,  204,  267,  267,  131,  140,  205,  196,  185,
      197,  275,  275,  225, 1492, 1025,  285,  328,  237,  125,

      125,  125,  222,  269,  274,  292,  293,  280,  280, 1492,
      295,  329, 1492,  280,  310,  311,  296, 1027,  141,  142,
      286,  143,  331,  144,  226,  332,  145,  314,  315,  238,
      280,  280,  146,  326,  327,  147,  148, 1492,  149,  227,
      227,  227,  227,  227,  228,  227,  229,  227,  227,  227,
      227,  227,  227,  227,  227,  227,  227,  227,  227,  227,
      227,  227,  227,  227,  227,  227,  227,  230,  227,  227,
      231,  227,  231,  231,  231,  231,  231,  231,  231,  231,
      231,  231,  231,  231,  231,  231,  231,  231,  231,  231,
      231,  231,  231,  231,  231,  231,  231,  231,  232,  227,

      227,  228,  233,  233,  138,  128,  339,  129,  156,  156,
     1029,  305,  305,  161,  352,  162,  162,  340,  355,  409,
      353,  356,  139,  237,  225,  346,  163,  242,  290,  163,
      306,  410,  306,  163,  316,  307,  307,  317,  367,  318,
     1031,  347,  348,  319,  320,  267,  267,  273,  273,  369,
      275,  275,  307,  307,  243,  234,  239,  239,  239,  239,
      239,  239,  239,  240,  239,  239,  239,  239,  239,  239,
      239,  239,  239,  239,  239,  239,  239,  239,  239,  239,
      239,  239,  239,  239,  241,  239,  239,  231,  242,  231,
      231,  231,  231,  231,  231,  231,  231,  231,  231,  231,

      231,  231,  231,  231,  231,  231,  231,  231,  231,  231,
      231,  231,  231,  231,  231,  232,  239,  239,  244,  244,
      245,  246,  244,  244,  244,  247,  244,  244,  244,  244,
      244,  244,  244,  244,  244,  244,  244,  244,  244,  244,
      244,  244,  244,  244,  244,  244,  248,  244,  244,  249,
      244,  249,  249,  249,  249,  249,  249,  249,  249,  249,
      249,  249,  249,  249,  249,  249,  249,  249,  249,  249,
      249,  249,  249,  249,  249,  249,  249,  250,  244,  244,
      251,  251,  245,  246,  251,  251,  251,  252,  251,  251,
      251,  251,  251,  251,  251,  251,  251,  251,  251,  251,

      251,  251,  251,  251,  251,  251,  251,  251,  253,  251,
      251,  254,  251,  254,  254,  254,  254,  254,  254,  254,
      254,  254,  254,  254,  254,  254,  254,  254,  254,  254,
      254,  254,  254,  254,  254,  254,  254,  254,  254,  255,
      251,  251,  257,  257,  245,  246,  257,  257,  257,  258,
      257,  257,  257,  257,  257,  257,  257,  257,  257,  257,
      257,  257,  257,  257,  257,  257,  257,  257,  257,  257,
      259,  257,  257,  231,  257,  231,  231,  231,  231,  231,
      231,  231,  231,  231,  231,  231,  231,  231,  231,  231,
      231,  231,  231,  231,  231,  231,  231,  231,  231,  231,

      231,  232,  257,  257,  244,  308,  308,  267,  267,  404,
      404,  404,  307,  307,  421,  422,  245,  246,  446,  308,
      308,  308,  308,  308,  308,  244,  447,  269,  244, 1033,
      244,  244,  244,  244,  244,  244,  244,  244,  244,  244,
      244,  244,  244,  244,  244,  244,  244,  244,  244,  244,
      244,  244,  244,  244,  244,  244,  244,  244,  244,  245,
      246,  244,  244,  244,  260,  244,  244,  244,  244,  244,
      244,  244,  244,  244,  244,  244,  261,  261,  244,  262,
      244,  244,  244,  244,  244,  263,  244,  244,  264,  244,
      264,  264,  264,  264,  264,  264,  264,  264,  264,  264,

      264,  264,  264,  264,  264,  264,  264,  264,  264,  264,
      264,  264,  264,  264,  264,  264,  265,  244,  244,  233,
      128,  128,  129, 1492,  128,  224,  129,  228,  228,  229,
     1492,  224,  228,  240,  366,  371, 1035,  245,  246, 1037,
      248, 1039,  258,  130,  130, 1041,  225,  130,  305,  305,
      230,  225,  225, 1043,  241,  230,  241,  228,  242,  366,
      242,  367,  228,  259, 1492,  476,  163,  404,  404,  404,
      547,  266,  369, 1045,  131,  131,  477,  226,  131, 1047,
      230,  548,  234,  226,  227,  225,  227,  227,  227,  227,
      227,  227,  227,  227,  227,  227,  227,  227,  227,  227,

      227,  227,  227,  227,  227,  227,  227,  227,  227,  227,
      227,  227,  227,  236, 1492,  236,  370, 1492,  245,  246,
      245,  246, 1049,  374,  371,  384,  245,  246,  428, 1051,
      429,  385, 1053,  430,  237,  237,  237,  585,  237,  242,
      389,  389,  242,  431,  375,  241,  259,  432,  586,  242,
      484,  485,  386, 1055,  389,  389,  389,  389,  389,  389,
      536,  536,  537,  484,  485,  238,  243,  238,  239,  372,
      239,  239,  239,  239,  239,  239,  239,  239,  239,  239,
      239,  239,  239,  239,  239,  239,  239,  239,  239,  239,
      239,  239,  239,  239,  239,  239,  239, 1492, 1492, 1492,

      260, 1492, 1492,  280,  280,  128, 1057,  129,  228,  280,
     1492, 1492, 1492, 1492,  245,  246, 1492, 1492,  248,  458,
      253,  263,  263,  248, 1059, 1061,  280,  280,  130,  308,
      308,  225,  237,  253,  245,  246,  242, 1063,  263,  460,
      375, 1492, 1065,  308,  308,  308,  308,  308,  308,  266,
      251,  383,  265,  387,  388,  541,  547,  592, 1067,  131,
      461,  585,  370,  372,  464, 1069,  542,  548,  593,  466,
     1071,  251,  586, 1073,  251, 1075,  251,  251,  251,  251,
      251,  251,  251,  251,  251,  251,  251,  251,  251,  251,
      251,  251,  251,  251,  251,  251,  251,  251,  251,  251,

      251,  251,  251,  376,  376,  377,  377,  376,  376,  376,
      378,  376,  376,  376,  376,  376,  376,  376,  376,  376,
      376,  376,  379,  379,  376,  380,  376,  376,  376,  376,
      376,  381,  376,  376,  379,  376,  379,  379,  379,  379,
      379,  379,  379,  379,  379,  379,  379,  379,  379,  379,
      379,  379,  379,  379,  379,  379,  379,  379,  379,  379,
      379,  379,  382,  376,  376,  245,  246,  245,  246,  245,
      246,  622, 1492,  626,  384,  621,  621,  621,  628,  592,
      622,  541,  623, 1077,  627, 1079, 1081, 1083, 1085,  629,
      593,  623,  542,  381,  257,  259,  257,  257,  257,  257,

      257,  257,  257,  257,  257,  257,  257,  257,  257,  257,
      257,  257,  257,  257,  257,  257,  257,  257,  257,  257,
      257,  257,  257,  289,  463,  289,  289,  289,  289,  289,
      289,  289,  289,  289,  289,  289,  289,  289,  289,  289,
      289,  289,  289,  289,  289,  289,  289,  289,  289,  289,
      289,  289,  245,  246,  245,  246,  389,  389,  476,  465,
     1087, 1089, 1091, 1093, 1095, 1097, 1099, 1101,  626,  477,
      389,  389,  389,  389,  389,  389,  621,  621,  621,  627,
      386,  373, 1103,  373,  373,  373,  373,  373,  373,  373,
      373,  373,  373,  373,  373,  373,  373,  373,  373,  373,

      373,  373,  373,  373,  373,  373,  373,  373,  373,  373,
      376,  376,  628,  376, 1105, 1107, 1109, 1111, 1113,  652,
     1115, 1117,  376,  629,  376,  376,  376,  376,  376,  376,
      376,  376,  376,  376,  376,  376,  376,  376,  376,  376,
      376,  376,  376,  376,  376,  376,  376,  376,  376,  376,
     1492, 1492,  476,  245,  246,  245,  246, 1492,  458,  541,
      532, 1492, 1119,  477, 1121, 1123, 1492,  245,  246, 1492,
      542,  248, 1492, 1125, 1492,  245,  246, 1127,  253,  375,
      465,  461,  263, 1129, 1131,  245,  246, 1133,  478, 1492,
      532, 1135, 1492,  381, 1492,  543,  653,  653,  653, 1137,

     1139,  386,  388,  245,  246,  245,  246, 1141, 1143,  464,
     1492,  461, 1145,  466, 1147, 1149, 1151, 1492, 1153, 1155,
      174, 1157, 1159, 1161,  533, 1163, 1165, 1167, 1169, 1171,
     1173,  381,  459, 1175,  459,  459,  459,  459,  459,  459,
      459,  459,  459,  459,  459,  459,  459,  459,  459,  459,
      459,  459,  459,  459,  459,  459,  459,  459,  459,  459,
      459, 1492,  533, 1492, 1177, 1492, 1179, 1492,  653,  653,
      653, 1492, 1492, 1492, 1181, 1183, 1492, 1185, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492,  174, 1187, 1492, 1189,  710,  710,  710, 1492,

     1191, 1193, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1195, 1492, 1197, 1492, 1492, 1492, 1199, 1492,  711,
     1492, 1492, 1492, 1492, 1492, 1492, 1201, 1492,  710,  710,
      710,  714,  714,  714, 1203,  715, 1205, 1492, 1492, 1492,
      716, 1207, 1492,  714,  714,  714, 1492,  715, 1492, 1209,
     1492,  711,  716, 1492, 1492, 1492, 1492, 1211,  732,  732,
      732,  732,  732,  732, 1213, 1492, 1215, 1492, 1217, 1492,
     1492, 1492, 1492, 1492, 1219, 1221, 1492, 1492,  717, 1223,
     1492, 1492,  733, 1492, 1492,  733, 1492, 1225, 1492, 1492,
      717, 1492, 1492, 1227, 1492, 1492, 1229, 1492, 1492, 1492,

     1492, 1231, 1492, 1492, 1233, 1235, 1492, 1492, 1492, 1237,
     1239, 1492, 1241, 1243, 1492, 1492, 1245, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1247, 1492, 1492, 1492, 1249, 1492,
     1492, 1492, 1492, 1251, 1492, 1492, 1492, 1253, 1492, 1492,
     1492, 1492, 1255, 1492, 1492, 1492, 1257, 1259, 1492, 1492,
     1492, 1261, 1492, 1492, 1492, 1492, 1263, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1265, 1492, 1492, 1492, 1267,
     1269, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1271, 1492, 1273, 1492,
     1492, 1275, 1492, 1277, 1492, 1492, 1492, 1279, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1281, 1283, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1285, 1492, 1492, 1492, 1287, 1492, 1492, 1492,
     1492, 1289, 1492, 1291, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1293,
     1295, 1492, 1492, 1492, 1297, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1299, 1492,
     1492, 1301, 1303, 1492, 1492, 1492, 1305, 1307, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1309, 1492, 1492, 1492, 1492,
     1311, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1313, 1492, 1315, 1492,
     1492, 1317, 1492, 1319, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1321,
     1492, 1492, 1492, 1492, 1323, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1325, 1492, 1492, 1492, 1327, 1329, 1492, 1492,
     1492, 1331, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1333, 1492, 1492, 1492, 1335,

     1337, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1339, 1492, 1341, 1492,
     1492, 1343, 1492, 1345, 1492, 1492, 1492, 1347, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1349, 1351, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1353, 1492, 1492, 1492, 1355, 1492, 1492, 1492,
     1492, 1357, 1492, 1359, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1361,
     1363, 1492, 1492, 1492, 1365, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1367, 1492,
     1492, 1369, 1371, 1492, 1492, 1492, 1373, 1375, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1377, 1492, 1492, 1492, 1492,
     1379, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1381, 1492, 1383, 1492,
     1492, 1385, 1492, 1387, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1389,
     1492, 1492, 1492, 1492, 1391, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1393, 1492, 1492, 1492, 1395, 1397, 1492, 1492,
     1492, 1399, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1401, 1492, 1492, 1492, 1403,
     1405, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1407, 1492, 1409, 1492,
     1492, 1411, 1492, 1413, 1492, 1492, 1492, 1415, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1417, 1419, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1421, 1492, 1492, 1492, 1423, 1492, 1492, 1492,

     1492, 1425, 1492, 1427, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1429,
     1431, 1492, 1492, 1492, 1433, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1435, 1492,
     1492, 1437, 1439, 1492, 1492, 1492, 1441, 1443, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1445, 1492, 1492, 1492, 1492,
     1447, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1449, 1492, 1451, 1492,
     1492, 1453, 1492, 1455, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1457,
     1492, 1492, 1492, 1492, 1459, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1461, 1492, 1492, 1492, 1463, 1465, 1492, 1492,
     1492, 1467, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1469, 1492, 1492, 1492, 1471,
     1473, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1475, 1492, 1477, 1492,
     1492, 1479, 1492, 1481, 1492, 1492, 1492, 1483, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1485, 1487, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1489, 1492, 1492, 1492, 1491, 1492, 1492, 1492,
     1492,  132, 1492,  531, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1015,
     1013, 1492, 1492, 1492, 1011, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1009, 1492,
     1492, 1007, 1005, 1492, 1492, 1492, 1003, 1001, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492,  999, 1492, 1492, 1492, 1492,

      997, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492,  995, 1492,  993, 1492,
     1492,  991, 1492,  989, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,  987,
     1492, 1492, 1492, 1492,  985, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492,  983, 1492, 1492, 1492,  981,  979, 1492, 1492,
     1492,  977, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492,  975, 1492, 1492, 1492,  973,
      971, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492,  969, 1492,  967, 1492,
     1492,  965, 1492,  963, 1492, 1492, 1492,  961, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492,  959,  957, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492,  955, 1492, 1492, 1492,  953, 1492, 1492, 1492,
     1492,  951, 1492,  949, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,  947,
      945, 1492, 1492, 1492,  943, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,  941, 1492,

     1492,  939,  937, 1492, 1492, 1492,  935,  933, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492,  931, 1492, 1492, 1492, 1492,
      929, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492,  927, 1492,  925, 1492,
     1492,  923, 1492,  921, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,  919,
     1492, 1492, 1492, 1492,  917, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492,  915, 1492, 1492, 1492,  913,  911, 1492, 1492,

     1492,  909, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492,  907, 1492, 1492, 1492,  905,
      903, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492,  901, 1492,  899, 1492,
     1492,  897, 1492,  895, 1492, 1492, 1492,  893, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492,  891,  889, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492,  887, 1492, 1492, 1492,  885, 1492, 1492, 1492,
     1492,  883, 1492,  881, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,  879,
      877, 1492, 1492, 1492,  875, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,  873, 1492,
     1492,  871,  869, 1492, 1492, 1492,  867,  865, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492,  863, 1492, 1492, 1492, 1492,
      861, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492,  859, 1492,  857, 1492,
     1492,  855, 1492,  853, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,  851,

     1492, 1492, 1492, 1492,  849, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492,  847, 1492, 1492, 1492,  845,  843, 1492, 1492,
     1492,  841, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492,  839, 1492, 1492, 1492,  837,
      835, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492,  833, 1492,  831, 1492,
     1492,  829, 1492,  827, 1492, 1492, 1492,  825, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492,  823,  821, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492,  819, 1492, 1492, 1492,  817, 1492, 1492, 1492,
     1492,  815, 1492,  813, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,  811,
      809, 1492, 1492, 1492,  807, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,  805, 1492,
     1492,  803,  801, 1492, 1492, 1492,  799,  797, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492,  795, 1492, 1492, 1492, 1492,
      793, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492,  791, 1492,  789, 1492,
     1492,  787, 1492,  785, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,  783,
     1492, 1492, 1492, 1492,  781, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492,  779, 1492, 1492, 1492,  777,  775, 1492, 1492,
     1492,  773, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492,  771, 1492, 1492, 1492,  769,
      767, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492,  765, 1492,  763, 1492,

     1492,  761, 1492,  759, 1492, 1492, 1492,  757, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492,  755,  753, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492,  751, 1492, 1492, 1492,  749, 1492, 1492, 1492,
     1492,  747, 1492,  745, 1492, 1492, 1492,  743, 1492, 1492,
     1492,  741, 1492,  739, 1492, 1492, 1492,  737, 1492,  727,
      727,  735,  731, 1492,  730,  729,  727, 1492,  726,  725,
      724,  722,  721, 1492,  720,  719,  713, 1492,  709,  707,
      706,  704,  703, 1492,   28,   28,   28,   28,   28,   28,

       28,   28,   28,   28,   28,   28,   79,   79,   79,   79,
       79,   79,   79,   79,   79,   79,   79,   79,   84,   84,
       84,   84,   84,   84,   84,   84,   84,   84,   84,   84,
       98,   98,   98,   98,   98,   98,   98,   98,   98,   98,
       98,   98,  110,  110,  110,  110,  110,  110,  110,  110,
      110,  110,  110,  110,  113,  113,  113,  113,  113,  113,
      113,  113,  113,  113,  113,  113,  119,  119,  119,  119,
      119,  119,  119,  119,  119,  119,  119,  119,  121,  121,
      121,  121,  121,  121,  121,  121,  702,  121,  121,  121,
      127,  127,  127,  127,  127,  127,  127,  127,  127,  127,

      127,  127,  137,  137,  137,  137,  137,  137,  137,  137,
      137,  137,  137,  137,  176,  700,  699,  176,  223,  223,
      223,  698,  223,  223,  223,  223,  223,  223,  223,  223,
      235,  235,  235,  235,  235,  235,  235,  235,  235,  235,
      696,  235,  268,  695,  694,  692,  268,  268,  691,  268,
      271,  690,  689,  271,  272,  688,  687,  272,  276,  276,
      276,  276,  685,  276,  276,  276,  276,  276,  276,  276,
      279,  279,  279,  279,  279,  279,  279,  279,  279,  279,
      279,  279,  283,  283,  283,  283,  283,  283,  283,  283,
      283,  283,  283,  283,  289,  289,  289,  289,  289,  289,

      289,  289,  289,  684,  289,  291,  683,  682,  291,  227,
      227,  227,  227,  227,  227,  227,  227,  227,  681,  227,
      368,  368,  680,  678,  368,  239,  239,  239,  239,  239,
      239,  239,  239,  239,  677,  239,  257,  257,  257,  257,
      257,  257,  257,  257,  257,  676,  257,  373,  373,  373,
      373,  373,  373,  373,  373,  373,  675,  373,  390,  390,
      390,  390,  390,  390,  390,  390,  390,  390,  390,  390,
      407,  674,  673,  672,  671,  670,  669,  668,  407,  459,
      459,  459,  459,  459,  459,  459,  459,  459,  666,  459,
      462,  462,  462,  462,  462,  462,  462,  462,  462,  462,

      462,  462,  467,  467,  467,  467,  467,  467,  467,  467,
      467,  467,  467,  467,  486,  665,  664,  663,  486,  662,
      661,  486,  534,  534,  534,  534,  534,  534,  534,  534,
      534,  534,  534,  534,  582,  582,  582,  582,  582,  582,
      582,  582,  582,  582,  582,  582,  619,  619,  619,  619,
      619,  619,  619,  619,  619,  619,  619,  619,  650,  650,
      650,  650,  650,  650,  650,  650,  650,  650,  650,  650,
      667,  667,  667,  667,  667,  667,  667,  667,  667,  667,
      667,  667,  679,  679,  679,  679,  679,  679,  679,  679,
      679,  679,  679,  679,  686,  686,  686,  686,  686,  686,

      686,  686,  686,  686,  686,  686,  693,  693,  693,  693,
      693,  693,  693,  693,  693,  693,  693,  693,  697,  697,
      697,  697,  697,  697,  697,  697,  697,  697,  697,  697,
      701,  701,  701,  701,  701,  701,  701,  701,  701,  701,
      701,  701,  705,  705,  705,  705,  705,  705,  705,  705,
      705,  705,  705,  705,  708,  708,  708,  708,  708,  708,
      708,  708,  708,  708,  708,  708,  712,  712,  712,  712,
      712,  712,  712,  712,  712,  712,  712,  712,  718,  718,
      718,  718,  718,  718,  718,  718,  718,  718,  718,  718,
      723,  723,  723,  723,  723,  723,  723,  723,  723,  723,

      723,  723,  728,  728,  728,  728,  728,  728,  728,  728,
      728,  728,  728,  728,  734,  734,  734,  734,  734,  734,
      734,  734,  734,  734,  734,  734,  736,  736,  736,  736,
      736,  736,  736,  736,  736,  736,  736,  736,  738,  738,
      738,  738,  738,  738,  738,  738,  738,  738,  738,  738,
      740,  740,  740,  740,  740,  740,  740,  740,  740,  740,
      740,  740,  742,  742,  742,  742,  742,  742,  742,  742,
      742,  742,  742,  742,  744,  744,  744,  744,  744,  744,
      744,  744,  744,  744,  744,  744,  746,  746,  746,  746,
      746,  746,  746,  746,  746,  746,  746,  746,  748,  748,

      748,  748,  748,  748,  748,  748,  748,  748,  748,  748,
      750,  750,  750,  750,  750,  750,  750,  750,  750,  750,
      750,  750,  752,  752,  752,  752,  752,  752,  752,  752,
      752,  752,  752,  752,  754,  754,  754,  754,  754,  754,
      754,  754,  754,  754,  754,  754,  756,  756,  756,  756,
      756,  756,  756,  756,  756,  756,  756,  756,  758,  758,
      758,  758,  758,  758,  758,  758,  758,  758,  758,  758,
      760,  760,  760,  760,  760,  760,  760,  760,  760,  760,
      760,  760,  762,  762,  762,  762,  762,  762,  762,  762,
      762,  762,  762,  762,  764,  764,  764,  764,  764,  764,

      764,  764,  764,  764,  764,  764,  766,  766,  766,  766,
      766,  766,  766,  766,  766,  766,  766,  766,  768,  768,
      768,  768,  768,  768,  768,  768,  768,  768,  768,  768,
      770,  770,  770,  770,  770,  770,  770,  770,  770,  770,
      770,  770,  772,  772,  772,  772,  772,  772,  772,  772,
      772,  772,  772,  772,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  776,  776,  776,  776,
      776,  776,  776,  776,  776,  776,  776,  776,  778,  778,
      778,  778,  778,  778,  778,  778,  778,  778,  778,  778,
      780,  780,  780,  780,  780,  780,  780,  780,  780,  780,

      780,  780,  782,  782,  782,  782,  782,  782,  782,  782,
      782,  782,  782,  782,  784,  784,  784,  784,  784,  784,
      784,  784,  784,  784,  784,  784,  786,  786,  786,  786,
      786,  786,  786,  786,  786,  786,  786,  786,  788,  788,
      788,  788,  788,  788,  788,  788,  788,  788,  788,  788,
      790,  790,  790,  790,  790,  790,  790,  790,  790,  790,
      790,  790,  792,  792,  792,  792,  792,  792,  792,  792,
      792,  792,  792,  792,  794,  794,  794,  794,  794,  794,
      794,  794,  794,  794,  794,  794,  796,  796,  796,  796,
      796,  796,  796,  796,  796,  796,  796,  796,  798,  798,

      798,  798,  798,  798,  798,  798,  798,  798,  798,  798,
      800,  800,  800,  800,  800,  800,  800,  800,  800,  800,
      800,  800,  802,  802,  802,  802,  802,  802,  802,  802,
      802,  802,  802,  802,  804,  804,  804,  804,  804,  804,
      804,  804,  804,  804,  804,  804,  806,  806,  806,  806,
      806,  806,  806,  806,  806,  806,  806,  806,  808,  808,
      808,  808,  808,  808,  808,  808,  808,  808,  808,  808,
      810,  810,  810,  810,  810,  810,  810,  810,  810,  810,
      810,  810,  812,  812,  812,  812,  812,  812,  812,  812,
      812,  812,  812,  812,  814,  814,  814,  814,  814,  814,

      814,  814,  814,  814,  814,  814,  816,  816,  816,  816,
      816,  816,  816,  816,  816,  816,  816,  816,  818,  818,
      818,  818,  818,  818,  818,  818,  818,  818,  818,  818,
      820,  820,  820,  820,  820,  820,  820,  820,  820,  820,
      820,  820,  822,  822,  822,  822,  822,  822,  822,  822,
      822,  822,  822,  822,  824,  824,  824,  824,  824,  824,
      824,  824,  824,  824,  824,  824,  826,  826,  826,  826,
      826,  826,  826,  826,  826,  826,  826,  826,  828,  828,
      828,  828,  828,  828,  828,  828,  828,  828,  828,  828,
      830,  830,  830,  830,  830,  830,  830,  830,  830,  830,

      830,  830,  832,  832,  832,  832,  832,  832,  832,  832,
      832,  832,  832,  832,  834,  834,  834,  834,  834,  834,
      834,  834,  834,  834,  834,  834,  836,  836,  836,  836,
      836,  836,  836,  836,  836,  836,  836,  836,  838,  838,
      838,  838,  838,  838,  838,  838,  838,  838,  838,  838,
      840,  840,  840,  840,  840,  840,  840,  840,  840,  840,
      840,  840,  842,  842,  842,  842,  842,  842,  842,  842,
      842,  842,  842,  842,  844,  844,  844,  844,  844,  844,
      844,  844,  844,  844,  844,  844,  846,  846,  846,  846,
      846,  846,  846,  846,  846,  846,  846,  846,  848,  848,

      848,  848,  848,  848,  848,  848,  848,  848,  848,  848,
      850,  850,  850,  850,  850,  850,  850,  850,  850,  850,
      850,  850,  852,  852,  852,  852,  852,  852,  852,  852,
      852,  852,  852,  852,  854,  854,  854,  854,  854,  854,
      854,  854,  854,  854,  854,  854,  856,  856,  856,  856,
      856,  856,  856,  856,  856,  856,  856,  856,  858,  858,
      858,  858,  858,  858,  858,  858,  858,  858,  858,  858,
      860,  860,  860,  860,  860,  860,  860,  860,  860,  860,
      860,  860,  862,  862,  862,  862,  862,  862,  862,  862,
      862,  862,  862,  862,  864,  864,  864,  864,  864,  864,

      864,  864,  864,  864,  864,  864,  866,  866,  866,  866,
      866,  866,  866,  866,  866,  866,  866,  866,  868,  868,
      868,  868,  868,  868,  868,  868,  868,  868,  868,  868,
      870,  870,  870,  870,  870,  870,  870,  870,  870,  870,
      870,  870,  872,  872,  872,  872,  872,  872,  872,  872,
      872,  872,  872,  872,  874,  874,  874,  874,  874,  874,
      874,  874,  874,  874,  874,  874,  876,  876,  876,  876,
      876,  876,  876,  876,  876,  876,  876,  876,  878,  878,
      878,  878,  878,  878,  878,  878,  878,  878,  878,  878,
      880,  880,  880,  880,  880,  880,  880,  880,  880,  880,

      880,  880,  882,  882,  882,  882,  882,  882,  882,  882,
      882,  882,  882,  882,  884,  884,  884,  884,  884,  884,
      884,  884,  884,  884,  884,  884,  886,  886,  886,  886,
      886,  886,  886,  886,  886,  886,  886,  886,  888,  888,
      888,  888,  888,  888,  888,  888,  888,  888,  888,  888,
      890,  890,  890,  890,  890,  890,  890,  890,  890,  890,
      890,  890,  892,  892,  892,  892,  892,  892,  892,  892,
      892,  892,  892,  892,  894,  894,  894,  894,  894,  894,
      894,  894,  894,  894,  894,  894,  896,  896,  896,  896,
      896,  896,  896,  896,  896,  896,  896,  896,  898,  898,

      898,  898,  898,  898,  898,  898,  898,  898,  898,  898,
      900,  900,  900,  900,  900,  900,  900,  900,  900,  900,
      900,  900,  902,  902,  902,  902,  902,  902,  902,  902,
      902,  902,  902,  902,  904,  904,  904,  904,  904,  904,
      904,  904,  904,  904,  904,  904,  906,  906,  906,  906,
      906,  906,  906,  906,  906,  906,  906,  906,  908,  908,
      908,  908,  908,  908,  908,  908,  908,  908,  908,  908,
      910,  910,  910,  910,  910,  910,  910,  910,  910,  910,
      910,  910,  912,  912,  912,  912,  912,  912,  912,  912,
      912,  912,  912,  912,  914,  914,  914,  914,  914,  914,

      914,  914,  914,  914,  914,  914,  916,  916,  916,  916,
      916,  916,  916,  916,  916,  916,  916,  916,  918,  918,
      918,  918,  918,  918,  918,  918,  918,  918,  918,  918,
      920,  920,  920,  920,  920,  920,  920,  920,  920,  920,
      920,  920,  922,  922,  922,  922,  922,  922,  922,  922,
      922,  922,  922,  922,  924,  924,  924,  924,  924,  924,
      924,  924,  924,  924,  924,  924,  926,  926,  926,  926,
      926,  926,  926,  926,  926,  926,  926,  926,  928,  928,
      928,  928,  928,  928,  928,  928,  928,  928,  928,  928,
      930,  930,  930,  930,  930,  930,  930,  930,  930,  930,

      930,  930,  932,  932,  932,  932,  932,  932,  932,  932,
      932,  932,  932,  932,  934,  934,  934,  934,  934,  934,
      934,  934,  934,  934,  934,  934,  936,  936,  936,  936,
      936,  936,  936,  936,  936,  936,  936,  936,  938,  938,
      938,  938,  938,  938,  938,  938,  938,  938,  938,  938,
      940,  940,  940,  940,  940,  940,  940,  940,  940,  940,
      940,  940,  942,  942,  942,  942,  942,  942,  942,  942,
      942,  942,  942,  942,  944,  944,  944,  944,  944,  944,
      944,  944,  944,  944,  944,  944,  946,  946,  946,  946,
      946,  946,  946,  946,  946,  946,  946,  946,  948,  948,

      948,  948,  948,  948,  948,  948,  948,  948,  948,  948,
      950,  950,  950,  950,  950,  950,  950,  950,  950,  950,
      950,  950,  952,  952,  952,  952,  952,  952,  952,  952,
      952,  952,  952,  952,  954,  954,  954,  954,  954,  954,
      954,  954,  954,  954,  954,  954,  956,  956,  956,  956,
      956,  956,  956,  956,  956,  956,  956,  956,  958,  958,
      958,  958,  958,  958,  958,  958,  958,  958,  958,  958,
      960,  960,  960,  960,  960,  960,  960,  960,  960,  960,
      960,  960,  962,  962,  962,  962,  962,  962,  962,  962,
      962,  962,  962,  962,  964,  964,  964,  964,  964,  964,

      964,  964,  964,  964,  964,  964,  966,  966,  966,  966,
      966,  966,  966,  966,  966,  966,  966,  966,  968,  968,
      968,  968,  968,  968,  968,  968,  968,  968,  968,  968,
      970,  970,  970,  970,  970,  970,  970,  970,  970,  970,
      970,  970,  972,  972,  972,  972,  972,  972,  972,  972,
      972,  972,  972,  972,  974,  974,  974,  974,  974,  974,
      974,  974,  974,  974,  974,  974,  976,  976,  976,  976,
      976,  976,  976,  976,  976,  976,  976,  976,  978,  978,
      978,  978,  978,  978,  978,  978,  978,  978,  978,  978,
      980,  980,  980,  980,  980,  980,  980,  980,  980,  980,

      980,  980,  982,  982,  982,  982,  982,  982,  982,  982,
      982,  982,  982,  982,  984,  984,  984,  984,  984,  984,
      984,  984,  984,  984,  984,  984,  986,  986,  986,  986,
      986,  986,  986,  986,  986,  986,  986,  986,  988,  988,
      988,  988,  988,  988,  988,  988,  988,  988,  988,  988,
      990,  990,  990,  990,  990,  990,  990,  990,  990,  990,
      990,  990,  992,  992,  992,  992,  992,  992,  992,  992,
      992,  992,  992,  992,  994,  994,  994,  994,  994,  994,
      994,  994,  994,  994,  994,  994,  996,  996,  996,  996,
      996,  996,  996,  996,  996,  996,  996,  996,  998,  998,

      998,  998,  998,  998,  998,  998,  998,  998,  998,  998,
     1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000,
     1000, 1000, 1002, 1002, 1002, 1002, 1002, 1002, 1002, 1002,
     1002, 1002, 1002, 1002, 1004, 1004, 1004, 1004, 1004, 1004,
     1004, 1004, 1004, 1004, 1004, 1004, 1006, 1006, 1006, 1006,
     1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1008, 1008,
     1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008, 1008,
     1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010, 1010,
     1010, 1010, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012,
     1012, 1012, 1012, 1012, 1014, 1014, 1014, 1014, 1014, 1014,

     1014, 1014, 1014, 1014, 1014, 1014, 1016, 1016, 1016, 1016,
     1016, 1016, 1016, 1016, 1016, 1016, 1016, 1016, 1018, 1018,
     1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018, 1018,
     1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020, 1020,
     1020, 1020, 1022, 1022, 1022, 1022, 1022, 1022, 1022, 1022,
     1022, 1022, 1022, 1022, 1024, 1024, 1024, 1024, 1024, 1024,
     1024, 1024, 1024, 1024, 1024, 1024, 1026, 1026, 1026, 1026,
     1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1028, 1028,
     1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028, 1028,
     1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030, 1030,

     1030, 1030, 1032, 1032, 1032, 1032, 1032, 1032, 1032, 1032,
     1032, 1032, 1032, 1032, 1034, 1034, 1034, 1034, 1034, 1034,
     1034, 1034, 1034, 1034, 1034, 1034, 1036, 1036, 1036, 1036,
     1036, 1036, 1036, 1036, 1036, 1036, 1036, 1036, 1038, 1038,
     1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038, 1038,
     1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040, 1040,
     1040, 1040, 1042, 1042, 1042, 1042, 1042, 1042, 1042, 1042,
     1042, 1042, 1042, 1042, 1044, 1044, 1044, 1044, 1044, 1044,
     1044, 1044, 1044, 1044, 1044, 1044, 1046, 1046, 1046, 1046,
     1046, 1046, 1046, 1046, 1046, 1046, 1046, 1046, 1048, 1048,

     1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048,
     1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050, 1050,
     1050, 1050, 1052, 1052, 1052, 1052, 1052, 1052, 1052, 1052,
     1052, 1052, 1052, 1052, 1054, 1054, 1054, 1054, 1054, 1054,
     1054, 1054, 1054, 1054, 1054, 1054, 1056, 1056, 1056, 1056,
     1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1058, 1058,
     1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058,
     1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060,
     1060, 1060, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1062,
     1062, 1062, 1062, 1062, 1064, 1064, 1064, 1064, 1064, 1064,

     1064, 1064, 1064, 1064, 1064, 1064, 1066, 1066, 1066, 1066,
     1066, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 1068, 1068,
     1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068,
     1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070,
     1070, 1070, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072,
     1072, 1072, 1072, 1072, 1074, 1074, 1074, 1074, 1074, 1074,
     1074, 1074, 1074, 1074, 1074, 1074, 1076, 1076, 1076, 1076,
     1076, 1076, 1076, 1076, 1076, 1076, 1076, 1076, 1078, 1078,
     1078, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1078, 1078,
     1080, 1080, 1080, 1080, 1080, 1080, 1080, 1080, 1080, 1080,

     1080, 1080, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082,
     1082, 1082, 1082, 1082, 1084, 1084, 1084, 1084, 1084, 1084,
     1084, 1084, 1084, 1084, 1084, 1084, 1086, 1086, 1086, 1086,
     1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1088, 1088,
     1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088,
     1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090,
     1090, 1090, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092,
     1092, 1092, 1092, 1092, 1094, 1094, 1094, 1094, 1094, 1094,
     1094, 1094, 1094, 1094, 1094, 1094, 1096, 1096, 1096, 1096,
     1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1098, 1098,

     1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098,
     1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100,
     1100, 1100, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102,
     1102, 1102, 1102, 1102, 1104, 1104, 1104, 1104, 1104, 1104,
     1104, 1104, 1104, 1104, 1104, 1104, 1106, 1106, 1106, 1106,
     1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1108, 1108,
     1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108,
     1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110,
     1110, 1110, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112,
     1112, 1112, 1112, 1112, 1114, 1114, 1114, 1114, 1114, 1114,

     1114, 1114, 1114, 1114, 1114, 1114, 1116, 1116, 1116, 1116,
     1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1118, 1118,
     1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118,
     1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120,
     1120, 1120, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122,
     1122, 1122, 1122, 1122, 1124, 1124, 1124, 1124, 1124, 1124,
     1124, 1124, 1124, 1124, 1124, 1124, 1126, 1126, 1126, 1126,
     1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1128, 1128,
     1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128,
     1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130,

     1130, 1130, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132,
     1132, 1132, 1132, 1132, 1134, 1134, 1134, 1134, 1134, 1134,
     1134, 1134, 1134, 1134, 1134, 1134, 1136, 1136, 1136, 1136,
     1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1138, 1138,
     1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138,
     1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140,
     1140, 1140, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142,
     1142, 1142, 1142, 1142, 1144, 1144, 1144, 1144, 1144, 1144,
     1144, 1144, 1144, 1144, 1144, 1144, 1146, 1146, 1146, 1146,
     1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1148, 1148,

     1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148,
     1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150,
     1150, 1150, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152,
     1152, 1152, 1152, 1152, 1154, 1154, 1154, 1154, 1154, 1154,
     1154, 1154, 1154, 1154, 1154, 1154, 1156, 1156, 1156, 1156,
     1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1158, 1158,
     1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158,
     1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160,
     1160, 1160, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162,
     1162, 1162, 1162, 1162, 1164, 1164, 1164, 1164, 1164, 1164,

     1164, 1164, 1164, 1164, 1164, 1164, 1166, 1166, 1166, 1166,
     1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1168, 1168,
     1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168,
     1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170,
     1170, 1170, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172,
     1172, 1172, 1172, 1172, 1174, 1174, 1174, 1174, 1174, 1174,
     1174, 1174, 1174, 1174, 1174, 1174, 1176, 1176, 1176, 1176,
     1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1178, 1178,
     1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178,
     1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180,

     1180, 1180, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182,
     1182, 1182, 1182, 1182, 1184, 1184, 1184, 1184, 1184, 1184,
     1184, 1184, 1184, 1184, 1184, 1184, 1186, 1186, 1186, 1186,
     1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1188, 1188,
     1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188,
     1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190,
     1190, 1190, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192,
     1192, 1192, 1192, 1192, 1194, 1194, 1194, 1194, 1194, 1194,
     1194, 1194, 1194, 1194, 1194, 1194, 1196, 1196, 1196, 1196,
     1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1198, 1198,

     1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198,
     1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200,
     1200, 1200, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202,
     1202, 1202, 1202, 1202, 1204, 1204, 1204, 1204, 1204, 1204,
     1204, 1204, 1204, 1204, 1204, 1204, 1206, 1206, 1206, 1206,
     1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1208, 1208,
     1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208,
     1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210,
     1210, 1210, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212,
     1212, 1212, 1212, 1212, 1214, 1214, 1214, 1214, 1214, 1214,

     1214, 1214, 1214, 1214, 1214, 1214, 1216, 1216, 1216, 1216,
     1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1218, 1218,
     1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218,
     1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220,
     1220, 1220, 1222, 1222, 1222, 1222, 1222, 1222, 1222, 1222,
     1222, 1222, 1222, 1222, 1224, 1224, 1224, 1224, 1224, 1224,
     1224, 1224, 1224, 1224, 1224, 1224, 1226, 1226, 1226, 1226,
     1226, 1226, 1226, 1226, 1226, 1226, 1226, 1226, 1228, 1228,
     1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228, 1228,
     1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230, 1230,

     1230, 1230, 1232, 1232, 1232, 1232, 1232, 1232, 1232, 1232,
     1232, 1232, 1232, 1232, 1234, 1234, 1234, 1234, 1234, 1234,
     1234, 1234, 1234, 1234, 1234, 1234, 1236, 1236, 1236, 1236,
     1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1238, 1238,
     1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238, 1238,
     1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240,
     1240, 1240, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242,
     1242, 1242, 1242, 1242, 1244, 1244, 1244, 1244, 1244, 1244,
     1244, 1244, 1244, 1244, 1244, 1244, 1246, 1246, 1246, 1246,
     1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1248, 1248,

     1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248,
     1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250,
     1250, 1250, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252,
     1252, 1252, 1252, 1252, 1254, 1254, 1254, 1254, 1254, 1254,
     1254, 1254, 1254, 1254, 1254, 1254, 1256, 1256, 1256, 1256,
     1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1258, 1258,
     1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258,
     1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260,
     1260, 1260, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262,
     1262, 1262, 1262, 1262, 1264, 1264, 1264, 1264, 1264, 1264,

     1264, 1264, 1264, 1264, 1264, 1264, 1266, 1266, 1266, 1266,
     1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1268, 1268,
     1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268,
     1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270,
     1270, 1270, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272,
     1272, 1272, 1272, 1272, 1274, 1274, 1274, 1274, 1274, 1274,
     1274, 1274, 1274, 1274, 1274, 1274, 1276, 1276, 1276, 1276,
     1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1278, 1278,
     1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278,
     1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280,

     1280, 1280, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282,
     1282, 1282, 1282, 1282, 1284, 1284, 1284, 1284, 1284, 1284,
     1284, 1284, 1284, 1284, 1284, 1284, 1286, 1286, 1286, 1286,
     1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1288, 1288,
     1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288,
     1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290,
     1290, 1290, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292,
     1292, 1292, 1292, 1292, 1294, 1294, 1294, 1294, 1294, 1294,
     1294, 1294, 1294, 1294, 1294, 1294, 1296, 1296, 1296, 1296,
     1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1298, 1298,

     1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298,
     1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300,
     1300, 1300, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302,
     1302, 1302, 1302, 1302, 1304, 1304, 1304, 1304, 1304, 1304,
     1304, 1304, 1304, 1304, 1304, 1304, 1306, 1306, 1306, 1306,
     1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1308, 1308,
     1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308,
     1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310, 1310,
     1310, 1310, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312,
     1312, 1312, 1312, 1312, 1314, 1314, 1314, 1314, 1314, 1314,

     1314, 1314, 1314, 1314, 1314, 1314, 1316, 1316, 1316, 1316,
     1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1318, 1318,
     1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318,
     1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320,
     1320, 1320, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322,
     1322, 1322, 1322, 1322, 1324, 1324, 1324, 1324, 1324, 1324,
     1324, 1324, 1324, 1324, 1324, 1324, 1326, 1326, 1326, 1326,
     1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1328, 1328,
     1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328,
     1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330,

     1330, 1330, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332,
     1332, 1332, 1332, 1332, 1334, 1334, 1334, 1334, 1334, 1334,
     1334, 1334, 1334, 1334, 1334, 1334, 1336, 1336, 1336, 1336,
     1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1338, 1338,
     1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338,
     1340, 1340, 1340, 1340, 1340, 1340, 1340, 1340, 1340, 1340,
     1340, 1340, 1342, 1342, 1342, 1342, 1342, 1342, 1342, 1342,
     1342, 1342, 1342, 1342, 1344, 1344, 1344, 1344, 1344, 1344,
     1344, 1344, 1344, 1344, 1344, 1344, 1346, 1346, 1346, 1346,
     1346, 1346, 1346, 1346, 1346, 1346, 1346, 1346, 1348, 1348,

     1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348, 1348,
     1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1350,
     1350, 1350, 1352, 1352, 1352, 1352, 1352, 1352, 1352, 1352,
     1352, 1352, 1352, 1352, 1354, 1354, 1354, 1354, 1354, 1354,
     1354, 1354, 1354, 1354, 1354, 1354, 1356, 1356, 1356, 1356,
     1356, 1356, 1356, 1356, 1356, 1356, 1356, 1356, 1358, 1358,
     1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1358,
     1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 1360,
     1360, 1360, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362,
     1362, 1362, 1362, 1362, 1364, 1364, 1364, 1364, 1364, 1364,

     1364, 1364, 1364, 1364, 1364, 1364, 1366, 1366, 1366, 1366,
     1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1368, 1368,
     1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368,
     1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370,
     1370, 1370, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372,
     1372, 1372, 1372, 1372, 1374, 1374, 1374, 1374, 1374, 1374,
     1374, 1374, 1374, 1374, 1374, 1374, 1376, 1376, 1376, 1376,
     1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1378, 1378,
     1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378,
     1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380,

     1380, 1380, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382,
     1382, 1382, 1382, 1382, 1384, 1384, 1384, 1384, 1384, 1384,
     1384, 1384, 1384, 1384, 1384, 1384, 1386, 1386, 1386, 1386,
     1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1388, 1388,
     1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388,
     1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390,
     1390, 1390, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392,
     1392, 1392, 1392, 1392, 1394, 1394, 1394, 1394, 1394, 1394,
     1394, 1394, 1394, 1394, 1394, 1394, 1396, 1396, 1396, 1396,
     1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1398, 1398,

     1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398,
     1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400,
     1400, 1400, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402,
     1402, 1402, 1402, 1402, 1404, 1404, 1404, 1404, 1404, 1404,
     1404, 1404, 1404, 1404, 1404, 1404, 1406, 1406, 1406, 1406,
     1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1408, 1408,
     1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408,
     1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410,
     1410, 1410, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412,
     1412, 1412, 1412, 1412, 1414, 1414, 1414, 1414, 1414, 1414,

     1414, 1414, 1414, 1414, 1414, 1414, 1416, 1416, 1416, 1416,
     1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1418, 1418,
     1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418,
     1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420,
     1420, 1420, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422,
     1422, 1422, 1422, 1422, 1424, 1424, 1424, 1424, 1424, 1424,
     1424, 1424, 1424, 1424, 1424, 1424, 1426, 1426, 1426, 1426,
     1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1428, 1428,
     1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428,
     1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430,

     1430, 1430, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432,
     1432, 1432, 1432, 1432, 1434, 1434, 1434, 1434, 1434, 1434,
     1434, 1434, 1434, 1434, 1434, 1434, 1436, 1436, 1436, 1436,
     1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1438, 1438,
     1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438,
     1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440,
     1440, 1440, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442,
     1442, 1442, 1442, 1442, 1444, 1444, 1444, 1444, 1444, 1444,
     1444, 1444, 1444, 1444, 1444, 1444, 1446, 1446, 1446, 1446,
     1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1448, 1448,

     1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448,
     1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450,
     1450, 1450, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452,
     1452, 1452, 1452, 1452, 1454, 1454, 1454, 1454, 1454, 1454,
     1454, 1454, 1454, 1454, 1454, 1454, 1456, 1456, 1456, 1456,
     1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1458, 1458,
     1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458,
     1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460,
     1460, 1460, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462,
     1462, 1462, 1462, 1462, 1464, 1464, 1464, 1464, 1464, 1464,

     1464, 1464, 1464, 1464, 1464, 1464, 1466, 1466, 1466, 1466,
     1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1468, 1468,
     1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468,
     1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470,
     1470, 1470, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472,
     1472, 1472, 1472, 1472, 1474, 1474, 1474, 1474, 1474, 1474,
     1474, 1474, 1474, 1474, 1474, 1474, 1476, 1476, 1476, 1476,
     1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1478, 1478,
     1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478,
     1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480,

     1480, 1480, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482,
     1482, 1482, 1482, 1482, 1484, 1484, 1484, 1484, 1484, 1484,
     1484, 1484, 1484, 1484, 1484, 1484, 1486, 1486, 1486, 1486,
     1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1488, 1488,
     1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488,
     1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490,
     1490, 1490,  660,  659,  658,  657,  656,  655,  654,  651,
      649,  648,  647,  646,  645,  644,  643,  642,  641,  640,
      639,  638,  637,  636,  635,  634,  633,  632,  631,  630,
      625,  624,  620,  618,  617,  616,  615,  614,  613,  612,

      611,  610,  609,  608,  607,  606,  605,  604,  603,  602,
      601,  600,  599,  598,  597,  596,  595,  594,  591,  590,
      589,  480,  588,  587,  584,  536,  583,  581,  580,  579,
      578,  577,  576,  575,  574,  573,  572,  571,  570,  569,
      568,  567,  566,  565,  564,  563,  562,  561,  560,  559,
      558,  557,  556,  555,  554,  553,  552,  484,  551,  550,
      549,  546,  545,  480,  544,  540,  539,  538,  535,  530,
      529,  528,  527,  526,  525,  524,  523,  522,  521,  520,
      519,  518,  517,  516,  515,  514,  513,  512,  511,  510,
      509,  508,  507,  506,  505,  504,  503,  502,  501,  500,

      499,  498,  497,  496,  495,  494,  493,  492,  491,  490,
      489,  488,  487,  406,  483,  482,  481,  480,  479,  475,
      474,  473,  472,  471,  470,  469,  468,  457,  456,  455,
      454,  453,  452,  451,  450,  449,  448,  445,  444,  443,
      442,  441,  440,  439,  438,  437,  436,  435,  434,  433,
      427,  426,  425,  424,  423,  420,  419,  418,  417,  416,
      310,  415,  414,  413,  412,  411,  408,  314,  406,  405,
      403,  402,  401,  400,  399,  398,  397,  396,  395,  394,
      292,  393,  392,  391,  256,  235,  223,  365,  364,  363,
      362,  361,  360,  359,  358,  357,  354,  351,  350,  349,

      345,  344,  343,  342,  341,  338,  337,  336,  335,  334,
      333,  330,  325,  324,  323,  322,  321,  313,  312,  309,
      304,  303,  302,  301,  300,  299,  298,  297,  294,  288,
      287,  285,  120,  284,  282,  282,  281,  278,  277,  270,
      256,  235,  223,  220,  219,  218,  211,  208,  207,  206,
      201,  177,  175,  174,  165,  150,  126,  120, 1492,  112,
      112,  111,  111,   29,   29,   27, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492
    } ;

static yyconst short int yy_chk[9029] =
    {   0,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    5,    6,    5,    6,    7,    8,   36,   36,
       25,   25,   26,   26,   37,   43,   25, 1014,   26,   31,
       31,   31,   38,   43,   43,    5,    6,    7,    8,   37,
      137,    7,    8,   25,   25,   26,   26,   42,   44,   44,

       38,   45,   68,   44,   49,   68,   45,   42,  137,   49,
       49,   49,   45,   50,   50, 1016,    5,    6,    7,    8,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
        9,    9,   11,   11,   11,   11,   11,   11,   11,   11,
       11,   11,   11,   11,   11,   11,   11,   11,   11,   11,

       11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
       11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
       11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
       11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
       11,   11,   11,   11,   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,   17,   17,   17,   17,
       17,   17,   17,   17,   17,   17,   17,   17,   17,   17,
       17,   17,   17,   17,   17,   17,   17,   17,   17,   17,
       17,   17,   17,   17,   17,   17,   17,   17,   17,   17,
       17,   17,   17,   17,   17,   17,   17,   17,   17,   17,
       17,   17,   17,   17,   17,   17,   17,   17,   17,   17,
       17,   17,   17,   17,   17,   17,   17,   17,   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,
       29,   33,   46,   33,   46,   46,   47, 1018,   47,   47,
       51,   51,   70,   56,   57,   70,   72,   58,   29,   57,
     1020,   72,   46,   59,   33,   56,   47,   59,   58,   56,
       56,   58,   57,   59,   61,   71,   77,  107,  107,   60,
       61,   46,   79,   29,   64,   71,   61,   84,   60,   60,
       60,   64,   64,   97,   97,   33,   39,   64,   60,   57,
       60,  108,  108,   79,  120, 1022,  123,  187,   84,  125,

      125,  125,   77,   97,  107,  134,  134,  113,  113,  120,
      142,  187,  120,  113,  167,  167,  142, 1024,   39,   39,
      123,   39,  189,   39,   79,  189,   39,  174,  174,   84,
      113,  113,   39,  186,  186,   39,   39,  120,   39,   81,
       81,   81,   81,   81,   81,   81,   81,   81,   81,   81,
       81,   81,   81,   81,   81,   81,   81,   81,   81,   81,
       81,   81,   81,   81,   81,   81,   81,   81,   81,   81,
       81,   81,   81,   81,   81,   81,   81,   81,   81,   81,
       81,   81,   81,   81,   81,   81,   81,   81,   81,   81,
       81,   81,   81,   81,   81,   81,   81,   81,   81,   81,

       81,   83,   88,   83,  183,  129,  197,  129,  156,  156,
     1026,  161,  161,  162,  209,  162,  162,  197,  211,  317,
      209,  211,  183,   88,   83,  204,  156,   88,  129,  161,
      163,  317,  163,  162,  177,  163,  163,  177,  231,  177,
     1028,  204,  204,  177,  177,  269,  269,  273,  273,  231,
      275,  275,  306,  306,   88,   83,   85,   85,   85,   85,
       85,   85,   85,   85,   85,   85,   85,   85,   85,   85,
       85,   85,   85,   85,   85,   85,   85,   85,   85,   85,
       85,   85,   85,   85,   85,   85,   85,   85,   85,   85,
       85,   85,   85,   85,   85,   85,   85,   85,   85,   85,

       85,   85,   85,   85,   85,   85,   85,   85,   85,   85,
       85,   85,   85,   85,   85,   85,   85,   85,   89,   89,
       89,   89,   89,   89,   89,   89,   89,   89,   89,   89,
       89,   89,   89,   89,   89,   89,   89,   89,   89,   89,
       89,   89,   89,   89,   89,   89,   89,   89,   89,   89,
       89,   89,   89,   89,   89,   89,   89,   89,   89,   89,
       89,   89,   89,   89,   89,   89,   89,   89,   89,   89,
       89,   89,   89,   89,   89,   89,   89,   89,   89,   89,
       90,   90,   90,   90,   90,   90,   90,   90,   90,   90,
       90,   90,   90,   90,   90,   90,   90,   90,   90,   90,

       90,   90,   90,   90,   90,   90,   90,   90,   90,   90,
       90,   90,   90,   90,   90,   90,   90,   90,   90,   90,
       90,   90,   90,   90,   90,   90,   90,   90,   90,   90,
       90,   90,   90,   90,   90,   90,   90,   90,   90,   90,
       90,   90,   92,   92,   92,   92,   92,   92,   92,   92,
       92,   92,   92,   92,   92,   92,   92,   92,   92,   92,
       92,   92,   92,   92,   92,   92,   92,   92,   92,   92,
       92,   92,   92,   92,   92,   92,   92,   92,   92,   92,
       92,   92,   92,   92,   92,   92,   92,   92,   92,   92,
       92,   92,   92,   92,   92,   92,   92,   92,   92,   92,

       92,   92,   92,   92,   93,  164,  164,  268,  268,  304,
      304,  304,  307,  307,  330,  330,  381,  381,  352,  164,
      164,  164,  164,  164,  164,   93,  352,  268,   93, 1030,
       93,   93,   93,   93,   93,   93,   93,   93,   93,   93,
       93,   93,   93,   93,   93,   93,   93,   93,   93,   93,
       93,   93,   93,   93,   93,   93,   93,   94,   94,   94,
       94,   94,   94,   94,   94,   94,   94,   94,   94,   94,
       94,   94,   94,   94,   94,   94,   94,   94,   94,   94,
       94,   94,   94,   94,   94,   94,   94,   94,   94,   94,
       94,   94,   94,   94,   94,   94,   94,   94,   94,   94,

       94,   94,   94,   94,   94,   94,   94,   94,   94,   94,
       94,   94,   94,   94,   94,   94,   94,   94,   94,   95,
      127,  131,  127,  131,  182,  223,  182,  224,  226,  224,
      226,  227,  229,  236,  229,  240, 1032,  247,  247, 1034,
       95, 1036,  247,  127,  131, 1038,  223,  182,  305,  305,
      224,  226,  227, 1040,  236,  229,  240,  366,  236,  366,
      240,  368,  234,  247,  234,  476,  305,  404,  404,  404,
      480,   95,  368, 1042,  127,  131,  476,  223,  182, 1044,
      366,  480,  226,  227,  230,  234,  230,  230,  230,  230,
      230,  230,  230,  230,  230,  230,  230,  230,  230,  230,

      230,  230,  230,  230,  230,  230,  230,  230,  230,  230,
      230,  230,  230,  235,  238,  239,  234,  243,  252,  252,
      258,  258, 1046,  252,  371,  258,  260,  260,  337, 1048,
      337,  260, 1050,  337,  235,  238,  239,  539,  243,  238,
      274,  274,  243,  337,  252,  371,  258,  337,  539,  371,
      407,  407,  260, 1052,  274,  274,  274,  274,  274,  274,
      469,  469,  469,  486,  486,  235,  238,  239,  241,  243,
      241,  241,  241,  241,  241,  241,  241,  241,  241,  241,
      241,  241,  241,  241,  241,  241,  241,  241,  241,  241,
      241,  241,  241,  241,  241,  241,  241,  250,  284,  255,

      262,  265,  266,  279,  279,  289, 1054,  289,  370,  279,
      370,  372,  383,  284,  374,  374,  284,  387,  250,  374,
      255,  262,  265,  266, 1056, 1058,  279,  279,  289,  308,
      308,  370,  372,  383,  378,  378,  372, 1060,  387,  378,
      374,  284, 1062,  308,  308,  308,  308,  308,  308,  250,
      253,  255,  262,  265,  266,  541,  547,  550, 1064,  289,
      378,  585,  370,  372,  383, 1066,  541,  547,  550,  387,
     1068,  253,  585, 1070,  253, 1072,  253,  253,  253,  253,
      253,  253,  253,  253,  253,  253,  253,  253,  253,  253,
      253,  253,  253,  253,  253,  253,  253,  253,  253,  253,

      253,  253,  253,  254,  254,  254,  254,  254,  254,  254,
      254,  254,  254,  254,  254,  254,  254,  254,  254,  254,
      254,  254,  254,  254,  254,  254,  254,  254,  254,  254,
      254,  254,  254,  254,  254,  254,  254,  254,  254,  254,
      254,  254,  254,  254,  254,  254,  254,  254,  254,  254,
      254,  254,  254,  254,  254,  254,  254,  254,  254,  254,
      254,  254,  254,  254,  254,  259,  259,  382,  382,  384,
      384,  587,  382,  590,  384,  584,  584,  584,  591,  592,
      622,  624,  587, 1074,  590, 1076, 1078, 1080, 1082,  591,
      592,  622,  624,  382,  259,  384,  259,  259,  259,  259,

      259,  259,  259,  259,  259,  259,  259,  259,  259,  259,
      259,  259,  259,  259,  259,  259,  259,  259,  259,  259,
      259,  259,  259,  290,  382,  290,  290,  290,  290,  290,
      290,  290,  290,  290,  290,  290,  290,  290,  290,  290,
      290,  290,  290,  290,  290,  290,  290,  290,  290,  290,
      290,  290,  375,  375,  385,  385,  389,  389,  625,  385,
     1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098,  626,  625,
      389,  389,  389,  389,  389,  389,  621,  621,  621,  626,
      385,  375, 1100,  375,  375,  375,  375,  375,  375,  375,
      375,  375,  375,  375,  375,  375,  375,  375,  375,  375,

      375,  375,  375,  375,  375,  375,  375,  375,  375,  375,
      380,  380,  628,  380, 1102, 1104, 1106, 1108, 1110,  621,
     1112, 1114,  380,  628,  380,  380,  380,  380,  380,  380,
      380,  380,  380,  380,  380,  380,  380,  380,  380,  380,
      380,  380,  380,  380,  380,  380,  380,  380,  380,  380,
      388,  391,  399,  458,  458,  460,  460,  464,  458,  473,
      460,  466, 1116,  399, 1118, 1120,  391,  463,  463,  391,
      473,  388,  463, 1122,  468,  465,  465, 1124,  464,  458,
      465,  460,  466, 1126, 1128,  532,  532, 1130,  399,  468,
      532, 1132,  468,  463,  391,  473,  630,  630,  630, 1134,

     1136,  465,  388,  461,  461,  533,  533, 1138, 1140,  464,
      533,  532, 1142,  466, 1144, 1146, 1148,  468, 1150, 1152,
      630, 1154, 1156, 1158,  463, 1160, 1162, 1164, 1166, 1168,
     1170,  533,  461, 1172,  461,  461,  461,  461,  461,  461,
      461,  461,  461,  461,  461,  461,  461,  461,  461,  461,
      461,  461,  461,  461,  461,  461,  461,  461,  461,  461,
      461,  535,  533,  583, 1174,  620, 1176,  651,  653,  653,
      653,  668,  680,  687, 1178, 1180,  535, 1182,  583,  535,
      620,  583,  651,  620,  694,  651,  668,  680,  687,  668,
      680,  687,  653, 1184,  698, 1186,  707,  707,  707,  694,

     1188, 1190,  694,  702,  535,  706,  583,  709,  620,  698,
      651, 1192,  698, 1194,  668,  680,  687, 1196,  702,  707,
      706,  702,  709,  706,  713,  709, 1198,  694,  710,  710,
      710,  711,  711,  711, 1200,  711, 1202,  698,  719,  713,
      711, 1204,  713,  714,  714,  714,  702,  714,  706, 1206,
      709,  710,  714,  719,  724,  729,  719, 1208,  727,  727,
      727,  732,  732,  732, 1210,  735, 1212,  713, 1214,  724,
      729,  737,  724,  729, 1216, 1218,  739,  741,  711, 1220,
      735,  719,  727,  735,  743,  732,  737, 1222,  745,  737,
      714,  739,  741, 1224,  739,  741, 1226,  724,  729,  743,

      747, 1228,  743,  745, 1230, 1232,  745,  749,  735, 1234,
     1236,  751, 1238, 1240,  737,  747, 1242,  753,  747,  739,
      741,  755,  749,  757, 1244,  749,  751,  743, 1246,  751,
      759,  745,  753, 1248,  761,  753,  755, 1250,  757,  755,
      763,  757, 1252,  747,  765,  759, 1254, 1256,  759,  761,
      749, 1258,  761,  767,  751,  763, 1260,  769,  763,  765,
      753,  771,  765,  773,  755, 1262,  757,  775,  767, 1264,
     1266,  767,  769,  759,  777,  769,  771,  761,  773,  771,
      779,  773,  775,  763,  781,  775, 1268,  765, 1270,  777,
      783, 1272,  777, 1274,  785,  779,  767, 1276,  779,  781,

      769,  787,  781,  789,  771,  783,  773,  791,  783,  785,
      775,  793,  785,  795, 1278, 1280,  787,  777,  789,  787,
      797,  789,  791,  779,  799,  791,  793,  781,  795,  793,
      801,  795, 1282,  783,  803,  797, 1284,  785,  797,  799,
      805, 1286,  799, 1288,  787,  801,  789,  807,  801,  803,
      791,  809,  803,  811,  793,  805,  795,  813,  805, 1290,
     1292,  815,  807,  797, 1294,  807,  809,  799,  811,  809,
      817,  811,  813,  801,  819,  813,  815,  803, 1296,  815,
      821, 1298, 1300,  805,  823,  817, 1302, 1304,  817,  819,
      807,  825,  819,  827,  809,  821,  811,  829,  821,  823,

      813,  831,  823,  833,  815, 1306,  825,  835,  827,  825,
     1308,  827,  829,  817,  837,  829,  831,  819,  833,  831,
      839,  833,  835,  821,  841,  835, 1310,  823, 1312,  837,
      843, 1314,  837, 1316,  825,  839,  827,  845,  839,  841,
      829,  847,  841,  849,  831,  843,  833,  851,  843, 1318,
      835,  853,  845,  855, 1320,  845,  847,  837,  849,  847,
      857,  849,  851,  839,  859,  851,  853,  841,  855,  853,
      861,  855, 1322,  843,  863,  857, 1324, 1326,  857,  859,
      845, 1328,  859,  865,  847,  861,  849,  867,  861,  863,
      851,  869,  863,  871,  853, 1330,  855,  873,  865, 1332,

     1334,  865,  867,  857,  875,  867,  869,  859,  871,  869,
      877,  871,  873,  861,  879,  873, 1336,  863, 1338,  875,
      881, 1340,  875, 1342,  883,  877,  865, 1344,  877,  879,
      867,  885,  879,  887,  869,  881,  871,  889,  881,  883,
      873,  891,  883,  893, 1346, 1348,  885,  875,  887,  885,
      895,  887,  889,  877,  897,  889,  891,  879,  893,  891,
      899,  893, 1350,  881,  901,  895, 1352,  883,  895,  897,
      903, 1354,  897, 1356,  885,  899,  887,  905,  899,  901,
      889,  907,  901,  909,  891,  903,  893,  911,  903, 1358,
     1360,  913,  905,  895, 1362,  905,  907,  897,  909,  907,

      915,  909,  911,  899,  917,  911,  913,  901, 1364,  913,
      919, 1366, 1368,  903,  921,  915, 1370, 1372,  915,  917,
      905,  923,  917,  925,  907,  919,  909,  927,  919,  921,
      911,  929,  921,  931,  913, 1374,  923,  933,  925,  923,
     1376,  925,  927,  915,  935,  927,  929,  917,  931,  929,
      937,  931,  933,  919,  939,  933, 1378,  921, 1380,  935,
      941, 1382,  935, 1384,  923,  937,  925,  943,  937,  939,
      927,  945,  939,  947,  929,  941,  931,  949,  941, 1386,
      933,  951,  943,  953, 1388,  943,  945,  935,  947,  945,
      955,  947,  949,  937,  957,  949,  951,  939,  953,  951,

      959,  953, 1390,  941,  961,  955, 1392, 1394,  955,  957,
      943, 1396,  957,  963,  945,  959,  947,  965,  959,  961,
      949,  967,  961,  969,  951, 1398,  953,  971,  963, 1400,
     1402,  963,  965,  955,  973,  965,  967,  957,  969,  967,
      975,  969,  971,  959,  977,  971, 1404,  961, 1406,  973,
      979, 1408,  973, 1410,  981,  975,  963, 1412,  975,  977,
      965,  983,  977,  985,  967,  979,  969,  987,  979,  981,
      971,  989,  981,  991, 1414, 1416,  983,  973,  985,  983,
      993,  985,  987,  975,  995,  987,  989,  977,  991,  989,
      997,  991, 1418,  979,  999,  993, 1420,  981,  993,  995,

     1001, 1422,  995, 1424,  983,  997,  985, 1003,  997,  999,
      987, 1005,  999, 1007,  989, 1001,  991, 1009, 1001, 1426,
     1428, 1011, 1003,  993, 1430, 1003, 1005,  995, 1007, 1005,
     1013, 1007, 1009,  997, 1015, 1009, 1011,  999, 1432, 1011,
     1017, 1434, 1436, 1001, 1019, 1013, 1438, 1440, 1013, 1015,
     1003, 1021, 1015, 1023, 1005, 1017, 1007, 1025, 1017, 1019,
     1009, 1027, 1019, 1029, 1011, 1442, 1021, 1031, 1023, 1021,
     1444, 1023, 1025, 1013, 1033, 1025, 1027, 1015, 1029, 1027,
     1035, 1029, 1031, 1017, 1037, 1031, 1446, 1019, 1448, 1033,
     1039, 1450, 1033, 1452, 1021, 1035, 1023, 1041, 1035, 1037,

     1025, 1043, 1037, 1045, 1027, 1039, 1029, 1047, 1039, 1454,
     1031, 1049, 1041, 1051, 1456, 1041, 1043, 1033, 1045, 1043,
     1053, 1045, 1047, 1035, 1055, 1047, 1049, 1037, 1051, 1049,
     1057, 1051, 1458, 1039, 1059, 1053, 1460, 1462, 1053, 1055,
     1041, 1464, 1055, 1061, 1043, 1057, 1045, 1063, 1057, 1059,
     1047, 1065, 1059, 1067, 1049, 1466, 1051, 1069, 1061, 1468,
     1470, 1061, 1063, 1053, 1071, 1063, 1065, 1055, 1067, 1065,
     1073, 1067, 1069, 1057, 1075, 1069, 1472, 1059, 1474, 1071,
     1077, 1476, 1071, 1478, 1079, 1073, 1061, 1480, 1073, 1075,
     1063, 1081, 1075, 1083, 1065, 1077, 1067, 1085, 1077, 1079,

     1069, 1087, 1079, 1089, 1482, 1484, 1081, 1071, 1083, 1081,
     1091, 1083, 1085, 1073, 1093, 1085, 1087, 1075, 1089, 1087,
     1095, 1089, 1486, 1077, 1097, 1091, 1488, 1079, 1091, 1093,
     1099, 1502, 1093, 1526, 1081, 1095, 1083, 1101, 1095, 1097,
     1085, 1103, 1097, 1105, 1087, 1099, 1089, 1107, 1099, 1012,
     1010, 1109, 1101, 1091, 1008, 1101, 1103, 1093, 1105, 1103,
     1111, 1105, 1107, 1095, 1113, 1107, 1109, 1097, 1006, 1109,
     1115, 1004, 1002, 1099, 1117, 1111, 1000,  998, 1111, 1113,
     1101, 1119, 1113, 1121, 1103, 1115, 1105, 1123, 1115, 1117,
     1107, 1125, 1117, 1127, 1109,  996, 1119, 1129, 1121, 1119,

      994, 1121, 1123, 1111, 1131, 1123, 1125, 1113, 1127, 1125,
     1133, 1127, 1129, 1115, 1135, 1129,  992, 1117,  990, 1131,
     1137,  988, 1131,  986, 1119, 1133, 1121, 1139, 1133, 1135,
     1123, 1141, 1135, 1143, 1125, 1137, 1127, 1145, 1137,  984,
     1129, 1147, 1139, 1149,  982, 1139, 1141, 1131, 1143, 1141,
     1151, 1143, 1145, 1133, 1153, 1145, 1147, 1135, 1149, 1147,
     1155, 1149,  980, 1137, 1157, 1151,  978,  976, 1151, 1153,
     1139,  974, 1153, 1159, 1141, 1155, 1143, 1161, 1155, 1157,
     1145, 1163, 1157, 1165, 1147,  972, 1149, 1167, 1159,  970,
      968, 1159, 1161, 1151, 1169, 1161, 1163, 1153, 1165, 1163,

     1171, 1165, 1167, 1155, 1173, 1167,  966, 1157,  964, 1169,
     1175,  962, 1169,  960, 1177, 1171, 1159,  958, 1171, 1173,
     1161, 1179, 1173, 1181, 1163, 1175, 1165, 1183, 1175, 1177,
     1167, 1185, 1177, 1187,  956,  954, 1179, 1169, 1181, 1179,
     1189, 1181, 1183, 1171, 1191, 1183, 1185, 1173, 1187, 1185,
     1193, 1187,  952, 1175, 1195, 1189,  950, 1177, 1189, 1191,
     1197,  948, 1191,  946, 1179, 1193, 1181, 1199, 1193, 1195,
     1183, 1201, 1195, 1203, 1185, 1197, 1187, 1205, 1197,  944,
      942, 1207, 1199, 1189,  940, 1199, 1201, 1191, 1203, 1201,
     1209, 1203, 1205, 1193, 1211, 1205, 1207, 1195,  938, 1207,

     1213,  936,  934, 1197, 1215, 1209,  932,  930, 1209, 1211,
     1199, 1217, 1211, 1219, 1201, 1213, 1203, 1221, 1213, 1215,
     1205, 1223, 1215, 1225, 1207,  928, 1217, 1227, 1219, 1217,
      926, 1219, 1221, 1209, 1229, 1221, 1223, 1211, 1225, 1223,
     1231, 1225, 1227, 1213, 1233, 1227,  924, 1215,  922, 1229,
     1235,  920, 1229,  918, 1217, 1231, 1219, 1237, 1231, 1233,
     1221, 1239, 1233, 1241, 1223, 1235, 1225, 1243, 1235,  916,
     1227, 1245, 1237, 1247,  914, 1237, 1239, 1229, 1241, 1239,
     1249, 1241, 1243, 1231, 1251, 1243, 1245, 1233, 1247, 1245,
     1253, 1247,  912, 1235, 1255, 1249,  910,  908, 1249, 1251,

     1237,  906, 1251, 1257, 1239, 1253, 1241, 1259, 1253, 1255,
     1243, 1261, 1255, 1263, 1245,  904, 1247, 1265, 1257,  902,
      900, 1257, 1259, 1249, 1267, 1259, 1261, 1251, 1263, 1261,
     1269, 1263, 1265, 1253, 1271, 1265,  898, 1255,  896, 1267,
     1273,  894, 1267,  892, 1275, 1269, 1257,  890, 1269, 1271,
     1259, 1277, 1271, 1279, 1261, 1273, 1263, 1281, 1273, 1275,
     1265, 1283, 1275, 1285,  888,  886, 1277, 1267, 1279, 1277,
     1287, 1279, 1281, 1269, 1289, 1281, 1283, 1271, 1285, 1283,
     1291, 1285,  884, 1273, 1293, 1287,  882, 1275, 1287, 1289,
     1295,  880, 1289,  878, 1277, 1291, 1279, 1297, 1291, 1293,

     1281, 1299, 1293, 1301, 1283, 1295, 1285, 1303, 1295,  876,
      874, 1305, 1297, 1287,  872, 1297, 1299, 1289, 1301, 1299,
     1307, 1301, 1303, 1291, 1309, 1303, 1305, 1293,  870, 1305,
     1311,  868,  866, 1295, 1313, 1307,  864,  862, 1307, 1309,
     1297, 1315, 1309, 1317, 1299, 1311, 1301, 1319, 1311, 1313,
     1303, 1321, 1313, 1323, 1305,  860, 1315, 1325, 1317, 1315,
      858, 1317, 1319, 1307, 1327, 1319, 1321, 1309, 1323, 1321,
     1329, 1323, 1325, 1311, 1331, 1325,  856, 1313,  854, 1327,
     1333,  852, 1327,  850, 1315, 1329, 1317, 1335, 1329, 1331,
     1319, 1337, 1331, 1339, 1321, 1333, 1323, 1341, 1333,  848,

     1325, 1343, 1335, 1345,  846, 1335, 1337, 1327, 1339, 1337,
     1347, 1339, 1341, 1329, 1349, 1341, 1343, 1331, 1345, 1343,
     1351, 1345,  844, 1333, 1353, 1347,  842,  840, 1347, 1349,
     1335,  838, 1349, 1355, 1337, 1351, 1339, 1357, 1351, 1353,
     1341, 1359, 1353, 1361, 1343,  836, 1345, 1363, 1355,  834,
      832, 1355, 1357, 1347, 1365, 1357, 1359, 1349, 1361, 1359,
     1367, 1361, 1363, 1351, 1369, 1363,  830, 1353,  828, 1365,
     1371,  826, 1365,  824, 1373, 1367, 1355,  822, 1367, 1369,
     1357, 1375, 1369, 1377, 1359, 1371, 1361, 1379, 1371, 1373,
     1363, 1381, 1373, 1383,  820,  818, 1375, 1365, 1377, 1375,

     1385, 1377, 1379, 1367, 1387, 1379, 1381, 1369, 1383, 1381,
     1389, 1383,  816, 1371, 1391, 1385,  814, 1373, 1385, 1387,
     1393,  812, 1387,  810, 1375, 1389, 1377, 1395, 1389, 1391,
     1379, 1397, 1391, 1399, 1381, 1393, 1383, 1401, 1393,  808,
      806, 1403, 1395, 1385,  804, 1395, 1397, 1387, 1399, 1397,
     1405, 1399, 1401, 1389, 1407, 1401, 1403, 1391,  802, 1403,
     1409,  800,  798, 1393, 1411, 1405,  796,  794, 1405, 1407,
     1395, 1413, 1407, 1415, 1397, 1409, 1399, 1417, 1409, 1411,
     1401, 1419, 1411, 1421, 1403,  792, 1413, 1423, 1415, 1413,
      790, 1415, 1417, 1405, 1425, 1417, 1419, 1407, 1421, 1419,

     1427, 1421, 1423, 1409, 1429, 1423,  788, 1411,  786, 1425,
     1431,  784, 1425,  782, 1413, 1427, 1415, 1433, 1427, 1429,
     1417, 1435, 1429, 1437, 1419, 1431, 1421, 1439, 1431,  780,
     1423, 1441, 1433, 1443,  778, 1433, 1435, 1425, 1437, 1435,
     1445, 1437, 1439, 1427, 1447, 1439, 1441, 1429, 1443, 1441,
     1449, 1443,  776, 1431, 1451, 1445,  774,  772, 1445, 1447,
     1433,  770, 1447, 1453, 1435, 1449, 1437, 1455, 1449, 1451,
     1439, 1457, 1451, 1459, 1441,  768, 1443, 1461, 1453,  766,
      764, 1453, 1455, 1445, 1463, 1455, 1457, 1447, 1459, 1457,
     1465, 1459, 1461, 1449, 1467, 1461,  762, 1451,  760, 1463,

     1469,  758, 1463,  756, 1471, 1465, 1453,  754, 1465, 1467,
     1455, 1473, 1467, 1475, 1457, 1469, 1459, 1477, 1469, 1471,
     1461, 1479, 1471, 1481,  752,  750, 1473, 1463, 1475, 1473,
     1483, 1475, 1477, 1465, 1485, 1477, 1479, 1467, 1481, 1479,
     1487, 1481,  748, 1469, 1489, 1483,  746, 1471, 1483, 1485,
     1491,  744, 1485,  742, 1473, 1487, 1475,  740, 1487, 1489,
     1477,  738, 1489,  736, 1479, 1491, 1481,  734, 1491,  731,
      730,  728,  726, 1483,  725,  723,  722, 1485,  721,  720,
      718,  717,  716, 1487,  715,  712,  708, 1489,  705,  703,
      701,  700,  699, 1491, 1493, 1493, 1493, 1493, 1493, 1493,

     1493, 1493, 1493, 1493, 1493, 1493, 1494, 1494, 1494, 1494,
     1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1495, 1495,
     1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495,
     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,
     1496, 1496, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1498, 1498, 1498, 1498, 1498, 1498,
     1498, 1498, 1498, 1498, 1498, 1498, 1499, 1499, 1499, 1499,
     1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1500, 1500,
     1500, 1500, 1500, 1500, 1500, 1500,  697, 1500, 1500, 1500,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,

     1501, 1501, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503,
     1503, 1503, 1503, 1503, 1504,  696,  695, 1504, 1505, 1505,
     1505,  693, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505,
     1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506,
      690, 1506, 1507,  688,  686,  685, 1507, 1507,  684, 1507,
     1508,  683,  682, 1508, 1509,  681,  679, 1509, 1510, 1510,
     1510, 1510,  678, 1510, 1510, 1510, 1510, 1510, 1510, 1510,
     1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511,
     1511, 1511, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512,
     1512, 1512, 1512, 1512, 1513, 1513, 1513, 1513, 1513, 1513,

     1513, 1513, 1513,  676, 1513, 1514,  671,  670, 1514, 1515,
     1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515,  669, 1515,
     1516, 1516,  667,  666, 1516, 1517, 1517, 1517, 1517, 1517,
     1517, 1517, 1517, 1517,  663, 1517, 1518, 1518, 1518, 1518,
     1518, 1518, 1518, 1518, 1518,  662, 1518, 1519, 1519, 1519,
     1519, 1519, 1519, 1519, 1519, 1519,  661, 1519, 1520, 1520,
     1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520,
     1521,  659,  658,  657,  656,  655,  652,  650, 1521, 1522,
     1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522,  649, 1522,
     1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523,

     1523, 1523, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524,
     1524, 1524, 1524, 1524, 1525,  648,  647,  646, 1525,  645,
      644, 1525, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527,
     1527, 1527, 1527, 1527, 1528, 1528, 1528, 1528, 1528, 1528,
     1528, 1528, 1528, 1528, 1528, 1528, 1529, 1529, 1529, 1529,
     1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1530, 1530,
     1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530,
     1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531,
     1531, 1531, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532,
     1532, 1532, 1532, 1532, 1533, 1533, 1533, 1533, 1533, 1533,

     1533, 1533, 1533, 1533, 1533, 1533, 1534, 1534, 1534, 1534,
     1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1535, 1535,
     1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535,
     1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536,
     1536, 1536, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537,
     1537, 1537, 1537, 1537, 1538, 1538, 1538, 1538, 1538, 1538,
     1538, 1538, 1538, 1538, 1538, 1538, 1539, 1539, 1539, 1539,
     1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1540, 1540,
     1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540,
     1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541,

     1541, 1541, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542,
     1542, 1542, 1542, 1542, 1543, 1543, 1543, 1543, 1543, 1543,
     1543, 1543, 1543, 1543, 1543, 1543, 1544, 1544, 1544, 1544,
     1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1545, 1545,
     1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545,
     1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546,
     1546, 1546, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547,
     1547, 1547, 1547, 1547, 1548, 1548, 1548, 1548, 1548, 1548,
     1548, 1548, 1548, 1548, 1548, 1548, 1549, 1549, 1549, 1549,
     1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1550, 1550,

     1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550,
     1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551,
     1551, 1551, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552,
     1552, 1552, 1552, 1552, 1553, 1553, 1553, 1553, 1553, 1553,
     1553, 1553, 1553, 1553, 1553, 1553, 1554, 1554, 1554, 1554,
     1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1555, 1555,
     1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555,
     1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556,
     1556, 1556, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557,
     1557, 1557, 1557, 1557, 1558, 1558, 1558, 1558, 1558, 1558,

     1558, 1558, 1558, 1558, 1558, 1558, 1559, 1559, 1559, 1559,
     1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1560, 1560,
     1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560,
     1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561,
     1561, 1561, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562,
     1562, 1562, 1562, 1562, 1563, 1563, 1563, 1563, 1563, 1563,
     1563, 1563, 1563, 1563, 1563, 1563, 1564, 1564, 1564, 1564,
     1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1565, 1565,
     1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565,
     1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566,

     1566, 1566, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567,
     1567, 1567, 1567, 1567, 1568, 1568, 1568, 1568, 1568, 1568,
     1568, 1568, 1568, 1568, 1568, 1568, 1569, 1569, 1569, 1569,
     1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1570, 1570,
     1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570,
     1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571,
     1571, 1571, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572,
     1572, 1572, 1572, 1572, 1573, 1573, 1573, 1573, 1573, 1573,
     1573, 1573, 1573, 1573, 1573, 1573, 1574, 1574, 1574, 1574,
     1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1575, 1575,

     1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575,
     1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576,
     1576, 1576, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577,
     1577, 1577, 1577, 1577, 1578, 1578, 1578, 1578, 1578, 1578,
     1578, 1578, 1578, 1578, 1578, 1578, 1579, 1579, 1579, 1579,
     1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1580, 1580,
     1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580,
     1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581,
     1581, 1581, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582,
     1582, 1582, 1582, 1582, 1583, 1583, 1583, 1583, 1583, 1583,

     1583, 1583, 1583, 1583, 1583, 1583, 1584, 1584, 1584, 1584,
     1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1585, 1585,
     1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585,
     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,
     1586, 1586, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1588, 1588, 1588, 1588, 1588, 1588,
     1588, 1588, 1588, 1588, 1588, 1588, 1589, 1589, 1589, 1589,
     1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1590, 1590,
     1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,

     1591, 1591, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592,
     1592, 1592, 1592, 1592, 1593, 1593, 1593, 1593, 1593, 1593,
     1593, 1593, 1593, 1593, 1593, 1593, 1594, 1594, 1594, 1594,
     1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1595, 1595,
     1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595,
     1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596,
     1596, 1596, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597,
     1597, 1597, 1597, 1597, 1598, 1598, 1598, 1598, 1598, 1598,
     1598, 1598, 1598, 1598, 1598, 1598, 1599, 1599, 1599, 1599,
     1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1600, 1600,

     1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600,
     1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601,
     1601, 1601, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602,
     1602, 1602, 1602, 1602, 1603, 1603, 1603, 1603, 1603, 1603,
     1603, 1603, 1603, 1603, 1603, 1603, 1604, 1604, 1604, 1604,
     1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1605, 1605,
     1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605,
     1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606,
     1606, 1606, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607,
     1607, 1607, 1607, 1607, 1608, 1608, 1608, 1608, 1608, 1608,

     1608, 1608, 1608, 1608, 1608, 1608, 1609, 1609, 1609, 1609,
     1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1610, 1610,
     1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610,
     1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611,
     1611, 1611, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612,
     1612, 1612, 1612, 1612, 1613, 1613, 1613, 1613, 1613, 1613,
     1613, 1613, 1613, 1613, 1613, 1613, 1614, 1614, 1614, 1614,
     1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1615, 1615,
     1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615,
     1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616,

     1616, 1616, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617,
     1617, 1617, 1617, 1617, 1618, 1618, 1618, 1618, 1618, 1618,
     1618, 1618, 1618, 1618, 1618, 1618, 1619, 1619, 1619, 1619,
     1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1620, 1620,
     1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620,
     1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621,
     1621, 1621, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622,
     1622, 1622, 1622, 1622, 1623, 1623, 1623, 1623, 1623, 1623,
     1623, 1623, 1623, 1623, 1623, 1623, 1624, 1624, 1624, 1624,
     1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1625, 1625,

     1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625,
     1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626,
     1626, 1626, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627,
     1627, 1627, 1627, 1627, 1628, 1628, 1628, 1628, 1628, 1628,
     1628, 1628, 1628, 1628, 1628, 1628, 1629, 1629, 1629, 1629,
     1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1630, 1630,
     1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630,
     1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631,
     1631, 1631, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632,
     1632, 1632, 1632, 1632, 1633, 1633, 1633, 1633, 1633, 1633,

     1633, 1633, 1633, 1633, 1633, 1633, 1634, 1634, 1634, 1634,
     1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1635, 1635,
     1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635,
     1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636,
     1636, 1636, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637,
     1637, 1637, 1637, 1637, 1638, 1638, 1638, 1638, 1638, 1638,
     1638, 1638, 1638, 1638, 1638, 1638, 1639, 1639, 1639, 1639,
     1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1640, 1640,
     1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640,
     1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641,

     1641, 1641, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642,
     1642, 1642, 1642, 1642, 1643, 1643, 1643, 1643, 1643, 1643,
     1643, 1643, 1643, 1643, 1643, 1643, 1644, 1644, 1644, 1644,
     1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1645, 1645,
     1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645,
     1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646,
     1646, 1646, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647,
     1647, 1647, 1647, 1647, 1648, 1648, 1648, 1648, 1648, 1648,
     1648, 1648, 1648, 1648, 1648, 1648, 1649, 1649, 1649, 1649,
     1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1650, 1650,

     1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650,
     1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651,
     1651, 1651, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652,
     1652, 1652, 1652, 1652, 1653, 1653, 1653, 1653, 1653, 1653,
     1653, 1653, 1653, 1653, 1653, 1653, 1654, 1654, 1654, 1654,
     1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1655, 1655,
     1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655,
     1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656,
     1656, 1656, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657,
     1657, 1657, 1657, 1657, 1658, 1658, 1658, 1658, 1658, 1658,

     1658, 1658, 1658, 1658, 1658, 1658, 1659, 1659, 1659, 1659,
     1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1660, 1660,
     1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660,
     1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661,
     1661, 1661, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662,
     1662, 1662, 1662, 1662, 1663, 1663, 1663, 1663, 1663, 1663,
     1663, 1663, 1663, 1663, 1663, 1663, 1664, 1664, 1664, 1664,
     1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1665, 1665,
     1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665,
     1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666,

     1666, 1666, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667,
     1667, 1667, 1667, 1667, 1668, 1668, 1668, 1668, 1668, 1668,
     1668, 1668, 1668, 1668, 1668, 1668, 1669, 1669, 1669, 1669,
     1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1670, 1670,
     1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670,
     1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671,
     1671, 1671, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672,
     1672, 1672, 1672, 1672, 1673, 1673, 1673, 1673, 1673, 1673,
     1673, 1673, 1673, 1673, 1673, 1673, 1674, 1674, 1674, 1674,
     1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1675, 1675,

     1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675,
     1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676,
     1676, 1676, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677,
     1677, 1677, 1677, 1677, 1678, 1678, 1678, 1678, 1678, 1678,
     1678, 1678, 1678, 1678, 1678, 1678, 1679, 1679, 1679, 1679,
     1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1680, 1680,
     1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680,
     1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681,
     1681, 1681, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682,
     1682, 1682, 1682, 1682, 1683, 1683, 1683, 1683, 1683, 1683,

     1683, 1683, 1683, 1683, 1683, 1683, 1684, 1684, 1684, 1684,
     1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1685, 1685,
     1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685,
     1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686,
     1686, 1686, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687,
     1687, 1687, 1687, 1687, 1688, 1688, 1688, 1688, 1688, 1688,
     1688, 1688, 1688, 1688, 1688, 1688, 1689, 1689, 1689, 1689,
     1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1690, 1690,
     1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690,
     1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691,

     1691, 1691, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692,
     1692, 1692, 1692, 1692, 1693, 1693, 1693, 1693, 1693, 1693,
     1693, 1693, 1693, 1693, 1693, 1693, 1694, 1694, 1694, 1694,
     1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1695, 1695,
     1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695,
     1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696,
     1696, 1696, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697,
     1697, 1697, 1697, 1697, 1698, 1698, 1698, 1698, 1698, 1698,
     1698, 1698, 1698, 1698, 1698, 1698, 1699, 1699, 1699, 1699,
     1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1700, 1700,

     1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700,
     1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701,
     1701, 1701, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702,
     1702, 1702, 1702, 1702, 1703, 1703, 1703, 1703, 1703, 1703,
     1703, 1703, 1703, 1703, 1703, 1703, 1704, 1704, 1704, 1704,
     1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1705, 1705,
     1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705,
     1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706,
     1706, 1706, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707,
     1707, 1707, 1707, 1707, 1708, 1708, 1708, 1708, 1708, 1708,

     1708, 1708, 1708, 1708, 1708, 1708, 1709, 1709, 1709, 1709,
     1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1710, 1710,
     1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710,
     1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711,
     1711, 1711, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712,
     1712, 1712, 1712, 1712, 1713, 1713, 1713, 1713, 1713, 1713,
     1713, 1713, 1713, 1713, 1713, 1713, 1714, 1714, 1714, 1714,
     1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1715, 1715,
     1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715,
     1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716,

     1716, 1716, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717,
     1717, 1717, 1717, 1717, 1718, 1718, 1718, 1718, 1718, 1718,
     1718, 1718, 1718, 1718, 1718, 1718, 1719, 1719, 1719, 1719,
     1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1720, 1720,
     1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720,
     1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721,
     1721, 1721, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722,
     1722, 1722, 1722, 1722, 1723, 1723, 1723, 1723, 1723, 1723,
     1723, 1723, 1723, 1723, 1723, 1723, 1724, 1724, 1724, 1724,
     1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1725, 1725,

     1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725,
     1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726,
     1726, 1726, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727,
     1727, 1727, 1727, 1727, 1728, 1728, 1728, 1728, 1728, 1728,
     1728, 1728, 1728, 1728, 1728, 1728, 1729, 1729, 1729, 1729,
     1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1730, 1730,
     1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730,
     1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731,
     1731, 1731, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732,
     1732, 1732, 1732, 1732, 1733, 1733, 1733, 1733, 1733, 1733,

     1733, 1733, 1733, 1733, 1733, 1733, 1734, 1734, 1734, 1734,
     1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1735, 1735,
     1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735,
     1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736,
     1736, 1736, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737,
     1737, 1737, 1737, 1737, 1738, 1738, 1738, 1738, 1738, 1738,
     1738, 1738, 1738, 1738, 1738, 1738, 1739, 1739, 1739, 1739,
     1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1740, 1740,
     1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740,
     1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741,

     1741, 1741, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742,
     1742, 1742, 1742, 1742, 1743, 1743, 1743, 1743, 1743, 1743,
     1743, 1743, 1743, 1743, 1743, 1743, 1744, 1744, 1744, 1744,
     1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1745, 1745,
     1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745,
     1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746,
     1746, 1746, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747,
     1747, 1747, 1747, 1747, 1748, 1748, 1748, 1748, 1748, 1748,
     1748, 1748, 1748, 1748, 1748, 1748, 1749, 1749, 1749, 1749,
     1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1750, 1750,

     1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750,
     1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751,
     1751, 1751, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752,
     1752, 1752, 1752, 1752, 1753, 1753, 1753, 1753, 1753, 1753,
     1753, 1753, 1753, 1753, 1753, 1753, 1754, 1754, 1754, 1754,
     1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1755, 1755,
     1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755,
     1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756,
     1756, 1756, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757,
     1757, 1757, 1757, 1757, 1758, 1758, 1758, 1758, 1758, 1758,

     1758, 1758, 1758, 1758, 1758, 1758, 1759, 1759, 1759, 1759,
     1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1760, 1760,
     1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760,
     1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761,
     1761, 1761, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762,
     1762, 1762, 1762, 1762, 1763, 1763, 1763, 1763, 1763, 1763,
     1763, 1763, 1763, 1763, 1763, 1763, 1764, 1764, 1764, 1764,
     1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1765, 1765,
     1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765,
     1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766,

     1766, 1766, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767,
     1767, 1767, 1767, 1767, 1768, 1768, 1768, 1768, 1768, 1768,
     1768, 1768, 1768, 1768, 1768, 1768, 1769, 1769, 1769, 1769,
     1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1770, 1770,
     1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770,
     1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771,
     1771, 1771, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772,
     1772, 1772, 1772, 1772, 1773, 1773, 1773, 1773, 1773, 1773,
     1773, 1773, 1773, 1773, 1773, 1773, 1774, 1774, 1774, 1774,
     1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1775, 1775,

     1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775,
     1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
     1776, 1776, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777,
     1777, 1777, 1777, 1777, 1778, 1778, 1778, 1778, 1778, 1778,
     1778, 1778, 1778, 1778, 1778, 1778, 1779, 1779, 1779, 1779,
     1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1780, 1780,
     1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780,
     1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781,
     1781, 1781, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782,
     1782, 1782, 1782, 1782, 1783, 1783, 1783, 1783, 1783, 1783,

     1783, 1783, 1783, 1783, 1783, 1783, 1784, 1784, 1784, 1784,
     1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1785, 1785,
     1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785,
     1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786,
     1786, 1786, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787,
     1787, 1787, 1787, 1787, 1788, 1788, 1788, 1788, 1788, 1788,
     1788, 1788, 1788, 1788, 1788, 1788, 1789, 1789, 1789, 1789,
     1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1790, 1790,
     1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790,
     1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791,

     1791, 1791, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792,
     1792, 1792, 1792, 1792, 1793, 1793, 1793, 1793, 1793, 1793,
     1793, 1793, 1793, 1793, 1793, 1793, 1794, 1794, 1794, 1794,
     1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1795, 1795,
     1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795,
     1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796,
     1796, 1796, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797,
     1797, 1797, 1797, 1797, 1798, 1798, 1798, 1798, 1798, 1798,
     1798, 1798, 1798, 1798, 1798, 1798, 1799, 1799, 1799, 1799,
     1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1800, 1800,

     1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800,
     1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801,
     1801, 1801, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802,
     1802, 1802, 1802, 1802, 1803, 1803, 1803, 1803, 1803, 1803,
     1803, 1803, 1803, 1803, 1803, 1803, 1804, 1804, 1804, 1804,
     1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1805, 1805,
     1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805,
     1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806,
     1806, 1806, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807,
     1807, 1807, 1807, 1807, 1808, 1808, 1808, 1808, 1808, 1808,

     1808, 1808, 1808, 1808, 1808, 1808, 1809, 1809, 1809, 1809,
     1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1810, 1810,
     1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810,
     1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811,
     1811, 1811, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812,
     1812, 1812, 1812, 1812, 1813, 1813, 1813, 1813, 1813, 1813,
     1813, 1813, 1813, 1813, 1813, 1813, 1814, 1814, 1814, 1814,
     1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1815, 1815,
     1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815,
     1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816,

     1816, 1816, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817,
     1817, 1817, 1817, 1817, 1818, 1818, 1818, 1818, 1818, 1818,
     1818, 1818, 1818, 1818, 1818, 1818, 1819, 1819, 1819, 1819,
     1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1820, 1820,
     1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820,
     1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821,
     1821, 1821, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822,
     1822, 1822, 1822, 1822, 1823, 1823, 1823, 1823, 1823, 1823,
     1823, 1823, 1823, 1823, 1823, 1823, 1824, 1824, 1824, 1824,
     1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1825, 1825,

     1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825,
     1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826,
     1826, 1826, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827,
     1827, 1827, 1827, 1827, 1828, 1828, 1828, 1828, 1828, 1828,
     1828, 1828, 1828, 1828, 1828, 1828, 1829, 1829, 1829, 1829,
     1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1830, 1830,
     1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830,
     1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831,
     1831, 1831, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832,
     1832, 1832, 1832, 1832, 1833, 1833, 1833, 1833, 1833, 1833,

     1833, 1833, 1833, 1833, 1833, 1833, 1834, 1834, 1834, 1834,
     1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1835, 1835,
     1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835,
     1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836,
     1836, 1836, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837,
     1837, 1837, 1837, 1837, 1838, 1838, 1838, 1838, 1838, 1838,
     1838, 1838, 1838, 1838, 1838, 1838, 1839, 1839, 1839, 1839,
     1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1840, 1840,
     1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840,
     1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841,

     1841, 1841, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842,
     1842, 1842, 1842, 1842, 1843, 1843, 1843, 1843, 1843, 1843,
     1843, 1843, 1843, 1843, 1843, 1843, 1844, 1844, 1844, 1844,
     1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1845, 1845,
     1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845,
     1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846,
     1846, 1846, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847,
     1847, 1847, 1847, 1847, 1848, 1848, 1848, 1848, 1848, 1848,
     1848, 1848, 1848, 1848, 1848, 1848, 1849, 1849, 1849, 1849,
     1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1850, 1850,

     1850, 1850, 1850, 1850, 1850, 1850, 1850, 1850, 1850, 1850,
     1851, 1851, 1851, 1851, 1851, 1851, 1851, 1851, 1851, 1851,
     1851, 1851, 1852, 1852, 1852, 1852, 1852, 1852, 1852, 1852,
     1852, 1852, 1852, 1852, 1853, 1853, 1853, 1853, 1853, 1853,
     1853, 1853, 1853, 1853, 1853, 1853, 1854, 1854, 1854, 1854,
     1854, 1854, 1854, 1854, 1854, 1854, 1854, 1854, 1855, 1855,
     1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855,
     1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856,
     1856, 1856, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857,
     1857, 1857, 1857, 1857, 1858, 1858, 1858, 1858, 1858, 1858,

     1858, 1858, 1858, 1858, 1858, 1858, 1859, 1859, 1859, 1859,
     1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1860, 1860,
     1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860,
     1861, 1861, 1861, 1861, 1861, 1861, 1861, 1861, 1861, 1861,
     1861, 1861, 1862, 1862, 1862, 1862, 1862, 1862, 1862, 1862,
     1862, 1862, 1862, 1862, 1863, 1863, 1863, 1863, 1863, 1863,
     1863, 1863, 1863, 1863, 1863, 1863, 1864, 1864, 1864, 1864,
     1864, 1864, 1864, 1864, 1864, 1864, 1864, 1864, 1865, 1865,
     1865, 1865, 1865, 1865, 1865, 1865, 1865, 1865, 1865, 1865,
     1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866, 1866,

     1866, 1866, 1867, 1867, 1867, 1867, 1867, 1867, 1867, 1867,
     1867, 1867, 1867, 1867, 1868, 1868, 1868, 1868, 1868, 1868,
     1868, 1868, 1868, 1868, 1868, 1868, 1869, 1869, 1869, 1869,
     1869, 1869, 1869, 1869, 1869, 1869, 1869, 1869, 1870, 1870,
     1870, 1870, 1870, 1870, 1870, 1870, 1870, 1870, 1870, 1870,
     1871, 1871, 1871, 1871, 1871, 1871, 1871, 1871, 1871, 1871,
     1871, 1871, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872,
     1872, 1872, 1872, 1872, 1873, 1873, 1873, 1873, 1873, 1873,
     1873, 1873, 1873, 1873, 1873, 1873, 1874, 1874, 1874, 1874,
     1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1875, 1875,

     1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875,
     1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876,
     1876, 1876, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877,
     1877, 1877, 1877, 1877, 1878, 1878, 1878, 1878, 1878, 1878,
     1878, 1878, 1878, 1878, 1878, 1878, 1879, 1879, 1879, 1879,
     1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1880, 1880,
     1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880,
     1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881,
     1881, 1881, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882,
     1882, 1882, 1882, 1882, 1883, 1883, 1883, 1883, 1883, 1883,

     1883, 1883, 1883, 1883, 1883, 1883, 1884, 1884, 1884, 1884,
     1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1885, 1885,
     1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885,
     1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886,
     1886, 1886, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887,
     1887, 1887, 1887, 1887, 1888, 1888, 1888, 1888, 1888, 1888,
     1888, 1888, 1888, 1888, 1888, 1888, 1889, 1889, 1889, 1889,
     1889, 1889, 1889, 1889, 1889, 1889, 1889, 1889, 1890, 1890,
     1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890, 1890,
     1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891, 1891,

     1891, 1891, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892,
     1892, 1892, 1892, 1892, 1893, 1893, 1893, 1893, 1893, 1893,
     1893, 1893, 1893, 1893, 1893, 1893, 1894, 1894, 1894, 1894,
     1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1895, 1895,
     1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895,
     1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896,
     1896, 1896, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897,
     1897, 1897, 1897, 1897, 1898, 1898, 1898, 1898, 1898, 1898,
     1898, 1898, 1898, 1898, 1898, 1898, 1899, 1899, 1899, 1899,
     1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1900, 1900,

     1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900,
     1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901,
     1901, 1901, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902,
     1902, 1902, 1902, 1902, 1903, 1903, 1903, 1903, 1903, 1903,
     1903, 1903, 1903, 1903, 1903, 1903, 1904, 1904, 1904, 1904,
     1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1905, 1905,
     1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905,
     1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906,
     1906, 1906, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907,
     1907, 1907, 1907, 1907, 1908, 1908, 1908, 1908, 1908, 1908,

     1908, 1908, 1908, 1908, 1908, 1908, 1909, 1909, 1909, 1909,
     1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1910, 1910,
     1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910,
     1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911,
     1911, 1911, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912,
     1912, 1912, 1912, 1912, 1913, 1913, 1913, 1913, 1913, 1913,
     1913, 1913, 1913, 1913, 1913, 1913, 1914, 1914, 1914, 1914,
     1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1915, 1915,
     1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915, 1915,
     1916, 1916, 1916, 1916, 1916, 1916, 1916, 1916, 1916, 1916,

     1916, 1916, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917,
     1917, 1917, 1917, 1917, 1918, 1918, 1918, 1918, 1918, 1918,
     1918, 1918, 1918, 1918, 1918, 1918, 1919, 1919, 1919, 1919,
     1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1920, 1920,
     1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920,
     1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921,
     1921, 1921,  641,  640,  639,  636,  634,  633,  631,  619,
      618,  617,  615,  614,  613,  612,  611,  608,  607,  606,
      605,  602,  601,  600,  599,  598,  597,  596,  595,  594,
      589,  588,  582,  578,  576,  575,  574,  573,  572,  571,

      569,  568,  567,  566,  565,  564,  563,  561,  560,  559,
      558,  557,  556,  555,  554,  553,  552,  551,  549,  546,
      545,  544,  543,  540,  538,  537,  534,  527,  526,  525,
      524,  523,  522,  521,  518,  517,  516,  515,  514,  513,
      512,  510,  509,  508,  506,  505,  503,  502,  501,  500,
      493,  492,  491,  490,  489,  488,  487,  485,  483,  482,
      481,  479,  478,  475,  474,  472,  471,  470,  467,  456,
      455,  454,  453,  452,  451,  450,  449,  448,  447,  446,
      444,  443,  442,  441,  440,  439,  438,  437,  436,  435,
      432,  431,  430,  429,  428,  427,  426,  424,  423,  422,

      421,  420,  419,  418,  416,  415,  414,  413,  412,  411,
      410,  409,  408,  406,  405,  403,  402,  401,  400,  398,
      397,  396,  395,  394,  393,  392,  390,  367,  364,  361,
      359,  358,  357,  356,  355,  354,  353,  350,  349,  348,
      347,  346,  345,  344,  343,  342,  341,  340,  339,  338,
      336,  335,  334,  332,  331,  329,  328,  327,  326,  325,
      324,  323,  321,  320,  319,  318,  316,  315,  310,  309,
      303,  302,  301,  300,  299,  298,  297,  296,  295,  294,
      293,  287,  286,  283,  246,  237,  225,  220,  219,  218,
      217,  216,  215,  214,  213,  212,  210,  207,  206,  205,

      203,  201,  200,  199,  198,  196,  195,  194,  193,  192,
      190,  188,  185,  184,  180,  179,  178,  173,  170,  166,
      158,  149,  148,  147,  146,  145,  144,  143,  141,  126,
      124,  122,  121,  119,  118,  116,  115,  112,  111,  100,
       91,   86,   82,   75,   74,   73,   69,   67,   66,   65,
       62,   54,   53,   52,   48,   41,   32,   28,   27,   24,
       23,   22,   21,    2,    1, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,

     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492,
     1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492
    } ;

static yy_state_type yy_last_accepting_state;
static char *yy_last_accepting_cpos;

/* The intent behind this definition is that it'll catch
 * any uses of REJECT which flex missed.
 */
#define REJECT reject_used_but_not_detected
static int yy_more_flag = 0;
static int yy_more_len = 0;
#define yymore() (yy_more_flag = 1)
#define YY_MORE_ADJ yy_more_len
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#define INITIAL 0

/*
   +----------------------------------------------------------------------+
   | Zend Engine                                                          |
   +----------------------------------------------------------------------+
   | Copyright (c) 1998-2006 Zend Technologies Ltd. (http://www.zend.com) |
   +----------------------------------------------------------------------+
   | This source file is subject to version 2.00 of the Zend license,     |
   | that is bundled with this package in the file LICENSE, and is        |
   | available through the world-wide-web at the following url:           |
   | http://www.zend.com/license/2_00.txt.                                |
   | If you did not receive a copy of the Zend license and are unable to  |
   | obtain it through the world-wide-web, please send a note to          |
   | license@zend.com so we can mail you a copy immediately.              |
   +----------------------------------------------------------------------+
   | Authors: Andi Gutmans <andi@zend.com>                                |
   |          Zeev Suraski <zeev@zend.com>                                |
   +----------------------------------------------------------------------+
*/

/* $Id: zend_language_scanner.l,v 1.131.2.11.2.13 2007/09/09 16:33:34 iliaa Exp $ */

#define yyleng SCNG(yy_leng)
#define yytext SCNG(yy_text)
#define yytext_ptr SCNG(yy_text)
#define yyin SCNG(yy_in)
#define yyout SCNG(yy_out)
#define yy_last_accepting_state SCNG(_yy_last_accepting_state)
#define yy_last_accepting_cpos SCNG(_yy_last_accepting_cpos)
#define yy_more_flag SCNG(_yy_more_flag)
#define yy_more_len SCNG(_yy_more_len)

#define ST_IN_SCRIPTING 1

#define ST_DOUBLE_QUOTES 2

#define ST_BACKQUOTE 3

#define ST_HEREDOC 4

#define ST_START_HEREDOC 5

#define ST_END_HEREDOC 6

#define ST_LOOKING_FOR_PROPERTY 7

#define ST_LOOKING_FOR_VARNAME 8

#define ST_VAR_OFFSET 9

#define ST_COMMENT 10

#define ST_DOC_COMMENT 11

#define ST_ONE_LINE_COMMENT 12

#define YY_STACK_USED 1

#include <errno.h>
#include "zend.h"
#include "zend_alloc.h"
#include <zend_language_parser.h>
#include "zend_compile.h"
#include "zend_language_scanner.h"
#include "zend_highlight.h"
#include "zend_constants.h"
#include "zend_variables.h"
#include "zend_operators.h"
#include "zend_API.h"
#include "zend_strtod.h"
#include "zend_exceptions.h"

#ifdef HAVE_STDARG_H
# include <stdarg.h>
#endif

#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif

#define YY_DECL int lex_scan(zval *zendlval TSRMLS_DC)

#define ECHO { ZEND_WRITE( yytext, yyleng ); }

#ifdef ZTS
#  define MY_INPUT yyinput
#else
#  define MY_INPUT input
#endif


/* Globals Macros */
#define SCNG	LANG_SCNG
#ifdef ZTS
ZEND_API ts_rsrc_id language_scanner_globals_id;
#else
ZEND_API zend_scanner_globals language_scanner_globals;
#endif


#define YY_FATAL_ERROR zend_fatal_scanner_error

#define HANDLE_NEWLINES(s, l)													\
do {																			\
	char *p = (s), *boundary = p+(l);											\
																				\
	while (p<boundary) {														\
		if (*p == '\n' || (*p == '\r' && (*(p+1) != '\n'))) {					\
			CG(zend_lineno)++;													\
		}																		\
		p++;																	\
	}																			\
} while (0)

#define HANDLE_NEWLINE(c) \
{ \
	if (c == '\n' || c == '\r') { \
		CG(zend_lineno)++; \
	} \
}


#define ZEND_IS_OCT(c)  ((c)>='0' && (c)<='7')
#define ZEND_IS_HEX(c)  (((c)>='0' && (c)<='9') || ((c)>='a' && (c)<='f') || ((c)>='A' && (c)<='F'))


void zend_fatal_scanner_error(char *message)
{
	zend_error(E_COMPILE_ERROR, "%s", message);
}

BEGIN_EXTERN_C()
void startup_scanner(TSRMLS_D)
{
	CG(heredoc) = NULL;
	CG(heredoc_len) = 0;
	CG(doc_comment) = NULL;
	CG(doc_comment_len) = 0;
	SCNG(yy_start_stack_ptr) = 0;
	SCNG(yy_start_stack_depth) = 0;
	SCNG(current_buffer) = NULL;
#ifdef ZEND_MULTIBYTE
	SCNG(script_org) = NULL;
	SCNG(script_org_size) = 0;
	SCNG(script_filtered) = NULL;
	SCNG(script_filtered_size) = 0;
	SCNG(input_filter) = NULL;
	SCNG(output_filter) = NULL;
	SCNG(script_encoding) = NULL;
	SCNG(internal_encoding) = NULL;
#endif /* ZEND_MULTIBYTE */
}


void shutdown_scanner(TSRMLS_D)
{
	if (CG(heredoc)) {
		efree(CG(heredoc));
		CG(heredoc_len)=0;
	}
	if (SCNG(yy_start_stack)) {
		yy_flex_free(SCNG(yy_start_stack));
		SCNG(yy_start_stack) = NULL;
	}
	RESET_DOC_COMMENT();
	
#ifdef ZEND_MULTIBYTE
	if (SCNG(script_org)) {
		efree(SCNG(script_org));
		SCNG(script_org) = NULL;
	}
	if (SCNG(script_filtered)) {
		efree(SCNG(script_filtered));
		SCNG(script_filtered) = NULL;
	}
	SCNG(script_org_size) = 0;
	SCNG(script_filtered_size) = 0;
	SCNG(input_filter) = NULL;
	SCNG(output_filter) = NULL;
	SCNG(script_encoding) = NULL;
	SCNG(internal_encoding) = NULL;
#endif /* ZEND_MULTIBYTE */
}
END_EXTERN_C()


ZEND_API void zend_save_lexical_state(zend_lex_state *lex_state TSRMLS_DC)
{
	memcpy(&lex_state->buffer_state, &YY_CURRENT_BUFFER, sizeof(YY_BUFFER_STATE));
	lex_state->in = SCNG(yy_in);
	lex_state->state = YYSTATE;
	lex_state->filename = zend_get_compiled_filename(TSRMLS_C);
	lex_state->lineno = CG(zend_lineno);

#ifdef ZEND_MULTIBYTE
	lex_state->script_org = SCNG(script_org);
	lex_state->script_org_size = SCNG(script_org_size);
	lex_state->script_filtered = SCNG(script_filtered);
	lex_state->script_filtered_size = SCNG(script_filtered_size);
	lex_state->input_filter = SCNG(input_filter);
	lex_state->output_filter = SCNG(output_filter);
	lex_state->script_encoding = SCNG(script_encoding);
	lex_state->internal_encoding = SCNG(internal_encoding);
#endif /* ZEND_MULTIBYTE */
}

ZEND_API void zend_restore_lexical_state(zend_lex_state *lex_state TSRMLS_DC)
{
	YY_BUFFER_STATE original_buffer_state = YY_CURRENT_BUFFER;

	if (lex_state->buffer_state) {
		yy_switch_to_buffer(lex_state->buffer_state TSRMLS_CC);
	} else {
		YY_CURRENT_BUFFER = NULL;
	}

	yy_delete_buffer(original_buffer_state TSRMLS_CC);
	SCNG(yy_in) = lex_state->in;
	BEGIN(lex_state->state);
	CG(zend_lineno) = lex_state->lineno;
	zend_restore_compiled_filename(lex_state->filename TSRMLS_CC);

#ifdef ZEND_MULTIBYTE
	if (SCNG(script_org)) {
		efree(SCNG(script_org));
		SCNG(script_org) = NULL;
	}
	if (SCNG(script_filtered)) {
		efree(SCNG(script_filtered));
		SCNG(script_filtered) = NULL;
	}
	SCNG(script_org) = lex_state->script_org;
	SCNG(script_org_size) = lex_state->script_org_size;
	SCNG(script_filtered) = lex_state->script_filtered;
	SCNG(script_filtered_size) = lex_state->script_filtered_size;
	SCNG(input_filter) = lex_state->input_filter;
	SCNG(output_filter) = lex_state->output_filter;
	SCNG(script_encoding) = lex_state->script_encoding;
	SCNG(internal_encoding) = lex_state->internal_encoding;
#endif /* ZEND_MULTIBYTE */
}


BEGIN_EXTERN_C()


ZEND_API void zend_file_handle_dtor(zend_file_handle *fh)
{
	TSRMLS_FETCH();
	
	switch (fh->type) {
		case ZEND_HANDLE_FP:
			fclose(fh->handle.fp);
			break;
		case ZEND_HANDLE_STREAM:
			if (fh->handle.stream.closer) {
				fh->handle.stream.closer(fh->handle.stream.handle TSRMLS_CC);
			}
			break;
		case ZEND_HANDLE_FILENAME:
			/* We're only supposed to get here when destructing the used_files hash,
			 * which doesn't really contain open files, but references to their names/paths
			 */
			break;
	}
	if (fh->opened_path) {
		efree(fh->opened_path);
		fh->opened_path = NULL;
	}
	if (fh->free_filename && fh->filename) {
		efree(fh->filename);
		fh->filename = NULL;
	}
}


int zend_compare_file_handles(zend_file_handle *fh1, zend_file_handle *fh2)
{
	if (fh1->type != fh2->type) {
		return 0;
	}
	switch (fh1->type) {
		case ZEND_HANDLE_FP:
			return fh1->handle.fp==fh2->handle.fp;
			break;
		case ZEND_HANDLE_STREAM:
			return fh1->handle.stream.handle == fh2->handle.stream.handle;
			break;
	}
	return 0;
}


ZEND_API void zend_destroy_file_handle(zend_file_handle *file_handle TSRMLS_DC)
{
	zend_llist_del_element(&CG(open_files), file_handle, (int (*)(void *, void *)) zend_compare_file_handles);
	/* zend_file_handle_dtor() operates on the copy, so we have to NULLify the original here */
	file_handle->opened_path = NULL;
	if (file_handle->free_filename) {
		file_handle->filename = NULL;
	}
}


ZEND_API int open_file_for_scanning(zend_file_handle *file_handle TSRMLS_DC)
{
	char *file_path=NULL;

	if (FAILURE == zend_stream_fixup(file_handle TSRMLS_CC)) {
		return FAILURE;
	}

	zend_llist_add_element(&CG(open_files), file_handle);
	
	/* Reset the scanner for scanning the new file */
	SCNG(yy_in) = file_handle;

#ifdef ZEND_MULTIBYTE
	if (file_handle->handle.stream.interactive == 0) {
		if (zend_multibyte_read_script(TSRMLS_C) != 0) {
			return FAILURE;
		}

		/* force flex to use buffer only */
		SCNG(yy_in) = NULL;
		SCNG(init) = 0;
		SCNG(start) = 1;

		zend_multibyte_set_filter(NULL TSRMLS_CC);

		if (!SCNG(input_filter)) {
			SCNG(script_filtered) = (char*)emalloc(SCNG(script_org_size)+1);
			memcpy(SCNG(script_filtered), SCNG(script_org), SCNG(script_org_size)+1);
			SCNG(script_filtered_size) = SCNG(script_org_size);
		} else {
			SCNG(input_filter)(&SCNG(script_filtered), &SCNG(script_filtered_size), SCNG(script_org), SCNG(script_org_size) TSRMLS_CC);
		}

		/* flex requires doubled null */
		SCNG(script_filtered) = (char*)erealloc(SCNG(script_filtered), SCNG(script_filtered_size)+2);
		*(SCNG(script_filtered)+SCNG(script_filtered_size)) = (char)NULL;
		*(SCNG(script_filtered)+SCNG(script_filtered_size)+1) = (char)NULL;
		yy_scan_buffer(SCNG(script_filtered), SCNG(script_filtered_size)+2 TSRMLS_CC);
	} else {
		yy_switch_to_buffer(yy_create_buffer(SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC) TSRMLS_CC);
	}
#else  /* !ZEND_MULTIBYTE */
	yy_switch_to_buffer(yy_create_buffer(SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC) TSRMLS_CC);
#endif /* ZEND_MULTIBYTE */

	BEGIN(INITIAL);

	if (file_handle->opened_path) {
		file_path = file_handle->opened_path;
	} else {
		file_path = file_handle->filename;
	}

	zend_set_compiled_filename(file_path TSRMLS_CC);

	if (CG(start_lineno)) {
		CG(zend_lineno) = CG(start_lineno);
		CG(start_lineno) = 0;
	} else {
		CG(zend_lineno) = 1;
	}

	CG(increment_lineno) = 0;
	return SUCCESS;
}
END_EXTERN_C()


ZEND_API zend_op_array *compile_file(zend_file_handle *file_handle, int type TSRMLS_DC)
{
	zend_lex_state original_lex_state;
	zend_op_array *op_array = (zend_op_array *) emalloc(sizeof(zend_op_array));
	zend_op_array *original_active_op_array = CG(active_op_array);
	zend_op_array *retval=NULL;
	int compiler_result;
	zend_bool compilation_successful=0;
	znode retval_znode;
	zend_bool original_in_compilation = CG(in_compilation);

	retval_znode.op_type = IS_CONST;
	retval_znode.u.constant.type = IS_LONG;
	retval_znode.u.constant.value.lval = 1;
	retval_znode.u.constant.is_ref = 0;
	retval_znode.u.constant.refcount = 1;

	zend_save_lexical_state(&original_lex_state TSRMLS_CC);

	retval = op_array; /* success oriented */

	if (open_file_for_scanning(file_handle TSRMLS_CC)==FAILURE) {
		if (type==ZEND_REQUIRE) {
			zend_message_dispatcher(ZMSG_FAILED_REQUIRE_FOPEN, file_handle->filename);
			zend_bailout();
		} else {
			zend_message_dispatcher(ZMSG_FAILED_INCLUDE_FOPEN, file_handle->filename);
		}
		compilation_successful=0;
	} else {
		init_op_array(op_array, ZEND_USER_FUNCTION, INITIAL_OP_ARRAY_SIZE TSRMLS_CC);
		CG(in_compilation) = 1;
		CG(active_op_array) = op_array;
		compiler_result = zendparse(TSRMLS_C);
		zend_do_return(&retval_znode, 0 TSRMLS_CC);
		zend_do_handle_exception(TSRMLS_C);
		CG(in_compilation) = original_in_compilation;
		if (compiler_result==1) { /* parser error */
			zend_bailout();
		}
		compilation_successful=1;
	}

	if (retval) {
		CG(active_op_array) = original_active_op_array;
		if (compilation_successful) {
			pass_two(op_array TSRMLS_CC);
		} else {
			efree(op_array);
			retval = NULL;
		}
	}
	if (compilation_successful) {
		zend_restore_lexical_state(&original_lex_state TSRMLS_CC);
	}
	return retval;
}


zend_op_array *compile_filename(int type, zval *filename TSRMLS_DC)
{
	zend_file_handle file_handle;
	zval tmp;
	zend_op_array *retval;
	char *opened_path = NULL;

	if (filename->type != IS_STRING) {
		tmp = *filename;
		zval_copy_ctor(&tmp);
		convert_to_string(&tmp);
		filename = &tmp;
	}
	file_handle.filename = filename->value.str.val;
	file_handle.free_filename = 0;
	file_handle.type = ZEND_HANDLE_FILENAME;
	file_handle.opened_path = NULL;
	file_handle.handle.fp = NULL;

	retval = zend_compile_file(&file_handle, type TSRMLS_CC);
	if (retval && file_handle.handle.stream.handle) {
		int dummy = 1;

		if (!file_handle.opened_path) {
			file_handle.opened_path = opened_path = estrndup(filename->value.str.val, filename->value.str.len);
		}

		zend_hash_add(&EG(included_files), file_handle.opened_path, strlen(file_handle.opened_path)+1, (void *)&dummy, sizeof(int), NULL);

		if (opened_path) {
			efree(opened_path);
		}
	}
	zend_destroy_file_handle(&file_handle TSRMLS_CC);

	if (filename==&tmp) {
		zval_dtor(&tmp);
	}
	return retval;
}

ZEND_API int zend_prepare_string_for_scanning(zval *str, char *filename TSRMLS_DC)
{
	/* enforce two trailing NULLs for flex... */
	STR_REALLOC(str->value.str.val, str->value.str.len+2);

	str->value.str.val[str->value.str.len+1]=0;

	SCNG(yy_in)=NULL;

#ifdef ZEND_MULTIBYTE
	SCNG(script_org) = estrdup(str->value.str.val);
	SCNG(script_org_size) = str->value.str.len;

	zend_multibyte_set_filter(CG(internal_encoding) TSRMLS_CC);

	if (!SCNG(input_filter)) {
		SCNG(script_filtered) = (char*)emalloc(SCNG(script_org_size)+1);
		memcpy(SCNG(script_filtered), SCNG(script_org), SCNG(script_org_size)+1);
		SCNG(script_filtered_size) = SCNG(script_org_size);
	} else {
		SCNG(input_filter)(&SCNG(script_filtered), &SCNG(script_filtered_size), SCNG(script_org), SCNG(script_org_size) TSRMLS_CC);
	}

	/* flex requires doubled null */
	SCNG(script_filtered) = (char*)erealloc(SCNG(script_filtered), SCNG(script_filtered_size)+2);
	*(SCNG(script_filtered)+SCNG(script_filtered_size)) = (char)NULL;
	*(SCNG(script_filtered)+SCNG(script_filtered_size)+1) = (char)NULL;
	yy_scan_buffer(SCNG(script_filtered), SCNG(script_filtered_size)+2 TSRMLS_CC);
#else /* !ZEND_MULTIBYTE */
	yy_scan_buffer(str->value.str.val, str->value.str.len+2 TSRMLS_CC);
#endif /* ZEND_MULTIBYTE */

	zend_set_compiled_filename(filename TSRMLS_CC);
	CG(zend_lineno) = 1;
	CG(increment_lineno) = 0;
	return SUCCESS;
}


ZEND_API int zend_get_scanned_file_offset(TSRMLS_D)
{
	if (yyin) {
		int offset_in_buffer = (yy_c_buf_p - (YY_CURRENT_BUFFER)->yy_ch_buf);
		int read_bytes = SCNG(yy_n_chars);
		int offset_from_the_end = read_bytes - offset_in_buffer;

		return zend_stream_ftell(yyin TSRMLS_CC) - offset_from_the_end;
	} else {
		/* The entire file is in the buffer; probably zend multibyte
		   is enabled */
		return (yy_c_buf_p - (YY_CURRENT_BUFFER)->yy_ch_buf);
	}
}


zend_op_array *compile_string(zval *source_string, char *filename TSRMLS_DC)
{
	zend_lex_state original_lex_state;
	zend_op_array *op_array = (zend_op_array *) emalloc(sizeof(zend_op_array));
	zend_op_array *original_active_op_array = CG(active_op_array);
	zend_op_array *retval;
	zval tmp;
	int compiler_result;
	zend_bool original_in_compilation = CG(in_compilation);

	if (source_string->value.str.len==0) {
		efree(op_array);
		return NULL;
	}

	CG(in_compilation) = 1;

	tmp = *source_string;
	zval_copy_ctor(&tmp);
	convert_to_string(&tmp);
	source_string = &tmp;

	zend_save_lexical_state(&original_lex_state TSRMLS_CC);
	if (zend_prepare_string_for_scanning(source_string, filename TSRMLS_CC)==FAILURE) {
		efree(op_array);
		retval = NULL;
	} else {
		zend_bool orig_interactive = CG(interactive);
	
		CG(interactive) = 0;
		init_op_array(op_array, ZEND_EVAL_CODE, INITIAL_OP_ARRAY_SIZE TSRMLS_CC);
		CG(interactive) = orig_interactive;
		CG(active_op_array) = op_array;
		BEGIN(ST_IN_SCRIPTING);
		compiler_result = zendparse(TSRMLS_C);

#ifdef ZEND_MULTIBYTE
		if (SCNG(script_org)) {
			efree(SCNG(script_org));
			SCNG(script_org) = NULL;
		}
		if (SCNG(script_filtered)) {
			efree(SCNG(script_filtered));
			SCNG(script_filtered) = NULL;
		}
#endif /* ZEND_MULTIBYTE */

		if (compiler_result==1) {
			CG(active_op_array) = original_active_op_array;
			CG(unclean_shutdown)=1;
			retval = NULL;
		} else {
			zend_do_return(NULL, 0 TSRMLS_CC);
			zend_do_handle_exception(TSRMLS_C);
			CG(active_op_array) = original_active_op_array;
			pass_two(op_array TSRMLS_CC);
			retval = op_array;
		}
		zend_restore_lexical_state(&original_lex_state TSRMLS_CC);
	}
	zval_dtor(&tmp);
	CG(in_compilation) = original_in_compilation;
	return retval;
}


BEGIN_EXTERN_C()
int highlight_file(char *filename, zend_syntax_highlighter_ini *syntax_highlighter_ini TSRMLS_DC)
{
	zend_lex_state original_lex_state;
	zend_file_handle file_handle;

	file_handle.type = ZEND_HANDLE_FILENAME;
	file_handle.filename = filename;
	file_handle.free_filename = 0;
	file_handle.opened_path = NULL;
	zend_save_lexical_state(&original_lex_state TSRMLS_CC);
	if (open_file_for_scanning(&file_handle TSRMLS_CC)==FAILURE) {
		zend_message_dispatcher(ZMSG_FAILED_HIGHLIGHT_FOPEN, filename);
		return FAILURE;
	}
	zend_highlight(syntax_highlighter_ini TSRMLS_CC);
#ifdef ZEND_MULTIBYTE
	if (SCNG(script_org)) {
		efree(SCNG(script_org));
		SCNG(script_org) = NULL;
	}
	if (SCNG(script_filtered)) {
		efree(SCNG(script_filtered));
		SCNG(script_filtered) = NULL;
	}
#endif /* ZEND_MULTIBYTE */
	zend_destroy_file_handle(&file_handle TSRMLS_CC);
	zend_restore_lexical_state(&original_lex_state TSRMLS_CC);
	return SUCCESS;
}

int highlight_string(zval *str, zend_syntax_highlighter_ini *syntax_highlighter_ini, char *str_name TSRMLS_DC)
{
	zend_lex_state original_lex_state;
	zval tmp = *str;

	str = &tmp;
	zval_copy_ctor(str);
	zend_save_lexical_state(&original_lex_state TSRMLS_CC);
	if (zend_prepare_string_for_scanning(str, str_name TSRMLS_CC)==FAILURE) {
		return FAILURE;
	}
	BEGIN(INITIAL);
	zend_highlight(syntax_highlighter_ini TSRMLS_CC);
#ifdef ZEND_MULTIBYTE
	if (SCNG(script_org)) {
		efree(SCNG(script_org));
		SCNG(script_org) = NULL;
	}
	if (SCNG(script_filtered)) {
		efree(SCNG(script_filtered));
		SCNG(script_filtered) = NULL;
	}
#endif /* ZEND_MULTIBYTE */
	zend_restore_lexical_state(&original_lex_state TSRMLS_CC);
	zval_dtor(str);
	return SUCCESS;
}
END_EXTERN_C()

#ifdef ZEND_MULTIBYTE
BEGIN_EXTERN_C()
ZEND_API void zend_multibyte_yyinput_again(zend_encoding_filter old_input_filter, zend_encoding *old_encoding TSRMLS_DC)
{
	YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
	int offset, original_offset, length, free_flag;
	char *p;
	zend_encoding *new_encoding;

	/* calculate current position */
	offset = original_offset = yy_c_buf_p - b->yy_ch_buf;
	if (old_input_filter && original_offset > 0) {
		new_encoding = SCNG(script_encoding);
		SCNG(script_encoding) = old_encoding;
		do {
			(old_input_filter)(&p, &length, SCNG(script_org), offset TSRMLS_CC);
			if (!p) {
				SCNG(script_encoding) = new_encoding;
				return;
			}
			efree(p);
			if (length > original_offset) {
				offset--;
			} else if (length < original_offset) {
				offset++;
			}
		} while (original_offset != length);
		SCNG(script_encoding) = new_encoding;
	}

	/* convert and set */
	if (!SCNG(input_filter)) {
		length = SCNG(script_org_size)-offset-1;
		p = SCNG(script_org)+offset+1;
		free_flag = 0;
	} else {
		SCNG(input_filter)(&p, &length, SCNG(script_org)+offset+1, SCNG(script_org_size)-offset-1 TSRMLS_CC);
		free_flag = 1;
	}
	if (original_offset+length+1 > (int)b->yy_buf_size) {
		b->yy_buf_size = original_offset+length+1;
		b->yy_ch_buf = (char*)erealloc(b->yy_ch_buf, b->yy_buf_size+2);
		SCNG(script_filtered) = b->yy_ch_buf;
		SCNG(script_filtered_size) = b->yy_buf_size;
	}
	yy_c_buf_p = b->yy_ch_buf + original_offset;
	strncpy(yy_c_buf_p+1, p, length);
 	b->yy_n_chars = original_offset + length + 1;
	SCNG(yy_n_chars) = b->yy_n_chars;
	b->yy_ch_buf[SCNG(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
	b->yy_ch_buf[SCNG(yy_n_chars)+1] = YY_END_OF_BUFFER_CHAR;

	if (free_flag) {
		efree(p);
	}
}


ZEND_API int zend_multibyte_yyinput(zend_file_handle *file_handle, char *buf, size_t len TSRMLS_DC)
{
	int c = '*', n;

	if (file_handle->handle.stream.interactive == 0) {
		return zend_stream_read(file_handle, buf, len TSRMLS_CC);
	}

	/* interactive */
	if (SCNG(script_org)) {
		efree(SCNG(script_org));
	}
	if (SCNG(script_filtered)) {
		efree(SCNG(script_filtered));
	}
	SCNG(script_org) = NULL;
	SCNG(script_org_size) = 0;

	/* TODO: support widechars */

	for (n = 0; n < sizeof(buf) && (c = zend_stream_getc(yyin TSRMLS_CC)) != EOF && c != '\n'; ++n) {
		buf[n] = (char)c;
	}
	if (c == '\n') {
		buf[n++] = (char) c;
	}

	SCNG(script_org_size) = n;
	SCNG(script_org) = (char*)emalloc(SCNG(script_org_size)+1);
	memcpy(SCNG(script_org)+SCNG(script_org_size)-n, buf, n);

	return n;
}


ZEND_API int zend_multibyte_read_script(TSRMLS_D)
{
	char buf[8192];
	int n;

	if (SCNG(script_org)) {
		efree(SCNG(script_org));
	}
	SCNG(script_org) = NULL;
	SCNG(script_org_size) = 0;

	for (;;) {
		n = zend_stream_read(yyin, buf, sizeof(buf) TSRMLS_CC);
		if (n <= 0) {
			break;
		}

		SCNG(script_org_size) += n;
		if (SCNG(script_org)) {
			SCNG(script_org) = (char*)erealloc(SCNG(script_org), SCNG(script_org_size)+1);
		} else {
			SCNG(script_org) = (char*)emalloc(SCNG(script_org_size)+1);
		}
		memcpy(SCNG(script_org)+SCNG(script_org_size)-n, buf, n);
	}

	if (n < 0) {
		return -1;
	}

	if (!SCNG(script_org)) {
		SCNG(script_org) = emalloc(SCNG(script_org_size)+1);
	}
	*(SCNG(script_org)+SCNG(script_org_size)) = (char)NULL;

	return 0;
}


# define zend_copy_value(zendlval, yytext, yyleng) \
	if (SCNG(output_filter)) { \
		SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), yytext, yyleng TSRMLS_CC); \
	} else { \
		zendlval->value.str.val = (char *) estrndup(yytext, yyleng); \
		zendlval->value.str.len = yyleng; \
	}
#else /* ZEND_MULTIBYTE */
# define zend_copy_value(zendlval, yytext, yyleng) \
	zendlval->value.str.val = (char *)estrndup(yytext, yyleng); \
	zendlval->value.str.len = yyleng;
#endif /* ZEND_MULTIBYTE */

static void zend_scan_escape_string(zval *zendlval, char *str, int len, char quote_type TSRMLS_DC)
{
	register char *s, *t;
	char *end;

	ZVAL_STRINGL(zendlval, str, len, 1);

	/* convert escape sequences */
	s = t = zendlval->value.str.val;
	end = s+zendlval->value.str.len;
	while (s<end) {
		if (*s=='\\') {
			s++;
			if (s>=end) {
				continue;
			}
			switch(*s) {
				case 'n':
					*t++ = '\n';
					zendlval->value.str.len--;
					break;
				case 'r':
					*t++ = '\r';
					zendlval->value.str.len--;
					break;
				case 't':
					*t++ = '\t';
					zendlval->value.str.len--;
					break;
				case 'f':
					*t++ = '\f';
					zendlval->value.str.len--;
					break;
				case 'v':
					*t++ = '\v';
					zendlval->value.str.len--;
					break;
				case '"':
				case '`':
					if (*s != quote_type) {
						*t++ = '\\';
						*t++ = *s;
						break;
					}
				case '\\':
				case '$':
					*t++ = *s;
					zendlval->value.str.len--;
					break;
				case 'x':
				case 'X':
					if (ZEND_IS_HEX(*(s+1))) {
						char hex_buf[3] = { 0, 0, 0 };

						zendlval->value.str.len--; /* for the 'x' */

						hex_buf[0] = *(++s);
						zendlval->value.str.len--;
						if (ZEND_IS_HEX(*(s+1))) {
							hex_buf[1] = *(++s);
							zendlval->value.str.len--;
						}
						*t++ = (char) strtol(hex_buf, NULL, 16);
					} else {
						*t++ = '\\';
						*t++ = *s;
					}
					break;
				default:
					/* check for an octal */
					if (ZEND_IS_OCT(*s)) {
						char octal_buf[4] = { 0, 0, 0, 0 };

						octal_buf[0] = *s;
						zendlval->value.str.len--;
						if (ZEND_IS_OCT(*(s+1))) {
							octal_buf[1] = *(++s);
							zendlval->value.str.len--;
							if (ZEND_IS_OCT(*(s+1))) {
								octal_buf[2] = *(++s);
								zendlval->value.str.len--;
							}
						}
						*t++ = (char) strtol(octal_buf, NULL, 8);
					} else {
						*t++ = '\\';
						*t++ = *s;
					}
					break;
			}
		} else {
			*t++ = *s;
		}

		if (*s == '\n' || (*s == '\r' && (*(s+1) != '\n'))) {
			CG(zend_lineno)++;
		}
		s++;
	}
	*t = 0;

#ifdef ZEND_MULTIBYTE
	if (SCNG(output_filter)) {
		s = zendlval->value.str.val;
		SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), s, zendlval->value.str.len TSRMLS_CC);
		efree(s);
	}
#endif /* ZEND_MULTIBYTE */
}

/*
 * LITERAL_DOLLAR matches unescaped $ that aren't followed by a label character
 * or a { and therefore will be taken literally. The case of literal $ before
 * a variable or "${" is handled in a rule for each string type
 */
/*
 * Usually, HEREDOC_NEWLINE will just function like a simple NEWLINE, but some
 * special cases need to be handled. HEREDOC_CHARS doesn't allow a line to
 * match when { or $, and/or \ is at the end. (("{"*|"$"*)"\\"?) handles that,
 * along with cases where { or $, and/or \ is the ONLY thing on a line
 *
 * The other case is when a line contains a label, followed by ONLY
 * { or $, and/or \  Handled by ({LABEL}";"?((("{"+|"$"+)"\\"?)|"\\"))
 */
/*
 * This pattern is just used in the next 2 for matching { or literal $, and/or
 * \ escape sequence immediately at the beginning of a line or after a label
 */
/*
 * These 2 label-related patterns allow HEREDOC_CHARS to continue "regular"
 * matching after a newline that starts with either a non-label character or a
 * label that isn't followed by a newline. Like HEREDOC_CHARS, they won't match
 * a variable or "{$"  Matching a newline, and possibly label, up TO a variable
 * or "{$", is handled in the heredoc rules
 *
 * The HEREDOC_LABEL_NO_NEWLINE pattern (";"[^$\n\r\\{]) handles cases where ;
 * follows a label. [^a-zA-Z0-9_\x7f-\xff;$\n\r\\{] is needed to prevent a label
 * character or ; from matching on a possible (real) ending label
 */
/*
 * CHARS matches everything up to a variable or "{$"
 * {'s are matched as long as they aren't followed by a $
 * The case of { before "{$" is handled in a rule for each string type
 *
 * For heredocs, matching continues across/after newlines if/when it's known
 * that the next line doesn't contain a possible ending label
 */

/* Macros after this point can all be overridden by user definitions in
 * section 1.
 */

#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap YY_PROTO(( void ));
#else
extern int yywrap YY_PROTO(( void ));
#endif
#endif

#ifndef YY_NO_UNPUT
static void yyunput YY_PROTO(( int c, char *buf_ptr TSRMLS_DC ));
#endif

#ifndef yytext_ptr
static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
#endif

#ifdef YY_NEED_STRLEN
static int yy_flex_strlen YY_PROTO(( yyconst char * ));
#endif

#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int 3 YY_PROTO(( TSRMLS_D ));
#else
static int input YY_PROTO(( TSRMLS_D ));
#endif
#endif

#if YY_STACK_USED
#define yy_start_stack_ptr SCNG(yy_start_stack_ptr)
#define yy_start_stack_depth SCNG(yy_start_stack_depth)
#define yy_start_stack SCNG(yy_start_stack)
/*
static int yy_start_stack_ptr = 0;
static int yy_start_stack_depth = 0;
static int *yy_start_stack = 0;
*/
#ifndef YY_NO_PUSH_STATE
static void yy_push_state YY_PROTO(( int new_state TSRMLS_DC ));
#endif
#ifndef YY_NO_POP_STATE
static void yy_pop_state YY_PROTO(( TSRMLS_D ));
#endif
#ifndef YY_NO_TOP_STATE
static int yy_top_state YY_PROTO(( TSRMLS_D ));
#endif

#else
#define YY_NO_PUSH_STATE 1
#define YY_NO_POP_STATE 1
#define YY_NO_TOP_STATE 1
#endif

#ifdef YY_MALLOC_DECL
YY_MALLOC_DECL
#else
#if __STDC__
#ifndef __cplusplus
#include <stdlib.h>
#endif
#else
/* Just try to get by without declaring the routines.  This will fail
 * miserably on non-ANSI systems for which sizeof(size_t) != sizeof(int)
 * or sizeof(void*) != sizeof(int).
 */
#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. */

/* Zend file handle reading */
#ifndef ECHO
#define ECHO /* There is no output */
#endif

#ifdef ZEND_MULTIBYTE
# define YY_INPUT(buf, result, max_size) \
	if ( ((result = zend_multibyte_yyinput(yyin, buf, max_size TSRMLS_CC)) == 0) \
		&& zend_stream_ferror( yyin TSRMLS_CC) ) \
		YY_FATAL_ERROR( "input in flex scanner failed" );
#else
# define YY_INPUT(buf, result, max_size) \
	if ( ((result = zend_stream_read(yyin, buf, max_size TSRMLS_CC)) == 0) \
		  && zend_stream_ferror( yyin TSRMLS_CC) ) \
		YY_FATAL_ERROR( "input in flex scanner failed" );
#endif

#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
 * we now use fwrite().
 */
#define ECHO (void) fwrite( yytext, yyleng, 1, SCNG(yy_out) )
#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->yy_is_interactive ) \
		{ \
		int c = '*', n; \
		for ( n = 0; n < max_size && \
			     (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
			buf[n] = (char) c; \
		if ( c == '\n' ) \
			buf[n++] = (char) c; \
		if ( c == EOF && ferror( yyin ) ) \
			YY_FATAL_ERROR( "input in flex scanner failed" ); \
		result = n; \
		} \
	else \
		{ \
		errno=0; \
		while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
			{ \
			if( errno != EINTR) \
				{ \
				YY_FATAL_ERROR( "input in flex scanner failed" ); \
				break; \
				} \
			errno=0; \
			clearerr(yyin); \
			} \
		}
#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


/* Default declaration of generated scanner - a define so the user can
 * easily add parameters.
 */
#ifndef YY_DECL
#define YY_DECL int yylex YY_PROTO(( void ))
#endif

/* Code executed at the beginning of each rule, after yytext and yyleng
 * have been set up.
 */
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif

/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif

#define YY_RULE_SETUP \
	YY_USER_ACTION

YY_DECL
	{
	register yy_state_type yy_current_state;
	register char *yy_cp, *yy_bp;
	register int yy_act;




	if ( yy_init )
		{
		yy_init = 0;

#ifdef YY_USER_INIT
		YY_USER_INIT;
#endif

		if ( ! yy_start )
			yy_start = 1;	/* first start state */

#if 0
		if ( ! SCNG(yy_in) )
			SCNG(yy_in) = stdin;

		if ( ! SCNG(yy_out) )
			SCNG(yy_out) = stdout;
#endif

		if ( ! yy_current_buffer )
			yy_current_buffer =
				yy_create_buffer( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC );

		yy_load_buffer_state(TSRMLS_C);
		}

	while ( 1 )		/* loops until end-of-file is reached */
		{
		yy_more_len = 0;
		if ( yy_more_flag )
			{
			yy_more_len = yy_c_buf_p - yytext_ptr;
			yy_more_flag = 0;
			}
		yy_cp = yy_c_buf_p;

		/* Support of yytext. */
		*yy_cp = yy_hold_char;

		/* yy_bp points to the position in yy_ch_buf of the start of
		 * the current run.
		 */
		yy_bp = yy_cp;

		yy_current_state = yy_start;
yy_match:
		do
			{
			register 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 >= 1493 )
					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] != 8966 );

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
{
	return T_EXIT;
}
	YY_BREAK
case 2:
YY_RULE_SETUP
{
	return T_EXIT;
}
	YY_BREAK
case 3:
YY_RULE_SETUP
{
	return T_FUNCTION;
}
	YY_BREAK
case 4:
YY_RULE_SETUP
{
	return T_CONST;
}
	YY_BREAK
case 5:
YY_RULE_SETUP
{
	return T_RETURN;
}
	YY_BREAK
case 6:
YY_RULE_SETUP
{
	return T_TRY;
}
	YY_BREAK
case 7:
YY_RULE_SETUP
{
	return T_CATCH;
}
	YY_BREAK
case 8:
YY_RULE_SETUP
{
	return T_THROW;
}
	YY_BREAK
case 9:
YY_RULE_SETUP
{
	return T_IF;
}
	YY_BREAK
case 10:
YY_RULE_SETUP
{
	return T_ELSEIF;
}
	YY_BREAK
case 11:
YY_RULE_SETUP
{
	return T_ENDIF;
}
	YY_BREAK
case 12:
YY_RULE_SETUP
{
	return T_ELSE;
}
	YY_BREAK
case 13:
YY_RULE_SETUP
{
	return T_WHILE;
}
	YY_BREAK
case 14:
YY_RULE_SETUP
{
	return T_ENDWHILE;
}
	YY_BREAK
case 15:
YY_RULE_SETUP
{
	return T_DO;
}
	YY_BREAK
case 16:
YY_RULE_SETUP
{
	return T_FOR;
}
	YY_BREAK
case 17:
YY_RULE_SETUP
{
	return T_ENDFOR;
}
	YY_BREAK
case 18:
YY_RULE_SETUP
{
	return T_FOREACH;
}
	YY_BREAK
case 19:
YY_RULE_SETUP
{
	return T_ENDFOREACH;
}
	YY_BREAK
case 20:
YY_RULE_SETUP
{
	return T_DECLARE;
}
	YY_BREAK
case 21:
YY_RULE_SETUP
{
	return T_ENDDECLARE;
}
	YY_BREAK
case 22:
YY_RULE_SETUP
{
	return T_INSTANCEOF;
}
	YY_BREAK
case 23:
YY_RULE_SETUP
{
	return T_AS;
}
	YY_BREAK
case 24:
YY_RULE_SETUP
{
	return T_SWITCH;
}
	YY_BREAK
case 25:
YY_RULE_SETUP
{
	return T_ENDSWITCH;
}
	YY_BREAK
case 26:
YY_RULE_SETUP
{
	return T_CASE;
}
	YY_BREAK
case 27:
YY_RULE_SETUP
{
	return T_DEFAULT;
}
	YY_BREAK
case 28:
YY_RULE_SETUP
{
	return T_BREAK;
}
	YY_BREAK
case 29:
YY_RULE_SETUP
{
	return T_CONTINUE;
}
	YY_BREAK
case 30:
YY_RULE_SETUP
{
	return T_ECHO;
}
	YY_BREAK
case 31:
YY_RULE_SETUP
{
	return T_PRINT;
}
	YY_BREAK
case 32:
YY_RULE_SETUP
{
	return T_CLASS;
}
	YY_BREAK
case 33:
YY_RULE_SETUP
{
	return T_INTERFACE;
}
	YY_BREAK
case 34:
YY_RULE_SETUP
{
	return T_EXTENDS;
}
	YY_BREAK
case 35:
YY_RULE_SETUP
{
	return T_IMPLEMENTS;
}
	YY_BREAK
case 36:
YY_RULE_SETUP
{
	yy_push_state(ST_LOOKING_FOR_PROPERTY TSRMLS_CC);
	return T_OBJECT_OPERATOR;
}
	YY_BREAK
case 37:
YY_RULE_SETUP
{
	return T_OBJECT_OPERATOR;
}
	YY_BREAK
case 38:
YY_RULE_SETUP
{
	yy_pop_state(TSRMLS_C);
	zend_copy_value(zendlval, yytext, yyleng);
	zendlval->type = IS_STRING;
	return T_STRING;
}
	YY_BREAK
case 39:
YY_RULE_SETUP
{
	yyless(0);
	yy_pop_state(TSRMLS_C);
}
	YY_BREAK
case 40:
YY_RULE_SETUP
{
	return T_PAAMAYIM_NEKUDOTAYIM;
}
	YY_BREAK
case 41:
YY_RULE_SETUP
{
	return T_NEW;
}
	YY_BREAK
case 42:
YY_RULE_SETUP
{
	return T_CLONE;
}
	YY_BREAK
case 43:
YY_RULE_SETUP
{
	return T_VAR;
}
	YY_BREAK
case 44:
YY_RULE_SETUP
{
	return T_INT_CAST;
}
	YY_BREAK
case 45:
YY_RULE_SETUP
{
	return T_DOUBLE_CAST;
}
	YY_BREAK
case 46:
YY_RULE_SETUP
{
	return T_STRING_CAST;
}
	YY_BREAK
case 47:
YY_RULE_SETUP
{
	return T_STRING_CAST;
}
	YY_BREAK
case 48:
YY_RULE_SETUP
{
	return T_ARRAY_CAST;
}
	YY_BREAK
case 49:
YY_RULE_SETUP
{
	return T_OBJECT_CAST;
}
	YY_BREAK
case 50:
YY_RULE_SETUP
{
	return T_BOOL_CAST;
}
	YY_BREAK
case 51:
YY_RULE_SETUP
{
	return T_UNSET_CAST;
}
	YY_BREAK
case 52:
YY_RULE_SETUP
{
	return T_EVAL;
}
	YY_BREAK
case 53:
YY_RULE_SETUP
{
	return T_INCLUDE;
}
	YY_BREAK
case 54:
YY_RULE_SETUP
{
	return T_INCLUDE_ONCE;
}
	YY_BREAK
case 55:
YY_RULE_SETUP
{
	return T_REQUIRE;
}
	YY_BREAK
case 56:
YY_RULE_SETUP
{
	return T_REQUIRE_ONCE;
}
	YY_BREAK
case 57:
YY_RULE_SETUP
{
	return T_USE;
}
	YY_BREAK
case 58:
YY_RULE_SETUP
{
	return T_GLOBAL;
}
	YY_BREAK
case 59:
YY_RULE_SETUP
{
	return T_ISSET;
}
	YY_BREAK
case 60:
YY_RULE_SETUP
{
	return T_EMPTY;
}
	YY_BREAK
case 61:
YY_RULE_SETUP
{
	return T_HALT_COMPILER;
}
	YY_BREAK
case 62:
YY_RULE_SETUP
{
	return T_STATIC;
}
	YY_BREAK
case 63:
YY_RULE_SETUP
{
	return T_ABSTRACT;
}
	YY_BREAK
case 64:
YY_RULE_SETUP
{
	return T_FINAL;
}
	YY_BREAK
case 65:
YY_RULE_SETUP
{
	return T_PRIVATE;
}
	YY_BREAK
case 66:
YY_RULE_SETUP
{
	return T_PROTECTED;
}
	YY_BREAK
case 67:
YY_RULE_SETUP
{
	return T_PUBLIC;
}
	YY_BREAK
case 68:
YY_RULE_SETUP
{
	return T_UNSET;
}
	YY_BREAK
case 69:
YY_RULE_SETUP
{
	return T_DOUBLE_ARROW;
}
	YY_BREAK
case 70:
YY_RULE_SETUP
{
	return T_LIST;
}
	YY_BREAK
case 71:
YY_RULE_SETUP
{
	return T_ARRAY;
}
	YY_BREAK
case 72:
YY_RULE_SETUP
{
	return T_INC;
}
	YY_BREAK
case 73:
YY_RULE_SETUP
{
	return T_DEC;
}
	YY_BREAK
case 74:
YY_RULE_SETUP
{
	return T_IS_IDENTICAL;
}
	YY_BREAK
case 75:
YY_RULE_SETUP
{
	return T_IS_NOT_IDENTICAL;
}
	YY_BREAK
case 76:
YY_RULE_SETUP
{
	return T_IS_EQUAL;
}
	YY_BREAK
case 77:
YY_RULE_SETUP
{
	return T_IS_NOT_EQUAL;
}
	YY_BREAK
case 78:
YY_RULE_SETUP
{
	return T_IS_SMALLER_OR_EQUAL;
}
	YY_BREAK
case 79:
YY_RULE_SETUP
{
	return T_IS_GREATER_OR_EQUAL;
}
	YY_BREAK
case 80:
YY_RULE_SETUP
{
	return T_PLUS_EQUAL;
}
	YY_BREAK
case 81:
YY_RULE_SETUP
{
	return T_MINUS_EQUAL;
}
	YY_BREAK
case 82:
YY_RULE_SETUP
{
	return T_MUL_EQUAL;
}
	YY_BREAK
case 83:
YY_RULE_SETUP
{
	return T_DIV_EQUAL;
}
	YY_BREAK
case 84:
YY_RULE_SETUP
{
	return T_CONCAT_EQUAL;
}
	YY_BREAK
case 85:
YY_RULE_SETUP
{
	return T_MOD_EQUAL;
}
	YY_BREAK
case 86:
YY_RULE_SETUP
{
	return T_SL_EQUAL;
}
	YY_BREAK
case 87:
YY_RULE_SETUP
{
	return T_SR_EQUAL;
}
	YY_BREAK
case 88:
YY_RULE_SETUP
{
	return T_AND_EQUAL;
}
	YY_BREAK
case 89:
YY_RULE_SETUP
{
	return T_OR_EQUAL;
}
	YY_BREAK
case 90:
YY_RULE_SETUP
{
	return T_XOR_EQUAL;
}
	YY_BREAK
case 91:
YY_RULE_SETUP
{
	return T_BOOLEAN_OR;
}
	YY_BREAK
case 92:
YY_RULE_SETUP
{
	return T_BOOLEAN_AND;
}
	YY_BREAK
case 93:
YY_RULE_SETUP
{
	return T_LOGICAL_OR;
}
	YY_BREAK
case 94:
YY_RULE_SETUP
{
	return T_LOGICAL_AND;
}
	YY_BREAK
case 95:
YY_RULE_SETUP
{
	return T_LOGICAL_XOR;
}
	YY_BREAK
case 96:
YY_RULE_SETUP
{
	return T_SL;
}
	YY_BREAK
case 97:
YY_RULE_SETUP
{
	return T_SR;
}
	YY_BREAK
case 98:
YY_RULE_SETUP
{
	return yytext[0];
}
	YY_BREAK
case 99:
YY_RULE_SETUP
{
	yy_push_state(ST_IN_SCRIPTING TSRMLS_CC);
	return '{';
}
	YY_BREAK
case 100:
YY_RULE_SETUP
{
	yy_push_state(ST_LOOKING_FOR_VARNAME TSRMLS_CC);
	return T_DOLLAR_OPEN_CURLY_BRACES;
}
	YY_BREAK
case 101:
YY_RULE_SETUP
{
	RESET_DOC_COMMENT();
	/* This is a temporary fix which is dependant on flex and it's implementation */
	if (yy_start_stack_ptr) {
		yy_pop_state(TSRMLS_C);
	}
	return '}';
}
	YY_BREAK
case 102:
YY_RULE_SETUP
{
	zend_copy_value(zendlval, yytext, yyleng);
	zendlval->type = IS_STRING;
	yy_pop_state(TSRMLS_C);
	yy_push_state(ST_IN_SCRIPTING TSRMLS_CC);
	return T_STRING_VARNAME;
}
	YY_BREAK
case 103:
YY_RULE_SETUP
{
	yyless(0);
	yy_pop_state(TSRMLS_C);
	yy_push_state(ST_IN_SCRIPTING TSRMLS_CC);
}
	YY_BREAK
case 104:
YY_RULE_SETUP
{
	if (yyleng < MAX_LENGTH_OF_LONG - 1) { /* Won't overflow */
		zendlval->value.lval = strtol(yytext, NULL, 0);
	} else {
		errno = 0;
		zendlval->value.lval = strtol(yytext, NULL, 0);
		if (errno == ERANGE) { /* Overflow */
			if (yytext[0] == '0') { /* octal overflow */
				zendlval->value.dval = zend_oct_strtod(yytext, NULL);
			} else {
				zendlval->value.dval = zend_strtod(yytext, NULL);
			}
			zendlval->type = IS_DOUBLE;
			return T_DNUMBER;
		}
	}

	zendlval->type = IS_LONG;
	return T_LNUMBER;
}
	YY_BREAK
case 105:
YY_RULE_SETUP
{
	char *hex = yytext + 2; /* Skip "0x" */
	int len = yyleng - 2;

	/* Skip any leading 0s */
	while (*hex == '0') {
		hex++;
		len--;
	}

	if (len < SIZEOF_LONG * 2 || (len == SIZEOF_LONG * 2 && *hex <= '7')) {
		zendlval->value.lval = strtol(hex, NULL, 16);
		zendlval->type = IS_LONG;
		return T_LNUMBER;
	} else {
		zendlval->value.dval = zend_hex_strtod(hex, NULL);
		zendlval->type = IS_DOUBLE;
		return T_DNUMBER;
	}
}
	YY_BREAK
case 106:
YY_RULE_SETUP
{ /* Offset could be treated as a long */
	if (yyleng < MAX_LENGTH_OF_LONG - 1 || (yyleng == MAX_LENGTH_OF_LONG - 1 && strcmp(yytext, long_min_digits) < 0)) {
		zendlval->value.lval = strtol(yytext, NULL, 10);
		zendlval->type = IS_LONG;
	} else {
		zendlval->value.str.val = (char *)estrndup(yytext, yyleng);
		zendlval->value.str.len = yyleng;
		zendlval->type = IS_STRING;
	}
	return T_NUM_STRING;
}
	YY_BREAK
case 107:
YY_RULE_SETUP
{ /* Offset must be treated as a string */
	zendlval->value.str.val = (char *)estrndup(yytext, yyleng);
	zendlval->value.str.len = yyleng;
	zendlval->type = IS_STRING;
	return T_NUM_STRING;
}
	YY_BREAK
case 108:
YY_RULE_SETUP
{
	zendlval->value.dval = zend_strtod(yytext, NULL);
	zendlval->type = IS_DOUBLE;
	return T_DNUMBER;
}
	YY_BREAK
case 109:
YY_RULE_SETUP
{
	char *class_name = NULL;

	if (CG(active_class_entry)) {
		class_name = CG(active_class_entry)->name;
	}

	if (!class_name) {
		class_name = "";
	}
	zendlval->value.str.len = strlen(class_name);
	zendlval->value.str.val = estrndup(class_name, zendlval->value.str.len);
	zendlval->type = IS_STRING;
	return T_CLASS_C;
}
	YY_BREAK
case 110:
YY_RULE_SETUP
{
	char *func_name = NULL;

	if (CG(active_op_array)) {
		func_name = CG(active_op_array)->function_name;
	}

	if (!func_name) {
		func_name = "";
	}
	zendlval->value.str.len = strlen(func_name);
	zendlval->value.str.val = estrndup(func_name, zendlval->value.str.len);
	zendlval->type = IS_STRING;
	return T_FUNC_C;
}
	YY_BREAK
case 111:
YY_RULE_SETUP
{
	char *class_name = CG(active_class_entry) ? CG(active_class_entry)->name : NULL;
	char *func_name = CG(active_op_array)? CG(active_op_array)->function_name : NULL;
	size_t len = 0;

	if (class_name) {
		len += strlen(class_name) + 2;
	}
	if (func_name) {
		len += strlen(func_name);
	}

	zendlval->value.str.len = zend_spprintf(&zendlval->value.str.val, 0, "%s%s%s", 
		class_name ? class_name : "",
		class_name && func_name ? "::" : "",
		func_name ? func_name : ""
		);
	zendlval->type = IS_STRING;
	return T_METHOD_C;
}
	YY_BREAK
case 112:
YY_RULE_SETUP
{
	zendlval->value.lval = CG(zend_lineno);
	zendlval->type = IS_LONG;
	return T_LINE;
}
	YY_BREAK
case 113:
YY_RULE_SETUP
{
	char *filename = zend_get_compiled_filename(TSRMLS_C);

	if (!filename) {
		filename = "";
	}
	zendlval->value.str.len = strlen(filename);
	zendlval->value.str.val = estrndup(filename, zendlval->value.str.len);
	zendlval->type = IS_STRING;
	return T_FILE;
}
	YY_BREAK
case 114:
YY_RULE_SETUP
{
#ifdef ZEND_MULTIBYTE
	if (SCNG(output_filter)) {
		int readsize;
		readsize = SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), yytext, yyleng TSRMLS_CC);
		if (readsize < yyleng) {
			yyless(readsize);
		}
	} else {
		zendlval->value.str.val = (char *) estrndup(yytext, yyleng);
		zendlval->value.str.len = yyleng;
	}
#else /* !ZEND_MULTIBYTE */
	zendlval->value.str.val = (char *) estrndup(yytext, yyleng);
	zendlval->value.str.len = yyleng;
#endif /* ZEND_MULTIBYTE */
	zendlval->type = IS_STRING;
	HANDLE_NEWLINES(yytext, yyleng);
	return T_INLINE_HTML;
}
	YY_BREAK
case 115:
YY_RULE_SETUP
{
	HANDLE_NEWLINES(yytext, yyleng);
	if (CG(short_tags) || yyleng>2) { /* yyleng>2 means it's not <? but <script> */
		zendlval->value.str.val = yytext; /* no copying - intentional */
		zendlval->value.str.len = yyleng;
		zendlval->type = IS_STRING;
		BEGIN(ST_IN_SCRIPTING);
		return T_OPEN_TAG;
	} else {
		zendlval->value.str.val = (char *) estrndup(yytext, yyleng);
		zendlval->value.str.len = yyleng;
		zendlval->type = IS_STRING;
		return T_INLINE_HTML;
	}
}
	YY_BREAK
case 116:
YY_RULE_SETUP
{
	if ((yytext[1]=='%' && CG(asp_tags)) || (yytext[1]=='?' && CG(short_tags))) {
		zendlval->value.str.val = yytext; /* no copying - intentional */
		zendlval->value.str.len = yyleng;
		zendlval->type = IS_STRING;
		BEGIN(ST_IN_SCRIPTING);
		return T_OPEN_TAG_WITH_ECHO;
	} else {
		zendlval->value.str.val = (char *) estrndup(yytext, yyleng);
		zendlval->value.str.len = yyleng;
		zendlval->type = IS_STRING;
		return T_INLINE_HTML;
	}
}
	YY_BREAK
case 117:
YY_RULE_SETUP
{
	if (CG(asp_tags)) {
		zendlval->value.str.val = yytext; /* no copying - intentional */
		zendlval->value.str.len = yyleng;
		zendlval->type = IS_STRING;
		BEGIN(ST_IN_SCRIPTING);
		return T_OPEN_TAG;
	} else {
		zendlval->value.str.val = (char *) estrndup(yytext, yyleng);
		zendlval->value.str.len = yyleng;
		zendlval->type = IS_STRING;
		return T_INLINE_HTML;
	}
}
	YY_BREAK
case 118:
YY_RULE_SETUP
{
	zendlval->value.str.val = yytext; /* no copying - intentional */
	zendlval->value.str.len = yyleng;
	zendlval->type = IS_STRING;
	HANDLE_NEWLINE(yytext[yyleng-1]);
	BEGIN(ST_IN_SCRIPTING);
	return T_OPEN_TAG;
}
	YY_BREAK
case 119:
YY_RULE_SETUP
{
	zend_copy_value(zendlval, (yytext+1), (yyleng-1));
	zendlval->type = IS_STRING;
	return T_VARIABLE;
}
	YY_BREAK

/* Make sure a label character follows "->", otherwise there is no property
 * and "->" will be taken literally
 */
case 120:
YY_RULE_SETUP
{
	yyless(yyleng - 3);
	yy_push_state(ST_LOOKING_FOR_PROPERTY TSRMLS_CC);
	zend_copy_value(zendlval, (yytext+1), (yyleng-1));
	zendlval->type = IS_STRING;
	return T_VARIABLE;
}
	YY_BREAK

/* A [ always designates a variable offset, regardless of what follows
 */
case 121:
YY_RULE_SETUP
{
	yyless(yyleng - 1);
	yy_push_state(ST_VAR_OFFSET TSRMLS_CC);
	zend_copy_value(zendlval, (yytext+1), (yyleng-1));
	zendlval->type = IS_STRING;
	return T_VARIABLE;
}
	YY_BREAK
case 122:
YY_RULE_SETUP
{
	yy_pop_state(TSRMLS_C);
	return ']';
}
	YY_BREAK
case 123:
YY_RULE_SETUP
{
	/* Only '[' can be valid, but returning other tokens will allow a more explicit parse error */
	return yytext[0];
}
	YY_BREAK
case 124:
YY_RULE_SETUP
{
	/* Invalid rule to return a more explicit parse error with proper line number */
	yyless(0);
	yy_pop_state(TSRMLS_C);
	ZVAL_EMPTY_STRING(zendlval); /* Empty since it won't be used */
	return T_ENCAPSED_AND_WHITESPACE;
}
	YY_BREAK
case 125:
YY_RULE_SETUP
{
	zend_copy_value(zendlval, yytext, yyleng);
	zendlval->type = IS_STRING;
	return T_STRING;
}
	YY_BREAK
case 126:
YY_RULE_SETUP
{
	zendlval->value.str.val = yytext; /* no copying - intentional */
	zendlval->value.str.len = yyleng;
	zendlval->type = IS_STRING;
	HANDLE_NEWLINES(yytext, yyleng);
	return T_WHITESPACE;
}
	YY_BREAK
case 127:
YY_RULE_SETUP
{
	BEGIN(ST_ONE_LINE_COMMENT);
	yymore();
}
	YY_BREAK
case 128:
YY_RULE_SETUP
{
	yymore();
}
	YY_BREAK
case 129:
YY_RULE_SETUP
{
	switch (yytext[yyleng-1]) {
		case '?': case '%': case '>':
			yyless(yyleng-1);
			yymore();
			break;
		case '\n':
			CG(zend_lineno)++;
			/* intentional fall through */
		default:
			zendlval->value.str.val = yytext; /* no copying - intentional */
			zendlval->value.str.len = yyleng;
			zendlval->type = IS_STRING;
			BEGIN(ST_IN_SCRIPTING);
			return T_COMMENT;
	}
}
	YY_BREAK
case 130:
YY_RULE_SETUP
{
	zendlval->value.str.val = yytext; /* no copying - intentional */
	zendlval->value.str.len = yyleng;
	zendlval->type = IS_STRING;
	BEGIN(ST_IN_SCRIPTING);
	CG(zend_lineno)++;
	return T_COMMENT;
}
	YY_BREAK
case 131:
YY_RULE_SETUP
{
    if (CG(asp_tags) || yytext[yyleng-2] != '%') { /* asp comment? */
		zendlval->value.str.val = yytext; /* no copying - intentional */
		zendlval->value.str.len = yyleng-2;
		zendlval->type = IS_STRING;
		yyless(yyleng-2);
		BEGIN(ST_IN_SCRIPTING);
		return T_COMMENT;
	} else {
		yymore();
	}
}
	YY_BREAK
case 132:
YY_RULE_SETUP
{
	CG(comment_start_line) = CG(zend_lineno);
	RESET_DOC_COMMENT();
	BEGIN(ST_DOC_COMMENT);
	yymore();
}
	YY_BREAK
case 133:
YY_RULE_SETUP
{
	CG(comment_start_line) = CG(zend_lineno);
	BEGIN(ST_COMMENT);
	yymore();
}
	YY_BREAK
case 134:
YY_RULE_SETUP
{
	yymore();
}
	YY_BREAK
case 135:
YY_RULE_SETUP
{
	CG(doc_comment) = estrndup(yytext, yyleng);
	CG(doc_comment_len) = yyleng;
	HANDLE_NEWLINES(yytext, yyleng);
	BEGIN(ST_IN_SCRIPTING);
	return T_DOC_COMMENT;
}
	YY_BREAK
case 136:
YY_RULE_SETUP
{
	HANDLE_NEWLINES(yytext, yyleng);
	BEGIN(ST_IN_SCRIPTING);
	return T_COMMENT;
}
	YY_BREAK
case 137:
YY_RULE_SETUP
{
	yymore();
}
	YY_BREAK
case 138:
YY_RULE_SETUP
{
	zendlval->value.str.val = yytext; /* no copying - intentional */
	zendlval->value.str.len = yyleng;
	zendlval->type = IS_STRING;
	BEGIN(INITIAL);
	return T_CLOSE_TAG;  /* implicit ';' at php-end tag */
}
	YY_BREAK
case 139:
YY_RULE_SETUP
{
	if (CG(asp_tags)) {
		BEGIN(INITIAL);
		zendlval->value.str.len = yyleng;
		zendlval->type = IS_STRING;
		zendlval->value.str.val = yytext; /* no copying - intentional */
		return T_CLOSE_TAG;  /* implicit ';' at php-end tag */
	} else {
		yyless(1);
		return yytext[0];
	}
}
	YY_BREAK

/* ("{"*|"$"*) handles { or $ at the end of a string (or the entire contents)
 */
case 140:
YY_RULE_SETUP
{
	int bprefix = (yytext[0] != '"') ? 1 : 0;

	zend_scan_escape_string(zendlval, yytext+bprefix+1, yyleng-bprefix-2, '"' TSRMLS_CC);
	return T_CONSTANT_ENCAPSED_STRING;
}
	YY_BREAK
case 141:
YY_RULE_SETUP
{
	register char *s, *t;
	char *end;
	int bprefix = (yytext[0] != '\'') ? 1 : 0;

	zendlval->value.str.val = estrndup(yytext+bprefix+1, yyleng-bprefix-2);
	zendlval->value.str.len = yyleng-bprefix-2;
	zendlval->type = IS_STRING;

	/* convert escape sequences */
	s = t = zendlval->value.str.val;
	end = s+zendlval->value.str.len;
	while (s<end) {
		if (*s=='\\') {
			s++;
			if (s>=end) {
				continue;
			}
			switch(*s) {
				case '\\':
				case '\'':
					*t++ = *s;
					zendlval->value.str.len--;
					break;
				default:
					*t++ = '\\';
					*t++ = *s;
					break;
			}
		} else {
			*t++ = *s;
		}

		if (*s == '\n' || (*s == '\r' && (*(s+1) != '\n'))) {
			CG(zend_lineno)++;
		}
		s++;
	}
	*t = 0;

#ifdef ZEND_MULTIBYTE
	if (SCNG(output_filter)) {
		s = zendlval->value.str.val;
		SCNG(output_filter)(&(zendlval->value.str.val), &(zendlval->value.str.len), s, zendlval->value.str.len TSRMLS_CC);
		efree(s);
	}
#endif /* ZEND_MULTIBYTE */

	return T_CONSTANT_ENCAPSED_STRING;
}
	YY_BREAK
case 142:
YY_RULE_SETUP
{
	BEGIN(ST_DOUBLE_QUOTES);
	return '"';
}
	YY_BREAK
case 143:
YY_RULE_SETUP
{
	char *s;
	int bprefix = (yytext[0] != '<') ? 1 : 0;

	CG(zend_lineno)++;
	CG(heredoc_len) = yyleng-bprefix-3-1-(yytext[yyleng-2]=='\r'?1:0);
	s = yytext+bprefix+3;
	while ((*s == ' ') || (*s == '\t')) {
		s++;
		CG(heredoc_len)--;
	}
	CG(heredoc) = estrndup(s, CG(heredoc_len));
	BEGIN(ST_START_HEREDOC);
	return T_START_HEREDOC;
}
	YY_BREAK
case 144:
YY_RULE_SETUP
{
	BEGIN(ST_BACKQUOTE);
	return '`';
}
	YY_BREAK
case 145:
YY_RULE_SETUP
{
	yyless(0);
	BEGIN(ST_HEREDOC);
}
	YY_BREAK
case 146:
YY_RULE_SETUP
{
	int label_len = yyleng - 1;

	if (yytext[label_len-1]==';') {
		label_len--;
	}

	yyless(label_len);

	if (label_len==CG(heredoc_len) && !memcmp(yytext, CG(heredoc), label_len)) {
		zendlval->value.str.val = CG(heredoc);
		zendlval->value.str.len = label_len;
		CG(heredoc)=NULL;
		CG(heredoc_len)=0;
		BEGIN(ST_IN_SCRIPTING);
		return T_END_HEREDOC;
	} else {
		yymore();
		BEGIN(ST_HEREDOC);
	}
}
	YY_BREAK

/* Match everything up to and including a possible ending label, so if the label
 * doesn't match, it's kept with the rest of the string
 *
 * {HEREDOC_NEWLINE}+ handles the case of more than one newline sequence that
 * couldn't be matched with HEREDOC_CHARS, because of the following label
 */
case 147:
YY_RULE_SETUP
{
	char *end = yytext + yyleng - 1;

	if (end[-1] == ';') {
		end--;
		yyleng--;
	}

	if (yyleng > CG(heredoc_len) && !memcmp(end - CG(heredoc_len), CG(heredoc), CG(heredoc_len))) {
		int len = yyleng - CG(heredoc_len) - 2; /* 2 for newline before and after label */

		if (len > 0 && yytext[len - 1] == '\r' && yytext[len] == '\n') {
			len--;
		}

		/* Go back before last label char, to match in ST_END_HEREDOC state */
		yyless(yyleng - 2);

		/* Subtract the remaining label length. yyleng must include newline
		 * before label, for zend_highlight/strip, tokenizer, etc. */
		yyleng -= CG(heredoc_len) - 1;

		CG(increment_lineno) = 1; /* For newline before label */
		BEGIN(ST_END_HEREDOC);
		zend_scan_escape_string(zendlval, yytext, len, 0 TSRMLS_CC);
		return T_ENCAPSED_AND_WHITESPACE;
	} else {
		/* Go back to end of label, so the next match works correctly in case of
		 * a variable or another label at the beginning of the next line */
		yyless(yyleng - 1);
		yymore();
	}
}
	YY_BREAK
case 148:
YY_RULE_SETUP
{
	zendlval->value.str.val = CG(heredoc);
	zendlval->value.str.len = CG(heredoc_len);
	yytext = zendlval->value.str.val;
	yyleng = zendlval->value.str.len;
	CG(heredoc) = NULL;
	CG(heredoc_len) = 0;
	BEGIN(ST_IN_SCRIPTING);
	return T_END_HEREDOC;
}
	YY_BREAK
case 149:
YY_RULE_SETUP
{
	zendlval->value.lval = (long) '{';
	yy_push_state(ST_IN_SCRIPTING TSRMLS_CC);
	yyless(1);
	return T_CURLY_OPEN;
}
	YY_BREAK
case 150:
YY_RULE_SETUP
{
	zend_scan_escape_string(zendlval, yytext, yyleng, '"' TSRMLS_CC);
	return T_ENCAPSED_AND_WHITESPACE;
}
	YY_BREAK

/* "{"{2,}|"$"{2,} handles { before "{$" or literal $ before a variable or "${"
 * (("{"+|"$"+)["]) handles { or $ at the end of a string
 *
 * Same for backquotes and heredocs, except the second case doesn't apply to
 * heredocs. yyless(yyleng - 1) is used to correct taking one character too many
 */
case 151:
YY_RULE_SETUP
{
	yyless(yyleng - 1);
	zend_scan_escape_string(zendlval, yytext, yyleng, '"' TSRMLS_CC);
	return T_ENCAPSED_AND_WHITESPACE;
}
	YY_BREAK
case 152:
YY_RULE_SETUP
{
	zend_scan_escape_string(zendlval, yytext, yyleng, '`' TSRMLS_CC);
	return T_ENCAPSED_AND_WHITESPACE;
}
	YY_BREAK
case 153:
YY_RULE_SETUP
{
	yyless(yyleng - 1);
	zend_scan_escape_string(zendlval, yytext, yyleng, '`' TSRMLS_CC);
	return T_ENCAPSED_AND_WHITESPACE;
}
	YY_BREAK

/* ({HEREDOC_NEWLINE}+({LABEL}";"?)?)? handles the possible case of newline
 * sequences, possibly followed by a label, that couldn't be matched with
 * HEREDOC_CHARS because of a following variable or "{$"
 *
 * This doesn't affect real ending labels, as they are followed by a newline,
 * which will result in a longer match for the correct rule if present
 */
case 154:
YY_RULE_SETUP
{
	zend_scan_escape_string(zendlval, yytext, yyleng, 0 TSRMLS_CC);
	return T_ENCAPSED_AND_WHITESPACE;
}
	YY_BREAK
case 155:
YY_RULE_SETUP
{
	yyless(yyleng - 1);
	zend_scan_escape_string(zendlval, yytext, yyleng, 0 TSRMLS_CC);
	return T_ENCAPSED_AND_WHITESPACE;
}
	YY_BREAK
case 156:
YY_RULE_SETUP
{
	BEGIN(ST_IN_SCRIPTING);
	return '"';
}
	YY_BREAK
case 157:
YY_RULE_SETUP
{
	BEGIN(ST_IN_SCRIPTING);
	return '`';
}
	YY_BREAK
case YY_STATE_EOF(ST_COMMENT):
case YY_STATE_EOF(ST_DOC_COMMENT):
{
	zend_error(E_COMPILE_WARNING,"Unterminated comment starting line %d", CG(comment_start_line));
	return 0;
}
	YY_BREAK
case 158:
YY_RULE_SETUP
{
	zend_error(E_COMPILE_WARNING,"Unexpected character in input:  '%c' (ASCII=%d) state=%d", yytext[0], yytext[0], YYSTATE);
}
	YY_BREAK
case 159:
YY_RULE_SETUP
ECHO;
	YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(ST_IN_SCRIPTING):
case YY_STATE_EOF(ST_DOUBLE_QUOTES):
case YY_STATE_EOF(ST_BACKQUOTE):
case YY_STATE_EOF(ST_HEREDOC):
case YY_STATE_EOF(ST_START_HEREDOC):
case YY_STATE_EOF(ST_END_HEREDOC):
case YY_STATE_EOF(ST_LOOKING_FOR_PROPERTY):
case YY_STATE_EOF(ST_LOOKING_FOR_VARNAME):
case YY_STATE_EOF(ST_VAR_OFFSET):
case YY_STATE_EOF(ST_ONE_LINE_COMMENT):
	yyterminate();

	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;

		if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
			{
			/* We're scanning a new file or input source.  It's
			 * possible that this happened because the user
			 * just pointed yyin at a new source and called
			 * yylex().  If so, then we have to assure
			 * consistency between yy_current_buffer and our
			 * globals.  Here is the right place to do so, because
			 * this is the first action (other than possibly a
			 * back-up) that will match for the new input source.
			 */
			SCNG(yy_n_chars) = yy_current_buffer->yy_n_chars;
			yy_current_buffer->yy_input_file = SCNG(yy_in);
			yy_current_buffer->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->yy_ch_buf[SCNG(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(TSRMLS_C);

			/* 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 TSRMLS_CC );

			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(TSRMLS_C) )
			{
			case EOB_ACT_END_OF_FILE:
				{
				yy_did_buffer_switch_on_eof = 0;

				if ( yywrap() )
					{
					/* Note: because we've taken care in
					 * yy_get_next_buffer() to have set up
					 * yytext, we can now set up
					 * yy_c_buf_p so that if some total
					 * hoser (like flex itself) wants to
					 * call the scanner after we return the
					 * YY_NULL, it'll still work - another
					 * YY_NULL will get returned.
					 */
					yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;

					yy_act = YY_STATE_EOF(YY_START);
					goto do_action;
					}

				else
					{
					if ( ! yy_did_buffer_switch_on_eof )
						YY_NEW_FILE;
					}
				break;
				}

			case EOB_ACT_CONTINUE_SCAN:
				yy_c_buf_p =
					yytext_ptr + yy_amount_of_matched_text;

				yy_current_state = yy_get_previous_state(TSRMLS_C);

				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->yy_ch_buf[SCNG(yy_n_chars)];

				yy_current_state = yy_get_previous_state(TSRMLS_C);

				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 yylex */


/* yy_get_next_buffer - try to read in a new buffer
 *
 * Returns a code representing an action:
 *	EOB_ACT_LAST_MATCH -
 *	EOB_ACT_CONTINUE_SCAN - continue scanning from current position
 *	EOB_ACT_END_OF_FILE - end of file
 */

static int yy_get_next_buffer(TSRMLS_D)
	{
	register char *dest = yy_current_buffer->yy_ch_buf;
	register char *source = yytext_ptr;
	register int number_to_move, i;
	int ret_val;

	if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[SCNG(yy_n_chars) + 1] )
		YY_FATAL_ERROR(
		"fatal flex scanner internal error--end of buffer missed" );

	if ( yy_current_buffer->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->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->yy_n_chars = SCNG(yy_n_chars) = 0;

	else
		{
		int num_to_read =
			yy_current_buffer->yy_buf_size - number_to_move - 1;

		while ( num_to_read <= 0 )
			{ /* Not enough room in the buffer - grow it. */
#ifdef YY_USES_REJECT
			YY_FATAL_ERROR(
"input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
#else

			/* just a shorter name for the current buffer */
			YY_BUFFER_STATE b = yy_current_buffer;

			int yy_c_buf_p_offset =
				(int) (yy_c_buf_p - b->yy_ch_buf);

			if ( b->yy_is_our_buffer )
				{
				int new_size = b->yy_buf_size * 2;

				if ( new_size <= 0 )
					b->yy_buf_size += b->yy_buf_size / 8;
				else
					b->yy_buf_size *= 2;

				b->yy_ch_buf = (char *)
					/* Include room in for 2 EOB chars. */
					yy_flex_realloc( (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->yy_buf_size -
						number_to_move - 1;
#endif
			}

		if ( num_to_read > YY_READ_BUF_SIZE )
			num_to_read = YY_READ_BUF_SIZE;

		/* Read in more data. */
		YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
			SCNG(yy_n_chars), num_to_read );

		yy_current_buffer->yy_n_chars = SCNG(yy_n_chars);
		}

	if ( SCNG(yy_n_chars) == 0 )
		{
		if ( number_to_move == YY_MORE_ADJ )
			{
			ret_val = EOB_ACT_END_OF_FILE;
			yyrestart( SCNG(yy_in) TSRMLS_CC );
			}

		else
			{
			ret_val = EOB_ACT_LAST_MATCH;
			yy_current_buffer->yy_buffer_status =
				YY_BUFFER_EOF_PENDING;
			}
		}

	else
		ret_val = EOB_ACT_CONTINUE_SCAN;

	SCNG(yy_n_chars) += number_to_move;
	yy_current_buffer->yy_ch_buf[SCNG(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
	yy_current_buffer->yy_ch_buf[SCNG(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;

	yytext_ptr = &yy_current_buffer->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(TSRMLS_D)
	{
	register yy_state_type yy_current_state;
	register char *yy_cp;

	yy_current_state = yy_start;

	for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
		{
		register 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 >= 1493 )
				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 );
 */

#ifdef YY_USE_PROTOS
static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state TSRMLS_DC )
#else
static yy_state_type yy_try_NUL_trans( yy_current_state TSRMLS_CC )
yy_state_type yy_current_state;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif
	{
	register int yy_is_jam;
	register char *yy_cp = yy_c_buf_p;

	register 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 >= 1493 )
			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 == 1492);

	return yy_is_jam ? 0 : yy_current_state;
	}


#ifndef YY_NO_UNPUT
#ifdef YY_USE_PROTOS
static void yyunput( int c, register char *yy_bp TSRMLS_DC )
#else
static void yyunput( c, yy_bp TSRMLS_CC )
int c;
register char *yy_bp;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif
	{
	register char *yy_cp = yy_c_buf_p;

	/* undo effects of setting up yytext */
	*yy_cp = yy_hold_char;

	if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
		{ /* need to shift things up to make room */
		/* +2 for EOB chars. */
		register int number_to_move = SCNG(yy_n_chars) + 2;
		register char *dest = &yy_current_buffer->yy_ch_buf[
					yy_current_buffer->yy_buf_size + 2];
		register char *source =
				&yy_current_buffer->yy_ch_buf[number_to_move];

		while ( source > yy_current_buffer->yy_ch_buf )
			*--dest = *--source;

		yy_cp += (int) (dest - source);
		yy_bp += (int) (dest - source);
		yy_current_buffer->yy_n_chars =
			SCNG(yy_n_chars) = yy_current_buffer->yy_buf_size;

		if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
			YY_FATAL_ERROR( "flex scanner push-back overflow" );
		}

	*--yy_cp = (char) c;


	yytext_ptr = yy_bp;
	yy_hold_char = *yy_cp;
	yy_c_buf_p = yy_cp;
	}
#endif	/* ifndef YY_NO_UNPUT */


#ifdef __cplusplus
static int yyinput(TSRMLS_D)
#else
static int input(TSRMLS_C)
#ifdef ZTS
void ***tsrm_ls;
#endif
#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->yy_ch_buf[SCNG(yy_n_chars)] )
			/* This was really a NUL. */
			*yy_c_buf_p = '\0';

		else
			{ /* need more input */
			int offset = yy_c_buf_p - yytext_ptr;
			++yy_c_buf_p;

			switch ( yy_get_next_buffer(TSRMLS_C) )
				{
				case EOB_ACT_LAST_MATCH:
					/* This happens because yy_g_n_b()
					 * sees that we've accumulated a
					 * token and flags that we need to
					 * try matching the token before
					 * proceeding.  But for input(),
					 * there's no matching to consider.
					 * So convert the EOB_ACT_LAST_MATCH
					 * to EOB_ACT_END_OF_FILE.
					 */

					/* Reset buffer status. */
					yyrestart( SCNG(yy_in) TSRMLS_CC );

					/* fall through */

				case EOB_ACT_END_OF_FILE:
					{
					if ( yywrap() )
						return EOF;

					if ( ! yy_did_buffer_switch_on_eof )
						YY_NEW_FILE;
#ifdef __cplusplus
					return yyinput(TSRMLS_C);
#else
					return input(TSRMLS_C);
#endif
					}

				case EOB_ACT_CONTINUE_SCAN:
					yy_c_buf_p = yytext_ptr + offset;
					break;
				}
			}
		}

	c = *(unsigned char *) yy_c_buf_p;	/* cast for 8-bit char's */
	*yy_c_buf_p = '\0';	/* preserve yytext */
	yy_hold_char = *++yy_c_buf_p;


	return c;
	}


#ifdef YY_USE_PROTOS
void yyrestart( struct _zend_file_handle *input_file TSRMLS_DC )
#else
void yyrestart( input_file TSRMLS_CC )
struct _zend_file_handle *input_file;
#endif
	{
	if ( ! yy_current_buffer )
		yy_current_buffer = yy_create_buffer( SCNG(yy_in), YY_BUF_SIZE TSRMLS_CC );

	yy_init_buffer( yy_current_buffer, input_file TSRMLS_CC );
	yy_load_buffer_state(TSRMLS_C);
	}


#ifdef YY_USE_PROTOS
void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer TSRMLS_DC)
#else
void yy_switch_to_buffer( new_buffer TSRMLS_CC)
YY_BUFFER_STATE new_buffer;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif
	{
	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->yy_buf_pos = yy_c_buf_p;
		yy_current_buffer->yy_n_chars = SCNG(yy_n_chars);
		}

	yy_current_buffer = new_buffer;
	yy_load_buffer_state(TSRMLS_C);

	/* We don't actually know whether we did this switch during
	 * EOF (yywrap()) processing, but the only time this flag
	 * is looked at is after yywrap() is called, so it's safe
	 * to go ahead and always set it.
	 */
	yy_did_buffer_switch_on_eof = 1;
	}


#ifdef YY_USE_PROTOS
void yy_load_buffer_state( TSRMLS_D )
#else
void yy_load_buffer_state(TSRMLS_C)
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif
	{
	SCNG(yy_n_chars) = yy_current_buffer->yy_n_chars;
	yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
	SCNG(yy_in) = yy_current_buffer->yy_input_file;
	yy_hold_char = *yy_c_buf_p;
	}


#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_create_buffer( struct _zend_file_handle *file, int size TSRMLS_DC )
#else
YY_BUFFER_STATE yy_create_buffer( file, size TSRMLS_CC )
struct _zend_file_handle *file;
int size;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif
	{
	YY_BUFFER_STATE b;

	b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
	if ( ! b )
		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

	b->yy_buf_size = size;

	/* yy_ch_buf has to be 2 characters longer than the size given because
	 * we need to put in 2 end-of-buffer characters.
	 */
	b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
	if ( ! b->yy_ch_buf )
		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );

	b->yy_is_our_buffer = 1;

	yy_init_buffer( b, file TSRMLS_CC );

	return b;
	}


#ifdef YY_USE_PROTOS
void yy_delete_buffer( YY_BUFFER_STATE b TSRMLS_DC )
#else
void yy_delete_buffer( b TSRMLS_CC )
YY_BUFFER_STATE b;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif
	{
	if ( ! b )
		return;

	if ( b == yy_current_buffer )
		yy_current_buffer = (YY_BUFFER_STATE) 0;

	if ( b->yy_is_our_buffer )
		yy_flex_free( (void *) b->yy_ch_buf );

	yy_flex_free( (void *) b );
	}



#ifdef YY_USE_PROTOS
void yy_init_buffer( YY_BUFFER_STATE b, struct _zend_file_handle *file TSRMLS_DC )
#else
void yy_init_buffer( b, file TSRMLS_CC )
YY_BUFFER_STATE b;
struct _zend_file_handle *file;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif


	{
	yy_flush_buffer( b TSRMLS_CC );

	b->yy_input_file = file;
	b->yy_fill_buffer = 1;

#if YY_ALWAYS_INTERACTIVE
	b->yy_is_interactive = 1;
#else
#if YY_NEVER_INTERACTIVE
	b->yy_is_interactive = 0;
#else
	b->yy_is_interactive = file->handle.stream.interactive;
#endif
#endif
	}


#ifdef YY_USE_PROTOS
void yy_flush_buffer( YY_BUFFER_STATE b TSRMLS_DC )
#else
void yy_flush_buffer( b TSRMLS_CC )
YY_BUFFER_STATE b;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif

	{
	if ( ! b )
		return;

	b->yy_n_chars = 0;

	/* We always need two end-of-buffer characters.  The first causes
	 * a transition to the end-of-buffer state.  The second causes
	 * a jam in that state.
	 */
	b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
	b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;

	b->yy_buf_pos = &b->yy_ch_buf[0];

	b->yy_at_bol = 1;
	b->yy_buffer_status = YY_BUFFER_NEW;

	if ( b == yy_current_buffer )
		yy_load_buffer_state(TSRMLS_C);
	}


#ifndef YY_NO_SCAN_BUFFER
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size TSRMLS_DC )
#else
YY_BUFFER_STATE yy_scan_buffer( base, size TSRMLS_CC )
char *base;
yy_size_t size;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif
	{
	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) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
	if ( ! b )
		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );

	b->yy_buf_size = size - 2;	/* "- 2" to take care of EOB's */
	b->yy_buf_pos = b->yy_ch_buf = base;
	b->yy_is_our_buffer = 0;
	b->yy_input_file = 0;
	b->yy_n_chars = b->yy_buf_size;
	b->yy_is_interactive = 0;
	b->yy_at_bol = 1;
	b->yy_fill_buffer = 0;
	b->yy_buffer_status = YY_BUFFER_NEW;

	yy_switch_to_buffer( b TSRMLS_CC );

	return b;
	}
#endif


#ifndef YY_NO_SCAN_STRING
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_string( yyconst char *yy_str TSRMLS_DC )
#else
YY_BUFFER_STATE yy_scan_string( yy_str TSRMLS_CC )
yyconst char *yy_str;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif
	{
	int len;
	for ( len = 0; yy_str[len]; ++len )
		;

	return yy_scan_bytes( yy_str, len TSRMLS_CC );
	}
#endif


#ifndef YY_NO_SCAN_BYTES
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len TSRMLS_DC )
#else
YY_BUFFER_STATE yy_scan_bytes( bytes, len TSRMLS_CC )
yyconst char *bytes;
int len;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif
	{
	YY_BUFFER_STATE b;
	char *buf;
	yy_size_t n;
	int i;

	/* Get memory for full buffer, including space for trailing EOB's. */
	n = len + 2;
	buf = (char *) yy_flex_alloc( n );
	if ( ! buf )
		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );

	for ( i = 0; i < len; ++i )
		buf[i] = bytes[i];

	buf[len] = buf[len+1] = YY_END_OF_BUFFER_CHAR;

	b = yy_scan_buffer( buf, n TSRMLS_CC);
	if ( ! b )
		YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );

	/* It's okay to grow etc. this buffer, and we should throw it
	 * away when we're done.
	 */
	b->yy_is_our_buffer = 1;

	return b;
	}
#endif


#ifndef YY_NO_PUSH_STATE
#ifdef YY_USE_PROTOS
static void yy_push_state( int new_state TSRMLS_DC )
#else
static void yy_push_state( new_state TSRMLS_CC )
int new_state;
#ifdef ZTS
void ***tsrm_ls;
#endif
#endif
	{
	if ( yy_start_stack_ptr >= yy_start_stack_depth )
		{
		yy_size_t new_size;

		yy_start_stack_depth += YY_START_STACK_INCR;
		new_size = yy_start_stack_depth * sizeof( int );

		if ( ! yy_start_stack )
			yy_start_stack = (int *) yy_flex_alloc( new_size );

		else
			yy_start_stack = (int *) yy_flex_realloc(
					(void *) yy_start_stack, new_size );

		if ( ! yy_start_stack )
			YY_FATAL_ERROR(
			"out of memory expanding start-condition stack" );
		}

	yy_start_stack[yy_start_stack_ptr++] = YY_START;

	BEGIN(new_state);
	}
#endif


#ifndef YY_NO_POP_STATE
static void yy_pop_state(TSRMLS_D)
	{
	if ( --yy_start_stack_ptr < 0 )
		YY_FATAL_ERROR( "start-condition stack underflow" );

	BEGIN(yy_start_stack[yy_start_stack_ptr]);
	}
#endif


#ifndef YY_NO_TOP_STATE
static int yy_top_state(TSRMLS_D)
	{
	return yy_start_stack[yy_start_stack_ptr - 1];
	}
#endif

#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif

#ifdef YY_USE_PROTOS
static void yy_fatal_error( yyconst char msg[] )
#else
static void yy_fatal_error( msg )
char msg[];
#endif
	{
	(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 yytext. */ \
		yytext[yyleng] = yy_hold_char; \
		yy_c_buf_p = yytext + n; \
		yy_hold_char = *yy_c_buf_p; \
		*yy_c_buf_p = '\0'; \
		yyleng = n; \
		} \
	while ( 0 )


/* Internal utility routines. */

#ifndef yytext_ptr
#ifdef YY_USE_PROTOS
static void yy_flex_strncpy( char *s1, yyconst char *s2, int n )
#else
static void yy_flex_strncpy( s1, s2, n )
char *s1;
yyconst char *s2;
int n;
#endif
	{
	register int i;
	for ( i = 0; i < n; ++i )
		s1[i] = s2[i];
	}
#endif

#ifdef YY_NEED_STRLEN
#ifdef YY_USE_PROTOS
static int yy_flex_strlen( yyconst char *s )
#else
static int yy_flex_strlen( s )
yyconst char *s;
#endif
	{
	register int n;
	for ( n = 0; s[n]; ++n )
		;

	return n;
	}
#endif


#ifdef YY_USE_PROTOS
static void *yy_flex_alloc( yy_size_t size )
#else
static void *yy_flex_alloc( size )
yy_size_t size;
#endif
	{
	return (void *) malloc( size );
	}

#ifdef YY_USE_PROTOS
static void *yy_flex_realloc( void *ptr, yy_size_t size )
#else
static void *yy_flex_realloc( ptr, size )
void *ptr;
yy_size_t size;
#endif
	{
	/* 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 );
	}

#ifdef YY_USE_PROTOS
static void yy_flex_free( void *ptr )
#else
static void yy_flex_free( ptr )
void *ptr;
#endif
	{
	free( ptr );
	}

#if YY_MAIN
int main()
	{
	yylex();
	return 0;
	}
#endif