/* A lexical scanner generated by flex */

/* Scanner skeleton version:
 * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $
 */

#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>
#include <unistd.h>

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


#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( yyin )

#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;
extern FILE *yyin, *yyout;

#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_RESTORE_YY_MORE_OFFSET \
		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 )

/* 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
	{
	FILE *yy_input_file;

	char *yy_ch_buf;		/* input buffer */
	char *yy_buf_pos;		/* current position in input buffer */

	/* Size of input buffer in bytes, not including room for EOB
	 * characters.
	 */
	yy_size_t yy_buf_size;

	/* Number of characters read into yy_ch_buf, not including EOB
	 * characters.
	 */
	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
	};

static YY_BUFFER_STATE yy_current_buffer = 0;

/* 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. */
static char yy_hold_char;

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


int yyleng;

/* Points to current character in buffer. */
static char *yy_c_buf_p = (char *) 0;
static int yy_init = 1;		/* whether we need to initialize */
static int yy_start = 0;	/* start state number */

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

void yyrestart YY_PROTO(( FILE *input_file ));

void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
void yy_load_buffer_state YY_PROTO(( void ));
YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
#define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )

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

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( yyin, YY_BUF_SIZE ); \
	yy_current_buffer->yy_is_interactive = is_interactive; \
	}

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

#define YY_AT_BOL() (yy_current_buffer->yy_at_bol)


#define YY_USES_REJECT
typedef unsigned char YY_CHAR;
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
typedef int yy_state_type;
extern int yylineno;
int yylineno = 1;
extern char *yytext;
#define yytext_ptr yytext

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

