Difference for common/loader.c from version 1.74 to 1.75


version 1.74 version 1.75
Line 1
 
Line 1
   
 #line 3 "loader.c"  
   
 #define  YY_INT_ALIGNED short int  
   
 /* A lexical scanner generated by flex */  /* A lexical scanner generated by flex */
   
   /* Scanner skeleton version:
    * $Header: /cvsroot/crossfire/crossfire/common/loader.c,v 1.75 2006/02/05 05:27:07 mwedel Exp $
    */
   
 #define FLEX_SCANNER  #define FLEX_SCANNER
 #define YY_FLEX_MAJOR_VERSION 2  #define YY_FLEX_MAJOR_VERSION 2
 #define YY_FLEX_MINOR_VERSION 5  #define YY_FLEX_MINOR_VERSION 5
 #define YY_FLEX_SUBMINOR_VERSION 31  
 #if YY_FLEX_SUBMINOR_VERSION > 0  
 #define FLEX_BETA  
 #endif  
   
 /* First, we deal with  platform-specific or compiler-specific issues. */  
   
 /* begin standard C headers. */  
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  
 #include <errno.h>  
 #include <stdlib.h>  
   
 /* end standard C headers. */  
   
 /* flex integer type definitions */  /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
   #ifdef c_plusplus
 #ifndef FLEXINT_H  #ifndef __cplusplus
 #define FLEXINT_H  #define __cplusplus
   
 /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */  
   
 #if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L  
 #include <inttypes.h>  
 typedef int8_t flex_int8_t;  
 typedef uint8_t flex_uint8_t;  
 typedef int16_t flex_int16_t;  
 typedef uint16_t flex_uint16_t;  
 typedef int32_t flex_int32_t;  
 typedef uint32_t flex_uint32_t;  
 #else  
 typedef signed char flex_int8_t;  
 typedef short int flex_int16_t;  
 typedef int flex_int32_t;  
 typedef unsigned char flex_uint8_t;   
 typedef unsigned short int flex_uint16_t;  
 typedef unsigned int flex_uint32_t;  
 #endif /* ! C99 */  
   
 /* Limits of integral types. */  
 #ifndef INT8_MIN  
 #define INT8_MIN               (-128)  
 #endif  
 #ifndef INT16_MIN  
 #define INT16_MIN              (-32767-1)  
 #endif  
 #ifndef INT32_MIN  
 #define INT32_MIN              (-2147483647-1)  
 #endif  
 #ifndef INT8_MAX  
 #define INT8_MAX               (127)  
 #endif  
 #ifndef INT16_MAX  
 #define INT16_MAX              (32767)  
 #endif  
 #ifndef INT32_MAX  
 #define INT32_MAX              (2147483647)  
 #endif  
 #ifndef UINT8_MAX  
 #define UINT8_MAX              (255U)  
 #endif  
 #ifndef UINT16_MAX  
 #define UINT16_MAX             (65535U)  
 #endif  #endif
 #ifndef UINT32_MAX  
 #define UINT32_MAX             (4294967295U)  
 #endif  #endif
   
 #endif /* ! FLEXINT_H */  
   
 #ifdef __cplusplus  #ifdef __cplusplus
   
   #include <stdlib.h>
   #include <unistd.h>
   
   /* Use prototypes in function declarations. */
   #define YY_USE_PROTOS
   
 /* The "const" storage-class-modifier is valid. */  /* The "const" storage-class-modifier is valid. */
 #define YY_USE_CONST  #define YY_USE_CONST
   
Line 87
 
Line 34
   
 #if __STDC__  #if __STDC__
   
   #define YY_USE_PROTOS
 #define YY_USE_CONST  #define YY_USE_CONST
   
 #endif /* __STDC__ */  #endif /* __STDC__ */
 #endif /* ! __cplusplus */  #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  #ifdef YY_USE_CONST
 #define yyconst const  #define yyconst const
 #else  #else
 #define yyconst  #define yyconst
 #endif  #endif
   
   
   #ifdef YY_USE_PROTOS
   #define YY_PROTO(proto) proto
   #else
   #define YY_PROTO(proto) ()
   #endif
   
 /* Returned upon end-of-file. */  /* Returned upon end-of-file. */
 #define YY_NULL 0  #define YY_NULL 0
   
Line 112
 
Line 76
  * but we do it the disgusting crufty way forced on us by the ()-less   * but we do it the disgusting crufty way forced on us by the ()-less
  * definition of BEGIN.   * definition of BEGIN.
  */   */
 #define BEGIN (yy_start) = 1 + 2 *  #define BEGIN yy_start = 1 + 2 *
   
 /* Translate the current start state into a value that can be later handed  /* 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   * to BEGIN to return to the state.  The YYSTATE alias is for lex
  * compatibility.   * compatibility.
  */   */
 #define YY_START (((yy_start) - 1) / 2)  #define YY_START ((yy_start - 1) / 2)
 #define YYSTATE YY_START  #define YYSTATE YY_START
   
 /* Action number for EOF rule of a given start state. */  /* Action number for EOF rule of a given start state. */
Line 130
 
Line 94
 #define YY_END_OF_BUFFER_CHAR 0  #define YY_END_OF_BUFFER_CHAR 0
   
 /* Size of default input buffer. */  /* Size of default input buffer. */
 #ifndef YY_BUF_SIZE  
 #define YY_BUF_SIZE 16384  #define YY_BUF_SIZE 16384
 #endif  
   
 #ifndef YY_TYPEDEF_YY_BUFFER_STATE  
 #define YY_TYPEDEF_YY_BUFFER_STATE  
 typedef struct yy_buffer_state *YY_BUFFER_STATE;  typedef struct yy_buffer_state *YY_BUFFER_STATE;
 #endif  
   
 extern int yyleng;  extern int yyleng;
   
 extern FILE *yyin, *yyout;  extern FILE *yyin, *yyout;
   
 #define EOB_ACT_CONTINUE_SCAN 0  #define EOB_ACT_CONTINUE_SCAN 0
 #define EOB_ACT_END_OF_FILE 1  #define EOB_ACT_END_OF_FILE 1
 #define EOB_ACT_LAST_MATCH 2  #define EOB_ACT_LAST_MATCH 2
   
     #define YY_LESS_LINENO(n)  /* 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. */
          
 /* Return all but the first "n" matched characters back to the input stream. */  
 #define yyless(n) \  #define yyless(n) \
  do \   do \
  { \   { \
  /* Undo effects of setting up yytext. */ \   /* Undo effects of setting up yytext. */ \
         int yyless_macro_arg = (n); \   *yy_cp = yy_hold_char; \
         YY_LESS_LINENO(yyless_macro_arg);\  
  *yy_cp = (yy_hold_char); \  
  YY_RESTORE_YY_MORE_OFFSET \   YY_RESTORE_YY_MORE_OFFSET \
  (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \   yy_c_buf_p = yy_cp = yy_bp + n - YY_MORE_ADJ; \
  YY_DO_BEFORE_ACTION; /* set up yytext again */ \   YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  } \   } \
  while ( 0 )   while ( 0 )
   
 #define unput(c) yyunput( c, (yytext_ptr)  )  #define unput(c) yyunput( c, yytext_ptr )
   
 /* The following is because we cannot portably get our hands on size_t  /* The following is because we cannot portably get our hands on size_t
  * (without autoconf's help, which isn't available because we want   * (without autoconf's help, which isn't available because we want
  * flex-generated scanners to compile on their own).   * flex-generated scanners to compile on their own).
  */   */
   
 #ifndef YY_TYPEDEF_YY_SIZE_T  
 #define YY_TYPEDEF_YY_SIZE_T  
 typedef unsigned int yy_size_t;  typedef unsigned int yy_size_t;
 #endif  
   
 #ifndef YY_STRUCT_YY_BUFFER_STATE  
 #define YY_STRUCT_YY_BUFFER_STATE  
 struct yy_buffer_state  struct yy_buffer_state
  {   {
  FILE *yy_input_file;   FILE *yy_input_file;
Line 213
 
Line 177
  */   */
  int yy_at_bol;   int yy_at_bol;
   
     int yy_bs_lineno; /**< The line count. */  
     int yy_bs_column; /**< The column count. */  
       
  /* Whether to try to fill the input buffer when we reach the   /* Whether to try to fill the input buffer when we reach the
  * end of it.   * end of it.
  */   */
  int yy_fill_buffer;   int yy_fill_buffer;
   
  int yy_buffer_status;   int yy_buffer_status;
   
 #define YY_BUFFER_NEW 0  #define YY_BUFFER_NEW 0
 #define YY_BUFFER_NORMAL 1  #define YY_BUFFER_NORMAL 1
  /* When an EOF's been seen but there's still some text to process   /* When an EOF's been seen but there's still some text to process
Line 236
 
Line 196
  * just pointing yyin at a new input file.   * just pointing yyin at a new input file.
  */   */
 #define YY_BUFFER_EOF_PENDING 2  #define YY_BUFFER_EOF_PENDING 2
   
  };   };
 #endif /* !YY_STRUCT_YY_BUFFER_STATE */  
   
 /* Stack of input buffers. */  static YY_BUFFER_STATE yy_current_buffer = 0;
 static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */  
 static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */  
 static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */  
   
 /* We provide macros for accessing buffer states in case in the  /* We provide macros for accessing buffer states in case in the
  * future we want to put the buffer states in a more general   * future we want to put the buffer states in a more general
  * "scanner state".   * "scanner state".
  *  
  * Returns the top of the stack, or NULL.  
  */   */
 #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \  #define YY_CURRENT_BUFFER yy_current_buffer
                           ? (yy_buffer_stack)[(yy_buffer_stack_top)] \  
                           : NULL)  
   
 /* Same as previous macro, but useful when we know that the buffer stack is not  
  * NULL or when we need an lvalue. For internal use only.  
  */  
 #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]  
   
 /* yy_hold_char holds the character lost when yytext is formed. */  /* yy_hold_char holds the character lost when yytext is formed. */
 static char yy_hold_char;  static char yy_hold_char;
   
 static int yy_n_chars; /* number of characters read into yy_ch_buf */  static int yy_n_chars; /* number of characters read into yy_ch_buf */
   
   
 int yyleng;  int yyleng;
   
 /* Points to current character in buffer. */  /* Points to current character in buffer. */
Line 275
 
