rcfile_l.c   [plain text]


/* 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 yywrap() 1
#define YY_SKIP_YYWRAP
typedef unsigned char YY_CHAR;
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
typedef int yy_state_type;
extern char *yytext;
#define yytext_ptr yytext

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 138
#define YY_END_OF_BUFFER 139
static yyconst short int yy_accept[1497] =
    {   0,
        0,    0,    0,    0,    0,    0,  139,  136,  137,  134,
      136,  136,  136,    3,  123,  136,  135,   75,  136,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,    4,
        4,    4,    4,    3,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,  136,  136,  137,
      136,    0,    1,  136,    0,  134,  136,  136,    0,    2,

      135,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,  136,  136,   71,  136,  136,
      136,  136,  136,  136,  136,  136,  136,   94,  136,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,   74,  136,  136,  136,  136,  136,  136,    4,    4,
        1,    4,    4,    4,    2,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,  136,    1,    0,    2,  136,  136,  136,
      136,  136,  136,  136,  136,  136,   23,  119,  136,   31,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  107,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,

      136,  120,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,   56,  136,  136,   39,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,  136,   37,  136,  136,  136,
      136,  136,  136,  136,   59,  136,  136,  136,  136,  136,
      136,  136,    5,  136,  136,  136,  136,   36,  109,  136,
      136,  136,  136,  136,  136,  136,   22,  136,  136,  136,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,  136,  129,  124,  131,  128,  133,  132,
      125,  127,  130,  126,  136,   30,  136,  136,  136,  136,
       38,  136,  136,  136,  136,  136,  136,  136,  136,  136,

      136,  136,  136,   72,  136,  106,  136,  136,   95,  136,
      136,   58,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,   40,  136,   49,  136,  136,   20,   27,
       60,  136,  136,  136,  136,  136,  136,  136,  136,  136,
       21,   51,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  108,   48,  136,  136,  118,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
      136,  136,  136,  136,  136,   57,  136,  136,  136,  136,
      136,  136,  136,  136,  136,  136,  136,   96,  136,  136,
      136,  136,  136,  136,  136,  117,  136,  136,  136,  136,
      136,  136,   79,  136,  136,  136,  136,  136,  136,  136,

      136,  136,  136,  136,  136,  136,  136,  136,  102,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,   25,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,   73,  136,  136,  136,  121,
      136,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,  136,  136,  136,  136,  136,  136,  136,    9,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,   50,  136,   32,    7,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,   93,   81,  136,  136,  136,  136,  136,  136,   77,
      136,  136,  136,  136,   63,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,   19,  136,  136,  136,  136,
      136,  136,  136,  136,  110,  136,  136,   10,  136,  136,

      136,  136,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,   69,  136,  136,  136,  136,

      136,   50,  100,  136,  136,  136,  136,  136,  136,    6,
      105,   62,  136,  136,  136,  136,  136,  136,   82,  136,
      136,  136,   88,  136,  136,  136,  122,  136,  136,    8,
       64,  136,  136,   29,  136,  136,  136,  136,  136,   99,
       26,  136,  136,  136,  136,  136,  111,  136,  136,  101,
       42,  136,  136,  136,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,  136,   55,  136,  136,  136,
      136,   38,   18,  136,  136,   43,  136,  136,   68,   98,
      136,  136,  136,  136,   28,  136,   35,  136,  136,  136,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,   49,  136,  136,  136,  136,  136,
      136,   25,   44,   12,  136,   51,   54,  136,  136,  136,
      136,  112,  136,   48,   16,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,   41,  136,  136,  136,  136,  136,
      136,   46,  136,  136,  136,  136,   61,   11,   33,   34,
      136,  136,  136,  136,  136,  136,  136,  136,  136,  136,
       86,  136,   91,  136,   85,  136,   87,  102,  136,  136,
      136,  136,   45,  136,  136,  136,  113,  136,  136,  136,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,  136,   65,   14,  116,  136,
      103,  136,  136,   66,  136,  136,   97,  136,  105,  136,
      136,  136,  136,   80,   84,  136,  136,  136,  136,  136,
       13,  136,   59,   70,  136,   15,  136,  136,   17,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,  136,  136,  136,  136,  136,  136,  136,
      136,  136,  136,  136,  136,   88,  136,   60,  136,   53,
      114,  136,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,   30,  136,  136,   52,  136,   24,   76,   78,  136,
       89,   83,   91,   92,  136,  136,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,  104,   47,  136,  136,  136,  136,    4,    4,    4,
        4,    4,    4,   67,  136,  136,  115,    4,    4,    4,
        4,   90,   29,    4,    4,    0

    } ;

static yyconst int yy_ec[256] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
        1,    1,    2,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    2,    1,    4,    5,    1,    1,    1,    6,    1,
        1,    7,    1,    8,    9,    1,    1,   10,   10,   11,
       12,   13,   14,   10,   10,   15,   10,    8,    8,    1,
       16,    1,    1,    1,   17,    1,    1,   18,   19,    1,
        1,    1,   20,    1,   21,    1,   22,   23,   24,   25,
        1,   26,   27,   28,   29,    1,    1,    1,    1,    1,
        1,   30,    1,    1,   31,    1,   32,   33,   34,   35,

       36,   37,   38,   39,   40,    1,   41,   42,   43,   44,
       45,   46,   47,   48,   49,   50,   51,   52,   53,   54,
       55,   56,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    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[57] =
    {   0,
        1,    2,    2,    1,    1,    1,    1,    2,    1,    1,
        1,    1,    1,    1,    1,    2,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    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 short int yy_base[1508] =
    {   0,
        0,    0,   56,    0, 1619, 1618, 1663,    0, 1660, 1666,
      111,  114,  118,    0, 1666,  125,  135, 1666,  100, 1633,
     1638, 1634, 1640, 1633, 1631, 1637, 1651,  110,  110,   84,
      121,  114,  130, 1604,  135,  135,   82,  137,  141,  138,
      139,  155, 1600,   95,  169,  153,  103, 1611,  159,    0,
      218,  225,  229,    0,  236,  246,  177, 1622, 1627, 1623,
     1629, 1622, 1620, 1626, 1640,  221,  162,  175,  181,  219,
      234, 1593,  204,  195,  206,  235,  242,  236,  239,  252,
     1589,  207,  266,  274,  250, 1600,  256,  278,    0, 1637,
      325, 1634,    0,  322,  130, 1666,  329,  340, 1631,    0,

      350, 1612, 1607, 1608, 1616, 1608, 1609, 1605, 1605, 1603,
     1595,  248, 1581, 1575, 1574, 1572, 1579, 1585, 1588, 1583,
     1581, 1568, 1571, 1563, 1571, 1565, 1566, 1562, 1560, 1558,
      269, 1559, 1558, 1558,  297, 1573,  243,    0,  299, 1559,
     1560, 1552,  270, 1569, 1557, 1555, 1554,  333, 1555, 1553,
      214, 1549, 1545, 1558, 1541,  309,  304, 1551, 1537, 1544,
     1542,  330, 1542, 1546, 1535, 1552,  311, 1535, 1533, 1545,
     1537,    0, 1547, 1543, 1541, 1544,  339, 1525,    0,  386,
        0,  369,  389,  398,    0,  397, 1550, 1545, 1546, 1554,
     1546, 1547, 1543, 1543, 1541, 1533,  363, 1519, 1513, 1512,

     1510, 1517, 1523, 1526, 1521, 1519, 1506, 1509, 1501, 1509,
     1503, 1504, 1500, 1498, 1496,  373, 1497, 1496, 1496,  380,
     1511,  343,    0,  380, 1497, 1498, 1490,  386, 1507, 1495,
     1493, 1492,  396, 1493, 1491,  346, 1487, 1483, 1496, 1479,
      404,  415, 1489, 1475, 1482, 1480,  375, 1480, 1484, 1473,
     1490,  401, 1473, 1471, 1483, 1475,    0, 1485, 1481, 1479,
     1482,  410, 1463, 1463, 1666,  431, 1666, 1486, 1486, 1486,
     1483, 1482, 1480,  415, 1480, 1477,    0,    0, 1463,    0,
     1456,  396, 1467, 1456, 1449, 1464, 1454, 1453, 1463,    0,
     1448, 1457, 1442, 1447, 1439, 1439, 1454, 1438, 1451, 1451,

     1452,    0, 1447, 1442, 1445, 1434, 1443, 1438, 1431, 1443,
     1429, 1434, 1427, 1440, 1434,    0, 1434, 1429,    0, 1423,
     1428,  415, 1422,  420, 1430, 1428, 1423, 1422, 1429, 1424,
      418, 1419, 1415, 1409, 1420, 1415,    0, 1405, 1416, 1414,
     1409,  437, 1400, 1399,  435, 1404,  420, 1399, 1398, 1399,
     1395, 1391,    0, 1389, 1395, 1394, 1396,    0,  437, 1398,
     1395, 1388, 1399, 1400, 1391, 1384,    0, 1381, 1386, 1390,
     1403, 1403, 1403, 1400, 1399, 1397,  461, 1397, 1394,    0,
        0, 1380,    0, 1373,  436, 1384, 1373, 1366, 1381, 1371,
     1370, 1380,    0, 1365, 1374, 1359, 1364, 1356, 1356, 1371,

     1355, 1368, 1368, 1369,    0, 1364, 1359, 1362, 1351, 1360,
     1355, 1348, 1360, 1346, 1351, 1344, 1357, 1351,    0, 1351,
     1346,    0, 1340, 1345,  432, 1339,  443, 1347, 1345, 1340,
     1339, 1346, 1341,  436, 1336, 1332, 1326, 1337, 1332,    0,
     1322, 1333, 1331, 1326,  478, 1317, 1316,  459, 1321,  446,
     1316, 1315, 1316, 1312, 1308,    0, 1306, 1312, 1311, 1313,
        0,  460, 1315, 1312, 1305, 1316, 1317, 1308, 1301,    0,
     1298, 1303, 1307, 1296,    0,    0,    0,    0,    0,    0,
        0,    0,    0,    0, 1295, 1307, 1303, 1307, 1294, 1298,
     1329, 1292, 1285,  449, 1293, 1288, 1289, 1281, 1292, 1291,

     1293, 1292, 1281,    0, 1284,    0, 1277, 1275,    0, 1287,
     1272,    0, 1279, 1280, 1284, 1268, 1266, 1280, 1266, 1269,
     1261, 1262, 1260, 1262, 1267, 1272, 1264, 1263, 1256, 1251,
     1271, 1254, 1266,    0, 1255,  442, 1259,  459,    0,    0,
      466, 1247, 1252, 1262, 1259, 1249, 1243, 1252,  467, 1256,
        0,  473, 1257, 1253, 1248, 1251, 1238, 1239, 1239, 1247,
     1237, 1245,    0, 1236, 1230, 1238,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0,    0, 1228, 1240, 1236,
     1240, 1227, 1231, 1262, 1225, 1218,  467, 1226, 1221, 1222,
     1214, 1225, 1224, 1226, 1225, 1214,    0, 1217,    0, 1210,

     1208,    0, 1220, 1205,    0, 1212, 1213, 1217, 1201, 1199,
     1213, 1199, 1202, 1194, 1195, 1193, 1195, 1200, 1205, 1197,
     1196, 1189, 1184, 1204, 1187, 1199,    0, 1188,  462, 1192,
      468,    0,    0,  476, 1180, 1185, 1195, 1192, 1182, 1176,
     1185,  478, 1189,    0,  488, 1190, 1186, 1181, 1184, 1171,
     1172, 1172, 1180, 1170, 1178,    0, 1169, 1163, 1171,    0,
      472, 1164, 1165, 1166, 1171,    0, 1174, 1162, 1160, 1161,
     1166, 1151, 1155,  477, 1161, 1158,  494,    0, 1149, 1162,
     1155, 1158,  485, 1153, 1144, 1154, 1155, 1147, 1152, 1142,
     1142, 1151,    0, 1138, 1147, 1148, 1132, 1146, 1143, 1132,

     1137, 1140, 1126, 1126, 1130, 1132, 1129, 1126, 1136, 1123,
     1125,  129,  145,  164,  184,  221,  262,  296,  306,  369,
      460,  474,  480,  496,  486,  498,  489,  503,  493,  491,
      496,  486,  497,  510,  507,    0,  495,  501,  516,    0,
      505,  504,  507,  510,  517,    0,  522,  512,  512,  515,
      522,  509,  515,  517,  524,  524,  533,    0,  518,  533,
      529,  534,  534,  532,  525,  537,  541,  535,  542,  534,
      536,  547,    0,  537,  548,  551,  538,  554,  553,  544,
      551,  556,  544,  546,  552,  556,  555,  554,  566,  555,
      559,  558,  552,  559,  573,  556,  563,  568,  561,  576,

      560,  562,  565,  580,  570,  581,  572,  586,  574,  572,
      577,  567,  578,  590,  587,    0,  575,  581,  596,    0,
      585,  585,  599,  582,  593,  591,  593,  601,    0,  587,
      596,  607,  594,  609,  610,  607,  609,  603,  601,  607,
      608,  600,  602,    0,    0,  619,  620,  620,  609,  613,
      611,  621,  624,  611,  626,  620,  627,  621,  625,  626,
      630,    0,    0,  617,  633,  654,  630,  638,  626,    0,
      624,  634,  627,  641,    0,  628,  635,  631,  642,  638,
      637,  634,  640,  654,  651,    0,  652,  639,  655,  642,
      649,  642,  644,  657,    0,  646,  649,    0,  648,  654,

      657,  663,  670,  653,  664,  662,  664,  672,    0,  658,
      667,  678,  665,  680,  681,  678,  680,  674,  672,  678,
      679,  671,  673,    0,    0,  690,  691,  691,  680,  684,
      682,  692,  695,  682,  697,  691,  698,  692,  696,  697,
      701,    0,    0,  688,  704,  725,  701,  709,  697,    0,
      695,  705,  698,  712,    0,  699,  706,  702,  713,  709,
      708,  705,  711,  725,  722,    0,  723,  710,  726,  713,
      720,  713,  715,  728,    0,  717,  720,    0,  719,  725,
      728,  734,  725,  731,  735,  733,  745,  738,  765,  731,
      741,  732,  747,  741,  736,    0,  744,  745,  745,  746,

      734,    0,    0,  757,  750,  751,  745,  744,  753,    0,
      752,    0,  762,  767,  764,  751,  757,  771,    0,  770,
      768,  770,  774,  758,  764,  776,    0,  761,  777,    0,
        0,  769,  764,  779,  780,  785,  778,  777,  778,    0,
        0,  772,  774,  773,  788,  781,  792,  791,  783,    0,
        0,  787,  794,  782,  789,  793,  791,  803,  796,  823,
      790,  800,  791,  806,  800,  795,    0,  803,  804,  804,
      805,  793,    0,    0,  816,  809,  810,  804,  803,  812,
        0,  811,    0,  821,  826,  823,  810,  816,  830,    0,
      829,  827,  829,  833,  817,  823,  835,    0,  820,  836,

        0,    0,  828,  823,  838,  839,  844,  837,  836,  837,
        0,    0,  831,  833,  832,  847,  840,  851,  850,  842,
        0,    0,  846,  853,  841,  856,    0,  858,  853,  854,
      863,    0,    0,  844,  847,    0,  863,  851,    0,    0,
      869,  862,  867,  868,    0,  869,  893,  859,  877,  875,
      868,  870,  871,  882,  869,  874,  869,  876,  885,  880,
      885,  871,  875,  876,    0,  890,  891,  884,  895,  888,
      895,    0,    0,    0,  896,    0,    0,  899,  893,  903,
      888,    0,  895,    0,    0,    0,  904,  899,  900,  909,
        0,    0,  890,  892,    0,  908,  896,    0,    0,  914,

      907,  912,  913,    0,  914,  938,  904,  922,  920,  913,
      915,  916,  927,  914,  919,  914,  921,  930,  925,  930,
      916,  920,  921,    0,  935,  936,  929,  940,  933,  940,
        0,    0,    0,  941,    0,    0,  944,  938,  948,  933,
        0,  940,    0,    0,    0,  951,  934,  943,  937,  951,
      939,    0,  936,  950,  941,  950,    0,    0,    0,    0,
      941,  955,  955,  960,  965,  958,  959,  950,  965,  960,
        0,  952,  959,  955,    0,  962,    0,    0,  973,  960,
      959,  960,    0,  962,  963,  977,    0,  964,  969,  967,
      985,  968,  977,  971,  985,  973,    0,  970,  984,  975,

      984,    0,    0,    0,    0,  975,  989,  989,  994,  999,
      992,  993,  984,  999,  994,    0,  986,  993,  989,    0,
      996,    0,    0, 1007,  994,  993,  994,    0,  996,  997,
     1011,    0,  998, 1003, 1001, 1001,    0,    0,    0, 1004,
        0, 1008, 1010,    0, 1015, 1043,    0, 1014,    0, 1019,
     1028, 1009, 1011,    0,    0, 1014, 1029, 1016, 1032, 1017,
        0, 1028,    0,    0, 1020,    0, 1031, 1023,    0, 1022,
        0,    0,    0, 1025,    0, 1029, 1031,    0, 1036, 1064,
        0, 1035,    0, 1040, 1049, 1030, 1032,    0,    0, 1035,
     1050, 1037, 1053, 1038,    0, 1049,    0,    0, 1041,    0,

     1052, 1044,    0, 1057, 1058, 1047, 1047, 1054, 1049, 1057,
     1051, 1065, 1053, 1064, 1068,    0, 1069,    0, 1072,    0,
        0, 1067, 1072, 1073, 1062, 1062, 1069, 1064, 1072, 1066,
     1080, 1068, 1079, 1083,    0, 1084,    0, 1087,    0,    0,
     1082,    0, 1088, 1089,    0, 1085,    0,    0,    0, 1078,
        0,    0,    0,    0, 1095, 1084,    0, 1094, 1095,    0,
     1091,    0,    0,    0, 1084,    0,    0,    0,    0, 1101,
     1090,    0,    0, 1085, 1100, 1087, 1088,    0,    0, 1089,
     1104, 1091, 1092,    0, 1108, 1108,    0,    0, 1110, 1110,
        0,    0,    0,    0,    0, 1666, 1146, 1147, 1149, 1151,

     1153, 1154, 1156, 1158, 1160, 1162, 1164
    } ;

static yyconst short int yy_def[1508] =
    {   0,
     1496,    1, 1496,    3,    1,    1, 1496, 1497, 1496, 1496,
     1498, 1499, 1500, 1497, 1496, 1497, 1497, 1496, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1501,
     1502, 1503, 1504, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1497, 1497, 1496,
     1498, 1505, 1497, 1499, 1506, 1496, 1499, 1500, 1507, 1497,

     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1501, 1502,
     1501, 1503, 1503, 1504, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,

     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1497, 1496, 1506, 1496, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,

     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,

     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,

     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,

     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,

     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,

     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,

     1497, 1497, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,

     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,

     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,

     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,

     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,

     1501, 1501, 1501, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497,
     1497, 1497, 1497, 1497, 1497, 1497, 1501, 1501, 1501, 1501,
     1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501,
     1501, 1497, 1497, 1497, 1497, 1497, 1497, 1501, 1501, 1501,
     1501, 1501, 1501, 1497, 1497, 1497, 1497, 1501, 1501, 1501,
     1501, 1497, 1497, 1501, 1501,    0, 1496, 1496, 1496, 1496,

     1496, 1496, 1496, 1496, 1496, 1496, 1496
    } ;

static yyconst short int yy_nxt[1723] =
    {   0,
        8,    9,   10,   11,   12,   13,   14,   15,   16,   17,
       17,   17,   17,   17,   17,   18,   19,    8,   20,   21,
       22,    8,    8,   23,   24,   25,   26,    8,    8,   27,
        8,   28,   29,   30,   31,   32,   33,   34,   35,   36,
       37,   38,   39,   40,   41,   42,   43,   44,   45,   46,
       47,   48,   49,    8,    8,    8,   50,    9,   10,   51,
       52,   53,   54,   15,   55,   56,   56,   56,   56,   56,
       56,   18,   57,   50,   58,   59,   60,   50,   50,   61,
       62,   63,   64,   50,   50,   65,   50,   66,   67,   68,
       69,   70,   71,   72,   73,   74,   75,   76,   77,   78,

       79,   80,   81,   82,   83,   84,   85,   86,   87,   50,
       50,   50,   92,   92,   93,   95,   96,  139,   92,   99,
       99,   95,  118,  100,  102,   99,   92,  140,  103,   95,
      159,  119,   96,   99,  101,  101,  101,  101,  101,  101,
      160,  115,  174,   97,  101,  101,  101,  101,  101,  101,
      111,  175,  120,  112,  116,  113,  121,  124,  117,  266,
      114,  128,  125,  126,  122,  129,  133,  127,  123,  135,
      134,  130,  875,  150,  131,  144,  141,  136,  137,  142,
      145,  143,  148,  138,  151,  146,  153,  149,  152,  147,
      177,  170,  171,  200,  154,  876,  155,  172,  178,  156,

      173,  187,  157,  161,  162,  188,  201,  163,  877,  164,
      202,  165,  205,  203,  166,  878,  206,  167,  168,   92,
       92,  181,  204,  169,  207,   92,   95,   96,  208,  220,
       99,   99,   95,   92,  185,  218,   99,  221,  222,  219,
       95,  224,  244,  223,   99,  186,  186,  186,  186,  186,
      186,  225,  245,  335,  183,  186,  186,  186,  186,  186,
      186,  196,  209,  336,  197,  213,  198,  210,  211,  214,
      879,  199,  212,  235,  226,  215,  229,  227,  216,  228,
      233,  230,  278,  238,  236,  234,  231,  262,  237,  259,
      232,  239,  307,  240,  308,  263,  241,  279,  260,  242,

      246,  247,  280,  314,  248,  880,  249,  315,  250,  264,
      299,  251,  255,  256,  252,  253,  300,  154,  257,  155,
      254,  258,  156,   95,   96,  157,   92,   92,   93,   95,
       95,   96,   92,  304,  309,  881,   95,   95,  305,  345,
       92,   99,   99,  346,   95,  100,  310,   99,  347,  358,
      341,   97,  359,  882,  342,   99,  343,  344,   97,  101,
      101,  101,  101,  101,  101,  320,  321,  322,  323,  324,
       95,   96,  325,  326,  327,  328,   95,  352,  329,  353,
      330,  331,  368,  332,   95,  438,  369,   92,   92,  181,
       95,   96,  410,   92,  411,  439,   95,  381,  183,   99,

       99,   92,  883,  185,   95,   99,  186,  186,  186,  186,
      186,  186,  382,   99,  402,  412,  407,  383,  183,  417,
      403,  408,  455,  418,  456,  481,  482,  413,  423,  424,
      425,  426,  427,   96,  486,  428,  429,  430,  431,  461,
      476,  432,  462,  433,  434,  444,  435,  481,  482,  445,
      448,  446,  447,  471,  449,  522,  709,  472,  519,  450,
      266,  523,  520,  531,  524,  545,  542,  532,  543,  546,
      554,  574,  575,  555,  579,  612,  789,  556,  615,  613,
      569,  624,  557,  671,  616,  625,  709,  617,  574,  575,
      635,  638,  636,  647,  710,  639,  648,  672,  712,  714,

      649,  751,  723,  713,  726,  650,  724,  792,  715,  794,
      884,  727,  793,  803,  790,  752,  728,  804,  795,  806,
      834,  846,  835,  885,  822,  838,  807,  886,  839,  887,
      888,  808,  889,  890,  891,  840,  847,  892,  893,  894,
      895,  896,  841,  897,  898,  899,  900,  901,  902,  903,
      904,  905,  906,  907,  908,  909,  910,  911,  912,  913,
      914,  916,  915,  917,  918,  922,  923,  919,  924,  925,
      926,  928,  929,  930,  920,  931,  932,  933,  934,  935,
      936,  921,  937,  938,  939,  927,  940,  941,  942,  943,
      944,  945,  946,  947,  948,  949,  950,  951,  952,  953,

      954,  955,  956,  957,  958,  959,  960,  961,  962,  963,
      964,  965,  966,  967,  968,  969,  970,  971,  972,  973,
      974,  975,  976,  977,  978,  979,  980,  981,  982,  983,
      984,  985,  986,  987,  988,  989,  990,  991,  992,  993,
      994,  995,  996,  997,  998,  999, 1000, 1001, 1002, 1003,
     1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013,
     1014, 1015, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024,
     1025, 1026, 1027, 1028, 1029, 1016, 1030, 1031, 1032, 1033,
     1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043,
     1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053,

     1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063,
     1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073,
     1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083,
     1084, 1085, 1086, 1088, 1089, 1090, 1091, 1092, 1093, 1094,
     1095, 1096, 1097, 1098, 1099, 1100, 1087, 1101, 1102, 1103,
     1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113,
     1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123,
     1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133,
     1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143,
     1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153,

     1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163,
     1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173,
     1174, 1175, 1176, 1177, 1178, 1179, 1181, 1182, 1183, 1184,
     1185, 1186, 1187, 1188, 1189, 1190, 1191, 1180, 1192, 1193,
     1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203,
     1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213,
     1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223,
     1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233,
     1234, 1235, 1236, 1237, 1238, 1240, 1241, 1242, 1243, 1244,
     1245, 1246, 1247, 1248, 1249, 1250, 1239, 1251, 1252, 1253,

     1254, 1255, 1256, 1257, 1258, 1259, 1260, 1262, 1263, 1264,
     1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274,
     1275, 1276, 1277, 1261, 1278, 1279, 1280, 1281, 1282, 1283,
     1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293,
     1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303,
     1304, 1305, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314,
     1315, 1316, 1317, 1318, 1319, 1320, 1321, 1322, 1306, 1323,
     1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333,
     1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343,
     1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353,

     1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363,
     1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373,
     1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383,
     1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393,
     1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403,
     1404, 1405, 1406, 1407, 1408, 1259, 1260, 1409, 1410, 1411,
     1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421,
     1422, 1423, 1424, 1425, 1426, 1427, 1304, 1305, 1428, 1429,
     1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439,
     1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449,

     1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459,
     1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469,
     1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479,
     1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489,
     1490, 1491, 1492, 1493, 1494, 1495,   89,   91,   91,   94,
       94,   98,   98,  179,  180,  180,  182,  182,  184,  184,
       92,   92,   95,   95,   99,   99,  874,  873,  872,  871,
      870,  869,  868,  867,  866,  865,  864,  863,  862,  861,
      860,  859,  858,  857,  856,  855,  854,  853,  852,  851,
      850,  849,  848,  845,  844,  843,  842,  837,  836,  833,

      832,  831,  830,  829,  828,  827,  826,  825,  824,  823,
      821,  820,  819,  818,  817,  816,  815,  814,  813,  812,
      811,  810,  809,  805,  802,  801,  800,  799,  798,  797,
      796,  791,  788,  787,  786,  785,  784,  783,  782,  781,
      780,  779,  778,  777,  776,  775,  774,  773,  772,  771,
      770,  769,  768,  767,  766,  765,  764,  763,  762,  761,
      760,  759,  758,  757,  756,  755,  754,  753,  750,  749,
      748,  747,  746,  745,  744,  743,  742,  741,  740,  739,
      738,  737,  736,  735,  734,  733,  732,  731,  730,  729,
      725,  722,  721,  720,  719,  718,  717,  716,  711,  708,

      707,  706,  705,  704,  703,  702,  701,  700,  699,  698,
      697,  696,  695,  694,  693,  692,  691,  690,  689,  688,
      687,  686,  685,  684,  683,  682,  681,  680,  679,  678,
      677,  676,  675,  674,  673,  670,  669,  668,  667,  666,
      665,  664,  663,  662,  661,  660,  659,  658,  657,  656,
      655,  654,  653,  652,  651,  646,  645,  644,  643,  642,
      577,  576,  641,  640,  637,  634,  633,  632,  631,  630,
      629,  628,  440,  573,  627,  626,  623,  622,  621,  620,
      619,  618,  614,  611,  610,  609,  608,  607,  606,  605,
      604,  572,  603,  602,  601,  600,  571,  599,  598,  597,

      596,  595,  594,  593,  592,  591,  590,  570,  589,  588,
      587,  586,  585,  584,  583,  582,  581,  580,  568,  578,
      577,  576,  573,  572,  571,  570,  569,  568,  567,  566,
      565,  564,  563,  562,  561,  560,  559,  558,  553,  552,
      551,  550,  549,  484,  483,  548,  547,  544,  541,  540,
      539,  538,  537,  536,  535,  337,  480,  534,  533,  530,
      529,  528,  527,  526,  525,  521,  518,  517,  516,  515,
      514,  513,  512,  511,  479,  510,  509,  508,  507,  478,
      506,  505,  504,  503,  502,  501,  500,  499,  498,  497,
      477,  496,  495,  494,  493,  492,  491,  490,  489,  488,

      487,  475,  485,  484,  483,  480,  479,  478,  477,  476,
      475,  474,  473,  470,  469,  468,  467,  466,  465,  464,
      463,  460,  459,  458,  457,  454,  453,  452,  451,  443,
      442,  441,  440,  437,  436,  422,  421,  420,  419,  416,
      415,  414,  409,  406,  405,  404,  401,  400,  399,  398,
      397,  396,  395,  394,  393,  392,  391,  390,  389,  388,
      387,  386,  385,  384,  380,  379,  378,  377,  376,  375,
      374,  373,  372,  371,  370,  367,  366,  365,  364,  363,
      362,  361,  360,  357,  356,  355,  354,  351,  350,  349,
      348,  340,  339,  338,  337,  334,  333,  319,  318,  317,

      316,  313,  312,  311,  306,  303,  302,  301,  298,  297,
      296,  295,  294,  293,  292,  291,  290,  289,  288,  287,
      286,  285,  284,  283,  282,  281,  277,  276,  275,  274,
      273,  272,  271,  270,  269,  268,  267,  265,   90,  261,
      243,  217,   96,  195,  194,  193,  192,  191,  190,  189,
      176,  158,  132,   96,  110,  109,  108,  107,  106,  105,
      104,   90, 1496,   88,   88,    7, 1496, 1496, 1496, 1496,
     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,
     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,
     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,

     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,
     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,
     1496, 1496
    } ;

static yyconst short int yy_chk[1723] =
    {   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,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,

        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,   11,   11,   11,   12,   12,   37,   11,   13,
       13,   12,   30,   13,   19,   13,   11,   37,   19,   12,
       44,   30,   95,   13,   16,   16,   16,   16,   16,   16,
       44,   29,   47,   12,   17,   17,   17,   17,   17,   17,
       28,   47,   31,   28,   29,   28,   31,   32,   29,   95,
       28,   33,   32,   32,   31,   33,   35,   32,   31,   36,
       35,   33,  712,   41,   33,   39,   38,   36,   36,   38,
       39,   38,   40,   36,   41,   39,   42,   40,   41,   39,
       49,   46,   46,   67,   42,  713,   42,   46,   49,   42,

       46,   57,   42,   45,   45,   57,   67,   45,  714,   45,
       67,   45,   69,   68,   45,  715,   69,   45,   45,   51,
       51,   51,   68,   45,   69,   51,   52,   52,   69,   74,
       53,   53,   52,   51,   53,   73,   53,   74,   74,   73,
       52,   75,   82,   74,   53,   55,   55,   55,   55,   55,
       55,   75,   82,  151,   52,   56,   56,   56,   56,   56,
       56,   66,   70,  151,   66,   71,   66,   70,   70,   71,
      716,   66,   70,   79,   76,   71,   77,   76,   71,   76,
       78,   77,  112,   80,   79,   78,   77,   87,   79,   85,
       77,   80,  137,   80,  137,   87,   80,  112,   85,   80,

       83,   83,  112,  143,   83,  717,   83,  143,   83,   88,
      131,   83,   84,   84,   83,   83,  131,   88,   84,   88,
       83,   84,   88,   94,   94,   88,   91,   91,   91,   94,
       97,   97,   91,  135,  139,  718,   97,   94,  135,  157,
       91,   98,   98,  157,   97,   98,  139,   98,  157,  167,
      156,   94,  167,  719,  156,   98,  156,  156,   97,  101,
      101,  101,  101,  101,  101,  148,  148,  148,  148,  148,
      182,  182,  148,  148,  148,  148,  182,  162,  148,  162,
      148,  148,  177,  148,  182,  236,  177,  180,  180,  180,
      183,  183,  222,  180,  222,  236,  183,  197,  182,  184,

      184,  180,  720,  184,  183,  184,  186,  186,  186,  186,
      186,  186,  197,  184,  216,  224,  220,  197,  183,  228,
      216,  220,  247,  228,  247,  274,  274,  224,  233,  233,
      233,  233,  233,  266,  282,  233,  233,  233,  233,  252,
      282,  233,  252,  233,  233,  241,  233,  342,  342,  241,
      242,  241,  241,  262,  242,  324,  536,  262,  322,  242,
      266,  324,  322,  331,  324,  347,  345,  331,  345,  347,
      359,  377,  377,  359,  385,  425,  629,  359,  427,  425,
      385,  434,  359,  494,  427,  434,  661,  427,  445,  445,
      448,  450,  448,  462,  536,  450,  462,  494,  538,  541,

      462,  587,  549,  538,  552,  462,  549,  631,  541,  634,
      721,  552,  631,  642,  629,  587,  552,  642,  634,  645,
      674,  683,  674,  722,  661,  677,  645,  723,  677,  724,
      725,  645,  726,  727,  728,  677,  683,  729,  730,  731,
      732,  733,  677,  734,  735,  737,  738,  739,  741,  742,
      743,  744,  745,  747,  748,  749,  750,  751,  752,  753,
      754,  755,  754,  756,  757,  759,  760,  757,  761,  762,
      763,  764,  765,  766,  757,  767,  768,  769,  770,  771,
      772,  757,  774,  775,  776,  763,  777,  778,  779,  780,
      781,  782,  783,  784,  785,  786,  787,  788,  789,  790,

      791,  792,  793,  794,  795,  796,  797,  798,  799,  800,
      801,  802,  803,  804,  805,  806,  807,  808,  809,  810,
      811,  812,  813,  814,  815,  817,  818,  819,  821,  822,
      823,  824,  825,  826,  827,  828,  830,  831,  832,  833,
      834,  835,  836,  837,  838,  839,  840,  841,  842,  843,
      846,  847,  848,  849,  850,  851,  852,  853,  854,  855,
      856,  857,  858,  859,  860,  861,  864,  865,  866,  867,
      868,  869,  871,  872,  873,  857,  874,  876,  877,  878,
      879,  880,  881,  882,  883,  884,  885,  887,  888,  889,
      890,  891,  892,  893,  894,  896,  897,  899,  900,  901,

      902,  903,  904,  905,  906,  907,  908,  910,  911,  912,
      913,  914,  915,  916,  917,  918,  919,  920,  921,  922,
      923,  926,  927,  928,  929,  930,  931,  932,  933,  934,
      935,  936,  937,  938,  939,  940,  941,  944,  945,  946,
      947,  948,  949,  951,  952,  953,  937,  954,  956,  957,
      958,  959,  960,  961,  962,  963,  964,  965,  967,  968,
      969,  970,  971,  972,  973,  974,  976,  977,  979,  980,
      981,  982,  983,  984,  985,  986,  987,  988,  989,  990,
      991,  992,  993,  994,  995,  997,  998,  999, 1000, 1001,
     1004, 1005, 1006, 1007, 1008, 1009, 1011, 1013, 1014, 1015,

     1016, 1017, 1018, 1020, 1021, 1022, 1023, 1024, 1025, 1026,
     1028, 1029, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039,
     1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1052, 1053,
     1054, 1055, 1056, 1057, 1058, 1059, 1060, 1047, 1061, 1062,
     1063, 1064, 1065, 1066, 1068, 1069, 1070, 1071, 1072, 1075,
     1076, 1077, 1078, 1079, 1080, 1082, 1084, 1085, 1086, 1087,
     1088, 1089, 1091, 1092, 1093, 1094, 1095, 1096, 1097, 1099,
     1100, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1113,
     1114, 1115, 1116, 1117, 1118, 1119, 1120, 1123, 1124, 1125,
     1126, 1128, 1129, 1130, 1131, 1134, 1118, 1135, 1137, 1138,

     1141, 1142, 1143, 1144, 1146, 1147, 1147, 1148, 1149, 1150,
     1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160,
     1161, 1162, 1163, 1147, 1164, 1166, 1167, 1168, 1169, 1170,
     1171, 1175, 1178, 1179, 1180, 1181, 1183, 1187, 1188, 1189,
     1190, 1193, 1194, 1196, 1197, 1200, 1201, 1202, 1203, 1205,
     1206, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214,
     1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1206, 1223,
     1225, 1226, 1227, 1228, 1229, 1230, 1234, 1237, 1238, 1239,
     1240, 1242, 1246, 1247, 1248, 1249, 1250, 1251, 1253, 1254,
     1255, 1256, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268,

     1269, 1270, 1272, 1273, 1274, 1276, 1279, 1280, 1281, 1282,
     1284, 1285, 1286, 1288, 1289, 1290, 1291, 1292, 1293, 1294,
     1295, 1296, 1298, 1299, 1300, 1301, 1306, 1307, 1308, 1309,
     1310, 1311, 1312, 1313, 1314, 1315, 1317, 1318, 1319, 1321,
     1324, 1325, 1326, 1327, 1329, 1330, 1331, 1333, 1334, 1335,
     1336, 1340, 1342, 1343, 1345, 1346, 1346, 1348, 1350, 1351,
     1352, 1353, 1356, 1357, 1358, 1359, 1360, 1362, 1365, 1367,
     1368, 1370, 1374, 1376, 1377, 1379, 1380, 1380, 1382, 1384,
     1385, 1386, 1387, 1390, 1391, 1392, 1393, 1394, 1396, 1399,
     1401, 1402, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411,

     1412, 1413, 1414, 1415, 1417, 1419, 1422, 1423, 1424, 1425,
     1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1436,
     1438, 1441, 1443, 1444, 1446, 1450, 1455, 1456, 1458, 1459,
     1461, 1465, 1470, 1471, 1474, 1475, 1476, 1477, 1480, 1481,
     1482, 1483, 1485, 1486, 1489, 1490, 1497, 1498, 1498, 1499,
     1499, 1500, 1500, 1501, 1502, 1502, 1503, 1503, 1504, 1504,
     1505, 1505, 1506, 1506, 1507, 1507,  711,  710,  709,  708,
      707,  706,  705,  704,  703,  702,  701,  700,  699,  698,
      697,  696,  695,  694,  692,  691,  690,  689,  688,  687,
      686,  685,  684,  682,  681,  680,  679,  676,  675,  673,

      672,  671,  670,  669,  668,  667,  665,  664,  663,  662,
      659,  658,  657,  655,  654,  653,  652,  651,  650,  649,
      648,  647,  646,  643,  641,  640,  639,  638,  637,  636,
      635,  630,  628,  626,  625,  624,  623,  622,  621,  620,
      619,  618,  617,  616,  615,  614,  613,  612,  611,  610,
      609,  608,  607,  606,  604,  603,  601,  600,  598,  596,
      595,  594,  593,  592,  591,  590,  589,  588,  586,  585,
      584,  583,  582,  581,  580,  579,  578,  566,  565,  564,
      562,  561,  560,  559,  558,  557,  556,  555,  554,  553,
      550,  548,  547,  546,  545,  544,  543,  542,  537,  535,

      533,  532,  531,  530,  529,  528,  527,  526,  525,  524,
      523,  522,  521,  520,  519,  518,  517,  516,  515,  514,
      513,  511,  510,  508,  507,  505,  503,  502,  501,  500,
      499,  498,  497,  496,  495,  493,  492,  491,  490,  489,
      488,  487,  486,  485,  474,  473,  472,  471,  469,  468,
      467,  466,  465,  464,  463,  460,  459,  458,  457,  455,
      454,  453,  452,  451,  449,  447,  446,  444,  443,  442,
      441,  439,  438,  437,  436,  435,  433,  432,  431,  430,
      429,  428,  426,  424,  423,  421,  420,  418,  417,  416,
      415,  414,  413,  412,  411,  410,  409,  408,  407,  406,

      404,  403,  402,  401,  400,  399,  398,  397,  396,  395,
      394,  392,  391,  390,  389,  388,  387,  386,  384,  382,
      379,  378,  376,  375,  374,  373,  372,  371,  370,  369,
      368,  366,  365,  364,  363,  362,  361,  360,  357,  356,
      355,  354,  352,  351,  350,  349,  348,  346,  344,  343,
      341,  340,  339,  338,  336,  335,  334,  333,  332,  330,
      329,  328,  327,  326,  325,  323,  321,  320,  318,  317,
      315,  314,  313,  312,  311,  310,  309,  308,  307,  306,
      305,  304,  303,  301,  300,  299,  298,  297,  296,  295,
      294,  293,  292,  291,  289,  288,  287,  286,  285,  284,

      283,  281,  279,  276,  275,  273,  272,  271,  270,  269,
      268,  264,  263,  261,  260,  259,  258,  256,  255,  254,
      253,  251,  250,  249,  248,  246,  245,  244,  243,  240,
      239,  238,  237,  235,  234,  232,  231,  230,  229,  227,
      226,  225,  221,  219,  218,  217,  215,  214,  213,  212,
      211,  210,  209,  208,  207,  206,  205,  204,  203,  202,
      201,  200,  199,  198,  196,  195,  194,  193,  192,  191,
      190,  189,  188,  187,  178,  176,  175,  174,  173,  171,
      170,  169,  168,  166,  165,  164,  163,  161,  160,  159,
      158,  155,  154,  153,  152,  150,  149,  147,  146,  145,

      144,  142,  141,  140,  136,  134,  133,  132,  130,  129,
      128,  127,  126,  125,  124,  123,  122,  121,  120,  119,
      118,  117,  116,  115,  114,  113,  111,  110,  109,  108,
      107,  106,  105,  104,  103,  102,   99,   92,   90,   86,
       81,   72,   65,   64,   63,   62,   61,   60,   59,   58,
       48,   43,   34,   27,   26,   25,   24,   23,   22,   21,
       20,    9,    7,    6,    5, 1496, 1496, 1496, 1496, 1496,
     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,
     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,
     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,

     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,
     1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496,
     1496, 1496
    } ;

static yy_state_type yy_last_accepting_state;
static char *yy_last_accepting_cpos;

/* The intent behind this definition is that it'll catch
 * any uses of REJECT which flex missed.
 */