/* 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; \
	yyleng = (int) (yy_cp - yy_bp); \
	yy_hold_char = *yy_cp; \
	*yy_cp = '\0'; \
	yy_c_buf_p = yy_cp;

#define YY_NUM_RULES 168
#define YY_END_OF_BUFFER 169
static yyconst short int yy_acclist[822] =
    {   0,
      161,  161,  169,  167,  168,  165,  167,  168,    1,  165,
      168,  167,  168,  166,  167,  168,  167,  168,  166,  167,
      168,  166,  167,  168,  150,  154,  167,  168,  150,  154,
      167,  168,  150,  154,  167,  168,  150,  154,  167,  168,
      150,  154,  167,  168,  166,  167,  168,  166,  167,  168,
      149,  167,  168,  149,  167,  168,  149,  167,  168,  149,
      167,  168,  149,  167,  168,  149,  167,  168,  149,  167,
      168,  149,  167,  168,  149,  167,  168,  149,  167,  168,
      149,  167,  168,  149,  167,  168,  149,  167,  168,  149,
      167,  168,  149,  167,  168,  149,  167,  168,  149,  167,

      168,  149,  167,  168,  149,  167,  168,  149,  167,  168,
      149,  167,  168,  167,  168,  149,  167,  168,  149,  167,
      168,  161,  168,  168,  149,  167,  168,  149,  167,  168,
      149,  167,  168,  149,  167,  168,  149,  167,  168,  149,
      167,  168,  149,  167,  168,  106,  149,  167,  168,  112,
      149,  167,  168,  149,  167,  168,  164,  160,    2,  150,
      154,  150,  154,    4,    3,    5,  149,  149,  149,  149,
      149,   12,  149,  149,   14,  149,  149,  149,  149,  149,
      149,   33,  149,   34,  149,  149,  149,  149,   54,  149,
      149,  149,  149,  149,  149,   64,  149,   65,  149,   66,

      149,  149,   76,  149,  149,  149,   80,  149,  149,  149,
      149,  149,  149,   88,  149,  149,   90,  149,   91,  149,
       93,  149,  149,  149,  107,  149,  149,  149,  113,  149,
      149,  149,  149,  149,  149,  126,  149,  128,  149,  149,
      149,  149,  149,  149,  149,  149,  149,  149,  149,  149,
      149,  149,  149,  149,  149,  149,  161,  162,  163,  149,
       20,  149,  149,   28,  149,   68,  149,  149,   75,  149,
       93,  149,   96,  149,   97,  149,  115,  149,  149,  154,
      154,  151,  152,  149,    8,  149,   10,  149,  149,  149,
      149,   18,  149,  149,  149,   25,  149,   27,  149,  149,

      149,   32,  149,  149,  149,  149,  149,  149,  149,   59,
      149,  149,  149,  149,  149,  149,  149,   71,  149,  149,
      149,  149,  149,   82,  149,   83,  149,   84,  149,  149,
       86,  149,   87,  149,   89,  149,  149,  149,  149,  149,
      149,  149,  149,  149,  109,  149,  149,  149,  149,  118,
      149,  149,  149,  149,  127,  149,  124,  149,  125,  149,
      149,  149,  149,  149,  149,  149,  149,  149,  143,  149,
      149,  149,  149,  148,  149,  149,  149,  149,   10,  149,
       21,  149,   74,  149,   92,  149,  148,  149,  154,  153,
      151,  152,  149,  149,   13,  149,   15,  149,   17,  149,

       19,  149,  149,  149,  149,   26,  149,   30,  149,   31,
      149,  149,   36,  149,  149,   55,  149,   56,  149,  149,
       60,  149,  149,  149,  149,  149,  149,  149,  149,   78,
      149,  149,  149,   85,  149,  149,  149,  149,  100,  149,
      149,  149,  149,  149,  149,  149,  149,  111,  149,  114,
      149,  149,  149,  155,  155,  155,  155,  155,  120,  149,
      121,  149,  123,  149,  149,  130,  149,  131,  149,  149,
      133,  149,  149,  149,  149,  149,  145,  149,  146,  149,
      149,  149,    9,  149,   73,  149,  147,  149,  159,    6,
      153,  149,   11,  149,   16,  149,  149,  149,  149,   35,

      149,   37,  149,  149,  149,  149,  149,  149,  149,  149,
      149,  149,  149,   57,  149,  149,  149,  149,  149,  149,
      149,   77,  149,   79,  149,   81,  149,  149,  149,  149,
      149,  149,  149,  149,  149,  149,  149,  149,  155,  119,
      149,  132,  149,  134,  149,  135,  149,  136,  149,  149,
      149,  149,  149,  149,  144,  149,   72,  149,  159,    7,
      149,   22,  149,  149,  149,  149,  149,  149,  149,  149,
      149,   44,  149,  149,  149,  149,  149,  149,  149,  149,
      149,   58,  149,   61,  149,  149,   69,  149,  149,  149,
      149,  149,  149,  102,  149,  149,  104,  149,  105,  149,

      101,  149,  108,  149,  110,  149,  116,  149,  117,  149,
      155,  155,  155,  155,  155,  155,  155,  155,  149,  149,
      149,  149,  149,  149,  149,  149,  149,  149,  149,  157,
      149,  149,  149,  149,   41,  149,  149,  149,  149,  149,
      149,  149,  149,  149,   52,  149,  149,  149,  149,  149,
      149,   95,  149,  149,  149,  149,  149,  149,  149,  149,
      149,  149,  149,  149,  149,  149,   24,  149,  157,  149,
      149,   39,  149,  149,  149,  149,  149,  149,   48,  149,
      149,  149,   51,  149,  149,   63,  149,   70,  149,   94,
      149,  149,  149,  103,  149,  155,  155,  155,  149,  149,

      149,  149,  149,  149,  149,  149,  149,  149,  149,  149,
      149,  149,  149,  149,  149,   53,  149,  149,   98,  149,
      149,  149,  156,  149,  149,  149,  149,  141,  149,  149,
      149,  149,  149,  149,   38,  149,  149,  149,  149,   46,
      149,  149,   49,  149,  149,  149,  149,   99,  149,  155,
      149,  156,  129,  149,  137,  149,  149,  139,  149,  140,
      149,  142,  149,  149,  149,  149,  149,  149,  149,   45,
      149,  149,  149,  149,  149,  122,  149,  156,  149,  149,
      149,  149,  149,   43,  149,   47,  149,  149,  149,   67,
      149,  156,  138,  149,  149,   23,  149,   29,  149,  149,

      149,  149,  158,  149,  149,   50,  149,   62,  149,  158,
      149,  149,  158,  149,  149,  158,   40,  149,  149,   42,
      149
    } ;

static yyconst short int yy_accept[773] =
    {   0,
        1,    1,    1,    2,    3,    3,    3,    4,    6,    9,
       12,   14,   17,   19,   22,   25,   29,   33,   37,   41,
       45,   48,   51,   54,   57,   60,   63,   66,   69,   72,
       75,   78,   81,   84,   87,   90,   93,   96,   99,  102,
      105,  108,  111,  114,  116,  119,  122,  124,  125,  128,
      131,  134,  137,  140,  143,  146,  150,  154,  157,  157,
      157,  157,  158,  159,  160,  160,  160,  162,  162,  162,
      164,  164,  164,  165,  166,  167,  168,  169,  170,  171,
      172,  174,  174,  175,  177,  178,  179,  180,  180,  181,
      182,  184,  186,  187,  188,  189,  191,  192,  193,  194,

      195,  196,  196,  198,  200,  202,  203,  205,  206,  207,
      209,  210,  211,  212,  213,  214,  216,  217,  219,  221,
      223,  224,  225,  227,  227,  228,  229,  231,  232,  233,
      233,  233,  234,  235,  236,  238,  240,  241,  242,  243,
      244,  245,  246,  247,  248,  249,  250,  251,  252,  253,
      254,  255,  256,  257,  258,  259,  260,  260,  261,  263,
      264,  266,  268,  269,  271,  273,  275,  277,  279,  280,
      280,  280,  280,  280,  280,  280,  281,  281,  282,  282,
      283,  284,  285,  287,  289,  290,  291,  292,  294,  295,
      296,  298,  300,  300,  301,  302,  304,  304,  305,  306,

      307,  308,  309,  310,  312,  313,  314,  315,  316,  317,
      318,  320,  321,  322,  323,  324,  326,  328,  330,  331,
      333,  335,  337,  338,  339,  340,  341,  342,  343,  344,
      345,  347,  348,  349,  350,  352,  352,  352,  352,  353,
      354,  355,  357,  359,  361,  362,  363,  364,  365,  366,
      367,  368,  369,  371,  372,  373,  374,  376,  377,  378,
      379,  381,  383,  385,  387,  389,  389,  389,  389,  389,
      390,  390,  391,  392,  392,  393,  393,  394,  395,  397,
      399,  401,  403,  404,  405,  406,  408,  408,  408,  408,
      410,  412,  412,  413,  415,  416,  416,  418,  420,  421,

      423,  424,  425,  426,  427,  428,  429,  430,  432,  433,
      434,  436,  437,  438,  439,  441,  442,  443,  444,  445,
      446,  447,  448,  450,  452,  453,  454,  454,  454,  455,
      456,  457,  458,  458,  459,  459,  461,  463,  465,  465,
      466,  468,  470,  471,  473,  474,  475,  476,  476,  477,
      479,  481,  482,  483,  485,  487,  489,  490,  491,  492,
      492,  493,  495,  497,  498,  499,  500,  500,  500,  500,
      500,  500,  502,  504,  505,  506,  507,  508,  509,  510,
      511,  512,  513,  514,  516,  517,  518,  519,  520,  521,
      522,  524,  526,  528,  529,  530,  530,  531,  532,  533,

      534,  535,  536,  537,  538,  539,  539,  539,  539,  539,
      539,  539,  540,  540,  540,  540,  541,  541,  541,  542,
      544,  546,  548,  550,  551,  552,  553,  554,  555,  557,
      557,  557,  559,  560,  560,  562,  564,  565,  566,  566,
      566,  566,  567,  567,  568,  569,  570,  571,  572,  574,
      575,  576,  577,  578,  579,  580,  581,  582,  584,  586,
      587,  589,  590,  591,  592,  593,  594,  596,  597,  599,
      601,  603,  605,  607,  609,  611,  611,  612,  613,  614,
      615,  615,  616,  616,  616,  617,  617,  617,  617,  618,
      618,  618,  618,  619,  619,  619,  619,  619,  619,  619,

      620,  620,  620,  620,  621,  622,  623,  624,  625,  626,
      627,  628,  629,  630,  631,  632,  632,  632,  632,  633,
      634,  635,  637,  638,  639,  640,  641,  642,  643,  644,
      645,  647,  648,  649,  650,  651,  652,  654,  655,  656,
      657,  657,  657,  657,  657,  657,  657,  657,  657,  657,
      657,  658,  658,  659,  660,  661,  662,  663,  663,  664,
      665,  666,  667,  669,  670,  670,  671,  671,  672,  674,
      675,  676,  677,  678,  679,  681,  682,  683,  685,  686,
      688,  688,  690,  692,  693,  694,  696,  696,  696,  696,
      696,  697,  697,  697,  697,  697,  697,  698,  698,  698,

      699,  699,  699,  699,  699,  699,  699,  699,  699,  699,
      699,  699,  699,  700,  701,  702,  703,  704,  705,  706,
      707,  707,  708,  708,  708,  708,  708,  709,  710,  711,
      712,  713,  714,  715,  716,  718,  718,  719,  721,  722,
      722,  722,  722,  722,  722,  722,  722,  723,  724,  725,
      726,  727,  728,  730,  731,  732,  732,  733,  734,  735,
      735,  737,  738,  739,  740,  742,  743,  745,  746,  747,
      748,  750,  750,  750,  750,  750,  751,  751,  751,  751,
      751,  751,  751,  751,  751,  751,  751,  752,  752,  753,
      753,  755,  757,  758,  760,  762,  764,  765,  766,  767,

      768,  768,  768,  768,  769,  770,  772,  773,  774,  775,
      776,  776,  776,  776,  776,  778,  779,  780,  781,  782,
      783,  783,  784,  786,  788,  789,  790,  792,  792,  792,
      792,  792,  792,  792,  792,  792,  792,  793,  793,  795,
      796,  798,  800,  800,  800,  800,  801,  801,  802,  803,
      803,  804,  805,  806,  808,  810,  810,  810,  810,  811,
      811,  812,  813,  814,  815,  816,  817,  817,  819,  820,
      822,  822
    } ;

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

       56,   57,   58,   59,   60,   51,   51,   61,   62,   63,
       64,   65,   51,   66,   67,   68,   51,   51,   51,   69,
       70,   51,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1
    } ;

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

static yyconst short int yy_base[790] =
    {   0,
        0,    0, 2605, 2604,   45,   64, 2614, 2692, 2692, 2692,
       49, 2692,   67, 2602, 2598,  101,   65,   89, 2595,   93,
       52, 2583,   95,   60,   85,  122,   90,  109,   51, 2553,
      102,  130,  125,  106,  137,  120,  139,  151,  175,  161,
      140,  177,  147,    0,  180,  182,    0,  133,  192,  210,
      191,   57,  223,  220,  222,  234,  246,  162,  284,  199,
      329,  218, 2692, 2692, 2591,  299, 2585,  271,  325,  215,
      225,  291, 2692, 2692, 2692, 2545,  193,  225,  229,  218,
     2542, 2541,  172,  242,  286,  154,  244,  332,  243,  315,
     2518,  245,  272,  283,  307, 2475,  323,  319,  317,  321,

      324,  335, 2474, 2473, 2472,  344, 2471,  346,   98, 2470,
      339,  230,  347,  353,  364, 2468,  357, 2467, 2466, 2465,
      370,  367, 2464,  373,  369,  368, 2463,  384,  233,  413,
     2501,  371,  325,  386,  406, 2461,  413,  399,  408,  402,
      409,  401,  410,  404,  414,  405,  412,  420, 2460,  400,
      445,  415,  270,    0, 2692, 2692,  459,  329, 2459,  435,
     2458,  439,  433, 2457,  436, 2456, 2455,  446,  438,  485,
      492,    0,  474,  487, 2493,  499,  472, 2692,  499,  508,
      526,  444, 2423, 2413,  496,  494,  495,  498,  504,  521,
     2412,  506,  564,  509,  441, 2411,  571,  510,  541, 2410,

      518,  524,  484, 2409,  556,  544,  545,  552,  553,  569,
      570,  567,  557,  512,  560, 2408, 2397, 2396,  576, 2387,
     2386, 2385,  571,  575,  581,  583,  574,  591,  586,  577,
     2384,  599,  584,  596, 2376,  637,  645, 2414,  588,  593,
      616,  630, 2373, 2372,  628,  617,  619,  633,  625,  634,
      641,  640, 2371,  639,  651,  658, 2370,  638,  643,  646,
      649, 2369,  653, 2359,  657,  698,  706,  713, 2365,  720,
      727,  727,  736,  738,  745,  750,  719,  589, 2335, 2334,
      718, 2333,  729,  722,  728, 2331,  783,  792,  799,  771,
     2321,  809,  754, 2320,  790,  836, 2319, 2318,  801, 2317,

      732,  800,  799,  802,  659,  791,  741, 2316,  798,  808,
     2307,  795,  796, 2306, 2283,  814,  803,  807,  813,  826,
      811,  820, 2282, 2273,  739,  840,  878,    0,  885,  892,
      899,  906,  913,  944, 2309, 2271, 2270,  883,  951,  830,
     2269, 2268,  824, 2266,  893,  834,  894,  947,  922, 2265,
     2264,  932,  936, 2263,  902, 2262,  974, 2692,  954,  960,
      903, 2261, 2242,  904,  946,  931, 1017,  949, 1024, 1033,
     1040, 2241, 2240,  952,  979, 1022,  955,  965,  972,  958,
     1020,  995,  964, 2233,  839, 1034, 1035, 1039, 1021,  742,
     2232, 2231, 2230, 1037, 1049, 1036, 1038, 1050,  961, 1040,

     1047, 1046, 1051, 1048, 1052, 1090, 1080, 1143, 1103, 1151,
     1068, 2692, 1158, 1142, 1166, 2692, 1074, 1180, 1081, 2229,
     2227, 2226, 2225, 1088,  898,  838, 1079, 1075, 2185, 1043,
     1072, 2184, 1190, 1197, 2183, 2181, 1091, 1086, 1204, 1218,
     1228, 1151, 1237, 1077, 1102, 1188, 1101, 1189, 2180, 1211,
     1220, 1230, 1233, 1224, 1219, 1096, 1226, 2179, 2178, 1231,
     2174, 1241, 1229, 1239, 1236, 1243, 2144, 1251, 2143, 2142,
     2141, 2140, 2105, 2104, 2100,    0, 2692, 2692, 2088, 2692,
     1281, 2064, 1289, 1278, 1297, 1304, 1323, 1312, 1336, 1350,
     1360, 1345, 1375, 1383, 1390, 1320, 2086, 1398, 2044, 1238,

     1413, 1405, 1421, 1235, 1308, 1283, 1293, 1321, 1398, 1392,
      896, 1402, 1401, 1441, 1332, 1451, 1460, 1467, 1295, 1333,
     1296, 2057, 1446, 1457, 1461, 1411, 1449, 1448, 1453, 1465,
     2017, 1294, 1458, 1976, 1412,  656, 1974, 1459, 1468, 1469,
     1507, 1492, 1516, 1530, 1527, 1557, 1568, 1500, 1580, 1587,
     1929, 1611, 1505, 1477, 1512, 1491, 1509, 1463, 1467, 1095,
     1888, 1539, 1843, 1598, 1625, 1842, 1638, 1464, 1841, 1529,
     1508, 1515, 1584, 1614, 1839, 1528, 1617, 1838, 1618, 1711,
     1620, 1710, 1709,  740, 1622, 1707, 1660, 1667, 1679, 1651,
     1689, 1705, 1712, 1719, 1727, 1735, 1736, 1750, 1765, 2692,

     1774, 1795, 1782, 1672, 1806, 1606, 1820, 1830, 1541, 1844,
     1858, 1868, 1569, 1753, 1595, 1585, 1666, 1616, 1726, 1572,
     1136, 1754, 1755, 1882, 1891, 1898, 1662, 1639, 1600, 1749,
     1875, 1776, 1876, 1724, 1571, 1665, 1877, 1570, 1778, 1915,
     1911, 1929, 1941, 1819, 1953, 1971, 1751, 1980, 1663, 1931,
     1721, 1815, 1538, 1958, 1959, 1801, 1140, 1871, 1890, 1997,
     1517, 1752, 1791, 1804, 1400, 1840, 1396, 1975, 1818, 1924,
     1395, 2019, 2026, 2035, 2015, 2045, 2057, 2068, 2075, 2083,
     2091, 1343, 2098, 1319, 2106, 2121,  975, 2130, 2145, 2154,
     1331, 1242, 1828, 1178, 1177, 1174, 1970, 1912, 1886, 1899,

     2161, 2169, 2183, 2027, 1900, 1137, 1950, 1932, 2028, 1777,
     2190, 2177, 2201, 2228, 1280, 2235, 1969, 1996, 2115, 2076,
     2243, 1953, 1099,  933, 2172, 1913,  794, 2252, 2282, 2290,
     2274,  522, 2312,  466, 2322, 2329, 2336, 2346,  428,  833,
      365, 2103, 2360, 2374, 2381, 1979, 2081, 2175, 2189, 2388,
     2399, 1973, 2186,  331,  276, 2414, 2426, 2438, 2453, 2462,
     2188, 2234, 2469, 2237, 2082, 2476, 2483,   93, 2239,   22,
     2692, 2528, 2540, 2548, 2556, 2567, 2579, 2590, 2595, 2598,
     2607, 2616, 2625, 2634, 2643, 2652, 2661, 2670, 2679
    } ;

static yyconst short int yy_def[790] =
    {   0,
      771,    1,  772,  772,    1,    1,  771,  771,  771,  771,
      771,  771,  773,  771,  771,  771,   16,   16,   16,   16,
      771,  771,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  775,  774,  774,  776,  777,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  771,  773,
      778,  773,  771,  771,  771,  771,   16,  771,  771,   16,
      771,  771,  771,  771,  771,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  771,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,

      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  771,
      771,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  776,  771,  771,  777,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  771,
      771,  779,  773,  773,  771,  771,  771,  771,  771,  771,
      771,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  771,  774,  774,  774,  771,  774,  774,  774,

      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  771,  771,  771,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  771,  771,  771,  774,
      774,  771,  774,  774,  774,  774,  774,  774,  774,  774,

      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  771,  237,  771,  771,
      771,  771,  771,  771,  771,  774,  774,  774,  771,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  771,  771,  771,  771,
      774,  774,  774,  774,  774,  774,  771,  774,  771,  771,
      771,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,

      774,  774,  774,  774,  774,  771,  780,  771,  781,  771,
      782,  771,  771,  783,  771,  771,  774,  771,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  771,  771,  774,  774,  774,  774,  771,  771,
      771,  774,  771,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  406,  771,  771,  771,  771,
      771,  771,  771,  780,  771,  771,  771,  781,  771,  771,
      771,  782,  771,  771,  771,  783,  771,  771,  771,  774,

      771,  771,  771,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  771,  774,  771,  771,  771,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      771,  784,  771,  771,  785,  771,  771,  786,  771,  771,
      774,  771,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  771,  771,  774,  771,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  771,  771,  771,  784,
      771,  771,  771,  771,  771,  785,  771,  771,  771,  771,

      771,  771,  786,  771,  771,  771,  771,  771,  774,  771,
      771,  771,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  774,  774,  771,  771,  771,  774,  774,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  771,
      787,  771,  771,  788,  771,  771,  774,  771,  774,  774,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  771,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,
      774,  771,  771,  771,  787,  771,  771,  771,  771,  771,
      788,  771,  771,  771,  771,  771,  774,  771,  771,  771,
      774,  774,  774,  774,  774,  774,  774,  774,  774,  774,

      771,  771,  771,  774,  774,  774,  774,  774,  774,  774,
      771,  789,  771,  771,  774,  771,  774,  774,  774,  774,
      771,  774,  774,  774,  774,  774,  774,  771,  771,  771,
      789,  771,  771,  771,  771,  771,  771,  771,  774,  774,
      774,  774,  771,  771,  771,  774,  774,  774,  774,  771,
      771,  774,  774,  774,  774,  771,  771,  771,  771,  771,
      774,  774,  771,  774,  774,  771,  771,  774,  774,  774,
        0,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771
    } ;

static yyconst short int yy_nxt[2763] =
    {   0,
        8,    9,   10,    8,    8,   11,   12,   13,   14,   12,
       15,   12,   12,   12,   16,   17,   18,   19,   19,   20,
       19,   12,   21,   12,   22,   23,   24,   25,   26,   27,
       28,   29,   30,   31,   30,   30,   32,   33,   34,   35,
       36,   30,   37,   38,   39,   40,   41,   42,   43,   30,
       30,   44,   30,   30,   45,   30,   30,   30,   30,   30,
       30,   30,   30,   30,   30,   30,   30,   46,   30,   30,
       49,   61,   50,   82,   62,   73,   74,  771,   51,   52,
      103,   53,   59,   70,   54,   55,   59,   56,   57,   49,
       59,   50,   71,   58,  163,  104,   72,   51,   52,   83,

       53,  771,   82,   54,   55,  771,   56,   57,   82,   84,
       85,   82,   58,   65,   66,   67,   67,   67,   67,   67,
       67,   67,   77,   78,   86,   88,   94,  214,   95,   87,
       68,   96,  105,   79,   98,  116,   82,   80,   97,   81,
      106,   82,  156,  157,   82,  117,   82,   89,   99,   82,
      112,  100,   69,   82,  101,   90,   68,   82,  113,  107,
      102,   91,  121,  108,  114,  144,   92,  118,  122,   93,
      115,   82,  109,   82,  110,  119,   82,  111,  130,  120,
      125,   82,  123,   88,  126,  130,  148,  131,   82,  139,
      124,   82,  190,  127,  140,  128,  129,  141,   82,  142,

      132,  169,   82,   61,  143,   82,   62,  133,  134,  145,
      146,  186,   82,   82,  135,  136,  147,  137,  179,   77,
       78,  105,   61,   82,  138,   62,   82,  771,   82,  162,
      158,   82,  150,   82,   80,   85,   81,  182,  159,  180,
      180,  152,   82,   82,   82,  153,  160,  151,  197,   86,
      118,  164,  107,  183,   87,  161,  108,  184,  119,  235,
      185,   82,  165,  122,  121,  109,  166,  110,  167,   82,
      111,   82,  191,   82,   82,  125,   82,  123,  216,  126,
       82,   82,  177,  177,   82,  124,  187,  194,  127,  192,
      168,  129,  178,   82,   82,   82,   82,   82,  170,  170,

      170,  170,  170,  170,  170,  181,  181,  181,  181,  181,
      171,  198,  171,  176,  176,  176,  176,  176,  176,  176,
      171,   82,  188,   82,  260,  178,  199,   82,  178,  189,
      178,  171,  171,   60,   82,  200,   60,   82,  178,   67,
       67,   67,   67,   67,   67,   67,  193,  193,  193,  193,
      193,  193,  193,  195,  240,  203,  201,  261,   82,  204,
      205,  196,  206,  202,  207,  173,   82,  173,   82,  173,
       82,  173,   82,  173,   82,   82,   82,  209,  215,  208,
       82,  218,   82,  212,  213,  217,  771,  210,  211,  174,
       82,  174,  225,  174,  174,   82,  174,   82,   82,  219,

      220,  222,  229,  223,   82,  231,  232,  226,   82,  224,
      227,  228,  221,  233,  239,   82,   82,  230,   82,   82,
       82,   82,   82,  241,  771,  236,  234,  237,  237,  237,
      237,  237,  237,  237,  242,   82,  243,   82,  245,  247,
      249,  248,  250,  252,  244,  251,  253,  254,  197,  255,
       82,   82,   82,   82,  256,   82,   82,   82,  246,   82,
       82,   82,  257,   82,   82,   82,   82,  258,  156,  157,
      262,   82,  209,  263,  264,  233,  259,  277,   61,   82,
      265,   62,  210,  211,   82,  291,   82,   82,  234,   82,
       82,   61,   82,  178,   62,   82,   82,   82,  266,  267,

      267,  267,  267,  267,  267,  267,  170,  170,  170,  170,
      170,  170,  170,  270,  270,  270,  270,  270,  270,  270,
      272,  278,  273,  273,  280,  281,  178,  299,   68,  178,
      279,  178,  477,  282,  286,   82,  268,  309,  290,  178,
      275,  275,  275,  275,  275,   82,   82,   82,  283,   82,
      271,  284,  293,  272,   68,   82,  272,   82,  272,  274,
       82,   82,  297,   82,  285,  477,  272,  272,  298,   82,
      294,  301,   82,  302,  295,   82,  287,  276,  288,  288,
      288,  288,  288,  288,  288,  292,  292,  292,  292,  292,
      292,  292,   82,  300,  303,   82,   82,  304,  305,  306,

      307,  308,  310,   82,   82,  311,  313,   82,   82,  314,
      312,   82,  316,  317,  320,  289,  318,  315,   82,  321,
       82,   82,   82,  336,  324,   82,   82,   82,   82,  325,
      322,  337,   82,  339,   82,   82,  319,   82,  362,   82,
       82,  326,   82,  323,   82,  338,  341,   82,  342,  339,
       82,  237,  237,  237,  237,  237,  237,  237,  327,  328,
      328,  328,  328,  328,  328,  328,  340,   82,   82,  344,
       82,  343,  345,  329,  346,  349,   82,  330,  347,   82,
      355,   82,  331,  350,   82,   82,  351,  354,  332,   82,
       82,   82,   82,  352,   82,  356,  333,   82,  353,  329,

       82,  389,   82,  330,   82,  583,  334,   82,   82,   82,
       82,  332,  357,  357,  357,  357,  357,  357,  357,  266,
      267,  267,  267,  267,  267,  267,  267,  267,  267,  267,
      267,  267,  267,  267,  270,  270,  270,  270,  270,  270,
      270,  270,  270,  270,  270,  270,  270,  270,  359,   68,
      273,  273,  273,  273,  364,  365,  363,  268,  361,  275,
      275,  275,  275,  275,  275,  275,  275,  275,  275,   82,
       82,  271,  366,   82,   88,   68,  385,  404,  360,   82,
       82,  359,  372,   82,  359,  391,  359,  274,  462,  638,
       82,   82,   82,   82,  359,  359,  276,  367,  367,  367,

      367,  367,  367,  367,  287,   82,  288,  288,  288,  288,
      288,  288,  288,  288,  288,  288,  288,  288,  288,  288,
      373,  369,  368,  370,  370,  370,  370,  370,  370,  370,
      384,  386,  387,  390,  392,  388,  393,  394,  395,  397,
      399,   82,   82,  289,  402,   82,   82,   82,  398,   82,
       82,   82,   82,   82,   82,  400,  403,  401,   82,   82,
      371,  374,   82,  375,   82,   82,  376,  405,  420,  377,
      422,   82,  457,  419,  507,   82,  378,   82,  379,  380,
      381,   82,  382,  383,   82,   82,  130,  771,  151,   82,
       82,   82,  406,  406,  406,  406,  406,  406,  406,  407,

      407,  407,  407,  407,  407,  407,  409,  409,  409,  409,
      409,  409,  409,  411,  411,  411,  411,  411,  411,  411,
      414,  414,  414,  414,  414,  414,  414,  328,  328,  328,
      328,  328,  328,  328,  417,   88,  408,  421,  423,  130,
      432,  435,  412,  410,   82,   82,  506,   82,  436,   82,
      413,  429,  561,   82,   82,   82,  438,  415,  411,  411,
      411,  411,  411,  411,  411,  418,  418,  418,  418,  418,
      418,  418,  424,   82,  442,  359,  425,  437,  426,  444,
      427,  359,   82,  430,   82,  449,  428,  431,  433,  433,
      433,  433,  433,  433,  433,  413,  456,   82,  771,  469,

      771,  451,  452,   82,  445,  360,   82,  450,  359,   82,
      412,  359,   82,  359,  359,   82,   82,  359,  446,  359,
      455,  359,  359,   82,  715,  434,   82,  359,  359,  439,
       82,  440,  440,  440,  440,  440,  440,  440,  443,  443,
      443,  443,  443,  443,  443,  369,   82,  370,  370,  370,
      370,  370,  370,  370,  370,  370,  370,  370,  370,  370,
      370,  447,  453,  458,  460,  461,  459,  448,  441,  454,
      463,   82,   82,   82,  464,  465,  471,  472,  470,  474,
      473,  491,  467,  466,  371,   82,   82,  771,   82,   82,
       82,   82,  468,  483,  771,  510,  475,   82,   82,   82,

       82,   82,   82,   82,  476,  476,  476,  476,  476,  476,
      476,  493,  485,  500,  504,  505,  487,  508,  477,  494,
      509,  519,  478,  771,  513,  771,   82,  479,   82,  532,
       82,  486,   82,  480,  493,  511,  512,   82,  485,   82,
      489,  481,   82,  522,  477,  520,   82,   82,  478,  620,
      747,  482,   82,   82,  490,  495,  480,  407,  407,  407,
      407,  407,  407,  407,  489,  409,  409,  409,  409,  409,
      409,  409,  411,  411,  411,  411,  411,  411,  411,  497,
      414,  414,  414,  414,  414,  414,  414,  771,   82,  515,
      657,   82,  698,  498,  501,  501,  501,  501,  501,  501,

      501,  502,   82,  499,  433,  433,  433,  433,  433,  433,
      433,  433,  433,  433,  433,  433,  433,  433,  514,  514,
      514,  514,  514,  514,  514,   82,  521,  523,   82,   82,
      439,  503,  440,  440,  440,  440,  440,  440,  440,   82,
       82,  434,  440,  440,  440,  440,  440,  440,  440,  516,
      524,  517,  517,  517,  517,  517,  517,  517,  529,  527,
      525,  531,   82,  526,  530,  533,  535,  534,  551,  441,
       82,   82,  528,  536,  538,   82,  537,   82,  540,  553,
       82,   82,   82,  339,   82,  539,   82,   82,  518,   82,
       82,  483,   82,   82,   82,  476,  476,  476,  476,  476,

      476,  476,   82,  541,  541,  541,  541,  541,  541,  541,
      485,  542,  542,  542,  542,  542,  542,  542,  484,  484,
      484,  484,  484,  484,  484,  487,  570,  555,  568,  486,
      579,   82,  556,  495,   82,  554,  485,  544,  544,  544,
      544,  544,  544,  544,   82,   82,   82,   82,  543,  489,
      545,  545,  545,  545,  545,  545,  545,  497,  491,   82,
      566,  557,  569,  490,  488,  488,  488,  488,  488,  488,
      488,  498,  558,  489,  547,  547,  547,  547,  547,  547,
      547,  499,   82,   82,   82,  478,  478,  546,  493,  548,
      548,  548,  548,  548,  548,  548,  494,  492,  492,  492,

      492,  492,  492,  492,  550,  550,  550,  550,  550,  550,
      550,  493,  496,  496,  496,  496,  496,  496,  496,  552,
      552,  552,  552,  552,  552,  552,  549,  501,  501,  501,
      501,  501,  501,  501,  502,  501,  501,  501,  501,  501,
      501,  501,  559,   82,  562,  563,   82,   82,  582,   82,
      574,   82,   82,   82,  560,  564,  564,  564,  564,  564,
      564,  564,   82,   82,  503,  567,  567,  567,  567,  567,
      567,  567,  516,  571,  517,  517,  517,  517,  517,  517,
      517,  517,  517,  517,  517,  517,  517,  517,  572,  575,
      573,  577,  565,  576,  578,  584,  580,   82,  586,   82,

       82,  585,  618,  627,   82,  589,  614,  619,   82,   82,
       82,  518,   82,  602,  771,   82,   82,  616,   82,   82,
       82,  587,  587,  587,  587,  587,  587,  587,   82,  591,
      542,  542,  542,  542,  542,  542,  542,  604,  613,  477,
      595,  615,   82,  592,  593,  593,  593,  593,  593,  593,
      593,  605,  629,  591,  617,  633,   82,  630,  588,   82,
       82,  606,  628,   82,  622,  477,   82,  478,   82,  647,
      597,  545,  545,  545,  545,  545,  545,  545,  598,   82,
       82,  594,  599,  599,  599,  599,  599,  599,  599,   82,
       82,  478,  771,  597,  548,  548,  548,  548,  548,  548,

      548,  607,  607,  607,  607,  607,  607,  607,  649,  631,
      652,  600,  564,  564,  564,  564,  564,  564,  564,  601,
       82,   82,   82,  656,  497,  610,  610,  610,  610,  610,
      610,  610,  611,  663,  600,   82,   82,  651,  608,  564,
      564,  564,  564,  564,  564,  564,   82,  635,  499,  565,
      624,   82,  625,  625,  625,  625,  625,  625,  625,  632,
      634,  654,  612,  637,  589,   82,  639,   82,   82,   82,
      662,  771,  600,   82,  587,  587,  587,  587,  587,  587,
      587,  587,  587,  587,  587,  587,  587,  587,  591,  626,
       82,  669,  477,  640,  640,  640,  640,  640,  640,  640,

      661,  691,  592,  641,  641,  641,  641,  641,  641,  641,
      653,  588,  591,   82,   82,  600,  771,   82,  477,  590,
      590,  590,  590,  590,  590,  590,  593,  593,  593,  593,
      593,  593,  593,  593,  593,  593,  593,  593,  593,  593,
      642,  643,  643,  643,  643,  643,  643,  643,  595,  478,
      644,  644,  644,  644,  644,  644,  644,  668,   82,  693,
       82,   82,  636,  594,  596,  596,  596,  596,  596,  596,
      596,  655,   82,  478,  664,   82,  687,   82,  597,  599,
      599,  599,  599,  599,  599,  599,  598,  645,  599,  599,
      599,  599,  599,  599,  599,  602,  650,  704,  658,  659,

       82,  597,   82,   82,   82,   82,  771,  671,  600,  646,
      646,  646,  646,  646,  646,  646,  601,  727,  666,  604,
      603,  603,  603,  603,  603,  603,  603,   82,   82,   82,
      705,  600,  680,  605,  607,  607,  607,  607,  607,  607,
      607,  706,   82,  606,  607,  607,  607,  607,  607,  607,
      607,  694,  771,  717,  709,   82,  682,  497,  610,  610,
      610,  610,  610,  610,  610,  611,   82,  707,  697,   82,
      683,  608,  648,  648,  648,  648,  648,  648,  648,   82,
      684,  499,  610,  610,  610,  610,  610,  610,  610,   82,
       82,   82,   82,  623,   82,  612,  660,  660,  660,  660,

      660,  660,  660,  624,  699,  625,  625,  625,  625,  625,
      625,  625,  625,  625,  625,  625,  625,  625,  625,  665,
      667,  670,   82,  700,  674,  719,   82,   82,   82,  672,
      672,  672,  672,  672,  672,  672,  720,   82,  723,  621,
      749,   82,  626,  641,  641,  641,  641,  641,  641,  641,
       82,   82,  477,  710,  676,  678,  678,  678,  678,  678,
      678,  678,  677,   82,   82,  725,  673,  644,  644,  644,
      644,  644,  644,  644,  692,   82,  477,  676,  746,  724,
      609,  260,   82,   82,  478,  685,  685,  685,  685,  685,
      685,  685,  679,  688,  689,  689,  689,  689,  689,  689,

      689,   82,  695,  696,   82,  739,  761,  478,  604,   82,
       82,  701,  701,  701,  701,  701,  701,  701,  702,  708,
       82,   82,  686,  752,   82,   82,   82,  581,  674,  718,
       82,  690,  606,  672,  672,  672,  672,  672,  672,  672,
      672,  672,  672,  672,  672,  672,  672,   82,  703,  711,
      711,  711,  711,  711,  711,  711,  477,  740,  676,  712,
      712,  712,  712,  712,  712,  712,  677,  726,   82,  722,
      673,  675,  675,  675,  675,  675,  675,  675,   82,   82,
      477,  676,  678,  678,  678,  678,  678,  678,  678,  678,
      678,  678,  678,  678,  678,  678,  713,  714,  714,  714,

      714,  714,  714,  714,  680,  742,  197,  753,   82,  769,
      480,  478,  681,  681,  681,  681,  681,  681,  681,  679,
      685,  685,  685,  685,  685,  685,  685,   82,  682,  480,
      412,  412,  771,   82,  478,  685,  685,  685,  685,  685,
      685,  685,  683,  604,  716,  716,  716,  716,  716,  716,
      716,   82,  684,  741,   82,   82,   82,  686,  688,  689,
      689,  689,  689,  689,  689,  689,   82,  606,  689,  689,
      689,  689,  689,  689,  689,  701,  701,  701,  701,  701,
      701,  701,  702,  721,  721,  721,  721,  721,  721,  721,
      730,   82,   82,   82,   82,   82,  690,  701,  701,  701,

      701,  701,  701,  701,  728,  728,  728,  728,  728,  728,
      728,  748,  703,  754,  732,  712,  712,  712,  712,  712,
      712,  712,  762,   82,  755,   82,   82,  764,  733,   82,
       82,   82,   82,  477,   82,   82,   82,   82,  734,   82,
       82,  729,  735,  735,  735,  735,  735,  735,  735,  737,
      737,  737,  737,  737,  737,  737,  477,  743,  743,  743,
      743,  743,  743,  743,  744,  682,  728,  728,  728,  728,
      728,  728,  728,  765,  770,  768,   82,   82,   82,  736,
       82,   82,   82,   82,   82,   82,  738,  730,   82,  684,
       82,   82,   82,   82,  745,  477,  728,  728,  728,  728,

      728,  728,  728,  729,  750,  750,  750,  750,  750,  750,
      750,  732,   82,   82,   82,   82,   82,   82,  477,   82,
       82,   82,   82,  416,   82,  733,  731,  731,  731,  731,
      731,  731,  731,   82,   82,  734,  735,  735,  735,  735,
      735,  735,  735,  735,  735,  735,  735,  735,  735,  735,
      737,  737,  737,  737,  737,  737,  737,  396,   82,  682,
      737,  737,  737,  737,  737,  737,  737,   82,   82,   82,
       82,   82,   82,  736,  743,  743,  743,  743,  743,  743,
      743,  744,   82,  684,   82,   82,   82,  738,  751,  751,
      751,  751,  751,  751,  751,  743,  743,  743,  743,  743,

      743,  743,  756,  756,  756,  756,  756,  756,  756,  358,
       82,  745,  758,  759,  759,  759,  759,  759,  759,  759,
       82,   82,  348,   82,   82,  732,  335,   82,  756,  756,
      756,  756,  756,  756,  756,   82,   82,   82,   82,  757,
      756,  756,  756,  756,  756,  756,  756,   82,   82,  734,
      760,  732,  763,  763,  763,  763,  763,  763,  763,   82,
       82,  296,   82,   82,   82,  757,  758,  759,  759,  759,
      759,  759,  759,  759,   82,  734,  759,  759,  759,  759,
      759,  759,  759,  766,  766,  766,  766,  766,  766,  766,
      766,  766,  766,  766,  766,  766,  766,  766,  766,  766,

      766,  766,  766,  766,  760,  269,   82,   82,   82,   82,
       82,   82,   82,  238,   82,   82,   82,   82,   82,   82,
      767,   82,   82,   82,   82,   82,   82,  767,   47,   47,
       47,   47,   47,   47,   47,   47,   47,   47,   47,   47,
       60,   60,   60,   60,   60,   60,   60,   60,   60,   60,
       60,   60,   76,   76,   76,   76,   76,   76,   76,   76,
      149,  149,  149,  149,  149,  149,  149,  154,  154,   82,
      154,  154,  154,  154,  154,  154,  154,  154,  154,  155,
      155,  155,  155,  155,  155,  155,  155,  155,  155,  155,
      155,  172,  771,   82,  172,  172,   82,  771,  172,   60,

       60,  484,  484,  175,   82,  484,   75,  771,   64,  484,
      488,  488,   63,  771,   48,   48,  488,  771,  488,  492,
      492,  771,  771,  771,  771,  771,  492,  492,  496,  496,
      771,  771,  771,  771,  496,  771,  496,  590,  590,  771,
      771,  771,  771,  590,  771,  590,  596,  596,  771,  771,
      771,  771,  771,  596,  596,  603,  603,  771,  771,  771,
      771,  603,  771,  603,  675,  675,  771,  771,  771,  771,
      771,  675,  675,  681,  681,  771,  771,  771,  771,  681,
      771,  681,  731,  731,  771,  771,  771,  771,  731,  771,
      731,    7,  771,  771,  771,  771,  771,  771,  771,  771,

      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771
    } ;

static yyconst short int yy_chk[2763] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        5,   13,    5,  770,   13,   21,   21,   17,    5,    5,
       29,    5,   11,   17,    5,    5,   11,    5,    5,    6,
       11,    6,   18,    5,   52,   29,   20,    6,    6,   24,

        6,   18,   29,    6,    6,   20,    6,    6,   52,   24,
       25,   24,    6,   16,   16,   16,   16,   16,   16,   16,
       16,   16,   23,   23,   25,   26,   27,  109,   27,   25,
       16,   27,   31,   23,   28,   34,   25,   23,   27,   23,
       31,   27,   48,   48,  768,   34,   23,   26,   28,  109,
       33,   28,   16,   31,   28,   26,   16,   34,   33,   32,
       28,   26,   36,   32,   33,   41,   26,   35,   37,   26,
       33,   36,   32,   26,   32,   35,   33,   32,   39,   35,
       38,   32,   37,   45,   38,   46,   43,   39,   35,   40,
       37,   41,   86,   38,   40,   38,   38,   40,   43,   40,

       39,   58,   38,   60,   40,   86,   60,   39,   39,   42,
       42,   83,   40,   58,   39,   39,   42,   39,   70,   49,
       49,   51,   62,   83,   39,   62,   39,   70,   42,   51,
       49,   45,   45,   46,   49,   50,   49,   77,   50,   71,
       71,   46,   51,   49,   77,   46,   50,   45,   92,   50,
       54,   53,   53,   78,   50,   50,   53,   79,   54,  129,
       80,   50,   54,   56,   55,   53,   55,   53,   55,   80,
       53,   54,   87,   55,   53,   57,   78,   56,  112,   57,
       79,  112,   68,   68,  129,   56,   84,   89,   57,   87,
       57,   57,   68,   84,   89,   87,   92,   57,   59,   59,

       59,   59,   59,   59,   59,   72,   72,   72,   72,   72,
       59,   93,   59,   66,   66,   66,   66,   66,   66,   66,
       59,  153,   85,   93,  153,   68,   94,  755,   68,   85,
       68,   59,   59,   61,   94,   95,   61,   85,   68,   69,
       69,   69,   69,   69,   69,   69,   88,   88,   88,   88,
       88,   88,   88,   90,  133,   98,   97,  158,   95,   99,
      100,   90,  101,   97,  102,   61,   90,   61,   99,   61,
       98,   61,  100,   61,   97,  101,  133,  106,  111,  102,
      158,  114,  754,  108,  108,  113,  102,  106,  106,   61,
      111,   61,  122,   61,   61,  106,   61,  108,  113,  114,

      115,  117,  124,  121,  114,  125,  126,  122,  117,  121,
      122,  122,  115,  128,  132,  115,  741,  124,  122,  126,
      125,  121,  132,  134,  124,  130,  128,  130,  130,  130,
      130,  130,  130,  130,  135,  128,  135,  134,  137,  138,
      140,  139,  141,  143,  135,  142,  144,  145,  151,  146,
      138,  150,  142,  140,  147,  144,  146,  135,  137,  139,
      141,  143,  148,  147,  137,  145,  152,  150,  157,  157,
      160,  148,  162,  163,  165,  168,  152,  182,  173,  739,
      169,  173,  162,  162,  163,  195,  160,  165,  168,  169,
      162,  174,  195,  177,  174,  182,  151,  168,  170,  170,

      170,  170,  170,  170,  170,  170,  171,  171,  171,  171,
      171,  171,  171,  176,  176,  176,  176,  176,  176,  176,
      179,  185,  180,  180,  187,  188,  177,  203,  176,  177,
      186,  177,  734,  189,  192,  203,  170,  214,  194,  177,
      181,  181,  181,  181,  181,  186,  187,  185,  190,  188,
      176,  190,  198,  179,  176,  189,  179,  192,  179,  180,
      194,  198,  201,  214,  190,  732,  179,  179,  202,  201,
      199,  206,  190,  207,  199,  202,  193,  181,  193,  193,
      193,  193,  193,  193,  193,  197,  197,  197,  197,  197,
      197,  197,  199,  205,  208,  206,  207,  209,  210,  211,

      212,  213,  215,  208,  209,  219,  224,  205,  213,  225,
      223,  215,  226,  227,  229,  193,  228,  225,  212,  230,
      210,  211,  223,  239,  233,  227,  224,  219,  230,  234,
      232,  240,  225,  242,  226,  233,  228,  229,  278,  239,
      278,  234,  228,  232,  240,  241,  246,  234,  247,  260,
      232,  236,  236,  236,  236,  236,  236,  236,  237,  237,
      237,  237,  237,  237,  237,  237,  245,  241,  246,  249,
      247,  248,  250,  237,  251,  254,  249,  237,  252,  245,
      263,  242,  237,  255,  248,  250,  256,  261,  237,  258,
      254,  252,  251,  258,  259,  265,  237,  260,  259,  237,

      261,  305,  255,  237,  263,  536,  237,  536,  265,  256,
      305,  237,  266,  266,  266,  266,  266,  266,  266,  267,
      267,  267,  267,  267,  267,  267,  267,  268,  268,  268,
      268,  268,  268,  268,  270,  270,  270,  270,  270,  270,
      270,  271,  271,  271,  271,  271,  271,  271,  272,  270,
      273,  273,  274,  274,  283,  284,  281,  267,  277,  275,
      275,  275,  275,  275,  276,  276,  276,  276,  276,  281,
      277,  270,  285,  284,  290,  270,  301,  325,  272,  285,
      283,  272,  293,  301,  272,  307,  272,  273,  390,  584,
      325,  584,  307,  390,  272,  272,  275,  287,  287,  287,

      287,  287,  287,  287,  288,  293,  288,  288,  288,  288,
      288,  288,  288,  289,  289,  289,  289,  289,  289,  289,
      295,  292,  290,  292,  292,  292,  292,  292,  292,  292,
      299,  302,  303,  306,  309,  304,  310,  312,  313,  316,
      318,  295,  306,  288,  321,  727,  312,  313,  317,  309,
      303,  302,  299,  304,  317,  319,  322,  320,  318,  310,
      292,  296,  321,  296,  319,  316,  296,  326,  343,  296,
      346,  322,  385,  340,  426,  343,  296,  320,  296,  296,
      296,  340,  296,  296,  740,  346,  338,  296,  740,  426,
      385,  326,  327,  327,  327,  327,  327,  327,  327,  329,

      329,  329,  329,  329,  329,  329,  330,  330,  330,  330,
      330,  330,  330,  331,  331,  331,  331,  331,  331,  331,
      332,  332,  332,  332,  332,  332,  332,  333,  333,  333,
      333,  333,  333,  333,  338,  352,  329,  345,  347,  353,
      355,  361,  331,  330,  345,  347,  425,  511,  364,  425,
      331,  349,  511,  355,  361,  364,  366,  332,  334,  334,
      334,  334,  334,  334,  334,  339,  339,  339,  339,  339,
      339,  339,  348,  349,  368,  359,  348,  365,  348,  374,
      348,  360,  366,  352,  724,  377,  348,  353,  357,  357,
      357,  357,  357,  357,  357,  334,  383,  365,  348,  399,

      368,  379,  380,  374,  375,  359,  377,  378,  359,  380,
      334,  359,  399,  359,  360,  383,  378,  360,  375,  360,
      382,  359,  359,  379,  687,  357,  687,  360,  360,  367,
      375,  367,  367,  367,  367,  367,  367,  367,  369,  369,
      369,  369,  369,  369,  369,  370,  382,  370,  370,  370,
      370,  370,  370,  370,  371,  371,  371,  371,  371,  371,
      371,  376,  381,  386,  388,  389,  387,  376,  367,  381,
      394,  381,  389,  376,  395,  396,  401,  402,  400,  404,
      403,  411,  397,  396,  370,  386,  387,  396,  394,  397,
      388,  400,  398,  407,  430,  430,  405,  402,  401,  404,

      395,  398,  403,  405,  406,  406,  406,  406,  406,  406,
      406,  411,  407,  417,  419,  424,  409,  427,  406,  411,
      428,  444,  406,  431,  438,  417,  428,  406,  444,  456,
      427,  407,  419,  406,  411,  431,  437,  438,  407,  424,
      409,  406,  437,  447,  406,  445,  560,  456,  406,  560,
      723,  406,  447,  445,  409,  414,  406,  408,  408,  408,
      408,  408,  408,  408,  409,  410,  410,  410,  410,  410,
      410,  410,  413,  413,  413,  413,  413,  413,  413,  414,
      415,  415,  415,  415,  415,  415,  415,  621,  706,  442,
      621,  657,  657,  414,  418,  418,  418,  418,  418,  418,

      418,  418,  442,  414,  433,  433,  433,  433,  433,  433,
      433,  434,  434,  434,  434,  434,  434,  434,  439,  439,
      439,  439,  439,  439,  439,  696,  446,  448,  695,  694,
      440,  418,  440,  440,  440,  440,  440,  440,  440,  446,
      448,  433,  441,  441,  441,  441,  441,  441,  441,  443,
      450,  443,  443,  443,  443,  443,  443,  443,  453,  452,
      451,  455,  450,  451,  454,  457,  462,  460,  500,  440,
      455,  451,  452,  463,  465,  454,  464,  457,  468,  504,
      463,  452,  460,  715,  453,  466,  504,  465,  443,  500,
      464,  484,  462,  692,  466,  481,  481,  481,  481,  481,

      481,  481,  468,  483,  483,  483,  483,  483,  483,  483,
      484,  485,  485,  485,  485,  485,  485,  485,  486,  486,
      486,  486,  486,  486,  486,  488,  521,  506,  519,  484,
      532,  715,  507,  496,  506,  505,  484,  487,  487,  487,
      487,  487,  487,  487,  507,  532,  519,  521,  485,  488,
      489,  489,  489,  489,  489,  489,  489,  496,  492,  505,
      515,  508,  520,  488,  490,  490,  490,  490,  490,  490,
      490,  496,  508,  488,  491,  491,  491,  491,  491,  491,
      491,  496,  691,  515,  520,  684,  682,  489,  492,  493,
      493,  493,  493,  493,  493,  493,  492,  494,  494,  494,

      494,  494,  494,  494,  495,  495,  495,  495,  495,  495,
      495,  492,  498,  498,  498,  498,  498,  498,  498,  502,
      502,  502,  502,  502,  502,  502,  493,  501,  501,  501,
      501,  501,  501,  501,  501,  503,  503,  503,  503,  503,
      503,  503,  509,  510,  512,  513,  671,  667,  535,  509,
      526,  665,  513,  512,  510,  514,  514,  514,  514,  514,
      514,  514,  526,  535,  501,  516,  516,  516,  516,  516,
      516,  516,  517,  523,  517,  517,  517,  517,  517,  517,
      517,  518,  518,  518,  518,  518,  518,  518,  524,  527,
      525,  529,  514,  528,  530,  538,  533,  523,  540,  528,

      527,  539,  558,  568,  529,  542,  554,  559,  524,  533,
      538,  517,  525,  548,  558,  568,  530,  556,  559,  539,
      540,  541,  541,  541,  541,  541,  541,  541,  554,  542,
      543,  543,  543,  543,  543,  543,  543,  548,  553,  541,
      545,  555,  556,  542,  544,  544,  544,  544,  544,  544,
      544,  548,  571,  542,  557,  576,  553,  572,  541,  571,
      557,  548,  570,  555,  562,  541,  572,  544,  661,  609,
      545,  546,  546,  546,  546,  546,  546,  546,  545,  576,
      570,  544,  547,  547,  547,  547,  547,  547,  547,  653,
      562,  544,  609,  545,  549,  549,  549,  549,  549,  549,

      549,  550,  550,  550,  550,  550,  550,  550,  613,  573,
      616,  547,  564,  564,  564,  564,  564,  564,  564,  547,
      613,  638,  635,  620,  550,  552,  552,  552,  552,  552,
      552,  552,  552,  629,  547,  573,  616,  615,  550,  565,
      565,  565,  565,  565,  565,  565,  615,  579,  550,  564,
      567,  629,  567,  567,  567,  567,  567,  567,  567,  574,
      577,  618,  552,  581,  590,  574,  585,  618,  577,  579,
      628,  581,  606,  585,  587,  587,  587,  587,  587,  587,
      587,  588,  588,  588,  588,  588,  588,  588,  590,  567,
      628,  636,  587,  589,  589,  589,  589,  589,  589,  589,

      627,  649,  590,  591,  591,  591,  591,  591,  591,  591,
      617,  587,  590,  627,  649,  604,  636,  617,  587,  592,
      592,  592,  592,  592,  592,  592,  593,  593,  593,  593,
      593,  593,  593,  594,  594,  594,  594,  594,  594,  594,
      591,  595,  595,  595,  595,  595,  595,  595,  596,  593,
      597,  597,  597,  597,  597,  597,  597,  634,  586,  651,
      583,  582,  580,  593,  598,  598,  598,  598,  598,  598,
      598,  619,  651,  593,  630,  634,  647,  619,  596,  599,
      599,  599,  599,  599,  599,  599,  596,  597,  601,  601,
      601,  601,  601,  601,  601,  603,  614,  662,  622,  623,

      630,  596,  647,  662,  614,  622,  623,  639,  599,  602,
      602,  602,  602,  602,  602,  602,  599,  710,  632,  603,
      605,  605,  605,  605,  605,  605,  605,  632,  710,  639,
      663,  599,  644,  603,  607,  607,  607,  607,  607,  607,
      607,  664,  663,  603,  608,  608,  608,  608,  608,  608,
      608,  652,  656,  693,  669,  664,  644,  607,  610,  610,
      610,  610,  610,  610,  610,  610,  652,  666,  656,  669,
      644,  607,  611,  611,  611,  611,  611,  611,  611,  693,
      644,  607,  612,  612,  612,  612,  612,  612,  612,  578,
      575,  666,  569,  566,  563,  610,  624,  624,  624,  624,

      624,  624,  624,  625,  658,  625,  625,  625,  625,  625,
      625,  625,  626,  626,  626,  626,  626,  626,  626,  631,
      633,  637,  658,  659,  641,  699,  631,  633,  637,  640,
      640,  640,  640,  640,  640,  640,  700,  699,  705,  561,
      726,  659,  625,  642,  642,  642,  642,  642,  642,  642,
      700,  705,  640,  670,  641,  643,  643,  643,  643,  643,
      643,  643,  641,  698,  726,  708,  640,  645,  645,  645,
      645,  645,  645,  645,  650,  670,  640,  641,  722,  707,
      551,  698,  650,  708,  643,  646,  646,  646,  646,  646,
      646,  646,  643,  648,  648,  648,  648,  648,  648,  648,

      648,  707,  654,  655,  722,  717,  752,  643,  646,  654,
      655,  660,  660,  660,  660,  660,  660,  660,  660,  668,
      717,  697,  646,  746,  752,  537,  668,  534,  675,  697,
      746,  648,  646,  672,  672,  672,  672,  672,  672,  672,
      673,  673,  673,  673,  673,  673,  673,  718,  660,  674,
      674,  674,  674,  674,  674,  674,  672,  718,  675,  676,
      676,  676,  676,  676,  676,  676,  675,  709,  531,  704,
      672,  677,  677,  677,  677,  677,  677,  677,  704,  709,
      672,  675,  678,  678,  678,  678,  678,  678,  678,  679,
      679,  679,  679,  679,  679,  679,  676,  680,  680,  680,

      680,  680,  680,  680,  681,  720,  742,  747,  522,  765,
      499,  678,  683,  683,  683,  683,  683,  683,  683,  678,
      685,  685,  685,  685,  685,  685,  685,  720,  681,  497,
      482,  479,  747,  765,  678,  686,  686,  686,  686,  686,
      686,  686,  681,  685,  688,  688,  688,  688,  688,  688,
      688,  475,  681,  719,  742,  474,  473,  685,  689,  689,
      689,  689,  689,  689,  689,  689,  719,  685,  690,  690,
      690,  690,  690,  690,  690,  701,  701,  701,  701,  701,
      701,  701,  701,  702,  702,  702,  702,  702,  702,  702,
      712,  472,  471,  470,  469,  467,  689,  703,  703,  703,

      703,  703,  703,  703,  711,  711,  711,  711,  711,  711,
      711,  725,  701,  748,  712,  713,  713,  713,  713,  713,
      713,  713,  753,  725,  749,  461,  748,  761,  712,  459,
      458,  449,  436,  711,  435,  432,  429,  753,  712,  761,
      749,  711,  714,  714,  714,  714,  714,  714,  714,  716,
      716,  716,  716,  716,  716,  716,  711,  721,  721,  721,
      721,  721,  721,  721,  721,  714,  728,  728,  728,  728,
      728,  728,  728,  762,  769,  764,  423,  422,  421,  714,
      420,  393,  392,  391,  384,  762,  716,  731,  764,  714,
      769,  373,  372,  363,  721,  728,  729,  729,  729,  729,

      729,  729,  729,  728,  730,  730,  730,  730,  730,  730,
      730,  731,  362,  356,  354,  351,  350,  344,  728,  342,
      341,  337,  336,  335,  324,  731,  733,  733,  733,  733,
      733,  733,  733,  323,  315,  731,  735,  735,  735,  735,
      735,  735,  735,  736,  736,  736,  736,  736,  736,  736,
      737,  737,  737,  737,  737,  737,  737,  314,  311,  735,
      738,  738,  738,  738,  738,  738,  738,  308,  300,  298,
      297,  294,  291,  735,  743,  743,  743,  743,  743,  743,
      743,  743,  286,  735,  282,  280,  279,  737,  744,  744,
      744,  744,  744,  744,  744,  745,  745,  745,  745,  745,

      745,  745,  750,  750,  750,  750,  750,  750,  750,  269,
      264,  743,  751,  751,  751,  751,  751,  751,  751,  751,
      262,  257,  253,  244,  243,  750,  238,  235,  756,  756,
      756,  756,  756,  756,  756,  231,  222,  221,  220,  750,
      757,  757,  757,  757,  757,  757,  757,  218,  217,  750,
      751,  756,  758,  758,  758,  758,  758,  758,  758,  216,
      204,  200,  196,  191,  184,  756,  759,  759,  759,  759,
      759,  759,  759,  759,  183,  756,  760,  760,  760,  760,
      760,  760,  760,  763,  763,  763,  763,  763,  763,  763,
      766,  766,  766,  766,  766,  766,  766,  767,  767,  767,

      767,  767,  767,  767,  759,  175,  167,  166,  164,  161,
      159,  149,  136,  131,  127,  123,  120,  119,  118,  116,
      763,  110,  107,  105,  104,  103,   96,  766,  772,  772,
      772,  772,  772,  772,  772,  772,  772,  772,  772,  772,
      773,  773,  773,  773,  773,  773,  773,  773,  773,  773,
      773,  773,  774,  774,  774,  774,  774,  774,  774,  774,
      775,  775,  775,  775,  775,  775,  775,  776,  776,   91,
      776,  776,  776,  776,  776,  776,  776,  776,  776,  777,
      777,  777,  777,  777,  777,  777,  777,  777,  777,  777,
      777,  778,   82,   81,  778,  778,   76,   67,  778,  779,

      779,  780,  780,   65,   30,  780,   22,   19,   15,  780,
      781,  781,   14,    7,    4,    3,  781,    0,  781,  782,
      782,    0,    0,    0,    0,    0,  782,  782,  783,  783,
        0,    0,    0,    0,  783,    0,  783,  784,  784,    0,
        0,    0,    0,  784,    0,  784,  785,  785,    0,    0,
        0,    0,    0,  785,  785,  786,  786,    0,    0,    0,
        0,  786,    0,  786,  787,  787,    0,    0,    0,    0,
        0,  787,  787,  788,  788,    0,    0,    0,    0,  788,
        0,  788,  789,  789,    0,    0,    0,    0,  789,    0,
      789,  771,  771,  771,  771,  771,  771,  771,  771,  771,

      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771,  771,  771,  771,  771,  771,  771,  771,  771,
      771,  771
    } ;

static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr;
static char *yy_full_match;
static int yy_lp;
#define REJECT \
{ \
*yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \
yy_cp = yy_full_match; /* restore poss. backed-over text */ \
++yy_lp; \
goto find_rule; \
}
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "frontend.flex"
#define INITIAL 0
#line 4 "frontend.flex"
#include "parse_tree.h"
#include "iec.h"
#include "token.h"
#define YY_NO_UNPUT