Line 225
  */   */
 static int yy_did_buffer_switch_on_eof;  static int yy_did_buffer_switch_on_eof;
   
 void yyrestart (FILE *input_file  );  void yyrestart YY_PROTO(( FILE *input_file ));
 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );  
 YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );  void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
 void yy_delete_buffer (YY_BUFFER_STATE b  );  void yy_load_buffer_state YY_PROTO(( void ));
 void yy_flush_buffer (YY_BUFFER_STATE b  );  YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
 void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );  void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
 void yypop_buffer_state (void );  void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
   void yy_flush_buffer YY_PROTO(( YY_BUFFER_STATE b ));
 static void yyensure_buffer_stack (void );  #define YY_FLUSH_BUFFER yy_flush_buffer( yy_current_buffer )
 static void yy_load_buffer_state (void );  
 static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );  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 ));
 #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )  YY_BUFFER_STATE yy_scan_bytes YY_PROTO(( yyconst char *bytes, int len ));
   
 YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );  static void *yy_flex_alloc YY_PROTO(( yy_size_t ));
 YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );  static void *yy_flex_realloc YY_PROTO(( void *, yy_size_t ));
 YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len  );  static void yy_flex_free YY_PROTO(( void * ));
   
 void *yyalloc (yy_size_t  );  
 void *yyrealloc (void *,yy_size_t  );  
 void yyfree (void *  );  
   
 #define yy_new_buffer yy_create_buffer  #define yy_new_buffer yy_create_buffer
   
 #define yy_set_interactive(is_interactive) \  #define yy_set_interactive(is_interactive) \
  { \   { \
  if ( ! YY_CURRENT_BUFFER ){ \   if ( ! yy_current_buffer ) \
         yyensure_buffer_stack (); \   yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
  YY_CURRENT_BUFFER_LVALUE =    \   yy_current_buffer->yy_is_interactive = is_interactive; \
             yy_create_buffer(yyin,YY_BUF_SIZE ); \  
  } \  
  YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \  
  }   }
   
 #define yy_set_bol(at_bol) \  #define yy_set_bol(at_bol) \
  { \   { \
  if ( ! YY_CURRENT_BUFFER ){\   if ( ! yy_current_buffer ) \
         yyensure_buffer_stack (); \   yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
  YY_CURRENT_BUFFER_LVALUE =    \   yy_current_buffer->yy_at_bol = at_bol; \
             yy_create_buffer(yyin,YY_BUF_SIZE ); \  
  } \  
  YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \  
  }   }
   
 #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)  #define YY_AT_BOL() (yy_current_buffer->yy_at_bol)
   
 /* Begin user sect3 */  
   
 #define yywrap(n) 1  #define yywrap() 1
 #define YY_SKIP_YYWRAP  #define YY_SKIP_YYWRAP
   
 typedef unsigned char YY_CHAR;  typedef unsigned char YY_CHAR;
   
 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;  FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
   
 typedef int yy_state_type;  typedef int yy_state_type;
   
 extern int yylineno;  
   
 int yylineno = 1;  
   
 extern char *yytext;  extern char *yytext;
 #define yytext_ptr yytext  #define yytext_ptr yytext
   
 static yy_state_type yy_get_previous_state (void );  static yy_state_type yy_get_previous_state YY_PROTO(( void ));
 static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );  static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
 static int yy_get_next_buffer (void );  static int yy_get_next_buffer YY_PROTO(( void ));
 static void yy_fatal_error (yyconst char msg[]  );  static void yy_fatal_error YY_PROTO(( yyconst char msg[] ));
   
 /* Done after the current pattern has been matched and before the  /* Done after the current pattern has been matched and before the
  * corresponding action - sets up yytext.   * corresponding action - sets up yytext.
  */   */
 #define YY_DO_BEFORE_ACTION \  #define YY_DO_BEFORE_ACTION \
  (yytext_ptr) = yy_bp; \   yytext_ptr = yy_bp; \
  yyleng = (size_t) (yy_cp - yy_bp); \   yyleng = (int) (yy_cp - yy_bp); \
  (yy_hold_char) = *yy_cp; \   yy_hold_char = *yy_cp; \
  *yy_cp = '\0'; \   *yy_cp = '\0'; \
  (yy_c_buf_p) = yy_cp;   yy_c_buf_p = yy_cp;
   
 #define YY_NUM_RULES 276  #define YY_NUM_RULES 277
 #define YY_END_OF_BUFFER 277  #define YY_END_OF_BUFFER 278
 /* This struct is not used in this scanner,  static yyconst short int yy_accept[2479] =
    but its presence is necessary. */  
 struct yy_trans_info  
  {  
  flex_int32_t yy_verify;  
  flex_int32_t yy_nxt;  
  };  
 static yyconst flex_int16_t yy_accept[2471] =  
     {   0,      {   0,
       275,  275,    3,    3,    6,    6,    0,    0,  277,  275,        276,  276,    3,    3,    6,    6,    0,    0,  278,  276,
       273,  275,  275,  275,  275,  275,  275,  275,  275,  275,        274,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,    3,    3,    3,    6,        276,  276,  276,  276,  276,  276,    3,    3,    3,    6,
         6,    6,  276,  276,  275,  275,  274,  275,  273,  275,          6,    6,  277,  277,  276,  276,  275,  276,  274,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,    3,    3,    3,        276,  276,  276,  276,  276,  276,  276,    3,    3,    3,
         3,    6,    6,    6,    6,    0,  273,  275,  275,  275,          3,    6,    6,    6,    6,    0,  274,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,   48,   48,  275,   49,   49,    3,    6,   47,   47,        276,   48,   48,  276,   49,   49,    3,    6,   47,   47,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,  275,   19,  275,  275,  275,  275,  275,        276,  276,  276,  276,   19,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,   36,        276,  276,  276,  276,  276,  276,  276,  276,  276,   36,
        36,  275,  275,  275,  275,  275,  275,  275,  275,  275,         36,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,    1,  275,  275,  275,  275,  275,  275,        276,  276,  276,    1,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,   38,   38,  275,        276,  276,  276,  276,  276,  276,  276,   38,   38,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,   46,   46,  275,  275,  275,  275,  275,  275,    3,        276,   46,   46,  276,  276,  276,  276,  276,  276,    3,
         6,  275,  275,  275,  275,  275,  275,  275,  275,  275,          6,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,   33,   33,  275,  275,   31,        276,  276,  276,  276,  276,   33,   33,  276,  276,   31,
        31,  275,  275,  275,  275,  275,  275,   45,   45,  275,         31,  276,  276,  276,  276,  276,  276,   45,   45,  276,
       275,   30,   30,  275,  275,  275,  275,  275,  275,   42,        276,   30,   30,  276,  276,  276,  276,  276,  276,   42,
        42,  275,  275,  275,  275,  275,  275,  275,  275,  275,         42,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,   34,   34,  275,  275,  275,        276,  276,  276,  276,  276,   34,   34,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,  275,  275,  275,  275,  275,    4,  275,        276,  276,  276,  276,  276,  276,  276,  276,    4,  276,
       275,  275,  275,  275,  275,  275,  275,  275,   18,  275,        276,  276,  276,  276,  276,  276,  276,  276,   18,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,   35,   35,  275,  275,  275,  275,  275,  275,        276,  276,   35,   35,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,   29,   29,  275,  275,  275,        276,  276,  276,  276,  276,   29,   29,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,   32,   32,  116,  116,  275,        276,  276,  276,  276,  276,   32,   32,  117,  117,  276,
         3,    6,  275,  275,  275,  275,  275,   15,   15,  275,          3,    6,  276,  276,  276,  276,  276,   15,   15,  276,
   
       275,  275,  275,  275,  275,  229,  275,  275,  275,  275,        276,  276,  276,  276,  276,  230,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,   28,   28,  275,  275,  275,        276,  276,  276,  276,  276,   28,   28,  276,  276,  276,
        44,   44,  275,  275,  275,  275,  275,  275,  275,  275,         44,   44,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  121,  121,  275,  275,  275,  275,        276,  276,  276,  276,  122,  122,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,    8,    8,  275,        276,  276,  276,  276,  276,  276,  276,  276,    8,    8,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,   50,   50,  275,  275,  275,  275,  275,        276,  276,  276,  276,   50,   50,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,   12,   12,  275,  275,        276,  276,  276,  276,  276,  276,  276,   12,   12,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,   53,   53,  275,  275,  275,  275,        276,  276,  276,  276,  276,   53,   53,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,    3,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
         6,  275,   67,   67,  275,  275,  275,  275,  275,  275,          3,    6,  276,   67,   67,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,   40,   40,  275,  275,  275,        276,  276,  276,  276,  276,  276,   40,   40,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,   51,   51,  275,   65,   65,  275,  275,        276,  276,  276,  276,   51,   51,  276,   65,   65,  276,
       275,   37,   37,   39,   39,  275,  275,  275,  275,  275,        276,  276,   37,   37,   39,   39,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  231,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       231,  275,  275,  275,  275,  275,  275,  275,   10,   10,        276,  232,  232,  276,  276,  276,  276,  276,  276,  276,
   
       275,  145,  145,  275,  275,   24,   24,  275,  275,  275,         10,   10,  276,  146,  146,  276,  276,   24,   24,  276,
       275,   66,   66,  275,  275,  275,   27,   27,  275,  275,        276,  276,  276,   66,   66,  276,  276,  276,   27,   27,
       275,  275,  275,  275,  275,   57,   57,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,   57,   57,  276,
       275,  275,  275,  275,  141,  141,    3,    2,    6,  275,        276,  276,  276,  276,  276,  276,  142,  142,    3,    2,
       275,  275,  275,  151,  151,  275,  275,  275,  275,  275,          6,  276,  276,  276,  276,  152,  152,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  190,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       190,  275,  275,  191,  191,  275,  275,  275,  275,  275,        276,  191,  191,  276,  276,  192,  192,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  200,  200,  275,   77,   77,   79,   79,  275,  275,        276,  276,  276,  201,  201,  276,   77,   77,   79,   79,
   
       275,  275,  275,  275,  275,  178,  178,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  179,  179,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,    7,    7,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,    7,    7,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  111,  111,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        112,  112,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,  275,  110,  110,  201,  201,   69,   69,        276,  276,  276,  276,  276,  276,  276,  111,  111,  202,
       275,  275,  275,  275,  275,  275,   58,   58,  275,    6,        202,   69,   69,  276,  276,  276,  276,  276,  276,   58,
         5,  275,  275,  275,   68,   68,  275,  275,  275,  275,         58,  276,    6,    5,  276,  276,  276,   68,   68,  276,
       217,  217,  275,  275,  275,  221,  221,  275,  275,  275,        276,  276,  276,  218,  218,  276,  276,  276,  222,  222,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,   78,   78,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,   78,
       275,  275,  275,  105,  105,  275,  275,  275,  275,  275,         78,  276,  276,  276,  276,  276,  106,  106,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,  275,  275,  275,  275,   21,   21,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,   86,   86,  275,  275,   82,   82,         21,   21,  276,  276,  276,  276,  276,   87,   87,  276,
       275,  275,  275,    9,    9,   70,   70,   71,   71,   87,        276,  276,   83,   83,  276,  276,  276,    9,    9,   70,
        87,  275,  275,  128,  128,  275,  275,   74,   74,   73,         70,   71,   71,   88,   88,  276,  276,  129,  129,  276,
        73,  275,  275,  275,  216,  216,  275,  275,  275,  275,        276,   74,   74,   73,   73,  276,  276,  276,  217,  217,
       275,  275,  275,  123,  123,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  124,  124,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,   13,   13,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  188,  188,   54,   54,        276,  276,   13,   13,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,  275,  275,  275,  275,   75,   75,  117,        189,  189,   54,   54,  276,  276,  276,  276,  276,  276,
       117,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,   75,   75,  118,  118,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,   97,   97,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,   98,   98,  276,  276,  276,  276,  276,  276,  276,
       275,   59,   59,  275,  103,  103,  275,  187,  187,  275,        276,  276,  276,  276,  276,   59,   59,  276,  104,  104,
       275,  275,  275,  275,  275,  230,  230,  275,  108,  108,        276,  188,  188,  276,  276,  276,  276,  276,  276,  231,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        231,  276,  109,  109,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,   90,   90,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,   91,   91,
       275,  275,  275,   14,  275,  275,  211,  211,  275,  275,        276,  276,  276,  276,  276,  276,  276,   14,  276,  276,
       142,  142,  205,  205,  275,  275,  275,  275,  206,  206,        212,  212,  276,  276,  143,  143,  206,  206,  276,  276,
   
       275,  275,  275,  275,   23,   23,  275,  275,  143,  143,        276,  276,  207,  207,  276,  276,  276,  276,   23,   23,
       275,   55,   55,  275,   41,   41,  275,   83,   83,  275,        276,  276,  144,  144,  276,   55,   55,  276,   41,   41,
       275,  275,  275,  275,  275,  275,  115,  115,  275,  215,        276,  276,   84,   84,  276,  276,  276,  276,  276,  276,
       215,  275,  275,  275,  275,  275,  275,  275,   43,   43,        276,  116,  116,  276,  216,  216,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,   43,   43,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  122,  122,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  123,  123,
       275,  275,  275,  275,  224,  224,   95,   95,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  225,
       275,   76,   76,  275,  275,  275,  275,   17,   17,  275,        225,   96,   96,  276,  276,  276,   76,   76,  276,  276,
   
       275,  275,  275,  275,  131,  131,  275,  275,  275,  275,        276,  276,   17,   17,  276,  276,  276,  276,  276,  132,
       219,  219,  275,  275,  275,  275,  275,  275,  275,  275,        132,  276,  276,  276,  276,  220,  220,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  189,  189,  127,  127,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,   52,   52,  275,  275,  226,  226,  275,        276,  190,  190,  128,  128,  276,  276,  276,   52,   52,
       275,  275,  275,  275,  275,  275,  251,  251,  275,  275,        276,  276,  227,  227,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,   91,   91,        276,  252,  252,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,   64,   64,        276,  276,  276,   92,   92,  276,  276,  276,  276,  276,
       275,  275,  275,  275,   93,   93,  275,  275,  204,  204,        276,  276,  276,   64,   64,  276,  276,  276,  276,   94,
       275,  275,  275,  275,   20,   20,  275,  275,  275,   84,         94,  276,  276,  205,  205,  276,  276,  276,  276,   20,
        84,  275,  275,   81,   81,   88,   88,   89,   89,  275,         20,  276,  276,  276,  276,   85,   85,  276,  276,   82,
   
       275,  275,  275,  275,  275,  275,  275,  275,  179,  179,         82,   89,   89,   90,   90,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  180,  180,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,   26,   26,  275,  275,  104,  104,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  120,  120,  275,  275,  275,  275,  275,  275,         26,   26,  276,  276,  105,  105,  276,  276,  121,  121,
       126,  126,  275,   60,   60,   94,   94,  275,  107,  107,        276,  276,  276,  276,  276,  276,  127,  127,  276,   60,
       275,  275,  220,  220,  275,  275,  275,  275,  275,  275,         60,   95,   95,  276,  108,  108,  276,  276,  221,  221,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  245,  245,  275,  275,  275,  275,  275,  254,  254,        276,  276,  276,  276,  276,  276,  276,  246,  246,  276,
       275,  275,  275,  275,  257,  257,  275,  275,  275,  275,        276,  276,  276,  276,  255,  255,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        258,  258,  276,  276,  276,  276,  276,  276,  276,  276,
       101,  101,  203,  203,  275,  275,  275,  275,  275,  100,        276,  276,  276,  276,  276,  276,  102,  102,  204,  204,
       100,  124,  124,  275,  275,   22,   22,  275,  275,   80,        276,  276,  276,  276,  276,  101,  101,  125,  125,  276,
        80,  275,  186,  186,  275,  275,  275,  275,   16,   16,        276,   22,   22,  276,  276,   81,   81,   80,   80,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        187,  187,  276,  276,  276,  276,   16,   16,  276,  276,
       102,  102,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  103,  103,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,   25,   25,  275,  106,  106,  275,  275,  180,  180,        276,  276,  276,  276,  276,  276,  276,  276,  276,   25,
       223,  223,  129,  129,  275,  275,  275,  275,  275,  275,         25,  276,  107,  107,  276,  276,  181,  181,  224,  224,
       275,  275,  275,  136,  136,  275,  275,  275,  198,  198,        130,  130,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  228,  228,  275,   11,        276,  137,  137,  276,  276,  276,  199,  199,  276,  276,
        11,  275,  275,  275,  236,  236,  275,  275,  275,  275,        276,  276,  276,  276,  229,  229,  276,   11,   11,  276,
       266,  266,  275,  275,  242,  242,  275,  275,  275,  275,        276,  276,  237,  237,  276,  276,  276,  276,  267,  267,
       275,  275,  275,  275,  275,  275,  260,  260,  275,  275,        276,  276,  243,  243,  276,  276,  276,  276,  276,  276,
       275,  275,  269,  269,  275,  275,  275,  275,  210,  210,        276,  276,  276,  276,  261,  261,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,   72,   72,  275,        270,  270,  276,  276,  276,  276,  211,  211,  276,  276,
       213,  213,  275,   99,   99,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,   72,   72,  276,  214,  214,
   
       275,  275,  144,  144,  148,  148,  275,  275,   63,   63,        276,  100,  100,  276,  276,  276,  276,  276,  276,  276,
       275,  147,  147,  275,  214,  214,  275,  275,  275,  158,        145,  145,  149,  149,  276,  276,   63,   63,  276,  148,
       158,  275,  275,  275,  156,  156,  275,  275,  275,  275,        148,  276,  215,  215,  276,  276,  276,  159,  159,  276,
       275,  275,  275,  166,  166,  154,  154,  275,  275,  275,        276,  276,  157,  157,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  163,  163,  275,  275,        276,  167,  167,  155,  155,  276,  276,  276,  276,  276,
       275,  275,  227,  227,  146,  146,  275,  275,  275,  275,        276,  276,  276,  276,  164,  164,  276,  276,  276,  276,
       275,  196,  196,  275,  275,  275,  275,  275,  199,  199,        228,  228,  147,  147,  276,  276,  276,  276,  276,  197,
       275,  139,  139,  275,  275,  275,  184,  184,  275,  225,        197,  276,  276,  276,  276,  276,  200,  200,  276,  140,
       225,  275,  233,  233,  275,  275,  275,  275,  239,  239,        140,  276,  276,  276,  185,  185,  276,  226,  226,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  248,  248,        234,  234,  276,  276,  276,  276,  240,  240,  276,  276,
   
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  249,  249,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  235,  235,  119,  119,  194,  194,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
        56,   56,  275,  275,  275,  275,   61,   61,  275,  275,        236,  236,  120,  120,  195,  195,  276,  276,   56,   56,
       275,  275,  275,  174,  174,  275,  170,  170,  275,  275,        276,  276,  276,  276,   61,   61,  276,  276,  276,  276,
       169,  169,  275,  275,  159,  159,  275,  275,  275,  275,        276,  175,  175,  276,  171,  171,  276,  276,  170,  170,
       275,  275,  153,  153,  275,  275,  275,  275,  275,  192,        276,  276,  160,  160,  276,  276,  276,  276,  276,  276,
       192,  275,  112,  112,  275,  275,  275,  275,  275,  275,        154,  154,  276,  276,  276,  276,  276,  193,  193,  276,
       218,  218,  275,  275,  135,  135,  275,  275,  195,  195,        113,  113,  276,  276,  276,  276,  276,  276,  219,  219,
       275,  275,  275,  109,  109,  275,  275,  275,  275,  275,        276,  276,  136,  136,  276,  276,  196,  196,  276,  276,
   
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  110,  110,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  263,  263,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  125,  125,  140,  140,  275,  181,  181,  275,  275,        276,  276,  276,  276,  276,  264,  264,  276,  276,  126,
       275,  275,  193,  193,  275,  275,  118,  118,  275,   98,        126,  141,  141,  276,  182,  182,  276,  276,  276,  276,
        98,   62,   62,  275,  275,  275,  114,  114,  275,  275,        194,  194,  276,  276,  119,  119,  276,   99,   99,   62,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,         62,  276,  276,  276,  115,  115,  276,  276,  276,  276,
       275,  162,  162,  275,  275,   96,   96,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  163,
       275,  133,  133,  222,  222,  275,  137,  137,  134,  134,        163,  276,  276,   97,   97,  276,  276,  276,  276,  134,
       132,  132,  138,  138,  275,  275,  275,  275,  275,  275,        134,  223,  223,  276,  138,  138,  135,  135,  133,  133,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        139,  139,  276,  276,  276,  276,  276,  276,  276,  276,
   
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       182,  182,  275,  275,  183,  183,  275,  202,  202,  275,        276,  276,  276,  276,  276,  276,  276,  276,  183,  183,
       209,  209,  275,  232,  232,  275,  275,  275,  275,  168,        276,  276,  184,  184,  276,  203,  203,  276,  210,  210,
       168,  177,  177,  275,  275,  275,  275,  275,  275,  275,        276,  233,  233,  276,  276,  276,  276,  169,  169,  178,
       275,  275,  275,  275,  275,  275,  185,  185,  212,  212,        178,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  186,  186,  213,  213,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  275,  275,  207,  207,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  130,  130,  113,  113,  275,  275,  275,  275,  161,        276,  276,  276,  276,  276,  208,  208,  276,  276,  131,
       161,  172,  172,  173,  173,  175,  175,  275,  164,  164,        131,  114,  114,  276,  276,  276,  276,  162,  162,  173,
   
       152,  152,  275,  275,  275,  149,  149,  275,  275,  275,        173,  174,  174,  176,  176,  276,  165,  165,  153,  153,
       275,  275,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  150,  150,  276,  276,  276,  276,  276,
       275,  275,  275,  252,  252,  275,  275,  275,  275,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       275,  275,  275,  275,  275,  197,  197,  208,  208,  275,        276,  253,  253,  276,  276,  276,  276,  276,  276,  276,
       275,  157,  157,  275,  275,  275,  275,  275,  275,  275,        276,  276,  276,  198,  198,  209,  209,  276,  276,  158,
       275,  234,  234,  275,  275,  275,  275,  275,  275,  275,        158,  276,  276,  276,  276,  276,  276,  276,  276,  235,
       275,  275,  246,  246,  275,  275,  253,  253,  275,  255,        235,  276,  276,  276,  276,  276,  276,  276,  276,  276,
       255,  275,  275,  275,  258,  258,  275,  275,  275,  275,        247,  247,  276,  276,  254,  254,  276,  256,  256,  276,
        85,   85,  275,  275,  275,  275,  275,  275,  275,  275,        276,  276,  259,  259,  276,  276,  276,  276,   86,   86,
       275,  275,  237,  237,  275,  275,  275,  267,  267,  275,        276,  276,  276,  276,  276,  276,  276,  276,  276,  276,
   
       243,  243,  247,  247,  275,  275,  256,  256,  275,  261,        238,  238,  276,  276,  276,  268,  268,  276,  244,  244,
       261,  259,  259,  275,  270,  270,  275,  275,  275,  275,        248,  248,  276,  276,  257,  257,  276,  262,  262,  260,
       155,  155,  275,  165,  165,  160,  160,   92,   92,  150,        260,  276,  271,  271,  276,  276,  276,  276,  156,  156,
       150,  275,  238,  238,  275,  240,  240,  268,  268,  244,        276,  166,  166,  161,  161,   93,   93,  151,  151,  276,
       244,  275,  249,  249,  262,  262,  271,  271,  275,  275,        239,  239,  276,  241,  241,  269,  269,  245,  245,  276,
       167,  167,  171,  171,  275,  275,  241,  241,  250,  250,        250,  250,  263,  263,  272,  272,  276,  276,  168,  168,
       275,  264,  264,  176,  176,  272,  272,  265,  265,    0        172,  172,  276,  276,  242,  242,  251,  251,  276,  265,
         265,  177,  177,  273,  273,  266,  266,    0
     } ;      } ;
   
 static yyconst flex_int32_t yy_ec[256] =  static yyconst int yy_ec[256] =
     {   0,      {   0,
         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,          1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,          1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
Line 670
 
Line 595
         1,    1,    1,    1,    1          1,    1,    1,    1,    1
     } ;      } ;
   
 static yyconst flex_int32_t yy_meta[34] =  static yyconst int yy_meta[34] =
     {   0,      {   0,
         1,    1,    2,    1,    1,    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,
Line 678
 
Line 603
         1,    1,    1          1,    1,    1
     } ;      } ;
   
 static yyconst flex_int16_t yy_base[2762] =  static yyconst short int yy_base[2775] =
     {   0,      {   0,
         0,    6,   37,   38,   39,   43,   45,   50, 2791,    0,          0,    6,   37,   38,   39,   43,   45,   50, 2804,    0,
      2792, 2787,    0,   47,   40,   68,   53,   86,   63,   35,       2805, 2800,    0,   47,   40,   68,   53,   86,   63,   35,
        70,  107, 2768,  127,   69,   86,   83,  148,   72,  164,         70,  107, 2781,  127,   69,   86,   83,  148,   72,  164,
       181,   37,   71,  113,   99, 2786,    0,   62, 2766,    0,        181,   37,   71,  113,   99, 2799,    0,   62, 2779,    0,
       101, 2765, 2792,  111,    0, 2782, 2792,  117,    0,   87,        101, 2778, 2805,  111,    0, 2795, 2805,  117,    0,   87,
      2768, 2767, 2759,  110, 2754, 2753,  119, 2757, 2767,  111,       2781, 2780, 2772,  110, 2767, 2766,  119, 2770, 2780,  111,
      2769, 2760, 2754,  115, 2754, 2742, 2747, 2746, 2754, 2757,       2782, 2773, 2767,  115, 2767, 2755, 2760, 2759, 2767, 2770,
      2757, 2755, 2743, 2755, 2732, 2741, 2746, 2740, 2738, 2751,       2770, 2768, 2756, 2768, 2745, 2754, 2759, 2753, 2751, 2764,
      2732, 2730, 2754, 2743, 2734,  118, 2746, 2740, 2729, 2724,       2745, 2743, 2767, 2756, 2747,  118, 2759, 2753, 2742, 2737,
      2720, 2735, 2722, 2736,  132,  132, 2731, 2724,  114, 2736,       2733, 2748, 2735, 2749,  132,  132, 2744, 2737,  114, 2749,
   
      2720, 2724,   90, 2725, 2727, 2711, 2712, 2726, 2705, 2712,       2733, 2737,   90, 2738, 2740, 2724, 2725, 2739, 2718, 2725,
       141,  139, 2712, 2724, 2719, 2714,  146, 2707,  167,  163,        141,  139, 2725, 2737, 2732, 2727,  146, 2720,  167,  163,
      2719, 2719, 2699, 2703, 2712, 2700,  188, 2710, 2702, 2701,       2732, 2732, 2712, 2716, 2725, 2713,  188, 2723, 2715, 2714,
       159, 2717,  164,  175, 2716, 2709, 2714,    0,  193,    0,        159, 2730,  164,  175, 2729, 2722, 2727,    0,  193,    0,
      2704,    0,  200,    0, 2703,  205, 2792, 2711, 2696, 2682,       2717,    0,  200,    0, 2716,  205, 2805, 2724, 2709, 2695,
      2690, 2690, 2693, 2685, 2698, 2683, 2683, 2677, 2692, 2669,       2703, 2703, 2706, 2698, 2711, 2696, 2696, 2690, 2705, 2682,
      2693, 2674, 2671,  146, 2685,  207,  164, 2669,  210, 2693,       2706, 2687, 2684,  146, 2698,  207,  164, 2682,  210, 2706,
      2682, 2685, 2665, 2662,  212, 2669,  198, 2677,  209, 2677,       2695, 2698, 2678, 2675,  212, 2682,  198, 2690,  209, 2690,
      2675,  212, 2656, 2675, 2677, 2674, 2680, 2660, 2652, 2677,       2688,  212, 2669, 2688, 2690, 2687, 2693, 2673, 2665, 2690,
       214,  227, 2658, 2647, 2649, 2663, 2662, 2661, 2654, 2655,        214,  227, 2671, 2660, 2662, 2676, 2675, 2674, 2667, 2668,
   
      2658, 2657,  218, 2642, 2655, 2654,  220, 2653, 2653, 2636,       2671, 2670,  218, 2655, 2668, 2667,  220, 2666, 2666, 2649,
       250, 2649, 2649, 2653, 2627, 2646, 2632, 2641, 2635, 2636,        250, 2662, 2662, 2666, 2640, 2659, 2645, 2654, 2648, 2649,
      2651, 2625, 2639,  227, 2631, 2633, 2641, 2622, 2639, 2626,       2664, 2638, 2652,  227, 2644, 2646, 2654, 2635, 2652, 2639,
      2612, 2631, 2612, 2619, 2638, 2627, 2622,  218, 2629, 2634,       2625, 2644, 2625, 2632, 2651, 2640, 2635,  218, 2642, 2647,
      2608, 2609, 2614, 2613, 2623, 2618, 2615, 2616, 2603, 2618,       2621, 2622, 2627, 2626, 2636, 2631, 2628, 2629, 2616, 2631,
      2618, 2596, 2602, 2604, 2614, 2618, 2596, 2604, 2598, 2614,       2631, 2609, 2615, 2617, 2627, 2631, 2609, 2617, 2611, 2627,
      2613,    0, 2612, 2581,    0, 2610, 2591, 2591,    0, 2607,       2626,    0, 2625, 2594,    0, 2623, 2604, 2604,    0, 2620,
      2579, 2595,  240, 2590, 2603, 2576, 2593, 2595, 2594, 2588,       2592, 2608,  240, 2603, 2616, 2589, 2606, 2608, 2607, 2601,
      2581, 2591,  269, 2565, 2580, 2593, 2580, 2572, 2590, 2563,       2594, 2604,  269, 2578, 2593, 2606, 2593, 2585, 2603, 2576,
      2578, 2581, 2576, 2575, 2564, 2583, 2564, 2571, 2580, 2571,       2591, 2594, 2589, 2588, 2577, 2596, 2577, 2584, 2593, 2584,
   
      2553,  242, 2571,  249, 2792, 2551, 2575, 2548, 2573, 2552,       2566,  242, 2584,  249, 2805, 2564, 2588, 2561, 2586, 2565,
      2552, 2570, 2550, 2544, 2544, 2561, 2555, 2541, 2557,    0,       2565, 2583, 2563, 2557, 2557, 2574, 2568, 2554, 2570,    0,
      2562, 2536, 2541, 2559, 2541, 2538, 2532, 2536,  234, 2548,       2575, 2549, 2554, 2572, 2554, 2551, 2545, 2549,  234, 2561,
      2536, 2538, 2537,  241, 2526,  252, 2544, 2529, 2542, 2529,       2549, 2551, 2550,  241, 2539,  252, 2557, 2542, 2555, 2542,
      2521,  263, 2544, 2535, 2537, 2518, 2517, 2518, 2517, 2512,       2534,  263, 2557, 2548, 2550, 2531, 2530, 2531, 2530, 2525,
       265, 2531,  269, 2792,  276, 2530, 2511, 2508,  273, 2518,        265, 2544,  269, 2805,  276, 2543, 2524, 2521,  273, 2531,
      2525,  274,  257, 2530, 2521, 2515, 2522, 2503, 2508, 2519,       2538,  274,  257, 2543, 2534, 2528, 2535, 2516, 2521, 2532,
      2518, 2517, 2521, 2510, 2519, 2498, 2507, 2506, 2491, 2508,       2531, 2530, 2534, 2523, 2532, 2511, 2520, 2519, 2504, 2521,
      2503,  280, 2495, 2497, 2489, 2504, 2483,    0, 2507, 2497,       2516,  280, 2508, 2510, 2502, 2517, 2496,    0, 2520, 2510,
      2480, 2495, 2478, 2492, 2484, 2500, 2469, 2493, 2487, 2471,       2493, 2508, 2491, 2505, 2497, 2513, 2482, 2506, 2500, 2484,
   
      2471, 2494, 2481, 2486, 2465, 2476, 2481, 2478, 2477, 2481,       2484, 2507, 2494, 2499, 2478, 2489, 2494, 2491, 2490, 2494,
      2457,    0, 2484, 2463, 2469, 2476, 2480, 2479, 2454, 2453,       2470,    0, 2497, 2476, 2482, 2489, 2493, 2492, 2467, 2466,
      2456, 2469, 2474, 2449, 2447, 2461, 2470, 2446, 2452, 2461,       2469, 2482, 2487, 2462, 2460, 2474, 2483, 2459, 2465, 2474,
      2460, 2442, 2440,    0, 2442,  221, 2456, 2443, 2441, 2453,       2473, 2455, 2453,    0, 2455,  221, 2469, 2456, 2454, 2466,
      2438, 2447, 2432, 2441, 2435,    0, 2453, 2438, 2426,    0,       2451, 2460, 2445, 2454, 2448,    0, 2466, 2451, 2439,    0,
      2450, 2425, 2440, 2433, 2427, 2436, 2426,    0, 2443, 2422,       2463, 2438, 2453, 2446, 2440, 2449, 2439,    0, 2456, 2435,
      2432,    0, 2440, 2414, 2424, 2430, 2413, 2410, 2429,    0,       2445,    0, 2453, 2427, 2437, 2443, 2426, 2423, 2442,    0,
      2433, 2415, 2431,  278, 2418, 2429, 2419, 2406, 2420, 2402,       2446, 2428, 2444,  278, 2431, 2442, 2432, 2419, 2433, 2415,
      2424, 2413, 2414, 2407, 2410,    0, 2419, 2398, 2392, 2402,       2437, 2426, 2427, 2420, 2423,    0, 2432, 2411, 2405, 2415,
      2401, 2400, 2399, 2386, 2391, 2393, 2397, 2385, 2384, 2396,       2414, 2413, 2412, 2399, 2404, 2406, 2410, 2398, 2397, 2409,
   
      2380, 2384, 2382, 2397,  288, 2401, 2394,  302, 2792, 2399,       2393, 2397, 2395, 2410,  288, 2414, 2407,  302, 2805, 2412,
      2398, 2383, 2382, 2389, 2394, 2393, 2382,  304, 2792,  299,       2411, 2396, 2395, 2402, 2407, 2406, 2395,  304, 2805,  307,
      2391, 2369,  285, 2383, 2363, 2369, 2366, 2356, 2372, 2359,       2404, 2382,  285, 2396, 2376, 2382, 2379, 2369, 2385, 2372,
      2374, 2367,  297, 2380, 2354, 2364, 2371, 2371, 2369,  302,       2387, 2380,  296, 2393, 2367, 2377, 2384, 2384, 2382,  301,
      2364, 2347,    0, 2372, 2363, 2370, 2351,  309, 2360, 2342,       2377, 2360,    0, 2385, 2376, 2383, 2364,  311, 2373, 2355,
      2338, 2356, 2345, 2344, 2362, 2342, 2360, 2341, 2345,  310,       2351, 2369, 2358, 2357, 2375, 2355, 2373, 2354, 2358,  315,
      2332, 2351, 2345, 2354, 2328,    0, 2352, 2330, 2341, 2349,       2345, 2364, 2358, 2367, 2341,    0, 2365, 2343, 2354, 2362,
      2318, 2321, 2346, 2322, 2335, 2333, 2333, 2321, 2340, 2316,       2331, 2334, 2359, 2335, 2348, 2346, 2346, 2334, 2353, 2329,
      2318, 2323, 2317, 2310, 2328,    0, 2333,    0, 2332, 2331,       2331, 2336, 2330, 2323, 2341,    0, 2346,    0, 2345, 2344,
      2318, 2306, 2303, 2327, 2305, 2311, 2315,    0, 2323, 2322,       2331, 2319, 2316, 2340, 2318, 2324, 2328,    0, 2336, 2335,
   
       308, 2300, 2299, 2303, 2291,    0, 2296, 2292, 2290, 2296,        303, 2313, 2312, 2316, 2304,    0, 2309, 2305, 2303, 2309,
      2292, 2292, 2288, 2293, 2299, 2298, 2288, 2294, 2286, 2299,       2305, 2305, 2301, 2306, 2312, 2311, 2301, 2307, 2299, 2312,
      2293, 2277, 2282, 2275, 2299, 2293, 2288, 2296, 2281, 2274,       2306, 2290, 2295, 2288, 2312, 2306, 2301, 2309, 2294, 2287,
      2276, 2287, 2277,  328,   71,    0,  136,  153,  175,  179,       2289, 2300, 2290,  327,   71,    0,  136,  153,  175,  179,
         0,  225,  240,  279,  262,  310,  317,  312,  305,  311,          0,  225,  240,  279,  262,  303,  317,  312,  305,  311,
       326,  319,  308,  322,  312,  312,  315,  318,  318,  322,        323,  317,  306,  322,  312,  315,  320,  321,  319,  323,
       327,  321,  323,  334,  334,  336,  326,  339,  342,  327,        328,  322,  324,  335,  335,  337,  327,  341,  344,  330,
       341,  333,  355,  329,    0,  358,  359,  341,  355,  354,        344,  334,  356,  330,    0,  358,  360,  342,  356,  355,
       363,  364,  342,  349,  356,  351,  339,    0,  370,  354,        364,  365,  343,  350,  351,  358,  353,  341,    0,  372,
       353,  363,  357,  371,  372,  358,  375,  367,  358,  367,        356,  355,  365,  359,  373,  374,  360,  377,  369,  360,
   
       367,  379,  376,    0,  387,  388,  364,  365,  385,  362,        369,  369,  381,  378,    0,  389,  390,  366,  367,  387,
       368,  384,  385,  367,  376,  373,    0,  399,  395,  401,        364,  370,  386,  387,  369,  378,  375,    0,  401,  397,
       384,  378,  399,  399,  406,  377,  381,  410,  399,  412,        403,  386,  380,  401,  401,  408,  379,  383,  412,  401,
       393,  397,  415,  399,  403,  394,  397,  420,  408,  412,        414,  395,  399,  417,  401,  405,  396,  399,  422,  410,
       403,  424,  404,  403,    0,  427,  418,  429,  430,  431,        414,  405,  426,  406,  405,    0,  429,  420,  431,  432,
       413,  433,  428,  424,  405,  412,  438,  418,  440,  441,        433,  415,  435,  430,  426,  407,  414,  440,  420,  442,
       434,  435,    0,  446,  437,  428,  449,  450,  433,  422,        443,  436,  437,    0,  448,  439,  430,  451,  452,  435,
       432,  433,  455,  442,  440,  433,  459,  455,  455,  454,        424,  434,  435,  457,  444,  442,  435,  461,  457,  457,
       440,  447,  460,  461,  455,  463,  457,  445,  462,  462,        456,  442,  449,  462,  463,  457,  465,  459,  447,  464,
       463,  469,  475,  457,  463,  478,  459,  461,  471,  471,        464,  465,  471,  477,  459,  465,  480,  461,  463,  473,
   
       463,  463,  468,  476,  473,  483,  477,  492,  493,  494,        473,  465,  465,  470,  478,  475,  485,  479,  494,  495,
       495,  466,  491,  478,  492,    0,  502,  494,  504,  491,        496,  497,  468,  493,  480,  494,    0,  504,  496,  506,
       506,  491,  486,  493,  505,  503,  504,  505,  492,  486,        493,  508,  493,  488,  495,  507,  505,  506,  507,  494,
       492,  490,  513,  515,  498,  512,  495,  498,  519,  501,        488,  494,  492,  515,  517,  500,  514,  497,  500,  521,
       521,  522,  529,    0,  530,  521,    0,  532,  506,  517,        503,  523,  524,  531,    0,  532,  523,    0,  534,  508,
       525,    0,  536,    0,  537,  538,  519,  529,  541,  522,        519,  527,    0,  538,    0,  539,  540,  524,  522,  532,
       537,  523,  545,  546,  547,  548,  541,  538,  551,  531,        544,  525,  540,  526,  548,  549,  550,  551,  544,  541,
       545,  554,  555,  539,  540,  539,  559,  560,  536,  539,        554,  534,  548,  557,  558,  542,  543,  542,  562,  563,
       558,  539,  546,  545,  546,  568,  559,  552,  546,    0,        539,  542,  561,  542,  549,  548,  549,  571,  562,  555,
       572,  553,  569,  578,  545,  576,  549,  564,    0,  579,        549,    0,  575,  556,  572,  581,  548,  579,  552,  567,
   
       580,    0,  581,  555,  583,    0,  594,  587,  579,  575,          0,  582,  583,    0,  584,  558,  586,    0,  597,  590,
       575,    0,  604,  605,  607,  580,    0,  609,  600,  601,        582,  578,  578,    0,  607,  608,  610,  583,    0,  612,
       588,  613,  614,  615,  591,    0,  617,  611,  608,  620,        603,  604,  591,  616,  617,  618,  594,    0,  620,  614,
       621,  592,  623,  603,    0,  625,  626, 2792,  628,  625,        611,  623,  624,  595,  626,  606,    0,  628,  629, 2805,
       621,  613,  633,    0,  634,  615,  615,  620,  621,  639,        631,  628,  624,  616,  636,    0,  637,  618,  618,  623,
       630,  611,  637,  643,  638,  628,  630,  617,  648,  635,        624,  642,  633,  614,  640,  646,  641,  631,  633,  620,
       644,  652,  628,  654,  625,  656,  649,  636,  632,    0,        651,  638,  647,  655,  631,  657,  628,  659,  652,  639,
       661,  656,  652,    0,  664,  646,  666,  669,  650,  654,        635,    0,  664,  659,  655,    0,  667,  649,  669,  672,
       653,  650,  656,  671,  658,  671,  650,  661,  659,  665,        653,  657,  656,  653,  659,  674,  661,  674,  653,  664,
       670,    0,  685,  686,    0,  687,    0,  688,  689,  667,        662,  668,  673,    0,  688,  689,    0,  690,    0,  691,
   
       668,  678,  663,  694,  685,    0,  696,  687,  668,  689,        692,  670,  671,  681,  666,  697,  688,    0,  699,  690,
       675,  701,  696,  680,  704,  705,  700,  688,  701,  683,        671,  692,  678,  704,  699,  683,  707,  708,  703,  691,
       710,  702,  702,  690,  702,  715,  708,  700,  718,  719,        704,  686,  713,  705,  705,  693,  705,  718,  711,  703,
       706,  721,  722,  723,  716,  725,  726,  699,  703,  719,        721,  722,  709,  724,  725,  726,  707,  720,  729,  730,
       730,  731,  732,  733,  718,  725,  736,  720,  738,  739,        703,  707,  723,  734,  735,  736,  737,  722,  729,  740,
       741,  737,  743,  732,    0,  745,  746,  741,  740,  738,        724,  742,  744,  745,  741,  747,  736,    0,  749,  750,
       724,  737,  742,  753,  754,  746,  736,  747,  749,  741,        745,  744,  742,  728,  741,  746,  757,  758,  750,  740,
       741,  753,  745,  757,  757,  747,  758,  753,  749,  755,        751,  753,  745,  745,  757,  749,  761,  761,  751,  762,
       761,  770,  772,  762,  755,  772,  783,    0,  784,  773,        757,  753,  759,  765,  774,  776,  766,  759,  776,  787,
       763,  788,  779,  763,  780,  781,  780,  781,  796,  797,          0,  788,  777,  767,  792,  783,  767,  784,  785,  784,
   
       779,  799,  800,  777,    0,  802,    0,  803,    0,  804,        785,  800,  801,  783,  803,  804,  781,    0,  806,    0,
       795,  789,  807,  808,  809,  789,    0,  811,  795,  813,        807,    0,  808,  799,  793,  811,  812,  813,  793,    0,
      2792,  795,  807,  817,    0,  818,  792,  810,  791,  808,        815,  799,  817, 2805,  799,  811,  821,    0,  822,  796,
         0,  823,  796,  825,  802,    0,  827,  805,  819,  823,        814,  795,  812,    0,  827,  800,  829,  806,    0,  831,
       831,  832,  814,  811,  815,  816,  831,  830,  834,  839,        809,  823,  827,  835,  836,  818,  815,  819,  820,  835,
       827,  842,  826,  848,  849,  850,  842,  835,  840,  855,        834,  838,  843,  831,  846,  830,  852,  853,  854,  846,
       856,  839,  858,  842,  860,  844,  856,  839,  839,  844,        839,  844,  859,  860,  843,  862,  846,  864,  848,  860,
       850,  867,  847,  849,  860,  859,    0,  873,  874,  857,        843,  843,  848,  854,  871,  851,  853,  864,  863,    0,
       876,  851,  873,    0,  879,  871,  872,  881,  883,  874,        877,  878,  861,  880,  855,  877,    0,  883,  875,  876,
       885,  879,  867,  888,  889,  883,  891,  875,  872,  894,        885,  887,  878,  889,  883,  871,  892,  893,  887,  895,
   
       895,  873,  873,  884,  899,  890,  901,    0,  902,  903,        879,  876,  898,  899,  877,  877,  888,  903,  894,  905,
       880,  905,  900,  907,    0,  908,  893,  910,    0,  911,          0,  906,  907,  884,  909,  904,  911,    0,  912,  885,
       912,  903,  914,    0,  915,    0,  916,    0,  918,    0,        898,  915,    0,  916,  917,  908,  919,    0,  920,    0,
       919,  920,  921,    0,  922,  917,  924,    0,  925,    0,        921,    0,  923,    0,  924,  925,  926,    0,  927,  922,
       926,  913,  928,  904,    0,  930,  923,  919,  916,  915,        929,    0,  930,    0,  931,  918,  933,  909,    0,  935,
       925,  919,  937,    0,  938,  939,  913,  923,  928,  929,        928,  924,  921,  920,  930,  924,  942,    0,  943,  944,
       923,  933,  932,  933,  929,  943,  933,  945,  929,  948,        918,  928,  933,  934,  928,  938,  937,  938,  934,  948,
       945,  950,  934,  938,  951,  944,  937,  952,  952,  942,        938,  950,  934,  953,  950,  955,  939,  943,  956,  949,
       937,  954,  949,  947,  965,  972,  963,  960,    0,  975,        942,  957,  957,  947,  942,  959,  954,  952,  970,  977,
       976,  967,  953,  979,  963,  960,    0,  982,    0,  983,        968,  965,    0,  980,  981,  972,  958,  984,  968,  965,
   
       984,  985,  986,  973,  969,  979,  990,    0,  991,    0,          0,  987,    0,  988,  989,  990,  991,  978,  974,  984,
       992,  983,  964,  976,  996,  997,  988,  999, 1000,  991,        995,    0,  996,    0,  997,  988,  969,  981, 1001, 1002,
      1002, 1003,  983,  987, 1006, 1001, 1008,    0, 1009, 1005,        993, 1004, 1005,  996, 1007, 1008,  988,  992, 1011, 1006,
       993,  984,  990,  995,  996, 1007,  994, 1004, 1005, 1001,       1013,    0, 1014, 1010,  998,  989,  995, 1000, 1001, 1012,
      1015,    0, 1022, 1005,    0, 1024, 1015,    0, 1026, 1027,        999, 1009, 1010, 1006, 1020,    0, 1027, 1010,    0, 1029,
      1028, 1023, 1020, 1021, 1032,    0, 1033, 1014,    0, 1035,       1020,    0, 1031, 1032, 1033, 1028, 1025, 1026, 1037,    0,
      1027, 1037, 1008, 1031, 1030, 1028, 1042, 1017, 1044, 1025,       1038, 1019,    0, 1040, 1032, 1042, 1013, 1036, 1035, 1033,
      1048, 1021, 1050, 1039,    0, 1052, 1034, 1056, 1033, 1067,       1047, 1022, 1049, 1030, 1053, 1026, 1055, 1044,    0, 1057,
      1058, 1059, 1059, 2792, 1061, 1053,    0, 1063, 1047, 1046,       1039, 1061, 1038, 1072, 1063, 1064, 1064, 2805, 1066, 1058,
         0, 1066,    0, 1067, 1051, 1069, 1060, 1071,    0, 1072,          0, 1068, 1052, 1051,    0, 1071,    0, 1072, 1056, 1074,
   
      1075, 1076, 1067, 1070,    0, 1079, 1081, 1082,    0, 1083,       1065, 1076,    0, 1077, 1080, 1081, 1072, 1075,    0, 1084,
      1070,    0, 1085, 1068,    0, 1087, 1088,    0, 1089, 1092,       1086, 1087,    0, 1088, 1075,    0, 1090, 1073,    0, 1092,
      1072, 1094, 1096, 1097, 1098, 1069,    0, 1100, 1092,    0,       1093, 1094,    0, 1097, 1098, 1078, 1101, 1102, 1103, 1104,
      1102, 1090, 1088, 1105, 1086, 1097, 1099, 1092,    0, 1110,       1075,    0, 1106, 1098,    0, 1108, 1096, 1094, 1111, 1092,
      1111, 1102, 1089, 1103, 1091, 1106, 1117, 1109, 1100, 1112,       1103, 1105, 1098,    0, 1116, 1117, 1108, 1095, 1109, 1097,
      1101, 1113, 1112, 1105, 1100, 1109, 1117, 1114, 1121, 1107,       1112, 1123, 1115, 1106, 1118, 1107, 1119, 1118, 1111, 1106,
      1121, 1108, 1112, 1104, 1125, 1126, 1123, 1132, 1115, 1116,       1115, 1123, 1120, 1127, 1113, 1127, 1114, 1118, 1110, 1131,
      1113, 1123, 1122,    0, 1144, 1122, 1139, 1147, 1131, 1149,       1132, 1129, 1138, 1121, 1122, 1119, 1129, 1128,    0, 1150,
      1150, 1134, 1152, 1153,    0, 1154,    0, 1155, 1129, 1132,       1128, 1145, 1153, 1137, 1155, 1156, 1140, 1158, 1159,    0,
      1158,    0, 1159, 1160, 1161, 1157, 1163,    0, 1164, 1147,       1160,    0, 1161, 1135, 1138, 1164,    0, 1165, 1166, 1167,
   
      1166, 1167, 1159, 1169,    0, 1170, 1161, 1152, 1173, 1166,       1163, 1169,    0, 1170, 1153, 1172, 1173, 1165, 1175,    0,
         0, 1175, 1167, 1157, 1178, 1160, 1168, 1169, 1182, 1163,       1176, 1167, 1158, 1179, 1172,    0, 1181, 1173, 1163, 1184,
      1174, 1168, 1177, 1166, 1178, 1189,    0, 1190,    0, 1191,       1166, 1174, 1175, 1188, 1169, 1180, 1174, 1183, 1172, 1184,
      1171, 1193, 1171,    0, 1195, 1187, 1187,    0, 1198, 1199,       1195,    0, 1196,    0, 1197, 1177, 1199, 1177,    0, 1201,
      1184, 1201, 1202, 1203, 1188, 1184,    0, 1210, 1190, 1195,       1193, 1193,    0, 1204, 1205, 1190, 1207, 1208, 1209, 1194,
      1213, 1194, 1216, 1217, 1198, 1220, 1212, 1197,    0, 1224,       1190,    0, 1216, 1196, 1201, 1219, 1200, 1222, 1223, 1204,
      1226, 1207, 1208, 1209, 1222, 1225, 1232, 1233,    0, 1234,       1226, 1218, 1203,    0, 1230, 1232, 1213, 1214, 1215, 1228,
      1236, 1227, 1239, 1230,    0, 1241, 1242, 1243,    0, 1244,       1231, 1238, 1239,    0, 1240, 1242, 1233, 1245, 1236,    0,
      1245, 1237, 1241, 1248,    0, 1249, 1243, 1241, 1252,    0,       1247, 1248, 1249,    0, 1250, 1251, 1243, 1247, 1254,    0,
      1253, 1244, 1255,    0, 1256,    0, 1257,    0, 1258, 1249,       1255, 1249, 1247, 1258, 1259,    0, 1260, 1251, 1262,    0,
   
      1250, 1261, 1262, 1263, 1244, 1256, 1266, 1257,    0, 1268,       1263,    0, 1264,    0, 1265, 1256, 1257, 1268, 1269, 1270,
      1269, 1270, 1257, 1248, 1256, 1274, 1275, 1267, 1267, 1254,       1251, 1263, 1273, 1264,    0, 1275, 1276, 1277, 1264, 1255,
      1279, 1254, 1256, 1269, 1273, 1278, 1266, 1261, 1288, 1289,       1263, 1281, 1282, 1274, 1274, 1261, 1286, 1261, 1263, 1276,
      1265, 1271, 1264, 1270, 1289, 1287, 1279, 1283, 1278, 1299,       1280, 1285, 1273, 1268, 1295, 1296, 1272, 1278, 1271, 1277,
      1295, 1281, 1292, 1286,    0, 1304, 1305, 1306,    0, 1307,       1296, 1294, 1286, 1290, 1285, 1306, 1302, 1288, 1299, 1293,
      1308, 1309,    0, 1310, 1301, 1307, 1313, 1314, 1315, 1295,          0, 1311, 1312, 1313,    0, 1314, 1315, 1316,    0, 1317,
         0, 1317, 1309,    0, 1320,    0, 1321, 1322,    0, 1323,       1308, 1314, 1320, 1321, 1322, 1302,    0, 1324, 1316,    0,
      1307, 1299,    0, 1326, 1311, 1322, 1303, 1330, 1331, 1322,       1327,    0, 1328, 1329,    0, 1330, 1314, 1306,    0, 1333,
      1333, 1334, 1318, 1319, 1320, 1338, 1319, 1340, 1341, 1322,       1318, 1329, 1310, 1337, 1338, 1329, 1340, 1341, 1325, 1326,
      1343, 1344, 1331, 1323, 1347, 1328, 1350, 1351, 1332, 1354,       1327, 1345, 1326, 1347, 1348, 1329, 1350, 1351, 1338, 1330,
   
      1336,    0, 1358, 1338, 1343, 1361, 1337, 1337,    0, 1364,       1354, 1335, 1357, 1358, 1339, 1361, 1343,    0, 1365, 1345,
      1344, 1350, 1368, 1349,    0, 1371, 1351, 1356, 1374, 1355,       1350, 1368, 1344, 1344,    0, 1371, 1351, 1357, 1375, 1356,
      1354, 1355, 1379, 1352, 1358, 1373, 1360, 1370, 1366, 1380,          0, 1378, 1358, 1363, 1381, 1362, 1361, 1362, 1386, 1359,
         0, 1387,    0, 1388, 1389, 1390, 1391, 1392, 1393,    0,       1365, 1380, 1367, 1377, 1373, 1387,    0, 1394,    0, 1395,
      1394,    0, 1395, 1396, 1380,    0, 1398, 1382, 1400,    0,       1396, 1397, 1398, 1399, 1400,    0, 1401,    0, 1402, 1403,
      1401, 1383,    0, 1403, 1381, 1386, 1406, 1407,    0, 1408,       1387,    0, 1405, 1389, 1407,    0, 1408,    0, 1409, 1391,
      1386, 1410, 1411, 1403, 1413, 1404, 1415, 1406, 1403, 1401,          0, 1411, 1389, 1394, 1414, 1415,    0, 1416, 1394, 1418,
         0, 1419, 1420, 1421, 1405, 1423, 1424, 1401, 1416, 1427,       1419, 1411, 1421, 1412, 1423, 1414, 1411, 1409,    0, 1427,
      1403, 1405, 1430, 1408, 1432, 1433, 1421, 1407, 1416, 1418,       1428, 1429, 1413, 1431, 1432, 1409, 1424, 1435, 1411, 1413,
      1414, 1439, 1410, 1433, 1423, 1443, 1418, 1426, 1446, 1437,       1438, 1416, 1440, 1441, 1429, 1415, 1424, 1426, 1422, 1447,
   
      1448,    0, 1449, 1450,    0, 1451, 1452, 1433,    0, 1454,       1418, 1441, 1431, 1451, 1426, 1434, 1454, 1445, 1456,    0,
         0, 1455,    0, 1456, 1431, 1448, 1440, 1460, 1444, 1439,       1457, 1458,    0, 1459, 1460, 1441,    0, 1462,    0, 1463,
      1463, 1441, 1442,    0, 1466, 1467, 1468, 1469,    0, 1470,          0, 1464, 1439, 1456, 1448, 1468, 1452, 1447, 1471, 1449,
      1454, 1463, 1473, 1474, 1456, 1476,    0, 1477, 1459,    0,       1450,    0, 1474, 1475, 1476, 1477,    0, 1478, 1462, 1471,
      1479, 1480, 1470, 1482,    0, 1483, 1463, 1468, 1486, 1467,       1481, 1482, 1464, 1484,    0, 1485, 1467,    0, 1487, 1488,
         0, 1489, 1469, 1474,    0, 1492, 1472, 1477, 1470, 1470,       1478, 1490,    0, 1491, 1471, 1476, 1494, 1475,    0, 1497,
      1497, 1478, 1486, 1489, 1477, 1477,    0, 1504, 1484, 1489,       1477, 1482,    0, 1500, 1480, 1485, 1478, 1478, 1505, 1486,
      1482, 1482,    0, 1509, 1489, 1494, 1512, 1513,    0, 1514,       1494, 1497, 1485, 1485,    0, 1512, 1492, 1497, 1490, 1490,
      1515, 1497, 1518, 1499, 1503, 1512, 1501,    0, 1523, 1524,          0, 1517, 1497, 1502, 1520, 1521,    0, 1522, 1523, 1505,
         0, 1525, 1526,    0, 1527, 1528, 1529, 1520, 1531, 1526,       1526, 1507, 1511, 1520, 1509,    0, 1531, 1532,    0, 1533,
   
      1533, 1509,    0, 1535,    0, 1536, 1537, 1538,    0, 1539,       1534,    0, 1535, 1536, 1537, 1528, 1539, 1534, 1541, 1517,
      1540,    0, 1541, 1523,    0, 1543, 1521, 1528, 1546,    0,          0, 1543,    0, 1544, 1545, 1546,    0, 1547, 1548,    0,
      1547, 1548, 1532, 1550,    0, 1551, 1538, 1530, 1554, 1545,       1549, 1531,    0, 1551, 1529, 1536, 1554,    0, 1555, 1556,
      1546, 1557, 1544,    0, 1559,    0, 1560, 1547, 1552, 1540,       1540, 1558,    0, 1559, 1546, 1538, 1562, 1553, 1554, 1565,
      1558, 1540, 1566, 1536, 1562, 1569,    0, 1570, 1552, 1554,       1552,    0, 1567,    0, 1568, 1555, 1560, 1548, 1566, 1548,
      1573, 1574,    0, 1575,    0, 1576, 1577, 1559, 1555, 1563,       1574, 1544, 1570, 1577,    0, 1578, 1560, 1562, 1581, 1582,
      1556,    0, 1582, 1583, 1584, 1585, 1570, 1587,    0, 1588,          0, 1583,    0, 1584, 1585, 1567, 1563, 1571, 1564,    0,
      1589,    0, 1590, 1591, 1592, 1593,    0, 1594, 1595,    0,       1590, 1591, 1592, 1593, 1578, 1595,    0, 1596, 1597,    0,
      1596, 1592,    0, 1598, 1585, 1600, 1576, 1576,    0, 1603,       1598, 1599, 1600, 1601,    0, 1602, 1603,    0, 1604, 1600,
      1583, 1588, 1581, 1581, 1583, 1583, 1596, 1599,    0, 1612,          0, 1606, 1593, 1608, 1584, 1584,    0, 1611, 1591, 1596,
   
      1592, 1597, 1595, 1602, 1603, 1606, 1594, 1594, 1607, 1610,       1589, 1589, 1591, 1591, 1604, 1607,    0, 1620, 1600, 1605,
      1598, 1598, 1625, 1606, 1628, 1629, 1630, 1631, 1615, 1616,       1603, 1610, 1611, 1614, 1602, 1602, 1615, 1618, 1606, 1606,
      1634, 1615,    0, 1636,    0, 1637,    0, 1638, 1639, 1640,       1633, 1614, 1636, 1637, 1638, 1639, 1623, 1624, 1642, 1623,
         0, 1641, 1625, 1643, 1644, 1645,    0, 1646, 1647, 1623,          0, 1644,    0, 1645,    0, 1646, 1647, 1648,    0, 1649,
      1649, 1640, 1651,    0, 1652, 1647,    0, 1654, 1635, 1632,       1633, 1651, 1652, 1653,    0, 1654, 1655, 1631, 1657, 1648,
         0, 1657, 1658, 1659,    0, 1660, 1653, 1637, 1640, 1655,       1659,    0, 1660, 1655,    0, 1662, 1643, 1640,    0, 1665,
      1648, 1656,    0, 1667, 1658, 1652, 1670, 1662, 1666,    0,       1666, 1667,    0, 1668, 1661, 1645, 1648, 1663, 1656, 1664,
      1673, 1674,    0, 1675, 1671, 1664, 1668, 1679, 1680, 1681,          0, 1675, 1666, 1660, 1678, 1670, 1674,    0, 1681, 1682,
         0, 1682, 1683, 1684,    0, 1685, 1686, 1687,    0, 1688,          0, 1683, 1679, 1672, 1676, 1687, 1688, 1689,    0, 1690,
      1689, 1666, 1681,    0, 1692, 1679, 1682, 1670, 1670, 1683,       1691, 1692,    0, 1693, 1694, 1695,    0, 1696, 1697, 1674,
   
      1686, 1685, 1688, 1681, 1688, 1678, 1678, 1686, 1687, 1687,       1689,    0, 1700, 1687, 1690, 1678, 1678, 1691, 1694, 1693,
      1694, 1695, 1698, 1691, 1698, 1699, 1702,    0, 1715, 1695,       1696, 1689, 1696, 1686, 1686, 1694, 1695, 1695, 1702, 1703,
      1700,    0, 1718,    0, 1719, 1720,    0, 1721, 1705, 1723,       1706, 1699, 1706, 1707, 1710,    0, 1723, 1703, 1708,    0,
      1724, 1706,    0, 1726, 1727, 1703,    0, 1729, 1730,    0,       1726,    0, 1727, 1728,    0, 1729, 1713, 1731, 1732, 1714,
      1731,    0, 1732, 1733, 1734, 1735,    0, 1736, 1712, 1719,          0, 1734, 1735, 1711,    0, 1737, 1738,    0, 1739,    0,
      1718, 1740, 1741, 1728, 1743, 1744, 1745, 1746, 1741, 1748,       1740, 1741, 1742, 1743,    0, 1744, 1720, 1727, 1726, 1748,
      1749,    0, 1750, 1741, 1740,    0, 1753, 1742, 1755, 1750,       1749, 1736, 1751, 1752, 1753, 1754, 1749, 1756, 1757,    0,
      1757,    0, 1758,    0, 1759, 1760,    0, 1761,    0, 1762,       1758, 1749, 1748,    0, 1761, 1750, 1763, 1758, 1765,    0,
         0, 1763,    0, 1764, 1757, 1743, 1747, 1754, 1755, 1758,       1766,    0, 1767, 1768,    0, 1769,    0, 1770,    0, 1771,
      1751, 1758, 1753, 1760, 1756, 1757, 1763, 1766, 1755, 1780,          0, 1772, 1765, 1751, 1755, 1762, 1763, 1766, 1759, 1766,
   
      1762, 1763, 1763, 1770, 1766, 1767, 1767, 1774, 1764, 1764,       1761, 1768, 1764, 1765, 1771, 1774, 1763, 1788, 1770, 1771,
         0, 1791, 1792, 1793,    0, 1794, 1795,    0, 1796, 1767,       1771, 1778, 1774, 1775, 1775, 1782, 1772, 1772,    0, 1799,
         0, 1798, 1799,    0, 1800, 1801, 1788, 1803, 1794,    0,       1800, 1801,    0, 1802, 1803,    0, 1804, 1775,    0, 1806,
      1805,    0, 1806, 1782, 1808, 1809, 1810, 1811, 1795, 1813,       1807,    0, 1808, 1809, 1796, 1811, 1802,    0, 1813,    0,
      1814, 1809, 1802, 1807, 1818, 1795,    0, 1820,    0, 1821,       1814, 1790, 1816, 1817, 1818, 1819, 1803, 1821, 1822, 1817,
      1799, 1823, 1805, 1806, 1806, 1813, 1809, 1810, 1811, 1812,       1810, 1815, 1826, 1803,    0, 1828,    0, 1829, 1807, 1831,
      1808, 1833, 1814, 1821, 1836, 1837, 1814, 1839, 1821, 1822,       1813, 1814, 1814, 1821, 1817, 1818, 1819, 1820, 1816, 1841,
      1818, 1843, 1825, 1826, 1832, 1835, 1848,    0, 1849, 1850,       1822, 1829, 1844, 1845, 1822, 1847, 1829, 1830, 1826, 1851,
      1851,    0, 1852,    0, 1853, 1834, 1855, 1839, 1827,    0,       1833, 1834, 1840, 1843, 1856,    0, 1857, 1858, 1859,    0,
      1858,    0, 1859,    0, 1860,    0, 1861, 1848,    0, 1863,       1860,    0, 1861, 1842, 1863, 1847, 1835,    0, 1866,    0,
   
         0, 1864, 1856, 1858, 1848,    0, 1868, 1859, 1856, 1871,       1867,    0, 1868,    0, 1869, 1856,    0, 1871,    0, 1872,
      1848, 1873, 1855, 1856, 1852, 1877, 1854, 1879, 1880, 1881,       1864, 1866, 1856,    0, 1876, 1867, 1864, 1879, 1856, 1881,
      1863, 1864, 1884,    0, 1885, 1886, 1887, 1864, 1889, 1890,       1863, 1864, 1860, 1885, 1862, 1887, 1888, 1889, 1871, 1872,
      1891, 1868, 1893, 1874, 1881,    0, 1896,    0, 1897, 1898,       1892,    0, 1893, 1894, 1895, 1872, 1897, 1898, 1899, 1876,
      1880,    0, 1900, 1884, 1902, 1884, 1904, 1905, 1906, 1907,       1901, 1882, 1889,    0, 1904,    0, 1905, 1906, 1888,    0,
      1887,    0, 1909, 1910, 1911, 1888, 1913, 1914, 1915, 1916,       1908, 1892, 1910, 1892, 1912, 1913, 1914, 1915, 1895,    0,
      1917, 1918,    0, 1919, 1896, 1921,    0, 1922, 1923,    0,       1917, 1918, 1919, 1896, 1921, 1922, 1923, 1924, 1925, 1926,
      1924, 1925, 1926, 1927,    0, 1928, 1929, 1930, 1912, 1913,          0, 1927, 1904, 1929,    0, 1930, 1931,    0, 1932, 1933,
         0, 1933, 1934, 1935, 1936, 1925, 1938, 1939, 1940, 1941,       1934, 1935,    0, 1936, 1937, 1938, 1920, 1921,    0, 1941,
      1917, 1943,    0, 1944, 1945, 1946, 1947,    0, 1948, 1949,       1942, 1943, 1944, 1933, 1946, 1947, 1948, 1949, 1925, 1951,
   
         0, 1950,    0, 1951, 1952, 1953,    0, 1954, 1955,    0,          0, 1952, 1953, 1954, 1955,    0, 1956, 1957,    0, 1958,
      1956,    0, 1957, 1958,    0, 1959, 1936, 1961, 1962, 1963,          0, 1959, 1960, 1961,    0, 1962, 1963,    0, 1964,    0,
         0, 1964, 1965,    0, 1966,    0, 1967,    0, 1968,    0,       1965, 1966,    0, 1967, 1944, 1969, 1970, 1971,    0, 1972,
      1969, 1970,    0, 1971, 1972,    0, 1973,    0, 1974,    0,       1973,    0, 1974,    0, 1975,    0, 1976,    0, 1977, 1978,
      1975, 1976,    0, 1977,    0, 1978,    0, 1979, 1980, 1981,          0, 1979, 1980,    0, 1981,    0, 1982,    0, 1983, 1984,
         0, 1982,    0, 1983, 1984, 1985,    0, 1986,    0, 1987,          0, 1985,    0, 1986,    0, 1987, 1988, 1989,    0, 1990,
      1988,    0, 1989,    0, 1990,    0, 1991,    0, 1992, 2792,          0, 1991, 1992, 1993,    0, 1994,    0, 1995, 1996,    0,
      1994, 1996, 1998, 2000, 2002, 2003, 2005, 2006, 2007, 2008,       1997,    0, 1998,    0, 1999,    0, 2000, 2805, 2002, 2004,
      2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018,       2006, 2008, 2010, 2011, 2013, 2014, 2015, 2016, 2017, 2018,
      2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028,       2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028,
   
      2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038,       2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038,
Line 961
 
Line 886
      2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068,       2059, 2060, 2061, 2062, 2063, 2064, 2065, 2066, 2067, 2068,
      2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078,       2069, 2070, 2071, 2072, 2073, 2074, 2075, 2076, 2077, 2078,
      2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088,       2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088,
      2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099,       2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2098, 2099,
      2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109,       2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109,
      2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2120,       2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119,
      2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130,       2120, 2121, 2122, 2123, 2124, 2125, 2126, 2128, 2129, 2130,
   
      2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140,       2131, 2132, 2133, 2134, 2135, 2136, 2137, 2138, 2139, 2140,
      2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150,       2141, 2142, 2143, 2144, 2145, 2146, 2147, 2148, 2149, 2150,
Line 983
 
Line 908
      2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270,       2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268, 2269, 2270,
      2271, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280,       2271, 2272, 2273, 2274, 2275, 2276, 2277, 2278, 2279, 2280,
      2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290,       2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289, 2290,
      2291       2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299, 2300,
        2301, 2302, 2303, 2304
     } ;      } ;
   
 static yyconst flex_int16_t yy_def[2762] =  static yyconst short int yy_def[2775] =
     {   0,      {   0,
      2471, 2470, 2472, 2472, 2473, 2473, 2474, 2474, 2470, 2475,       2479, 2478, 2480, 2480, 2481, 2481, 2482, 2482, 2478, 2483,
      2470, 2476, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2478, 2484, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2477, 2477, 2477, 2478,       2483, 2483, 2483, 2483, 2483, 2483, 2485, 2485, 2485, 2486,
      2478, 2478, 2470, 2470, 2475, 2476, 2470, 2475, 2475, 2475,       2486, 2486, 2478, 2478, 2483, 2484, 2478, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
   
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2479, 2475, 2480, 2477, 2477, 2477,       2483, 2483, 2483, 2483, 2487, 2483, 2488, 2485, 2485, 2485,
      2477, 2478, 2478, 2478, 2478, 2470, 2470, 2481, 2475, 2475,       2485, 2486, 2486, 2486, 2486, 2478, 2478, 2489, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2482, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2490, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
   
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2483, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2491, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2484, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2492, 2483, 2483, 2483, 2483,
      2475, 2479, 2479, 2475, 2480, 2480, 2477, 2478, 2481, 2481,       2483, 2487, 2487, 2483, 2488, 2488, 2485, 2486, 2489, 2489,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2485, 2475, 2475, 2486, 2475,       2483, 2483, 2483, 2483, 2483, 2493, 2483, 2483, 2494, 2483,
      2475, 2475, 2475, 2475, 2475, 2487, 2475, 2475, 2488, 2475,       2483, 2483, 2483, 2483, 2483, 2495, 2483, 2483, 2496, 2483,
   
      2475, 2475, 2475, 2475, 2470, 2475, 2489, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2478, 2483, 2497, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2482,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2490,
      2482, 2475, 2475, 2490, 2475, 2475, 2475, 2475, 2475, 2475,       2490, 2483, 2483, 2498, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2470, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2478, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2491, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2499, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2483, 2483, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2491, 2491, 2483,
      2475, 2475, 2475, 2475, 2475, 2492, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2500, 2483, 2483, 2483, 2483,
   
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2484, 2484, 2475, 2475, 2475, 2493, 2494, 2475, 2477,       2483, 2492, 2492, 2483, 2483, 2483, 2501, 2502, 2483, 2485,
      2478, 2475, 2475, 2475, 2475, 2475, 2495, 2475, 2475, 2475,       2486, 2483, 2483, 2483, 2483, 2483, 2503, 2483, 2483, 2483,
      2475, 2475, 2475, 2496, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2504, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2485, 2485, 2475, 2475, 2486,       2483, 2483, 2483, 2483, 2483, 2493, 2493, 2483, 2483, 2494,
      2486, 2475, 2475, 2475, 2475, 2475, 2475, 2487, 2487, 2475,       2494, 2483, 2483, 2483, 2483, 2483, 2483, 2495, 2495, 2483,
      2475, 2488, 2488, 2475, 2475, 2475, 2475, 2475, 2475, 2489,       2483, 2496, 2496, 2483, 2483, 2483, 2483, 2483, 2483, 2497,
      2489, 2475, 2497, 2475, 2475, 2498, 2475, 2475, 2475, 2475,       2497, 2483, 2505, 2483, 2483, 2506, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2490, 2490, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2498, 2498, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
   
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2470, 2499,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2478, 2507,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2470, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2478, 2483,
      2500, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2508, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2501, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2509, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2491, 2491, 2475, 2502, 2475, 2475, 2475, 2475,       2483, 2483, 2499, 2499, 2483, 2510, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2492, 2492, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2500, 2500, 2483, 2483, 2483,
      2475, 2475, 2503, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2511, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2493, 2493, 2494, 2494, 2475,       2483, 2483, 2483, 2483, 2483, 2501, 2501, 2502, 2502, 2483,
      2477, 2478, 2475, 2504, 2475, 2475, 2475, 2495, 2495, 2475,       2485, 2486, 2483, 2512, 2483, 2483, 2483, 2503, 2503, 2483,
   
      2475, 2475, 2475, 2475, 2475, 2496, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2504, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2497, 2497, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2505, 2505, 2483, 2483, 2483,
      2498, 2498, 2475, 2475, 2475, 2475, 2505, 2475, 2475, 2475,       2506, 2506, 2483, 2483, 2483, 2483, 2513, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2506, 2475, 2499, 2499, 2507, 2475, 2475, 2475,       2483, 2483, 2514, 2483, 2507, 2507, 2515, 2483, 2483, 2483,
      2508, 2509, 2475, 2475, 2475, 2475, 2475, 2500, 2500, 2475,       2516, 2517, 2483, 2483, 2483, 2483, 2483, 2483, 2508, 2508,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
   
      2475, 2475, 2475, 2501, 2501, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2509, 2509, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2502, 2502, 2475, 2510,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2510, 2510, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2511, 2475, 2512,       2518, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2519, 2483,
      2475, 2475, 2513, 2475, 2475, 2475, 2475, 2514, 2475, 2475,       2520, 2483, 2483, 2521, 2483, 2483, 2483, 2483, 2522, 2483,
      2475, 2515, 2475, 2475, 2503, 2503, 2475, 2475, 2475, 2475,       2483, 2483, 2523, 2483, 2483, 2511, 2511, 2483, 2483, 2483,
      2475, 2516, 2475, 2475, 2475, 2475, 2475, 2475, 2517, 2477,       2483, 2483, 2524, 2483, 2483, 2483, 2483, 2483, 2483, 2525,
      2478, 2475, 2504, 2504, 2475, 2475, 2475, 2518, 2475, 2475,       2485, 2486, 2483, 2512, 2512, 2483, 2483, 2483, 2526, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2519, 2475, 2475, 2520, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2527, 2483, 2483, 2528, 2483, 2483, 2483,
   
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2521, 2475, 2522,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2529, 2483,
      2523, 2475, 2475, 2475, 2475, 2505, 2505, 2475, 2475, 2475,       2530, 2531, 2483, 2483, 2483, 2483, 2513, 2513, 2483, 2483,
      2524, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2532, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2506, 2506, 2475, 2507, 2507, 2475, 2475,       2483, 2483, 2483, 2483, 2514, 2514, 2483, 2515, 2515, 2483,
      2475, 2508, 2508, 2509, 2509, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2516, 2516, 2517, 2517, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2525, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2533, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2510,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2510, 2475, 2475, 2475, 2475, 2526, 2475, 2475, 2511, 2511,       2483, 2518, 2518, 2483, 2483, 2483, 2483, 2534, 2483, 2483,
   
      2475, 2512, 2512, 2475, 2475, 2513, 2513, 2475, 2475, 2475,       2519, 2519, 2483, 2520, 2520, 2483, 2483, 2521, 2521, 2483,
      2475, 2514, 2514, 2475, 2475, 2475, 2515, 2515, 2475, 2475,       2483, 2483, 2483, 2522, 2522, 2483, 2483, 2483, 2523, 2523,
      2475, 2527, 2528, 2529, 2475, 2516, 2516, 2475, 2475, 2475,       2483, 2483, 2483, 2535, 2536, 2537, 2483, 2524, 2524, 2483,
      2475, 2475, 2530, 2475, 2517, 2517, 2477, 2470, 2478, 2475,       2483, 2483, 2483, 2483, 2538, 2483, 2525, 2525, 2485, 2478,
      2475, 2475, 2531, 2518, 2518, 2475, 2475, 2475, 2475, 2532,       2486, 2483, 2483, 2483, 2539, 2526, 2526, 2483, 2483, 2483,
      2475, 2475, 2475, 2533, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2540, 2483, 2483, 2483, 2541, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2519,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2519, 2475, 2475, 2520, 2520, 2475, 2475, 2475, 2475, 2475,       2483, 2527, 2527, 2483, 2483, 2528, 2528, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2521, 2521, 2534, 2522, 2522, 2523, 2523, 2475, 2475,       2483, 2483, 2483, 2529, 2529, 2542, 2530, 2530, 2531, 2531,
   
      2475, 2475, 2475, 2535, 2475, 2524, 2524, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2543, 2483, 2532, 2532, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2536, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2537, 2475, 2475, 2538, 2475, 2475, 2475,       2544, 2483, 2483, 2483, 2483, 2545, 2483, 2483, 2483, 2546,
      2539, 2540, 2541, 2542, 2475, 2475, 2543, 2475, 2475, 2544,       2483, 2483, 2483, 2547, 2548, 2549, 2550, 2483, 2483, 2551,
      2545, 2475, 2475, 2475, 2525, 2525, 2546, 2475, 2475, 2475,       2483, 2483, 2552, 2553, 2483, 2483, 2483, 2533, 2533, 2554,
      2475, 2475, 2475, 2475, 2547, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2555, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2526, 2526, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2548, 2475, 2475, 2475, 2475, 2475, 2475, 2549, 2550,       2534, 2534, 2483, 2483, 2556, 2483, 2483, 2483, 2483, 2483,
   
      2475, 2475, 2475, 2475, 2527, 2527, 2528, 2528, 2529, 2529,       2483, 2557, 2558, 2483, 2483, 2483, 2483, 2535, 2535, 2536,
      2475, 2475, 2475, 2551, 2552, 2475, 2530, 2530, 2475, 2478,       2536, 2537, 2537, 2483, 2483, 2483, 2559, 2560, 2483, 2538,
      2470, 2475, 2475, 2475, 2531, 2531, 2475, 2475, 2475, 2475,       2538, 2483, 2486, 2478, 2483, 2483, 2483, 2539, 2539, 2483,
      2532, 2532, 2475, 2475, 2475, 2533, 2533, 2475, 2475, 2475,       2483, 2483, 2483, 2540, 2540, 2483, 2483, 2483, 2541, 2541,
      2475, 2553, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2554,       2483, 2483, 2483, 2483, 2561, 2483, 2483, 2483, 2483, 2483,
      2475, 2555, 2475, 2556, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2562, 2483, 2563, 2483, 2564, 2483, 2483, 2483,
      2557, 2475, 2558, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2565, 2483, 2566, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2534, 2534, 2559, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2542,
      2475, 2475, 2475, 2535, 2535, 2475, 2475, 2560, 2475, 2475,       2542, 2567, 2483, 2483, 2483, 2483, 2543, 2543, 2483, 2483,
      2561, 2475, 2475, 2562, 2563, 2475, 2475, 2475, 2475, 2564,       2568, 2483, 2483, 2569, 2483, 2483, 2570, 2571, 2483, 2483,
   
      2475, 2475, 2475, 2475, 2565, 2475, 2475, 2536, 2536, 2566,       2483, 2483, 2572, 2483, 2483, 2483, 2483, 2573, 2483, 2483,
      2475, 2567, 2475, 2568, 2537, 2537, 2475, 2569, 2538, 2538,       2544, 2544, 2574, 2483, 2575, 2483, 2576, 2545, 2545, 2483,
      2475, 2475, 2475, 2539, 2539, 2540, 2540, 2541, 2541, 2542,       2483, 2577, 2546, 2546, 2483, 2483, 2483, 2547, 2547, 2548,
      2542, 2475, 2475, 2543, 2543, 2475, 2570, 2544, 2544, 2545,       2548, 2549, 2549, 2550, 2550, 2483, 2483, 2551, 2551, 2483,
      2545, 2475, 2571, 2475, 2546, 2546, 2475, 2475, 2475, 2475,       2578, 2552, 2552, 2553, 2553, 2483, 2579, 2483, 2554, 2554,
      2475, 2475, 2572, 2547, 2547, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2580, 2555, 2555, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2573, 2475, 2475, 2548, 2548,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2581,
      2475, 2475, 2475, 2475, 2475, 2475, 2549, 2549, 2550, 2550,       2483, 2483, 2556, 2556, 2483, 2483, 2483, 2483, 2483, 2483,
   
      2475, 2574, 2575, 2475, 2475, 2475, 2576, 2551, 2551, 2552,       2557, 2557, 2558, 2558, 2483, 2582, 2583, 2483, 2483, 2483,
      2552, 2475, 2475, 2475, 2475, 2577, 2475, 2475, 2475, 2475,       2584, 2559, 2559, 2560, 2560, 2483, 2483, 2483, 2483, 2585,
      2475, 2578, 2475, 2475, 2475, 2475, 2579, 2553, 2553, 2475,       2483, 2483, 2483, 2483, 2483, 2586, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2587, 2561, 2561, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2554, 2554, 2475, 2555, 2555, 2475, 2556, 2556, 2580,       2483, 2483, 2483, 2483, 2483, 2562, 2562, 2483, 2563, 2563,
      2581, 2475, 2475, 2475, 2582, 2583, 2583, 2475, 2584, 2584,       2483, 2564, 2564, 2588, 2589, 2483, 2483, 2483, 2590, 2591,
      2475, 2585, 2475, 2475, 2475, 2475, 2475, 2475, 2586, 2475,       2591, 2483, 2592, 2592, 2483, 2593, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2587, 2587, 2475, 2588, 2475, 2475,       2483, 2483, 2594, 2483, 2483, 2483, 2483, 2483, 2595, 2595,
      2475, 2475, 2589, 2470, 2590, 2475, 2591, 2591, 2475, 2475,       2483, 2596, 2483, 2483, 2483, 2483, 2597, 2478, 2598, 2483,
      2592, 2592, 2593, 2593, 2475, 2594, 2475, 2475, 2595, 2595,       2599, 2599, 2483, 2483, 2600, 2600, 2601, 2601, 2483, 2602,
   
      2596, 2475, 2475, 2475, 2597, 2597, 2475, 2598, 2599, 2599,       2483, 2483, 2603, 2603, 2604, 2483, 2483, 2483, 2605, 2605,
      2475, 2600, 2600, 2475, 2601, 2601, 2475, 2602, 2602, 2603,       2483, 2606, 2607, 2607, 2483, 2608, 2608, 2483, 2609, 2609,
      2475, 2475, 2604, 2605, 2606, 2475, 2607, 2607, 2475, 2571,       2483, 2483, 2610, 2610, 2611, 2483, 2483, 2612, 2613, 2614,
      2571, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2572, 2572,       2483, 2615, 2615, 2483, 2579, 2579, 2483, 2483, 2483, 2483,
      2608, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2580, 2580, 2616, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2573, 2573, 2475, 2475, 2609, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2581, 2581,
      2610, 2475, 2475, 2611, 2574, 2574, 2575, 2575, 2475, 2475,       2483, 2483, 2617, 2483, 2483, 2618, 2483, 2483, 2619, 2582,
      2475, 2576, 2576, 2475, 2475, 2475, 2612, 2577, 2577, 2475,       2582, 2583, 2583, 2483, 2483, 2483, 2584, 2584, 2483, 2483,
   
      2613, 2614, 2475, 2615, 2616, 2616, 2475, 2475, 2617, 2475,       2483, 2620, 2585, 2585, 2483, 2621, 2622, 2483, 2623, 2624,
      2618, 2618, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2624, 2483, 2483, 2625, 2483, 2626, 2626, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2580, 2580, 2581, 2581,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2582, 2582, 2475, 2475, 2585, 2585, 2475,       2483, 2588, 2588, 2589, 2589, 2483, 2483, 2483, 2590, 2590,
      2475, 2475, 2475, 2619, 2475, 2475, 2586, 2586, 2475, 2475,       2483, 2483, 2593, 2593, 2483, 2483, 2483, 2483, 2627, 2483,
      2620, 2475, 2475, 2621, 2475, 2475, 2475, 2475, 2588, 2588,       2483, 2594, 2594, 2483, 2483, 2628, 2483, 2483, 2629, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2622, 2623, 2590, 2590,       2483, 2483, 2483, 2596, 2596, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2594, 2594, 2475, 2624, 2596, 2596,       2483, 2630, 2631, 2598, 2598, 2483, 2483, 2483, 2483, 2602,
      2625, 2475, 2475, 2626, 2598, 2598, 2475, 2475, 2627, 2603,       2602, 2483, 2632, 2604, 2604, 2633, 2483, 2483, 2634, 2606,
      2603, 2475, 2628, 2604, 2604, 2605, 2605, 2606, 2606, 2475,       2606, 2483, 2483, 2635, 2636, 2611, 2611, 2483, 2637, 2612,
   
      2475, 2475, 2475, 2629, 2475, 2475, 2475, 2475, 2608, 2608,       2612, 2613, 2613, 2614, 2614, 2483, 2483, 2483, 2483, 2638,
      2475, 2475, 2475, 2475, 2475, 2630, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2616, 2616, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2639, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2609, 2609, 2475, 2631, 2610, 2610,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2632, 2611, 2611, 2475, 2475, 2633, 2634, 2635, 2475,       2617, 2617, 2483, 2640, 2618, 2618, 2483, 2641, 2619, 2619,
      2612, 2612, 2475, 2613, 2613, 2614, 2614, 2475, 2615, 2615,       2483, 2483, 2642, 2643, 2644, 2483, 2620, 2620, 2483, 2621,
      2475, 2475, 2617, 2617, 2475, 2475, 2475, 2636, 2475, 2475,       2621, 2622, 2622, 2483, 2623, 2623, 2483, 2483, 2625, 2625,
      2475, 2637, 2475, 2475, 2475, 2475, 2475, 2475, 2638, 2475,       2483, 2483, 2483, 2645, 2483, 2483, 2483, 2646, 2483, 2483,
      2639, 2475, 2475, 2475, 2640, 2475, 2475, 2641, 2475, 2642,       2483, 2483, 2483, 2483, 2647, 2483, 2648, 2483, 2483, 2483,
   
      2475, 2619, 2619, 2475, 2475, 2475, 2475, 2475, 2620, 2620,       2649, 2483, 2483, 2650, 2483, 2651, 2483, 2627, 2627, 2483,
      2475, 2475, 2643, 2475, 2621, 2621, 2475, 2475, 2644, 2475,       2483, 2483, 2483, 2483, 2628, 2628, 2483, 2483, 2652, 2483,
      2475, 2475, 2645, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2629, 2629, 2483, 2483, 2653, 2483, 2483, 2483, 2654, 2483,
      2622, 2622, 2623, 2623, 2646, 2475, 2647, 2475, 2648, 2624,       2483, 2483, 2483, 2483, 2483, 2483, 2630, 2630, 2631, 2631,
      2624, 2625, 2625, 2475, 2475, 2626, 2626, 2475, 2475, 2627,       2655, 2483, 2656, 2483, 2657, 2632, 2632, 2633, 2633, 2483,
      2627, 2475, 2628, 2628, 2475, 2475, 2649, 2650, 2629, 2629,       2483, 2634, 2634, 2483, 2483, 2635, 2635, 2636, 2636, 2483,
      2475, 2475, 2651, 2475, 2652, 2475, 2653, 2475, 2475, 2475,       2637, 2637, 2483, 2483, 2658, 2659, 2638, 2638, 2483, 2483,
      2630, 2630, 2654, 2475, 2475, 2475, 2655, 2475, 2475, 2475,       2660, 2483, 2661, 2483, 2662, 2483, 2483, 2483, 2639, 2639,
      2475, 2475, 2475, 2475, 2656, 2657, 2475, 2475, 2475, 2475,       2663, 2483, 2483, 2483, 2664, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2658, 2475, 2475, 2475, 2475,       2483, 2483, 2665, 2666, 2483, 2483, 2483, 2483, 2483, 2483,
   
      2659, 2631, 2631, 2660, 2632, 2632, 2475, 2475, 2633, 2633,       2483, 2483, 2483, 2667, 2483, 2483, 2483, 2483, 2668, 2669,
      2634, 2634, 2635, 2635, 2475, 2475, 2475, 2661, 2475, 2475,       2669, 2670, 2671, 2671, 2483, 2483, 2642, 2642, 2643, 2643,
      2475, 2475, 2475, 2636, 2636, 2662, 2475, 2663, 2637, 2637,       2644, 2644, 2483, 2483, 2483, 2672, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2664, 2475, 2665, 2638, 2638, 2475, 2639,       2483, 2645, 2645, 2673, 2483, 2674, 2646, 2646, 2483, 2483,
      2639, 2666, 2475, 2475, 2640, 2640, 2475, 2475, 2667, 2475,       2483, 2675, 2483, 2676, 2647, 2647, 2483, 2648, 2648, 2677,
      2668, 2668, 2475, 2475, 2669, 2669, 2475, 2475, 2475, 2475,       2483, 2483, 2678, 2678, 2483, 2483, 2679, 2483, 2680, 2680,
      2670, 2475, 2475, 2475, 2475, 2475, 2643, 2643, 2475, 2475,       2483, 2483, 2681, 2681, 2483, 2483, 2483, 2483, 2682, 2483,
      2475, 2475, 2644, 2644, 2475, 2475, 2475, 2475, 2645, 2645,       2483, 2483, 2483, 2483, 2683, 2683, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2646, 2646, 2671,       2653, 2653, 2483, 2483, 2483, 2483, 2654, 2654, 2483, 2483,
      2647, 2647, 2672, 2648, 2648, 2673, 2475, 2475, 2674, 2475,       2483, 2483, 2483, 2483, 2483, 2655, 2655, 2684, 2656, 2656,
   
      2475, 2475, 2649, 2649, 2650, 2650, 2475, 2675, 2651, 2651,       2685, 2657, 2657, 2686, 2483, 2483, 2687, 2483, 2483, 2483,
      2475, 2652, 2652, 2475, 2653, 2653, 2475, 2475, 2475, 2654,       2658, 2658, 2659, 2659, 2483, 2688, 2660, 2660, 2483, 2661,
      2654, 2676, 2475, 2677, 2655, 2655, 2475, 2475, 2678, 2475,       2661, 2483, 2662, 2662, 2483, 2483, 2483, 2663, 2663, 2689,
      2475, 2679, 2475, 2656, 2656, 2657, 2657, 2475, 2475, 2475,       2483, 2690, 2664, 2664, 2483, 2483, 2691, 2483, 2483, 2692,
      2475, 2475, 2680, 2475, 2475, 2475, 2658, 2658, 2475, 2475,       2483, 2665, 2665, 2666, 2666, 2483, 2483, 2483, 2483, 2483,
      2681, 2475, 2682, 2682, 2660, 2660, 2683, 2475, 2475, 2475,       2693, 2483, 2483, 2483, 2667, 2667, 2483, 2483, 2694, 2483,
      2475, 2661, 2661, 2475, 2475, 2684, 2475, 2475, 2662, 2662,       2695, 2695, 2670, 2670, 2696, 2483, 2483, 2483, 2483, 2672,
      2685, 2663, 2663, 2475, 2475, 2686, 2664, 2664, 2475, 2665,       2672, 2483, 2483, 2697, 2483, 2483, 2673, 2673, 2698, 2674,
      2665, 2475, 2666, 2666, 2475, 2687, 2475, 2475, 2667, 2667,       2674, 2483, 2483, 2699, 2675, 2675, 2483, 2676, 2676, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2670, 2670,       2677, 2677, 2483, 2700, 2483, 2483, 2679, 2679, 2483, 2483,
   
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2682, 2682, 2483, 2483,
      2475, 2475, 2688, 2475, 2689, 2690, 2475, 2691, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2671, 2671, 2672, 2672, 2673, 2673, 2692, 2475,       2701, 2483, 2702, 2703, 2483, 2704, 2483, 2483, 2483, 2483,
      2674, 2674, 2475, 2693, 2475, 2694, 2675, 2675, 2695, 2475,       2684, 2684, 2685, 2685, 2686, 2686, 2705, 2483, 2687, 2687,
      2475, 2475, 2696, 2676, 2676, 2475, 2677, 2677, 2475, 2475,       2483, 2706, 2483, 2707, 2688, 2688, 2708, 2483, 2483, 2483,
      2678, 2678, 2475, 2475, 2679, 2679, 2475, 2475, 2475, 2475,       2709, 2689, 2689, 2483, 2690, 2690, 2483, 2483, 2691, 2691,
      2475, 2475, 2680, 2680, 2475, 2475, 2697, 2475, 2475, 2681,       2483, 2483, 2692, 2692, 2483, 2483, 2483, 2483, 2483, 2483,
      2681, 2698, 2683, 2683, 2475, 2475, 2475, 2475, 2699, 2700,       2693, 2693, 2483, 2483, 2710, 2483, 2483, 2694, 2694, 2711,
      2684, 2684, 2475, 2701, 2685, 2685, 2702, 2703, 2686, 2686,       2696, 2696, 2483, 2483, 2483, 2483, 2712, 2713, 2697, 2697,
      2704, 2475, 2475, 2687, 2687, 2475, 2475, 2475, 2475, 2475,       2483, 2714, 2698, 2698, 2715, 2716, 2699, 2699, 2717, 2483,
   
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2700, 2700, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2688, 2688, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2689, 2689, 2690, 2690, 2705, 2691, 2691, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2701, 2701, 2483, 2483, 2702,
      2706, 2475, 2692, 2692, 2707, 2475, 2693, 2693, 2708, 2694,       2702, 2703, 2703, 2718, 2704, 2704, 2483, 2483, 2719, 2483,
      2694, 2695, 2695, 2475, 2709, 2475, 2696, 2696, 2475, 2475,       2705, 2705, 2720, 2483, 2706, 2706, 2721, 2707, 2707, 2708,
      2475, 2710, 2711, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2708, 2483, 2722, 2483, 2709, 2709, 2483, 2483, 2483, 2723,
      2475, 2697, 2697, 2475, 2475, 2698, 2698, 2475, 2475, 2475,       2724, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2710,
      2712, 2699, 2699, 2700, 2700, 2713, 2701, 2701, 2702, 2702,       2710, 2483, 2483, 2711, 2711, 2483, 2483, 2483, 2725, 2712,
      2703, 2703, 2704, 2704, 2475, 2475, 2475, 2475, 2475, 2475,       2712, 2713, 2713, 2726, 2714, 2714, 2715, 2715, 2716, 2716,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2717, 2717, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
   
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2705, 2705, 2475, 2714, 2706, 2706, 2475, 2707, 2707, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2718, 2718,
      2708, 2708, 2715, 2709, 2709, 2716, 2475, 2475, 2475, 2710,       2483, 2727, 2719, 2719, 2483, 2720, 2720, 2483, 2721, 2721,
      2710, 2711, 2711, 2475, 2717, 2718, 2719, 2720, 2475, 2721,       2728, 2722, 2722, 2729, 2483, 2483, 2483, 2723, 2723, 2724,
      2722, 2475, 2475, 2475, 2723, 2475, 2712, 2712, 2713, 2713,       2724, 2483, 2730, 2731, 2732, 2733, 2483, 2734, 2735, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2736, 2483, 2725, 2725, 2726, 2726, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2724, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2475, 2475, 2475, 2475, 2475, 2725, 2714, 2714, 2726,       2483, 2483, 2483, 2737, 2483, 2483, 2483, 2483, 2483, 2483,
      2475, 2715, 2715, 2716, 2716, 2475, 2727, 2475, 2475, 2717,       2483, 2483, 2483, 2483, 2738, 2727, 2727, 2739, 2483, 2728,
      2717, 2718, 2718, 2719, 2719, 2720, 2720, 2475, 2721, 2721,       2728, 2729, 2729, 2483, 2740, 2483, 2483, 2730, 2730, 2731,
   
      2722, 2722, 2475, 2475, 2475, 2723, 2723, 2475, 2475, 2728,       2731, 2732, 2732, 2733, 2733, 2483, 2734, 2734, 2735, 2735,
      2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2475, 2729,       2483, 2483, 2483, 2736, 2736, 2483, 2483, 2741, 2483, 2483,
      2475, 2475, 2730, 2724, 2724, 2475, 2731, 2475, 2475, 2475,       2483, 2483, 2483, 2483, 2483, 2483, 2483, 2742, 2483, 2483,
      2732, 2475, 2475, 2475, 2475, 2725, 2725, 2726, 2726, 2733,       2743, 2737, 2737, 2483, 2744, 2483, 2483, 2483, 2745, 2483,
      2475, 2727, 2727, 2475, 2475, 2475, 2475, 2475, 2475, 2475,       2483, 2483, 2483, 2738, 2738, 2739, 2739, 2746, 2483, 2740,
      2475, 2728, 2728, 2475, 2734, 2475, 2475, 2475, 2735, 2475,       2740, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2483, 2741,
      2736, 2737, 2729, 2729, 2475, 2475, 2730, 2730, 2738, 2731,       2741, 2483, 2747, 2483, 2483, 2483, 2748, 2483, 2749, 2750,
      2731, 2475, 2739, 2740, 2732, 2732, 2475, 2741, 2475, 2475,       2742, 2742, 2483, 2483, 2743, 2743, 2751, 2744, 2744, 2483,
      2733, 2733, 2475, 2475, 2742, 2475, 2743, 2744, 2745, 2746,       2752, 2753, 2745, 2745, 2483, 2754, 2483, 2483, 2746, 2746,
      2475, 2747, 2734, 2734, 2475, 2748, 2749, 2735, 2735, 2750,       2483, 2483, 2755, 2483, 2756, 2757, 2758, 2759, 2483, 2760,
   
      2736, 2736, 2737, 2737, 2475, 2751, 2738, 2738, 2752, 2739,       2747, 2747, 2483, 2761, 2762, 2748, 2748, 2763, 2749, 2749,
      2739, 2740, 2740, 2753, 2741, 2741, 2475, 2475, 2754, 2755,       2750, 2750, 2483, 2764, 2751, 2751, 2765, 2752, 2752, 2753,
      2742, 2742, 2475, 2743, 2743, 2744, 2744, 2745, 2745, 2746,       2753, 2766, 2754, 2754, 2483, 2483, 2767, 2768, 2755, 2755,
      2746, 2475, 2747, 2747, 2756, 2748, 2748, 2749, 2749, 2750,       2483, 2756, 2756, 2757, 2757, 2758, 2758, 2759, 2759, 2483,
      2750, 2757, 2751, 2751, 2752, 2752, 2753, 2753, 2475, 2758,       2760, 2760, 2769, 2761, 2761, 2762, 2762, 2763, 2763, 2770,
      2754, 2754, 2755, 2755, 2759, 2760, 2756, 2756, 2757, 2757,       2764, 2764, 2765, 2765, 2766, 2766, 2483, 2771, 2767, 2767,
      2761, 2758, 2758, 2759, 2759, 2760, 2760, 2761, 2761,    0,       2768, 2768, 2772, 2773, 2769, 2769, 2770, 2770, 2774, 2771,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2771, 2772, 2772, 2773, 2773, 2774, 2774,    0, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
   
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
   
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
   
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
        2478, 2478, 2478, 2478
     } ;      } ;
   
 static yyconst flex_int16_t yy_nxt[2826] =  static yyconst short int yy_nxt[2839] =
     {   0,      {   0,
      2470,   48,   11,   12,   49,   13,   10,   10,   11,   12,       2478,   48,   11,   12,   49,   13,   10,   10,   11,   12,
        10,   13,   10,   14,   15,   16,   17,   18,   19,   20,         10,   13,   10,   14,   15,   16,   17,   18,   19,   20,
        21,   22,   10,   23,   24,   25,   26,   27,   28,   10,         21,   22,   10,   23,   24,   25,   26,   27,   28,   10,
        29,   30,   31,   32,   33,   34,   35,   36,   10,   11,         29,   30,   31,   32,   33,   34,   35,   36,   10,   11,
        11,   11,   38,   38,   41,   11,   78,   11,   41,   39,         11,   11,   38,   38,   41,   11,   78,   11,   41,   39,
        44,   57,   11,   79,   42,   44,   50,  127,   58,   80,         44,   57,   11,   79,   42,   44,   50,  127,   58,   80,
        65,   59,  128,  139,   66,   51,  140,   52,   67,   53,         65,   59,  128,  139,   66,   51,  140,   52,   67,   53,
        74,   54,  808,   55,   56,   60,   95,   81,  129,  111,         74,   54,  809,   55,   56,   60,   95,   81,  129,  111,
        68,   75,   61,  112,   76,   82,   62,   77,  148,   63,         68,   75,   61,  112,   76,   82,   62,   77,  148,   63,
        96,  102,   83,   98,   97,   64,   69,   99,  130,  113,         96,  102,   83,   98,   97,   64,   69,   99,  130,  113,
   
Line 1313
 
Line 1240
       157,  161,   87,   88,   90,  162,  163,  637,   91,  167,        157,  161,   87,   88,   90,  162,  163,  637,   91,  167,
       168,  210,   92,  158,  190,  200,  191,  286,   93,  201,        168,  210,   92,  158,  190,  200,  191,  286,   93,  201,
       223,  225,  204,  231,   94,  106,  205,  232,  202,  107,        223,  225,  204,  231,   94,  106,  205,  232,  202,  107,
       206,  224,  203,  108,  226,  809,  287,  233,  235,  109,        206,  224,  203,  108,  226,  810,  287,  233,  235,  109,
       238,  257,  110,  114,  239,  115,  810,  254,  236,  258,        238,  257,  110,  114,  239,  115,  811,  254,  236,  258,
       811,  116,  117,  118,  255,  237,  119,  240,  293,  294,        812,  116,  117,  118,  255,  237,  119,  240,  293,  294,
       120,  121,  122,  259,  139,  247,  123,  140,  248,  307,        120,  121,  122,  259,  139,  247,  123,  140,  248,  307,
   
       260,  143,  124,  249,  144,  125,  146,  261,  289,  147,        260,  143,  124,  249,  144,  125,  146,  261,  289,  147,
Line 1323
 
Line 1250
       325,  353,  354,  315,  311,  326,  642,  291,  608,  327,        325,  353,  354,  315,  311,  326,  642,  291,  608,  327,
       298,  347,  348,  292,  328,  329,  330,  376,  392,  331,        298,  347,  348,  292,  328,  329,  330,  376,  392,  331,
       377,  332,  393,  349,  394,  333,  424,  425,  609,  466,        377,  332,  393,  349,  394,  333,  424,  425,  609,  466,
       304,  305,  492,  334,  335,  498,  336,  358,  812,  501,        304,  305,  492,  334,  335,  498,  336,  358,  813,  501,
       359,  493,  360,  467,  508,  509,  518,  519,  499,  361,        359,  493,  360,  467,  508,  509,  518,  519,  499,  361,
       353,  354,  362,  502,  532,  363,  435,  521,  436,  437,        353,  354,  362,  502,  532,  363,  435,  521,  436,  437,
       526,  530,  522,  533,  438,  813,  439,  553,  814,  531,        526,  530,  522,  533,  438,  814,  439,  553,  815,  531,
       638,  440,  691,  441,  442,  554,  443,  527,  639,  669,        638,  440,  692,  441,  442,  554,  443,  527,  639,  669,
   
       692,  670,  671,  508,  509,  518,  519,  684,  702,  711,        693,  670,  671,  508,  509,  518,  519,  703,  712,  770,
       720,  733,  712,  672,  769,  721,  734,  815,  817,  818,        816,  713,  721,  672,  684,  685,  734,  722,  818,  819,
       685,  703,  819,  820,  686,  687,  713,  821,  822,  823,        704,  735,  820,  821,  822,  714,  823,  824,  686,  771,
       824,  825,  826,  827,  770,  802,  828,  803,  804,  829,        825,  826,  687,  688,  803,  827,  804,  805,  828,  829,
       830,  831,  832,  833,  834,  835,  836,  837,  838,  840,        830,  831,  832,  833,  834,  835,  836,  837,  838,  806,
       805,  841,  842,  806,  807,  843,  845,  846,  839,  676,        839,  841,  807,  808,  842,  843,  844,  846,  847,  676,
       848,  849,  850,  851,  853,  855,  856,  857,  858,  860,        840,  849,  850,  851,  852,  854,  856,  857,  858,  859,
       862,  689,  863,  864,  865,  866,  859,  861,  867,  868,        860,  862,  864,  690,  865,  866,  867,  868,  861,  863,
       869,  870,  871,  872,  873,  874,  875,  876,  705,  877,        869,  870,  871,  872,  873,  874,  875,  876,  877,  878,
       878,  879,  880,  881,  882,  883,  884,  885,  886,  887,        706,  879,  880,  881,  882,  883,  884,  885,  886,  887,
   
       718,  888,  891,  892,  893,  894,  895,  896,  897,  898,        888,  889,  719,  890,  893,  894,  895,  896,  897,  898,
       889,  900,  901,  903,  904,  905,  907,  908,  909,  910,        899,  900,  891,  902,  903,  905,  906,  907,  909,  910,
       911,  913,  914,  915,  916,  918,  919,  920,  746,  921,        911,  912,  913,  915,  916,  917,  918,  920,  921,  922,
       922,  923,  924,  925,  927,  928,  929,  931,  932,  933,        747,  923,  924,  925,  926,  927,  929,  930,  931,  933,
       934,  936,  937,  938,  930,  939,  940,  764,  941,  942,        934,  935,  936,  938,  939,  940,  932,  941,  942,  765,
       943,  945,  946,  947,  948,  949,  950,  951,  952,  953,        943,  944,  945,  947,  948,  949,  950,  951,  952,  953,
       954,  955,  956,  957,  958,  959,  960,  961,  962,  963,        954,  955,  956,  957,  958,  959,  960,  961,  962,  963,
       964,  965,  966,  967,  968,  969,  971,  972,  973,  975,        964,  965,  966,  967,  968,  969,  970,  971,  973,  974,
       976,  977,  978,  979,  980,  981,  983,  984,  986,  982,        975,  977,  978,  979,  980,  981,  982,  983,  985,  986,
       987,  989,  990,  993,  994,  996,  998,  999, 1000, 1001,        988,  984,  989,  991,  992,  995,  996,  998, 1000, 1001,
   
       985,  991, 1002,  817, 1003, 1004, 1005, 1007, 1008,  988,       1002, 1003,  987,  993, 1004,  818, 1005, 1006, 1007, 1009,
      1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018,       1010,  990, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018,
      1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028,       1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028,
      1029,  845, 1030,  848, 1031, 1032, 1033,  853,  855, 1034,       1029, 1030, 1031,  846, 1032,  849, 1033, 1034, 1035,  854,
      1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044,        856, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044,
      1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054,       1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054,
      1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065,       1055, 1056, 1057, 1059, 1060, 1061, 1062, 1063, 1064, 1065,
      1066, 1067, 1068,  891, 1069, 1070, 1087, 1089, 1090, 1091,       1066, 1067, 1068, 1069, 1070, 1071,  893, 1072, 1073, 1090,
       900, 1092,  903, 1093, 1071, 1072, 1073, 1074, 1075, 1076,       1092, 1093, 1094,  902, 1095,  905, 1096, 1074, 1075, 1076,
      1077, 1078, 1079, 1080, 1094,  907, 1081, 1082, 1095, 1096,       1077, 1078, 1079, 1080, 1081, 1082, 1083, 1097,  909, 1084,
   
      1083, 1097, 1098, 1084, 1085,  913, 1099, 1086, 1100, 1101,       1085, 1098, 1099, 1086, 1100, 1101, 1087, 1088,  915, 1102,
       918, 1102, 1103, 1104, 1106, 1108, 1110, 1111,  927, 1112,       1089, 1103, 1104,  920, 1105, 1106, 1107, 1109, 1111, 1113,
      1113, 1114, 1115, 1116, 1118, 1119,  936,  937,  938, 1120,       1114,  929, 1115, 1116, 1117, 1118, 1119, 1121, 1122,  938,
      1121, 1122, 1123, 1124, 1126,  945, 1127, 1128, 1129, 1130,        939,  940, 1123, 1124, 1125, 1126, 1127, 1129,  947, 1130,
      1132, 1133, 1134, 1135, 1137, 1138, 1139, 1140, 1141, 1142,       1131, 1132, 1133, 1135, 1136, 1137, 1138, 1140, 1141, 1142,
      1143, 1144, 1145, 1150, 1151, 1152, 1153, 1154, 1146, 1155,       1143, 1144, 1145, 1146, 1147, 1148, 1153, 1154, 1155, 1156,
      1156, 1157,  971, 1158, 1159,  975, 1160, 1161, 1147, 1148,       1157, 1149, 1158, 1159, 1160,  973, 1161, 1162,  977, 1163,
      1163, 1164, 1162, 1149, 1165, 1166, 1167, 1168, 1169, 1170,       1164, 1150, 1151, 1166, 1167, 1165, 1152, 1168, 1169, 1170,
      1171, 1172, 1173, 1174, 1175, 1176,  993, 1178,  996,  998,       1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179,  995,
      1179, 1180, 1181, 1182, 1183, 1185, 1186, 1007, 1187, 1188,       1181,  998, 1000, 1182, 1183, 1184, 1185, 1186, 1188, 1189,
   
      1189, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198,       1009, 1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198,
      1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1209,       1199, 1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208,
      1210, 1211, 1212, 1214, 1216, 1217, 1218, 1220, 1221, 1222,       1209, 1210, 1212, 1213, 1214, 1215, 1217, 1219, 1220, 1221,
      1223, 1225, 1227, 1229, 1231, 1232, 1233, 1235, 1236, 1237,       1222, 1224, 1225, 1226, 1227, 1229, 1231, 1233, 1235, 1236,
      1239, 1213, 1241, 1242, 1243, 1244, 1056, 1246, 1247, 1248,       1237, 1239, 1240, 1241, 1216, 1243, 1245, 1246, 1247, 1248,
      1249, 1250, 1251, 1252, 1253, 1255, 1256, 1257, 1258, 1259,       1059, 1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1259,
      1260, 1262, 1263, 1264, 1265, 1271, 1261, 1274, 1268, 1272,       1260, 1261, 1262, 1263, 1264, 1266, 1267, 1268, 1269, 1275,
      1276, 1266, 1269, 1273, 1275, 1277, 1278, 1279, 1267, 1280,       1265, 1278, 1272, 1276, 1280, 1270, 1273, 1277, 1279, 1281,
      1283, 1270, 1284, 1285, 1286, 1089, 1281, 1287, 1288, 1290,       1282, 1283, 1271, 1284, 1287, 1274, 1288, 1289, 1290, 1092,
      1291, 1292, 1293, 1282, 1294, 1295, 1296, 1298, 1300, 1301,       1285, 1291, 1292, 1294, 1295, 1296, 1297, 1286, 1298, 1299,
   
      1302, 1303, 1304, 1106, 1108, 1110, 1305, 1306, 1307, 1309,       1300, 1302, 1304, 1305, 1306, 1307, 1308, 1109, 1111, 1113,
      1311, 1312, 1118, 1313, 1120, 1121, 1314, 1315, 1316, 1126,       1309, 1310, 1311, 1313, 1315, 1316, 1121, 1317, 1123, 1124,
      1317, 1318, 1319, 1320, 1132, 1321, 1322, 1323, 1137, 1324,       1318, 1319, 1320, 1129, 1321, 1322, 1323, 1324, 1135, 1325,
      1325, 1326, 1327, 1329, 1330, 1331, 1332, 1333, 1334, 1337,       1326, 1327, 1140, 1328, 1329, 1330, 1331, 1333, 1334, 1335,
      1343, 1340, 1344, 1346, 1338, 1341, 1335, 1339, 1347, 1349,       1336, 1337, 1338, 1341, 1347, 1344, 1348, 1350, 1342, 1345,
      1350, 1351, 1336, 1352, 1353, 1354, 1355, 1357, 1358, 1360,       1339, 1343, 1351, 1353, 1354, 1355, 1340, 1356, 1357, 1358,
      1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1371,       1359, 1361, 1362, 1364, 1365, 1366, 1367, 1368, 1369, 1370,
      1372, 1373, 1374, 1370, 1178, 1376, 1377, 1378, 1379, 1380,       1371, 1372, 1373, 1375, 1376, 1377, 1378, 1374, 1181, 1380,
      1185, 1381, 1382, 1384, 1385, 1386, 1388, 1389, 1390, 1392,       1381, 1382, 1383, 1384, 1188, 1385, 1386, 1388, 1389, 1390,
      1394, 1395, 1396, 1397, 1398, 1400, 1401, 1402, 1403, 1404,       1392, 1393, 1394, 1396, 1398, 1399, 1400, 1401, 1402, 1404,
   
      1406, 1407, 1408, 1209, 1410, 1411, 1413, 1414, 1416, 1216,       1405, 1406, 1407, 1408, 1410, 1411, 1412, 1212, 1414, 1415,
      1417, 1419, 1220, 1420, 1422, 1423, 1225, 1227, 1421, 1229,       1417, 1418, 1420, 1219, 1421, 1422, 1424, 1224, 1425, 1427,
      1231, 1424, 1425, 1235, 1426, 1428, 1239, 1241, 1429, 1431,       1428, 1229, 1231, 1426, 1233, 1235, 1429, 1430, 1239, 1431,
      1432, 1246, 1433, 1434, 1435, 1436, 1437, 1438, 1440, 1255,       1433, 1243, 1245, 1434, 1436, 1437, 1250, 1438, 1439, 1440,
      1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450,       1441, 1442, 1443, 1445, 1259, 1446, 1447, 1448, 1449, 1450,
      1451, 1452, 1455, 1453, 1457, 1458, 1459, 1460, 1461, 1462,       1451, 1452, 1453, 1454, 1455, 1456, 1457, 1460, 1458, 1462,
      1454, 1463, 1464, 1465, 1466, 1467, 1468, 1456, 1469, 1470,       1463, 1464, 1465, 1466, 1467, 1459, 1468, 1469, 1470, 1471,
      1471, 1472, 1473, 1475, 1476, 1477, 1290, 1478, 1479, 1480,       1472, 1473, 1461, 1474, 1475, 1476, 1477, 1478, 1480, 1481,
      1481, 1482, 1483, 1298, 1300, 1484, 1486, 1488, 1489, 1490,       1482, 1294, 1483, 1484, 1485, 1486, 1487, 1488, 1302, 1304,
      1491, 1493, 1309, 1311, 1494, 1495, 1496, 1497, 1499, 1500,       1489, 1491, 1493, 1494, 1495, 1496, 1498, 1313, 1315, 1499,
   
      1501, 1502, 1503, 1504, 1506, 1507, 1508, 1509, 1510, 1512,       1500, 1501, 1502, 1504, 1505, 1506, 1507, 1508, 1509, 1511,
      1329, 1513, 1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521,       1512, 1513, 1514, 1515, 1517, 1333, 1518, 1519, 1520, 1521,
      1522, 1523, 1524, 1343, 1525, 1346, 1526, 1349, 1528, 1530,       1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1347, 1530,
      1531, 1532, 1533, 1535, 1357, 1536, 1360, 1537, 1539, 1540,       1350, 1531, 1353, 1533, 1535, 1536, 1537, 1538, 1540, 1361,
      1541, 1542, 1543, 1544, 1546, 1548, 1549, 1550, 1545, 1551,       1541, 1364, 1542, 1544, 1545, 1546, 1547, 1548, 1549, 1551,
      1553, 1554, 1557, 1376, 1552, 1558, 1555, 1560, 1561, 1567,       1553, 1554, 1555, 1550, 1556, 1558, 1559, 1562, 1380, 1557,
      1568, 1384, 1570, 1571, 1388, 1572, 1573, 1392, 1394, 1574,       1563, 1560, 1565, 1566, 1572, 1573, 1388, 1575, 1576, 1392,
      1576, 1577, 1578, 1400, 1556, 1562, 1580, 1581, 1582, 1583,       1577, 1578, 1396, 1398, 1579, 1581, 1582, 1583, 1404, 1561,
      1406, 1563, 1584, 1586, 1410, 1587, 1413, 1588, 1416, 1589,       1567, 1585, 1586, 1587, 1588, 1410, 1568, 1589, 1591, 1414,
      1419, 1564, 1565, 1591, 1592, 1593, 1566, 1595, 1597, 1599,       1592, 1417, 1593, 1420, 1594, 1595, 1569, 1570, 1424, 1597,
   
      1600, 1428, 1601, 1431, 1602, 1603, 1604, 1605, 1606, 1607,       1598, 1571, 1599, 1601, 1603, 1605, 1606, 1433, 1607, 1436,
      1608, 1440, 1610, 1611, 1612, 1613, 1614, 1615, 1616, 1617,       1608, 1609, 1610, 1611, 1612, 1613, 1614, 1445, 1616, 1617,
      1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627,       1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627,
      1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637,       1628, 1629, 1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637,
      1638, 1639, 1640, 1641, 1642, 1475, 1643, 1644, 1646, 1647,       1638, 1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647,
      1648, 1650, 1651, 1652, 1654, 1486, 1488, 1655, 1656, 1657,       1648, 1480, 1649, 1650, 1652, 1653, 1654, 1656, 1657, 1658,
      1493, 1658, 1659, 1660, 1662, 1499, 1663, 1665, 1667, 1668,       1660, 1491, 1493, 1661, 1662, 1663, 1498, 1664, 1665, 1666,
      1670, 1506, 1671, 1672, 1674, 1675, 1512, 1676, 1677, 1678,       1668, 1504, 1669, 1671, 1673, 1674, 1676, 1511, 1677, 1678,
      1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686, 1687, 1688,       1680, 1681, 1517, 1682, 1683, 1684, 1685, 1686, 1687, 1688,
      1689, 1528, 1530, 1690, 1691, 1692, 1535, 1693, 1694, 1539,       1689, 1690, 1691, 1692, 1693, 1694, 1695, 1533, 1535, 1696,
   
      1695, 1697, 1698, 1700, 1703, 1696, 1706, 1699, 1701, 1704,       1697, 1698, 1540, 1699, 1700, 1544, 1701, 1703, 1704, 1706,
      1705, 1548, 1707, 1708, 1710, 1711, 1712, 1713, 1716, 1717,       1709, 1702, 1712, 1705, 1707, 1710, 1711, 1553, 1713, 1714,
      1718, 1719, 1714, 1721, 1722, 1560, 1720, 1723, 1724, 1725,       1716, 1717, 1718, 1719, 1722, 1723, 1724, 1725, 1720, 1727,
      1726, 1727, 1729, 1732, 1734, 1570, 1730, 1735, 1736, 1728,       1728, 1565, 1726, 1729, 1730, 1731, 1732, 1733, 1735, 1738,
      1737, 1738, 1576, 1739, 1741, 1580, 1743, 1744, 1745, 1747,       1740, 1575, 1736, 1741, 1742, 1734, 1743, 1744, 1581, 1745,
      1586, 1748, 1749, 1751, 1591, 1752, 1754, 1595, 1597, 1599,       1747, 1585, 1749, 1750, 1751, 1753, 1591, 1754, 1755, 1757,
      1755, 1756, 1757, 1758, 1760, 1761, 1762, 1763, 1764, 1610,       1759, 1597, 1760, 1762, 1601, 1603, 1605, 1763, 1764, 1765,
      1765, 1767, 1768, 1769, 1770, 1772, 1773, 1774, 1775, 1776,       1766, 1768, 1769, 1770, 1771, 1772, 1616, 1773, 1775, 1776,
      1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1766, 1785,       1777, 1778, 1780, 1781, 1782, 1783, 1784, 1785, 1786, 1787,
      1786, 1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795,       1788, 1789, 1790, 1791, 1792, 1774, 1793, 1794, 1795, 1796,
   
      1796, 1797, 1798, 1799, 1800, 1646, 1801, 1803, 1650, 1804,       1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806,
      1806, 1654, 1807, 1808, 1810, 1812, 1814, 1815, 1662, 1816,       1807, 1808, 1652, 1809, 1811, 1656, 1812, 1814, 1660, 1815,
      1817, 1665, 1667, 1818, 1670, 1819, 1820, 1674, 1821, 1822,       1816, 1818, 1820, 1822, 1823, 1668, 1824, 1825, 1671, 1673,
      1823, 1825, 1826, 1827, 1828, 1830, 1831, 1832, 1833, 1834,       1826, 1676, 1827, 1828, 1680, 1829, 1830, 1831, 1833, 1834,
      1835, 1836, 1838, 1839, 1841, 1842, 1843, 1844, 1846, 1847,       1835, 1836, 1838, 1839, 1840, 1841, 1842, 1843, 1844, 1846,
      1848, 1849, 1852, 1853, 1854, 1856, 1850, 1857, 1858, 1703,       1847, 1849, 1850, 1851, 1852, 1854, 1855, 1856, 1857, 1860,
      1859, 1860, 1861, 1863, 1864, 1710, 1865, 1862, 1866, 1868,       1861, 1862, 1864, 1858, 1865, 1866, 1709, 1867, 1868, 1869,
      1869, 1870, 1716, 1871, 1872, 1874, 1875, 1876, 1877, 1878,       1871, 1872, 1716, 1873, 1870, 1874, 1876, 1877, 1878, 1722,
      1880, 1881, 1882, 1883, 1884, 1885, 1886, 1887, 1732, 1734,       1879, 1880, 1882, 1883, 1884, 1885, 1886, 1888, 1889, 1890,
      1889, 1890, 1892, 1893, 1895, 1741, 1743, 1896, 1897, 1747,       1891, 1892, 1893, 1894, 1895, 1738, 1740, 1897, 1898, 1900,
   
      1898, 1899, 1751, 1900, 1754, 1901, 1902, 1904, 1906, 1760,       1901, 1903, 1747, 1749, 1904, 1905, 1753, 1906, 1907, 1757,
      1907, 1908, 1910, 1911, 1913, 1914, 1916, 1917, 1918, 1919,       1759, 1908, 1762, 1909, 1910, 1912, 1914, 1768, 1915, 1916,
      1772, 1921, 1922, 1923, 1924, 1926, 1927, 1928, 1929, 1930,       1918, 1919, 1921, 1922, 1924, 1925, 1926, 1927, 1780, 1929,
      1931, 1932, 1933, 1935, 1937, 1938, 1939, 1940, 1941, 1942,       1930, 1931, 1932, 1934, 1935, 1936, 1937, 1938, 1939, 1940,
      1943, 1944, 1945, 1946, 1948, 1949, 1950, 1951, 1952, 1954,       1941, 1943, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952,
      1803, 1956, 1806, 1957, 1958, 1810, 1812, 1814, 1959, 1960,       1953, 1954, 1956, 1957, 1958, 1959, 1960, 1962, 1811, 1964,
      1961, 1963, 1964, 1965, 1966, 1967, 1968, 1825, 1970, 1971,       1814, 1965, 1966, 1818, 1820, 1822, 1967, 1968, 1969, 1971,
      1973, 1830, 1974, 1975, 1976, 1978, 1979, 1981, 1838, 1982,       1972, 1973, 1974, 1975, 1976, 1833, 1978, 1979, 1981, 1838,
      1841, 1984, 1985, 1986, 1846, 1987, 1988, 1990, 1991, 1992,       1982, 1983, 1984, 1986, 1987, 1989, 1846, 1990, 1849, 1992,
      1852, 1993, 1994, 1856, 1995, 1996, 1997, 1998, 2000, 2001,       1993, 1994, 1854, 1995, 1996, 1998, 1999, 2000, 1860, 2001,
   
      2002, 2003, 2004, 2005, 2006, 1868, 2007, 2008, 2009, 2010,       2002, 1864, 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011,
      1874, 2011, 2012, 2013, 2015, 1880, 2016, 2017, 2014, 2018,       2012, 2013, 2014, 1876, 2015, 2016, 2017, 2018, 1882, 2019,
      2019, 2020, 2021, 2022, 1889, 2024, 1892, 2026, 1895, 2028,       2020, 2021, 2023, 1888, 2024, 2025, 2022, 2026, 2027, 2028,
      2029, 2030, 2032, 2033, 2034, 2035, 1904, 1906, 2036, 2038,       2029, 2030, 1897, 2032, 1900, 2034, 1903, 2036, 2037, 2038,
      1910, 2039, 1913, 2040, 1916, 2041, 2042, 2043, 1921, 2045,       2040, 2041, 2042, 2043, 1912, 1914, 2044, 2046, 1918, 2047,
      2046, 2048, 1926, 2049, 2050, 2052, 2053, 2054, 2056, 2057,       1921, 2048, 1924, 2049, 2050, 2051, 1929, 2053, 2054, 2056,
      1935, 1937, 2058, 2059, 2060, 2061, 2062, 2064, 2065, 2066,       1934, 2057, 2058, 2060, 2061, 2062, 2064, 2065, 1943, 1945,
      2067, 1948, 2068, 2069, 2071, 2072, 1954, 1956, 2074, 2075,       2066, 2067, 2068, 2069, 2070, 2072, 2073, 2074, 2075, 1956,
      2076, 2077, 2078, 1963, 2079, 2080, 2082, 2083, 2084, 1970,       2076, 2077, 2079, 2080, 1962, 1964, 2082, 2083, 2084, 2085,
      2086, 1973, 2087, 2088, 2090, 1978, 2091, 1981, 2092, 1984,       2086, 1971, 2087, 2088, 2090, 2091, 2092, 1978, 2094, 1981,
   
      2093, 2095, 2096, 2097, 1990, 2098, 2099, 2100, 2101, 2102,       2095, 2096, 2098, 1986, 2099, 1989, 2100, 1992, 2101, 2103,
      2103, 2104, 2105, 2000, 2106, 2107, 2108, 2109, 2110, 2111,       2104, 2105, 1998, 2106, 2107, 2108, 2109, 2110, 2111, 2112,
      2112, 2113, 2114, 2115, 2116, 2117, 2119, 2120, 2121, 2123,       2113, 2008, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121,
      2125, 2126, 2128, 2129, 2130, 2131, 2132, 2024, 2026, 2028,       2122, 2123, 2124, 2125, 2127, 2128, 2129, 2131, 2133, 2134,
      2134, 2135, 2032, 2136, 2138, 2139, 2141, 2038, 2143, 2144,       2136, 2137, 2138, 2139, 2140, 2032, 2034, 2036, 2142, 2143,
      2145, 2146, 2148, 2045, 2149, 2048, 2150, 2151, 2052, 2152,       2040, 2144, 2146, 2147, 2149, 2046, 2151, 2152, 2153, 2154,
      2153, 2056, 2154, 2155, 2156, 2157, 2158, 2159, 2064, 2160,       2156, 2053, 2157, 2056, 2158, 2159, 2060, 2160, 2161, 2064,
      2161, 2163, 2164, 2165, 2071, 2167, 2074, 2168, 2169, 2170,       2162, 2163, 2164, 2165, 2166, 2167, 2072, 2168, 2169, 2171,
      2171, 2173, 2175, 2082, 2176, 2178, 2086, 2180, 2182, 2090,       2172, 2173, 2079, 2175, 2082, 2176, 2177, 2178, 2179, 2181,
      2184, 2185, 2186, 2095, 2187, 2188, 2189, 2190, 2191, 2192,       2183, 2090, 2184, 2186, 2094, 2188, 2190, 2098, 2192, 2193,
   
      2193, 2194, 2195, 2196, 2197, 2198, 2199, 2200, 2201, 2202,       2194, 2103, 2195, 2196, 2197, 2198, 2199, 2200, 2201, 2202,
      2203, 2204, 2205, 2206, 2207, 2208, 2119, 2209, 2210, 2123,       2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212,
      2125, 2212, 2128, 2213, 2214, 2216, 2217, 2134, 2219, 2220,       2213, 2214, 2215, 2216, 2127, 2217, 2218, 2131, 2133, 2220,
      2138, 2222, 2141, 2143, 2223, 2225, 2226, 2148, 2227, 2228,       2136, 2221, 2222, 2224, 2225, 2142, 2227, 2228, 2146, 2230,
      2229, 2231, 2233, 2234, 2235, 2236, 2237, 2238, 2239, 2240,       2149, 2151, 2231, 2233, 2234, 2156, 2235, 2236, 2237, 2239,
      2241, 2163, 2242, 2243, 2167, 2244, 2245, 2246, 2248, 2173,       2241, 2242, 2243, 2244, 2245, 2246, 2247, 2248, 2249, 2171,
      2175, 2250, 2178, 2180, 2182, 2184, 2251, 2252, 2253, 2254,       2250, 2251, 2175, 2252, 2253, 2254, 2256, 2181, 2183, 2258,
      2255, 2256, 2257, 2258, 2259, 2260, 2261, 2262, 2263, 2264,       2186, 2188, 2190, 2192, 2259, 2260, 2261, 2262, 2263, 2264,
      2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274,       2265, 2266, 2267, 2268, 2269, 2270, 2271, 2272, 2273, 2274,
      2275, 2276, 2212, 2277, 2279, 2216, 2280, 2219, 2281, 2222,       2275, 2276, 2277, 2278, 2279, 2280, 2281, 2282, 2283, 2284,
   
      2283, 2225, 2285, 2286, 2287, 2288, 2231, 2233, 2289, 2291,       2220, 2285, 2287, 2224, 2288, 2227, 2289, 2230, 2291, 2233,
      2293, 2295, 2297, 2298, 2300, 2302, 2303, 2304, 2305, 2307,       2293, 2294, 2295, 2296, 2239, 2241, 2297, 2299, 2301, 2303,
      2308, 2248, 2250, 2309, 2310, 2311, 2312, 2313, 2314, 2315,       2305, 2306, 2308, 2310, 2311, 2312, 2313, 2315, 2316, 2256,
      2316, 2317, 2318, 2319, 2320, 2321, 2322, 2323, 2325, 2326,       2258, 2317, 2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325,
      2327, 2328, 2329, 2330, 2331, 2332, 2333, 2334, 2335, 2337,       2326, 2327, 2328, 2329, 2330, 2331, 2333, 2334, 2335, 2336,
      2279, 2339, 2340, 2283, 2285, 2341, 2343, 2344, 2345, 2291,       2337, 2338, 2339, 2340, 2341, 2342, 2343, 2345, 2287, 2347,
      2293, 2295, 2297, 2346, 2300, 2302, 2347, 2348, 2349, 2307,       2348, 2291, 2293, 2349, 2351, 2352, 2353, 2299, 2301, 2303,
      2350, 2351, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360,       2305, 2354, 2308, 2310, 2355, 2356, 2357, 2315, 2358, 2359,
      2361, 2362, 2364, 2365, 2366, 2368, 2325, 2369, 2371, 2372,       2361, 2362, 2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370,
      2373, 2374, 2376, 2377, 2378, 2379, 2380, 2337, 2339, 2382,       2372, 2373, 2374, 2376, 2333, 2377, 2379, 2380, 2381, 2382,
   
      2383, 2343, 2384, 2385, 2386, 2387, 2388, 2389, 2390, 2391,       2384, 2385, 2386, 2387, 2388, 2345, 2347, 2390, 2391, 2351,
      2353, 2392, 2394, 2395, 2396, 2397, 2399, 2400, 2402, 2404,       2392, 2393, 2394, 2395, 2396, 2397, 2398, 2399, 2361, 2400,
      2364, 2405, 2406, 2368, 2408, 2371, 2409, 2411, 2413, 2376,       2402, 2403, 2404, 2405, 2407, 2408, 2410, 2412, 2372, 2413,
      2414, 2416, 2417, 2418, 2382, 2419, 2420, 2422, 2423, 2425,       2414, 2376, 2416, 2379, 2417, 2419, 2421, 2384, 2422, 2424,
      2427, 2429, 2431, 2432, 2434, 2394, 2435, 2437, 2439, 2399,       2425, 2426, 2390, 2427, 2428, 2430, 2431, 2433, 2435, 2437,
      2441, 2402, 2404, 2442, 2444, 2408, 2446, 2411, 2413, 2448,       2439, 2440, 2442, 2402, 2443, 2445, 2447, 2407, 2449, 2410,
      2416, 2449, 2450, 2452, 2454, 2422, 2455, 2425, 2427, 2429,       2412, 2450, 2452, 2416, 2454, 2419, 2421, 2456, 2424, 2457,
      2431, 2456, 2434, 2458, 2437, 2439, 2441, 2460, 2444, 2446,       2458, 2460, 2462, 2430, 2463, 2433, 2435, 2437, 2439, 2464,
      2448, 2461, 2463, 2452, 2454, 2465, 2467, 2458, 2460, 2469,       2442, 2466, 2445, 2447, 2449, 2468, 2452, 2454, 2456, 2469,
      2463, 2465, 2467, 2469,   10,   10,   37,   37,   40,   40,       2471, 2460, 2462, 2473, 2475, 2466, 2468, 2477, 2471, 2473,
   
        43,   43,   45,   46,   46,  138,  142,  262,  265,  269,       2475, 2477,   10,   10,   37,   37,   40,   40,   43,   43,
       320,  388,  412,  446,  450,  458,  462,  470,  486,  543,         45,   46,   46,  138,  142,  262,  265,  269,  320,  388,
       566,  586,  588,  598,  606,  636,  641,  675,  688,  704,        412,  446,  450,  458,  462,  470,  486,  543,  566,  586,
       717,  745,  763,  816,  844,  847,  852,  854,  890,  899,        588,  598,  606,  636,  641,  675,  689,  705,  718,  746,
       902,  906,  912,  917,  926,  935,  944,  970,  974,  992,        764,  817,  845,  848,  853,  855,  892,  901,  904,  908,
       995,  997, 1006, 1055, 1088, 1105, 1107, 1109, 1117, 1125,        914,  919,  928,  937,  946,  972,  976,  994,  997,  999,
      1131, 1136, 1177, 1184, 1208, 1215, 1219, 1224, 1226, 1228,       1008, 1058, 1091, 1108, 1110, 1112, 1120, 1128, 1134, 1139,
      1230, 1234, 1238, 1240, 1245, 1254, 1289, 1297, 1299, 1308,       1180, 1187, 1211, 1218, 1223, 1228, 1230, 1232, 1234, 1238,
      1310, 1328, 1342, 1345, 1348, 1356, 1359, 1375, 1383, 1383,       1242, 1244, 1249, 1258, 1293, 1301, 1303, 1312, 1314, 1332,
      1387, 1391, 1393, 1399, 1405, 1409, 1412, 1415, 1418, 1427,       1346, 1349, 1352, 1360, 1363, 1379, 1387, 1387, 1391, 1395,
   
      1430, 1439, 1474, 1485, 1487, 1492, 1498, 1505, 1511, 1527,       1397, 1403, 1409, 1413, 1416, 1419, 1423, 1432, 1435, 1444,
      1529, 1534, 1356, 1359, 1538, 1547, 1375, 1559, 1383, 1383,       1479, 1490, 1492, 1497, 1503, 1510, 1516, 1532, 1534, 1539,
      1569, 1387, 1391, 1393, 1575, 1399, 1579, 1405, 1585, 1409,       1360, 1363, 1543, 1552, 1379, 1564, 1387, 1387, 1574, 1391,
      1412, 1415, 1418, 1590, 1594, 1596, 1598, 1427, 1609, 1645,       1395, 1397, 1580, 1403, 1584, 1409, 1590, 1413, 1416, 1419,
      1649, 1653, 1661, 1664, 1666, 1669, 1505, 1673, 1511, 1702,       1423, 1596, 1600, 1602, 1604, 1432, 1615, 1651, 1655, 1659,
      1709, 1715, 1731, 1733, 1740, 1742, 1746, 1750, 1753, 1759,       1667, 1670, 1672, 1675, 1510, 1679, 1516, 1708, 1715, 1721,
      1771, 1802, 1805, 1809, 1811, 1813, 1824, 1829, 1837, 1840,       1737, 1739, 1746, 1748, 1752, 1756, 1758, 1761, 1767, 1779,
      1845, 1851, 1855, 1867, 1873, 1879, 1888, 1891, 1894, 1903,       1810, 1813, 1817, 1819, 1821, 1832, 1837, 1845, 1848, 1853,
      1905, 1909, 1912, 1915, 1920, 1925, 1934, 1936, 1947, 1953,       1859, 1863, 1875, 1881, 1887, 1896, 1899, 1902, 1911, 1913,
      1955, 1962, 1969, 1972, 1977, 1980, 1983, 1989, 1851, 1855,       1917, 1920, 1923, 1928, 1933, 1942, 1944, 1955, 1961, 1810,
   
      1999, 2023, 2025, 2027, 2031, 2037, 2044, 2047, 2051, 2055,       1963, 1813, 1970, 1977, 1980, 1985, 1988, 1991, 1853, 1997,
      2063, 2070, 1953, 2073, 2081, 2085, 2089, 2094, 2118, 2122,       1859, 1863, 2007, 1875, 2031, 2033, 2035, 2039, 2045, 2052,
      2124, 2127, 2133, 2137, 2140, 2142, 2147, 2162, 2166, 2172,       2055, 2059, 2063, 2071, 2078, 1961, 2081, 2089, 2093, 2097,
      2174, 2177, 2179, 2181, 2183, 2211, 2215, 2218, 2221, 2224,       2102, 2126, 2130, 2132, 2135, 2141, 2145, 2148, 2150, 2155,
      2230, 2232, 2247, 2249, 2278, 2282, 2284, 2290, 2292, 2294,       2170, 2174, 2180, 2182, 2185, 2187, 2189, 2191, 2219, 2223,
      2296, 2299, 2301, 2306, 2324, 2336, 2338, 2342, 2352, 2363,       2226, 2229, 2232, 2238, 2240, 2255, 2257, 2286, 2290, 2292,
      2367, 2370, 2375, 2381, 2393, 2398, 2401, 2403, 2407, 2410,       2298, 2300, 2302, 2304, 2307, 2309, 2314, 2332, 2344, 2346,
      2412, 2415, 2421, 2424, 2426, 2428, 2430, 2433, 2436, 2438,       2350, 2360, 2371, 2375, 2378, 2383, 2389, 2401, 2406, 2409,
      2440, 2443, 2445, 2447, 2451, 2453, 2457, 2459, 2462, 2464,       2411, 2415, 2418, 2420, 2423, 2429, 2432, 2434, 2436, 2438,
      2466, 2468,  801,  800,  799,  798,  797,  796,  795,  794,       2441, 2444, 2446, 2448, 2451, 2453, 2455, 2459, 2461, 2465,
   
       793,  792,  791,  790,  789,  788,  787,  786,  785,  784,       2467, 2470, 2472, 2474, 2476,  802,  801,  800,  799,  798,
       783,  782,  781,  780,  779,  778,  777,  776,  775,  774,        797,  796,  795,  794,  793,  792,  791,  790,  789,  788,
       773,  772,  771,  768,  599,  767,  766,  765,  764,  762,        787,  786,  785,  784,  783,  782,  781,  780,  779,  778,
       761,  760,  759,  589,  587,  758,  757,  756,  755,  754,        777,  776,  775,  774,  773,  772,  769,  599,  768,  767,
       753,  752,  751,  750,  749,  748,  747,  746,  744,  743,        766,  765,  763,  762,  761,  760,  589,  587,  759,  758,
       742,  741,  740,  567,  739,  738,  737,  736,  735,  732,        757,  756,  755,  754,  753,  752,  751,  750,  749,  748,
       731,  730,  729,  728,  727,  726,  725,  724,  723,  722,        747,  745,  744,  743,  742,  741,  567,  740,  739,  738,
       719,  718,  716,  544,  715,  714,  710,  709,  708,  707,        737,  736,  733,  732,  731,  730,  729,  728,  727,  726,
       706,  705,  701,  700,  699,  698,  697,  696,  695,  694,        725,  724,  723,  720,  719,  717,  544,  716,  715,  711,
       693,  690,  689,  683,  682,  681,  680,  679,  678,  677,        710,  709,  708,  707,  706,  702,  701,  700,  699,  698,
   
       676,  674,  673,  668,  667,  666,  665,  664,  663,  662,        697,  696,  695,  694,  691,  690,  683,  682,  681,  680,
       661,  660,  659,  658,  657,  656,  655,  654,  653,  652,        679,  678,  677,  676,  674,  673,  668,  667,  666,  665,
       487,  651,  650,  649,  648,  647,  646,  645,  644,  643,        664,  663,  662,  661,  660,  659,  658,  657,  656,  655,
       642,  640,  637,  635,  471,  634,  633,  632,  631,  630,        654,  653,  652,  487,  651,  650,  649,  648,  647,  646,
       629,  463,  628,  627,  459,  626,  625,  624,  623,  622,        645,  644,  643,  642,  640,  637,  635,  471,  634,  633,
       621,  451,  620,  619,  447,  618,  617,  616,  615,  614,        632,  631,  630,  629,  463,  628,  627,  459,  626,  625,
       613,  612,  611,  610,  607,  605,  604,  603,  602,  601,        624,  623,  622,  621,  451,  620,  619,  447,  618,  617,
       600,  599,  597,  596,  595,  594,  593,  592,  591,  590,        616,  615,  614,  613,  612,  611,  610,  607,  605,  604,
       589,  587,  585,  584,  583,  413,  582,  581,  580,  579,        603,  602,  601,  600,  599,  597,  596,  595,  594,  593,
       578,  577,  576,  575,  574,  573,  572,  571,  570,  569,        592,  591,  590,  589,  587,  585,  584,  583,  413,  582,
   
       568,  567,  565,  564,  563,  562,  561,  560,  389,  559,        581,  580,  579,  578,  577,  576,  575,  574,  573,  572,
       558,  557,  556,  555,  552,  551,  550,  549,  548,  547,        571,  570,  569,  568,  567,  565,  564,  563,  562,  561,
       546,  545,  544,  542,  541,  540,  539,  538,  537,  536,        560,  389,  559,  558,  557,  556,  555,  552,  551,  550,
       535,  534,  529,  528,  525,  524,  523,  520,  517,  516,        549,  548,  547,  546,  545,  544,  542,  541,  540,  539,
       515,  514,  513,  512,  511,  510,  507,  506,  505,  504,        538,  537,  536,  535,  534,  529,  528,  525,  524,  523,
       503,  500,  497,  496,  495,  494,  491,  490,  489,  488,        520,  517,  516,  515,  514,  513,  512,  511,  510,  507,
       487,  485,  484,  321,  483,  482,  481,  480,  479,  478,        506,  505,  504,  503,  500,  497,  496,  495,  494,  491,
       477,  476,  475,  474,  473,  472,  471,  469,  468,  465,        490,  489,  488,  487,  485,  484,  321,  483,  482,  481,
       464,  463,  461,  460,  459,  457,  456,  455,  454,  453,        480,  479,  478,  477,  476,  475,  474,  473,  472,  471,
       452,  451,  449,  448,  447,  445,  444,  434,  433,  432,        469,  468,  465,  464,  463,  461,  460,  459,  457,  456,
   
       431,  430,  429,  428,  427,  426,  423,  422,  270,  421,        455,  454,  453,  452,  451,  449,  448,  447,  445,  444,
       420,  266,  419,  263,  418,  417,  416,  415,  414,  413,        434,  433,  432,  431,  430,  429,  428,  427,  426,  423,
       411,  410,  409,  408,  407,  406,  405,  404,  403,  402,        422,  270,  421,  420,  266,  419,  263,  418,  417,  416,
       401,  400,  399,  398,  397,  396,  395,  391,  390,  389,        415,  414,  413,  411,  410,  409,  408,  407,  406,  405,
       387,  386,  385,  384,  383,  382,  381,  380,  379,  378,        404,  403,  402,  401,  400,  399,  398,  397,  396,  395,
       375,  374,  373,  372,  371,  370,  369,  368,  367,  366,        391,  390,  389,  387,  386,  385,  384,  383,  382,  381,
       365,  364,  357,  356,  355,  352,  351,  350,  346,  345,        380,  379,  378,  375,  374,  373,  372,  371,  370,  369,
       344,  343,  342,  341,  340,  339,  338,  337,  324,  323,        368,  367,  366,  365,  364,  357,  356,  355,  352,  351,
       322,  321,  319,  318,  317,  316,  313,  312,  309,  306,        350,  346,  345,  344,  343,  342,  341,  340,  339,  338,
       303,  302,  301,  300,  299,  295,  288,  285,  284,  283,        337,  324,  323,  322,  321,  319,  318,  317,  316,  313,
   
       282,  281,  280,  279,  278,  277,  276,  275,  274,  273,        312,  309,  306,  303,  302,  301,  300,  299,  295,  288,
       272,  271,  270,  268,  267,  266,  264,  263,  256,  253,        285,  284,  283,  282,  281,  280,  279,  278,  277,  276,
       252,  251,  246,  245,  244,  243,  242,  241,  234,  230,        275,  274,  273,  272,  271,  270,  268,  267,  266,  264,
       229,  228,  227,  222,  221,  220,  219,  218,  217,  216,        263,  256,  253,  252,  251,  246,  245,  244,  243,  242,
       213,  212,  211,  208,  207,  199,  198,  197,  196,  195,        241,  234,  230,  229,  228,  227,  222,  221,  220,  219,
       194,  193,  192,  189,  188,  187,  186,  185,  184,  183,        218,  217,  216,  213,  212,  211,  208,  207,  199,  198,
       182,  181,  180,  179,  178,  177,  176,  175,  174,  173,        197,  196,  195,  194,  193,  192,  189,  188,  187,  186,
       172,  171,  170,  169,  166,  165,  164,  160,  159,  156,        185,  184,  183,  182,  181,  180,  179,  178,  177,  176,
       155,  152,  151,  150,   47,  145,  141,  137,   89,   47,        175,  174,  173,  172,  171,  170,  169,  166,  165,  164,
      2470,    9, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,        160,  159,  156,  155,  152,  151,  150,   47,  145,  141,
   
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,        137,   89,   47, 2478,    9, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
        2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478
     } ;      } ;
   
 static yyconst flex_int16_t yy_chk[2826] =  static yyconst short int yy_chk[2839] =
     {   0,      {   0,
         0,   13,    1,    1,   13,    1,    2,    2,    2,    2,          0,   13,    1,    1,   13,    1,    2,    2,    2,    2,
         2,    2,    2,    2,    2,    2,    2,    2,    2,    2,          2,    2,    2,    2,    2,    2,    2,    2,    2,    2,
Line 1644
 
Line 1572
       359,  362,  355,  363,  283,  644,  283,  382,  645,  362,        359,  362,  355,  363,  283,  644,  283,  382,  645,  362,
       474,  283,  523,  283,  283,  382,  283,  359,  474,  505,        474,  283,  523,  283,  283,  382,  283,  359,  474,  505,
   
       523,  505,  505,  508,  508,  518,  518,  520,  533,  540,        523,  505,  505,  508,  508,  518,  518,  533,  540,  601,
       548,  560,  540,  505,  601,  548,  560,  646,  647,  648,        646,  540,  548,  505,  520,  520,  560,  548,  647,  648,
       520,  533,  649,  650,  520,  520,  540,  651,  652,  653,        533,  560,  649,  650,  651,  540,  652,  653,  520,  601,
       654,  655,  656,  657,  601,  634,  658,  634,  634,  659,        654,  655,  520,  520,  634,  656,  634,  634,  657,  658,
       660,  661,  662,  663,  664,  665,  666,  667,  668,  669,        659,  660,  661,  662,  663,  664,  665,  666,  667,  634,
       634,  670,  671,  634,  634,  672,  673,  674,  668,  676,        668,  669,  634,  634,  670,  671,  672,  673,  674,  676,
       677,  678,  679,  680,  681,  682,  683,  684,  685,  686,        668,  677,  678,  679,  680,  681,  682,  683,  684,  685,
       687,  689,  690,  691,  692,  693,  685,  686,  694,  695,        686,  687,  688,  690,  691,  692,  693,  694,  686,  687,
       696,  697,  698,  699,  700,  701,  702,  703,  705,  706,        695,  696,  697,  698,  699,  700,  701,  702,  703,  704,
       707,  708,  709,  710,  711,  712,  713,  714,  715,  716,        706,  707,  708,  709,  710,  711,  712,  713,  714,  715,
   
       718,  719,  720,  721,  722,  723,  724,  725,  726,  727,        716,  717,  719,  720,  721,  722,  723,  724,  725,  726,
       719,  728,  729,  730,  731,  732,  733,  734,  735,  736,        727,  728,  720,  729,  730,  731,  732,  733,  734,  735,
       737,  738,  739,  740,  741,  742,  743,  744,  746,  747,        736,  737,  738,  739,  740,  741,  742,  743,  744,  745,
       748,  749,  750,  751,  752,  753,  754,  755,  756,  757,        747,  748,  749,  750,  751,  752,  753,  754,  755,  756,
       758,  759,  760,  760,  754,  761,  762,  764,  765,  766,        757,  758,  759,  760,  761,  761,  755,  762,  763,  765,
       767,  768,  769,  770,  771,  772,  773,  774,  775,  776,        766,  767,  768,  769,  770,  771,  772,  773,  774,  775,
       777,  778,  779,  780,  781,  782,  783,  784,  785,  786,        776,  777,  778,  779,  780,  781,  782,  783,  784,  785,
       787,  788,  789,  790,  791,  792,  793,  794,  795,  796,        786,  787,  788,  789,  790,  791,  792,  793,  794,  795,
       797,  798,  799,  800,  801,  802,  803,  804,  805,  802,        796,  797,  798,  799,  800,  801,  802,  803,  804,  805,
       806,  807,  807,  808,  809,  810,  811,  812,  813,  814,        806,  803,  807,  808,  808,  809,  810,  811,  812,  813,
   
       804,  807,  815,  817,  818,  819,  820,  821,  822,  806,        814,  815,  805,  808,  816,  818,  819,  820,  821,  822,
       823,  824,  825,  826,  827,  828,  829,  830,  831,  832,        823,  807,  824,  825,  826,  827,  828,  829,  830,  831,
       833,  834,  835,  836,  837,  838,  839,  840,  841,  842,        832,  833,  834,  835,  836,  837,  838,  839,  840,  841,
       843,  845,  846,  848,  849,  850,  851,  853,  855,  856,        842,  843,  844,  846,  847,  849,  850,  851,  852,  854,
       857,  858,  859,  860,  861,  862,  863,  864,  865,  866,        856,  857,  858,  859,  860,  861,  862,  863,  864,  865,
       867,  868,  869,  870,  871,  872,  873,  874,  875,  876,        866,  867,  868,  869,  870,  871,  872,  873,  874,  875,
       877,  878,  879,  880,  881,  882,  883,  884,  885,  886,        876,  877,  878,  879,  880,  881,  882,  883,  884,  885,
       887,  888,  889,  891,  892,  893,  895,  896,  897,  898,        886,  887,  888,  889,  890,  891,  893,  894,  895,  897,
       900,  901,  903,  904,  893,  894,  894,  894,  894,  894,        898,  899,  900,  902,  903,  905,  906,  895,  896,  896,
       894,  894,  894,  894,  905,  907,  894,  894,  908,  909,        896,  896,  896,  896,  896,  896,  896,  907,  909,  896,
   
       894,  910,  911,  894,  894,  913,  914,  894,  915,  916,        896,  910,  911,  896,  912,  913,  896,  896,  915,  916,
       918,  919,  920,  921,  922,  923,  924,  925,  927,  928,        896,  917,  918,  920,  921,  922,  923,  924,  925,  926,
       929,  930,  931,  932,  933,  934,  936,  937,  937,  939,        927,  929,  930,  931,  932,  933,  934,  935,  936,  938,
       939,  940,  941,  942,  943,  945,  946,  947,  948,  949,        939,  939,  941,  941,  942,  943,  944,  945,  947,  948,
       950,  951,  952,  953,  954,  955,  956,  957,  958,  959,        949,  950,  951,  952,  953,  954,  955,  956,  957,  958,
       960,  961,  961,  962,  963,  964,  965,  966,  961,  967,        959,  960,  961,  962,  963,  963,  964,  965,  966,  967,
       968,  969,  971,  972,  973,  975,  976,  977,  961,  961,        968,  963,  969,  970,  971,  973,  974,  975,  977,  978,
       978,  979,  977,  961,  980,  981,  982,  983,  984,  985,        979,  963,  963,  980,  981,  979,  963,  982,  983,  984,
       986,  987,  988,  989,  990,  991,  993,  994,  996,  998,        985,  986,  987,  988,  989,  990,  991,  992,  993,  995,
       999, 1000, 1001, 1002, 1003, 1004, 1005, 1007, 1008, 1009,        996,  998, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007,
   
      1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019,       1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018,
      1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029,       1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028,
      1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039,       1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038,
      1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049,       1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048,
      1050, 1032, 1051, 1052, 1053, 1054, 1056, 1057, 1058, 1059,       1049, 1050, 1051, 1052, 1034, 1053, 1054, 1055, 1056, 1057,
      1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069,       1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068,
      1070, 1071, 1072, 1073, 1074, 1076, 1070, 1078, 1075, 1077,       1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1079,
      1079, 1074, 1075, 1077, 1078, 1080, 1081, 1082, 1074, 1083,       1073, 1081, 1078, 1080, 1082, 1077, 1078, 1080, 1081, 1083,
      1084, 1075, 1085, 1086, 1087, 1089, 1083, 1090, 1091, 1092,       1084, 1085, 1077, 1086, 1087, 1078, 1088, 1089, 1090, 1092,
      1093, 1094, 1095, 1083, 1096, 1097, 1098, 1099, 1100, 1101,       1086, 1093, 1094, 1095, 1096, 1097, 1098, 1086, 1099, 1100,
   
      1102, 1103, 1104, 1106, 1108, 1110, 1111, 1112, 1113, 1114,       1101, 1102, 1103, 1104, 1105, 1106, 1107, 1109, 1111, 1113,
      1115, 1116, 1118, 1119, 1120, 1120, 1122, 1123, 1124, 1126,       1114, 1115, 1116, 1117, 1118, 1119, 1121, 1122, 1123, 1123,
      1127, 1128, 1129, 1130, 1132, 1133, 1134, 1135, 1137, 1138,       1125, 1126, 1127, 1129, 1130, 1131, 1132, 1133, 1135, 1136,
      1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148,       1137, 1138, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147,
      1150, 1149, 1151, 1152, 1148, 1149, 1147, 1148, 1153, 1154,       1148, 1149, 1150, 1151, 1153, 1152, 1154, 1155, 1151, 1152,
      1155, 1156, 1147, 1157, 1158, 1159, 1160, 1161, 1162, 1163,       1150, 1151, 1156, 1157, 1158, 1159, 1150, 1160, 1161, 1162,
      1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173,       1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172,
      1174, 1175, 1176, 1172, 1178, 1179, 1180, 1181, 1182, 1183,       1173, 1174, 1175, 1176, 1177, 1178, 1179, 1175, 1181, 1182,
      1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192, 1193, 1194,       1183, 1184, 1185, 1186, 1188, 1189, 1190, 1191, 1192, 1193,
      1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204,       1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203,
   
      1205, 1206, 1207, 1209, 1210, 1211, 1212, 1213, 1214, 1216,       1204, 1205, 1206, 1207, 1208, 1209, 1210, 1212, 1213, 1214,
      1217, 1218, 1220, 1221, 1222, 1223, 1225, 1227, 1221, 1229,       1215, 1216, 1217, 1219, 1220, 1221, 1222, 1224, 1225, 1226,
      1231, 1232, 1233, 1235, 1236, 1237, 1239, 1241, 1242, 1243,       1227, 1229, 1231, 1225, 1233, 1235, 1236, 1237, 1239, 1240,
      1244, 1246, 1247, 1248, 1249, 1250, 1251, 1252, 1253, 1255,       1241, 1243, 1245, 1246, 1247, 1248, 1250, 1251, 1252, 1253,
      1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264, 1265,       1254, 1255, 1256, 1257, 1259, 1260, 1261, 1262, 1263, 1264,
      1266, 1267, 1268, 1267, 1269, 1270, 1271, 1272, 1273, 1274,       1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1271, 1273,
      1267, 1275, 1276, 1277, 1278, 1279, 1280, 1268, 1281, 1282,       1274, 1275, 1276, 1277, 1278, 1271, 1279, 1280, 1281, 1282,
      1283, 1284, 1285, 1286, 1287, 1288, 1290, 1291, 1292, 1293,       1283, 1284, 1272, 1285, 1286, 1287, 1288, 1289, 1290, 1291,
      1294, 1295, 1296, 1298, 1300, 1301, 1302, 1303, 1304, 1305,       1292, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1302, 1304,
      1306, 1307, 1309, 1311, 1312, 1313, 1314, 1315, 1316, 1317,       1305, 1306, 1307, 1308, 1309, 1310, 1311, 1313, 1315, 1316,
   
      1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327,       1317, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326,
      1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1338,       1327, 1328, 1329, 1330, 1331, 1333, 1334, 1335, 1336, 1337,
      1339, 1340, 1341, 1343, 1344, 1346, 1347, 1349, 1350, 1351,       1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1347, 1348,
      1352, 1353, 1354, 1355, 1357, 1358, 1360, 1361, 1362, 1363,       1350, 1351, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1361,
      1364, 1365, 1366, 1367, 1368, 1369, 1370, 1370, 1367, 1371,       1362, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372,
      1372, 1373, 1374, 1376, 1371, 1377, 1373, 1378, 1379, 1381,       1373, 1374, 1374, 1371, 1375, 1376, 1377, 1378, 1380, 1375,
      1382, 1383, 1385, 1386, 1388, 1389, 1390, 1392, 1394, 1395,       1381, 1377, 1382, 1383, 1385, 1386, 1387, 1389, 1390, 1392,
      1396, 1397, 1398, 1400, 1373, 1380, 1401, 1402, 1403, 1404,       1393, 1394, 1396, 1398, 1399, 1400, 1401, 1402, 1404, 1377,
      1406, 1380, 1407, 1408, 1410, 1411, 1413, 1414, 1416, 1417,       1384, 1405, 1406, 1407, 1408, 1410, 1384, 1411, 1412, 1414,
      1419, 1380, 1380, 1420, 1421, 1422, 1380, 1423, 1424, 1425,       1415, 1417, 1418, 1420, 1421, 1422, 1384, 1384, 1424, 1425,
   
      1426, 1428, 1429, 1431, 1432, 1433, 1434, 1435, 1436, 1437,       1426, 1384, 1427, 1428, 1429, 1430, 1431, 1433, 1434, 1436,
      1438, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448,       1437, 1438, 1439, 1440, 1441, 1442, 1443, 1445, 1446, 1447,
      1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458,       1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457,
      1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468,       1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467,
      1469, 1470, 1471, 1472, 1473, 1475, 1476, 1477, 1478, 1479,       1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477,
      1480, 1481, 1482, 1483, 1484, 1486, 1488, 1489, 1490, 1491,       1478, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488,
      1493, 1494, 1495, 1496, 1497, 1499, 1500, 1501, 1502, 1503,       1489, 1491, 1493, 1494, 1495, 1496, 1498, 1499, 1500, 1501,
      1504, 1506, 1507, 1508, 1509, 1510, 1512, 1513, 1514, 1515,       1502, 1504, 1505, 1506, 1507, 1508, 1509, 1511, 1512, 1513,
      1516, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525,       1514, 1515, 1517, 1518, 1519, 1520, 1521, 1522, 1523, 1524,
      1526, 1528, 1530, 1531, 1532, 1533, 1535, 1536, 1537, 1539,       1525, 1526, 1527, 1528, 1529, 1530, 1531, 1533, 1535, 1536,
   
      1540, 1541, 1542, 1543, 1544, 1540, 1546, 1542, 1543, 1545,       1537, 1538, 1540, 1541, 1542, 1544, 1545, 1546, 1547, 1548,
      1545, 1548, 1549, 1550, 1551, 1552, 1552, 1553, 1554, 1555,       1549, 1545, 1551, 1547, 1548, 1550, 1550, 1553, 1554, 1555,
      1555, 1556, 1553, 1557, 1558, 1560, 1556, 1561, 1562, 1563,       1556, 1557, 1557, 1558, 1559, 1560, 1560, 1561, 1558, 1562,
      1564, 1565, 1566, 1567, 1568, 1570, 1566, 1571, 1572, 1565,       1563, 1565, 1561, 1566, 1567, 1568, 1569, 1570, 1571, 1572,
      1573, 1574, 1576, 1577, 1578, 1580, 1581, 1582, 1583, 1584,       1573, 1575, 1571, 1576, 1577, 1570, 1578, 1579, 1581, 1582,
      1586, 1587, 1588, 1589, 1591, 1592, 1593, 1595, 1597, 1599,       1583, 1585, 1586, 1587, 1588, 1589, 1591, 1592, 1593, 1594,
      1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1610,       1595, 1597, 1598, 1599, 1601, 1603, 1605, 1606, 1607, 1608,
      1611, 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620,       1609, 1610, 1611, 1612, 1613, 1614, 1616, 1617, 1618, 1619,
      1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1611, 1629,       1620, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629,
      1630, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638, 1639,       1630, 1631, 1632, 1633, 1634, 1617, 1635, 1636, 1637, 1638,
   
      1640, 1641, 1642, 1643, 1644, 1646, 1647, 1648, 1650, 1651,       1639, 1640, 1641, 1642, 1643, 1644, 1645, 1646, 1647, 1648,
      1652, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1662, 1660,       1649, 1650, 1652, 1653, 1654, 1656, 1657, 1658, 1660, 1661,
      1663, 1665, 1667, 1668, 1670, 1671, 1672, 1674, 1675, 1676,       1662, 1663, 1664, 1665, 1666, 1668, 1666, 1669, 1671, 1673,
      1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686,       1674, 1676, 1677, 1678, 1680, 1681, 1682, 1683, 1684, 1685,
      1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696,       1686, 1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695,
      1696, 1697, 1698, 1699, 1699, 1700, 1697, 1701, 1701, 1703,       1696, 1697, 1698, 1699, 1700, 1701, 1702, 1702, 1703, 1704,
      1704, 1705, 1706, 1707, 1708, 1710, 1711, 1706, 1712, 1713,       1705, 1705, 1706, 1703, 1707, 1707, 1709, 1710, 1711, 1712,
      1714, 1714, 1716, 1717, 1718, 1719, 1720, 1720, 1721, 1722,       1713, 1714, 1716, 1717, 1712, 1718, 1719, 1720, 1720, 1722,
      1723, 1724, 1725, 1726, 1727, 1728, 1729, 1730, 1732, 1734,       1723, 1724, 1725, 1726, 1726, 1727, 1728, 1729, 1730, 1731,
      1735, 1736, 1737, 1738, 1739, 1741, 1743, 1744, 1745, 1747,       1732, 1733, 1734, 1735, 1736, 1738, 1740, 1741, 1742, 1743,
   
      1748, 1749, 1751, 1752, 1754, 1755, 1756, 1757, 1758, 1760,       1744, 1745, 1747, 1749, 1750, 1751, 1753, 1754, 1755, 1757,
      1761, 1762, 1763, 1764, 1765, 1766, 1767, 1768, 1769, 1770,       1759, 1760, 1762, 1763, 1764, 1765, 1766, 1768, 1769, 1770,
      1772, 1773, 1774, 1775, 1776, 1777, 1778, 1779, 1780, 1781,       1771, 1772, 1773, 1774, 1775, 1776, 1777, 1778, 1780, 1781,
      1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791,       1782, 1783, 1784, 1785, 1786, 1787, 1788, 1789, 1790, 1791,
      1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801,       1792, 1793, 1794, 1795, 1796, 1797, 1798, 1799, 1800, 1801,
      1803, 1804, 1806, 1807, 1808, 1810, 1812, 1814, 1815, 1816,       1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1811, 1812,
      1817, 1818, 1819, 1820, 1821, 1822, 1823, 1825, 1826, 1827,       1814, 1815, 1816, 1818, 1820, 1822, 1823, 1824, 1825, 1826,
      1828, 1830, 1831, 1832, 1833, 1834, 1835, 1836, 1838, 1839,       1827, 1828, 1829, 1830, 1831, 1833, 1834, 1835, 1836, 1838,
      1841, 1842, 1843, 1844, 1846, 1847, 1848, 1849, 1850, 1850,       1839, 1840, 1841, 1842, 1843, 1844, 1846, 1847, 1849, 1850,
      1852, 1853, 1854, 1856, 1857, 1858, 1859, 1860, 1861, 1862,       1851, 1852, 1854, 1855, 1856, 1857, 1858, 1858, 1860, 1861,
   
      1862, 1863, 1864, 1865, 1866, 1868, 1869, 1870, 1871, 1872,       1862, 1864, 1865, 1866, 1867, 1868, 1869, 1870, 1870, 1871,
      1874, 1875, 1876, 1877, 1878, 1880, 1881, 1882, 1877, 1883,       1872, 1873, 1874, 1876, 1877, 1878, 1879, 1880, 1882, 1883,
      1884, 1885, 1886, 1887, 1889, 1890, 1892, 1893, 1895, 1896,       1884, 1885, 1886, 1888, 1889, 1890, 1885, 1891, 1892, 1893,
      1897, 1898, 1899, 1900, 1901, 1902, 1904, 1906, 1907, 1908,       1894, 1895, 1897, 1898, 1900, 1901, 1903, 1904, 1905, 1906,
      1910, 1911, 1913, 1914, 1916, 1917, 1918, 1919, 1921, 1922,       1907, 1908, 1909, 1910, 1912, 1914, 1915, 1916, 1918, 1919,
      1923, 1924, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933,       1921, 1922, 1924, 1925, 1926, 1927, 1929, 1930, 1931, 1932,
      1935, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945,       1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1943, 1945,
      1946, 1948, 1949, 1950, 1951, 1952, 1954, 1956, 1957, 1958,       1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1956,
      1959, 1960, 1961, 1963, 1964, 1965, 1966, 1967, 1968, 1970,       1957, 1958, 1959, 1960, 1962, 1964, 1965, 1966, 1967, 1968,
      1971, 1973, 1974, 1975, 1976, 1978, 1979, 1981, 1982, 1984,       1969, 1971, 1972, 1973, 1974, 1975, 1976, 1978, 1979, 1981,
   
      1985, 1986, 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995,       1982, 1983, 1984, 1986, 1987, 1989, 1990, 1992, 1993, 1994,
      1996, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006,       1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
      2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2014, 2015,       2006, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016,
      2016, 2017, 2018, 2019, 2020, 2021, 2022, 2024, 2026, 2028,       2017, 2018, 2019, 2020, 2021, 2022, 2022, 2023, 2024, 2025,
      2029, 2030, 2032, 2033, 2034, 2035, 2036, 2038, 2039, 2040,       2026, 2027, 2028, 2029, 2030, 2032, 2034, 2036, 2037, 2038,
      2041, 2042, 2043, 2045, 2046, 2048, 2049, 2050, 2052, 2053,       2040, 2041, 2042, 2043, 2044, 2046, 2047, 2048, 2049, 2050,
      2054, 2056, 2057, 2058, 2059, 2060, 2061, 2062, 2064, 2065,       2051, 2053, 2054, 2056, 2057, 2058, 2060, 2061, 2062, 2064,
      2066, 2067, 2068, 2069, 2071, 2072, 2074, 2075, 2076, 2077,       2065, 2066, 2067, 2068, 2069, 2070, 2072, 2073, 2074, 2075,
      2078, 2079, 2080, 2082, 2083, 2084, 2086, 2087, 2088, 2090,       2076, 2077, 2079, 2080, 2082, 2083, 2084, 2085, 2086, 2087,
      2091, 2092, 2093, 2095, 2096, 2097, 2098, 2099, 2100, 2101,       2088, 2090, 2091, 2092, 2094, 2095, 2096, 2098, 2099, 2100,
   
      2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111,       2101, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111,
      2112, 2113, 2114, 2115, 2116, 2117, 2119, 2120, 2121, 2123,       2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121,
      2125, 2126, 2128, 2129, 2130, 2131, 2132, 2134, 2135, 2136,       2122, 2123, 2124, 2125, 2127, 2128, 2129, 2131, 2133, 2134,
      2138, 2139, 2141, 2143, 2144, 2145, 2146, 2148, 2149, 2150,       2136, 2137, 2138, 2139, 2140, 2142, 2143, 2144, 2146, 2147,
      2151, 2152, 2153, 2154, 2155, 2156, 2157, 2158, 2159, 2160,       2149, 2151, 2152, 2153, 2154, 2156, 2157, 2158, 2159, 2160,
      2161, 2163, 2164, 2165, 2167, 2168, 2169, 2170, 2171, 2173,       2161, 2162, 2163, 2164, 2165, 2166, 2167, 2168, 2169, 2171,
      2175, 2176, 2178, 2180, 2182, 2184, 2185, 2186, 2187, 2188,       2172, 2173, 2175, 2176, 2177, 2178, 2179, 2181, 2183, 2184,
      2189, 2190, 2191, 2192, 2193, 2194, 2195, 2196, 2197, 2198,       2186, 2188, 2190, 2192, 2193, 2194, 2195, 2196, 2197, 2198,
      2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208,       2199, 2200, 2201, 2202, 2203, 2204, 2205, 2206, 2207, 2208,
      2209, 2210, 2212, 2213, 2214, 2216, 2217, 2219, 2220, 2222,       2209, 2210, 2211, 2212, 2213, 2214, 2215, 2216, 2217, 2218,
   
      2223, 2225, 2226, 2227, 2228, 2229, 2231, 2233, 2234, 2235,       2220, 2221, 2222, 2224, 2225, 2227, 2228, 2230, 2231, 2233,
      2236, 2237, 2238, 2239, 2240, 2241, 2242, 2243, 2244, 2245,       2234, 2235, 2236, 2237, 2239, 2241, 2242, 2243, 2244, 2245,
      2246, 2248, 2250, 2251, 2252, 2253, 2254, 2255, 2256, 2257,       2246, 2247, 2248, 2249, 2250, 2251, 2252, 2253, 2254, 2256,
      2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267,       2258, 2259, 2260, 2261, 2262, 2263, 2264, 2265, 2266, 2267,
      2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276, 2277,       2268, 2269, 2270, 2271, 2272, 2273, 2274, 2275, 2276, 2277,
      2279, 2280, 2281, 2283, 2285, 2286, 2287, 2288, 2289, 2291,       2278, 2279, 2280, 2281, 2282, 2283, 2284, 2285, 2287, 2288,
      2293, 2295, 2297, 2298, 2300, 2302, 2303, 2304, 2305, 2307,       2289, 2291, 2293, 2294, 2295, 2296, 2297, 2299, 2301, 2303,
      2308, 2309, 2310, 2311, 2312, 2313, 2314, 2315, 2316, 2317,       2305, 2306, 2308, 2310, 2311, 2312, 2313, 2315, 2316, 2317,
      2318, 2319, 2320, 2321, 2322, 2323, 2325, 2326, 2327, 2328,       2318, 2319, 2320, 2321, 2322, 2323, 2324, 2325, 2326, 2327,
      2329, 2330, 2331, 2332, 2333, 2334, 2335, 2337, 2339, 2340,       2328, 2329, 2330, 2331, 2333, 2334, 2335, 2336, 2337, 2338,
   
      2341, 2343, 2344, 2345, 2346, 2347, 2348, 2349, 2350, 2351,       2339, 2340, 2341, 2342, 2343, 2345, 2347, 2348, 2349, 2351,
      2353, 2354, 2355, 2356, 2357, 2358, 2359, 2360, 2361, 2362,       2352, 2353, 2354, 2355, 2356, 2357, 2358, 2359, 2361, 2362,
      2364, 2365, 2366, 2368, 2369, 2371, 2372, 2373, 2374, 2376,       2363, 2364, 2365, 2366, 2367, 2368, 2369, 2370, 2372, 2373,
      2377, 2378, 2379, 2380, 2382, 2383, 2384, 2385, 2386, 2387,       2374, 2376, 2377, 2379, 2380, 2381, 2382, 2384, 2385, 2386,
      2388, 2389, 2390, 2391, 2392, 2394, 2395, 2396, 2397, 2399,       2387, 2388, 2390, 2391, 2392, 2393, 2394, 2395, 2396, 2397,
      2400, 2402, 2404, 2405, 2406, 2408, 2409, 2411, 2413, 2414,       2398, 2399, 2400, 2402, 2403, 2404, 2405, 2407, 2408, 2410,
      2416, 2417, 2418, 2419, 2420, 2422, 2423, 2425, 2427, 2429,       2412, 2413, 2414, 2416, 2417, 2419, 2421, 2422, 2424, 2425,
      2431, 2432, 2434, 2435, 2437, 2439, 2441, 2442, 2444, 2446,       2426, 2427, 2428, 2430, 2431, 2433, 2435, 2437, 2439, 2440,
      2448, 2449, 2450, 2452, 2454, 2455, 2456, 2458, 2460, 2461,       2442, 2443, 2445, 2447, 2449, 2450, 2452, 2454, 2456, 2457,
      2463, 2465, 2467, 2469, 2471, 2471, 2472, 2472, 2473, 2473,       2458, 2460, 2462, 2463, 2464, 2466, 2468, 2469, 2471, 2473,
   
      2474, 2474, 2475, 2476, 2476, 2477, 2478, 2479, 2480, 2481,       2475, 2477, 2479, 2479, 2480, 2480, 2481, 2481, 2482, 2482,
      2482, 2483, 2484, 2485, 2486, 2487, 2488, 2489, 2490, 2491,       2483, 2484, 2484, 2485, 2486, 2487, 2488, 2489, 2490, 2491,
      2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501,       2492, 2493, 2494, 2495, 2496, 2497, 2498, 2499, 2500, 2501,
      2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511,       2502, 2503, 2504, 2505, 2506, 2507, 2508, 2509, 2510, 2511,
      2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521,       2512, 2513, 2514, 2515, 2516, 2517, 2518, 2519, 2520, 2521,
      2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531,       2522, 2523, 2524, 2525, 2526, 2527, 2528, 2529, 2530, 2531,
      2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541,       2532, 2533, 2534, 2535, 2536, 2537, 2538, 2539, 2540, 2541,
      2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550, 2551,       2542, 2543, 2544, 2545, 2546, 2547, 2548, 2549, 2550, 2551,
      2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2560,       2552, 2553, 2554, 2555, 2556, 2557, 2558, 2559, 2560, 2561,
      2561, 2562, 2563, 2564, 2565, 2566, 2567, 2568, 2569, 2570,       2562, 2563, 2564, 2565, 2566, 2567, 2568, 2568, 2569, 2570,
   
      2571, 2572, 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580,       2571, 2572, 2573, 2574, 2575, 2576, 2577, 2578, 2579, 2580,
      2581, 2582, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2589,       2581, 2582, 2583, 2584, 2585, 2586, 2587, 2588, 2589, 2590,
      2590, 2591, 2592, 2593, 2594, 2595, 2596, 2597, 2598, 2599,       2591, 2592, 2593, 2594, 2595, 2596, 2597, 2597, 2598, 2599,
      2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609,       2600, 2601, 2602, 2603, 2604, 2605, 2606, 2607, 2608, 2609,
      2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619,       2610, 2611, 2612, 2613, 2614, 2615, 2616, 2617, 2618, 2619,
      2620, 2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629,       2620, 2621, 2622, 2623, 2624, 2625, 2626, 2627, 2628, 2629,
Line 1862
 
Line 1790
      2730, 2731, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739,       2730, 2731, 2732, 2733, 2734, 2735, 2736, 2737, 2738, 2739,
      2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749,       2740, 2741, 2742, 2743, 2744, 2745, 2746, 2747, 2748, 2749,
      2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759,       2750, 2751, 2752, 2753, 2754, 2755, 2756, 2757, 2758, 2759,
      2760, 2761,  633,  632,  631,  630,  629,  628,  627,  626,       2760, 2761, 2762, 2763, 2764, 2765, 2766, 2767, 2768, 2769,
   
       625,  624,  623,  622,  621,  620,  619,  618,  617,  616,       2770, 2771, 2772, 2773, 2774,  633,  632,  631,  630,  629,
       615,  614,  613,  612,  611,  610,  609,  608,  607,  605,        628,  627,  626,  625,  624,  623,  622,  621,  620,  619,
       604,  603,  602,  600,  599,  597,  596,  595,  594,  593,        618,  617,  616,  615,  614,  613,  612,  611,  610,  609,
       592,  591,  590,  589,  587,  585,  584,  583,  582,  581,        608,  607,  605,  604,  603,  602,  600,  599,  597,  596,
       580,  579,  578,  577,  576,  575,  574,  573,  572,  571,        595,  594,  593,  592,  591,  590,  589,  587,  585,  584,
       570,  569,  568,  567,  565,  564,  563,  562,  561,  559,        583,  582,  581,  580,  579,  578,  577,  576,  575,  574,
       558,  557,  556,  555,  554,  553,  552,  551,  550,  549,        573,  572,  571,  570,  569,  568,  567,  565,  564,  563,
       547,  546,  545,  544,  542,  541,  539,  538,  537,  536,        562,  561,  559,  558,  557,  556,  555,  554,  553,  552,
       535,  534,  532,  531,  530,  529,  528,  527,  526,  525,        551,  550,  549,  547,  546,  545,  544,  542,  541,  539,
       524,  522,  521,  517,  516,  515,  514,  513,  512,  511,        538,  537,  536,  535,  534,  532,  531,  530,  529,  528,
   
       510,  507,  506,  504,  503,  502,  501,  500,  499,  498,        527,  526,  525,  524,  522,  521,  517,  516,  515,  514,
       497,  496,  495,  494,  493,  492,  491,  490,  489,  488,        513,  512,  511,  510,  507,  506,  504,  503,  502,  501,
       487,  485,  484,  483,  482,  481,  480,  479,  478,  477,        500,  499,  498,  497,  496,  495,  494,  493,  492,  491,
       476,  475,  473,  472,  471,  469,  468,  467,  466,  465,        490,  489,  488,  487,  485,  484,  483,  482,  481,  480,
       464,  463,  461,  460,  459,  457,  456,  455,  454,  453,        479,  478,  477,  476,  475,  473,  472,  471,  469,  468,
       452,  451,  449,  448,  447,  445,  444,  443,  442,  441,        467,  466,  465,  464,  463,  461,  460,  459,  457,  456,
       440,  439,  438,  437,  435,  433,  432,  431,  430,  429,        455,  454,  453,  452,  451,  449,  448,  447,  445,  444,
       428,  427,  426,  425,  424,  423,  422,  421,  420,  419,        443,  442,  441,  440,  439,  438,  437,  435,  433,  432,
       418,  417,  416,  415,  414,  413,  411,  410,  409,  408,        431,  430,  429,  428,  427,  426,  425,  424,  423,  422,
       407,  406,  405,  404,  403,  402,  401,  400,  399,  398,        421,  420,  419,  418,  417,  416,  415,  414,  413,  411,
   
       397,  396,  395,  394,  393,  392,  391,  390,  389,  387,        410,  409,  408,  407,  406,  405,  404,  403,  402,  401,
       386,  385,  384,  383,  381,  380,  379,  378,  377,  376,        400,  399,  398,  397,  396,  395,  394,  393,  392,  391,
       375,  374,  373,  372,  371,  370,  369,  368,  367,  366,        390,  389,  387,  386,  385,  384,  383,  381,  380,  379,
       365,  364,  361,  360,  358,  357,  356,  352,  350,  349,        378,  377,  376,  375,  374,  373,  372,  371,  370,  369,
       348,  347,  346,  345,  344,  343,  341,  340,  339,  338,        368,  367,  366,  365,  364,  361,  360,  358,  357,  356,
       337,  335,  333,  332,  331,  330,  328,  327,  326,  325,        352,  350,  349,  348,  347,  346,  345,  344,  343,  341,
       324,  323,  322,  321,  319,  318,  317,  316,  315,  314,        340,  339,  338,  337,  335,  333,  332,  331,  330,  328,
       313,  312,  311,  310,  309,  308,  307,  306,  303,  301,        327,  326,  325,  324,  323,  322,  321,  319,  318,  317,
       300,  299,  298,  297,  296,  295,  294,  293,  292,  291,        316,  315,  314,  313,  312,  311,  310,  309,  308,  307,
       290,  289,  288,  287,  286,  285,  284,  282,  281,  280,        306,  303,  301,  300,  299,  298,  297,  296,  295,  294,
   
       279,  278,  277,  276,  275,  274,  272,  271,  270,  268,        293,  292,  291,  290,  289,  288,  287,  286,  285,  284,
       267,  266,  264,  263,  261,  260,  259,  258,  257,  256,        282,  281,  280,  279,  278,  277,  276,  275,  274,  272,
       255,  254,  253,  252,  251,  250,  249,  248,  247,  246,        271,  270,  268,  267,  266,  264,  263,  261,  260,  259,
       245,  244,  243,  242,  241,  240,  239,  237,  236,  235,        258,  257,  256,  255,  254,  253,  252,  251,  250,  249,
       234,  233,  232,  231,  230,  229,  228,  227,  226,  225,        248,  247,  246,  245,  244,  243,  242,  241,  240,  239,
       223,  222,  221,  220,  219,  218,  217,  216,  215,  214,        237,  236,  235,  234,  233,  232,  231,  230,  229,  228,
       213,  212,  210,  209,  208,  206,  205,  204,  202,  201,        227,  226,  225,  223,  222,  221,  220,  219,  218,  217,
       200,  199,  198,  197,  196,  195,  194,  193,  190,  189,        216,  215,  214,  213,  212,  210,  209,  208,  206,  205,
       188,  187,  186,  185,  184,  183,  181,  180,  178,  176,        204,  202,  201,  200,  199,  198,  197,  196,  195,  194,
       174,  173,  172,  171,  170,  168,  165,  163,  162,  161,        193,  190,  189,  188,  187,  186,  185,  184,  183,  181,
   
       160,  159,  158,  157,  156,  155,  154,  153,  152,  151,        180,  178,  176,  174,  173,  172,  171,  170,  168,  165,
       150,  149,  148,  145,  141,  137,  136,  135,  132,  130,        163,  162,  161,  160,  159,  158,  157,  156,  155,  154,
       129,  128,  126,  125,  124,  123,  122,  121,  118,  116,        153,  152,  151,  150,  149,  148,  145,  141,  137,  136,
       115,  114,  113,  110,  109,  108,  107,  106,  105,  104,        135,  132,  130,  129,  128,  126,  125,  124,  123,  122,
       102,  101,  100,   98,   97,   94,   93,   92,   91,   90,        121,  118,  116,  115,  114,  113,  110,  109,  108,  107,
        89,   88,   87,   85,   84,   83,   82,   81,   80,   79,        106,  105,  104,  102,  101,  100,   98,   97,   94,   93,
        78,   77,   76,   75,   74,   73,   72,   71,   70,   69,         92,   91,   90,   89,   88,   87,   85,   84,   83,   82,
        68,   67,   66,   65,   63,   62,   61,   59,   58,   56,         81,   80,   79,   78,   77,   76,   75,   74,   73,   72,
        55,   53,   52,   51,   46,   42,   39,   36,   23,   12,         71,   70,   69,   68,   67,   66,   65,   63,   62,   61,
         9, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,         59,   58,   56,   55,   53,   52,   51,   46,   42,   39,
   
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,         36,   23,   12,    9, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470, 2470,       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
      2470, 2470, 2470, 2470, 2470       2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478,
        2478, 2478, 2478, 2478, 2478, 2478, 2478, 2478
     } ;      } ;
   
 static yy_state_type yy_last_accepting_state;  static yy_state_type yy_last_accepting_state;
 static char *yy_last_accepting_cpos;  static char *yy_last_accepting_cpos;
   
 extern int yy_flex_debug;  
 int yy_flex_debug = 0;  
   
 /* The intent behind this definition is that it'll catch  /* The intent behind this definition is that it'll catch
  * any uses of REJECT which flex missed.   * any uses of REJECT which flex missed.
  */   */