#define REJECT reject_used_but_not_detected
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "../rcfile_l.l"
#define INITIAL 0
#line 2 "../rcfile_l.l"

/*
 * rcfile_l.l -- lexer for the run control file
 *
 * For license terms, see the file COPYING in this directory.
 */
#include <string.h>

#include "config.h"
#include "fetchmail.h"
#include "rcfile_y.h"

int prc_lineno = 1;

#ifdef LEXDEBUG
#define SETSTATE(n)	do {BEGIN(n); if (yydebug) fprintf(stderr, "Entering lexer state %d\n", n);} while (0)
#else
#define SETSTATE(n)	BEGIN(n)
#endif /* LEXDEBUG */
/* this doesn't work with Linux lex, see the INSTALL file */
#define YY_NO_UNPUT 1
#define NAME 1
#define AUTH 2

#line 1268 "rcfile_l.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, *yy_bp;
	register int yy_act;

#line 31 "../rcfile_l.l"


#line 1422 "rcfile_l.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_match:
		do
			{
			register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
			if ( yy_accept[yy_current_state] )
				{
				yy_last_accepting_state = yy_current_state;
				yy_last_accepting_cpos = yy_cp;
				}
			while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
				{
				yy_current_state = (int) yy_def[yy_current_state];
				if ( yy_current_state >= 1497 )
					yy_c = yy_meta[(unsigned int) yy_c];
				}
			yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
			++yy_cp;
			}
		while ( yy_base[yy_current_state] != 1666 );