/* long num_lines = 1; */

YYSTYPE yylval;
#define YY_USER_ACTION yylloc.first_line = yylloc.last_line = yylineno;
extern YYLTYPE yylloc;

#define comment 1

#define il 2

#line 1347 "lex.yy.c"

/* 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 ));
#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 yyinput YY_PROTO(( void ));
#else
static int input YY_PROTO(( void ));
#endif
#endif

#if YY_STACK_USED
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 ));
#endif
#ifndef YY_NO_POP_STATE
static void yy_pop_state YY_PROTO(( void ));
#endif
#ifndef YY_NO_TOP_STATE
static int yy_top_state YY_PROTO(( void ));
#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. */

#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, yyout )
#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 if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \
		  && ferror( yyin ) ) \
		YY_FATAL_ERROR( "input in flex scanner failed" );
#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 = NULL, *yy_bp = NULL;
	register int yy_act;

#line 31 "frontend.flex"


#line 1501 "lex.yy.c"

	if ( yy_init )
		{
		yy_init = 0;

#ifdef YY_USER_INIT
		YY_USER_INIT;
#endif

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

		if ( ! yyin )
			yyin = stdin;

		if ( ! yyout )
			yyout = stdout;

		if ( ! yy_current_buffer )
			yy_current_buffer =
				yy_create_buffer( yyin, YY_BUF_SIZE );

		yy_load_buffer_state();
		}

	while ( 1 )		/* loops until end-of-file is reached */
		{
		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_state_ptr = yy_state_buf;
		*yy_state_ptr++ = yy_current_state;
yy_match:
		do
			{
			register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*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 >= 772 )
					yy_c = yy_meta[(unsigned int) yy_c];
				}
			yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
			*yy_state_ptr++ = yy_current_state;
			++yy_cp;
			}
		while ( yy_base[yy_current_state] != 2692 );