Line 1939
 
Line 1865
 #define YY_RESTORE_YY_MORE_OFFSET  #define YY_RESTORE_YY_MORE_OFFSET
 char *yytext;  char *yytext;
 #line 1 "loader.l"  #line 1 "loader.l"
   #define INITIAL 0
 #line 2 "loader.l"  #line 2 "loader.l"
 /*  /*
  * static char *rcsid_object_c =   * static char *rcsid_object_c =
  *   "$Id: loader.c,v 1.74 2005/12/05 23:01:30 akirschbaum Exp $";   *   "$Id: loader.c,v 1.75 2006/02/05 05:27:07 mwedel Exp $";
  */   */
   
 /*  /*
Line 1986
 
Line 1913
 static char msgbuf[HUGE_BUF];  static char msgbuf[HUGE_BUF];
 static char lorebuf[HUGE_BUF];  static char lorebuf[HUGE_BUF];
   
   /* Maps the MOVE_* values to names */
   static char *move_name[] = {"walk", "fly_low", "fly_high", "swim", NULL};
   
 /* This table is only necessary to convert objects that existed before the  /* This table is only necessary to convert objects that existed before the
  * spell object conversion to the new object.  It was not practical   * spell object conversion to the new object.  It was not practical
  * to go through every mapping looking for every potion, rod, wand, etc   * to go through every mapping looking for every potion, rod, wand, etc
Line 2478
 
Line 2408
     set_ob_key_value(op, key, value, TRUE);          set_ob_key_value(op, key, value, TRUE);   
 }  }
   
   static void set_move(MoveType *mt, char *params) {
       char *str;
       int i, negate;
   
       if (isdigit(*params)) {
    *mt = atoi(params);
       } else {
    *mt=0;
    for (str=strtok(params, " "); str; str=strtok(NULL, " ")) {
        negate=0;
        if (!strcasecmp(str, "all"))
    *mt |= MOVE_ALL;
        else {
    if (*str=='-') {
        negate = 1;
        str++;
    }
    for (i=0; move_name[i] != NULL; i++)  {
        if (!strcasecmp(move_name[i], str)) {
    if (negate) {
        *mt &= ~(1<<i);
    } else {
        *mt |= (1<<i);
    }
    break;
        }
    }
    if (move_name[i] == NULL) {
        /* fly is a special case - covers both fly_low and
         * fly_high - since it doesn't match to a specific
         * single bit, have to special case it.
         */
        if (!strcasecmp(str,"flying")) {
    if (negate) {
        *mt &= ~MOVE_FLYING;
    } else {
        *mt |= MOVE_FLYING;
    }
        } else {
    LOG(llevDebug, "common/loader.l: set_move - unknown move string '%s'\n", str);
        }
    }
        } /* Else not all move types */
    } /* for strtok */
       } /* Else not a numeric value */
   }
   
   
   
 /* Don't have to link with -lfl with this */  
 /* need yy_push_state, yy_pop_state */  
 #line 2488 "loader.c"  
   
 #define INITIAL 0  
 #define MESSAGE 1  #define MESSAGE 1
   
 #define LORE 2  #define LORE 2
 #define SCRIPT 3  
   
 #ifndef YY_NO_UNISTD_H  #define SCRIPT 3
 /* Special case for "unistd.h", since it is non-ANSI. We include it way  
  * down here because we want the user's section 1 to have been scanned first.  
  * The user has a chance to override it with an option.  
  */  
 #include <unistd.h>  
 #endif  
   
 #ifndef YY_EXTRA_TYPE  /* Don't have to link with -lfl with this */
 #define YY_EXTRA_TYPE void *  /* need yy_push_state, yy_pop_state */
 #endif  #define YY_STACK_USED 1
   #line 2468 "loader.c"
   
 /* Macros after this point can all be overridden by user definitions in  /* Macros after this point can all be overridden by user definitions in
  * section 1.   * section 1.
Line 2509
 
Line 2472
   
 #ifndef YY_SKIP_YYWRAP  #ifndef YY_SKIP_YYWRAP
 #ifdef __cplusplus  #ifdef __cplusplus
 extern "C" int yywrap (void );  extern "C" int yywrap YY_PROTO(( void ));
 #else  #else
 extern int yywrap (void );  extern int yywrap YY_PROTO(( void ));
 #endif  #endif
 #endif  #endif
   
     static void yyunput (int c,char *buf_ptr  );  #ifndef YY_NO_UNPUT
   static void yyunput YY_PROTO(( int c, char *buf_ptr ));
   #endif
          
 #ifndef yytext_ptr  #ifndef yytext_ptr
 static void yy_flex_strncpy (char *,yyconst char *,int );  static void yy_flex_strncpy YY_PROTO(( char *, yyconst char *, int ));
 #endif  #endif
   
 #ifdef YY_NEED_STRLEN  #ifdef YY_NEED_STRLEN
 static int yy_flex_strlen (yyconst char * );  static int yy_flex_strlen YY_PROTO(( yyconst char * ));
 #endif  #endif
   
 #ifndef YY_NO_INPUT  #ifndef YY_NO_INPUT
   
 #ifdef __cplusplus  #ifdef __cplusplus
 static int yyinput (void );  static int yyinput YY_PROTO(( void ));
 #else  #else
 static int input (void );  static int input YY_PROTO(( void ));
 #endif  #endif
   
 #endif  #endif
   
   #if YY_STACK_USED
         static int yy_start_stack_ptr = 0;          static int yy_start_stack_ptr = 0;
         static int yy_start_stack_depth = 0;          static int yy_start_stack_depth = 0;
         static int *yy_start_stack = 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
          
     static void yy_push_state (int new_state );  #else
       #define YY_NO_PUSH_STATE 1
     static void yy_pop_state (void );  #define YY_NO_POP_STATE 1
   #define YY_NO_TOP_STATE 1
   #endif
          
     static int yy_top_state (void );  #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. */  /* Amount of stuff to slurp up with each read. */
 #ifndef YY_READ_BUF_SIZE  #ifndef YY_READ_BUF_SIZE