yy_find_action:
		yy_act = yy_accept[yy_current_state];
		if ( yy_act == 0 )
			{ /* have to back up */
			yy_cp = yy_last_accepting_cpos;
			yy_current_state = yy_last_accepting_state;
			yy_act = yy_accept[yy_current_state];
			}

		YY_DO_BEFORE_ACTION;


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


		switch ( yy_act )
	{ /* beginning of action switch */
			case 0: /* must back up */
			/* undo the effects of YY_DO_BEFORE_ACTION */
			*yy_cp = yy_hold_char;
			yy_cp = yy_last_accepting_cpos;
			yy_current_state = yy_last_accepting_state;
			goto yy_find_action;

case 1:
YY_RULE_SETUP
#line 33 "../rcfile_l.l"
{
			yytext[yyleng-1] = '\0';
			escapes(yytext+1, yytext);
			yyleng = strlen(yytext);
			yylval.sval = yytext;
                        SETSTATE(0);
			return STRING;
		}
	YY_BREAK
case 2:
YY_RULE_SETUP
#line 41 "../rcfile_l.l"
{
			yytext[yyleng-1] = '\0';
			escapes(yytext+1, yytext);
			yyleng = strlen(yytext);
			yylval.sval = yytext;
                        SETSTATE(0);
			return STRING;
		}
	YY_BREAK
case 3:
YY_RULE_SETUP
#line 50 "../rcfile_l.l"
{ BEGIN(0); return WILDCARD; }
	YY_BREAK
case 4:
YY_RULE_SETUP
#line 52 "../rcfile_l.l"
{
			static char *in;
			static size_t ins;

			if ((size_t)yyleng + 1 > ins) {
			    ins = yyleng + 1;
			    in = xrealloc(in, ins);
			}
			memcpy(in, yytext, yyleng);
			in[yyleng] = '\0';
			escapes(in, in);
			yyleng = strlen(in);
			yylval.sval = in;
                        SETSTATE(0);
			return STRING;
		}
	YY_BREAK
case 5:
YY_RULE_SETUP
#line 69 "../rcfile_l.l"
{ return SET; }
	YY_BREAK
case 6:
YY_RULE_SETUP
#line 70 "../rcfile_l.l"
{ return LOGFILE; }
	YY_BREAK
case 7:
YY_RULE_SETUP
#line 71 "../rcfile_l.l"
{ return IDFILE; }
	YY_BREAK
case 8:
YY_RULE_SETUP
#line 72 "../rcfile_l.l"
{ return PIDFILE; }
	YY_BREAK
case 9:
YY_RULE_SETUP
#line 73 "../rcfile_l.l"
{ return DAEMON; }
	YY_BREAK
case 10:
YY_RULE_SETUP
#line 74 "../rcfile_l.l"
{ return SYSLOG; }
	YY_BREAK
case 11:
YY_RULE_SETUP
#line 75 "../rcfile_l.l"
{ return INVISIBLE; }
	YY_BREAK
case 12:
YY_RULE_SETUP
#line 76 "../rcfile_l.l"
{ return SHOWDOTS; }
	YY_BREAK
case 13:
YY_RULE_SETUP
#line 77 "../rcfile_l.l"
{ return POSTMASTER; }
	YY_BREAK
case 14:
YY_RULE_SETUP
#line 78 "../rcfile_l.l"
{ return BOUNCEMAIL; }
	YY_BREAK
case 15:
YY_RULE_SETUP
#line 79 "../rcfile_l.l"
{ return SPAMBOUNCE; }
	YY_BREAK
case 16:
YY_RULE_SETUP
#line 80 "../rcfile_l.l"
{ return WARNINGS; }
	YY_BREAK
case 17:
YY_RULE_SETUP
#line 81 "../rcfile_l.l"
{ return TRACEPOLLS; }
	YY_BREAK
case 18:
YY_RULE_SETUP
#line 83 "../rcfile_l.l"
{ return DEFAULTS; }
	YY_BREAK
case 19:
YY_RULE_SETUP
#line 84 "../rcfile_l.l"
{ return POLL; }
	YY_BREAK
case 20:
YY_RULE_SETUP
#line 85 "../rcfile_l.l"
{ return POLL; }
	YY_BREAK
case 21:
YY_RULE_SETUP
#line 86 "../rcfile_l.l"
{ return SKIP; }
	YY_BREAK
case 22:
YY_RULE_SETUP
#line 87 "../rcfile_l.l"
{ return VIA; }
	YY_BREAK
case 23:
YY_RULE_SETUP
#line 88 "../rcfile_l.l"
{ return AKA; }
	YY_BREAK
case 24:
YY_RULE_SETUP
#line 89 "../rcfile_l.l"
{ return LOCALDOMAINS; }
	YY_BREAK
case 25:
YY_RULE_SETUP
#line 90 "../rcfile_l.l"
{ return PROTOCOL; }
	YY_BREAK
case 26:
YY_RULE_SETUP
#line 91 "../rcfile_l.l"
{ return SERVICE; }
	YY_BREAK
case 27:
YY_RULE_SETUP
#line 92 "../rcfile_l.l"
{ return PORT; }
	YY_BREAK
case 28:
YY_RULE_SETUP
#line 93 "../rcfile_l.l"
{ return INTERVAL; }
	YY_BREAK
case 29:
YY_RULE_SETUP
#line 94 "../rcfile_l.l"
{ SETSTATE(AUTH); return AUTHENTICATE; }
	YY_BREAK
case 30:
YY_RULE_SETUP
#line 95 "../rcfile_l.l"
{ SETSTATE(AUTH); return AUTHENTICATE; }
	YY_BREAK
case 31:
YY_RULE_SETUP
#line 96 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_ANY; return AUTHTYPE;}
	YY_BREAK
case 32:
YY_RULE_SETUP
#line 97 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_GSSAPI; return AUTHTYPE;}
	YY_BREAK
case 33:
YY_RULE_SETUP
#line 98 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_KERBEROS_V4; return AUTHTYPE;}
	YY_BREAK
case 34:
YY_RULE_SETUP
#line 99 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_KERBEROS_V5; return AUTHTYPE;}
	YY_BREAK
case 35:
YY_RULE_SETUP
#line 100 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_KERBEROS_V4; return AUTHTYPE;}
	YY_BREAK
case 36:
YY_RULE_SETUP
#line 101 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_SSH; return AUTHTYPE;}
	YY_BREAK
case 37:
YY_RULE_SETUP
#line 102 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_OTP; return AUTHTYPE;}
	YY_BREAK
case 38:
YY_RULE_SETUP
#line 103 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_CRAM_MD5; return AUTHTYPE;}
	YY_BREAK
case 39:
YY_RULE_SETUP
#line 104 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_MSN; return AUTHTYPE;}
	YY_BREAK
case 40:
YY_RULE_SETUP
#line 105 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_NTLM; return AUTHTYPE;}
	YY_BREAK
case 41:
YY_RULE_SETUP
#line 106 "../rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_PASSWORD; return AUTHTYPE;}
	YY_BREAK
case 42:
YY_RULE_SETUP
#line 107 "../rcfile_l.l"
{ return TIMEOUT;}
	YY_BREAK
case 43:
YY_RULE_SETUP
#line 108 "../rcfile_l.l"
{ return ENVELOPE; }
	YY_BREAK
case 44:
YY_RULE_SETUP
#line 109 "../rcfile_l.l"
{ return QVIRTUAL; }
	YY_BREAK
case 45:
YY_RULE_SETUP
#line 110 "../rcfile_l.l"
{ return PRINCIPAL; }
	YY_BREAK
case 46:
YY_RULE_SETUP
#line 111 "../rcfile_l.l"
{ return ESMTPNAME; }
	YY_BREAK
case 47:
YY_RULE_SETUP
#line 112 "../rcfile_l.l"
{ return ESMTPPASSWORD; }
	YY_BREAK
case 48:
YY_RULE_SETUP
#line 115 "../rcfile_l.l"
{SETSTATE(NAME); return USERNAME; }
	YY_BREAK
case 49:
YY_RULE_SETUP
#line 116 "../rcfile_l.l"
{SETSTATE(NAME); return PASSWORD; }
	YY_BREAK
case 50:
YY_RULE_SETUP
#line 117 "../rcfile_l.l"
{ return FOLDER; }
	YY_BREAK
case 51:
YY_RULE_SETUP
#line 118 "../rcfile_l.l"
{ return SMTPHOST; }
	YY_BREAK
case 52:
YY_RULE_SETUP
#line 119 "../rcfile_l.l"
{ return FETCHDOMAINS; }
	YY_BREAK
case 53:
YY_RULE_SETUP
#line 120 "../rcfile_l.l"
{ return SMTPADDRESS; }
	YY_BREAK
case 54:
YY_RULE_SETUP
#line 121 "../rcfile_l.l"
{ return SMTPNAME; }
	YY_BREAK
case 55:
YY_RULE_SETUP
#line 122 "../rcfile_l.l"
{ return SPAMRESPONSE; }
	YY_BREAK
case 56:
YY_RULE_SETUP
#line 123 "../rcfile_l.l"
{ return MDA; }
	YY_BREAK
case 57:
YY_RULE_SETUP
#line 124 "../rcfile_l.l"
{ return BSMTP; }
	YY_BREAK
case 58:
YY_RULE_SETUP
#line 125 "../rcfile_l.l"
{ return LMTP; }
	YY_BREAK
case 59:
YY_RULE_SETUP
#line 126 "../rcfile_l.l"
{ return PRECONNECT; }
	YY_BREAK
case 60:
YY_RULE_SETUP
#line 127 "../rcfile_l.l"
{ return POSTCONNECT; }
	YY_BREAK
case 61:
YY_RULE_SETUP
#line 128 "../rcfile_l.l"
{ return INTERFACE; }
	YY_BREAK
case 62:
YY_RULE_SETUP
#line 129 "../rcfile_l.l"
{ return MONITOR; }
	YY_BREAK
case 63:
YY_RULE_SETUP
#line 130 "../rcfile_l.l"
{ return PLUGIN; }
	YY_BREAK
case 64:
YY_RULE_SETUP
#line 131 "../rcfile_l.l"
{ return PLUGOUT; }
	YY_BREAK
case 65:
YY_RULE_SETUP
#line 132 "../rcfile_l.l"
{ return BATCHLIMIT; }
	YY_BREAK
case 66:
YY_RULE_SETUP
#line 133 "../rcfile_l.l"
{ return FETCHLIMIT; }
	YY_BREAK
case 67:
YY_RULE_SETUP
#line 134 "../rcfile_l.l"
{ return FETCHSIZELIMIT; }
	YY_BREAK
case 68:
YY_RULE_SETUP
#line 135 "../rcfile_l.l"
{ return FASTUIDL; }
	YY_BREAK
case 69:
YY_RULE_SETUP
#line 136 "../rcfile_l.l"
{ return EXPUNGE; }
	YY_BREAK
case 70:
YY_RULE_SETUP
#line 137 "../rcfile_l.l"
{ return PROPERTIES; }
	YY_BREAK
case 71:
YY_RULE_SETUP
#line 139 "../rcfile_l.l"
{ SETSTATE(NAME); return IS; }
	YY_BREAK
case 72:
YY_RULE_SETUP
#line 140 "../rcfile_l.l"
{ return HERE; }
	YY_BREAK
case 73:
YY_RULE_SETUP
#line 141 "../rcfile_l.l"
{ return THERE; }
	YY_BREAK
case 74:
YY_RULE_SETUP
#line 142 "../rcfile_l.l"
{ SETSTATE(NAME); return TO; }
	YY_BREAK
case 75:
YY_RULE_SETUP
#line 143 "../rcfile_l.l"
{ SETSTATE(NAME); return MAP; }
	YY_BREAK
case 76:
#line 146 "../rcfile_l.l"
case 77:
#line 147 "../rcfile_l.l"
case 78:
#line 148 "../rcfile_l.l"
case 79:
#line 149 "../rcfile_l.l"
case 80:
#line 150 "../rcfile_l.l"
case 81:
#line 151 "../rcfile_l.l"
case 82:
#line 152 "../rcfile_l.l"
case 83:
#line 153 "../rcfile_l.l"
case 84:
#line 154 "../rcfile_l.l"
case 85:
#line 155 "../rcfile_l.l"
case 86:
#line 156 "../rcfile_l.l"
case 87:
#line 157 "../rcfile_l.l"
case 88:
#line 158 "../rcfile_l.l"
case 89:
#line 159 "../rcfile_l.l"
case 90:
#line 160 "../rcfile_l.l"
case 91:
#line 161 "../rcfile_l.l"
case 92:
#line 162 "../rcfile_l.l"
case 93:
YY_RULE_SETUP
#line 162 "../rcfile_l.l"
{
                   yyless(2);
                   return NO;
                }
	YY_BREAK
case 94:
YY_RULE_SETUP
#line 167 "../rcfile_l.l"
{return NO;}
	YY_BREAK
case 95:
YY_RULE_SETUP
#line 169 "../rcfile_l.l"
{ return KEEP; }
	YY_BREAK
case 96:
YY_RULE_SETUP
#line 170 "../rcfile_l.l"
{ return FLUSH; }
	YY_BREAK
case 97:
YY_RULE_SETUP
#line 171 "../rcfile_l.l"
{ return LIMITFLUSH; }
	YY_BREAK
case 98:
YY_RULE_SETUP
#line 172 "../rcfile_l.l"
{ return FETCHALL; }
	YY_BREAK
case 99:
YY_RULE_SETUP
#line 173 "../rcfile_l.l"
{ return REWRITE; }
	YY_BREAK
case 100:
YY_RULE_SETUP
#line 174 "../rcfile_l.l"
{ return FORCECR; }
	YY_BREAK
case 101:
YY_RULE_SETUP
#line 175 "../rcfile_l.l"
{ return STRIPCR; }
	YY_BREAK
case 102:
YY_RULE_SETUP
#line 176 "../rcfile_l.l"
{ return PASS8BITS; }
	YY_BREAK
case 103:
YY_RULE_SETUP
#line 177 "../rcfile_l.l"
{ return DROPSTATUS; }
	YY_BREAK
case 104:
YY_RULE_SETUP
#line 178 "../rcfile_l.l"
{ return DROPDELIVERED; }
	YY_BREAK
case 105:
YY_RULE_SETUP
#line 179 "../rcfile_l.l"
{ return MIMEDECODE; }
	YY_BREAK
case 106:
YY_RULE_SETUP
#line 180 "../rcfile_l.l"
{ return IDLE; }
	YY_BREAK
case 107:
YY_RULE_SETUP
#line 181 "../rcfile_l.l"
{ return DNS; }
	YY_BREAK
case 108:
YY_RULE_SETUP
#line 182 "../rcfile_l.l"
{ return UIDL; }
	YY_BREAK
case 109:
YY_RULE_SETUP
#line 183 "../rcfile_l.l"
{ return SSL; }
	YY_BREAK
case 110:
YY_RULE_SETUP
#line 184 "../rcfile_l.l"
{ return SSLKEY; }
	YY_BREAK
case 111:
YY_RULE_SETUP
#line 185 "../rcfile_l.l"
{ return SSLCERT; }
	YY_BREAK
case 112:
YY_RULE_SETUP
#line 186 "../rcfile_l.l"
{ return SSLPROTO; }
	YY_BREAK
case 113:
YY_RULE_SETUP
#line 187 "../rcfile_l.l"
{ return SSLCERTCK; }
	YY_BREAK
case 114:
YY_RULE_SETUP
#line 188 "../rcfile_l.l"
{ return SSLCERTPATH; }
	YY_BREAK
case 115:
YY_RULE_SETUP
#line 189 "../rcfile_l.l"
{ return SSLFINGERPRINT; }
	YY_BREAK
case 116:
YY_RULE_SETUP
#line 190 "../rcfile_l.l"
{ return CHECKALIAS; }
	YY_BREAK
case 117:
YY_RULE_SETUP
#line 192 "../rcfile_l.l"
{ return LIMIT; }
	YY_BREAK
case 118:
YY_RULE_SETUP
#line 194 "../rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 119:
YY_RULE_SETUP
#line 195 "../rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 120:
YY_RULE_SETUP
#line 196 "../rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 121:
YY_RULE_SETUP
#line 197 "../rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 122:
YY_RULE_SETUP
#line 198 "../rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 123:
YY_RULE_SETUP
#line 199 "../rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 124:
YY_RULE_SETUP
#line 201 "../rcfile_l.l"
{ yylval.proto = P_AUTO;  return PROTO; }
	YY_BREAK
case 125:
YY_RULE_SETUP
#line 202 "../rcfile_l.l"
{ yylval.proto = P_POP2;  return PROTO; }
	YY_BREAK
case 126:
YY_RULE_SETUP
#line 203 "../rcfile_l.l"
{ return SDPS; }
	YY_BREAK
case 127:
YY_RULE_SETUP
#line 204 "../rcfile_l.l"
{ yylval.proto = P_POP3;  return PROTO; }
	YY_BREAK
case 128:
YY_RULE_SETUP
#line 205 "../rcfile_l.l"
{ yylval.proto = P_IMAP;  return PROTO; }
	YY_BREAK
case 129:
YY_RULE_SETUP
#line 206 "../rcfile_l.l"
{ yylval.proto = P_APOP;  return PROTO; }
	YY_BREAK
case 130:
YY_RULE_SETUP
#line 207 "../rcfile_l.l"
{ yylval.proto = P_RPOP;  return PROTO; }
	YY_BREAK
case 131:
YY_RULE_SETUP
#line 208 "../rcfile_l.l"
{ yylval.proto = P_ETRN;  return PROTO; }
	YY_BREAK
case 132:
YY_RULE_SETUP
#line 209 "../rcfile_l.l"
{ yylval.proto = P_ODMR;  return PROTO; }
	YY_BREAK
case 133:
YY_RULE_SETUP
#line 210 "../rcfile_l.l"
{ return KPOP; }
	YY_BREAK
case 134:
YY_RULE_SETUP
#line 212 "../rcfile_l.l"
{ prc_lineno++;	}   /* newline is ignored */
	YY_BREAK
case 135:
YY_RULE_SETUP
#line 214 "../rcfile_l.l"
{ yylval.number = atoi(yytext); return NUMBER; }
	YY_BREAK
case 136:
YY_RULE_SETUP
#line 216 "../rcfile_l.l"
{
			escapes(yytext, yytext);
			yyleng = strlen(yytext);
			yylval.sval = yytext;
			return STRING;
		}
	YY_BREAK
case 137:
YY_RULE_SETUP
#line 223 "../rcfile_l.l"
;	/* whitespace */
	YY_BREAK
case 138:
YY_RULE_SETUP
#line 225 "../rcfile_l.l"
ECHO;
	YY_BREAK
#line 2181 "rcfile_l.c"
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(NAME):
case YY_STATE_EOF(AUTH):
	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;

	for ( yy_cp = yytext_ptr + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
		{
		register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
		if ( yy_accept[yy_current_state] )
			{
			yy_last_accepting_state = yy_current_state;
			yy_last_accepting_cpos = yy_cp;
			}
		while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
			{
			yy_current_state = (int) yy_def[yy_current_state];
			if ( yy_current_state >= 1497 )
				yy_c = yy_meta[(unsigned int) yy_c];
			}
		yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
		}

	return yy_current_state;
	}


/* yy_try_NUL_trans - try to make a transition on the NUL character
 *
 * synopsis
 *	next_state = yy_try_NUL_trans( current_state );
 */

#ifdef YY_USE_PROTOS
static yy_state_type yy_try_NUL_trans( yy_state_type yy_current_state )
#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 char *yy_cp = yy_c_buf_p;

	register YY_CHAR yy_c = 1;
	if ( yy_accept[yy_current_state] )
		{
		yy_last_accepting_state = yy_current_state;
		yy_last_accepting_cpos = yy_cp;
		}
	while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
		{
		yy_current_state = (int) yy_def[yy_current_state];
		if ( yy_current_state >= 1497 )
			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 == 1496);

	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;


	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;


	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 225 "../rcfile_l.l"


/** process standard C-style escape sequences in a string,
 * this can never lengthen the output, so cp and tp may overlap as long
 * as cp >= tp. */
void escapes(const char *cp /** source string with escapes */,
	     char       *tp /** target buffer for digested string */)
{
    while (*cp)
    {
	int	cval = 0;

	/* we MUST check for NUL explicitly, as strchr(string, 0) will
	 * always succeed! */
	if (*cp == '\\' && cp[1] && strchr("0123456789xX", cp[1]))
	{
	    char *dp;
	    const char *hex = "00112233445566778899aAbBcCdDeEfF";
	    int dcount = 0;

	    if (*++cp == 'x' || *cp == 'X')
		for (++cp; *cp && (dp = strchr(hex, *cp)) && (dcount++ < 2); cp++)
		    cval = (cval * 16) + (dp - hex) / 2;
	    else if (*cp == '0')
		while (*cp && strchr("01234567",*cp) != (char*)NULL && (dcount++ < 3))
		    cval = (cval * 8) + (*cp++ - '0');
	    else
		while (*cp && (strchr("0123456789",*cp)!=(char*)NULL)&&(dcount++ < 3))
		    cval = (cval * 10) + (*cp++ - '0');
	}
	else if (*cp == '\\')		/* C-style character escapes */
	{
	    switch (*++cp)
	    {
	    case '\n': cp++; continue;	/* backslash before LF to join lines */
	    case '\0': goto done;	   /* ignore backslash at file end */
	    case '\\': cval = '\\'; break;
	    case 'n': cval = '\n'; break;
	    case 't': cval = '\t'; break;
	    case 'b': cval = '\b'; break;
	    case 'r': cval = '\r'; break;
	    default: cval = *cp;
	    }
	    cp++;
	}
	else
	    cval = *cp++;
	*tp++ = cval;
    }
done:
    *tp = '\0';
}