yy_find_action:
		yy_current_state = *--yy_state_ptr;
		yy_lp = yy_accept[yy_current_state];
find_rule: /* we branch to this label when backing up */
		for ( ; ; ) /* until we find what rule we matched */
			{
			if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] )
				{
				yy_act = yy_acclist[yy_lp];
					{
					yy_full_match = yy_cp;
					break;
					}
				}
			--yy_cp;
			yy_current_state = *--yy_state_ptr;
			yy_lp = yy_accept[yy_current_state];
			}

		YY_DO_BEFORE_ACTION;

		if ( yy_act != YY_END_OF_BUFFER )
			{
			int yyl;
			for ( yyl = 0; yyl < yyleng; ++yyl )
				if ( yytext[yyl] == '\n' )
					++yylineno;
			}

do_action:	/* This label is used only to access EOF actions. */


		switch ( yy_act )
	{ /* beginning of action switch */
case 1:
YY_RULE_SETUP
#line 33 "frontend.flex"
/* num_lines++; */
	YY_BREAK
case 2:
YY_RULE_SETUP
#line 35 "frontend.flex"
return oper_exp;
	YY_BREAK
case 3:
YY_RULE_SETUP
#line 36 "frontend.flex"
return oper_ne;
	YY_BREAK
case 4:
YY_RULE_SETUP
#line 37 "frontend.flex"
return oper_le;
	YY_BREAK
case 5:
YY_RULE_SETUP
#line 38 "frontend.flex"
return oper_ge;
	YY_BREAK
case 6:
YY_RULE_SETUP
#line 40 "frontend.flex"
return TOF;
	YY_BREAK
case 7:
YY_RULE_SETUP
#line 41 "frontend.flex"
return ACTION;
	YY_BREAK
case 8:
YY_RULE_SETUP
#line 42 "frontend.flex"
return ADD;
	YY_BREAK
case 9:
YY_RULE_SETUP
#line 43 "frontend.flex"
return ANDN;
	YY_BREAK
case 10:
YY_RULE_SETUP
#line 44 "frontend.flex"
return AND;
	YY_BREAK
case 11:
YY_RULE_SETUP
#line 45 "frontend.flex"
return ARRAY;
	YY_BREAK
case 12:
YY_RULE_SETUP
#line 46 "frontend.flex"
return AT;
	YY_BREAK
case 13:
YY_RULE_SETUP
#line 47 "frontend.flex"
return BOOL;
	YY_BREAK
case 14:
YY_RULE_SETUP
#line 48 "frontend.flex"
return BY;
	YY_BREAK
case 15:
YY_RULE_SETUP
#line 49 "frontend.flex"
return BYTE;
	YY_BREAK
case 16:
YY_RULE_SETUP
#line 50 "frontend.flex"
return CALCN;
	YY_BREAK
case 17:
YY_RULE_SETUP
#line 51 "frontend.flex"
return CALC;
	YY_BREAK
case 18:
YY_RULE_SETUP
#line 52 "frontend.flex"
return CAL;
	YY_BREAK
case 19:
YY_RULE_SETUP
#line 53 "frontend.flex"
return CASE;
	YY_BREAK
case 20:
YY_RULE_SETUP
#line 54 "frontend.flex"
return CD;
	YY_BREAK
case 21:
YY_RULE_SETUP
#line 55 "frontend.flex"
return CLK;
	YY_BREAK
case 22:
YY_RULE_SETUP
#line 56 "frontend.flex"
return CONCAT;
	YY_BREAK
case 23:
YY_RULE_SETUP
#line 57 "frontend.flex"
return CONFIGURATION;
	YY_BREAK
case 24:
YY_RULE_SETUP
#line 58 "frontend.flex"
return CONSTANT;
	YY_BREAK
case 25:
YY_RULE_SETUP
#line 59 "frontend.flex"
return CTD;
	YY_BREAK
case 26:
YY_RULE_SETUP
#line 60 "frontend.flex"
return CTUD;
	YY_BREAK
case 27:
YY_RULE_SETUP
#line 61 "frontend.flex"
return CTU;
	YY_BREAK
case 28:
YY_RULE_SETUP
#line 62 "frontend.flex"
return CU;
	YY_BREAK
case 29:
YY_RULE_SETUP
#line 63 "frontend.flex"
return DATE_AND_TIME;
	YY_BREAK
case 30:
YY_RULE_SETUP
#line 64 "frontend.flex"
return DATE;
	YY_BREAK
case 31:
YY_RULE_SETUP
#line 65 "frontend.flex"
return DINT;
	YY_BREAK
case 32:
YY_RULE_SETUP
#line 66 "frontend.flex"
return DIV;
	YY_BREAK
case 33:
YY_RULE_SETUP
#line 67 "frontend.flex"
return DO;
	YY_BREAK
case 34:
YY_RULE_SETUP
#line 68 "frontend.flex"
return DATE_AND_TIME;
	YY_BREAK
case 35:
YY_RULE_SETUP
#line 69 "frontend.flex"
return DWORD;
	YY_BREAK
case 36:
YY_RULE_SETUP
#line 70 "frontend.flex"
return ELSE;
	YY_BREAK
case 37:
YY_RULE_SETUP
#line 71 "frontend.flex"
return ELSIF;
	YY_BREAK
case 38:
YY_RULE_SETUP
#line 72 "frontend.flex"
return END_ACTION;
	YY_BREAK
case 39:
YY_RULE_SETUP
#line 73 "frontend.flex"
return END_CASE;
	YY_BREAK
case 40:
YY_RULE_SETUP
#line 74 "frontend.flex"
return END_CONFIGURATION;
	YY_BREAK
case 41:
YY_RULE_SETUP
#line 75 "frontend.flex"
return END_FOR;
	YY_BREAK
case 42:
YY_RULE_SETUP
#line 76 "frontend.flex"
return END_FUNCTION_BLOCK;
	YY_BREAK
case 43:
YY_RULE_SETUP
#line 77 "frontend.flex"
return END_FUNCTION;
	YY_BREAK
case 44:
YY_RULE_SETUP
#line 78 "frontend.flex"
return END_IF;
	YY_BREAK
case 45:
YY_RULE_SETUP
#line 79 "frontend.flex"
return END_PROGRAM;
	YY_BREAK
case 46:
YY_RULE_SETUP
#line 80 "frontend.flex"
return END_REPEAT;
	YY_BREAK
case 47:
YY_RULE_SETUP
#line 81 "frontend.flex"
return END_RESOURCE;
	YY_BREAK
case 48:
YY_RULE_SETUP
#line 82 "frontend.flex"
return END_STEP;
	YY_BREAK
case 49:
YY_RULE_SETUP
#line 83 "frontend.flex"
return END_STRUCT;
	YY_BREAK
case 50:
YY_RULE_SETUP
#line 84 "frontend.flex"
return END_TRANSITION;
	YY_BREAK
case 51:
YY_RULE_SETUP
#line 85 "frontend.flex"
return END_TYPE;
	YY_BREAK
case 52:
YY_RULE_SETUP
#line 86 "frontend.flex"
return END_VAR;
	YY_BREAK
case 53:
YY_RULE_SETUP
#line 87 "frontend.flex"
return END_WHILE;
	YY_BREAK
case 54:
YY_RULE_SETUP
#line 88 "frontend.flex"
return EQ;
	YY_BREAK
case 55:
YY_RULE_SETUP
#line 89 "frontend.flex"
return EXIT;
	YY_BREAK
case 56:
YY_RULE_SETUP
#line 90 "frontend.flex"
return EXPT;
	YY_BREAK
case 57:
YY_RULE_SETUP
#line 91 "frontend.flex"
return FALSE;
	YY_BREAK
case 58:
YY_RULE_SETUP
#line 92 "frontend.flex"
return F_EDGE;
	YY_BREAK
case 59:
YY_RULE_SETUP
#line 93 "frontend.flex"
return FOR;
	YY_BREAK
case 60:
YY_RULE_SETUP
#line 94 "frontend.flex"
return FROM;
	YY_BREAK
case 61:
YY_RULE_SETUP
#line 95 "frontend.flex"
return F_TRIG;
	YY_BREAK
case 62:
YY_RULE_SETUP
#line 96 "frontend.flex"
return FUNCTION_BLOCK;
	YY_BREAK
case 63:
YY_RULE_SETUP
#line 97 "frontend.flex"
return FUNCTION;
	YY_BREAK
case 64:
YY_RULE_SETUP
#line 98 "frontend.flex"
return GE;
	YY_BREAK
case 65:
YY_RULE_SETUP
#line 99 "frontend.flex"
return GT;
	YY_BREAK
case 66:
YY_RULE_SETUP
#line 100 "frontend.flex"
return IF;
	YY_BREAK
case 67:
YY_RULE_SETUP
#line 101 "frontend.flex"
return INITIAL_STEP;
	YY_BREAK
case 68:
YY_RULE_SETUP
#line 102 "frontend.flex"
return IN;
	YY_BREAK
case 69:
YY_RULE_SETUP
#line 103 "frontend.flex"
return INSERT;
	YY_BREAK
case 70:
YY_RULE_SETUP
#line 104 "frontend.flex"
return INTERVAL;
	YY_BREAK
case 71:
YY_RULE_SETUP
#line 105 "frontend.flex"
return INT;
	YY_BREAK
case 72:
YY_RULE_SETUP
#line 106 "frontend.flex"
return JMPCN;
	YY_BREAK
case 73:
YY_RULE_SETUP
#line 107 "frontend.flex"
return JMPC;
	YY_BREAK
case 74:
YY_RULE_SETUP
#line 108 "frontend.flex"
return JMP;
	YY_BREAK
case 75:
YY_RULE_SETUP
#line 109 "frontend.flex"
return LD;
	YY_BREAK
case 76:
YY_RULE_SETUP
#line 110 "frontend.flex"
return LE;
	YY_BREAK
case 77:
YY_RULE_SETUP
#line 111 "frontend.flex"
return LIMIT;
	YY_BREAK
case 78:
YY_RULE_SETUP
#line 112 "frontend.flex"
return LINT;
	YY_BREAK
case 79:
YY_RULE_SETUP
#line 113 "frontend.flex"
return LREAL;
	YY_BREAK
case 80:
YY_RULE_SETUP
#line 114 "frontend.flex"
return LT;
	YY_BREAK
case 81:
YY_RULE_SETUP
#line 115 "frontend.flex"
return LWORD;
	YY_BREAK
case 82:
YY_RULE_SETUP
#line 116 "frontend.flex"
return MAX;
	YY_BREAK
case 83:
YY_RULE_SETUP
#line 117 "frontend.flex"
return MIN;
	YY_BREAK
case 84:
YY_RULE_SETUP
#line 118 "frontend.flex"
return MOD;
	YY_BREAK
case 85:
YY_RULE_SETUP
#line 119 "frontend.flex"
return MOVE;
	YY_BREAK
case 86:
YY_RULE_SETUP
#line 120 "frontend.flex"
return MUL;
	YY_BREAK
case 87:
YY_RULE_SETUP
#line 121 "frontend.flex"
return MUX;
	YY_BREAK
case 88:
YY_RULE_SETUP
#line 122 "frontend.flex"
return NE;
	YY_BREAK
case 89:
YY_RULE_SETUP
#line 123 "frontend.flex"
return NOT;
	YY_BREAK
case 90:
YY_RULE_SETUP
#line 124 "frontend.flex"
return OF;
	YY_BREAK
case 91:
YY_RULE_SETUP
#line 125 "frontend.flex"
return ON;
	YY_BREAK
case 92:
YY_RULE_SETUP
#line 126 "frontend.flex"
return ORN;
	YY_BREAK
case 93:
YY_RULE_SETUP
#line 127 "frontend.flex"
return OR;
	YY_BREAK
case 94:
YY_RULE_SETUP
#line 128 "frontend.flex"
return PRIORITY;
	YY_BREAK
case 95:
YY_RULE_SETUP
#line 129 "frontend.flex"
return PROGRAM;
	YY_BREAK
case 96:
YY_RULE_SETUP
#line 130 "frontend.flex"
return PT;
	YY_BREAK
case 97:
YY_RULE_SETUP
#line 131 "frontend.flex"
return PV;
	YY_BREAK
case 98:
YY_RULE_SETUP
#line 132 "frontend.flex"
return READ_ONLY;
	YY_BREAK
case 99:
YY_RULE_SETUP
#line 133 "frontend.flex"
return READ_WRITE;
	YY_BREAK
case 100:
YY_RULE_SETUP
#line 134 "frontend.flex"
return REAL;
	YY_BREAK
case 101:
YY_RULE_SETUP
#line 135 "frontend.flex"
return R_EDGE;
	YY_BREAK
case 102:
YY_RULE_SETUP
#line 136 "frontend.flex"
return REPEAT;
	YY_BREAK
case 103:
YY_RULE_SETUP
#line 137 "frontend.flex"
return RESOURCE;
	YY_BREAK
case 104:
YY_RULE_SETUP
#line 138 "frontend.flex"
return RETAIN;
	YY_BREAK
case 105:
YY_RULE_SETUP
#line 139 "frontend.flex"
return RETURN;
	YY_BREAK
case 106:
YY_RULE_SETUP
#line 140 "frontend.flex"
return R1;
	YY_BREAK
case 107:
YY_RULE_SETUP
#line 141 "frontend.flex"
return RS;
	YY_BREAK
case 108:
YY_RULE_SETUP
#line 142 "frontend.flex"
return R_TRIG;
	YY_BREAK
case 109:
YY_RULE_SETUP
#line 143 "frontend.flex"
return SEL;
	YY_BREAK
case 110:
YY_RULE_SETUP
#line 144 "frontend.flex"
return SINGLE;
	YY_BREAK
case 111:
YY_RULE_SETUP
#line 145 "frontend.flex"
return SINT;
	YY_BREAK
case 112:
YY_RULE_SETUP
#line 146 "frontend.flex"
return S1;
	YY_BREAK
case 113:
YY_RULE_SETUP
#line 147 "frontend.flex"
return SR;
	YY_BREAK
case 114:
YY_RULE_SETUP
#line 148 "frontend.flex"
return STEP;
	YY_BREAK
case 115:
YY_RULE_SETUP
#line 149 "frontend.flex"
return ST;
	YY_BREAK
case 116:
YY_RULE_SETUP
#line 150 "frontend.flex"
return STRING;
	YY_BREAK
case 117:
YY_RULE_SETUP
#line 151 "frontend.flex"
return STRUCT;
	YY_BREAK
case 118:
YY_RULE_SETUP
#line 152 "frontend.flex"
return SUB;
	YY_BREAK
case 119:
YY_RULE_SETUP
#line 153 "frontend.flex"
return TON;
	YY_BREAK
case 120:
YY_RULE_SETUP
#line 154 "frontend.flex"
return TASK;
	YY_BREAK
case 121:
YY_RULE_SETUP
#line 155 "frontend.flex"
return THEN;
	YY_BREAK
case 122:
YY_RULE_SETUP
#line 156 "frontend.flex"
return TIME_OF_DAY;
	YY_BREAK
case 123:
YY_RULE_SETUP
#line 157 "frontend.flex"
return TIME;
	YY_BREAK
case 124:
YY_RULE_SETUP
#line 158 "frontend.flex"
return TOF;
	YY_BREAK
case 125:
YY_RULE_SETUP
#line 159 "frontend.flex"
return TON;
	YY_BREAK
case 126:
YY_RULE_SETUP
#line 160 "frontend.flex"
return TO;
	YY_BREAK
case 127:
YY_RULE_SETUP
#line 161 "frontend.flex"
return TIME_OF_DAY;
	YY_BREAK
case 128:
YY_RULE_SETUP
#line 162 "frontend.flex"
return TP;
	YY_BREAK
case 129:
YY_RULE_SETUP
#line 163 "frontend.flex"
return TRANSITION;
	YY_BREAK
case 130:
YY_RULE_SETUP
#line 164 "frontend.flex"
return TRUE;
	YY_BREAK
case 131:
YY_RULE_SETUP
#line 165 "frontend.flex"
return TYPE;
	YY_BREAK
case 132:
YY_RULE_SETUP
#line 166 "frontend.flex"
return UDINT;
	YY_BREAK
case 133:
YY_RULE_SETUP
#line 167 "frontend.flex"
return UINT;
	YY_BREAK
case 134:
YY_RULE_SETUP
#line 168 "frontend.flex"
return ULINT;
	YY_BREAK
case 135:
YY_RULE_SETUP
#line 169 "frontend.flex"
return UNTIL;
	YY_BREAK
case 136:
YY_RULE_SETUP
#line 170 "frontend.flex"
return USINT;
	YY_BREAK
case 137:
YY_RULE_SETUP
#line 171 "frontend.flex"
return VAR_ACCESS;
	YY_BREAK
case 138:
YY_RULE_SETUP
#line 172 "frontend.flex"
return VAR_EXTERNAL;
	YY_BREAK
case 139:
YY_RULE_SETUP
#line 173 "frontend.flex"
return VAR_GLOBAL;
	YY_BREAK
case 140:
YY_RULE_SETUP
#line 174 "frontend.flex"
return VAR_IN_OUT;
	YY_BREAK
case 141:
YY_RULE_SETUP
#line 175 "frontend.flex"
return VAR_INPUT;
	YY_BREAK
case 142:
YY_RULE_SETUP
#line 176 "frontend.flex"
return VAR_OUTPUT;
	YY_BREAK
case 143:
YY_RULE_SETUP
#line 177 "frontend.flex"
return VAR;
	YY_BREAK
case 144:
YY_RULE_SETUP
#line 178 "frontend.flex"
return WHILE;
	YY_BREAK
case 145:
YY_RULE_SETUP
#line 179 "frontend.flex"
return WITH;
	YY_BREAK
case 146:
YY_RULE_SETUP
#line 180 "frontend.flex"
return WORD;
	YY_BREAK
case 147:
YY_RULE_SETUP
#line 181 "frontend.flex"
return XORN;
	YY_BREAK
case 148:
YY_RULE_SETUP
#line 182 "frontend.flex"
return XOR;
	YY_BREAK
case 149:
YY_RULE_SETUP
#line 184 "frontend.flex"
{
    yylval.ID=strdup(yytext);

    /*
     * Check for the following identifiers:
     * 		simple_type_name
     *		subrange_type_name
     *		enumerated_type_name
     *		array_type_name
     *		structure_type_name
     *		string_type_name
     *
     *		variable_name
     *		global_var_name
     *		fb_name
     */
    if (check_variable(yytext, &yylval))
	return variable_name;

    if (check_funcblk(yytext, &yylval))
	return fb_name;

    /*
     * Catch-all return
     */
    return identifier;
}
	YY_BREAK
case 150:
YY_RULE_SETUP
#line 212 "frontend.flex"
{
    /* TOKEN: integer */
    yylval.Int = str_to_int(yytext);
    return integer;
}
	YY_BREAK
case 151:
YY_RULE_SETUP
#line 218 "frontend.flex"
{
    /* TOKEN: binary_integer */
    yylval.Int = str_to_int(yytext);
    return binary_integer;
}
	YY_BREAK
case 152:
YY_RULE_SETUP
#line 224 "frontend.flex"
{
    /* TOKEN: octal_integer */
    yylval.Int = str_to_int(yytext);
    return octal_integer;
}
	YY_BREAK
case 153:
YY_RULE_SETUP
#line 230 "frontend.flex"
{
    /* TOKEN: hex_integer */
    yylval.Int = str_to_int(yytext);
    return hex_integer;
}
	YY_BREAK
case 154:
YY_RULE_SETUP
#line 236 "frontend.flex"
{
    /* TOKEN: real_literal */
    yylval.Real = str_to_real(yytext);
    return real_literal;
}
	YY_BREAK
case 155:
YY_RULE_SETUP
#line 242 "frontend.flex"
{
    /* TOKEN: duration */
    yylval.Real = str_to_time(yytext);
    return duration;
}
	YY_BREAK
case 156:
YY_RULE_SETUP
#line 248 "frontend.flex"
{
    /* TOKEN: time_of_day */
    yylval.Real = str_to_daytime(yytext);
    return time_of_day;
}
	YY_BREAK
case 157:
YY_RULE_SETUP
#line 254 "frontend.flex"
{
    /* TOKEN: date */
    yylval.Real = str_to_date(yytext);
    return date;
}
	YY_BREAK
case 158:
YY_RULE_SETUP
#line 260 "frontend.flex"
{
    /* TOKEN: date_and_time */
    yylval.Real = str_to_dateandtime(yytext);
    return date_and_time;
}
	YY_BREAK
case 159:
YY_RULE_SETUP
#line 266 "frontend.flex"
{
    /* TOKEN: date_and_time */
    return direct_variable;
}
	YY_BREAK
case 160:
YY_RULE_SETUP
#line 271 "frontend.flex"
BEGIN(comment);
	YY_BREAK
case 161:
YY_RULE_SETUP
#line 272 "frontend.flex"
/* Silently eat comment */
	YY_BREAK
case 162:
YY_RULE_SETUP
#line 273 "frontend.flex"
/* Silently eat comment */
	YY_BREAK
case 163:
YY_RULE_SETUP
#line 274 "frontend.flex"
BEGIN(INITIAL);
	YY_BREAK
case 164:
YY_RULE_SETUP
#line 276 "frontend.flex"

{
    /* Strings */
    int i, j;
    char *tmp = malloc((yyleng+1) * 2);

    memset(tmp, 0, (yyleng+1) * 2);
    
    for(i=1, j=0; i<yyleng-1; i++) {
        switch(yytext[i]) {
	case '$':
	    switch(yytext[i+1]) {
	    case '$':
		tmp[j] = '$';
		j++;
		i++;
		break;

	    case '\'':
		tmp[j] = '\\';
		j++;
		tmp[j] = '\'';
		j++;
		i++;
		break;

	    case 'L':
	    case 'l':
		tmp[j] = '\\';
		j++;
		tmp[j] = 'n';
		j++;
		i++;
		break;

	    case 'N':
	    case 'n':
		tmp[j] = '\\';
		j++;
		tmp[j] = 'r';
		j++;
		tmp[j] = '\\';
		j++;
		tmp[j] = 'n';
		j++;
		i++;
		break;

	    case 'P':
	    case 'p':
		tmp[j] = '\\';
		j++;
		tmp[j] = 'f';
		j++;
		i++;
		break;

	    case 'R':
	    case 'r':
		tmp[j] = '\\';
		j++;
		tmp[j] = 'r';
		j++;
		i++;
		break;

	    case 'T':
	    case 't':
		tmp[j] = '\\';
		j++;
		tmp[j] = 't';
		j++;
		i++;
		break;

	    default:
		fprintf(stderr, "Unknown escape sequence '$%c'\n",
			yytext[i+1]);
		break;
	    }
	    break;

	case '\\':
	    tmp[j] = '\\';
	    j++;
	    tmp[j] = '\\';
	    j++;
            break;

	default:
	    tmp[j] = yytext[i];
	    j++;
            break;
	}

    }
    yylval.String = tmp;
    fprintf(stderr, ">>>%s<<<\n", tmp);
    return character_string;
}

	YY_BREAK
case 165:
YY_RULE_SETUP
#line 378 "frontend.flex"
{ /* Eat any whitespace */ }
	YY_BREAK
case 166:
YY_RULE_SETUP
#line 380 "frontend.flex"
{
    return (int) *yytext;
}
	YY_BREAK
case 167:
YY_RULE_SETUP
#line 384 "frontend.flex"
{
    printf("Unknown character in input file: '%s'\n", yytext);
}
	YY_BREAK
case 168:
YY_RULE_SETUP
#line 387 "frontend.flex"
ECHO;
	YY_BREAK
#line 2601 "lex.yy.c"
			case YY_STATE_EOF(INITIAL):
			case YY_STATE_EOF(comment):
			case YY_STATE_EOF(il):
				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;
		YY_RESTORE_YY_MORE_OFFSET

		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.
			 */
			yy_n_chars = yy_current_buffer->yy_n_chars;
			yy_current_buffer->yy_input_file = yyin;
			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[yy_n_chars] )
			{ /* This was really a NUL. */
			yy_state_type yy_next_state;

			yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;

			yy_current_state = yy_get_previous_state();

			/* Okay, we're now positioned to make the NUL
			 * transition.  We couldn't have
			 * yy_get_previous_state() go ahead and do it
			 * for us because it doesn't know how to deal
			 * with the possibility of jamming (and we don't
			 * want to build jamming into it because then it
			 * will run more slowly).
			 */

			yy_next_state = yy_try_NUL_trans( yy_current_state );

			yy_bp = yytext_ptr + YY_MORE_ADJ;

			if ( yy_next_state )
				{
				/* Consume the NUL. */
				yy_cp = ++yy_c_buf_p;
				yy_current_state = yy_next_state;
				goto yy_match;
				}

			else
				{
				yy_cp = yy_c_buf_p;
				goto yy_find_action;
				}
			}

		else switch ( yy_get_next_buffer() )
			{
			case EOB_ACT_END_OF_FILE:
				{
				yy_did_buffer_switch_on_eof = 0;

				if ( 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();

				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[yy_n_chars];

				yy_current_state = yy_get_previous_state();

				yy_cp = yy_c_buf_p;
				yy_bp = yytext_ptr + YY_MORE_ADJ;
				goto yy_find_action;
			}
		break;
		}

	default:
		YY_FATAL_ERROR(
			"fatal flex scanner internal error--no action found" );
	} /* end of action switch */
		} /* end of scanning one token */
	} /* end of 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()
	{
	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[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 = 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]),
			yy_n_chars, num_to_read );

		yy_current_buffer->yy_n_chars = yy_n_chars;
		}

	if ( yy_n_chars == 0 )
		{
		if ( number_to_move == YY_MORE_ADJ )
			{
			ret_val = EOB_ACT_END_OF_FILE;
			yyrestart( yyin );
			}

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

	else
		ret_val = EOB_ACT_CONTINUE_SCAN;

	yy_n_chars += number_to_move;
	yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
	yy_current_buffer->yy_ch_buf[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()
	{
	register yy_state_type yy_current_state;
	register char *yy_cp;

	yy_current_state = yy_start;
	yy_state_ptr = yy_state_buf;
	*yy_state_ptr++ = yy_current_state;

	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);
		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 >= 772 )
				yy_c = yy_meta[(unsigned int) yy_c];
			}
		yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
		*yy_state_ptr++ = yy_current_state;
		}

	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 )
#else
static yy_state_type yy_try_NUL_trans( yy_current_state )
yy_state_type yy_current_state;
#endif
	{
	register int yy_is_jam;

	register YY_CHAR yy_c = 1;
	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 >= 772 )
			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 == 771);
	if ( ! yy_is_jam )
		*yy_state_ptr++ = yy_current_state;

	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 )
#else
static void yyunput( c, yy_bp )
int c;
register char *yy_bp;
#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 = 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 =
			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;

	if ( c == '\n' )
		--yylineno;

	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()
#else
static int input()
#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[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() )
				{
				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( yyin );

					/* 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();
#else
					return input();
#endif
					}

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

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

	if ( c == '\n' )
		++yylineno;

	return c;
	}


#ifdef YY_USE_PROTOS
void yyrestart( FILE *input_file )
#else
void yyrestart( input_file )
FILE *input_file;
#endif
	{
	if ( ! yy_current_buffer )
		yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );

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


#ifdef YY_USE_PROTOS
void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
#else
void yy_switch_to_buffer( new_buffer )
YY_BUFFER_STATE new_buffer;
#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 = yy_n_chars;
		}

	yy_current_buffer = new_buffer;
	yy_load_buffer_state();

	/* 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( void )
#else
void yy_load_buffer_state()
#endif
	{
	yy_n_chars = yy_current_buffer->yy_n_chars;
	yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
	yyin = yy_current_buffer->yy_input_file;
	yy_hold_char = *yy_c_buf_p;
	}


#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
#else
YY_BUFFER_STATE yy_create_buffer( file, size )
FILE *file;
int size;
#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 );

	return b;
	}


#ifdef YY_USE_PROTOS
void yy_delete_buffer( YY_BUFFER_STATE b )
#else
void yy_delete_buffer( b )
YY_BUFFER_STATE b;
#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 );
	}


#ifndef YY_ALWAYS_INTERACTIVE
#ifndef YY_NEVER_INTERACTIVE
extern int isatty YY_PROTO(( int ));
#endif
#endif

#ifdef YY_USE_PROTOS
void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
#else
void yy_init_buffer( b, file )
YY_BUFFER_STATE b;
FILE *file;
#endif


	{
	yy_flush_buffer( b );

	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 ? (isatty( fileno(file) ) > 0) : 0;
#endif
#endif
	}


#ifdef YY_USE_PROTOS
void yy_flush_buffer( YY_BUFFER_STATE b )
#else
void yy_flush_buffer( b )
YY_BUFFER_STATE b;
#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();
	}


#ifndef YY_NO_SCAN_BUFFER
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size )
#else
YY_BUFFER_STATE yy_scan_buffer( base, size )
char *base;
yy_size_t size;
#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 );

	return b;
	}
#endif


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

	return yy_scan_bytes( yy_str, len );
	}
#endif


#ifndef YY_NO_SCAN_BYTES
#ifdef YY_USE_PROTOS
YY_BUFFER_STATE yy_scan_bytes( yyconst char *bytes, int len )
#else
YY_BUFFER_STATE yy_scan_bytes( bytes, len )
yyconst char *bytes;
int len;
#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 );
	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 )
#else
static void yy_push_state( new_state )
int new_state;
#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()
	{
	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()
	{
	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
#line 387 "frontend.flex"