Line 2551
 
Line 2539
 #endif  #endif
   
 /* Copy whatever the last rule matched to the standard output. */  /* Copy whatever the last rule matched to the standard output. */
   
 #ifndef ECHO  #ifndef ECHO
 /* This used to be an fputs(), but since the string might contain NUL's,  /* This used to be an fputs(), but since the string might contain NUL's,
  * we now use fwrite().   * we now use fwrite().
Line 2563
 
Line 2552
  */   */
 #ifndef YY_INPUT  #ifndef YY_INPUT
 #define YY_INPUT(buf,result,max_size) \  #define YY_INPUT(buf,result,max_size) \
  if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \   if ( yy_current_buffer->yy_is_interactive ) \
  { \   { \
  int c = '*'; \   int c = '*', n; \
  size_t n; \  
  for ( n = 0; n < max_size && \   for ( n = 0; n < max_size && \
       (c = getc( yyin )) != EOF && c != '\n'; ++n ) \        (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
  buf[n] = (char) c; \   buf[n] = (char) c; \
Line 2576
 
Line 2564
  YY_FATAL_ERROR( "input in flex scanner failed" ); \   YY_FATAL_ERROR( "input in flex scanner failed" ); \
  result = n; \   result = n; \
  } \   } \
  else \   else if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \
  { \     && ferror( yyin ) ) \
  errno=0; \   YY_FATAL_ERROR( "input in flex scanner failed" );
  while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \  
  { \  
  if( errno != EINTR) \  
  { \  
  YY_FATAL_ERROR( "input in flex scanner failed" ); \  
  break; \  
  } \  
  errno=0; \  
  clearerr(yyin); \  
  } \  
  }\  
 \  
   
 #endif  #endif
   
 /* No semi-colon after return; correct usage is to write "yyterminate();" -  /* No semi-colon after return; correct usage is to write "yyterminate();" -
Line 2612
 
Line 2587
 #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )  #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
 #endif  #endif
   
 /* end tables serialization structures and prototypes */  
   
 /* Default declaration of generated scanner - a define so the user can  /* Default declaration of generated scanner - a define so the user can
  * easily add parameters.   * easily add parameters.
  */   */
 #ifndef YY_DECL  #ifndef YY_DECL
 #define YY_DECL_IS_OURS 1  #define YY_DECL int yylex YY_PROTO(( void ))
   #endif
 extern int yylex (void);  
   
 #define YY_DECL int yylex (void)  
 #endif /* !YY_DECL */  
   
 /* Code executed at the beginning of each rule, after yytext and yyleng  /* Code executed at the beginning of each rule, after yytext and yyleng
  * have been set up.   * have been set up.
Line 2639
 
Line 2608
   
 #define YY_RULE_SETUP \  #define YY_RULE_SETUP \
  if ( yyleng > 0 ) \   if ( yyleng > 0 ) \
  YY_CURRENT_BUFFER_LVALUE->yy_at_bol = \   yy_current_buffer->yy_at_bol = \
  (yytext[yyleng - 1] == '\n'); \   (yytext[yyleng - 1] == '\n'); \
  YY_USER_ACTION   YY_USER_ACTION
   
 /** The main scanner function which does all the work.  
  */  
 YY_DECL  YY_DECL
 {  {
  register yy_state_type yy_current_state;   register yy_state_type yy_current_state;
  register char *yy_cp, *yy_bp;   register char *yy_cp, *yy_bp;
  register int yy_act;   register int yy_act;
          
 #line 559 "loader.l"  #line 608 "loader.l"
   
   
   
Line 2662
 
Line 2629
   
   
   
 #line 2666 "loader.c"  #line 2633 "loader.c"
   
  if ( (yy_init) )   if ( yy_init )
  {   {
  (yy_init) = 0;   yy_init = 0;
   
 #ifdef YY_USER_INIT  #ifdef YY_USER_INIT
  YY_USER_INIT;   YY_USER_INIT;
 #endif  #endif
   
  if ( ! (yy_start) )   if ( ! yy_start )
  (yy_start) = 1; /* first start state */   yy_start = 1; /* first start state */
   
  if ( ! yyin )   if ( ! yyin )
  yyin = stdin;   yyin = stdin;
Line 2681
 
Line 2648
  if ( ! yyout )   if ( ! yyout )
  yyout = stdout;   yyout = stdout;
   
  if ( ! YY_CURRENT_BUFFER ) {   if ( ! yy_current_buffer )
  yyensure_buffer_stack ();   yy_current_buffer =
  YY_CURRENT_BUFFER_LVALUE =  
  yy_create_buffer(yyin,YY_BUF_SIZE );   yy_create_buffer(yyin,YY_BUF_SIZE );
  }  
   
  yy_load_buffer_state( );   yy_load_buffer_state( );
  }   }
   
  while ( 1 ) /* loops until end-of-file is reached */   while ( 1 ) /* loops until end-of-file is reached */
  {   {
  yy_cp = (yy_c_buf_p);   yy_cp = yy_c_buf_p;
   
  /* Support of yytext. */   /* Support of yytext. */
  *yy_cp = (yy_hold_char);   *yy_cp = yy_hold_char;
   
  /* yy_bp points to the position in yy_ch_buf of the start of   /* yy_bp points to the position in yy_ch_buf of the start of
  * the current run.   * the current run.
  */   */
  yy_bp = yy_cp;   yy_bp = yy_cp;
   
  yy_current_state = (yy_start);   yy_current_state = yy_start;
  yy_current_state += YY_AT_BOL();   yy_current_state += YY_AT_BOL();
 yy_match:  yy_match:
  do   do
Line 2710
 
Line 2675
  register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];   register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
  if ( yy_accept[yy_current_state] )   if ( yy_accept[yy_current_state] )
  {   {
  (yy_last_accepting_state) = yy_current_state;   yy_last_accepting_state = yy_current_state;
  (yy_last_accepting_cpos) = yy_cp;   yy_last_accepting_cpos = yy_cp;
  }   }
  while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )   while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  {   {
  yy_current_state = (int) yy_def[yy_current_state];   yy_current_state = (int) yy_def[yy_current_state];
  if ( yy_current_state >= 2471 )   if ( yy_current_state >= 2479 )
  yy_c = yy_meta[(unsigned int) yy_c];   yy_c = yy_meta[(unsigned int) yy_c];
  }   }
  yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];   yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  ++yy_cp;   ++yy_cp;
  }   }
  while ( yy_base[yy_current_state] != 2792 );   while ( yy_base[yy_current_state] != 2805 );
   
 yy_find_action:  yy_find_action:
  yy_act = yy_accept[yy_current_state];   yy_act = yy_accept[yy_current_state];
  if ( yy_act == 0 )   if ( yy_act == 0 )
  { /* have to back up */   { /* have to back up */
  yy_cp = (yy_last_accepting_cpos);   yy_cp = yy_last_accepting_cpos;
  yy_current_state = (yy_last_accepting_state);   yy_current_state = yy_last_accepting_state;
  yy_act = yy_accept[yy_current_state];   yy_act = yy_accept[yy_current_state];
  }   }
   
  YY_DO_BEFORE_ACTION;   YY_DO_BEFORE_ACTION;
   
   
 do_action: /* This label is used only to access EOF actions. */  do_action: /* This label is used only to access EOF actions. */
   
   
  switch ( yy_act )   switch ( yy_act )
  { /* beginning of action switch */   { /* beginning of action switch */
  case 0: /* must back up */   case 0: /* must back up */
  /* undo the effects of YY_DO_BEFORE_ACTION */   /* undo the effects of YY_DO_BEFORE_ACTION */
  *yy_cp = (yy_hold_char);   *yy_cp = yy_hold_char;
  yy_cp = (yy_last_accepting_cpos);   yy_cp = yy_last_accepting_cpos;
  yy_current_state = (yy_last_accepting_state);   yy_current_state = yy_last_accepting_state;
  goto yy_find_action;   goto yy_find_action;
   
 case 1:  case 1:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 569 "loader.l"  #line 618 "loader.l"
 { BEGIN( MESSAGE ); msgbuf[0]='\0'; }  { BEGIN( MESSAGE ); msgbuf[0]='\0'; }
  YY_BREAK   YY_BREAK
 case 2:  case 2:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 570 "loader.l"  #line 619 "loader.l"
 { BEGIN( INITIAL );  { BEGIN( INITIAL );
  op->msg=add_string(msgbuf);   op->msg=add_string(msgbuf);
  /* Just print a warning so we can be reasonably safe   /* Just print a warning so we can be reasonably safe
Line 2772
 
Line 2739
  YY_BREAK   YY_BREAK
 case 3:  case 3:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 579 "loader.l"  #line 628 "loader.l"
 {strcat(msgbuf, yytext); strcat(msgbuf,"\n"); }  {strcat(msgbuf, yytext); strcat(msgbuf,"\n"); }
  YY_BREAK   YY_BREAK
 case 4:  case 4:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 581 "loader.l"  #line 630 "loader.l"
 { BEGIN( LORE ); lorebuf[0]='\0'; }  { BEGIN( LORE ); lorebuf[0]='\0'; }
  YY_BREAK   YY_BREAK
 case 5:  case 5:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 582 "loader.l"  #line 631 "loader.l"
 { BEGIN( INITIAL );  { BEGIN( INITIAL );
  op->lore=add_string(lorebuf);   op->lore=add_string(lorebuf);
  /* Just print a warning so we can be reasonably safe   /* Just print a warning so we can be reasonably safe
Line 2801
 
Line 2768
  YY_BREAK   YY_BREAK
 case 6:  case 6:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 591 "loader.l"  #line 640 "loader.l"
 {strcat(lorebuf, yytext); strcat(lorebuf,"\n"); }  {strcat(lorebuf, yytext); strcat(lorebuf,"\n"); }
  YY_BREAK   YY_BREAK
 case 7:  case 7:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 593 "loader.l"  #line 642 "loader.l"
 { char *yv=yval();  { char *yv=yval();
   
  if (*yv=='\0') {   if (*yv=='\0') {
Line 2823
 
Line 2790
  YY_BREAK   YY_BREAK
 case 8:  case 8:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 607 "loader.l"  #line 656 "loader.l"
 { char *yv=yval();  { char *yv=yval();
   
  if (*yv=='\0') LOG(llevError,"Name without val\n");   if (*yv=='\0') LOG(llevError,"Name without val\n");
Line 2832
 
Line 2799
  YY_BREAK   YY_BREAK
 case 9:  case 9:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 612 "loader.l"  #line 661 "loader.l"
 { char *yv=yval();  { char *yv=yval();
   
  if (*yv=='\0') LOG(llevError,"Name without val\n");   if (*yv=='\0') LOG(llevError,"Name without val\n");
Line 2841
 
Line 2808
  YY_BREAK   YY_BREAK
 case 10:  case 10:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 617 "loader.l"  #line 666 "loader.l"
 FREE_AND_COPY(op->skill,yval());  FREE_AND_COPY(op->skill,yval());
  YY_BREAK   YY_BREAK
 case 11:  case 11:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 618 "loader.l"  #line 667 "loader.l"
 { char *yv=yval();  { char *yv=yval();
   
  if (*yv=='\0') LOG(llevError,"Custom name without val\n");   if (*yv=='\0') LOG(llevError,"Custom name without val\n");
Line 2855
 
Line 2822
  YY_BREAK   YY_BREAK
 case 12:  case 12:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 623 "loader.l"  #line 672 "loader.l"
 FREE_AND_COPY(op->race,yval());  FREE_AND_COPY(op->race,yval());
  YY_BREAK   YY_BREAK
 case 13:  case 13:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 624 "loader.l"  #line 673 "loader.l"
 FREE_AND_COPY(op->slaying, yval());  FREE_AND_COPY(op->slaying, yval());
  YY_BREAK   YY_BREAK
 case 14:  case 14:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 625 "loader.l"  #line 674 "loader.l"
 LOG(llevError,"Got depreciated Inventory command?\n");  LOG(llevError,"Got depreciated Inventory command?\n");
  YY_BREAK   YY_BREAK
 case 15:  case 15:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 628 "loader.l"  #line 677 "loader.l"
 { /* If op->arch has been set, then this new object  { /* If op->arch has been set, then this new object
  * must be part of the inventory.  So process   * must be part of the inventory.  So process
  * appropriately.   * appropriately.
Line 2918
 
Line 2885
  YY_BREAK   YY_BREAK
 case 16:  case 16:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 670 "loader.l"  #line 719 "loader.l"
 op->other_arch=find_archetype(yval());  op->other_arch=find_archetype(yval());
  YY_BREAK   YY_BREAK
 case 17:  case 17:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 671 "loader.l"  #line 720 "loader.l"
 {  {
  if (strcmp (yval(), "NONE") == 0) {   if (strcmp (yval(), "NONE") == 0) {
      op->animation_id = 0;       op->animation_id = 0;
Line 2935
 
Line 2902
      }       }
  YY_BREAK   YY_BREAK
 case 18:  case 18:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 681 "loader.l"  #line 730 "loader.l"
 { /* We need to record that this is a multipart object,  { /* We need to record that this is a multipart object,
         * so the calling function can glue things back together          * so the calling function can glue things back together
         */          */
Line 2947
 
Line 2914
      }       }
  YY_BREAK   YY_BREAK
 case 19:  case 19:
 *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */  *yy_cp = yy_hold_char; /* undo effects of setting up yytext */
 (yy_c_buf_p) = yy_cp -= 1;  yy_c_buf_p = yy_cp -= 1;
 YY_DO_BEFORE_ACTION; /* set up yytext again */  YY_DO_BEFORE_ACTION; /* set up yytext again */
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 687 "loader.l"  #line 736 "loader.l"
 { check_loaded_object(op);  { check_loaded_object(op);
  if (ismore) return LL_MORE;    if (ismore) return LL_MORE;
  else return LL_NORMAL;   else return LL_NORMAL;
Line 2959
 
Line 2926
  YY_BREAK   YY_BREAK
 case 20:  case 20:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 691 "loader.l"  #line 740 "loader.l"
 op->last_heal = IVAL;  op->last_heal = IVAL;
  YY_BREAK   YY_BREAK
 case 21:  case 21:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 692 "loader.l"  #line 741 "loader.l"
 op->last_sp = IVAL;  op->last_sp = IVAL;
  YY_BREAK   YY_BREAK
 case 22:  case 22:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 693 "loader.l"  #line 742 "loader.l"
 op->last_grace = IVAL;  op->last_grace = IVAL;
  YY_BREAK   YY_BREAK
 case 23:  case 23:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 694 "loader.l"  #line 743 "loader.l"
 op->last_eat = IVAL;  op->last_eat = IVAL;
  YY_BREAK   YY_BREAK
 case 24:  case 24:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 695 "loader.l"  #line 744 "loader.l"
 { op->speed = FVAL;  { op->speed = FVAL;
  if (!(map_flags & MAP_STYLE)) {   if (!(map_flags & MAP_STYLE)) {
      if (op->speed<0) op->speed_left = op->speed_left-RANDOM()%100/100.0;       if (op->speed<0) op->speed_left = op->speed_left-RANDOM()%100/100.0;
Line 2989
 
Line 2956
  YY_BREAK   YY_BREAK
 case 25:  case 25:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 701 "loader.l"  #line 750 "loader.l"
 op->speed_left = FVAL;  op->speed_left = FVAL;
  YY_BREAK   YY_BREAK
 case 26:  case 26:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 702 "loader.l"  #line 751 "loader.l"
 { op->move_slow |= MOVE_WALK;  { op->move_slow |= MOVE_WALK;
  op->move_slow_penalty = FVAL;   op->move_slow_penalty = FVAL;
      }       }
  YY_BREAK   YY_BREAK
 case 27:  case 27:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 705 "loader.l"  #line 754 "loader.l"
 { char *y=yval();  { char *y=yval();
  if (*y=='\0') LOG(llevError,"Title without value.\n");   if (*y=='\0') LOG(llevError,"Title without value.\n");
  else FREE_AND_COPY(op->title, y);   else FREE_AND_COPY(op->title, y);
Line 3009
 
Line 2976
  YY_BREAK   YY_BREAK
 case 28:  case 28:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 710 "loader.l"  #line 759 "loader.l"
 op->face = &new_faces[FindFace(yval(), 0)];  op->face = &new_faces[FindFace(yval(), 0)];
  YY_BREAK   YY_BREAK
 case 29:  case 29:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 711 "loader.l"  #line 760 "loader.l"
 op->stats.Str = IVAL;  op->stats.Str = IVAL;
  YY_BREAK   YY_BREAK
 case 30:  case 30:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 712 "loader.l"  #line 761 "loader.l"
 op->stats.Dex = IVAL;  op->stats.Dex = IVAL;
  YY_BREAK   YY_BREAK
 case 31:  case 31:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 713 "loader.l"  #line 762 "loader.l"
 op->stats.Con = IVAL;  op->stats.Con = IVAL;
  YY_BREAK   YY_BREAK
 case 32:  case 32:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 714 "loader.l"  #line 763 "loader.l"
 op->stats.Wis = IVAL;  op->stats.Wis = IVAL;
  YY_BREAK   YY_BREAK
 case 33:  case 33:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 715 "loader.l"  #line 764 "loader.l"
 op->stats.Cha = IVAL;  op->stats.Cha = IVAL;
  YY_BREAK   YY_BREAK
 case 34:  case 34:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 716 "loader.l"  #line 765 "loader.l"
 op->stats.Int = IVAL;  op->stats.Int = IVAL;
  YY_BREAK   YY_BREAK
 case 35:  case 35:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 717 "loader.l"  #line 766 "loader.l"
 op->stats.Pow = IVAL;  op->stats.Pow = IVAL;
  YY_BREAK   YY_BREAK
 case 36:  case 36:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 718 "loader.l"  #line 767 "loader.l"
 op->stats.hp = IVAL;  op->stats.hp = IVAL;
  YY_BREAK   YY_BREAK
 case 37:  case 37:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 719 "loader.l"  #line 768 "loader.l"
 op->stats.maxhp = IVAL;  op->stats.maxhp = IVAL;
  YY_BREAK   YY_BREAK
 case 38:  case 38:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 720 "loader.l"  #line 769 "loader.l"
 op->stats.sp = IVAL;  op->stats.sp = IVAL;
  YY_BREAK   YY_BREAK
 case 39:  case 39:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 721 "loader.l"  #line 770 "loader.l"
 op->stats.maxsp = IVAL;  op->stats.maxsp = IVAL;
  YY_BREAK   YY_BREAK
 case 40:  case 40:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 722 "loader.l"  #line 771 "loader.l"
 op->stats.grace = IVAL;  op->stats.grace = IVAL;
  YY_BREAK   YY_BREAK
 case 41:  case 41:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 723 "loader.l"  #line 772 "loader.l"
 op->stats.maxgrace = IVAL;  op->stats.maxgrace = IVAL;
  YY_BREAK   YY_BREAK
 case 42:  case 42:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 724 "loader.l"  #line 773 "loader.l"
 op->stats.exp = atoll(yval());  op->stats.exp = atoll(yval());
  YY_BREAK   YY_BREAK
 case 43:  case 43:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 725 "loader.l"  #line 774 "loader.l"
 op->perm_exp = atoll(yval());  op->perm_exp = atoll(yval());
  YY_BREAK   YY_BREAK
 case 44:  case 44:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 726 "loader.l"  #line 775 "loader.l"
 op->stats.food = IVAL;  op->stats.food = IVAL;
  YY_BREAK   YY_BREAK
 case 45:  case 45:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 727 "loader.l"  #line 776 "loader.l"
 op->stats.dam = IVAL;  op->stats.dam = IVAL;
  YY_BREAK   YY_BREAK
 case 46:  case 46:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 728 "loader.l"  #line 777 "loader.l"
 op->stats.wc = IVAL;  op->stats.wc = IVAL;
  YY_BREAK   YY_BREAK
 case 47:  case 47:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 729 "loader.l"  #line 778 "loader.l"
 op->stats.ac = IVAL;  op->stats.ac = IVAL;
  YY_BREAK   YY_BREAK
 case 48:  case 48:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 730 "loader.l"  #line 779 "loader.l"
 {op->x = IVAL; op->ox= op->x; }  {op->x = IVAL; op->ox= op->x; }
  YY_BREAK   YY_BREAK
 case 49:  case 49:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 731 "loader.l"  #line 780 "loader.l"
 {op->y = IVAL; op->oy= op->y; }  {op->y = IVAL; op->oy= op->y; }
  YY_BREAK   YY_BREAK
 case 50:  case 50:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 732 "loader.l"  #line 781 "loader.l"
 op->nrof= atol(yval());  op->nrof= atol(yval());
  YY_BREAK   YY_BREAK
 case 51:  case 51:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 733 "loader.l"  #line 782 "loader.l"
 op->level = IVAL;  op->level = IVAL;
  YY_BREAK   YY_BREAK
 case 52:  case 52:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 734 "loader.l"  #line 783 "loader.l"
 op->direction = IVAL;  op->direction = IVAL;
  YY_BREAK   YY_BREAK
 case 53:  case 53:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 735 "loader.l"  #line 784 "loader.l"
 op->type = IVAL;  op->type = IVAL;
  YY_BREAK   YY_BREAK
 case 54:  case 54:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 736 "loader.l"  #line 785 "loader.l"
 op->subtype = IVAL;  op->subtype = IVAL;
  YY_BREAK   YY_BREAK
 case 55:  case 55:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 737 "loader.l"  #line 786 "loader.l"
 op->material = IVAL;  op->material = IVAL;
  YY_BREAK   YY_BREAK
 case 56:  case 56:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 738 "loader.l"  #line 787 "loader.l"
 { char *yv=yval();  { char *yv=yval();
  if (*yv=='\0')   if (*yv=='\0')
      LOG(llevError,"Materialname without val\n");       LOG(llevError,"Materialname without val\n");
Line 3159
 
Line 3126
  YY_BREAK   YY_BREAK
 case 57:  case 57:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 745 "loader.l"  #line 794 "loader.l"
 op->value = IVAL;  op->value = IVAL;
  YY_BREAK   YY_BREAK
 case 58:  case 58:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 746 "loader.l"  #line 795 "loader.l"
 op->weight = atol(yval());  op->weight = atol(yval());
  YY_BREAK   YY_BREAK
 case 59:  case 59:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 747 "loader.l"  #line 796 "loader.l"
 op->carrying = atol(yval());  op->carrying = atol(yval());
  YY_BREAK   YY_BREAK
 case 60:  case 60:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 748 "loader.l"  #line 797 "loader.l"
 op->attacktype = IVAL;  op->attacktype = IVAL;
  YY_BREAK   YY_BREAK
 case 61:  case 61:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 749 "loader.l"  #line 798 "loader.l"
 op->path_attuned = IVAL;  op->path_attuned = IVAL;
  YY_BREAK   YY_BREAK
 case 62:  case 62:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 750 "loader.l"  #line 799 "loader.l"
 op->path_repelled = IVAL;  op->path_repelled = IVAL;
  YY_BREAK   YY_BREAK
 case 63:  case 63:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 751 "loader.l"  #line 800 "loader.l"
 op->path_denied = IVAL;  op->path_denied = IVAL;
  YY_BREAK   YY_BREAK
 case 64:  case 64:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 752 "loader.l"  #line 801 "loader.l"
 op->invisible = IVAL;  op->invisible = IVAL;
  YY_BREAK   YY_BREAK
 case 65:  case 65:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 753 "loader.l"  #line 802 "loader.l"
 op->magic = IVAL;  op->magic = IVAL;
  YY_BREAK   YY_BREAK
 case 66:  case 66:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 754 "loader.l"  #line 803 "loader.l"
 op->state = IVAL;  op->state = IVAL;
  YY_BREAK   YY_BREAK
 case 67:  case 67:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 755 "loader.l"  #line 804 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ALIVE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ALIVE, IVAL);
  YY_BREAK   YY_BREAK
 case 68:  case 68:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 756 "loader.l"  #line 805 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_APPLIED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_APPLIED, IVAL);
  YY_BREAK   YY_BREAK
 case 69:  case 69:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 757 "loader.l"  #line 806 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_UNPAID, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_UNPAID, IVAL);
  YY_BREAK   YY_BREAK
 case 70:  case 70:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 758 "loader.l"  #line 807 "loader.l"
 { /* not used - just ignore */ }  { /* not used - just ignore */ }
  YY_BREAK   YY_BREAK
 case 71:  case 71:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 759 "loader.l"  #line 808 "loader.l"
 { /* not used - jsut ignore */ }  { /* not used - jsut ignore */ }
  YY_BREAK   YY_BREAK
 case 72:  case 72:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 760 "loader.l"  #line 809 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ANIMATE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ANIMATE, IVAL);
  YY_BREAK   YY_BREAK
 case 73:  case 73:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 761 "loader.l"  #line 810 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_PICK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_PICK, IVAL);
  YY_BREAK   YY_BREAK
  /* These are all legacy - any new objects should use the move_ .. values */    /* These are all legacy - any new objects should use the move_ .. values */
   
 case 74:  case 74:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 765 "loader.l"  #line 814 "loader.l"
 { if (IVAL) op->move_block = MOVE_ALL; else op->move_block=0; }  { if (IVAL) op->move_block = MOVE_ALL; else op->move_block=0; }
  YY_BREAK   YY_BREAK
 case 75:  case 75:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 766 "loader.l"  #line 815 "loader.l"
 { if (IVAL) op->move_on |= MOVE_WALK; else op->move_on &= ~MOVE_WALK; }  { if (IVAL) op->move_on |= MOVE_WALK; else op->move_on &= ~MOVE_WALK; }
  YY_BREAK   YY_BREAK
 case 76:  case 76:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 767 "loader.l"  #line 816 "loader.l"
 { if (IVAL) op->move_off |= MOVE_WALK; else op->move_off &= ~MOVE_WALK; }  { if (IVAL) op->move_off |= MOVE_WALK; else op->move_off &= ~MOVE_WALK; }
  YY_BREAK   YY_BREAK
 case 77:  case 77:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 768 "loader.l"  #line 817 "loader.l"
 { if (IVAL) op->move_on |= MOVE_FLY_LOW; else op->move_on &= ~MOVE_FLY_LOW; }  { if (IVAL) op->move_on |= MOVE_FLY_LOW; else op->move_on &= ~MOVE_FLY_LOW; }
  YY_BREAK   YY_BREAK
 case 78:  case 78:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 769 "loader.l"  #line 818 "loader.l"
 { if (IVAL) op->move_off |= MOVE_FLY_LOW; else op->move_off &= ~MOVE_FLY_LOW; }  { if (IVAL) op->move_off |= MOVE_FLY_LOW; else op->move_off &= ~MOVE_FLY_LOW; }
  YY_BREAK   YY_BREAK
 case 79:  case 79:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 770 "loader.l"  #line 819 "loader.l"
 { if (IVAL) op->move_type |= MOVE_FLY_LOW; else op->move_type &= ~MOVE_FLY_LOW; }  { if (IVAL) op->move_type |= MOVE_FLY_LOW; else op->move_type &= ~MOVE_FLY_LOW; }
  YY_BREAK   YY_BREAK
  /* These are the new values */    /* These are the new values */
   
 case 80:  case 80:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 774 "loader.l"  #line 823 "loader.l"
 op->move_block = IVAL;  set_move(&op->move_block, yval());
  YY_BREAK   YY_BREAK
 case 81:  case 81:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 775 "loader.l"  #line 824 "loader.l"
 op->move_type = IVAL;  set_move(&op->move_allow, yval());
  YY_BREAK   YY_BREAK
 case 82:  case 82:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 776 "loader.l"  #line 825 "loader.l"
 op->move_on = IVAL;  set_move(&op->move_type, yval());
  YY_BREAK   YY_BREAK
 case 83:  case 83:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 777 "loader.l"  #line 826 "loader.l"
 op->move_off = IVAL;  set_move(&op->move_on, yval());
  YY_BREAK   YY_BREAK
 case 84:  case 84:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 778 "loader.l"  #line 827 "loader.l"
 op->move_slow = IVAL;  set_move(&op->move_off, yval());
  YY_BREAK   YY_BREAK
 case 85:  case 85:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 779 "loader.l"  #line 828 "loader.l"
 op->move_slow_penalty = FVAL;  set_move(&op->move_slow, yval());
  YY_BREAK   YY_BREAK
 case 86:  case 86:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 782 "loader.l"  #line 829 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_MONSTER, IVAL);  op->move_slow_penalty = FVAL;
  YY_BREAK   YY_BREAK
 case 87:  case 87:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 783 "loader.l"  #line 832 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NEUTRAL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_MONSTER, IVAL);
  YY_BREAK   YY_BREAK
 case 88:  case 88:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 784 "loader.l"  #line 833 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_ATTACK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NEUTRAL, IVAL);
  YY_BREAK   YY_BREAK
 case 89:  case 89:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 785 "loader.l"  #line 834 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_DAMAGE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_ATTACK, IVAL);
  YY_BREAK   YY_BREAK
 case 90:  case 90:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 786 "loader.l"  #line 835 "loader.l"
   SET_OR_CLEAR_FLAG(op, FLAG_NO_DAMAGE, IVAL);
    YY_BREAK
   case 91:
   YY_RULE_SETUP
   #line 836 "loader.l"
 { if (IVAL) {  { if (IVAL) {
      SET_FLAG(op, FLAG_FRIENDLY);       SET_FLAG(op, FLAG_FRIENDLY);
      if (op->type != PLAYER) {       if (op->type != PLAYER) {
Line 3339
 
Line 3311
  else CLEAR_FLAG(op, FLAG_FRIENDLY);   else CLEAR_FLAG(op, FLAG_FRIENDLY);
      }       }
  YY_BREAK   YY_BREAK
 case 91:  case 92:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 795 "loader.l"  #line 845 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_GENERATOR, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_GENERATOR, IVAL);
  YY_BREAK   YY_BREAK
 case 92:  case 93:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 796 "loader.l"  #line 846 "loader.l"
 SET_OR_CLEAR_FLAG (op,FLAG_CONTENT_ON_GEN, IVAL);  SET_OR_CLEAR_FLAG (op,FLAG_CONTENT_ON_GEN, IVAL);
  YY_BREAK   YY_BREAK
 case 93:  case 94:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 797 "loader.l"  #line 847 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_THROWN, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_THROWN, IVAL);
  YY_BREAK   YY_BREAK
 case 94:  case 95:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 798 "loader.l"  #line 848 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_AUTO_APPLY, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_AUTO_APPLY, IVAL);
  YY_BREAK   YY_BREAK
 case 95:  case 96:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 799 "loader.l"  #line 849 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_TREASURE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_TREASURE, IVAL);
  YY_BREAK   YY_BREAK
 case 96:  case 97:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 800 "loader.l"  #line 850 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_SEE_INVISIBLE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_SEE_INVISIBLE, IVAL);
  YY_BREAK   YY_BREAK
 case 97:  case 98:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 801 "loader.l"  #line 851 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CAN_ROLL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CAN_ROLL, IVAL);
  YY_BREAK   YY_BREAK
 case 98:  case 99:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 802 "loader.l"  #line 852 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_OVERLAY_FLOOR, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_OVERLAY_FLOOR, IVAL);
  YY_BREAK   YY_BREAK
 case 99:  case 100:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 803 "loader.l"  #line 853 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_TURNABLE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_TURNABLE, IVAL);
  YY_BREAK   YY_BREAK
 case 100:  case 101:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 804 "loader.l"  #line 854 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_USED_UP, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_USED_UP, IVAL);
  YY_BREAK   YY_BREAK
 case 101:  case 102:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 805 "loader.l"  #line 855 "loader.l"
 { if (IVAL) {  { if (IVAL) {
      SET_FLAG(op, FLAG_IDENTIFIED);       SET_FLAG(op, FLAG_IDENTIFIED);
      CLEAR_FLAG(op, FLAG_KNOWN_MAGICAL);       CLEAR_FLAG(op, FLAG_KNOWN_MAGICAL);
Line 3399
 
Line 3371
  else CLEAR_FLAG(op, FLAG_IDENTIFIED);   else CLEAR_FLAG(op, FLAG_IDENTIFIED);
      }       }
  YY_BREAK   YY_BREAK
 case 102:  case 103:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 811 "loader.l"  #line 861 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_REFLECTING, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_REFLECTING, IVAL);
  YY_BREAK   YY_BREAK
 case 103:  case 104:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 812 "loader.l"  #line 862 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CHANGING, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CHANGING, IVAL);
  YY_BREAK   YY_BREAK
 case 104:  case 105:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 813 "loader.l"  #line 863 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_SPLITTING, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_SPLITTING, IVAL);
  YY_BREAK   YY_BREAK
 case 105:  case 106:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 814 "loader.l"  #line 864 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_HITBACK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_HITBACK, IVAL);
  YY_BREAK   YY_BREAK
 case 106:  case 107:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 815 "loader.l"  #line 865 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_STARTEQUIP, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_STARTEQUIP, IVAL);
  YY_BREAK   YY_BREAK
 case 107:  case 108:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 816 "loader.l"  #line 866 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_BLOCKSVIEW, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_BLOCKSVIEW, IVAL);
  YY_BREAK   YY_BREAK
 case 108:  case 109:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 817 "loader.l"  #line 867 "loader.l"
 op->arch->editable = IVAL;  op->arch->editable = IVAL;
  YY_BREAK   YY_BREAK
 case 109:  case 110:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 818 "loader.l"  #line 868 "loader.l"
 { }  { }
  YY_BREAK   YY_BREAK
 case 110:  case 111:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 819 "loader.l"  #line 869 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_UNDEAD, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_UNDEAD, IVAL);
  YY_BREAK   YY_BREAK
 case 111:  case 112:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 820 "loader.l"  #line 870 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_SCARED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_SCARED, IVAL);
  YY_BREAK   YY_BREAK
 case 112:  case 113:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 821 "loader.l"  #line 871 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_UNAGGRESSIVE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_UNAGGRESSIVE, IVAL);
  YY_BREAK   YY_BREAK
 case 113:  case 114:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 822 "loader.l"  #line 872 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_REFL_MISSILE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_REFL_MISSILE, IVAL);
  YY_BREAK   YY_BREAK
 case 114:  case 115:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 823 "loader.l"  #line 873 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_REFL_SPELL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_REFL_SPELL, IVAL);
  YY_BREAK   YY_BREAK
 case 115:  case 116:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 824 "loader.l"  #line 874 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_MAGIC, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_MAGIC, IVAL);
  YY_BREAK   YY_BREAK
 case 116:  case 117:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 825 "loader.l"  #line 875 "loader.l"
 { if (IVAL) {  { if (IVAL) {
      SET_FLAG(op, FLAG_WIZ);       SET_FLAG(op, FLAG_WIZ);
      SET_FLAG(op, FLAG_WAS_WIZ);       SET_FLAG(op, FLAG_WAS_WIZ);
Line 3485
 
Line 3457
  }   }
      }       }
  YY_BREAK   YY_BREAK
 case 117:  case 118:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 837 "loader.l"  #line 887 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_WAS_WIZ, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_WAS_WIZ, IVAL);
  YY_BREAK   YY_BREAK
 case 118:  case 119:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 838 "loader.l"  #line 888 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_FIX_PLAYER, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_FIX_PLAYER, IVAL);
  YY_BREAK   YY_BREAK
 case 119:  case 120:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 839 "loader.l"  #line 889 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_LIGHTABLE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_LIGHTABLE, IVAL);
  YY_BREAK   YY_BREAK
 case 120:  case 121:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 840 "loader.l"  #line 890 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_TEAR_DOWN, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_TEAR_DOWN, IVAL);
  YY_BREAK   YY_BREAK
 case 121:  case 122:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 841 "loader.l"  #line 891 "loader.l"
 op->stats.luck = IVAL;  op->stats.luck = IVAL;
  YY_BREAK   YY_BREAK
 case 122:  case 123:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 842 "loader.l"  #line 892 "loader.l"
 op->run_away = IVAL;  op->run_away = IVAL;
  YY_BREAK   YY_BREAK
 case 123:  case 124:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 843 "loader.l"  #line 893 "loader.l"
 op->pick_up = IVAL;  op->pick_up = IVAL;
  YY_BREAK   YY_BREAK
 case 124:  case 125:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 844 "loader.l"  #line 894 "loader.l"
 op->item_power = IVAL;  op->item_power = IVAL;
  YY_BREAK   YY_BREAK
 case 125:  case 126:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 845 "loader.l"  #line 895 "loader.l"
 op->gen_sp_armour = IVAL;  op->gen_sp_armour = IVAL;
  YY_BREAK   YY_BREAK
 case 126:  case 127:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 846 "loader.l"  #line 896 "loader.l"
 op->anim_speed = IVAL;  op->anim_speed = IVAL;
  YY_BREAK   YY_BREAK
 case 127:  case 128:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 847 "loader.l"  #line 897 "loader.l"
 op->weight_limit = IVAL;  op->weight_limit = IVAL;
  YY_BREAK   YY_BREAK
 case 128:  case 129:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 848 "loader.l"  #line 898 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_DROP, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_DROP, IVAL);
  YY_BREAK   YY_BREAK
 case 129:  case 130:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 849 "loader.l"  #line 899 "loader.l"
 op->will_apply = IVAL;  op->will_apply = IVAL;
  YY_BREAK   YY_BREAK
 case 130:  case 131:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 850 "loader.l"  #line 900 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_RANDOM_MOVE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_RANDOM_MOVE, IVAL);
  YY_BREAK   YY_BREAK
 case 131:  case 132:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 851 "loader.l"  #line 901 "loader.l"
 { }  { }
  YY_BREAK   YY_BREAK
 case 132:  case 133:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 852 "loader.l"  #line 902 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_SHIELD, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_SHIELD, IVAL);
  YY_BREAK   YY_BREAK
 case 133:  case 134:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 853 "loader.l"  #line 903 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CAST_SPELL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CAST_SPELL, IVAL);
  YY_BREAK   YY_BREAK
 case 134:  case 135:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 854 "loader.l"  #line 904 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_SCROLL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_SCROLL, IVAL);
  YY_BREAK   YY_BREAK
 case 135:  case 136:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 855 "loader.l"  #line 905 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_RANGE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_RANGE, IVAL);
  YY_BREAK   YY_BREAK
 case 136:  case 137:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 856 "loader.l"  #line 906 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_BOW, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_BOW, IVAL);
  YY_BREAK   YY_BREAK
 case 137:  case 138:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 857 "loader.l"  #line 907 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_ARMOUR, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_ARMOUR, IVAL);
  YY_BREAK   YY_BREAK
 case 138:  case 139:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 858 "loader.l"  #line 908 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_WEAPON, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_WEAPON, IVAL);
  YY_BREAK   YY_BREAK
 case 139:  case 140:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 859 "loader.l"  #line 909 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_RING, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_RING, IVAL);
  YY_BREAK   YY_BREAK
 case 140:  case 141:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 860 "loader.l"  #line 910 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_BOW, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_BOW, IVAL);
  YY_BREAK   YY_BREAK
 case 141:  case 142:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 861 "loader.l"  #line 911 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_XRAYS, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_XRAYS, IVAL);
  YY_BREAK   YY_BREAK
 case 142:  case 143:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 862 "loader.l"  #line 912 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_FLOOR, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_FLOOR, IVAL);
  YY_BREAK   YY_BREAK
 case 143:  case 144:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 863 "loader.l"  #line 913 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_LIFESAVE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_LIFESAVE, IVAL);
  YY_BREAK   YY_BREAK
 case 144:  case 145:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 864 "loader.l"  #line 914 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_STRENGTH, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_STRENGTH, IVAL);
  YY_BREAK   YY_BREAK
 case 145:  case 146:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 865 "loader.l"  #line 915 "loader.l"
 {  {
  SET_OR_CLEAR_FLAG(op, FLAG_SLEEP, IVAL);   SET_OR_CLEAR_FLAG(op, FLAG_SLEEP, IVAL);
  /*(LOG(llevDebug," Warning: Object %s has sleep set in arch.\n",op->name);*/   /*(LOG(llevDebug," Warning: Object %s has sleep set in arch.\n",op->name);*/
      }       }
  YY_BREAK   YY_BREAK
 case 146:  case 147:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 869 "loader.l"  #line 919 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_STAND_STILL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_STAND_STILL, IVAL);
  YY_BREAK   YY_BREAK
 case 147:  case 148:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 870 "loader.l"  #line 920 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_RANDOM_MOVE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_RANDOM_MOVE, IVAL);
  YY_BREAK   YY_BREAK
 case 148:  case 149:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 871 "loader.l"  #line 921 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ONLY_ATTACK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ONLY_ATTACK, IVAL);
  YY_BREAK   YY_BREAK
 case 149:  case 150:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 873 "loader.l"  #line 923 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ACTIVATE_ON_PUSH, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ACTIVATE_ON_PUSH, IVAL);
  YY_BREAK   YY_BREAK
 case 150:  case 151:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 874 "loader.l"  #line 924 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ACTIVATE_ON_RELEASE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ACTIVATE_ON_RELEASE, IVAL);
  YY_BREAK   YY_BREAK
 /* armour is loaded for compatiblity reasons */  /* armour is loaded for compatiblity reasons */
 case 151:  case 152:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 877 "loader.l"  #line 927 "loader.l"
 SET_RESIST(op, ATNR_PHYSICAL, IVAL);  SET_RESIST(op, ATNR_PHYSICAL, IVAL);
  YY_BREAK   YY_BREAK
 /* Start of various attacktypes */  /* Start of various attacktypes */
 case 152:  case 153:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 879 "loader.l"  #line 929 "loader.l"
 SET_RESIST(op, ATNR_PHYSICAL, IVAL);  SET_RESIST(op, ATNR_PHYSICAL, IVAL);
  YY_BREAK   YY_BREAK
 case 153:  case 154:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 880 "loader.l"  #line 930 "loader.l"
 SET_RESIST(op, ATNR_MAGIC, IVAL);  SET_RESIST(op, ATNR_MAGIC, IVAL);
  YY_BREAK   YY_BREAK
 case 154:  case 155:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 881 "loader.l"  #line 931 "loader.l"
 SET_RESIST(op, ATNR_FIRE, IVAL);  SET_RESIST(op, ATNR_FIRE, IVAL);
  YY_BREAK   YY_BREAK
 case 155:  case 156:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 882 "loader.l"  #line 932 "loader.l"
 SET_RESIST(op, ATNR_ELECTRICITY, IVAL);  SET_RESIST(op, ATNR_ELECTRICITY, IVAL);
  YY_BREAK   YY_BREAK
 case 156:  case 157:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 883 "loader.l"  #line 933 "loader.l"
 SET_RESIST(op, ATNR_COLD, IVAL);  SET_RESIST(op, ATNR_COLD, IVAL);
  YY_BREAK   YY_BREAK
 case 157:  case 158:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 884 "loader.l"  #line 934 "loader.l"
 SET_RESIST(op, ATNR_CONFUSION, IVAL);  SET_RESIST(op, ATNR_CONFUSION, IVAL);
  YY_BREAK   YY_BREAK
 case 158:  case 159:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 885 "loader.l"  #line 935 "loader.l"
 SET_RESIST(op, ATNR_ACID, IVAL);  SET_RESIST(op, ATNR_ACID, IVAL);
  YY_BREAK   YY_BREAK
 case 159:  case 160:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 886 "loader.l"  #line 936 "loader.l"
 SET_RESIST(op, ATNR_DRAIN, IVAL);  SET_RESIST(op, ATNR_DRAIN, IVAL);
  YY_BREAK   YY_BREAK
 case 160:  case 161:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 887 "loader.l"  #line 937 "loader.l"
 SET_RESIST(op, ATNR_WEAPONMAGIC, IVAL);  SET_RESIST(op, ATNR_WEAPONMAGIC, IVAL);
  YY_BREAK   YY_BREAK
 case 161:  case 162:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 888 "loader.l"  #line 938 "loader.l"
 SET_RESIST(op, ATNR_GHOSTHIT, IVAL);  SET_RESIST(op, ATNR_GHOSTHIT, IVAL);
  YY_BREAK   YY_BREAK
 case 162:  case 163:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 889 "loader.l"  #line 939 "loader.l"
 SET_RESIST(op, ATNR_POISON, IVAL);  SET_RESIST(op, ATNR_POISON, IVAL);
  YY_BREAK   YY_BREAK
 case 163:  case 164:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 890 "loader.l"  #line 940 "loader.l"
 SET_RESIST(op, ATNR_SLOW, IVAL);  SET_RESIST(op, ATNR_SLOW, IVAL);
  YY_BREAK   YY_BREAK
 case 164:  case 165:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 891 "loader.l"  #line 941 "loader.l"
 SET_RESIST(op, ATNR_PARALYZE, IVAL);  SET_RESIST(op, ATNR_PARALYZE, IVAL);
  YY_BREAK   YY_BREAK
 case 165:  case 166:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 892 "loader.l"  #line 942 "loader.l"
 SET_RESIST(op, ATNR_TURN_UNDEAD, IVAL);  SET_RESIST(op, ATNR_TURN_UNDEAD, IVAL);
  YY_BREAK   YY_BREAK
 case 166:  case 167:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 893 "loader.l"  #line 943 "loader.l"
 SET_RESIST(op, ATNR_FEAR, IVAL);  SET_RESIST(op, ATNR_FEAR, IVAL);
  YY_BREAK   YY_BREAK
 case 167:  case 168:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 894 "loader.l"  #line 944 "loader.l"
 SET_RESIST(op, ATNR_CANCELLATION, IVAL);  SET_RESIST(op, ATNR_CANCELLATION, IVAL);
  YY_BREAK   YY_BREAK
 case 168:  case 169:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 895 "loader.l"  #line 945 "loader.l"
 SET_RESIST(op, ATNR_DEPLETE, IVAL);  SET_RESIST(op, ATNR_DEPLETE, IVAL);
  YY_BREAK   YY_BREAK
 case 169:  case 170:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 896 "loader.l"  #line 946 "loader.l"
 SET_RESIST(op, ATNR_DEATH, IVAL);  SET_RESIST(op, ATNR_DEATH, IVAL);
  YY_BREAK   YY_BREAK
 case 170:  case 171:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 897 "loader.l"  #line 947 "loader.l"
 SET_RESIST(op, ATNR_CHAOS, IVAL);  SET_RESIST(op, ATNR_CHAOS, IVAL);
  YY_BREAK   YY_BREAK
 case 171:  case 172:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 898 "loader.l"  #line 948 "loader.l"
 SET_RESIST(op, ATNR_COUNTERSPELL, IVAL);  SET_RESIST(op, ATNR_COUNTERSPELL, IVAL);
  YY_BREAK   YY_BREAK
 case 172:  case 173:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 899 "loader.l"  #line 949 "loader.l"
 SET_RESIST(op, ATNR_GODPOWER, IVAL);  SET_RESIST(op, ATNR_GODPOWER, IVAL);
  YY_BREAK   YY_BREAK
 case 173:  case 174:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 900 "loader.l"  #line 950 "loader.l"
 SET_RESIST(op, ATNR_HOLYWORD, IVAL);  SET_RESIST(op, ATNR_HOLYWORD, IVAL);
  YY_BREAK   YY_BREAK
 case 174:  case 175:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 901 "loader.l"  #line 951 "loader.l"
 SET_RESIST(op, ATNR_BLIND, IVAL);  SET_RESIST(op, ATNR_BLIND, IVAL);
  YY_BREAK   YY_BREAK
 case 175:  case 176:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 902 "loader.l"  #line 952 "loader.l"
 SET_RESIST(op, ATNR_INTERNAL, IVAL);  SET_RESIST(op, ATNR_INTERNAL, IVAL);
  YY_BREAK   YY_BREAK
 case 176:  case 177:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 903 "loader.l"  #line 953 "loader.l"
 SET_RESIST(op, ATNR_LIFE_STEALING, IVAL);  SET_RESIST(op, ATNR_LIFE_STEALING, IVAL);
  YY_BREAK   YY_BREAK
 case 177:  case 178:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 904 "loader.l"  #line 954 "loader.l"
 SET_RESIST(op, ATNR_DISEASE, IVAL);  SET_RESIST(op, ATNR_DISEASE, IVAL);
  YY_BREAK   YY_BREAK
 /* Old style resistances */  /* Old style resistances */
 case 178:  case 179:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 907 "loader.l"  #line 957 "loader.l"
 set_protection(op, IVAL, RESIST_IMMUNE);  set_protection(op, IVAL, RESIST_IMMUNE);
  YY_BREAK   YY_BREAK
 case 179:  case 180:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 908 "loader.l"  #line 958 "loader.l"
 set_protection(op, IVAL, RESIST_PROT);  set_protection(op, IVAL, RESIST_PROT);
  YY_BREAK   YY_BREAK
 case 180:  case 181:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 909 "loader.l"  #line 959 "loader.l"
 set_protection(op, IVAL, RESIST_VULN);  set_protection(op, IVAL, RESIST_VULN);
  YY_BREAK   YY_BREAK
 /* old values - keep them around for now, but they should be removed at some point */  /* old values - keep them around for now, but they should be removed at some point */
 case 181:  
 YY_RULE_SETUP  
 #line 912 "loader.l"  
 SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);  
  YY_BREAK  
 case 182:  case 182:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 913 "loader.l"  #line 962 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);
  YY_BREAK   YY_BREAK
 case 183:  case 183:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 914 "loader.l"  #line 963 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);
  YY_BREAK   YY_BREAK
 case 184:  case 184:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 915 "loader.l"  #line 964 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_RANGE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_RANGE, IVAL);
  YY_BREAK   YY_BREAK
 case 185:  case 185:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 917 "loader.l"  #line 965 "loader.l"
 op->attack_movement = IVAL;  SET_OR_CLEAR_FLAG(op, FLAG_USE_RANGE, IVAL);
  YY_BREAK   YY_BREAK
 case 186:  case 186:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 918 "loader.l"  #line 967 "loader.l"
 op->move_status = IVAL;  op->attack_movement = IVAL;
  YY_BREAK   YY_BREAK
 case 187:  case 187:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 919 "loader.l"  #line 968 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CONFUSED, IVAL);  op->move_status = IVAL;
  YY_BREAK   YY_BREAK
 case 188:  case 188:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 920 "loader.l"  #line 969 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_STEALTH, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CONFUSED, IVAL);
  YY_BREAK   YY_BREAK
 case 189:  case 189:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 921 "loader.l"  #line 970 "loader.l"
 add_button_link(op, op->map, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_STEALTH, IVAL);
  YY_BREAK   YY_BREAK
 case 190:  case 190:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 922 "loader.l"  #line 971 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CURSED, IVAL);  add_button_link(op, op->map, IVAL);
  YY_BREAK   YY_BREAK
 case 191:  case 191:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 923 "loader.l"  #line 972 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_DAMNED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CURSED, IVAL);
  YY_BREAK   YY_BREAK
 case 192:  case 192:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 924 "loader.l"  #line 973 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_SEE_ANYWHERE, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_DAMNED, IVAL);
  YY_BREAK   YY_BREAK
 case 193:  case 193:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 925 "loader.l"  #line 974 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_KNOWN_MAGICAL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_SEE_ANYWHERE, IVAL);
  YY_BREAK   YY_BREAK
 case 194:  case 194:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 926 "loader.l"  #line 975 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_KNOWN_CURSED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_KNOWN_MAGICAL, IVAL);
  YY_BREAK   YY_BREAK
 case 195:  case 195:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 927 "loader.l"  #line 976 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_CAN_USE_SKILL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_KNOWN_CURSED, IVAL);
  YY_BREAK   YY_BREAK
 case 196:  case 196:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 928 "loader.l"  #line 977 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_BEEN_APPLIED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_CAN_USE_SKILL, IVAL);
  YY_BREAK   YY_BREAK
 case 197:  case 197:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 929 "loader.l"  #line 978 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_SCROLL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_BEEN_APPLIED, IVAL);
  YY_BREAK   YY_BREAK
 case 198:  case 198:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 930 "loader.l"  #line 979 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_ROD, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_SCROLL, IVAL);
  YY_BREAK   YY_BREAK
 case 199:  case 199:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 931 "loader.l"  #line 980 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_USE_HORN, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_USE_ROD, IVAL);
  YY_BREAK   YY_BREAK
 case 200:  case 200:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 932 "loader.l"  #line 981 "loader.l"
 op->expmul = FVAL;  SET_OR_CLEAR_FLAG(op, FLAG_USE_HORN, IVAL);
  YY_BREAK   YY_BREAK
 case 201:  case 201:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 933 "loader.l"  #line 982 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_UNIQUE, IVAL);  op->expmul = FVAL;
  YY_BREAK   YY_BREAK
 case 202:  case 202:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 934 "loader.l"  #line 983 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_MAKE_INVIS, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_UNIQUE, IVAL);
  YY_BREAK   YY_BREAK
 case 203:  case 203:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 935 "loader.l"  #line 984 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_INV_LOCKED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_MAKE_INVIS, IVAL);
  YY_BREAK   YY_BREAK
 case 204:  case 204:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 936 "loader.l"  #line 985 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_WOODED, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_INV_LOCKED, IVAL);
  YY_BREAK   YY_BREAK
 case 205:  case 205:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 937 "loader.l"  #line 986 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_HILLY, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_WOODED, IVAL);
  YY_BREAK   YY_BREAK
 case 206:  case 206:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 938 "loader.l"  #line 987 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_WATER, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_HILLY, IVAL);
  YY_BREAK   YY_BREAK
 case 207:  case 207:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 939 "loader.l"  #line 988 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_SKILL, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_IS_WATER, IVAL);
  YY_BREAK   YY_BREAK
 case 208:  case 208:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 940 "loader.l"  #line 989 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_READY_WEAPON, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_SKILL, IVAL);
  YY_BREAK   YY_BREAK
 case 209:  case 209:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 941 "loader.l"  #line 990 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_SKILL_IDENT, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_READY_WEAPON, IVAL);
  YY_BREAK   YY_BREAK
 case 210:  case 210:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 942 "loader.l"  #line 991 "loader.l"
 op->glow_radius = IVAL;  SET_OR_CLEAR_FLAG(op, FLAG_NO_SKILL_IDENT, IVAL);
  YY_BREAK   YY_BREAK
 case 211:  case 211:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 943 "loader.l"  #line 992 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_BLIND, IVAL);  op->glow_radius = IVAL;
  YY_BREAK   YY_BREAK
 case 212:  case 212:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 944 "loader.l"  #line 993 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_SEE_IN_DARK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_BLIND, IVAL);
  YY_BREAK   YY_BREAK
 case 213:  case 213:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 945 "loader.l"  #line 994 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_IS_CAULDRON, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_SEE_IN_DARK, IVAL);
  YY_BREAK   YY_BREAK
 case 214:  case 214:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 946 "loader.l"  #line 995 "loader.l"
 op->randomitems = find_treasurelist(yval());  SET_OR_CLEAR_FLAG(op, FLAG_IS_CAULDRON, IVAL);
  YY_BREAK   YY_BREAK
 case 215:  case 215:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 947 "loader.l"  #line 996 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_NO_STEAL, IVAL);  op->randomitems = find_treasurelist(yval());
  YY_BREAK   YY_BREAK
 case 216:  case 216:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 948 "loader.l"  #line 997 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_ONE_HIT, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_NO_STEAL, IVAL);
  YY_BREAK   YY_BREAK
 case 217:  case 217:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 949 "loader.l"  #line 998 "loader.l"
 SET_OR_CLEAR_FLAG(op, FLAG_BERSERK, IVAL);  SET_OR_CLEAR_FLAG(op, FLAG_ONE_HIT, IVAL);
  YY_BREAK   YY_BREAK
 case 218:  case 218:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 951 "loader.l"  #line 999 "loader.l"
 { /* Some archetypes have these values in them */ }  SET_OR_CLEAR_FLAG(op, FLAG_BERSERK, IVAL);
  YY_BREAK   YY_BREAK
 case 219:  case 219:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 952 "loader.l"  #line 1001 "loader.l"
 { /* Probably the pupland archetypes - I imagined */ }  { /* Some archetypes have these values in them */ }
  YY_BREAK   YY_BREAK
 case 220:  case 220:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 953 "loader.l"  #line 1002 "loader.l"
 { /* That these are for the new combat code */ }  { /* Probably the pupland archetypes - I imagined */ }
  YY_BREAK   YY_BREAK
 case 221:  case 221:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 954 "loader.l"  #line 1003 "loader.l"
 { /* just ignore for now */ }  { /* That these are for the new combat code */ }
  YY_BREAK   YY_BREAK
 case 222:  case 222:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 955 "loader.l"  #line 1004 "loader.l"
 { }  { /* just ignore for now */ }
  YY_BREAK   YY_BREAK
 case 223:  case 223:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 956 "loader.l"  #line 1005 "loader.l"
 op->weapontype = IVAL;  { }
  YY_BREAK   YY_BREAK
 case 224:  case 224:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 957 "loader.l"  #line 1006 "loader.l"
 op->tooltype = IVAL;  op->weapontype = IVAL;
  YY_BREAK   YY_BREAK
 case 225:  case 225:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 958 "loader.l"  #line 1007 "loader.l"
 op->casting_time = FVAL;  op->tooltype = IVAL;
  YY_BREAK   YY_BREAK
 case 226:  case 226:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 959 "loader.l"  #line 1008 "loader.l"
 op->elevation = IVAL;  op->casting_time = FVAL;
  YY_BREAK   YY_BREAK
 case 227:  case 227:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 960 "loader.l"  #line 1009 "loader.l"
 op->smoothlevel = IVAL;  op->elevation = IVAL;
  YY_BREAK   YY_BREAK
 case 228:  case 228:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 961 "loader.l"  #line 1010 "loader.l"
 op->client_type = IVAL;  op->smoothlevel = IVAL;
  YY_BREAK   YY_BREAK
 case 229:  case 229:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 962 "loader.l"  #line 1011 "loader.l"
 set_body_info(op, yytext);  op->client_type = IVAL;
  YY_BREAK   YY_BREAK
 case 230:  case 230:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 963 "loader.l"  #line 1012 "loader.l"
 op->duration = IVAL;  set_body_info(op, yytext);
  YY_BREAK   YY_BREAK
 case 231:  case 231:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 964 "loader.l"  #line 1013 "loader.l"
 op->range = IVAL;  op->duration = IVAL;
  YY_BREAK   YY_BREAK
 case 232:  case 232:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 965 "loader.l"  #line 1014 "loader.l"
 op->range_modifier = IVAL;  op->range = IVAL;
  YY_BREAK   YY_BREAK
 case 233:  case 233:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 966 "loader.l"  #line 1015 "loader.l"
 op->dam_modifier = IVAL;  op->range_modifier = IVAL;
  YY_BREAK   YY_BREAK
 case 234:  case 234:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 967 "loader.l"  #line 1016 "loader.l"
 op->duration_modifier = IVAL;  op->dam_modifier = IVAL;
  YY_BREAK   YY_BREAK
 case 235:  case 235:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 968 "loader.l"  #line 1017 "loader.l"
 SET_OR_CLEAR_FLAG( op, FLAG_IS_BUILDABLE, IVAL );  op->duration_modifier = IVAL;
  YY_BREAK   YY_BREAK
 case 236:  case 236:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 970 "loader.l"  #line 1018 "loader.l"
   SET_OR_CLEAR_FLAG( op, FLAG_IS_BUILDABLE, IVAL );
    YY_BREAK
   case 237:
   YY_RULE_SETUP
   #line 1020 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4098
 
Line 4070
         insert_event(op,EVENT_APPLY,yv,NULL,NULL);          insert_event(op,EVENT_APPLY,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 237:  case 238:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 978 "loader.l"  #line 1028 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4109
 
Line 4081
         insert_event(op,EVENT_APPLY,NULL,yv,NULL);          insert_event(op,EVENT_APPLY,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 238:  case 239:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 986 "loader.l"  #line 1036 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4120
 
Line 4092
         insert_event(op,EVENT_APPLY,NULL,NULL,yv);          insert_event(op,EVENT_APPLY,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 239:  case 240:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 994 "loader.l"  #line 1044 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4131
 
Line 4103
         insert_event(op,EVENT_ATTACK,yv,NULL,NULL);          insert_event(op,EVENT_ATTACK,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 240:  case 241:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1002 "loader.l"  #line 1052 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4142
 
Line 4114
         insert_event(op,EVENT_ATTACK,NULL,yv,NULL);          insert_event(op,EVENT_ATTACK,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 241:  case 242:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1010 "loader.l"  #line 1060 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4153
 
Line 4125
         insert_event(op,EVENT_ATTACK,NULL,NULL,yv);          insert_event(op,EVENT_ATTACK,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 242:  case 243:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1017 "loader.l"  #line 1067 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4164
 
Line 4136
         insert_event(op,EVENT_DEATH,yv,NULL,NULL);          insert_event(op,EVENT_DEATH,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 243:  case 244:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1025 "loader.l"  #line 1075 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4175
 
Line 4147
         insert_event(op,EVENT_DEATH,NULL,yv,NULL);          insert_event(op,EVENT_DEATH,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 244:  case 245:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1033 "loader.l"  #line 1083 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4186
 
Line 4158
         insert_event(op,EVENT_DEATH,NULL,NULL,yv);          insert_event(op,EVENT_DEATH,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 245:  case 246:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1040 "loader.l"  #line 1090 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4197
 
Line 4169
         insert_event(op,EVENT_DROP,yv,NULL,NULL);          insert_event(op,EVENT_DROP,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 246:  case 247:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1048 "loader.l"  #line 1098 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4208
 
Line 4180
         insert_event(op,EVENT_DROP,NULL,yv,NULL);          insert_event(op,EVENT_DROP,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 247:  case 248:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1056 "loader.l"  #line 1106 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4219
 
Line 4191
         insert_event(op,EVENT_DROP,NULL,NULL,yv);          insert_event(op,EVENT_DROP,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 248:  case 249:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1063 "loader.l"  #line 1113 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4230
 
Line 4202
         insert_event(op,EVENT_PICKUP,yv,NULL,NULL);          insert_event(op,EVENT_PICKUP,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 249:  case 250:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1071 "loader.l"  #line 1121 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4241
 
Line 4213
         insert_event(op,EVENT_PICKUP,NULL,yv,NULL);          insert_event(op,EVENT_PICKUP,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 250:  case 251:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1079 "loader.l"  #line 1129 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4252
 
Line 4224
         insert_event(op,EVENT_PICKUP,NULL,NULL,yv);          insert_event(op,EVENT_PICKUP,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 251:  case 252:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1086 "loader.l"  #line 1136 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4263
 
Line 4235
         insert_event(op,EVENT_SAY,yv,NULL,NULL);          insert_event(op,EVENT_SAY,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 252:  case 253:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1094 "loader.l"  #line 1144 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4274
 
Line 4246
         insert_event(op,EVENT_SAY,NULL,yv,NULL);          insert_event(op,EVENT_SAY,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 253:  case 254:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1102 "loader.l"  #line 1152 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4285
 
Line 4257
         insert_event(op,EVENT_SAY,NULL,NULL,yv);          insert_event(op,EVENT_SAY,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 254:  case 255:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1109 "loader.l"  #line 1159 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4296
 
Line 4268
         insert_event(op,EVENT_STOP,yv,NULL,NULL);          insert_event(op,EVENT_STOP,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 255:  case 256:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1117 "loader.l"  #line 1167 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4307
 
Line 4279
         insert_event(op,EVENT_STOP,NULL,yv,NULL);          insert_event(op,EVENT_STOP,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 256:  case 257:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1125 "loader.l"  #line 1175 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4318
 
Line 4290
         insert_event(op,EVENT_STOP,NULL,NULL,yv);          insert_event(op,EVENT_STOP,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 257:  case 258:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1132 "loader.l"  #line 1182 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4329
 
Line 4301
         insert_event(op,EVENT_TIME,yv,NULL,NULL);          insert_event(op,EVENT_TIME,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 258:  case 259:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1140 "loader.l"  #line 1190 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4340
 
Line 4312
         insert_event(op,EVENT_TIME,NULL,yv,NULL);          insert_event(op,EVENT_TIME,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 259:  case 260:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1148 "loader.l"  #line 1198 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4351
 
Line 4323
         insert_event(op,EVENT_TIME,NULL,NULL,yv);          insert_event(op,EVENT_TIME,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 260:  case 261:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1155 "loader.l"  #line 1205 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4362
 
Line 4334
         insert_event(op,EVENT_THROW,yv,NULL,NULL);          insert_event(op,EVENT_THROW,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 261:  case 262:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1163 "loader.l"  #line 1213 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4373
 
Line 4345
         insert_event(op,EVENT_THROW,NULL,yv,NULL);          insert_event(op,EVENT_THROW,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 262:  case 263:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1171 "loader.l"  #line 1221 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4384
 
Line 4356
         insert_event(op,EVENT_THROW,NULL,NULL,yv);          insert_event(op,EVENT_THROW,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 263:  case 264:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1178 "loader.l"  #line 1228 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4395
 
Line 4367
         insert_event(op,EVENT_TRIGGER,yv,NULL,NULL);          insert_event(op,EVENT_TRIGGER,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 264:  case 265:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1186 "loader.l"  #line 1236 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4406
 
Line 4378
         insert_event(op,EVENT_TRIGGER,NULL,yv,NULL);          insert_event(op,EVENT_TRIGGER,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 265:  case 266:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1194 "loader.l"  #line 1244 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4417
 
Line 4389
         insert_event(op,EVENT_TRIGGER,NULL,NULL,yv);          insert_event(op,EVENT_TRIGGER,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 266:  case 267:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1201 "loader.l"  #line 1251 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4428
 
Line 4400
         insert_event(op,EVENT_CLOSE,yv,NULL,NULL);          insert_event(op,EVENT_CLOSE,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 267:  case 268:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1209 "loader.l"  #line 1259 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4439
 
Line 4411
         insert_event(op,EVENT_CLOSE,NULL,yv,NULL);          insert_event(op,EVENT_CLOSE,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 268:  case 269:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1217 "loader.l"  #line 1267 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4450
 
Line 4422
         insert_event(op,EVENT_CLOSE,NULL,NULL,yv);          insert_event(op,EVENT_CLOSE,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 269:  case 270:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1224 "loader.l"  #line 1274 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4461
 
Line 4433
         insert_event(op,EVENT_TIMER,yv,NULL,NULL);          insert_event(op,EVENT_TIMER,yv,NULL,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 270:  case 271:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1232 "loader.l"  #line 1282 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4472
 
Line 4444
         insert_event(op,EVENT_TIMER,NULL,yv,NULL);          insert_event(op,EVENT_TIMER,NULL,yv,NULL);
 }  }
  YY_BREAK   YY_BREAK
 case 271:  case 272:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1240 "loader.l"  #line 1290 "loader.l"
 {  {
     char *yv=yval();      char *yv=yval();
     if (*yv=='\0')      if (*yv=='\0')
Line 4483
 
Line 4455
         insert_event(op,EVENT_TIMER,NULL,NULL,yv);          insert_event(op,EVENT_TIMER,NULL,NULL,yv);
 }  }
  YY_BREAK   YY_BREAK
 case 272:  case 273:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1248 "loader.l"  #line 1298 "loader.l"
 { char *yv=yval();  { char *yv=yval();
   
  if (*yv=='\0') LOG(llevError,"Script (current weapon) without val\n");   if (*yv=='\0') LOG(llevError,"Script (current weapon) without val\n");
Line 4495
 
Line 4467
                                                 };                                                  };
      }       }
  YY_BREAK   YY_BREAK
 case 273:  case 274:
 /* rule 273 can match eol */  
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1257 "loader.l"  #line 1307 "loader.l"
 {/* ignore empty lines, newlines we don't do above */}  {/* ignore empty lines, newlines we don't do above */}
  YY_BREAK   YY_BREAK
 case 274:  case 275:
 /* rule 274 can match eol */  
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1258 "loader.l"  #line 1308 "loader.l"
 {}  {}
  YY_BREAK   YY_BREAK
 case YY_STATE_EOF(INITIAL):  case YY_STATE_EOF(INITIAL):
 case YY_STATE_EOF(MESSAGE):  case YY_STATE_EOF(MESSAGE):
 case YY_STATE_EOF(LORE):  case YY_STATE_EOF(LORE):
 case YY_STATE_EOF(SCRIPT):  case YY_STATE_EOF(SCRIPT):
 #line 1260 "loader.l"  #line 1310 "loader.l"
 {/* If we got an error, return the error.  Otherwise, return that we got EOF */  {/* If we got an error, return the error.  Otherwise, return that we got EOF */
      if (lex_error!=0) return lex_error; else return LL_EOF;}       if (lex_error!=0) return lex_error; else return LL_EOF;}
  YY_BREAK   YY_BREAK
 case 275:  case 276:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1262 "loader.l"  #line 1312 "loader.l"
 { add_key_value(op); }  { add_key_value(op); }
  YY_BREAK   YY_BREAK
 case 276:  case 277:
 YY_RULE_SETUP  YY_RULE_SETUP
 #line 1263 "loader.l"  #line 1313 "loader.l"
 ECHO;  ECHO;
  YY_BREAK   YY_BREAK
 #line 4529 "loader.c"  #line 4499 "loader.c"
   
  case YY_END_OF_BUFFER:   case YY_END_OF_BUFFER:
  {   {
  /* Amount of text matched not including the EOB char. */   /* Amount of text matched not including the EOB char. */
  int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;   int yy_amount_of_matched_text = (int) (yy_cp - yytext_ptr) - 1;
   
  /* Undo the effects of YY_DO_BEFORE_ACTION. */   /* Undo the effects of YY_DO_BEFORE_ACTION. */
  *yy_cp = (yy_hold_char);   *yy_cp = yy_hold_char;
  YY_RESTORE_YY_MORE_OFFSET   YY_RESTORE_YY_MORE_OFFSET
   
  if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )   if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_NEW )
  {   {
  /* We're scanning a new file or input source.  It's   /* We're scanning a new file or input source.  It's
  * possible that this happened because the user   * possible that this happened because the user
  * just pointed yyin at a new source and called   * just pointed yyin at a new source and called
  * yylex().  If so, then we have to assure   * yylex().  If so, then we have to assure
  * consistency between YY_CURRENT_BUFFER and our   * consistency between yy_current_buffer and our
  * globals.  Here is the right place to do so, because   * globals.  Here is the right place to do so, because
  * this is the first action (other than possibly a   * this is the first action (other than possibly a
  * back-up) that will match for the new input source.   * back-up) that will match for the new input source.
  */   */
  (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;   yy_n_chars = yy_current_buffer->yy_n_chars;
  YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;   yy_current_buffer->yy_input_file = yyin;
  YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;   yy_current_buffer->yy_buffer_status = YY_BUFFER_NORMAL;
  }   }
   
  /* Note that here we test for yy_c_buf_p "<=" to the position   /* Note that here we test for yy_c_buf_p "<=" to the position
Line 4559
 
Line 4529
  * end-of-buffer state).  Contrast this with the test   * end-of-buffer state).  Contrast this with the test
  * in input().   * in input().
  */   */
  if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )   if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  { /* This was really a NUL. */   { /* This was really a NUL. */
  yy_state_type yy_next_state;   yy_state_type yy_next_state;
   
  (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;   yy_c_buf_p = yytext_ptr + yy_amount_of_matched_text;
   
  yy_current_state = yy_get_previous_state(  );   yy_current_state = yy_get_previous_state(  );
   
Line 4578
 
Line 4548
   
  yy_next_state = yy_try_NUL_trans( yy_current_state );   yy_next_state = yy_try_NUL_trans( yy_current_state );
   
  yy_bp = (yytext_ptr) + YY_MORE_ADJ;   yy_bp = yytext_ptr + YY_MORE_ADJ;
   
  if ( yy_next_state )   if ( yy_next_state )
  {   {
  /* Consume the NUL. */   /* Consume the NUL. */
  yy_cp = ++(yy_c_buf_p);   yy_cp = ++yy_c_buf_p;
  yy_current_state = yy_next_state;   yy_current_state = yy_next_state;
  goto yy_match;   goto yy_match;
  }   }
   
  else   else
  {   {
  yy_cp = (yy_c_buf_p);   yy_cp = yy_c_buf_p;
  goto yy_find_action;   goto yy_find_action;
  }   }
  }   }
Line 4599
 
Line 4569
  {   {
  case EOB_ACT_END_OF_FILE:   case EOB_ACT_END_OF_FILE:
  {   {
  (yy_did_buffer_switch_on_eof) = 0;   yy_did_buffer_switch_on_eof = 0;
   
  if ( yywrap( ) )   if ( yywrap( ) )
  {   {
Line 4612
 
Line 4582
  * YY_NULL, it'll still work - another   * YY_NULL, it'll still work - another
  * YY_NULL will get returned.   * YY_NULL will get returned.
  */   */
  (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;   yy_c_buf_p = yytext_ptr + YY_MORE_ADJ;
   
  yy_act = YY_STATE_EOF(YY_START);   yy_act = YY_STATE_EOF(YY_START);
  goto do_action;   goto do_action;
Line 4620
 
Line 4590
   
  else   else
  {   {
  if ( ! (yy_did_buffer_switch_on_eof) )   if ( ! yy_did_buffer_switch_on_eof )
  YY_NEW_FILE;   YY_NEW_FILE;
  }   }
  break;   break;
  }   }
   
  case EOB_ACT_CONTINUE_SCAN:   case EOB_ACT_CONTINUE_SCAN:
  (yy_c_buf_p) =   yy_c_buf_p =
  (yytext_ptr) + yy_amount_of_matched_text;   yytext_ptr + yy_amount_of_matched_text;
   
  yy_current_state = yy_get_previous_state(  );   yy_current_state = yy_get_previous_state(  );
   
  yy_cp = (yy_c_buf_p);   yy_cp = yy_c_buf_p;
  yy_bp = (yytext_ptr) + YY_MORE_ADJ;   yy_bp = yytext_ptr + YY_MORE_ADJ;
  goto yy_match;   goto yy_match;
   
  case EOB_ACT_LAST_MATCH:   case EOB_ACT_LAST_MATCH:
  (yy_c_buf_p) =   yy_c_buf_p =
  &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];   &yy_current_buffer->yy_ch_buf[yy_n_chars];
   
  yy_current_state = yy_get_previous_state(  );   yy_current_state = yy_get_previous_state(  );
   
  yy_cp = (yy_c_buf_p);   yy_cp = yy_c_buf_p;
  yy_bp = (yytext_ptr) + YY_MORE_ADJ;   yy_bp = yytext_ptr + YY_MORE_ADJ;
  goto yy_find_action;   goto yy_find_action;
  }   }
  break;   break;
Line 4656
 
Line 4626
  } /* end of scanning one token */   } /* end of scanning one token */
 } /* end of yylex */  } /* end of yylex */
   
   
 /* yy_get_next_buffer - try to read in a new buffer  /* yy_get_next_buffer - try to read in a new buffer
  *   *
  * Returns a code representing an action:   * Returns a code representing an action:
Line 4663
 
Line 4634
  * EOB_ACT_CONTINUE_SCAN - continue scanning from current position   * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  * EOB_ACT_END_OF_FILE - end of file   * EOB_ACT_END_OF_FILE - end of file
  */   */
 static int yy_get_next_buffer (void)  
   static int yy_get_next_buffer()
 {  {
     register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;   register char *dest = yy_current_buffer->yy_ch_buf;
  register char *source = (yytext_ptr);   register char *source = yytext_ptr;
  register int number_to_move, i;   register int number_to_move, i;
  int ret_val;   int ret_val;
   
  if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )   if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
  YY_FATAL_ERROR(   YY_FATAL_ERROR(
  "fatal flex scanner internal error--end of buffer missed" );   "fatal flex scanner internal error--end of buffer missed" );
   
  if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )   if ( yy_current_buffer->yy_fill_buffer == 0 )
  { /* Don't try to fill the buffer, so this is an EOF. */   { /* Don't try to fill the buffer, so this is an EOF. */
  if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )   if ( yy_c_buf_p - yytext_ptr - YY_MORE_ADJ == 1 )
  {   {
  /* We matched a single character, the EOB, so   /* We matched a single character, the EOB, so
  * treat this as a final EOF.   * treat this as a final EOF.
Line 4696
 
Line 4668
  /* Try to read more data. */   /* Try to read more data. */
   
  /* First move last chars to start of buffer. */   /* First move last chars to start of buffer. */
  number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;   number_to_move = (int) (yy_c_buf_p - yytext_ptr) - 1;
   
  for ( i = 0; i < number_to_move; ++i )   for ( i = 0; i < number_to_move; ++i )
  *(dest++) = *(source++);   *(dest++) = *(source++);
   
  if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )   if ( yy_current_buffer->yy_buffer_status == YY_BUFFER_EOF_PENDING )
  /* don't do the read, it's not guaranteed to return an EOF,   /* don't do the read, it's not guaranteed to return an EOF,
  * just force an EOF   * just force an EOF
  */   */
  YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;   yy_current_buffer->yy_n_chars = yy_n_chars = 0;
   
  else   else
  {   {
  size_t num_to_read =   int num_to_read =
  YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;   yy_current_buffer->yy_buf_size - number_to_move - 1;
   
  while ( num_to_read <= 0 )   while ( num_to_read <= 0 )
  { /* Not enough room in the buffer - grow it. */   { /* 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 */   /* just a shorter name for the current buffer */
  YY_BUFFER_STATE b = YY_CURRENT_BUFFER;   YY_BUFFER_STATE b = yy_current_buffer;
   
  int yy_c_buf_p_offset =   int yy_c_buf_p_offset =
  (int) ((yy_c_buf_p) - b->yy_ch_buf);   (int) (yy_c_buf_p - b->yy_ch_buf);
   
  if ( b->yy_is_our_buffer )   if ( b->yy_is_our_buffer )
  {   {
Line 4732
 
Line 4708
   
  b->yy_ch_buf = (char *)   b->yy_ch_buf = (char *)
  /* Include room in for 2 EOB chars. */   /* Include room in for 2 EOB chars. */
  yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2  );   yy_flex_realloc( (void *) b->yy_ch_buf,
    b->yy_buf_size + 2 );
  }   }
  else   else
  /* Can't grow it, we don't own it. */   /* Can't grow it, we don't own it. */
Line 4742
 
Line 4719
  YY_FATAL_ERROR(   YY_FATAL_ERROR(
  "fatal error - scanner input buffer overflow" );   "fatal error - scanner input buffer overflow" );
   
  (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];   yy_c_buf_p = &b->yy_ch_buf[yy_c_buf_p_offset];
   
  num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -   num_to_read = yy_current_buffer->yy_buf_size -
  number_to_move - 1;   number_to_move - 1;
   #endif
  }   }
   
  if ( num_to_read > YY_READ_BUF_SIZE )   if ( num_to_read > YY_READ_BUF_SIZE )
  num_to_read = YY_READ_BUF_SIZE;   num_to_read = YY_READ_BUF_SIZE;
   
  /* Read in more data. */   /* Read in more data. */
  YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),   YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
  (yy_n_chars), num_to_read );   yy_n_chars, num_to_read );
   
  YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);   yy_current_buffer->yy_n_chars = yy_n_chars;
  }   }
   
  if ( (yy_n_chars) == 0 )   if ( yy_n_chars == 0 )
  {   {
  if ( number_to_move == YY_MORE_ADJ )   if ( number_to_move == YY_MORE_ADJ )
  {   {
Line 4770
 
Line 4747
  else   else
  {   {
  ret_val = EOB_ACT_LAST_MATCH;   ret_val = EOB_ACT_LAST_MATCH;
  YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =   yy_current_buffer->yy_buffer_status =
  YY_BUFFER_EOF_PENDING;   YY_BUFFER_EOF_PENDING;
  }   }
  }   }
Line 4778
 
Line 4755
  else   else
  ret_val = EOB_ACT_CONTINUE_SCAN;   ret_val = EOB_ACT_CONTINUE_SCAN;
   
  (yy_n_chars) += number_to_move;   yy_n_chars += number_to_move;
  YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;   yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
  YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;   yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
   
  (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];   yytext_ptr = &yy_current_buffer->yy_ch_buf[0];
   
  return ret_val;   return ret_val;
 }  }
   
   
 /* yy_get_previous_state - get the state just before the EOB char was reached */  /* yy_get_previous_state - get the state just before the EOB char was reached */
   
     static yy_state_type yy_get_previous_state (void)  static yy_state_type yy_get_previous_state()
 {  {
  register yy_state_type yy_current_state;   register yy_state_type yy_current_state;
  register char *yy_cp;   register char *yy_cp;
          
  yy_current_state = (yy_start);   yy_current_state = yy_start;
  yy_current_state += YY_AT_BOL();   yy_current_state += YY_AT_BOL();
   
  for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )   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);   register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
  if ( yy_accept[yy_current_state] )   if ( yy_accept[yy_current_state] )
  {   {
  (yy_last_accepting_state) = yy_current_state;   yy_last_accepting_state = yy_current_state;
  (yy_last_accepting_cpos) = yy_cp;   yy_last_accepting_cpos = yy_cp;
  }   }
  while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )   while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  {   {
  yy_current_state = (int) yy_def[yy_current_state];   yy_current_state = (int) yy_def[yy_current_state];
  if ( yy_current_state >= 2471 )   if ( yy_current_state >= 2479 )
  yy_c = yy_meta[(unsigned int) yy_c];   yy_c = yy_meta[(unsigned int) yy_c];
  }   }
  yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];   yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
Line 4817
 
Line 4795
  return yy_current_state;   return yy_current_state;
 }  }
   
   
 /* yy_try_NUL_trans - try to make a transition on the NUL character  /* yy_try_NUL_trans - try to make a transition on the NUL character
  *   *
  * synopsis   * synopsis
  * next_state = yy_try_NUL_trans( current_state );   * 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 )      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 int yy_is_jam;
     register char *yy_cp = (yy_c_buf_p);   register char *yy_cp = yy_c_buf_p;
   
  register YY_CHAR yy_c = 1;   register YY_CHAR yy_c = 1;
  if ( yy_accept[yy_current_state] )   if ( yy_accept[yy_current_state] )
  {   {
  (yy_last_accepting_state) = yy_current_state;   yy_last_accepting_state = yy_current_state;
  (yy_last_accepting_cpos) = yy_cp;   yy_last_accepting_cpos = yy_cp;
  }   }
  while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )   while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  {   {
  yy_current_state = (int) yy_def[yy_current_state];   yy_current_state = (int) yy_def[yy_current_state];
  if ( yy_current_state >= 2471 )   if ( yy_current_state >= 2479 )
  yy_c = yy_meta[(unsigned int) yy_c];   yy_c = yy_meta[(unsigned int) yy_c];
  }   }
  yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];   yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
  yy_is_jam = (yy_current_state == 2470);   yy_is_jam = (yy_current_state == 2478);
   
  return yy_is_jam ? 0 : yy_current_state;   return yy_is_jam ? 0 : yy_current_state;
 }  }
   
   
   #ifndef YY_NO_UNPUT
   #ifdef YY_USE_PROTOS
     static void yyunput (int c, register char * yy_bp )      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;   register char *yy_cp = yy_c_buf_p;
       
     yy_cp = (yy_c_buf_p);  
   
  /* undo effects of setting up yytext */   /* undo effects of setting up yytext */
  *yy_cp = (yy_hold_char);   *yy_cp = yy_hold_char;
   
  if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )   if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  { /* need to shift things up to make room */   { /* need to shift things up to make room */
  /* +2 for EOB chars. */   /* +2 for EOB chars. */
  register int number_to_move = (yy_n_chars) + 2;   register int number_to_move = yy_n_chars + 2;
  register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[   register char *dest = &yy_current_buffer->yy_ch_buf[
  YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];   yy_current_buffer->yy_buf_size + 2];
  register char *source =   register char *source =
  &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];   &yy_current_buffer->yy_ch_buf[number_to_move];
   
  while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )   while ( source > yy_current_buffer->yy_ch_buf )
  *--dest = *--source;   *--dest = *--source;
   
  yy_cp += (int) (dest - source);   yy_cp += (int) (dest - source);
  yy_bp += (int) (dest - source);   yy_bp += (int) (dest - source);
  YY_CURRENT_BUFFER_LVALUE->yy_n_chars =   yy_current_buffer->yy_n_chars =
  (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;   yy_n_chars = yy_current_buffer->yy_buf_size;
   
  if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )   if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  YY_FATAL_ERROR( "flex scanner push-back overflow" );   YY_FATAL_ERROR( "flex scanner push-back overflow" );
  }   }
   
  *--yy_cp = (char) c;   *--yy_cp = (char) c;
   
  (yytext_ptr) = yy_bp;  
  (yy_hold_char) = *yy_cp;   yytext_ptr = yy_bp;
  (yy_c_buf_p) = yy_cp;   yy_hold_char = *yy_cp;
    yy_c_buf_p = yy_cp;
 }  }
   #endif /* ifndef YY_NO_UNPUT */
   
   
 #ifndef YY_NO_INPUT  
 #ifdef __cplusplus  #ifdef __cplusplus
     static int yyinput (void)  static int yyinput()
 #else  #else
     static int input  (void)  static int input()
 #endif  #endif
   
 {  {
  int c;   int c;
          
  *(yy_c_buf_p) = (yy_hold_char);   *yy_c_buf_p = yy_hold_char;
   
  if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )   if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
  {   {
  /* yy_c_buf_p now points to the character we want to return.   /* yy_c_buf_p now points to the character we want to return.
  * If this occurs *before* the EOB characters, then it's a   * If this occurs *before* the EOB characters, then it's a
  * valid NUL; if not, then we've hit the end of the buffer.   * valid NUL; if not, then we've hit the end of the buffer.
  */   */
  if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )   if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  /* This was really a NUL. */   /* This was really a NUL. */
  *(yy_c_buf_p) = '\0';   *yy_c_buf_p = '\0';
   
  else   else
  { /* need more input */   { /* need more input */
  int offset = (yy_c_buf_p) - (yytext_ptr);   int offset = yy_c_buf_p - yytext_ptr;
  ++(yy_c_buf_p);   ++yy_c_buf_p;
   
  switch ( yy_get_next_buffer(  ) )   switch ( yy_get_next_buffer(  ) )
  {   {
Line 4925
 
Line 4917
  /* Reset buffer status. */   /* Reset buffer status. */
  yyrestart(yyin );   yyrestart(yyin );
   
  /*FALLTHROUGH*/   /* fall through */
   
  case EOB_ACT_END_OF_FILE:   case EOB_ACT_END_OF_FILE:
  {   {
  if ( yywrap( ) )   if ( yywrap( ) )
  return EOF;   return EOF;
   
  if ( ! (yy_did_buffer_switch_on_eof) )   if ( ! yy_did_buffer_switch_on_eof )
  YY_NEW_FILE;   YY_NEW_FILE;
 #ifdef __cplusplus  #ifdef __cplusplus
  return yyinput();   return yyinput();
Line 4942
 
Line 4934
  }   }
   
  case EOB_ACT_CONTINUE_SCAN:   case EOB_ACT_CONTINUE_SCAN:
  (yy_c_buf_p) = (yytext_ptr) + offset;   yy_c_buf_p = yytext_ptr + offset;
  break;   break;
  }   }
  }   }
  }   }
   
  c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */   c = *(unsigned char *) yy_c_buf_p; /* cast for 8-bit char's */
  *(yy_c_buf_p) = '\0'; /* preserve yytext */   *yy_c_buf_p = '\0'; /* preserve yytext */
  (yy_hold_char) = *++(yy_c_buf_p);   yy_hold_char = *++yy_c_buf_p;
   
  YY_CURRENT_BUFFER_LVALUE->yy_at_bol = (c == '\n');   yy_current_buffer->yy_at_bol = (c == '\n');
   
  return c;   return c;
 }  }
 #endif /* ifndef YY_NO_INPUT */  
   
 /** Immediately switch to a different input stream.  
  * @param input_file A readable stream.  #ifdef YY_USE_PROTOS
  *   
  * @note This function does not reset the start condition to @c INITIAL .  
  */  
     void yyrestart  (FILE * input_file )      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 );
          
  if ( ! YY_CURRENT_BUFFER ){   yy_init_buffer( yy_current_buffer, input_file );
         yyensure_buffer_stack ();  
  YY_CURRENT_BUFFER_LVALUE =  
             yy_create_buffer(yyin,YY_BUF_SIZE );  
  }  
   
  yy_init_buffer(YY_CURRENT_BUFFER,input_file );  
  yy_load_buffer_state( );   yy_load_buffer_state( );
 }  }
   
 /** Switch to a different input buffer.  
  * @param new_buffer The new input buffer.  #ifdef YY_USE_PROTOS
  *   
  */  
     void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )      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 )
  /* TODO. We should be able to replace this entire function body  
  * with  
  * yypop_buffer_state();  
  * yypush_buffer_state(new_buffer);  
      */  
  yyensure_buffer_stack ();  
  if ( YY_CURRENT_BUFFER == new_buffer )  
  return;   return;
   
  if ( YY_CURRENT_BUFFER )   if ( yy_current_buffer )
  {   {
  /* Flush out information for old buffer. */   /* Flush out information for old buffer. */
  *(yy_c_buf_p) = (yy_hold_char);   *yy_c_buf_p = yy_hold_char;
  YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);   yy_current_buffer->yy_buf_pos = yy_c_buf_p;
  YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);   yy_current_buffer->yy_n_chars = yy_n_chars;
  }   }
   
  YY_CURRENT_BUFFER_LVALUE = new_buffer;   yy_current_buffer = new_buffer;
  yy_load_buffer_state( );   yy_load_buffer_state( );
   
  /* We don't actually know whether we did this switch during   /* We don't actually know whether we did this switch during
Line 5008
 
Line 4991
  * is looked at is after yywrap() is called, so it's safe   * is looked at is after yywrap() is called, so it's safe
  * to go ahead and always set it.   * to go ahead and always set it.
  */   */
  (yy_did_buffer_switch_on_eof) = 1;   yy_did_buffer_switch_on_eof = 1;
 }  }
   
 static void yy_load_buffer_state  (void)  
   #ifdef YY_USE_PROTOS
   void yy_load_buffer_state( void )
   #else
   void yy_load_buffer_state()
   #endif
 {  {
     (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;   yy_n_chars = yy_current_buffer->yy_n_chars;
  (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;   yytext_ptr = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
  yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;   yyin = yy_current_buffer->yy_input_file;
  (yy_hold_char) = *(yy_c_buf_p);   yy_hold_char = *yy_c_buf_p;
 }  }
   
 /** Allocate and initialize an input buffer state.  
  * @param file A readable stream.  #ifdef YY_USE_PROTOS
  * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.  
  *   
  * @return the allocated buffer state.  
  */  
     YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )      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;   YY_BUFFER_STATE b;
          
  b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );   b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  if ( ! b )   if ( ! b )
  YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
   
Line 5038
 
Line 5027
  /* yy_ch_buf has to be 2 characters longer than the size given because   /* yy_ch_buf has to be 2 characters longer than the size given because
  * we need to put in 2 end-of-buffer characters.   * we need to put in 2 end-of-buffer characters.
  */   */
  b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );   b->yy_ch_buf = (char *) yy_flex_alloc( b->yy_buf_size + 2 );
  if ( ! b->yy_ch_buf )   if ( ! b->yy_ch_buf )
  YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
   
Line 5049
 
Line 5038
  return b;   return b;
 }  }
   
 /** Destroy the buffer.  
  * @param b a buffer created with yy_create_buffer()  #ifdef YY_USE_PROTOS
  *   
  */  
     void yy_delete_buffer (YY_BUFFER_STATE  b )      void yy_delete_buffer (YY_BUFFER_STATE  b )
   #else
   void yy_delete_buffer( b )
   YY_BUFFER_STATE b;
   #endif
 {  {
       
  if ( ! b )   if ( ! b )
  return;   return;
   
  if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */   if ( b == yy_current_buffer )
  YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;   yy_current_buffer = (YY_BUFFER_STATE) 0;
   
  if ( b->yy_is_our_buffer )   if ( b->yy_is_our_buffer )
  yyfree((void *) b->yy_ch_buf  );   yy_flex_free( (void *) b->yy_ch_buf );
   
  yyfree((void *) b  );   yy_flex_free( (void *) b );
 }  }
   
 #ifndef __cplusplus  
 extern int isatty (int );  
 #endif /* __cplusplus */  
          
 /* Initializes or reinitializes a buffer.  #ifndef YY_ALWAYS_INTERACTIVE
  * This function is sometimes called more than once on the same buffer,  #ifndef YY_NEVER_INTERACTIVE
  * such as during a yyrestart() or at EOF.  extern int isatty YY_PROTO(( int ));
  */  #endif
     static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )  #endif
   
 {  #ifdef YY_USE_PROTOS
  int oerrno = errno;  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 );   yy_flush_buffer(b );
   
  b->yy_input_file = file;   b->yy_input_file = file;
  b->yy_fill_buffer = 1;   b->yy_fill_buffer = 1;
   
     /* If b is the current buffer, then yy_init_buffer was _probably_  #if YY_ALWAYS_INTERACTIVE
      * called from yyrestart() or through yy_get_next_buffer.   b->yy_is_interactive = 1;
      * In that case, we don't want to reset the lineno or column.  #else
      */  #if YY_NEVER_INTERACTIVE
     if (b != YY_CURRENT_BUFFER){   b->yy_is_interactive = 0;
         b->yy_bs_lineno = 1;  #else
         b->yy_bs_column = 0;  
     }  
   
         b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;          b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
       #endif
  errno = oerrno;  #endif
 }  }
   
 /** Discard all buffered characters. On the next scan, YY_INPUT will be called.  
  * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.  #ifdef YY_USE_PROTOS
  *   
  */  
     void yy_flush_buffer (YY_BUFFER_STATE  b )      void yy_flush_buffer (YY_BUFFER_STATE  b )
   #else
   void yy_flush_buffer( b )
   YY_BUFFER_STATE b;
   #endif
   
 {  {
     if ( ! b )      if ( ! b )
  return;   return;
Line 5123
 
Line 5117
  b->yy_at_bol = 1;   b->yy_at_bol = 1;
  b->yy_buffer_status = YY_BUFFER_NEW;   b->yy_buffer_status = YY_BUFFER_NEW;
   
  if ( b == YY_CURRENT_BUFFER )   if ( b == yy_current_buffer )
  yy_load_buffer_state( );  
 }  
   
 /** Pushes the new state onto the stack. The new state becomes  
  *  the current state. This function will allocate the stack  
  *  if necessary.  
  *  @param new_buffer The new state.  
  *    
  */  
 void yypush_buffer_state (YY_BUFFER_STATE new_buffer )  
 {  
     if (new_buffer == NULL)  
  return;  
   
  yyensure_buffer_stack();  
   
  /* This block is copied from yy_switch_to_buffer. */  
  if ( YY_CURRENT_BUFFER )  
  {  
  /* Flush out information for old buffer. */  
  *(yy_c_buf_p) = (yy_hold_char);  
  YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);  
  YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);  
  }  
   
  /* Only push if top exists. Otherwise, replace top. */  
  if (YY_CURRENT_BUFFER)  
  (yy_buffer_stack_top)++;  
  YY_CURRENT_BUFFER_LVALUE = new_buffer;  
   
  /* copied from yy_switch_to_buffer. */  
  yy_load_buffer_state( );  
  (yy_did_buffer_switch_on_eof) = 1;  
 }  
   
 /** Removes and deletes the top of the stack, if present.  
  *  The next element becomes the new top.  
  *    
  */  
 void yypop_buffer_state (void)  
 {  
     if (!YY_CURRENT_BUFFER)  
  return;  
   
  yy_delete_buffer(YY_CURRENT_BUFFER );  
  YY_CURRENT_BUFFER_LVALUE = NULL;  
  if ((yy_buffer_stack_top) > 0)  
  --(yy_buffer_stack_top);  
   
  if (YY_CURRENT_BUFFER) {  
  yy_load_buffer_state( );   yy_load_buffer_state( );
  (yy_did_buffer_switch_on_eof) = 1;  
  }  
 }  
   
 /* Allocates the stack if it does not exist.  
  *  Guarantees space for at least one push.  
  */  
 static void yyensure_buffer_stack (void)  
 {  
  int num_to_alloc;  
       
  if (!(yy_buffer_stack)) {  
   
  /* First allocation is just for 2 elements, since we don't know if this  
  * scanner will even need a stack. We use 2 instead of 1 to avoid an  
  * immediate realloc on the next call.  
          */  
  num_to_alloc = 1;  
  (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc  
  (num_to_alloc * sizeof(struct yy_buffer_state*)  
  );  
    
  memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));  
    
  (yy_buffer_stack_max) = num_to_alloc;  
  (yy_buffer_stack_top) = 0;  
  return;  
  }   }
   
  if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){  
   
  /* Increase the buffer to prepare for a possible push. */  
  int grow_size = 8 /* arbitrary grow size */;  
   
  num_to_alloc = (yy_buffer_stack_max) + grow_size;  
  (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc  
  ((yy_buffer_stack),  
  num_to_alloc * sizeof(struct yy_buffer_state*)  
  );  
   
  /* zero only the new slots.*/  #ifndef YY_NO_SCAN_BUFFER
  memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));  #ifdef YY_USE_PROTOS
  (yy_buffer_stack_max) = num_to_alloc;  
  }  
 }  
   
 /** Setup the input buffer state to scan directly from a user-specified character buffer.  
  * @param base the character buffer  
  * @param size the size in bytes of the character buffer  
  *   
  * @return the newly allocated buffer state object.   
  */  
 YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )  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;   YY_BUFFER_STATE b;
          
Line 5237
 
Line 5139
  /* They forgot to leave room for the EOB's. */   /* They forgot to leave room for the EOB's. */
  return 0;   return 0;
   
  b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );   b = (YY_BUFFER_STATE) yy_flex_alloc( sizeof( struct yy_buffer_state ) );
  if ( ! b )   if ( ! b )
  YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
   
Line 5255
 
Line 5157
   
  return b;   return b;
 }  }
   #endif
   
 /** Setup the input buffer state to scan a string. The next call to yylex() will  
  * scan from a @e copy of @a str.  #ifndef YY_NO_SCAN_STRING
  * @param str a NUL-terminated string to scan  #ifdef YY_USE_PROTOS
  *   
  * @return the newly allocated buffer state object.  
  * @note If you want to scan bytes that may contain NUL values, then use  
  *       yy_scan_bytes() instead.  
  */  
 YY_BUFFER_STATE yy_scan_string (yyconst char * yy_str )  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,strlen(yy_str) );   return yy_scan_bytes( yy_str, len );
 }  }
   #endif
   
 /** Setup the input buffer state to scan the given bytes. The next call to yylex() will  
  * scan from a @e copy of @a bytes.  #ifndef YY_NO_SCAN_BYTES
  * @param bytes the byte buffer to scan  #ifdef YY_USE_PROTOS
  * @param len the number of bytes in the buffer pointed to by @a bytes.  
  *   
  * @return the newly allocated buffer state object.  
  */  
 YY_BUFFER_STATE yy_scan_bytes  (yyconst char * bytes, int  len )  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;   YY_BUFFER_STATE b;
  char *buf;   char *buf;
Line 5286
 
Line 5193
          
  /* Get memory for full buffer, including space for trailing EOB's. */   /* Get memory for full buffer, including space for trailing EOB's. */
  n = len + 2;   n = len + 2;
  buf = (char *) yyalloc(n  );   buf = (char *) yy_flex_alloc( n );
  if ( ! buf )   if ( ! buf )
  YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );   YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
   
Line 5306
 
Line 5213
   
  return b;   return b;
 }  }
   #endif
   
   
   #ifndef YY_NO_PUSH_STATE
   #ifdef YY_USE_PROTOS
     static void yy_push_state (int  new_state )      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) )   if ( yy_start_stack_ptr >= yy_start_stack_depth )
  {   {
  yy_size_t new_size;   yy_size_t new_size;
   
  (yy_start_stack_depth) += YY_START_STACK_INCR;   yy_start_stack_depth += YY_START_STACK_INCR;
  new_size = (yy_start_stack_depth) * sizeof( int );   new_size = yy_start_stack_depth * sizeof( int );
   
  if ( ! (yy_start_stack) )   if ( ! yy_start_stack )
  (yy_start_stack) = (int *) yyalloc(new_size  );   yy_start_stack = (int *) yy_flex_alloc( new_size );
   
  else   else
  (yy_start_stack) = (int *) yyrealloc((void *) (yy_start_stack),new_size  );   yy_start_stack = (int *) yy_flex_realloc(
    (void *) yy_start_stack, new_size );
   
  if ( ! (yy_start_stack) )   if ( ! yy_start_stack )
  YY_FATAL_ERROR(   YY_FATAL_ERROR(
  "out of memory expanding start-condition stack" );   "out of memory expanding start-condition stack" );
  }   }
   
  (yy_start_stack)[(yy_start_stack_ptr)++] = YY_START;   yy_start_stack[yy_start_stack_ptr++] = YY_START;
   
  BEGIN(new_state);   BEGIN(new_state);
 }  }
   #endif
   
   
     static void yy_pop_state  (void)  #ifndef YY_NO_POP_STATE
   static void yy_pop_state()
 {  {
     if ( --(yy_start_stack_ptr) < 0 )   if ( --yy_start_stack_ptr < 0 )
  YY_FATAL_ERROR( "start-condition stack underflow" );   YY_FATAL_ERROR( "start-condition stack underflow" );
   
  BEGIN((yy_start_stack)[(yy_start_stack_ptr)]);   BEGIN(yy_start_stack[yy_start_stack_ptr]);
 }  }
   #endif
   
   
     static int yy_top_state  (void)  #ifndef YY_NO_TOP_STATE
   static int yy_top_state()
 {  {
     return (yy_start_stack)[(yy_start_stack_ptr) - 1];   return yy_start_stack[yy_start_stack_ptr - 1];
 }  }
   #endif
   
 #ifndef YY_EXIT_FAILURE  #ifndef YY_EXIT_FAILURE
 #define YY_EXIT_FAILURE 2  #define YY_EXIT_FAILURE 2
 #endif  #endif
   
 static void yy_fatal_error (yyconst char* msg )  #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 );      (void) fprintf( stderr, "%s\n", msg );
  exit( YY_EXIT_FAILURE );   exit( YY_EXIT_FAILURE );
 }  }
   
   
   
 /* Redefine yyless() so it works in section 3 code. */  /* Redefine yyless() so it works in section 3 code. */
   
 #undef yyless  #undef yyless
Line 5362
 
Line 5292
  do \   do \
  { \   { \
  /* Undo effects of setting up yytext. */ \   /* Undo effects of setting up yytext. */ \
         int yyless_macro_arg = (n); \   yytext[yyleng] = yy_hold_char; \
         YY_LESS_LINENO(yyless_macro_arg);\   yy_c_buf_p = yytext + n; \
  yytext[yyleng] = (yy_hold_char); \   yy_hold_char = *yy_c_buf_p; \
  (yy_c_buf_p) = yytext + yyless_macro_arg; \   *yy_c_buf_p = '\0'; \
  (yy_hold_char) = *(yy_c_buf_p); \   yyleng = n; \
  *(yy_c_buf_p) = '\0'; \  
  yyleng = yyless_macro_arg; \  
  } \   } \
  while ( 0 )   while ( 0 )
   
 /* Accessor  methods (get/set functions) to struct members. */  
   
 /** Get the current line number.  
  *   
  */  
 int yyget_lineno  (void)  
 {  
           
     return yylineno;  
 }  
   
 /** Get the input stream.  
  *   
  */  
 FILE *yyget_in  (void)  
 {  
         return yyin;  
 }  
   
 /** Get the output stream.  
  *   
  */  
 FILE *yyget_out  (void)  
 {  
         return yyout;  
 }  
   
 /** Get the length of the current token.  
  *   
  */  
 int yyget_leng  (void)  
 {  
         return yyleng;  
 }  
   
 /** Get the current token.  
  *   
  */  
   
 char *yyget_text  (void)  
 {  
         return yytext;  
 }  
   
 /** Set the current line number.  
  * @param line_number  
  *   
  */  
 void yyset_lineno (int  line_number )  
 {  
       
     yylineno = line_number;  
 }  
   
 /** Set the input stream. This does not discard the current  
  * input buffer.  
  * @param in_str A readable stream.  
  *   
  * @see yy_switch_to_buffer  
  */  
 void yyset_in (FILE *  in_str )  
 {  
         yyin = in_str ;  
 }  
   
 void yyset_out (FILE *  out_str )  
 {  
         yyout = out_str ;  
 }  
   
 int yyget_debug  (void)  
 {  
         return yy_flex_debug;  
 }  
   
 void yyset_debug (int  bdebug )  
 {  
         yy_flex_debug = bdebug ;  
 }  
   
 /* yylex_destroy is for both reentrant and non-reentrant scanners. */  
 int yylex_destroy  (void)  
 {  
       
     /* Pop the buffer stack, destroying each element. */  
  while(YY_CURRENT_BUFFER){  
  yy_delete_buffer(YY_CURRENT_BUFFER  );  
  YY_CURRENT_BUFFER_LVALUE = NULL;  
  yypop_buffer_state();  
  }  
   
  /* Destroy the stack itself. */  
  yyfree((yy_buffer_stack) );  
  (yy_buffer_stack) = NULL;  
   
     /* Destroy the start condition stack. */  
         yyfree((yy_start_stack)  );  
         (yy_start_stack) = NULL;  
   
     return 0;  
 }  
   
 /*  /* Internal utility routines. */
  * Internal utility routines.  
  */  
   
 #ifndef yytext_ptr  #ifndef yytext_ptr
   #ifdef YY_USE_PROTOS
 static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )  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;   register int i;
     for ( i = 0; i < n; ++i )      for ( i = 0; i < n; ++i )
Line 5488
 
Line 5320
 #endif  #endif
   
 #ifdef YY_NEED_STRLEN  #ifdef YY_NEED_STRLEN
   #ifdef YY_USE_PROTOS
 static int yy_flex_strlen (yyconst char * s )  static int yy_flex_strlen (yyconst char * s )
   #else
   static int yy_flex_strlen( s )
   yyconst char *s;
   #endif
 {  {
  register int n;   register int n;
     for ( n = 0; s[n]; ++n )      for ( n = 0; s[n]; ++n )
Line 5498
 
Line 5335
 }  }
 #endif  #endif
   
 void *yyalloc (yy_size_t  size )  
   #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 );   return (void *) malloc( size );
 }  }
   
 void *yyrealloc  (void * ptr, yy_size_t  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   /* The cast to (char *) in the following accommodates both
  * implementations that use char* generic pointers, and those   * implementations that use char* generic pointers, and those
Line 5515
 
Line 5364
  return (void *) realloc( (char *) ptr, size );   return (void *) realloc( (char *) ptr, size );
 }  }
   
 void yyfree (void * ptr )  #ifdef YY_USE_PROTOS
   static void yy_flex_free( void *ptr )
   #else
   static void yy_flex_free( ptr )
   void *ptr;
   #endif
 {  {
  free( (char *) ptr ); /* see yyrealloc() for (char *) cast */   free( ptr );
 }  }
   
 #define YYTABLES_NAME "yytables"  #if YY_MAIN
   int main()
 #undef YY_NEW_FILE   {
 #undef YY_FLUSH_BUFFER   yylex();
 #undef yy_set_bol   return 0;
 #undef yy_new_buffer   }
 #undef yy_set_interactive  
 #undef yytext_ptr  
 #undef YY_DO_BEFORE_ACTION  
   
 #ifdef YY_DECL_IS_OURS  
 #undef YY_DECL_IS_OURS  
 #undef YY_DECL  
 #endif  #endif
 #line 1263 "loader.l"  #line 1313 "loader.l"
   
   
   
   
Line 5698
 
Line 5544
 };  };
   
   
 void save_double(char *buf,char *name,double v)  
 {  
   char tbuf[200];  
   
   sprintf(tbuf,"%s %f\n",name,v);  
   strcat(buf,tbuf);  
 }  
   
 /*  /*
  * Initialises the array of variable-names.  Needed before any   * Initialises the array of variable-names.  Needed before any
  * objects can be loaded.  Called by init_library().   * objects can be loaded.  Called by init_library().
Line 5770
 
Line 5608
     {"event_timer_options ",20}      {"event_timer_options ",20}
 };  };
   
   /* This returns a string of the integer movement type */
   static char* get_string_move_type(MoveType mt)
   {
       static char retbuf[MAX_BUF], retbuf_all[MAX_BUF];
       int i, all_count=0, count;
   
       strcpy(retbuf,"");
       strcpy(retbuf_all," all");
   
       /* Quick check, and probably fairly common */
       if (mt == MOVE_ALL) return retbuf_all;
   
       /* We basically slide the bits down.  Why look at MOVE_ALL?
        * because we may want to return a string like 'all -swim',
        * and if we just looked at mt, we couldn't get that.
        */
       for (i=MOVE_ALL, count=0; i!=0; i >>= 1, count++) {
    if (mt & (1<<count)) {
        strcat(retbuf, " ");
        strcat(retbuf, move_name[count]);
    } else {
        strcat(retbuf_all, " -");
        strcat(retbuf_all, move_name[count]);
        all_count++;
    }
       }
       /* Basically, if there is a single negation, return it, eg
        * 'all -swim'.  But more than that, just return the
        * enumerated values.  It doesn't make sense to return
        * 'all -walk -fly_low' - it is shorter to return 'fly_high swim'
        */
       if (all_count <=1) return retbuf_all;
       else return retbuf;
   }
      
   
 /*  /*
  * Returns a pointer to a static string which contains all variables   * Returns a pointer to a static string which contains all variables
  * which are different in the two given objects.  op is the what object   * which are different in the two given objects.  op is the what object
Line 6121
 
Line 5995
  FAST_SAVE_LONG(fastbuf,"gen_sp_armour ",op->gen_sp_armour,14);   FAST_SAVE_LONG(fastbuf,"gen_sp_armour ",op->gen_sp_armour,14);
     }      }
   
       /* I've kept the old int move type saving code commented out.
        * In an ideal world, we'd know if we want to do a quick
        * save (say to a temp map, where we don't care about strings),
        * or a slower save/dm dump, where printing out strings is handy.
        */
     if (op->move_type != op2->move_type) {      if (op->move_type != op2->move_type) {
  FAST_SAVE_LONG(fastbuf,"move_type ",op->move_type,10);   /*FAST_SAVE_LONG(fastbuf,"move_type ",op->move_type,10)*/
    ADD_STRINGLINE_ENTRY(fastbuf,"move_type  ",
         get_string_move_type(op->move_type),
         10);
     }      }
   
     if (op->move_block != op2->move_block) {      if (op->move_block != op2->move_block) {
  FAST_SAVE_LONG(fastbuf,"move_block ",op->move_block,11);   /*FAST_SAVE_LONG(fastbuf,"move_block ",op->move_block,11)*/
    ADD_STRINGLINE_ENTRY(fastbuf,"move_block  ",
         get_string_move_type(op->move_block),
         11);
       }
       if (op->move_allow != op2->move_allow) {
    /*FAST_SAVE_LONG(fastbuf,"move_allow ",op->move_allow,11);*/
    ADD_STRINGLINE_ENTRY(fastbuf,"move_allow  ",
         get_string_move_type(op->move_allow),
         11);
     }      }
   
     if (op->move_on != op2->move_on) {      if (op->move_on != op2->move_on) {
  FAST_SAVE_LONG(fastbuf,"move_on ",op->move_on,8);   /*FAST_SAVE_LONG(fastbuf,"move_on ",op->move_on,8);*/
    ADD_STRINGLINE_ENTRY(fastbuf,"move_on  ",
         get_string_move_type(op->move_on),
         8);
     }      }
   
     if (op->move_off != op2->move_off) {      if (op->move_off != op2->move_off) {
  FAST_SAVE_LONG(fastbuf,"move_off ",op->move_off,9);   /*FAST_SAVE_LONG(fastbuf,"move_off ",op->move_off,9);*/
    ADD_STRINGLINE_ENTRY(fastbuf,"move_off  ",
         get_string_move_type(op->move_off),
         9);
     }      }
     if (op->move_slow != op2->move_slow) {      if (op->move_slow != op2->move_slow) {
  FAST_SAVE_LONG(fastbuf,"move_slow ",op->move_slow,10);   /*FAST_SAVE_LONG(fastbuf,"move_slow ",op->move_slow,10);*/
    ADD_STRINGLINE_ENTRY(fastbuf,"move_slow  ",
         get_string_move_type(op->move_slow),
         10);
     }      }
   
     if (op->move_slow_penalty != op2->move_slow_penalty) {      if (op->move_slow_penalty != op2->move_slow_penalty) {
Line 6274
 
Line 6171
     }      }
     return NULL;      return NULL;
 }  }
   


Legend:
line(s) removed in v.1.74 
line(s) changed
 line(s) added in v.1.75

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:09