Files
harbour-core/harbour/source/compiler/harbour.yyc
Przemyslaw Czerpak b52f13cdc1 2009-05-07 16:52 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbcompdf.h
  * harbour/source/compiler/harbour.y
  * harbour/source/compiler/harbour.yyc
    + added compile time optimization for switch statements with constant
      values, i.e. for code like:
            proc main()
               local x := 0
               switch 3
                  case 1;     x += 100;   exit
                  case 2;     x += 200
                  case 3;     x += 300
                  case 4;     x += 400;   exit
                  case 5;     x += 505;   exit
                  case 6;     x += 606
                  otherwise;  x += 1000
               endswitch
               ? x
            return
2009-05-07 14:44:36 +00:00

8127 lines
351 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* A Bison parser, made by GNU Bison 2.3. */
/* Skeleton implementation for Bison's Yacc-like parsers in C
Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output. */
#define YYBISON 1
/* Bison version. */
#define YYBISON_VERSION "2.3"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 1
/* Using locations. */
#define YYLSP_NEEDED 0
/* Substitute the variable and function names. */
#define yyparse hb_compparse
#define yylex hb_complex
#define yyerror hb_comperror
#define yylval hb_complval
#define yychar hb_compchar
#define yydebug hb_compdebug
#define yynerrs hb_compnerrs
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
FUNCTION = 258,
PROCEDURE = 259,
IDENTIFIER = 260,
RETURN = 261,
NIL = 262,
NUM_DOUBLE = 263,
INASSIGN = 264,
NUM_LONG = 265,
LOCAL = 266,
STATIC = 267,
IIF = 268,
IF = 269,
ELSE = 270,
ELSEIF = 271,
END = 272,
ENDIF = 273,
LITERAL = 274,
TRUEVALUE = 275,
FALSEVALUE = 276,
ANNOUNCE = 277,
EXTERN = 278,
DYNAMIC = 279,
INIT = 280,
EXIT = 281,
AND = 282,
OR = 283,
NOT = 284,
PUBLIC = 285,
EQ = 286,
NE1 = 287,
NE2 = 288,
INC = 289,
DEC = 290,
ALIASOP = 291,
DOCASE = 292,
CASE = 293,
OTHERWISE = 294,
ENDCASE = 295,
ENDDO = 296,
MEMVAR = 297,
WHILE = 298,
LOOP = 299,
FOR = 300,
NEXT = 301,
TO = 302,
STEP = 303,
LE = 304,
GE = 305,
FIELD = 306,
IN = 307,
PARAMETERS = 308,
PLUSEQ = 309,
MINUSEQ = 310,
MULTEQ = 311,
DIVEQ = 312,
POWER = 313,
EXPEQ = 314,
MODEQ = 315,
PRIVATE = 316,
BEGINSEQ = 317,
BREAK = 318,
RECOVER = 319,
RECOVERUSING = 320,
ALWAYS = 321,
ENDSEQ = 322,
DO = 323,
WITH = 324,
SELF = 325,
LINE = 326,
MACROVAR = 327,
MACROTEXT = 328,
AS_ARRAY = 329,
AS_BLOCK = 330,
AS_CHARACTER = 331,
AS_CLASS = 332,
AS_DATE = 333,
AS_LOGICAL = 334,
AS_NUMERIC = 335,
AS_OBJECT = 336,
AS_VARIANT = 337,
DECLARE = 338,
OPTIONAL = 339,
DECLARE_CLASS = 340,
DECLARE_MEMBER = 341,
AS_ARRAY_ARRAY = 342,
AS_BLOCK_ARRAY = 343,
AS_CHARACTER_ARRAY = 344,
AS_CLASS_ARRAY = 345,
AS_DATE_ARRAY = 346,
AS_LOGICAL_ARRAY = 347,
AS_NUMERIC_ARRAY = 348,
AS_OBJECT_ARRAY = 349,
PROCREQ = 350,
CBSTART = 351,
DOIDENT = 352,
FOREACH = 353,
DESCEND = 354,
DOSWITCH = 355,
ENDSWITCH = 356,
WITHOBJECT = 357,
ENDWITH = 358,
NUM_DATE = 359,
TIMESTAMP = 360,
EPSILON = 361,
HASHOP = 362,
THREAD = 363,
POST = 364,
UNARY = 365,
PRE = 366
};
#endif
/* Tokens. */
#define FUNCTION 258
#define PROCEDURE 259
#define IDENTIFIER 260
#define RETURN 261
#define NIL 262
#define NUM_DOUBLE 263
#define INASSIGN 264
#define NUM_LONG 265
#define LOCAL 266
#define STATIC 267
#define IIF 268
#define IF 269
#define ELSE 270
#define ELSEIF 271
#define END 272
#define ENDIF 273
#define LITERAL 274
#define TRUEVALUE 275
#define FALSEVALUE 276
#define ANNOUNCE 277
#define EXTERN 278
#define DYNAMIC 279
#define INIT 280
#define EXIT 281
#define AND 282
#define OR 283
#define NOT 284
#define PUBLIC 285
#define EQ 286
#define NE1 287
#define NE2 288
#define INC 289
#define DEC 290
#define ALIASOP 291
#define DOCASE 292
#define CASE 293
#define OTHERWISE 294
#define ENDCASE 295
#define ENDDO 296
#define MEMVAR 297
#define WHILE 298
#define LOOP 299
#define FOR 300
#define NEXT 301
#define TO 302
#define STEP 303
#define LE 304
#define GE 305
#define FIELD 306
#define IN 307
#define PARAMETERS 308
#define PLUSEQ 309
#define MINUSEQ 310
#define MULTEQ 311
#define DIVEQ 312
#define POWER 313
#define EXPEQ 314
#define MODEQ 315
#define PRIVATE 316
#define BEGINSEQ 317
#define BREAK 318
#define RECOVER 319
#define RECOVERUSING 320
#define ALWAYS 321
#define ENDSEQ 322
#define DO 323
#define WITH 324
#define SELF 325
#define LINE 326
#define MACROVAR 327
#define MACROTEXT 328
#define AS_ARRAY 329
#define AS_BLOCK 330
#define AS_CHARACTER 331
#define AS_CLASS 332
#define AS_DATE 333
#define AS_LOGICAL 334
#define AS_NUMERIC 335
#define AS_OBJECT 336
#define AS_VARIANT 337
#define DECLARE 338
#define OPTIONAL 339
#define DECLARE_CLASS 340
#define DECLARE_MEMBER 341
#define AS_ARRAY_ARRAY 342
#define AS_BLOCK_ARRAY 343
#define AS_CHARACTER_ARRAY 344
#define AS_CLASS_ARRAY 345
#define AS_DATE_ARRAY 346
#define AS_LOGICAL_ARRAY 347
#define AS_NUMERIC_ARRAY 348
#define AS_OBJECT_ARRAY 349
#define PROCREQ 350
#define CBSTART 351
#define DOIDENT 352
#define FOREACH 353
#define DESCEND 354
#define DOSWITCH 355
#define ENDSWITCH 356
#define WITHOBJECT 357
#define ENDWITH 358
#define NUM_DATE 359
#define TIMESTAMP 360
#define EPSILON 361
#define HASHOP 362
#define THREAD 363
#define POST 364
#define UNARY 365
#define PRE 366
/* Copy the first part of user declarations. */
#line 5 "harbour.y"
/*
* $Id$
*/
/*
* Harbour Project source code:
* Compiler YACC rules and actions
*
* Copyright 1999 Antonio Linares <alinares@fivetech.com>
* www - http://www.harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA (or visit
* their web site at http://www.gnu.org/).
*
*/
/* TODO list
* 1) Change the pcode generated by ::cVar from Self:cVar to QSELF():cVar
* The major problem to solve is how to support QSELF() inside a codeblock.
*/
#include "hbcomp.h"
/* Compile using: bison -d -v harbour.y */
/* to pacify some warnings in BCC */
#if defined( __BORLANDC__ ) && !defined( __STDC__ )
# define __STDC__
#endif
#undef alloca
#define alloca hb_xgrab
#undef malloc
#define malloc hb_xgrab
#undef realloc
#define realloc hb_xrealloc
#undef free
#define free hb_xfree
/* NOTE: these symbols are used internally in bison.simple
*/
#undef YYFREE
#define YYFREE hb_xfree
#undef YYMALLOC
#define YYMALLOC hb_xgrab
#define NO_YYERROR
/* NOTE: these symbols are defined explicitly to pacify warnings */
#define YYENABLE_NLS 0
#define YYLTYPE_IS_TRIVIAL 0
static void hb_compLoopStart( HB_COMP_DECL, BOOL );
static void hb_compLoopEnd( HB_COMP_DECL );
static void hb_compLoopLoop( HB_COMP_DECL );
static void hb_compLoopExit( HB_COMP_DECL );
static void hb_compLoopHere( HB_COMP_DECL );
static long hb_compLoopCount( HB_COMP_DECL );
static void * hb_compElseIfGen( HB_COMP_DECL, void * pFirstElseIf, ULONG ulOffset ); /* generates a support structure for elseifs pcode fixups */
static void hb_compElseIfFix( HB_COMP_DECL, void * pIfElseIfs ); /* implements the ElseIfs pcode fixups */
static void hb_compRTVariableAdd( HB_COMP_DECL, HB_EXPR_PTR, BOOL );
static void hb_compRTVariableGen( HB_COMP_DECL, const char * );
static HB_EXPR_PTR hb_compArrayDimPush( HB_EXPR_PTR pInitValue, HB_COMP_DECL );
static void hb_compVariableDim( const char *, HB_EXPR_PTR, HB_COMP_DECL );
static void hb_compForStart( HB_COMP_DECL, const char *szVarName, BOOL bForEach );
static void hb_compForEnd( HB_COMP_DECL, const char *szVarName );
static void hb_compEnumStart( HB_COMP_DECL, HB_EXPR_PTR pVars, HB_EXPR_PTR pExprs, int descend );
static void hb_compEnumNext( HB_COMP_DECL, HB_EXPR_PTR pExpr, int descend );
static void hb_compEnumEnd( HB_COMP_DECL, HB_EXPR_PTR pExpr );
static void hb_compSwitchStart( HB_COMP_DECL, HB_EXPR_PTR );
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR );
static void hb_compSwitchEnd( HB_COMP_DECL );
static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr );
#ifdef HB_YYDEBUG
#define YYDEBUG 1 /* Parser debug information support */
#endif
/* Controls if passing by reference '@' is allowed */
#define HB_PASSBYREF_OFF 0
#define HB_PASSBYREF_FUNCALL 1
#define HB_PASSBYREF_ARRAY 2
static void hb_compDebugStart( void ) { }
/* Enabling traces. */
#ifndef YYDEBUG
# define YYDEBUG 0
#endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif
/* Enabling the token table. */
#ifndef YYTOKEN_TABLE
# define YYTOKEN_TABLE 0
#endif
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
#line 113 "harbour.y"
{
char * string; /* to hold a string returned by lex */
int iNumber; /* to hold a temporary integer number */
HB_LONG lNumber; /* to hold a temporary long number */
BOOL bTrue;
HB_EXPR_PTR asExpr;
void * pVoid; /* to hold any memory structure we may need */
struct
{
HB_LONG lNumber; /* to hold a long number returned by lex */
UCHAR bWidth; /* to hold the width of the value */
} valLong;
struct
{
double dNumber; /* to hold a double number returned by lex */
/* NOTE: Intentionally using "unsigned char" instead of "BYTE" */
UCHAR bWidth; /* to hold the width of the value */
UCHAR bDec; /* to hold the number of decimal points in the value */
} valDouble;
struct
{
long date;
long time;
} valTimeStamp;
struct
{
char * string;
int length;
BOOL dealloc;
} valChar;
struct
{
char * string;
int length;
int flags; /* Flag for early {|| &macro} (1) or late {|| &(macro)} (2) binding */
} asCodeblock;
struct
{
BOOL bMacro;
union
{
char * string;
HB_EXPR_PTR macro;
} value;
} asMessage;
PHB_VARTYPE asVarType;
}
/* Line 187 of yacc.c. */
#line 481 "harboury.c"
YYSTYPE;
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
# define YYSTYPE_IS_DECLARED 1
# define YYSTYPE_IS_TRIVIAL 1
#endif
/* Copy the second part of user declarations. */
#line 161 "harbour.y"
/* This must be placed after the above union - the union is
* typedef-ined to YYSTYPE
*/
extern int yylex( YYSTYPE *, HB_COMP_DECL ); /* main lex token function, called by yyparse() */
extern void yyerror( HB_COMP_DECL, const char * ); /* parsing error management function */
/* Line 216 of yacc.c. */
#line 501 "harboury.c"
#ifdef short
# undef short
#endif
#ifdef YYTYPE_UINT8
typedef YYTYPE_UINT8 yytype_uint8;
#else
typedef unsigned char yytype_uint8;
#endif
#ifdef YYTYPE_INT8
typedef YYTYPE_INT8 yytype_int8;
#elif (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
typedef signed char yytype_int8;
#else
typedef short int yytype_int8;
#endif
#ifdef YYTYPE_UINT16
typedef YYTYPE_UINT16 yytype_uint16;
#else
typedef unsigned short int yytype_uint16;
#endif
#ifdef YYTYPE_INT16
typedef YYTYPE_INT16 yytype_int16;
#else
typedef short int yytype_int16;
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned int
# endif
#endif
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
#ifndef YY_
# if YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(msgid) dgettext ("bison-runtime", msgid)
# endif
# endif
# ifndef YY_
# define YY_(msgid) msgid
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YYUSE(e) ((void) (e))
#else
# define YYUSE(e) /* empty */
#endif
/* Identity function, used to suppress warnings about constant conditions. */
#ifndef lint
# define YYID(n) (n)
#else
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static int
YYID (int i)
#else
static int
YYID (i)
int i;
#endif
{
return i;
}
#endif
#if ! defined yyoverflow || YYERROR_VERBOSE
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_USE_ALLOCA
# if YYSTACK_USE_ALLOCA
# ifdef __GNUC__
# define YYSTACK_ALLOC __builtin_alloca
# elif defined __BUILTIN_VA_ARG_INCR
# include <alloca.h> /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# include <malloc.h> /* INFRINGES ON USER NAME SPACE */
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef _STDLIB_H
# define _STDLIB_H 1
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's `empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined _STDLIB_H \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef _STDLIB_H
# define _STDLIB_H 1
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yytype_int16 yyss;
YYSTYPE yyvs;
};
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
/* Copy COUNT objects from FROM to TO. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(To, From, Count) \
__builtin_memcpy (To, From, (Count) * sizeof (*(From)))
# else
# define YYCOPY(To, From, Count) \
do \
{ \
YYSIZE_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(To)[yyi] = (From)[yyi]; \
} \
while (YYID (0))
# endif
# endif
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack) \
do \
{ \
YYSIZE_T yynewbytes; \
YYCOPY (&yyptr->Stack, Stack, yysize); \
Stack = &yyptr->Stack; \
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / sizeof (*yyptr); \
} \
while (YYID (0))
#endif
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 295
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 8763
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 134
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 241
/* YYNRULES -- Number of rules. */
#define YYNRULES 632
/* YYNRULES -- Number of states. */
#define YYNSTATES 1012
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
#define YYUNDEFTOK 2
#define YYMAXUTOK 366
#define YYTRANSLATE(YYX) \
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
static const yytype_uint8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
123, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 113, 118, 121, 2,
126, 127, 116, 114, 125, 115, 2, 117, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 130, 124,
111, 110, 112, 2, 122, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 132, 2, 131, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 128, 133, 129, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
105, 106, 107, 108, 109, 119, 120
};
#if YYDEBUG
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
YYRHS. */
static const yytype_uint16 yyprhs[] =
{
0, 0, 3, 5, 6, 8, 10, 12, 14, 16,
19, 22, 25, 28, 31, 34, 38, 43, 50, 51,
57, 58, 64, 65, 74, 75, 84, 85, 87, 89,
91, 92, 94, 96, 100, 101, 103, 104, 106, 108,
110, 112, 114, 116, 118, 121, 123, 125, 127, 129,
131, 133, 135, 137, 139, 141, 144, 147, 152, 155,
158, 161, 164, 167, 170, 173, 176, 179, 182, 185,
188, 191, 194, 197, 198, 203, 206, 209, 212, 213,
218, 219, 220, 226, 227, 228, 234, 236, 238, 240,
244, 248, 249, 254, 259, 261, 265, 266, 269, 271,
273, 275, 277, 279, 281, 286, 294, 299, 307, 308,
310, 312, 314, 316, 319, 320, 322, 324, 328, 330,
334, 336, 338, 340, 342, 344, 346, 348, 350, 352,
354, 356, 358, 360, 362, 364, 366, 368, 370, 372,
374, 376, 378, 380, 383, 386, 388, 391, 393, 396,
399, 401, 403, 406, 408, 411, 415, 418, 421, 424,
428, 432, 435, 439, 445, 447, 450, 452, 454, 457,
460, 463, 466, 470, 473, 476, 479, 482, 485, 488,
491, 494, 497, 500, 503, 506, 509, 512, 514, 516,
518, 521, 524, 527, 530, 533, 536, 539, 542, 545,
548, 551, 554, 557, 560, 563, 566, 569, 572, 575,
578, 581, 584, 587, 590, 593, 596, 599, 602, 605,
608, 611, 614, 617, 620, 623, 626, 629, 632, 635,
638, 641, 644, 647, 650, 653, 656, 661, 663, 668,
673, 676, 679, 681, 685, 687, 689, 692, 695, 698,
701, 704, 706, 708, 712, 716, 719, 721, 723, 725,
730, 733, 738, 741, 743, 745, 747, 749, 751, 753,
755, 757, 760, 762, 764, 766, 768, 770, 772, 774,
776, 778, 781, 783, 785, 788, 790, 793, 795, 797,
799, 801, 803, 805, 807, 809, 811, 813, 815, 818,
821, 823, 825, 827, 828, 830, 832, 834, 836, 838,
840, 842, 844, 846, 848, 850, 852, 854, 856, 858,
860, 862, 864, 866, 868, 870, 872, 874, 876, 878,
880, 882, 884, 886, 888, 890, 892, 895, 898, 901,
904, 907, 910, 914, 918, 922, 926, 930, 934, 938,
942, 946, 950, 954, 958, 962, 966, 970, 974, 978,
982, 986, 990, 994, 998, 1002, 1006, 1010, 1014, 1018,
1022, 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1042, 1046,
1050, 1054, 1058, 1062, 1066, 1070, 1074, 1078, 1082, 1086,
1090, 1094, 1098, 1102, 1106, 1109, 1112, 1116, 1121, 1123,
1127, 1128, 1133, 1134, 1136, 1138, 1142, 1145, 1150, 1152,
1156, 1157, 1158, 1164, 1165, 1171, 1173, 1177, 1181, 1184,
1193, 1196, 1197, 1202, 1203, 1208, 1209, 1215, 1216, 1221,
1223, 1227, 1229, 1233, 1235, 1238, 1243, 1247, 1250, 1251,
1257, 1261, 1264, 1267, 1271, 1276, 1277, 1283, 1286, 1291,
1292, 1295, 1296, 1301, 1304, 1309, 1310, 1319, 1320, 1326,
1330, 1335, 1339, 1340, 1348, 1350, 1354, 1356, 1359, 1361,
1364, 1365, 1372, 1373, 1377, 1378, 1380, 1382, 1386, 1388,
1392, 1394, 1397, 1401, 1407, 1412, 1418, 1426, 1430, 1435,
1442, 1448, 1455, 1464, 1466, 1468, 1470, 1472, 1474, 1476,
1478, 1480, 1483, 1487, 1491, 1496, 1497, 1498, 1505, 1506,
1511, 1512, 1513, 1520, 1521, 1522, 1530, 1532, 1534, 1536,
1540, 1544, 1547, 1552, 1554, 1556, 1558, 1559, 1563, 1565,
1568, 1569, 1570, 1577, 1578, 1579, 1587, 1588, 1589, 1595,
1596, 1602, 1603, 1604, 1612, 1614, 1616, 1618, 1620, 1621,
1622, 1623, 1636, 1638, 1640, 1641, 1644, 1647, 1649, 1652,
1654, 1657, 1659, 1661, 1663, 1667, 1670, 1672, 1674, 1678,
1679, 1680, 1681, 1692, 1693, 1695, 1696, 1701, 1704, 1706,
1708, 1710, 1711, 1716, 1718, 1721, 1722, 1728, 1729, 1736,
1738, 1741, 1742, 1743, 1749, 1750, 1751, 1752, 1753, 1765,
1767, 1769, 1770, 1773, 1774, 1778, 1780, 1781, 1785, 1789,
1791, 1794, 1796, 1798, 1802, 1805, 1806, 1809, 1811, 1814,
1816, 1819, 1823, 1825, 1827, 1829, 1831, 1833, 1834, 1841,
1843, 1845, 1847
};
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
static const yytype_int16 yyrhs[] =
{
135, 0, -1, 136, -1, -1, 374, -1, 274, -1,
138, -1, 150, -1, 137, -1, 1, 374, -1, 136,
374, -1, 136, 274, -1, 136, 138, -1, 136, 150,
-1, 136, 137, -1, 136, 1, 374, -1, 71, 10,
19, 374, -1, 71, 10, 19, 122, 19, 374, -1,
-1, 143, 3, 168, 139, 374, -1, -1, 143, 4,
168, 140, 374, -1, -1, 143, 3, 168, 141, 126,
144, 127, 374, -1, -1, 143, 4, 168, 142, 126,
144, 127, 374, -1, -1, 12, -1, 25, -1, 26,
-1, -1, 106, -1, 149, -1, 149, 125, 106, -1,
-1, 147, -1, -1, 148, -1, 80, -1, 76, -1,
78, -1, 79, -1, 75, -1, 81, -1, 77, 168,
-1, 82, -1, 148, -1, 74, -1, 93, -1, 89,
-1, 91, -1, 92, -1, 87, -1, 88, -1, 94,
-1, 90, 168, -1, 168, 145, -1, 149, 125, 168,
145, -1, 289, 159, -1, 253, 159, -1, 203, 159,
-1, 199, 159, -1, 214, 159, -1, 191, 159, -1,
193, 159, -1, 251, 159, -1, 224, 159, -1, 223,
159, -1, 234, 159, -1, 227, 159, -1, 226, 159,
-1, 367, 159, -1, 63, 159, -1, -1, 63, 151,
217, 374, -1, 26, 159, -1, 44, 159, -1, 6,
159, -1, -1, 6, 152, 217, 374, -1, -1, -1,
30, 153, 261, 154, 374, -1, -1, -1, 61, 155,
261, 156, 374, -1, 255, -1, 267, -1, 271, -1,
23, 166, 374, -1, 24, 167, 374, -1, -1, 22,
168, 157, 374, -1, 95, 158, 127, 374, -1, 19,
-1, 19, 114, 19, -1, -1, 160, 374, -1, 374,
-1, 150, -1, 274, -1, 137, -1, 162, -1, 1,
-1, 163, 3, 168, 374, -1, 163, 3, 168, 126,
144, 127, 374, -1, 163, 4, 168, 374, -1, 163,
4, 168, 126, 144, 127, 374, -1, -1, 12, -1,
25, -1, 26, -1, 161, -1, 164, 161, -1, -1,
164, -1, 168, -1, 166, 125, 168, -1, 168, -1,
167, 125, 168, -1, 5, -1, 48, -1, 47, -1,
44, -1, 26, -1, 52, -1, 84, -1, 23, -1,
24, -1, 22, -1, 11, -1, 42, -1, 12, -1,
61, -1, 30, -1, 53, -1, 95, -1, 99, -1,
108, -1, 8, -1, 10, -1, 104, -1, 105, -1,
10, 36, -1, 8, 36, -1, 7, -1, 173, 36,
-1, 19, -1, 175, 36, -1, 246, 36, -1, 20,
-1, 21, -1, 178, 36, -1, 70, -1, 180, 36,
-1, 128, 240, 129, -1, 182, 36, -1, 182, 238,
-1, 184, 36, -1, 128, 107, 129, -1, 128, 188,
129, -1, 186, 36, -1, 217, 107, 219, -1, 188,
125, 217, 107, 219, -1, 168, -1, 168, 36, -1,
72, -1, 73, -1, 191, 36, -1, 121, 251, -1,
193, 36, -1, 51, 36, -1, 51, 36, 195, -1,
195, 190, -1, 195, 172, -1, 195, 252, -1, 195,
192, -1, 195, 194, -1, 195, 174, -1, 195, 176,
-1, 195, 179, -1, 195, 177, -1, 195, 181, -1,
195, 183, -1, 195, 185, -1, 195, 187, -1, 195,
254, -1, 168, -1, 191, -1, 193, -1, 172, 197,
-1, 192, 197, -1, 194, 197, -1, 252, 197, -1,
174, 197, -1, 176, 197, -1, 179, 197, -1, 177,
197, -1, 187, 197, -1, 181, 197, -1, 183, 197,
-1, 185, 197, -1, 201, 197, -1, 254, 197, -1,
205, 197, -1, 213, 197, -1, 215, 197, -1, 190,
197, -1, 195, 197, -1, 196, 197, -1, 172, 251,
-1, 190, 251, -1, 192, 251, -1, 194, 251, -1,
252, 251, -1, 195, 251, -1, 169, 238, -1, 173,
238, -1, 170, 238, -1, 171, 238, -1, 175, 238,
-1, 246, 238, -1, 178, 238, -1, 186, 238, -1,
180, 238, -1, 189, 238, -1, 198, 238, -1, 199,
238, -1, 191, 238, -1, 193, 238, -1, 210, 238,
-1, 214, 238, -1, 203, 238, -1, 253, 238, -1,
251, 238, -1, 200, 36, -1, 168, 126, 206, 127,
-1, 202, -1, 191, 126, 206, 127, -1, 193, 126,
206, 127, -1, 122, 202, -1, 203, 36, -1, 209,
-1, 206, 125, 209, -1, 219, -1, 208, -1, 122,
168, -1, 122, 191, -1, 122, 198, -1, 122, 210,
-1, 122, 200, -1, 106, -1, 207, -1, 221, 130,
211, -1, 212, 130, 211, -1, 130, 211, -1, 168,
-1, 191, -1, 193, -1, 126, 122, 168, 127, -1,
210, 36, -1, 210, 126, 206, 127, -1, 214, 36,
-1, 169, -1, 173, -1, 170, -1, 171, -1, 175,
-1, 246, -1, 178, -1, 180, -1, 180, 147, -1,
182, -1, 184, -1, 186, -1, 198, -1, 199, -1,
191, -1, 193, -1, 200, -1, 203, -1, 203, 147,
-1, 253, -1, 210, -1, 210, 147, -1, 214, -1,
214, 147, -1, 226, -1, 234, -1, 223, -1, 224,
-1, 225, -1, 235, -1, 236, -1, 237, -1, 216,
-1, 189, -1, 251, -1, 189, 147, -1, 251, 147,
-1, 204, -1, 106, -1, 217, -1, -1, 217, -1,
168, -1, 198, -1, 191, -1, 193, -1, 210, -1,
200, -1, 251, -1, 169, -1, 173, -1, 170, -1,
171, -1, 175, -1, 246, -1, 178, -1, 180, -1,
182, -1, 184, -1, 186, -1, 198, -1, 199, -1,
191, -1, 193, -1, 189, -1, 200, -1, 251, -1,
203, -1, 253, -1, 210, -1, 214, -1, 34, -1,
35, -1, 221, 222, -1, 34, 217, -1, 35, 217,
-1, 29, 217, -1, 115, 217, -1, 114, 217, -1,
169, 9, 217, -1, 173, 9, 217, -1, 170, 9,
217, -1, 171, 9, 217, -1, 175, 9, 217, -1,
246, 9, 217, -1, 178, 9, 217, -1, 180, 9,
217, -1, 182, 9, 217, -1, 184, 9, 217, -1,
186, 9, 217, -1, 198, 9, 217, -1, 199, 9,
217, -1, 191, 9, 217, -1, 193, 9, 217, -1,
189, 9, 217, -1, 200, 9, 217, -1, 251, 9,
217, -1, 253, 9, 217, -1, 203, 9, 217, -1,
210, 9, 217, -1, 214, 9, 217, -1, 221, 110,
217, -1, 221, 54, 217, -1, 221, 55, 217, -1,
221, 56, 217, -1, 221, 57, 217, -1, 221, 60,
217, -1, 221, 59, 217, -1, 228, -1, 229, -1,
230, -1, 231, -1, 232, -1, 233, -1, 217, 114,
217, -1, 217, 115, 217, -1, 217, 116, 217, -1,
217, 117, 217, -1, 217, 118, 217, -1, 217, 58,
217, -1, 217, 27, 217, -1, 217, 28, 217, -1,
217, 31, 217, -1, 217, 111, 217, -1, 217, 112,
217, -1, 217, 49, 217, -1, 217, 50, 217, -1,
217, 32, 217, -1, 217, 33, 217, -1, 217, 113,
217, -1, 217, 110, 217, -1, 239, 131, -1, 132,
218, -1, 239, 125, 218, -1, 239, 131, 132, 218,
-1, 209, -1, 240, 125, 209, -1, -1, 96, 242,
243, 133, -1, -1, 106, -1, 244, -1, 244, 125,
106, -1, 168, 145, -1, 244, 125, 168, 145, -1,
217, -1, 245, 125, 217, -1, -1, -1, 241, 247,
245, 248, 129, -1, -1, 241, 374, 249, 165, 129,
-1, 217, -1, 250, 125, 217, -1, 126, 250, 127,
-1, 251, 36, -1, 13, 126, 217, 125, 207, 125,
207, 127, -1, 253, 36, -1, -1, 11, 256, 260,
374, -1, -1, 12, 257, 260, 374, -1, -1, 108,
12, 258, 260, 374, -1, -1, 53, 259, 273, 374,
-1, 263, -1, 260, 125, 263, -1, 262, -1, 261,
125, 262, -1, 263, -1, 191, 145, -1, 191, 145,
9, 217, -1, 191, 265, 146, -1, 168, 145, -1,
-1, 168, 145, 264, 9, 217, -1, 168, 265, 146,
-1, 266, 131, -1, 132, 217, -1, 266, 125, 217,
-1, 266, 131, 132, 217, -1, -1, 51, 268, 269,
270, 374, -1, 168, 145, -1, 269, 125, 168, 145,
-1, -1, 52, 168, -1, -1, 42, 272, 273, 374,
-1, 168, 145, -1, 273, 125, 168, 145, -1, -1,
83, 168, 126, 275, 284, 127, 145, 374, -1, -1,
83, 168, 276, 279, 374, -1, 85, 168, 374, -1,
85, 168, 168, 374, -1, 86, 280, 374, -1, -1,
86, 128, 145, 277, 278, 129, 374, -1, 282, -1,
278, 125, 282, -1, 280, -1, 279, 280, -1, 282,
-1, 279, 282, -1, -1, 168, 126, 281, 284, 127,
145, -1, -1, 168, 283, 145, -1, -1, 287, -1,
288, -1, 287, 125, 288, -1, 286, -1, 285, 125,
286, -1, 219, -1, 168, 145, -1, 122, 168, 145,
-1, 122, 168, 126, 285, 127, -1, 287, 125, 168,
145, -1, 287, 125, 122, 168, 145, -1, 287, 125,
122, 168, 126, 285, 127, -1, 84, 168, 145, -1,
84, 122, 168, 145, -1, 84, 122, 168, 126, 285,
127, -1, 288, 125, 84, 168, 145, -1, 288, 125,
84, 122, 168, 145, -1, 288, 125, 84, 122, 168,
126, 285, 127, -1, 290, -1, 303, -1, 318, -1,
324, -1, 354, -1, 336, -1, 341, -1, 371, -1,
291, 301, -1, 291, 294, 301, -1, 291, 296, 301,
-1, 291, 296, 294, 301, -1, -1, -1, 14, 250,
292, 374, 293, 165, -1, -1, 15, 374, 295, 165,
-1, -1, -1, 16, 297, 250, 374, 298, 165, -1,
-1, -1, 296, 16, 299, 250, 374, 300, 165, -1,
302, -1, 18, -1, 17, -1, 308, 309, 304, -1,
308, 314, 304, -1, 308, 304, -1, 308, 309, 314,
304, -1, 305, -1, 40, -1, 17, -1, -1, 37,
307, 374, -1, 306, -1, 306, 164, -1, -1, -1,
38, 310, 250, 374, 311, 165, -1, -1, -1, 309,
38, 312, 250, 374, 313, 165, -1, -1, -1, 39,
315, 374, 316, 165, -1, -1, 314, 39, 317, 374,
165, -1, -1, -1, 321, 250, 374, 319, 165, 320,
322, -1, 43, -1, 323, -1, 41, -1, 17, -1,
-1, -1, -1, 45, 220, 328, 217, 325, 47, 250,
329, 326, 374, 327, 330, -1, 110, -1, 9, -1,
-1, 48, 250, -1, 165, 331, -1, 46, -1, 46,
168, -1, 17, -1, 17, 168, -1, 168, -1, 198,
-1, 332, -1, 333, 125, 332, -1, 122, 168, -1,
217, -1, 334, -1, 335, 125, 334, -1, -1, -1,
-1, 98, 333, 52, 335, 337, 340, 338, 374, 339,
330, -1, -1, 99, -1, -1, 347, 342, 348, 343,
-1, 347, 343, -1, 344, -1, 101, -1, 17, -1,
-1, 100, 346, 217, 374, -1, 345, -1, 345, 164,
-1, -1, 38, 217, 349, 374, 165, -1, -1, 348,
38, 217, 350, 374, 165, -1, 351, -1, 348, 351,
-1, -1, -1, 39, 352, 374, 353, 165, -1, -1,
-1, -1, -1, 62, 355, 360, 374, 165, 356, 363,
357, 361, 358, 359, -1, 67, -1, 17, -1, -1,
69, 217, -1, -1, 362, 374, 165, -1, 66, -1,
-1, 364, 374, 165, -1, 365, 374, 165, -1, 64,
-1, 65, 168, -1, 191, -1, 193, -1, 68, 366,
368, -1, 97, 368, -1, -1, 69, 369, -1, 125,
-1, 125, 370, -1, 370, -1, 369, 125, -1, 369,
125, 370, -1, 168, -1, 208, -1, 204, -1, 216,
-1, 251, -1, -1, 102, 217, 374, 372, 165, 373,
-1, 103, -1, 17, -1, 123, -1, 124, -1
};
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
static const yytype_uint16 yyrline[] =
{
0, 285, 285, 286, 289, 290, 291, 292, 293, 294,
295, 296, 297, 298, 299, 300, 303, 308, 316, 316,
317, 317, 318, 318, 319, 319, 322, 323, 324, 325,
328, 329, 330, 331, 334, 335, 338, 339, 342, 343,
344, 345, 346, 347, 348, 349, 350, 353, 354, 355,
356, 357, 358, 359, 360, 361, 364, 365, 373, 374,
375, 376, 377, 378, 384, 390, 391, 392, 393, 394,
395, 396, 397, 399, 399, 405, 406, 407, 419, 419,
439, 441, 439, 445, 447, 445, 451, 452, 453, 454,
455, 456, 456, 470, 473, 481, 500, 500, 503, 504,
505, 506, 507, 508, 521, 522, 523, 524, 527, 528,
529, 530, 533, 534, 537, 538, 541, 542, 545, 546,
549, 550, 551, 552, 553, 554, 555, 556, 557, 558,
559, 560, 561, 562, 563, 564, 565, 566, 567, 572,
573, 576, 579, 582, 583, 588, 591, 596, 602, 607,
612, 613, 616, 621, 624, 635, 638, 643, 646, 649,
650, 653, 656, 657, 662, 665, 670, 671, 674, 679,
682, 689, 690, 695, 696, 697, 698, 699, 700, 701,
702, 703, 704, 705, 706, 707, 708, 711, 712, 713,
716, 717, 718, 719, 720, 721, 722, 723, 724, 725,
726, 727, 728, 729, 730, 731, 732, 733, 734, 735,
744, 745, 746, 747, 748, 749, 754, 755, 756, 757,
758, 759, 760, 761, 762, 763, 764, 765, 766, 767,
768, 769, 770, 771, 772, 775, 779, 782, 783, 784,
788, 791, 794, 795, 798, 799, 802, 803, 804, 805,
806, 809, 810, 815, 816, 817, 823, 824, 825, 828,
831, 836, 839, 848, 849, 850, 851, 852, 853, 854,
855, 856, 857, 858, 859, 860, 861, 862, 863, 864,
865, 866, 867, 868, 869, 870, 871, 872, 873, 874,
875, 876, 877, 878, 879, 882, 883, 884, 885, 886,
887, 890, 891, 894, 895, 898, 899, 900, 901, 902,
903, 904, 911, 912, 913, 914, 915, 916, 917, 918,
919, 920, 921, 922, 923, 924, 925, 926, 927, 928,
929, 930, 931, 932, 938, 939, 942, 945, 946, 949,
950, 951, 954, 955, 956, 957, 958, 959, 960, 961,
962, 963, 964, 965, 966, 967, 968, 969, 970, 971,
972, 973, 974, 975, 978, 981, 984, 987, 990, 993,
996, 999, 1000, 1001, 1002, 1003, 1004, 1007, 1008, 1009,
1010, 1011, 1012, 1015, 1016, 1019, 1020, 1021, 1022, 1023,
1024, 1025, 1026, 1027, 1030, 1036, 1037, 1038, 1041, 1042,
1045, 1045, 1051, 1052, 1053, 1054, 1057, 1058, 1061, 1062,
1066, 1069, 1065, 1072, 1071, 1107, 1108, 1110, 1113, 1122,
1126, 1129, 1129, 1131, 1131, 1133, 1133, 1135, 1135, 1145,
1146, 1149, 1150, 1158, 1159, 1161, 1165, 1172, 1190, 1190,
1219, 1225, 1228, 1229, 1230, 1233, 1233, 1240, 1241, 1244,
1245, 1248, 1248, 1251, 1252, 1255, 1255, 1274, 1274, 1275,
1276, 1277, 1278, 1278, 1281, 1282, 1285, 1286, 1287, 1288,
1291, 1291, 1310, 1310, 1365, 1366, 1367, 1368, 1371, 1372,
1375, 1378, 1379, 1380, 1381, 1382, 1383, 1386, 1387, 1388,
1389, 1390, 1391, 1394, 1395, 1396, 1397, 1398, 1399, 1400,
1401, 1404, 1405, 1406, 1407, 1411, 1413, 1410, 1418, 1418,
1422, 1424, 1422, 1432, 1434, 1432, 1443, 1451, 1452, 1455,
1459, 1463, 1466, 1472, 1479, 1480, 1483, 1483, 1486, 1487,
1495, 1496, 1495, 1507, 1508, 1507, 1520, 1520, 1520, 1522,
1522, 1527, 1532, 1526, 1546, 1555, 1559, 1560, 1564, 1577,
1582, 1563, 1630, 1631, 1634, 1635, 1638, 1646, 1647, 1648,
1649, 1652, 1653, 1656, 1657, 1660, 1661, 1664, 1665, 1670,
1676, 1687, 1669, 1707, 1708, 1712, 1711, 1724, 1732, 1740,
1741, 1745, 1744, 1755, 1756, 1765, 1765, 1768, 1768, 1771,
1773, 1776, 1776, 1776, 1781, 1789, 1800, 1810, 1780, 1841,
1842, 1845, 1846, 1854, 1855, 1858, 1867, 1868, 1869, 1872,
1883, 1901, 1902, 1905, 1909, 1917, 1918, 1921, 1922, 1923,
1924, 1925, 1928, 1929, 1930, 1931, 1932, 1936, 1935, 1958,
1959, 1962, 1963
};
#endif
#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
static const char *const yytname[] =
{
"$end", "error", "$undefined", "FUNCTION", "PROCEDURE", "IDENTIFIER",
"RETURN", "NIL", "NUM_DOUBLE", "INASSIGN", "NUM_LONG", "LOCAL", "STATIC",
"IIF", "IF", "ELSE", "ELSEIF", "END", "ENDIF", "LITERAL", "TRUEVALUE",
"FALSEVALUE", "ANNOUNCE", "EXTERN", "DYNAMIC", "INIT", "EXIT", "AND",
"OR", "NOT", "PUBLIC", "EQ", "NE1", "NE2", "INC", "DEC", "ALIASOP",
"DOCASE", "CASE", "OTHERWISE", "ENDCASE", "ENDDO", "MEMVAR", "WHILE",
"LOOP", "FOR", "NEXT", "TO", "STEP", "LE", "GE", "FIELD", "IN",
"PARAMETERS", "PLUSEQ", "MINUSEQ", "MULTEQ", "DIVEQ", "POWER", "EXPEQ",
"MODEQ", "PRIVATE", "BEGINSEQ", "BREAK", "RECOVER", "RECOVERUSING",
"ALWAYS", "ENDSEQ", "DO", "WITH", "SELF", "LINE", "MACROVAR",
"MACROTEXT", "AS_ARRAY", "AS_BLOCK", "AS_CHARACTER", "AS_CLASS",
"AS_DATE", "AS_LOGICAL", "AS_NUMERIC", "AS_OBJECT", "AS_VARIANT",
"DECLARE", "OPTIONAL", "DECLARE_CLASS", "DECLARE_MEMBER",
"AS_ARRAY_ARRAY", "AS_BLOCK_ARRAY", "AS_CHARACTER_ARRAY",
"AS_CLASS_ARRAY", "AS_DATE_ARRAY", "AS_LOGICAL_ARRAY",
"AS_NUMERIC_ARRAY", "AS_OBJECT_ARRAY", "PROCREQ", "CBSTART", "DOIDENT",
"FOREACH", "DESCEND", "DOSWITCH", "ENDSWITCH", "WITHOBJECT", "ENDWITH",
"NUM_DATE", "TIMESTAMP", "EPSILON", "HASHOP", "THREAD", "POST", "'='",
"'<'", "'>'", "'$'", "'+'", "'-'", "'*'", "'/'", "'%'", "UNARY", "PRE",
"'&'", "'@'", "'\\n'", "';'", "','", "'('", "')'", "'{'", "'}'", "':'",
"']'", "'['", "'|'", "$accept", "Main", "Source", "Line", "Function",
"@1", "@2", "@3", "@4", "FunScope", "Params", "AsType", "AsArrayType",
"StrongType", "AsArray", "ParamList", "Statement", "@5", "@6", "@7",
"@8", "@9", "@10", "@11", "CompTimeStr", "CrlfStmnt", "@12", "LineStat",
"ControlError", "FunScopeId", "Statements", "EmptyStats", "ExtList",
"DynList", "IdentName", "NumValue", "DateValue", "TimeStampValue",
"NumAlias", "NilValue", "NilAlias", "LiteralValue", "LiteralAlias",
"CodeBlockAlias", "Logical", "LogicalAlias", "SelfValue", "SelfAlias",
"Array", "ArrayAlias", "ArrayAt", "ArrayAtAlias", "Hash", "HashAlias",
"HashList", "Variable", "VarAlias", "MacroVar", "MacroVarAlias",
"MacroExpr", "MacroExprAlias", "FieldAlias", "FieldVarAlias", "AliasId",
"AliasVar", "AliasExpr", "VariableAt", "VariableAtAlias", "FunIdentCall",
"FunCall", "FunRef", "FunCallAlias", "ArgList", "Argument",
"RefArgument", "ExtArgument", "ObjectData", "SendId", "ObjectRef",
"ObjectDataAlias", "ObjectMethod", "ObjectMethodAlias",
"SimpleExpression", "Expression", "ExtExpression", "EmptyExpression",
"LValue", "LeftExpression", "PostOp", "ExprPostOp", "ExprPreOp",
"ExprUnary", "ExprAssign", "ExprEqual", "ExprPlusEq", "ExprMinusEq",
"ExprMultEq", "ExprDivEq", "ExprModEq", "ExprExpEq", "ExprOperEq",
"ExprMath", "ExprBool", "ExprRelation", "ArrayIndex", "IndexList",
"ElemList", "BlockHead", "@13", "BlockVars", "BlockVarList",
"BlockExpList", "CodeBlock", "@14", "@15", "@16", "ExpList",
"PareExpList", "PareExpListAlias", "IfInline", "IfInlineAlias",
"VarDefs", "@17", "@18", "@19", "@20", "VarList", "ExtVarList",
"ExtVarDef", "VarDef", "@21", "DimList", "DimIndex", "FieldsDef", "@22",
"FieldList", "InAlias", "MemvarDef", "@23", "MemvarList", "Declaration",
"@24", "@25", "@26", "DecDataList", "ClassInfo", "DecMethod", "@27",
"DecData", "@28", "DecList", "DummyArgList", "DummyArgument",
"FormalList", "OptList", "ExecFlow", "IfEndif", "IfBegin", "@29", "@30",
"IfElse", "@31", "IfElseIf", "@32", "@33", "@34", "@35", "EndIf",
"EndIfID", "DoCase", "EndCase", "EndCaseID", "DoCaseStart", "@36",
"DoCaseBegin", "Cases", "@37", "@38", "@39", "@40", "Otherwise", "@41",
"@42", "@43", "DoWhile", "@44", "@45", "WhileBegin", "EndWhile",
"EndWhileID", "ForNext", "@46", "@47", "@48", "ForAssign", "StepExpr",
"ForStatements", "EndForID", "ForVar", "ForList", "ForExpr", "ForArgs",
"ForEach", "@49", "@50", "@51", "Descend", "DoSwitch", "@52",
"EndSwitch", "EndSwitchID", "SwitchStart", "@53", "SwitchBegin",
"SwitchCases", "@54", "@55", "SwitchDefault", "@56", "@57", "BeginSeq",
"@58", "@59", "@60", "@61", "EndSeqID", "BlockSeq", "AlwaysSeq",
"Always", "RecoverSeq", "RecoverEmpty", "RecoverUsing", "DoName",
"DoProc", "DoArgs", "DoArgList", "DoArgument", "WithObject", "@62",
"EndWithID", "Crlf", 0
};
#endif
# ifdef YYPRINT
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
token YYLEX-NUM. */
static const yytype_uint16 yytoknum[] =
{
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
355, 356, 357, 358, 359, 360, 361, 362, 363, 364,
61, 60, 62, 36, 43, 45, 42, 47, 37, 365,
366, 38, 64, 10, 59, 44, 40, 41, 123, 125,
58, 93, 91, 124
};
# endif
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
static const yytype_uint16 yyr1[] =
{
0, 134, 135, 135, 136, 136, 136, 136, 136, 136,
136, 136, 136, 136, 136, 136, 137, 137, 139, 138,
140, 138, 141, 138, 142, 138, 143, 143, 143, 143,
144, 144, 144, 144, 145, 145, 146, 146, 147, 147,
147, 147, 147, 147, 147, 147, 147, 148, 148, 148,
148, 148, 148, 148, 148, 148, 149, 149, 150, 150,
150, 150, 150, 150, 150, 150, 150, 150, 150, 150,
150, 150, 150, 151, 150, 150, 150, 150, 152, 150,
153, 154, 150, 155, 156, 150, 150, 150, 150, 150,
150, 157, 150, 150, 158, 158, 160, 159, 161, 161,
161, 161, 161, 161, 162, 162, 162, 162, 163, 163,
163, 163, 164, 164, 165, 165, 166, 166, 167, 167,
168, 168, 168, 168, 168, 168, 168, 168, 168, 168,
168, 168, 168, 168, 168, 168, 168, 168, 168, 169,
169, 170, 171, 172, 172, 173, 174, 175, 176, 177,
178, 178, 179, 180, 181, 182, 183, 184, 185, 186,
186, 187, 188, 188, 189, 190, 191, 191, 192, 193,
194, 195, 195, 196, 196, 196, 196, 196, 196, 196,
196, 196, 196, 196, 196, 196, 196, 197, 197, 197,
198, 198, 198, 198, 198, 198, 198, 198, 198, 198,
198, 198, 198, 198, 198, 198, 198, 198, 198, 198,
199, 199, 199, 199, 199, 199, 200, 200, 200, 200,
200, 200, 200, 200, 200, 200, 200, 200, 200, 200,
200, 200, 200, 200, 200, 201, 202, 203, 203, 203,
204, 205, 206, 206, 207, 207, 208, 208, 208, 208,
208, 209, 209, 210, 210, 210, 211, 211, 211, 212,
213, 214, 215, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 216, 216, 216, 216, 216,
216, 216, 216, 216, 216, 217, 217, 217, 217, 217,
217, 218, 218, 219, 219, 220, 220, 220, 220, 220,
220, 220, 221, 221, 221, 221, 221, 221, 221, 221,
221, 221, 221, 221, 221, 221, 221, 221, 221, 221,
221, 221, 221, 221, 222, 222, 223, 224, 224, 225,
225, 225, 226, 226, 226, 226, 226, 226, 226, 226,
226, 226, 226, 226, 226, 226, 226, 226, 226, 226,
226, 226, 226, 226, 227, 228, 229, 230, 231, 232,
233, 234, 234, 234, 234, 234, 234, 235, 235, 235,
235, 235, 235, 236, 236, 237, 237, 237, 237, 237,
237, 237, 237, 237, 238, 239, 239, 239, 240, 240,
242, 241, 243, 243, 243, 243, 244, 244, 245, 245,
247, 248, 246, 249, 246, 250, 250, 251, 252, 253,
254, 256, 255, 257, 255, 258, 255, 259, 255, 260,
260, 261, 261, 262, 262, 262, 262, 263, 264, 263,
263, 265, 266, 266, 266, 268, 267, 269, 269, 270,
270, 272, 271, 273, 273, 275, 274, 276, 274, 274,
274, 274, 277, 274, 278, 278, 279, 279, 279, 279,
281, 280, 283, 282, 284, 284, 284, 284, 285, 285,
286, 287, 287, 287, 287, 287, 287, 288, 288, 288,
288, 288, 288, 289, 289, 289, 289, 289, 289, 289,
289, 290, 290, 290, 290, 292, 293, 291, 295, 294,
297, 298, 296, 299, 300, 296, 301, 302, 302, 303,
303, 303, 303, 304, 305, 305, 307, 306, 308, 308,
310, 311, 309, 312, 313, 309, 315, 316, 314, 317,
314, 319, 320, 318, 321, 322, 323, 323, 325, 326,
327, 324, 328, 328, 329, 329, 330, 331, 331, 331,
331, 332, 332, 333, 333, 334, 334, 335, 335, 337,
338, 339, 336, 340, 340, 342, 341, 341, 343, 344,
344, 346, 345, 347, 347, 349, 348, 350, 348, 348,
348, 352, 353, 351, 355, 356, 357, 358, 354, 359,
359, 360, 360, 361, 361, 362, 363, 363, 363, 364,
365, 366, 366, 367, 367, 368, 368, 369, 369, 369,
369, 369, 370, 370, 370, 370, 370, 372, 371, 373,
373, 374, 374
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
static const yytype_uint8 yyr2[] =
{
0, 2, 1, 0, 1, 1, 1, 1, 1, 2,
2, 2, 2, 2, 2, 3, 4, 6, 0, 5,
0, 5, 0, 8, 0, 8, 0, 1, 1, 1,
0, 1, 1, 3, 0, 1, 0, 1, 1, 1,
1, 1, 1, 1, 2, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 2, 2, 4, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 0, 4, 2, 2, 2, 0, 4,
0, 0, 5, 0, 0, 5, 1, 1, 1, 3,
3, 0, 4, 4, 1, 3, 0, 2, 1, 1,
1, 1, 1, 1, 4, 7, 4, 7, 0, 1,
1, 1, 1, 2, 0, 1, 1, 3, 1, 3,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 2, 2, 1, 2, 1, 2, 2,
1, 1, 2, 1, 2, 3, 2, 2, 2, 3,
3, 2, 3, 5, 1, 2, 1, 1, 2, 2,
2, 2, 3, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 1, 1, 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, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 4, 1, 4, 4,
2, 2, 1, 3, 1, 1, 2, 2, 2, 2,
2, 1, 1, 3, 3, 2, 1, 1, 1, 4,
2, 4, 2, 1, 1, 1, 1, 1, 1, 1,
1, 2, 1, 1, 1, 1, 1, 1, 1, 1,
1, 2, 1, 1, 2, 1, 2, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 2, 2,
1, 1, 1, 0, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 2, 2, 2, 2,
2, 2, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 1, 1, 1, 1, 1, 1, 3, 3, 3,
3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
3, 3, 3, 3, 2, 2, 3, 4, 1, 3,
0, 4, 0, 1, 1, 3, 2, 4, 1, 3,
0, 0, 5, 0, 5, 1, 3, 3, 2, 8,
2, 0, 4, 0, 4, 0, 5, 0, 4, 1,
3, 1, 3, 1, 2, 4, 3, 2, 0, 5,
3, 2, 2, 3, 4, 0, 5, 2, 4, 0,
2, 0, 4, 2, 4, 0, 8, 0, 5, 3,
4, 3, 0, 7, 1, 3, 1, 2, 1, 2,
0, 6, 0, 3, 0, 1, 1, 3, 1, 3,
1, 2, 3, 5, 4, 5, 7, 3, 4, 6,
5, 6, 8, 1, 1, 1, 1, 1, 1, 1,
1, 2, 3, 3, 4, 0, 0, 6, 0, 4,
0, 0, 6, 0, 0, 7, 1, 1, 1, 3,
3, 2, 4, 1, 1, 1, 0, 3, 1, 2,
0, 0, 6, 0, 0, 7, 0, 0, 5, 0,
5, 0, 0, 7, 1, 1, 1, 1, 0, 0,
0, 12, 1, 1, 0, 2, 2, 1, 2, 1,
2, 1, 1, 1, 3, 2, 1, 1, 3, 0,
0, 0, 10, 0, 1, 0, 4, 2, 1, 1,
1, 0, 4, 1, 2, 0, 5, 0, 6, 1,
2, 0, 0, 5, 0, 0, 0, 0, 11, 1,
1, 0, 2, 0, 3, 1, 0, 3, 3, 1,
2, 1, 1, 3, 2, 0, 2, 1, 2, 1,
2, 3, 1, 1, 1, 1, 1, 0, 6, 1,
1, 1, 1
};
/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state
STATE-NUM when YYTABLE doesn't specify something else to do. Zero
means the default is an error. */
static const yytype_uint16 yydefact[] =
{
0, 0, 120, 78, 145, 139, 140, 421, 423, 0,
0, 147, 150, 151, 129, 127, 128, 28, 124, 80,
0, 0, 526, 451, 544, 123, 0, 122, 121, 445,
125, 427, 83, 594, 73, 0, 153, 0, 166, 167,
0, 126, 0, 0, 136, 400, 615, 0, 137, 581,
0, 141, 142, 138, 0, 631, 632, 0, 303, 0,
0, 0, 8, 6, 0, 7, 164, 312, 314, 315,
0, 313, 0, 316, 0, 0, 318, 0, 319, 0,
320, 0, 321, 0, 322, 0, 327, 0, 325, 0,
326, 0, 0, 0, 323, 324, 328, 0, 237, 330,
0, 332, 0, 0, 333, 0, 0, 96, 96, 96,
96, 371, 372, 373, 374, 375, 376, 96, 410, 317,
329, 0, 331, 0, 86, 87, 88, 5, 96, 493,
0, 494, 0, 0, 495, 0, 496, 498, 499, 0,
575, 497, 96, 500, 4, 9, 0, 77, 0, 144,
143, 0, 0, 0, 130, 132, 129, 127, 128, 124,
0, 134, 131, 123, 0, 135, 133, 136, 138, 0,
0, 0, 263, 265, 266, 264, 267, 269, 270, 272,
273, 274, 296, 277, 278, 275, 276, 279, 280, 300,
283, 285, 295, 415, 0, 289, 290, 291, 287, 288,
292, 293, 294, 268, 505, 297, 282, 91, 0, 116,
0, 118, 75, 0, 337, 338, 0, 0, 76, 164,
312, 314, 315, 313, 316, 318, 319, 320, 321, 322,
327, 307, 308, 306, 324, 310, 330, 309, 333, 0,
0, 317, 311, 331, 171, 0, 0, 0, 601, 0,
72, 611, 612, 615, 0, 457, 0, 34, 0, 0,
94, 0, 402, 0, 614, 164, 325, 326, 562, 328,
332, 329, 563, 0, 0, 0, 425, 0, 169, 0,
0, 251, 0, 0, 0, 252, 245, 398, 304, 244,
0, 256, 257, 258, 255, 1, 0, 14, 12, 13,
11, 10, 0, 0, 165, 303, 0, 0, 216, 0,
0, 218, 0, 219, 187, 188, 189, 190, 210, 0,
146, 217, 194, 0, 148, 220, 195, 197, 0, 152,
222, 196, 0, 154, 224, 199, 0, 156, 157, 200,
0, 158, 201, 0, 161, 223, 198, 0, 225, 207,
211, 0, 168, 303, 63, 228, 191, 212, 0, 170,
303, 64, 229, 192, 213, 0, 0, 187, 174, 0,
178, 0, 179, 181, 0, 180, 0, 182, 0, 183,
0, 184, 0, 185, 173, 188, 176, 189, 177, 208,
0, 215, 175, 0, 186, 209, 0, 226, 0, 61,
227, 0, 235, 202, 0, 241, 60, 232, 204, 0,
260, 303, 230, 0, 205, 0, 262, 62, 231, 206,
334, 335, 0, 0, 0, 0, 0, 0, 0, 0,
336, 67, 66, 70, 69, 68, 0, 413, 0, 149,
221, 0, 418, 65, 234, 193, 214, 0, 420, 59,
233, 203, 58, 0, 510, 518, 517, 0, 0, 501,
516, 103, 423, 110, 124, 101, 99, 112, 102, 0,
0, 100, 98, 525, 530, 536, 524, 521, 523, 0,
0, 0, 0, 580, 579, 0, 577, 578, 71, 0,
97, 34, 0, 429, 0, 0, 339, 341, 340, 0,
240, 47, 42, 39, 0, 40, 41, 38, 43, 45,
52, 53, 49, 0, 50, 51, 48, 54, 271, 46,
298, 281, 284, 286, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 299, 0, 0, 89, 0, 90, 34,
81, 431, 433, 527, 34, 0, 553, 552, 0, 172,
34, 449, 0, 84, 0, 0, 0, 613, 0, 455,
0, 0, 459, 462, 35, 470, 461, 0, 0, 403,
34, 0, 404, 617, 164, 300, 623, 295, 0, 297,
616, 619, 0, 0, 0, 627, 0, 0, 417, 159,
246, 247, 248, 250, 240, 249, 0, 160, 303, 303,
155, 15, 18, 20, 0, 242, 304, 342, 301, 302,
395, 0, 394, 344, 345, 343, 346, 348, 349, 350,
351, 352, 357, 355, 0, 356, 0, 353, 354, 358,
361, 362, 0, 254, 363, 365, 366, 367, 368, 370,
369, 364, 253, 408, 411, 0, 347, 359, 360, 508,
0, 502, 513, 0, 503, 0, 0, 113, 0, 0,
533, 519, 0, 539, 520, 541, 0, 591, 0, 589,
79, 0, 437, 36, 0, 0, 422, 424, 303, 44,
55, 383, 384, 385, 390, 391, 388, 389, 382, 393,
386, 387, 392, 377, 378, 379, 380, 381, 416, 506,
92, 117, 119, 434, 36, 0, 0, 453, 0, 452,
548, 447, 0, 0, 0, 428, 0, 602, 0, 74,
0, 16, 474, 472, 0, 466, 468, 460, 0, 474,
95, 93, 406, 401, 0, 618, 620, 0, 566, 567,
569, 564, 582, 0, 0, 259, 0, 162, 399, 0,
0, 0, 0, 303, 236, 396, 0, 238, 239, 261,
0, 0, 0, 0, 0, 0, 0, 504, 0, 0,
0, 537, 0, 522, 0, 0, 585, 0, 0, 576,
590, 442, 0, 440, 37, 0, 441, 430, 0, 0,
0, 436, 432, 82, 34, 0, 450, 34, 446, 85,
595, 0, 126, 0, 34, 0, 475, 476, 34, 467,
469, 458, 472, 0, 464, 0, 405, 34, 621, 565,
0, 573, 0, 426, 303, 19, 30, 21, 30, 243,
397, 409, 412, 414, 509, 511, 0, 30, 104, 30,
106, 531, 0, 0, 0, 542, 0, 592, 587, 0,
443, 0, 303, 507, 435, 454, 0, 448, 606, 17,
0, 34, 34, 481, 34, 0, 0, 473, 0, 0,
34, 407, 568, 574, 570, 630, 629, 628, 163, 31,
0, 32, 34, 0, 0, 514, 0, 0, 0, 538,
534, 540, 0, 0, 0, 0, 439, 444, 0, 554,
609, 0, 596, 0, 0, 34, 487, 303, 482, 0,
0, 34, 477, 0, 465, 463, 471, 0, 0, 0,
56, 0, 512, 0, 0, 0, 532, 0, 547, 546,
543, 545, 586, 593, 0, 419, 0, 549, 610, 603,
0, 0, 303, 488, 480, 0, 478, 456, 34, 484,
0, 34, 571, 23, 33, 34, 25, 515, 105, 107,
535, 588, 555, 0, 605, 597, 0, 607, 608, 0,
303, 483, 303, 485, 34, 490, 0, 57, 550, 0,
0, 489, 479, 0, 303, 491, 0, 572, 0, 600,
599, 598, 604, 486, 0, 559, 557, 556, 551, 492,
560, 558
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
-1, 60, 61, 465, 63, 759, 761, 760, 762, 64,
890, 573, 793, 574, 519, 891, 466, 249, 146, 213,
716, 247, 726, 544, 261, 212, 148, 467, 468, 469,
772, 996, 208, 210, 66, 172, 173, 174, 70, 175,
72, 176, 74, 75, 177, 77, 178, 79, 179, 81,
180, 83, 181, 85, 284, 182, 87, 183, 89, 184,
91, 92, 93, 317, 185, 186, 187, 97, 98, 188,
189, 100, 614, 285, 286, 615, 190, 294, 102, 103,
191, 105, 192, 616, 620, 289, 239, 194, 430, 195,
196, 197, 198, 110, 111, 112, 113, 114, 115, 116,
199, 200, 201, 202, 355, 309, 290, 118, 262, 581,
582, 654, 203, 436, 771, 655, 280, 205, 121, 206,
123, 124, 151, 152, 596, 246, 492, 550, 551, 493,
792, 683, 684, 125, 245, 561, 724, 126, 217, 555,
471, 732, 570, 738, 823, 734, 259, 739, 736, 818,
815, 955, 956, 816, 817, 128, 129, 130, 542, 799,
457, 774, 458, 660, 894, 776, 933, 459, 460, 131,
477, 478, 132, 216, 133, 479, 668, 898, 782, 937,
480, 669, 852, 784, 134, 785, 902, 135, 940, 941,
136, 805, 973, 998, 558, 947, 997, 1007, 272, 273,
749, 750, 137, 831, 927, 986, 884, 138, 485, 486,
487, 139, 274, 140, 678, 856, 905, 679, 787, 904,
141, 248, 868, 949, 989, 1001, 565, 975, 976, 912,
913, 914, 253, 142, 264, 590, 591, 143, 753, 887,
472
};
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
#define YYPACT_NINF -707
static const yytype_int16 yypact[] =
{
3439, 402, -707, 444, -707, 42, 60, 482, 208, -58,
7315, -707, -707, -707, 8527, 8527, 8527, -707, 192, 1662,
7315, 7315, -707, 1830, -707, 444, 7811, -707, -707, 80,
-707, 1993, 2791, -707, 444, 226, -707, 189, -707, -707,
8527, -707, 8527, 660, 69, -707, 177, 7811, -707, -707,
7315, -707, -707, 274, 143, -707, -707, 7439, 4432, 8287,
310, 4590, -707, -707, 570, -707, 183, 21, 34, 47,
8020, 30, 8287, 46, 8287, 8287, 58, 8287, 71, 8287,
86, 8287, 225, 8287, 99, 8287, 53, 8020, 18, 8020,
155, 8020, 3708, 8287, 56, 25, 257, 8287, -707, 28,
8287, 54, 193, 8287, 205, 8287, 816, -707, -707, -707,
-707, -707, -707, -707, -707, -707, -707, -707, 402, 100,
212, 8020, 268, 8287, -707, -707, -707, -707, -707, -707,
451, -707, 5025, 405, -707, 7315, -707, -707, -707, 5153,
32, -707, -707, -707, -707, -707, 7315, -707, 402, -707,
-707, 8527, 8527, 7315, -707, -707, -707, -707, -707, -707,
7315, -707, -707, -707, 80, -707, -707, -707, -707, 7315,
7315, 8527, 851, 914, 1349, 770, 997, 1134, 2990, 1236,
1385, 1609, 4089, 216, 2030, 2981, 3083, 1466, 3541, -707,
2177, 4668, -707, 4246, 759, -707, -707, -707, -707, -707,
-707, -707, -707, 2520, 233, 7929, 3127, -707, 369, -707,
397, -707, -707, 8331, -707, -707, 402, 8527, -707, 14,
236, 236, 236, -3, 5, 6, 15, 50, 392, 65,
236, 76, 98, -72, 236, 63, 66, 164, 209, 20,
285, 218, -5, 220, 372, 8527, 8527, 8331, 370, 7315,
-707, -707, -707, 177, 431, 331, 8064, 8669, 345, 402,
374, 351, 3753, 6943, -707, 256, 78, 199, -72, 447,
213, 222, -707, 181, 7315, 3236, -707, 7315, -707, 8527,
261, -707, 382, 7811, 188, -707, -707, -707, 3268, -707,
232, -707, -707, -707, -707, -707, 402, -707, -707, -707,
-707, -707, 8527, 8527, -707, 7067, 7315, 7191, -707, 180,
7315, -707, 7315, -707, -707, -707, -707, -707, -707, 7315,
-707, -707, -707, 7315, -707, -707, -707, -707, 7315, -707,
-707, -707, 7315, -707, -707, -707, 7315, -707, -707, -707,
7315, -707, -707, 7315, -707, -707, -707, 7315, -707, -707,
-707, 7315, -707, 7067, -707, -707, -707, -707, 7315, -707,
7067, -707, -707, -707, -707, 42, 60, 472, -707, 479,
-707, 494, -707, -707, 499, -707, 517, -707, 50, -707,
392, -707, 534, -707, -707, 549, -707, 562, -707, -707,
563, 564, -707, 565, -707, -707, 7315, -707, 7315, -707,
-707, 7315, -707, -707, 7315, -707, -707, -707, -707, 7315,
-707, 7067, -707, 8287, -707, 7315, -707, -707, -707, -707,
-707, -707, 7315, 7315, 7315, 7315, 7315, 7315, 7315, 8287,
-707, -707, -707, -707, -707, -707, 7315, -707, 7315, -707,
-707, 7315, -707, -707, -707, -707, -707, 7315, -707, -707,
-707, -707, -707, 402, -707, -707, -707, 561, 483, -707,
-707, -707, 568, -707, 281, -707, -707, -707, -707, 585,
5281, -707, -707, -707, -707, -707, -707, -707, -707, 425,
362, 409, 5409, -707, -707, 552, -707, -707, -707, 3236,
-707, 3840, 420, -707, 420, 2285, 3496, -707, -707, 480,
-707, -707, -707, -707, 8527, -707, -707, -707, -707, -707,
-707, -707, -707, 8527, -707, -707, -707, -707, -707, -707,
-707, -707, -707, -707, 7315, 7315, 7315, 7315, 7315, 7315,
7315, 7315, 7315, 7315, 7315, 7315, 7315, 7315, 7315, 7315,
7315, 7315, 402, -707, 402, 8527, -707, 8527, -707, 3840,
484, -707, -707, -707, 8669, 423, -707, -707, 7315, -707,
8669, 187, 423, 484, 7315, 402, 3236, -707, 433, -707,
8527, 402, -707, -707, -707, -707, -707, 586, 402, -707,
8669, 477, 486, 7563, 336, 440, -707, 459, 4246, 7868,
488, -707, 7687, 7811, 3236, -707, 8527, 468, -707, -707,
165, 76, -72, 63, 200, 164, 7315, -707, 7315, 7067,
-707, -707, 491, 492, 287, -707, 4246, 4246, -707, 4246,
-707, 7191, 487, 4246, 4246, 4246, 4246, 4246, 4246, 4246,
4246, 4246, 4246, 4246, 322, 4246, 359, 4246, 4246, 4246,
4246, 4246, 377, -707, 4246, 4246, 4246, 4246, 4246, 4246,
4246, 4246, -707, 4246, 495, 6817, 4246, 4246, 4246, -707,
7315, -707, -707, 561, -707, 8527, 8527, -707, 7315, 402,
-707, -707, 362, -707, -707, -707, 7315, -707, 379, -707,
-707, 7315, 617, 542, 231, 8527, -707, -707, 7563, -707,
-707, 3930, 4246, 3496, 3496, 3496, 1262, 1262, 579, 3496,
1262, 1262, 1262, 318, 318, 337, 337, 337, 4246, -707,
-707, -707, -707, 630, 542, 8331, 402, -707, 8527, -707,
4246, -707, 8527, 8527, 402, -707, 402, 4246, 4897, -707,
621, -707, 8109, 345, 8064, -707, -707, -707, 8527, 8109,
-707, -707, -707, -707, 8376, -707, 7563, 8527, 4246, -707,
516, -707, -707, 6177, 420, -707, 3943, -707, -707, 402,
519, 402, 520, 7067, -707, -707, 7191, -707, -707, -707,
7315, 513, 4767, 514, 6305, 409, 7315, -707, 251, 349,
409, -707, 7315, -707, 402, 6433, 4246, 402, 7315, -707,
-707, 4246, 639, -707, -707, 7315, 522, -707, 524, 5537,
7315, -707, -707, -707, 8669, 604, -707, 8669, -707, -707,
-707, 402, 8153, 8527, 8669, 529, 533, 535, 8669, -707,
-707, -707, -707, 301, -707, 530, -707, 8669, -707, 480,
7687, 567, 52, -707, 7315, -707, 8420, -707, 8420, -707,
-707, 4246, -707, -707, -707, -707, 409, 8420, -707, 8420,
-707, -707, 5921, 409, 5921, -707, 402, -707, 4246, 7315,
4246, 7315, 7563, -707, 4246, -707, 7315, -707, 532, -707,
8527, 8669, 8525, -707, 8669, 8198, 575, -707, 8527, 402,
8669, -707, -707, -707, -707, -707, -707, -707, -707, -707,
536, 537, 8669, 540, 5537, -707, 541, 546, 5665, -707,
-707, -707, 35, 5793, 5793, 402, 4246, 4246, 547, 178,
-707, 8527, -707, 402, 402, 8565, -707, 7315, -707, 402,
8527, 8669, 535, 8242, -707, -707, -707, 402, 402, 8483,
-707, 402, -707, 5537, 402, 402, -707, 5665, -707, -707,
-707, -707, -707, -707, 5793, -707, 7315, -707, -707, 598,
6049, 6049, 7315, -707, -707, 380, -707, -707, 8586, -707,
8527, 8669, -707, -707, -707, 8669, -707, -707, -707, -707,
-707, -707, 233, 402, -707, -707, 402, -707, -707, 387,
7315, -707, 7315, -707, 8607, -707, 6561, -707, -707, 31,
6689, -707, -707, 424, 7315, -707, 27, -707, 6561, -707,
-707, -707, -707, -707, 434, 8527, 8527, -707, -707, -707,
-707, -707
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-707, -707, -707, 45, 608, -707, -707, -707, -707, -707,
-478, -434, -39, -169, -643, -707, 240, -707, -707, -707,
-707, -707, -707, -707, -707, 299, -707, -458, -707, -707,
-21, -375, -707, -707, 3153, 1204, 1341, 1425, 584, 227,
587, 364, 588, 589, 448, 593, 560, 595, 644, 596,
756, 597, 840, 601, -707, 1488, 603, 0, 609, 84,
611, 452, -707, 8632, 1552, 1572, 1709, -707, -166, 1816,
-261, -707, -307, -670, -257, -57, 1891, -64, -707, -707,
2031, -707, -256, 3789, -596, -597, -707, 2158, -707, 1779,
1965, -707, 2221, -707, -707, -707, -707, -707, -707, -707,
2379, -707, -707, -707, 4164, -707, -707, -707, -707, -707,
-707, -707, 977, -707, -707, -707, -7, 168, 618, 1047,
619, -707, -707, -707, -707, -707, -144, 467, 1, -209,
-707, 169, -707, -707, -707, -707, -707, -707, -707, 471,
282, -707, -707, -707, -707, -707, -560, -707, -706, -707,
-20, -631, -260, -707, -153, -707, -707, -707, -707, -707,
265, -707, -707, -707, -707, -707, -707, -443, -707, -707,
-463, -707, -707, -707, -707, -707, -707, -707, -707, -707,
245, -707, -707, -707, -707, -707, -707, -707, -707, -707,
-707, -707, -707, -707, -707, -707, -273, -707, 133, -707,
-103, -707, -707, -707, -707, -707, -707, -707, -707, 51,
-707, -707, -707, -707, -707, -707, -707, 55, -707, -707,
-707, -707, -707, -707, -707, -707, -707, -707, -707, -707,
-707, -707, -707, -707, 481, -707, -563, -707, -707, -707,
3099
};
/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule which
number is the opposite. If zero, do what YYDEFACT says.
If YYTABLE_NINF, syntax error. */
#define YYTABLE_NINF -627
static const yytype_int16 yytable[] =
{
88, 287, 585, 204, 552, 500, 586, 587, 494, 518,
735, 757, 667, 520, 661, 664, 671, 674, 798, 521,
745, 522, 523, -305, 667, 765, 231, 351, 820, 556,
306, 442, 824, 320, 398, 251, 543, 404, 552, 319,
794, 324, 329, 310, 1005, 62, 634, 266, 999, 483,
304, 333, 938, 636, 352, 323, 312, 682, -323, 292,
307, 88, 347, 409, 405, 396, 320, 328, 153, 885,
315, 794, 315, 1006, 315, 315, 939, 315, 149, 315,
332, 315, 324, 315, 90, 315, 337, 315, 260, 315,
410, 315, 385, 315, 329, 336, 150, 315, 1000, 402,
315, 344, 405, 315, 642, 315, 297, 333, 343, 438,
232, 470, 352, 500, 352, 713, 244, 604, 482, 252,
717, 315, 337, 315, -305, -329, 721, 307, 481, 307,
557, 267, 88, 484, 359, 344, 439, 307, 307, 88,
305, -96, -96, 293, 353, 90, 742, 307, -96, -96,
307, -96, -96, 307, 316, 886, 316, 307, 316, 316,
307, 316, 307, 316, 358, 316, 307, 316, 120, 316,
840, 316, 924, 316, 819, 316, 387, 316, 307, 307,
411, 316, 307, 828, 316, 307, 307, 316, 307, 316,
307, 359, 908, -328, 242, -29, -29, 307, 307, 254,
410, 304, 353, 307, 353, 316, -325, 316, 307, 783,
307, -27, -27, 549, 415, 271, 90, -132, 307, 304,
777, 441, 278, 90, 360, 351, 946, 71, -326, 120,
307, 307, 307, 592, 340, 359, -237, 888, 318, 722,
65, 416, -132, -132, -132, 416, 263, 549, 442, 410,
-325, -325, 352, 223, 439, 350, 448, 357, 442, 364,
391, 341, -132, -132, -132, -132, 401, -132, -132, 277,
-325, -325, -325, -325, 223, -325, -325, 447, -96, -96,
773, 360, 127, 601, -111, -111, 276, 307, 71, 446,
411, 305, 304, 402, -332, -164, 307, -164, 38, 39,
120, 299, 147, 541, 448, 621, 593, 120, -561, 305,
295, 622, 723, 606, 667, -96, -96, 607, -132, 369,
954, 979, 585, 413, 218, 360, 586, 587, -96, -96,
-237, 307, -237, 250, -132, -96, -96, 307, -132, 411,
-132, 307, 353, 300, 307, 307, -325, 54, 307, 643,
307, 993, 307, 810, 307, 954, 795, 609, 541, 71,
893, 610, 796, 1004, 73, 652, 71, 267, 307, 896,
865, 897, 304, 867, 55, 56, 531, 847, 832, 473,
873, -561, 305, 954, 877, 954, 541, 354, 598, 361,
224, -96, -96, 881, 399, 531, 483, 954, 406, 844,
307, 673, 476, 417, -96, -96, 431, 432, 433, 434,
855, 224, 763, 292, 764, 429, 435, 788, 677, 443,
543, 449, 473, 164, 863, 73, 878, 452, 341, 292,
879, 589, 536, 537, 538, 539, 540, 916, 918, 564,
919, 488, 473, 474, 475, 476, 926, 763, 76, 767,
568, 271, 754, 538, 539, 540, 371, 569, 930, -622,
-622, -622, 305, 670, 475, 476, 453, 454, 455, 456,
88, 575, 55, 56, 225, 849, 797, 899, 578, 901,
484, 953, 88, 402, 763, 585, 768, 959, 577, 586,
587, -130, 55, 56, 545, 225, 73, 293, 453, 662,
455, 456, 763, 73, 769, 980, 552, 981, 304, 76,
223, 599, 980, 293, 991, 320, -130, -130, -130, 932,
55, 56, 547, 936, 983, 55, 56, 985, 942, 943,
324, 987, 55, 56, 541, 329, -130, -130, -130, -130,
374, -130, -130, 55, 56, 685, 55, 56, 718, 980,
995, 1003, 758, 333, 90, 730, 55, 56, 967, 980,
78, 1009, 970, -624, -624, -624, 90, -96, -96, 971,
344, -109, -109, 302, 303, 977, 978, -132, 455, 456,
76, 500, -625, -625, -625, 352, 226, 76, 665, 666,
676, 677, -130, 266, 305, 755, 910, 911, 359, 439,
442, 448, -132, -132, -132, 740, 305, 226, -130, 715,
743, 744, -130, 746, -130, 1002, 501, -22, -24, 766,
770, 78, -132, -132, -132, -132, -438, -132, -132, 510,
511, 512, 513, 514, 515, 516, 517, 531, 120, 800,
811, 830, 842, 843, 80, 836, 838, 224, 859, 862,
120, 866, 376, 775, 861, 88, 874, 880, 875, 923,
876, 780, 929, 928, 974, 2, 883, 931, 934, 298,
227, 154, 155, 935, 945, 801, 368, 267, -132, 370,
372, 373, 156, 157, 158, 375, 159, 377, 379, 381,
161, 227, 78, 383, -132, 384, 559, 71, -132, 78,
-132, 386, 162, 388, 163, 80, 839, 27, 28, 71,
392, 394, 30, 165, 563, 549, 802, 562, 714, 825,
992, 166, 922, 663, 672, 1008, 751, 882, 88, 789,
0, 225, 0, 790, 567, 0, 378, 0, 0, 90,
0, 0, 0, 0, 41, 0, 0, 0, 0, 0,
0, 589, 0, 88, 0, 167, 82, 0, 0, 48,
0, 271, 0, 0, 0, 0, 0, 0, 168, 846,
0, 0, 88, 0, 88, 853, 80, 0, 0, 319,
0, 0, 228, 80, 0, 88, 0, 0, 257, 0,
0, 0, 0, 420, 421, 0, 0, 0, 0, 88,
0, 0, 0, 228, -313, -313, 320, 0, 0, 0,
0, 0, 90, 422, 423, 424, 425, 82, 426, 427,
223, 0, 0, 120, -313, -313, -313, -313, 0, -313,
-313, 0, 0, 0, 73, 0, 0, 90, 0, 0,
84, 0, 0, 226, 0, 0, 73, 0, 380, 0,
420, 421, 88, 0, 88, 0, 90, 0, 90, 909,
306, 0, 0, 0, 0, 0, 229, 0, 0, 90,
422, 423, 424, 425, 0, 426, 427, 0, 0, 0,
0, 0, 71, 90, 0, -312, -312, 229, 82, 429,
0, 0, 0, 0, 88, 82, 120, 0, 88, 0,
-313, 84, 307, 88, 88, -312, -312, -312, -312, 0,
-312, -312, 0, 0, 589, 0, 0, 0, 76, 0,
0, 120, 0, 310, 0, 0, 428, 227, 0, 0,
76, 0, 382, 88, 0, 0, 90, 88, 90, 972,
120, 0, 120, 0, 88, 0, 429, 0, -314, -314,
88, 88, 0, 120, 0, 71, 0, 224, 0, 0,
0, 0, 0, 0, 0, 0, 0, 120, -314, -314,
-314, -314, 84, -314, -314, 0, 0, 119, 90, 84,
71, -312, 90, 307, 0, 0, 88, 90, 90, 0,
88, 0, 0, 0, 0, 0, 0, 0, 88, 71,
0, 71, 0, 241, 0, 0, 323, 0, 0, 0,
0, 0, 71, 0, 0, 0, 0, 90, 0, 73,
120, 90, 120, 0, 241, 0, 71, 0, 90, 0,
78, -316, -316, 324, 90, 90, 0, 0, 119, 228,
0, 225, 78, 0, -314, 0, 307, 122, 0, 0,
0, -316, -316, -316, -316, 0, -316, -316, 0, 0,
0, 0, 120, 0, 0, 0, 120, 0, 0, 390,
90, 120, 120, 243, 90, 0, 0, 0, 0, 71,
0, 71, 90, 0, 0, 0, 0, 0, 0, 0,
0, 0, 73, 0, 243, 0, 0, 0, 0, 0,
0, 120, 0, 76, 0, 120, 0, 0, 122, 119,
0, 0, 120, 0, 80, 0, 119, 73, 120, 120,
0, 71, 0, 229, 0, 71, 80, -316, 0, 307,
71, 71, 0, 0, 0, 0, 73, 0, 73, 393,
0, 0, 0, 328, 0, 0, 0, 0, 0, 73,
0, 0, 0, 226, 120, 0, 0, 0, 120, 0,
71, 0, 0, 73, 71, 0, 120, 0, -318, -318,
329, 71, 0, 0, 0, 0, 76, 71, 71, 122,
0, 0, 0, 0, 0, 0, 122, 0, -318, -318,
-318, -318, 0, -318, -318, 0, 0, 0, 0, 0,
0, 76, 0, 0, 67, 0, 0, 0, 0, 0,
0, 0, 0, 71, 0, 78, 73, 71, 73, 0,
76, 0, 76, 0, 0, 71, 82, 0, 0, 0,
220, 0, 0, 76, 0, 0, 0, 227, 82, 0,
0, 0, 0, 0, 0, 336, 0, 76, 0, 0,
0, 220, 0, 0, 0, 0, 0, 0, 73, 0,
241, 0, 73, 0, -318, 67, 307, 73, 73, 0,
-320, -320, 337, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 78, 0,
-320, -320, -320, -320, 0, -320, -320, 73, 0, 80,
76, 73, 76, 0, 0, 0, 0, 0, 73, 0,
84, 529, 530, 78, 73, 73, 0, 0, 0, 0,
531, 0, 84, 0, 0, 0, 0, 0, 0, 0,
243, 0, 78, 0, 78, 0, 67, 0, 0, 0,
0, 68, 76, 67, 0, 78, 76, 0, 0, 228,
73, 76, 76, 0, 73, 0, 0, 0, 312, 78,
0, 0, 73, 0, 0, 0, -320, 221, 307, 0,
0, 0, 80, 533, 534, 535, 536, 537, 538, 539,
540, 76, 0, -315, -315, 76, 0, 0, 221, 0,
0, 0, 76, 0, 340, 0, 0, 80, 76, 76,
0, 0, 68, -315, -315, -315, -315, 0, -315, -315,
0, 82, 78, 0, 78, 0, 80, 0, 80, -321,
-321, 341, 0, 0, 0, 69, 0, 0, 0, 80,
0, 0, 0, 229, 76, 0, 0, 0, 76, -321,
-321, -321, -321, 80, -321, -321, 76, 119, 0, 0,
0, 222, 0, 0, 78, 0, 0, 0, 78, 119,
0, 0, 0, 78, 78, 0, 0, 0, 0, 0,
0, 0, 222, 68, 0, 401, 0, 0, 0, -315,
68, 307, 0, 0, 82, 0, 69, 220, 86, 0,
0, 0, 0, 78, 0, 84, 80, 78, 80, 0,
-328, -328, 402, 0, 78, 0, 0, 0, 0, 82,
78, 78, 0, 0, 230, -321, 0, 122, 0, 0,
-328, -328, -328, -328, 0, -328, -328, 0, 82, 122,
82, 0, 0, 0, 0, 230, 0, 0, 80, 0,
0, 82, 80, 0, 0, 0, 78, 80, 80, 86,
78, 0, 94, 0, 0, 82, 0, 69, 78, 0,
0, 0, 0, 0, 69, 0, 0, 0, 84, 0,
241, 0, 95, 0, 0, 0, 0, 80, 233, 0,
0, 80, 0, 0, 0, 0, 0, 0, 80, 0,
0, 0, 0, 84, 80, 80, -328, 0, 234, 268,
0, 0, 0, 0, 0, 0, 0, 0, 82, 0,
82, 0, 84, 94, 84, 0, 0, 0, 343, 234,
86, 0, 0, 0, 221, 84, 0, 86, 0, 0,
80, 0, 119, 95, 80, 0, 0, 0, 0, 84,
243, 0, 80, -322, -322, 344, 0, 0, 0, 0,
82, 0, 0, 0, 82, 0, 0, 0, 0, 82,
82, 0, 0, -322, -322, -322, -322, 0, -322, -322,
0, -134, 0, 0, 67, 0, 0, 0, 0, 0,
0, 0, 0, 0, 94, 0, 67, 0, 0, 82,
0, 94, 84, 82, 84, 0, -134, -134, -134, 0,
82, 0, 122, 0, 95, 119, 82, 82, 222, 96,
0, 95, 0, 0, 0, 0, -134, -134, -134, -134,
0, -134, -134, 0, 0, 0, 0, 0, 0, 0,
119, 0, 0, 0, 84, 235, 0, 0, 84, -322,
0, 307, 82, 84, 84, 0, 82, 0, 0, 119,
0, 119, 0, 0, 82, 0, 269, 0, 0, 0,
0, 0, 119, 0, 0, 0, 0, 0, 0, 0,
96, 230, -134, 84, 0, 122, 119, 84, 0, 107,
0, 0, 0, 0, 84, 0, 0, 0, -134, 0,
84, 84, -134, 0, -134, 0, 0, 220, 0, 0,
122, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 68, 0, 0, 0, 0, 99, 0, 0, 122,
0, 122, 0, 68, 0, 0, 84, 0, 0, 119,
84, 119, 122, 0, 0, 602, 0, 0, 84, -131,
107, 96, 236, 0, 0, 0, 122, 0, 96, 0,
0, 0, 0, 0, 0, 234, 0, 0, 0, 67,
0, 0, 0, 236, -131, -131, -131, 0, 0, 0,
0, 119, 0, 0, 0, 119, 0, 99, 0, 0,
119, 119, 0, 0, -131, -131, -131, -131, 0, -131,
-131, 101, 0, 0, 0, 69, 0, 0, 0, 122,
0, 122, 0, 0, 0, 0, 0, 69, 0, 0,
119, 107, 0, 0, 119, 0, 0, 237, 107, 0,
0, 119, 0, 0, 0, 0, 0, 119, 119, 0,
0, 0, 67, 0, 221, 0, 0, 0, 270, 0,
-131, 122, 0, 0, 0, 122, 0, 0, 99, 0,
122, 122, 101, 0, 0, 99, -131, 67, 86, 0,
-131, 0, -131, 119, 0, 108, 0, 119, 0, 0,
86, 0, 0, 0, 0, 119, 67, 0, 67, 0,
122, 0, 0, 0, 122, 0, 0, 0, 0, 67,
0, 122, 603, 0, 0, 0, 68, 122, 122, 0,
0, 0, -135, 67, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 222, 0,
0, 0, 94, 101, 0, 0, 108, -135, -135, -135,
101, 104, 0, 122, 94, 0, 0, 122, 0, 358,
0, 0, 95, 0, 0, 122, 0, -135, -135, -135,
-135, 0, -135, -135, 95, 0, 67, 238, 67, 0,
0, 0, 0, 0, -326, -326, 359, 0, 0, 68,
0, 0, 0, 0, 0, 0, 0, 0, 238, 0,
69, 230, 0, 0, -326, -326, -326, -326, 0, -326,
-326, 0, 104, 0, 68, 0, 0, 108, 67, 236,
0, 0, 67, -135, 108, 0, 0, 67, 67, 0,
0, 0, 0, 68, 0, 68, 0, 0, 0, -135,
0, 0, 0, -135, 0, -135, 68, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 67, 0, 0,
68, 67, 0, 86, 0, 268, 0, 0, 67, 0,
0, 0, 0, 69, 67, 67, 360, 0, 106, 0,
-326, 0, 307, 104, 0, 234, 0, 0, 0, 0,
104, 0, 0, 0, 605, 0, 0, 0, 69, 96,
0, 0, 0, 0, 240, 0, 409, 0, 0, 0,
67, 96, 0, 68, 67, 68, 0, 69, 0, 69,
0, 0, 67, 0, 0, 240, 0, 94, 0, 0,
69, -332, -332, 410, 0, 0, 86, 0, 0, 106,
0, 109, 0, 0, 69, 0, 0, 95, 0, 0,
0, -332, -332, -332, -332, 68, -332, -332, 0, 68,
0, 86, 0, 0, 68, 68, 0, 0, 0, 107,
0, 501, 502, 503, 504, 505, 506, 507, 508, 509,
86, 107, 86, 0, 510, 511, 512, 513, 514, 515,
516, 517, 0, 86, 68, 0, 0, 69, 68, 69,
94, 0, 109, 0, 0, 68, 99, 86, 0, 0,
106, 68, 68, 0, 0, 0, 0, 106, 99, 0,
95, 0, 269, 411, 0, 94, 0, -332, 0, 307,
0, 0, 524, 525, 238, 0, 526, 527, 528, 69,
0, 0, 0, 69, 94, 95, 94, 68, 69, 69,
0, 68, 0, 0, 529, 530, 0, 94, 0, 68,
86, 0, 86, 531, 95, 0, 95, 0, 0, 0,
0, 94, 0, 109, 0, 0, 0, 95, 69, 0,
109, 101, 69, 0, 96, 0, 0, 0, 0, 69,
0, 95, 0, 101, 0, 69, 69, 0, 0, 117,
0, 0, 86, 0, 0, 0, 86, 0, 0, 0,
0, 86, 86, 0, 0, 532, 533, 534, 535, 536,
537, 538, 539, 540, 94, 0, 94, 0, 0, 236,
688, 69, 0, 0, 0, 69, 0, 0, 0, 0,
0, 86, 0, 69, 95, 86, 95, 0, 0, 0,
0, 0, 86, 0, 107, 108, 0, 96, 86, 86,
117, 240, 0, 0, 0, 0, 94, 108, 0, 0,
94, 0, 0, 0, 0, 94, 94, 0, 0, 0,
0, 0, 96, 0, 0, 0, 95, 0, 0, 0,
95, 99, 0, 0, 86, 95, 95, 0, 86, 0,
0, 96, 0, 96, 270, 94, 86, 0, 0, 94,
0, 0, 0, 0, 96, 0, 94, 0, 0, 0,
0, 104, 94, 94, 0, 95, 0, 107, 96, 95,
0, 117, 0, 104, 0, 0, 95, 0, 117, 0,
0, 0, 95, 95, 0, 0, 0, 0, 0, 438,
0, 0, 107, 0, 0, 0, 0, 0, 94, 0,
0, 0, 94, 0, 99, 0, 101, 0, 0, 0,
94, 107, 0, 107, -317, -317, 439, 0, 95, 0,
0, 96, 95, 96, 107, 0, 0, 0, 0, 99,
95, 0, 0, 0, -317, -317, -317, -317, 107, -317,
-317, 0, 0, 0, 0, 0, 0, 0, 99, 0,
99, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 99, 0, 96, 0, 0, 0, 96, 0, 0,
0, 0, 96, 96, 0, 99, 0, 0, 0, 101,
108, 0, 0, 0, 238, 0, 0, 0, 106, 0,
0, 107, 0, 107, 0, 0, 0, 0, 0, 0,
106, 0, 96, 0, 101, 0, 96, 0, 0, 0,
-317, 0, 307, 96, 0, 0, 0, 0, 0, 96,
96, 0, 0, 101, 0, 101, 0, 0, 99, 0,
99, 0, 0, 107, 0, 0, 101, 107, 0, 0,
0, 0, 107, 107, 0, 0, 104, 0, 0, 0,
101, 109, 0, 108, 0, 96, 0, 0, 0, 96,
0, 0, 0, 109, 0, 0, 0, 96, 0, 0,
99, 0, 107, 0, 99, 0, 107, 0, 108, 99,
99, 0, 0, 107, 0, 0, 0, 0, 0, 107,
107, 0, 0, 0, 0, 0, 0, 108, 0, 108,
0, 0, 0, 101, 0, 101, 0, 0, 0, 99,
108, 240, 0, 99, 0, 0, 0, 0, 0, 104,
99, 0, 0, 0, 108, 107, 99, 99, 0, 107,
0, 0, 0, 0, 0, 0, 0, 107, 0, 0,
0, 0, 0, 0, 104, 101, 0, 0, 0, 101,
0, 0, 0, 0, 101, 101, 0, 0, 0, 0,
-133, 0, 99, 104, 0, 104, 99, 0, 0, 0,
0, 0, 0, 106, 99, 0, 104, 108, 0, 108,
0, 0, 0, 0, 101, -133, -133, -133, 101, 0,
104, 0, 0, 0, 0, 101, 0, 0, 0, 0,
0, 101, 101, 0, 0, -133, -133, -133, -133, 117,
-133, -133, 0, 0, 0, 0, 0, 0, 0, 108,
0, 117, 0, 108, 0, 0, 0, 0, 108, 108,
0, 0, 0, 0, 0, 0, 109, 101, 0, 0,
0, 101, 0, 104, 0, 104, 106, 0, 0, 101,
0, 0, 0, 0, 0, 0, 0, 0, 108, 0,
0, -133, 108, 0, 0, 0, 0, 0, 0, 108,
0, 106, 0, 0, 0, 108, 108, -133, 0, 0,
0, -133, 0, -133, 0, 104, 0, 0, 0, 104,
106, 0, 106, 0, 104, 104, 0, 0, 0, 0,
0, 0, 0, 106, 0, 0, 0, 0, 0, 109,
0, 108, 0, 0, 0, 108, 0, 106, 0, 0,
0, 0, 0, 108, 104, 0, 0, 0, 104, 0,
0, 0, 0, 0, 109, 104, 0, 0, 0, 0,
0, 104, 104, 0, 0, 0, 0, 0, 0, 0,
396, 0, 0, 109, 0, 109, 0, 0, 0, 332,
0, 0, 0, 0, 0, 0, 109, 0, 0, 0,
106, 0, 106, 0, 0, -323, -323, 104, 0, 0,
109, 104, 0, 0, -319, -319, 333, 0, 0, 104,
0, 0, 0, 0, 117, -323, -323, -323, -323, 0,
-323, -323, 0, 0, -319, -319, -319, -319, 0, -319,
-319, 0, 106, 0, 0, 0, 106, 0, 0, 0,
0, 106, 106, 0, 501, 502, 503, 504, 505, 506,
507, 508, 509, 109, 0, 109, 0, 510, 511, 512,
513, 514, 515, 516, 517, 0, 0, 0, 0, 0,
0, 106, 398, 0, 0, 106, 0, 0, 0, 144,
145, 0, 106, 0, 0, 0, 0, 117, 106, 106,
0, -323, 0, 307, 0, 109, 0, -324, -324, 109,
-319, 0, 307, 0, 109, 109, 0, 0, 0, 0,
0, 0, 117, 0, 0, 0, 447, -324, -324, -324,
-324, 0, -324, -324, 106, 0, 0, 0, 106, 0,
0, 117, 0, 117, 109, 0, 106, 0, 109, 0,
301, -331, -331, 448, 117, 109, 0, 207, 209, 211,
0, 109, 109, 0, 0, 0, 0, 0, 117, 219,
0, -331, -331, -331, -331, 0, -331, -331, 0, 0,
0, 0, 0, 255, 0, 256, 258, 0, 0, 0,
265, 0, 0, 0, 0, 0, 0, 109, 0, 0,
0, 109, 291, -324, 0, 307, 0, 437, 0, 109,
0, 0, 0, 314, 0, 314, 0, 314, 314, 0,
314, 117, 314, 117, 314, 0, 314, 0, 314, 0,
314, 0, 314, 0, 314, 367, 314, 490, 0, 0,
314, 0, 0, 314, 0, 0, 314, -331, 314, 307,
0, 0, 0, 524, 525, 0, 0, 526, 527, 528,
0, 0, 0, 117, 314, 0, 314, 117, 0, 0,
0, 0, 117, 117, 0, 529, 530, 0, 0, 0,
0, 0, 0, 0, 531, 524, 525, 0, 0, 526,
527, 528, 0, 0, 491, 491, 0, 546, 0, 548,
0, 0, 117, 0, 0, 553, 117, 529, 530, 0,
0, 0, 0, 117, 499, 0, 531, 0, 0, 117,
117, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 532, 533, 534, 535,
536, 537, 538, 539, 540, 572, 0, 0, 576, 55,
56, 0, 0, 0, 0, 117, 491, 0, 0, 117,
554, 0, 0, 0, 595, 608, 0, 117, 532, 533,
534, 535, 536, 537, 538, 539, 540, 0, 0, 0,
0, 0, 0, 0, 0, 611, 0, 0, 560, 554,
491, 0, 0, 0, 0, 0, 0, 0, 0, 571,
0, 0, 0, 0, 0, 580, 584, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 597, 0, 0, 0, 600, 0, 0, -3,
1, 0, -26, -26, 2, 3, 4, 5, 0, 6,
7, 8, 9, 10, 0, 612, 613, 0, 11, 12,
13, 14, 15, 16, 17, 18, 0, 0, 0, 19,
0, 0, 0, 20, 21, 0, 22, 0, 0, 0,
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
32, 33, 34, 0, 0, 0, 0, 35, 0, 36,
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
0, 0, 40, 41, 42, 43, 0, 526, 527, 528,
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
0, 50, 0, 51, 52, 529, 530, 53, 0, 0,
404, 0, 659, 0, 531, 0, 0, 0, 0, 0,
54, 0, 55, 56, 0, 57, 291, 58, 0, 59,
0, 0, 0, 0, 0, -330, -330, 405, 0, 0,
675, 0, 291, 0, 0, 0, 0, 0, 680, 0,
0, 686, 0, 687, 0, -330, -330, -330, -330, 0,
-330, -330, 0, 0, 0, 0, 532, 533, 534, 535,
536, 537, 538, 539, 540, 501, 502, 503, 504, 505,
506, 507, 508, 509, 0, 0, 0, 0, 510, 511,
512, 513, 514, 515, 516, 517, 0, 0, 0, 0,
0, 709, 0, 710, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 719, 0, 0, 689, 0, 0,
0, 725, 0, 0, 728, 729, 690, 731, 0, 0,
737, -330, 0, 307, 0, 0, 0, 741, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 752, 0, 0, 0, 0, 711, 0,
712, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 2, 0, 4, 365, 0, 366, 154,
155, 9, 0, 733, 0, 0, 0, 11, 12, 13,
156, 157, 158, 0, 159, 0, 584, 0, 161, 0,
0, 0, 0, 0, 0, 0, 265, 0, 0, 491,
162, 0, 163, 0, 0, 27, 28, 0, 2, 0,
30, 165, 0, 0, 154, 155, 0, 0, 781, 166,
0, 0, 0, 0, 0, 156, 157, 158, 36, 159,
38, 39, 0, 161, 0, 0, 0, 0, 0, 0,
0, 0, 41, 0, 0, 162, 0, 163, 0, 193,
27, 28, 0, 167, 45, 30, 165, 48, 0, 214,
215, 0, 0, 0, 166, 803, 168, 0, 778, 779,
0, 0, 0, 808, 0, 809, 0, 0, 0, 54,
0, 0, 0, 821, 277, 0, 58, 41, 491, 275,
0, 0, 0, 0, 0, 0, 193, 288, 167, 0,
0, 0, 48, 833, 0, 0, 0, 0, 835, 579,
837, 168, 0, 0, 0, 0, 0, 0, 491, 0,
0, 804, 0, 0, 845, 806, 807, 848, 850, 851,
0, 0, 0, 854, 0, 814, 857, 733, 0, 0,
0, 822, 814, 0, 0, 0, 0, 827, 0, 584,
829, 0, 0, 0, 0, 0, 0, 0, 0, 0,
869, 0, 0, 0, 501, 502, 503, 504, 505, 506,
507, 508, 509, 0, 193, 0, 0, 510, 511, 512,
513, 514, 515, 516, 517, 489, 0, 0, 0, 0,
0, 0, 495, 0, 0, 895, 0, 0, 0, 496,
0, 0, 900, 0, 0, 903, 0, 524, 497, 498,
0, 526, 527, 528, 0, 871, 872, 0, 0, 0,
524, 525, 681, 0, 526, 527, 528, 0, 925, 529,
530, 0, 0, 0, 0, 0, 0, 0, 531, 892,
0, 892, 529, 530, 0, 0, 0, 0, 0, 0,
892, 531, 892, 0, 944, 0, 0, 0, 0, 0,
0, 0, 950, 951, 0, 0, 0, 0, 957, 0,
0, 0, 0, 915, 0, 0, 962, 963, 921, 0,
966, 822, 0, 968, 969, 0, 0, 0, 566, 0,
532, 533, 534, 535, 536, 537, 538, 539, 540, 0,
834, 0, 588, 532, 533, 534, 535, 536, 537, 538,
539, 540, 0, 594, 948, 0, 193, 0, 0, 0,
0, 0, 988, 958, 0, 990, 961, 0, 0, 0,
0, 0, 965, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 617, 619, 0, 347, 623,
0, 624, 0, 0, 0, 0, 0, 0, 625, 0,
0, 0, 626, 984, 0, 0, 0, 627, 0, 0,
0, 628, 0, -327, -327, 629, 0, 0, 0, 630,
0, 0, 631, 0, 0, 0, 632, 0, 0, 0,
633, 0, 0, -327, -327, -327, -327, 635, -327, -327,
0, 0, 0, 0, 0, 0, 0, 0, 1010, 1011,
0, 0, 0, 501, 502, 503, 504, 505, 506, 507,
508, 509, 0, 0, 0, 0, 510, 511, 512, 513,
514, 515, 516, 517, 0, 637, 0, 638, 0, 0,
639, 0, 0, 640, 0, 0, 0, 0, 641, 0,
0, 0, 0, 0, 644, 0, 0, 0, 0, 0,
0, 645, 646, 647, 648, 649, 650, 651, 0, -327,
0, 307, 0, 0, 0, 653, 0, 656, 0, 0,
657, 308, 311, 313, 0, 321, 658, 325, 0, 0,
330, 0, 334, 0, 338, 0, 0, 0, 345, 0,
348, 0, 0, 0, 362, 0, 0, 0, 397, 400,
0, 0, 0, 407, 0, 412, 0, 0, 418, 0,
0, 0, 0, 524, 525, 0, 0, 526, 527, 528,
0, 0, 0, 440, 444, 0, 450, 0, 0, 0,
0, 0, 0, 0, 0, 529, 530, 0, 0, 0,
0, 0, 0, 0, 531, 0, 0, 0, 0, 0,
0, 0, 0, 691, 692, 693, 694, 695, 696, 697,
698, 699, 700, 701, 702, 703, 704, 705, 706, 707,
708, 0, 0, 0, 0, 0, 308, 311, 313, 321,
325, 330, 334, 338, 0, 345, 348, 720, 362, 397,
400, 0, 407, 727, 412, 418, 532, 533, 534, 535,
536, 537, 538, 539, 540, 0, 0, 440, 0, 444,
450, 0, 588, 0, 0, 0, 0, 0, 0, 0,
0, 748, 0, 0, 308, 311, 313, 321, 325, 330,
334, 338, 0, 345, 348, 756, 362, 397, 400, 0,
407, 412, 418, 0, 0, 440, 444, 450, 0, 0,
619, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 362, 397, 0, 412, 444, 0, 2, 0, 4,
5, 0, 6, 154, 155, 9, 0, 0, 0, 193,
0, 11, 12, 13, 156, 157, 158, 193, 159, 0,
0, 160, 161, 0, 0, 786, 20, 21, 0, 0,
791, 0, 0, 0, 162, 0, 163, 0, 0, 27,
28, 0, 0, 164, 30, 165, 0, 0, 0, 0,
0, 0, 0, 166, 0, 0, 0, 0, 0, 0,
0, 0, 36, 0, 38, 39, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 41, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 167, 45, 0,
0, 48, 0, 0, 0, 588, 51, 52, 281, 282,
168, 0, 338, 0, 0, 0, 169, 170, 0, 0,
0, 0, 0, 54, 283, 619, 0, 0, 57, 841,
58, 0, 59, 0, 0, 193, 0, 0, 0, 0,
0, 193, 0, 0, 0, 0, 0, 858, 0, 0,
0, 0, 0, 0, 860, 0, 0, 0, 0, 864,
-2, 296, 0, -26, -26, 2, 3, 4, 5, 0,
6, 7, 8, 9, 10, 0, 0, 0, 0, 11,
12, 13, 14, 15, 16, 17, 18, 0, 0, 748,
19, 0, 0, 0, 20, 21, 0, 22, 0, 0,
0, 0, 23, 24, 25, 26, 0, 27, 28, 0,
0, 29, 30, 31, 0, 0, 0, 0, 906, 0,
907, 32, 33, 34, 0, 193, 0, 0, 35, 0,
36, 37, 38, 39, 0, 0, 0, 0, 0, 0,
0, 0, 0, 40, 41, 42, 43, 415, 0, 0,
0, 0, 0, 0, 0, 44, 45, 46, 47, 48,
49, 0, 50, 0, 51, 52, 0, 0, 53, 0,
0, 0, -333, -333, 416, 0, 0, 0, 0, 0,
0, 54, 0, 55, 56, 0, 57, 0, 58, 0,
59, 0, -333, -333, -333, -333, 0, -333, -333, 0,
0, 0, 0, 0, 0, 193, 0, 0, 0, 0,
0, 0, 501, 502, 503, 504, 505, 506, 507, 508,
509, 0, 0, 444, 0, 510, 511, 512, 513, 514,
515, 516, 517, 0, 0, 0, 397, 0, 461, 412,
-108, -108, 2, 3, 4, 5, 0, 6, 7, 462,
9, 10, -115, -115, -115, -115, 11, 12, 13, 14,
15, 16, 463, 464, 0, 0, 0, 19, -333, 0,
307, 20, 21, 0, 22, -115, -115, -115, -115, 23,
24, 25, 26, -115, 27, 28, 0, 0, 29, 30,
31, 0, 0, 0, 0, 0, 0, 0, 32, 33,
34, -115, -115, -115, -115, 35, 0, 36, 37, 38,
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
0, 0, 44, 45, 46, 47, 48, 49, -115, 50,
-115, 51, 52, 0, 0, 53, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 54, 0,
55, 56, 0, 57, 0, 58, -115, 59, 461, 0,
-108, -108, 2, 3, 4, 5, 0, 6, 7, 462,
9, 10, 0, 0, -114, 0, 11, 12, 13, 14,
15, 16, 463, 464, 0, 0, 0, 19, 0, 0,
0, 20, 21, 0, 22, 0, 0, 0, 0, 23,
24, 25, 26, 0, 27, 28, 0, 0, 29, 30,
31, 0, 0, 0, 0, 0, 0, 0, 32, 33,
34, -114, -114, -114, -114, 35, 0, 36, 37, 38,
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
0, 0, 44, 45, 46, 47, 48, 49, 0, 50,
0, 51, 52, 0, 0, 53, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 54, 0,
55, 56, 0, 57, 0, 58, 461, 59, -108, -108,
2, 3, 4, 5, 0, 6, 7, 462, 9, 10,
0, 0, -528, 0, 11, 12, 13, 14, 15, 16,
463, 464, 0, 0, 0, 19, 0, 0, 0, 20,
21, 0, 22, -528, -528, -528, 0, 23, 24, 25,
26, 0, 27, 28, 0, 0, 29, 30, 31, 0,
0, 0, 0, 0, 0, 0, 32, 33, 34, 0,
0, 0, 0, 35, 0, 36, 37, 38, 39, 0,
0, 0, 0, 0, 0, 0, 0, 0, 40, 41,
42, 43, 0, 0, 0, 0, 0, 0, 0, 0,
44, 45, 46, 47, 48, 49, 0, 50, 0, 51,
52, 0, 0, 53, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 54, 0, 55, 56,
0, 57, 0, 58, 461, 59, -108, -108, 2, 3,
4, 5, 0, 6, 7, 462, 9, 10, 0, 0,
-583, 0, 11, 12, 13, 14, 15, 16, 463, 464,
0, 0, 0, 19, 0, 0, 0, 20, 21, 0,
22, -583, -583, 0, 0, 23, 24, 25, 26, 0,
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
0, 35, 0, 36, 37, 38, 39, 0, 0, 0,
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
46, 47, 48, 49, -583, 50, 0, 51, 52, 0,
0, 53, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 54, 0, 55, 56, 0, 57,
0, 58, 461, 59, -108, -108, 2, 3, 4, 5,
0, 6, 7, 462, 9, 10, 0, 0, -529, 0,
11, 12, 13, 14, 15, 16, 463, 464, 0, 0,
0, 19, 0, 0, 0, 20, 21, 0, 22, -529,
-529, -529, 0, 23, 24, 25, 26, 0, 27, 28,
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
0, 0, 32, 33, 34, 0, 0, 0, 0, 35,
0, 36, 37, 38, 39, 0, 0, 0, 0, 0,
0, 0, 0, 0, 40, 41, 42, 43, 0, 0,
0, 0, 0, 0, 0, 0, 44, 45, 46, 47,
48, 49, 0, 50, 0, 51, 52, 0, 0, 53,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 54, 0, 55, 56, 0, 57, 0, 58,
461, 59, -108, -108, 2, 3, 4, 5, 0, 6,
7, 462, 9, 10, 0, 0, -584, 0, 11, 12,
13, 14, 15, 16, 463, 464, 0, 0, 0, 19,
0, 0, 0, 20, 21, 0, 22, -584, -584, 0,
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
32, 33, 34, 0, 0, 0, 0, 35, 0, 36,
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
-584, 50, 0, 51, 52, 0, 0, 53, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
54, 0, 55, 56, 0, 57, 0, 58, 461, 59,
-108, -108, 2, 3, 4, 5, 0, 6, 7, 462,
9, 10, -114, -114, -114, -114, 11, 12, 13, 14,
15, 16, 463, 464, 0, 0, 0, 19, 0, 0,
0, 20, 21, 0, 22, 0, 0, 0, 0, 23,
24, 25, 26, 0, 27, 28, 0, 0, 29, 30,
31, 0, 0, 0, 0, 0, 0, 0, 32, 33,
34, 0, 0, 0, 0, 35, 0, 36, 37, 38,
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
0, 0, 44, 45, 46, 47, 48, 49, 0, 50,
0, 51, 52, 0, 0, 53, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 54, 0,
55, 56, 0, 57, 0, 58, 461, 59, -108, -108,
2, 3, 4, 5, 0, 6, 7, 462, 9, 10,
0, 0, -114, 0, 11, 12, 13, 14, 15, 16,
463, 464, 0, 0, 0, 19, 0, 0, 0, 20,
21, 0, 22, -114, -114, -114, 0, 23, 24, 25,
26, 0, 27, 28, 0, 0, 29, 30, 31, 0,
0, 0, 0, 0, 0, 0, 32, 33, 34, 0,
0, 0, 0, 35, 0, 36, 37, 38, 39, 0,
0, 0, 0, 0, 0, 0, 0, 0, 40, 41,
42, 43, 0, 0, 0, 0, 0, 0, 0, 0,
44, 45, 46, 47, 48, 49, 0, 50, 0, 51,
52, 0, 0, 53, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 54, 0, 55, 56,
0, 57, 0, 58, 461, 59, -108, -108, 2, 3,
4, 5, 0, 6, 7, 462, 9, 10, 0, 0,
-114, 0, 11, 12, 13, 14, 15, 16, 463, 464,
0, 0, 0, 19, 0, 0, 0, 20, 21, 0,
22, -114, -114, 0, 0, 23, 24, 25, 26, 0,
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
0, 35, 0, 36, 37, 38, 39, 0, 0, 0,
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
46, 47, 48, 49, -114, 50, 0, 51, 52, 0,
0, 53, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 54, 0, 55, 56, 0, 57,
0, 58, 461, 59, -108, -108, 2, 3, 4, 5,
0, 6, 7, 462, 9, 10, 0, 0, -114, 0,
11, 12, 13, 14, 15, 16, 463, 464, 0, 0,
0, 19, 0, 0, 0, 20, 21, 0, 22, 0,
-114, -114, 0, 23, 24, 25, 26, 0, 27, 28,
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
0, 0, 32, 33, 34, 0, 0, 0, 0, 35,
0, 36, 37, 38, 39, 0, 0, 0, 0, 0,
0, 0, 0, 0, 40, 41, 42, 43, 0, 0,
0, 0, 0, 0, 0, 0, 44, 45, 46, 47,
48, 49, 0, 50, 0, 51, 52, 0, 0, 53,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 54, 0, 55, 56, 0, 57, 0, 58,
461, 59, -108, -108, 2, 3, 4, 5, 0, 6,
7, 462, 9, 10, 0, 0, -114, 0, 11, 12,
13, 14, 15, 16, 463, 464, 0, 0, 0, 19,
0, 0, 0, 20, 21, 0, 22, 0, 0, 0,
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
32, 33, 34, 0, 0, -114, -114, 35, 0, 36,
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
0, 50, 0, 51, 52, 0, 0, 53, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
54, 0, 55, 56, 0, 57, 0, 58, 461, 59,
-108, -108, 2, 3, 4, 5, 0, 6, 7, 462,
9, 10, 0, 0, -114, 0, 11, 12, 13, 14,
15, 16, 463, 464, 0, 0, 0, 19, 0, 0,
0, 20, 21, 0, 22, 0, 0, 0, 0, 23,
24, 25, 26, 0, 27, 28, 0, 0, 29, 30,
31, 0, 0, 0, 0, 0, 0, 0, 32, 33,
34, 0, 0, 0, 0, 35, 0, 36, 37, 38,
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
0, 0, 44, 45, 46, 47, 48, 49, 0, 50,
-114, 51, 52, 0, 0, 53, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 54, 0,
55, 56, 0, 57, 0, 58, 461, 59, -108, -108,
2, 3, 4, 5, 0, 6, 7, 462, 9, 10,
0, 0, -114, -114, 11, 12, 13, 14, 15, 16,
463, 464, 0, 0, 0, 19, 0, 0, 0, 20,
21, 0, 22, 0, 0, 0, 0, 23, 24, 25,
26, 0, 27, 28, 0, 0, 29, 30, 31, 0,
0, 0, 0, 0, 0, 0, 32, 33, 34, 0,
0, 0, 0, 35, 0, 36, 37, 38, 39, 0,
0, 0, 0, 0, 0, 0, 0, 0, 40, 41,
42, 43, 0, 0, 0, 0, 0, 0, 0, 0,
44, 45, 46, 47, 48, 49, 0, 50, 0, 51,
52, 0, 0, 53, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 54, 0, 55, 56,
0, 57, 0, 58, 461, 59, -108, -108, 2, 3,
4, 5, 0, 6, 7, 462, 9, 10, 0, 0,
-114, 0, 11, 12, 13, 14, 15, 16, 463, 464,
0, 0, 0, 19, 0, 0, 0, 20, 21, 0,
22, 0, 0, 0, -114, 23, 24, 25, 26, 0,
27, 28, 0, 0, 29, 30, 31, 0, 0, 0,
0, 0, 0, 0, 32, 33, 34, 0, 0, 0,
0, 35, 0, 36, 37, 38, 39, 0, 0, 0,
0, 0, 0, 0, 0, 0, 40, 41, 42, 43,
0, 0, 0, 0, 0, 0, 0, 0, 44, 45,
46, 47, 48, 49, 0, 50, 0, 51, 52, 0,
0, 53, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 54, 0, 55, 56, 0, 57,
0, 58, 461, 59, -108, -108, 2, 3, 4, 5,
0, 6, 7, 462, 9, 10, 0, 0, -114, 0,
11, 12, 13, 14, 15, 16, 463, 464, 0, 0,
0, 19, 0, 0, 0, 20, 21, 0, 22, 0,
0, 0, 0, 23, 24, 25, 26, -114, 27, 28,
0, 0, 29, 30, 31, 0, 0, 0, 0, 0,
0, 0, 32, 33, 34, 0, 0, 0, 0, 35,
0, 36, 37, 38, 39, 0, 0, 0, 0, 0,
0, 0, 0, 0, 40, 41, 42, 43, 0, 0,
0, 0, 0, 0, 0, 0, 44, 45, 46, 47,
48, 49, 0, 50, 0, 51, 52, 0, 0, 53,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 54, 0, 55, 56, 0, 57, 0, 58,
461, 59, -108, -108, 2, 3, 4, 5, 0, 6,
7, 462, 9, 10, 0, 0, -114, 0, 11, 12,
13, 14, 15, 16, 463, 464, 0, 0, 0, 19,
0, 0, 0, 20, 21, 0, 22, 0, 0, 0,
0, 23, 24, 25, 26, 0, 27, 28, 0, 0,
29, 30, 31, 0, 0, 0, 0, 0, 0, 0,
32, 33, 34, 0, 0, 0, -114, 35, 0, 36,
37, 38, 39, 0, 0, 0, 0, 0, 0, 0,
0, 0, 40, 41, 42, 43, 0, 0, 0, 0,
0, 0, 0, 0, 44, 45, 46, 47, 48, 49,
0, 50, 0, 51, 52, 0, 0, 53, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
54, 0, 55, 56, 0, 57, 0, 58, 461, 59,
-108, -108, 2, 3, 4, 5, 0, 6, 7, 462,
9, 10, 0, 0, 0, 0, 11, 12, 13, 14,
15, 16, 463, 464, 0, 0, 0, 19, 0, 0,
0, 20, 21, 0, 22, 0, 0, 0, 0, 23,
24, 25, 26, 0, 27, 28, 0, 0, 29, 30,
31, 0, 0, 0, 0, 0, 0, 0, 32, 33,
34, 0, 0, 0, 0, 35, 0, 36, 37, 38,
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
40, 41, 42, 43, 0, 0, 0, 0, 0, 0,
0, 0, 44, 45, 46, 47, 48, 49, 0, 50,
0, 51, 52, 0, 0, 53, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 54, 0,
55, 56, 0, 57, 0, 58, -114, 59, 2, 0,
4, 5, 0, 6, 154, 155, 9, 0, 0, 0,
0, 0, 11, 12, 13, 156, 157, 158, 0, 159,
0, 0, 160, 161, 0, 0, 0, 20, 21, 0,
0, 0, 0, 0, 0, 162, 0, 163, 0, 0,
27, 28, 0, 0, 164, 30, 165, 0, 0, 0,
0, 0, 0, 0, 166, 0, 0, 0, 0, 0,
0, 0, 0, 36, 0, 38, 39, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 41, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 167, 45,
0, 0, 48, 0, 0, 0, 0, 51, 52, 0,
0, 168, 0, 0, 0, 0, 0, 169, 170, 0,
0, 0, 0, 0, 54, 283, 0, 0, 583, 57,
0, 58, 2, 59, 4, 5, 0, 6, 154, 155,
9, 0, 0, 0, 0, 0, 11, 12, 13, 156,
157, 158, 0, 159, 0, 0, 160, 161, 0, 0,
0, 20, 21, 0, 0, 0, 0, 0, 0, 162,
0, 163, 0, 0, 27, 28, 0, 0, 164, 30,
165, 0, 0, 0, 0, 0, 0, 0, 166, 0,
0, 0, 0, 0, 0, 0, 0, 36, 0, 38,
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 41, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 167, 45, 0, 0, 48, 0, 0, 0,
0, 51, 52, 281, 0, 168, 0, 0, 0, 0,
0, 169, 170, 0, 0, 0, 0, 0, 54, 283,
0, 0, 0, 57, 0, 58, 2, 59, 4, 5,
0, 6, 154, 155, 9, 0, 0, 0, 0, 0,
11, 12, 13, 156, 157, 158, 0, 159, 0, 0,
160, 161, 0, 0, 0, 20, 21, 0, 0, 0,
0, 0, 0, 162, 0, 163, 0, 0, 27, 28,
0, 0, 164, 30, 165, 0, 0, 0, 0, 0,
0, 0, 166, 0, 0, 0, 0, 0, 0, 0,
0, 36, 0, 38, 39, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 41, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 167, 45, 0, 0,
48, 0, 0, 0, 0, 51, 52, 618, 0, 168,
0, 0, 0, 0, 0, 169, 170, 0, 0, 0,
0, 0, 54, 171, 0, 0, 0, 57, 0, 58,
2, 59, 4, 5, 0, 6, 154, 155, 9, 0,
0, 0, 0, 0, 11, 12, 13, 156, 157, 158,
0, 159, 0, 0, 160, 161, 0, 0, 0, 20,
21, 0, 0, 0, 0, 0, 0, 162, 0, 163,
0, 0, 27, 28, 0, 0, 164, 30, 165, 0,
0, 0, 0, 0, 0, 0, 166, 0, 0, 0,
0, 0, 0, 0, 0, 36, 0, 38, 39, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 41,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
167, 45, 0, 0, 48, 0, 0, 0, 0, 51,
52, 0, 0, 168, 0, 0, 0, 0, 0, 169,
170, 0, 0, 0, 0, 0, 54, 171, 0, 0,
0, 57, 0, 58, 2, 59, 4, 5, 0, 6,
154, 155, 9, 0, 0, 0, 0, 0, 11, 12,
13, 156, 157, 158, 0, 159, 0, 0, 160, 161,
0, 0, 0, 20, 21, 0, 0, 0, 0, 0,
0, 162, 0, 163, 0, 0, 27, 28, 0, 0,
164, 30, 165, 0, 0, 0, 0, 0, 0, 0,
166, 0, 0, 0, 0, 0, 0, 0, 0, 36,
0, 38, 39, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 41, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 167, 45, 0, 0, 48, 0,
0, 0, 0, 51, 52, 0, 0, 168, 0, 0,
0, 0, 0, 169, 170, 0, 0, 0, 0, 0,
54, 279, 0, 0, 0, 57, 0, 58, 2, 59,
4, 5, 0, 6, 154, 155, 9, 0, 0, 0,
0, 0, 11, 12, 13, 156, 157, 158, 0, 159,
0, 0, 160, 161, 0, 0, 0, 20, 21, 0,
0, 0, 0, 0, 0, 162, 0, 163, 0, 0,
27, 28, 0, 0, 164, 30, 165, 0, 0, 0,
0, 0, 0, 0, 166, 0, 0, 0, 0, 0,
0, 0, 0, 36, 0, 38, 39, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 41, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 167, 45,
0, 0, 48, 0, 0, 0, 0, 51, 52, 0,
0, 168, 0, 0, 0, 0, 0, 169, 170, 0,
0, 0, 0, 0, 54, 283, 0, 0, 0, 57,
0, 58, 2, 59, 4, 5, 0, 6, 154, 155,
9, 0, 0, 0, 0, 0, 11, 12, 13, 156,
157, 158, 0, 159, 0, 0, 160, 161, 0, 0,
0, 20, 21, 0, 0, 0, 0, 0, 0, 162,
0, 163, 0, 0, 27, 28, 0, 0, 164, 30,
165, 0, 0, 0, 0, 0, 0, 0, 166, 0,
0, 0, 0, 0, 0, 0, 0, 36, 0, 38,
39, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 41, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 167, 45, 0, 0, 48, 0, 0, 0,
0, 51, 52, 0, 0, 168, 0, 0, 0, 0,
0, 169, 170, 0, 0, 0, 0, 0, 54, 747,
0, 0, 0, 57, 0, 58, 2, 59, 4, 5,
0, 6, 154, 155, 9, 0, 0, 0, 0, 0,
11, 12, 13, 156, 157, 158, 0, 159, 0, 0,
0, 161, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 162, 0, 163, 0, 0, 27, 28,
0, 0, 164, 30, 165, 0, 0, 0, 0, 0,
0, 0, 166, 0, 0, 0, 0, 441, 0, 0,
0, 36, 0, 38, 39, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 41, 0, 0, 0, 0,
0, 0, -329, -329, 442, 0, 167, 45, 0, 0,
48, 0, 0, 0, 0, 51, 52, 0, 0, 168,
0, 0, -329, -329, -329, -329, 0, -329, -329, 0,
0, 0, 54, 0, 0, 0, 0, 57, 441, 58,
0, 59, 501, 502, 503, 504, 505, 506, 507, 508,
509, 0, 0, 0, 0, 510, 511, 512, 513, 514,
515, 516, 517, -329, -329, 442, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, -329, -329, -329, -329, 0, -329, -329,
0, -626, -626, -626, 0, 0, 0, 0, -329, 0,
307, 0, 0, 501, 502, 503, 504, 505, 506, 507,
508, 509, 0, 0, 0, 0, 510, 511, 512, 513,
514, 515, 516, 517, 0, 2, 0, 0, 0, 0,
0, 154, 155, 0, 0, 0, 0, 0, 0, 0,
0, 0, 156, 157, 158, 0, 159, 0, 0, 0,
161, 0, 0, 0, 0, 0, 0, 0, 0, -329,
0, 307, 162, 0, 163, 0, 0, 27, 28, 2,
0, 0, 30, 165, 0, 154, 155, 0, 0, 0,
0, 166, 0, 0, 0, 0, 156, 157, 158, 0,
159, 0, 38, 39, 161, 0, 0, 0, 0, 0,
0, 0, 0, 0, 41, 0, 162, 0, 163, 0,
0, 27, 28, 0, 2, 167, 30, 165, 0, 48,
154, 155, 0, 0, 0, 166, 0, 0, 168, 0,
0, 156, 157, 158, 0, 159, 0, 0, 0, 161,
0, 54, 0, 0, 0, 0, 277, 0, 41, 0,
0, 162, 0, 163, 0, 0, 27, 28, 2, 167,
0, 30, 165, 48, 154, 155, 0, 0, 0, 0,
166, 0, 168, 0, 0, 156, 157, 158, 0, 159,
0, 0, 0, 161, 0, 0, 0, 55, 56, 0,
0, 0, 0, 812, 0, 162, 0, 163, 0, 0,
27, 28, 0, 2, 167, 30, 165, 0, 48, 154,
155, 0, 0, 0, 166, 0, 0, 168, 0, 0,
156, 157, 158, 0, 159, 0, 0, 0, 161, 0,
0, 813, 0, 0, 0, 0, 0, 41, 0, 0,
162, 0, 163, 0, 0, 27, 28, 2, 167, 0,
30, 165, 48, 154, 155, 0, 0, 0, 0, 166,
0, 168, 0, 0, 156, 157, 158, 0, 159, 0,
0, 0, 161, 0, 0, 870, 0, 0, 0, 0,
0, 0, 812, 0, 162, 0, 163, 0, 0, 27,
28, 0, 2, 167, 30, 165, 0, 48, 154, 155,
0, 0, 0, 166, 0, 0, 168, 0, 0, 156,
157, 158, 0, 159, 0, 0, 0, 161, 0, 0,
920, 0, 0, 0, 0, 0, 41, 0, 0, 162,
0, 163, 0, 0, 27, 28, 2, 167, 0, 30,
165, 48, 154, 155, 0, 0, 0, 0, 166, 0,
168, 0, 0, 156, 157, 158, 0, 159, 0, 38,
39, 161, 0, 0, 960, 0, 0, 0, 0, 0,
0, 41, 0, 162, 0, 163, 0, 0, 27, 28,
0, 2, 167, 30, 165, 0, 48, 154, 155, 0,
0, 0, 166, 0, 0, 168, 0, 0, 156, 157,
158, 0, 159, 38, 39, 0, 161, 0, 54, 0,
0, 0, 0, 0, 0, 41, 0, 0, 162, 0,
163, 0, 0, 27, 28, 2, 167, 0, 30, 165,
48, 154, 155, 0, 0, 0, 0, 166, 0, 168,
0, 0, 156, 157, 158, 0, 159, 0, 0, 0,
161, 0, 0, 0, 0, 0, 0, 0, 0, 0,
41, 0, 162, 0, 163, 0, 0, 27, 28, 0,
0, 167, 30, 165, 0, 48, 0, 0, 0, 0,
0, 166, 826, 0, 168, 0, 0, 0, 2, 0,
0, 0, 0, 0, 154, 155, 0, 0, 0, 0,
0, 0, 0, 0, 41, 156, 157, 158, 0, 159,
0, 0, 0, 161, 0, 167, 0, 0, 0, 48,
0, 0, 0, 0, 0, 162, 889, 163, 168, 0,
27, 28, 2, 0, 0, 30, 165, 0, 154, 155,
0, 0, 0, 0, 166, 0, 0, 0, 0, 156,
157, 158, 0, 159, 0, 0, 0, 161, 0, 0,
0, 0, 0, 0, 0, 0, 0, 41, 0, 162,
0, 163, 0, 0, 27, 28, 0, 0, 167, 30,
165, 0, 48, 0, 0, 0, 0, 0, 166, 964,
0, 168, 0, 0, 0, 0, 0, 0, 0, 501,
502, 503, 504, 505, 506, 507, 508, 509, 0, 0,
0, 41, 510, 511, 512, 513, 514, 515, 516, 517,
0, 0, 167, 0, 0, 0, 48, 0, 0, 0,
0, 0, 0, 0, 0, 168, 0, 0, 0, 501,
502, 503, 504, 505, 506, 507, 508, 509, 0, 0,
0, 917, 510, 511, 512, 513, 514, 515, 516, 517,
501, 502, 503, 504, 505, 506, 507, 508, 509, 0,
0, 0, 0, 510, 511, 512, 513, 514, 515, 516,
517, 501, 502, 503, 504, 505, 506, 507, 508, 509,
0, 952, 0, 0, 510, 511, 512, 513, 514, 515,
516, 517, 0, 0, 322, 0, 326, 327, 0, 331,
0, 335, 982, 339, 0, 342, 0, 346, 0, 349,
0, 356, 0, 363, 389, 395, 0, 0, 0, 403,
0, 0, 408, 994, 0, 414, 0, 419, 0, 0,
0, 0, 0, 501, 502, 503, 504, 505, 506, 507,
508, 509, 0, 445, 0, 451, 510, 511, 512, 513,
514, 515, 516, 517
};
static const yytype_int16 yycheck[] =
{
0, 58, 263, 10, 213, 171, 263, 263, 152, 178,
570, 608, 470, 182, 457, 458, 479, 480, 688, 188,
583, 190, 191, 9, 482, 621, 26, 9, 734, 9,
9, 36, 738, 36, 9, 35, 205, 9, 247, 9,
683, 36, 36, 9, 17, 0, 353, 47, 17, 17,
36, 36, 17, 360, 36, 9, 9, 491, 130, 59,
132, 61, 9, 9, 36, 9, 36, 9, 126, 17,
70, 714, 72, 46, 74, 75, 41, 77, 36, 79,
9, 81, 36, 83, 0, 85, 36, 87, 19, 89,
36, 91, 92, 93, 36, 9, 36, 97, 67, 36,
100, 36, 36, 103, 411, 105, 61, 36, 9, 9,
26, 132, 36, 279, 36, 549, 36, 283, 139, 35,
554, 121, 36, 123, 110, 130, 560, 132, 135, 132,
110, 47, 132, 101, 36, 36, 36, 132, 132, 139,
126, 123, 124, 59, 126, 61, 580, 132, 123, 124,
132, 123, 124, 132, 70, 103, 72, 132, 74, 75,
132, 77, 132, 79, 9, 81, 132, 83, 0, 85,
766, 87, 878, 89, 734, 91, 92, 93, 132, 132,
126, 97, 132, 746, 100, 132, 132, 103, 132, 105,
132, 36, 862, 130, 26, 3, 4, 132, 132, 10,
36, 36, 126, 132, 126, 121, 130, 123, 132, 672,
132, 3, 4, 213, 9, 47, 132, 9, 132, 36,
663, 9, 54, 139, 126, 9, 48, 0, 130, 61,
132, 132, 132, 52, 9, 36, 36, 834, 70, 52,
0, 36, 34, 35, 36, 36, 69, 247, 36, 36,
34, 35, 36, 26, 36, 87, 36, 89, 36, 91,
92, 36, 54, 55, 56, 57, 9, 59, 60, 126,
54, 55, 56, 57, 47, 59, 60, 9, 123, 124,
655, 126, 0, 283, 3, 4, 12, 132, 61, 121,
126, 126, 36, 36, 130, 130, 132, 132, 72, 73,
132, 61, 3, 125, 36, 125, 125, 139, 52, 126,
0, 131, 125, 125, 772, 123, 124, 129, 110, 92,
917, 952, 583, 130, 25, 126, 583, 583, 123, 124,
130, 132, 132, 34, 126, 123, 124, 132, 130, 126,
132, 132, 126, 61, 132, 132, 130, 121, 132, 413,
132, 982, 132, 728, 132, 952, 125, 125, 125, 132,
838, 129, 131, 994, 0, 429, 139, 283, 132, 847,
804, 849, 36, 807, 123, 124, 58, 126, 753, 17,
814, 125, 126, 980, 818, 982, 125, 88, 127, 90,
26, 123, 124, 827, 95, 58, 17, 994, 99, 774,
132, 39, 40, 104, 123, 124, 107, 108, 109, 110,
785, 47, 125, 413, 127, 130, 117, 38, 39, 120,
589, 122, 17, 51, 799, 61, 125, 128, 36, 429,
129, 263, 114, 115, 116, 117, 118, 871, 872, 69,
874, 142, 17, 38, 39, 40, 880, 125, 0, 127,
19, 283, 596, 116, 117, 118, 92, 126, 892, 123,
124, 125, 126, 38, 39, 40, 15, 16, 17, 18,
470, 126, 123, 124, 26, 126, 685, 852, 127, 854,
101, 915, 482, 36, 125, 746, 127, 921, 114, 746,
746, 9, 123, 124, 125, 47, 132, 413, 15, 16,
17, 18, 125, 139, 127, 125, 715, 127, 36, 61,
283, 129, 125, 429, 127, 36, 34, 35, 36, 894,
123, 124, 125, 898, 958, 123, 124, 961, 903, 904,
36, 965, 123, 124, 125, 36, 54, 55, 56, 57,
92, 59, 60, 123, 124, 125, 123, 124, 125, 125,
984, 127, 609, 36, 470, 122, 123, 124, 933, 125,
0, 127, 937, 123, 124, 125, 482, 123, 124, 944,
36, 3, 4, 3, 4, 950, 951, 9, 17, 18,
132, 747, 123, 124, 125, 36, 26, 139, 3, 4,
38, 39, 110, 593, 126, 127, 64, 65, 36, 36,
36, 36, 34, 35, 36, 19, 126, 47, 126, 125,
133, 125, 130, 125, 132, 990, 74, 126, 126, 132,
125, 61, 54, 55, 56, 57, 9, 59, 60, 87,
88, 89, 90, 91, 92, 93, 94, 58, 470, 9,
19, 125, 129, 129, 0, 126, 126, 283, 9, 125,
482, 47, 92, 660, 132, 655, 127, 127, 125, 84,
125, 668, 125, 127, 66, 5, 99, 127, 127, 61,
26, 11, 12, 127, 127, 714, 92, 593, 110, 92,
92, 92, 22, 23, 24, 92, 26, 92, 92, 92,
30, 47, 132, 92, 126, 92, 244, 470, 130, 139,
132, 92, 42, 92, 44, 61, 763, 47, 48, 482,
92, 92, 52, 53, 247, 715, 715, 246, 549, 739,
980, 61, 875, 458, 479, 998, 593, 830, 728, 678,
-1, 283, -1, 678, 253, -1, 92, -1, -1, 655,
-1, -1, -1, -1, 84, -1, -1, -1, -1, -1,
-1, 583, -1, 753, -1, 95, 0, -1, -1, 99,
-1, 593, -1, -1, -1, -1, -1, -1, 108, 776,
-1, -1, 772, -1, 774, 782, 132, -1, -1, 9,
-1, -1, 26, 139, -1, 785, -1, -1, 128, -1,
-1, -1, -1, 34, 35, -1, -1, -1, -1, 799,
-1, -1, -1, 47, 34, 35, 36, -1, -1, -1,
-1, -1, 728, 54, 55, 56, 57, 61, 59, 60,
593, -1, -1, 655, 54, 55, 56, 57, -1, 59,
60, -1, -1, -1, 470, -1, -1, 753, -1, -1,
0, -1, -1, 283, -1, -1, 482, -1, 92, -1,
34, 35, 852, -1, 854, -1, 772, -1, 774, 866,
9, -1, -1, -1, -1, -1, 26, -1, -1, 785,
54, 55, 56, 57, -1, 59, 60, -1, -1, -1,
-1, -1, 655, 799, -1, 34, 35, 47, 132, 130,
-1, -1, -1, -1, 894, 139, 728, -1, 898, -1,
130, 61, 132, 903, 904, 54, 55, 56, 57, -1,
59, 60, -1, -1, 746, -1, -1, -1, 470, -1,
-1, 753, -1, 9, -1, -1, 110, 283, -1, -1,
482, -1, 92, 933, -1, -1, 852, 937, 854, 946,
772, -1, 774, -1, 944, -1, 130, -1, 34, 35,
950, 951, -1, 785, -1, 728, -1, 593, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 799, 54, 55,
56, 57, 132, 59, 60, -1, -1, 0, 894, 139,
753, 130, 898, 132, -1, -1, 986, 903, 904, -1,
990, -1, -1, -1, -1, -1, -1, -1, 998, 772,
-1, 774, -1, 26, -1, -1, 9, -1, -1, -1,
-1, -1, 785, -1, -1, -1, -1, 933, -1, 655,
852, 937, 854, -1, 47, -1, 799, -1, 944, -1,
470, 34, 35, 36, 950, 951, -1, -1, 61, 283,
-1, 593, 482, -1, 130, -1, 132, 0, -1, -1,
-1, 54, 55, 56, 57, -1, 59, 60, -1, -1,
-1, -1, 894, -1, -1, -1, 898, -1, -1, 92,
986, 903, 904, 26, 990, -1, -1, -1, -1, 852,
-1, 854, 998, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 728, -1, 47, -1, -1, -1, -1, -1,
-1, 933, -1, 655, -1, 937, -1, -1, 61, 132,
-1, -1, 944, -1, 470, -1, 139, 753, 950, 951,
-1, 894, -1, 283, -1, 898, 482, 130, -1, 132,
903, 904, -1, -1, -1, -1, 772, -1, 774, 92,
-1, -1, -1, 9, -1, -1, -1, -1, -1, 785,
-1, -1, -1, 593, 986, -1, -1, -1, 990, -1,
933, -1, -1, 799, 937, -1, 998, -1, 34, 35,
36, 944, -1, -1, -1, -1, 728, 950, 951, 132,
-1, -1, -1, -1, -1, -1, 139, -1, 54, 55,
56, 57, -1, 59, 60, -1, -1, -1, -1, -1,
-1, 753, -1, -1, 0, -1, -1, -1, -1, -1,
-1, -1, -1, 986, -1, 655, 852, 990, 854, -1,
772, -1, 774, -1, -1, 998, 470, -1, -1, -1,
26, -1, -1, 785, -1, -1, -1, 593, 482, -1,
-1, -1, -1, -1, -1, 9, -1, 799, -1, -1,
-1, 47, -1, -1, -1, -1, -1, -1, 894, -1,
283, -1, 898, -1, 130, 61, 132, 903, 904, -1,
34, 35, 36, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 728, -1,
54, 55, 56, 57, -1, 59, 60, 933, -1, 655,
852, 937, 854, -1, -1, -1, -1, -1, 944, -1,
470, 49, 50, 753, 950, 951, -1, -1, -1, -1,
58, -1, 482, -1, -1, -1, -1, -1, -1, -1,
283, -1, 772, -1, 774, -1, 132, -1, -1, -1,
-1, 0, 894, 139, -1, 785, 898, -1, -1, 593,
986, 903, 904, -1, 990, -1, -1, -1, 9, 799,
-1, -1, 998, -1, -1, -1, 130, 26, 132, -1,
-1, -1, 728, 111, 112, 113, 114, 115, 116, 117,
118, 933, -1, 34, 35, 937, -1, -1, 47, -1,
-1, -1, 944, -1, 9, -1, -1, 753, 950, 951,
-1, -1, 61, 54, 55, 56, 57, -1, 59, 60,
-1, 655, 852, -1, 854, -1, 772, -1, 774, 34,
35, 36, -1, -1, -1, 0, -1, -1, -1, 785,
-1, -1, -1, 593, 986, -1, -1, -1, 990, 54,
55, 56, 57, 799, 59, 60, 998, 470, -1, -1,
-1, 26, -1, -1, 894, -1, -1, -1, 898, 482,
-1, -1, -1, 903, 904, -1, -1, -1, -1, -1,
-1, -1, 47, 132, -1, 9, -1, -1, -1, 130,
139, 132, -1, -1, 728, -1, 61, 283, 0, -1,
-1, -1, -1, 933, -1, 655, 852, 937, 854, -1,
34, 35, 36, -1, 944, -1, -1, -1, -1, 753,
950, 951, -1, -1, 26, 130, -1, 470, -1, -1,
54, 55, 56, 57, -1, 59, 60, -1, 772, 482,
774, -1, -1, -1, -1, 47, -1, -1, 894, -1,
-1, 785, 898, -1, -1, -1, 986, 903, 904, 61,
990, -1, 0, -1, -1, 799, -1, 132, 998, -1,
-1, -1, -1, -1, 139, -1, -1, -1, 728, -1,
593, -1, 0, -1, -1, -1, -1, 933, 26, -1,
-1, 937, -1, -1, -1, -1, -1, -1, 944, -1,
-1, -1, -1, 753, 950, 951, 130, -1, 26, 47,
-1, -1, -1, -1, -1, -1, -1, -1, 852, -1,
854, -1, 772, 61, 774, -1, -1, -1, 9, 47,
132, -1, -1, -1, 283, 785, -1, 139, -1, -1,
986, -1, 655, 61, 990, -1, -1, -1, -1, 799,
593, -1, 998, 34, 35, 36, -1, -1, -1, -1,
894, -1, -1, -1, 898, -1, -1, -1, -1, 903,
904, -1, -1, 54, 55, 56, 57, -1, 59, 60,
-1, 9, -1, -1, 470, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 132, -1, 482, -1, -1, 933,
-1, 139, 852, 937, 854, -1, 34, 35, 36, -1,
944, -1, 655, -1, 132, 728, 950, 951, 283, 0,
-1, 139, -1, -1, -1, -1, 54, 55, 56, 57,
-1, 59, 60, -1, -1, -1, -1, -1, -1, -1,
753, -1, -1, -1, 894, 26, -1, -1, 898, 130,
-1, 132, 986, 903, 904, -1, 990, -1, -1, 772,
-1, 774, -1, -1, 998, -1, 47, -1, -1, -1,
-1, -1, 785, -1, -1, -1, -1, -1, -1, -1,
61, 283, 110, 933, -1, 728, 799, 937, -1, 0,
-1, -1, -1, -1, 944, -1, -1, -1, 126, -1,
950, 951, 130, -1, 132, -1, -1, 593, -1, -1,
753, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 470, -1, -1, -1, -1, 0, -1, -1, 772,
-1, 774, -1, 482, -1, -1, 986, -1, -1, 852,
990, 854, 785, -1, -1, 283, -1, -1, 998, 9,
61, 132, 26, -1, -1, -1, 799, -1, 139, -1,
-1, -1, -1, -1, -1, 283, -1, -1, -1, 655,
-1, -1, -1, 47, 34, 35, 36, -1, -1, -1,
-1, 894, -1, -1, -1, 898, -1, 61, -1, -1,
903, 904, -1, -1, 54, 55, 56, 57, -1, 59,
60, 0, -1, -1, -1, 470, -1, -1, -1, 852,
-1, 854, -1, -1, -1, -1, -1, 482, -1, -1,
933, 132, -1, -1, 937, -1, -1, 26, 139, -1,
-1, 944, -1, -1, -1, -1, -1, 950, 951, -1,
-1, -1, 728, -1, 593, -1, -1, -1, 47, -1,
110, 894, -1, -1, -1, 898, -1, -1, 132, -1,
903, 904, 61, -1, -1, 139, 126, 753, 470, -1,
130, -1, 132, 986, -1, 0, -1, 990, -1, -1,
482, -1, -1, -1, -1, 998, 772, -1, 774, -1,
933, -1, -1, -1, 937, -1, -1, -1, -1, 785,
-1, 944, 283, -1, -1, -1, 655, 950, 951, -1,
-1, -1, 9, 799, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 593, -1,
-1, -1, 470, 132, -1, -1, 61, 34, 35, 36,
139, 0, -1, 986, 482, -1, -1, 990, -1, 9,
-1, -1, 470, -1, -1, 998, -1, 54, 55, 56,
57, -1, 59, 60, 482, -1, 852, 26, 854, -1,
-1, -1, -1, -1, 34, 35, 36, -1, -1, 728,
-1, -1, -1, -1, -1, -1, -1, -1, 47, -1,
655, 593, -1, -1, 54, 55, 56, 57, -1, 59,
60, -1, 61, -1, 753, -1, -1, 132, 894, 283,
-1, -1, 898, 110, 139, -1, -1, 903, 904, -1,
-1, -1, -1, 772, -1, 774, -1, -1, -1, 126,
-1, -1, -1, 130, -1, 132, 785, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 933, -1, -1,
799, 937, -1, 655, -1, 593, -1, -1, 944, -1,
-1, -1, -1, 728, 950, 951, 126, -1, 0, -1,
130, -1, 132, 132, -1, 593, -1, -1, -1, -1,
139, -1, -1, -1, 283, -1, -1, -1, 753, 470,
-1, -1, -1, -1, 26, -1, 9, -1, -1, -1,
986, 482, -1, 852, 990, 854, -1, 772, -1, 774,
-1, -1, 998, -1, -1, 47, -1, 655, -1, -1,
785, 34, 35, 36, -1, -1, 728, -1, -1, 61,
-1, 0, -1, -1, 799, -1, -1, 655, -1, -1,
-1, 54, 55, 56, 57, 894, 59, 60, -1, 898,
-1, 753, -1, -1, 903, 904, -1, -1, -1, 470,
-1, 74, 75, 76, 77, 78, 79, 80, 81, 82,
772, 482, 774, -1, 87, 88, 89, 90, 91, 92,
93, 94, -1, 785, 933, -1, -1, 852, 937, 854,
728, -1, 61, -1, -1, 944, 470, 799, -1, -1,
132, 950, 951, -1, -1, -1, -1, 139, 482, -1,
728, -1, 593, 126, -1, 753, -1, 130, -1, 132,
-1, -1, 27, 28, 283, -1, 31, 32, 33, 894,
-1, -1, -1, 898, 772, 753, 774, 986, 903, 904,
-1, 990, -1, -1, 49, 50, -1, 785, -1, 998,
852, -1, 854, 58, 772, -1, 774, -1, -1, -1,
-1, 799, -1, 132, -1, -1, -1, 785, 933, -1,
139, 470, 937, -1, 655, -1, -1, -1, -1, 944,
-1, 799, -1, 482, -1, 950, 951, -1, -1, 0,
-1, -1, 894, -1, -1, -1, 898, -1, -1, -1,
-1, 903, 904, -1, -1, 110, 111, 112, 113, 114,
115, 116, 117, 118, 852, -1, 854, -1, -1, 593,
125, 986, -1, -1, -1, 990, -1, -1, -1, -1,
-1, 933, -1, 998, 852, 937, 854, -1, -1, -1,
-1, -1, 944, -1, 655, 470, -1, 728, 950, 951,
61, 283, -1, -1, -1, -1, 894, 482, -1, -1,
898, -1, -1, -1, -1, 903, 904, -1, -1, -1,
-1, -1, 753, -1, -1, -1, 894, -1, -1, -1,
898, 655, -1, -1, 986, 903, 904, -1, 990, -1,
-1, 772, -1, 774, 593, 933, 998, -1, -1, 937,
-1, -1, -1, -1, 785, -1, 944, -1, -1, -1,
-1, 470, 950, 951, -1, 933, -1, 728, 799, 937,
-1, 132, -1, 482, -1, -1, 944, -1, 139, -1,
-1, -1, 950, 951, -1, -1, -1, -1, -1, 9,
-1, -1, 753, -1, -1, -1, -1, -1, 986, -1,
-1, -1, 990, -1, 728, -1, 655, -1, -1, -1,
998, 772, -1, 774, 34, 35, 36, -1, 986, -1,
-1, 852, 990, 854, 785, -1, -1, -1, -1, 753,
998, -1, -1, -1, 54, 55, 56, 57, 799, 59,
60, -1, -1, -1, -1, -1, -1, -1, 772, -1,
774, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 785, -1, 894, -1, -1, -1, 898, -1, -1,
-1, -1, 903, 904, -1, 799, -1, -1, -1, 728,
655, -1, -1, -1, 593, -1, -1, -1, 470, -1,
-1, 852, -1, 854, -1, -1, -1, -1, -1, -1,
482, -1, 933, -1, 753, -1, 937, -1, -1, -1,
130, -1, 132, 944, -1, -1, -1, -1, -1, 950,
951, -1, -1, 772, -1, 774, -1, -1, 852, -1,
854, -1, -1, 894, -1, -1, 785, 898, -1, -1,
-1, -1, 903, 904, -1, -1, 655, -1, -1, -1,
799, 470, -1, 728, -1, 986, -1, -1, -1, 990,
-1, -1, -1, 482, -1, -1, -1, 998, -1, -1,
894, -1, 933, -1, 898, -1, 937, -1, 753, 903,
904, -1, -1, 944, -1, -1, -1, -1, -1, 950,
951, -1, -1, -1, -1, -1, -1, 772, -1, 774,
-1, -1, -1, 852, -1, 854, -1, -1, -1, 933,
785, 593, -1, 937, -1, -1, -1, -1, -1, 728,
944, -1, -1, -1, 799, 986, 950, 951, -1, 990,
-1, -1, -1, -1, -1, -1, -1, 998, -1, -1,
-1, -1, -1, -1, 753, 894, -1, -1, -1, 898,
-1, -1, -1, -1, 903, 904, -1, -1, -1, -1,
9, -1, 986, 772, -1, 774, 990, -1, -1, -1,
-1, -1, -1, 655, 998, -1, 785, 852, -1, 854,
-1, -1, -1, -1, 933, 34, 35, 36, 937, -1,
799, -1, -1, -1, -1, 944, -1, -1, -1, -1,
-1, 950, 951, -1, -1, 54, 55, 56, 57, 470,
59, 60, -1, -1, -1, -1, -1, -1, -1, 894,
-1, 482, -1, 898, -1, -1, -1, -1, 903, 904,
-1, -1, -1, -1, -1, -1, 655, 986, -1, -1,
-1, 990, -1, 852, -1, 854, 728, -1, -1, 998,
-1, -1, -1, -1, -1, -1, -1, -1, 933, -1,
-1, 110, 937, -1, -1, -1, -1, -1, -1, 944,
-1, 753, -1, -1, -1, 950, 951, 126, -1, -1,
-1, 130, -1, 132, -1, 894, -1, -1, -1, 898,
772, -1, 774, -1, 903, 904, -1, -1, -1, -1,
-1, -1, -1, 785, -1, -1, -1, -1, -1, 728,
-1, 986, -1, -1, -1, 990, -1, 799, -1, -1,
-1, -1, -1, 998, 933, -1, -1, -1, 937, -1,
-1, -1, -1, -1, 753, 944, -1, -1, -1, -1,
-1, 950, 951, -1, -1, -1, -1, -1, -1, -1,
9, -1, -1, 772, -1, 774, -1, -1, -1, 9,
-1, -1, -1, -1, -1, -1, 785, -1, -1, -1,
852, -1, 854, -1, -1, 34, 35, 986, -1, -1,
799, 990, -1, -1, 34, 35, 36, -1, -1, 998,
-1, -1, -1, -1, 655, 54, 55, 56, 57, -1,
59, 60, -1, -1, 54, 55, 56, 57, -1, 59,
60, -1, 894, -1, -1, -1, 898, -1, -1, -1,
-1, 903, 904, -1, 74, 75, 76, 77, 78, 79,
80, 81, 82, 852, -1, 854, -1, 87, 88, 89,
90, 91, 92, 93, 94, -1, -1, -1, -1, -1,
-1, 933, 9, -1, -1, 937, -1, -1, -1, 0,
1, -1, 944, -1, -1, -1, -1, 728, 950, 951,
-1, 130, -1, 132, -1, 894, -1, 34, 35, 898,
130, -1, 132, -1, 903, 904, -1, -1, -1, -1,
-1, -1, 753, -1, -1, -1, 9, 54, 55, 56,
57, -1, 59, 60, 986, -1, -1, -1, 990, -1,
-1, 772, -1, 774, 933, -1, 998, -1, 937, -1,
61, 34, 35, 36, 785, 944, -1, 14, 15, 16,
-1, 950, 951, -1, -1, -1, -1, -1, 799, 26,
-1, 54, 55, 56, 57, -1, 59, 60, -1, -1,
-1, -1, -1, 40, -1, 42, 43, -1, -1, -1,
47, -1, -1, -1, -1, -1, -1, 986, -1, -1,
-1, 990, 59, 130, -1, 132, -1, 118, -1, 998,
-1, -1, -1, 70, -1, 72, -1, 74, 75, -1,
77, 852, 79, 854, 81, -1, 83, -1, 85, -1,
87, -1, 89, -1, 91, 92, 93, 148, -1, -1,
97, -1, -1, 100, -1, -1, 103, 130, 105, 132,
-1, -1, -1, 27, 28, -1, -1, 31, 32, 33,
-1, -1, -1, 894, 121, -1, 123, 898, -1, -1,
-1, -1, 903, 904, -1, 49, 50, -1, -1, -1,
-1, -1, -1, -1, 58, 27, 28, -1, -1, 31,
32, 33, -1, -1, 151, 152, -1, 208, -1, 210,
-1, -1, 933, -1, -1, 216, 937, 49, 50, -1,
-1, -1, -1, 944, 171, -1, 58, -1, -1, 950,
951, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 110, 111, 112, 113,
114, 115, 116, 117, 118, 256, -1, -1, 259, 123,
124, -1, -1, -1, -1, 986, 213, -1, -1, 990,
217, -1, -1, -1, 275, 107, -1, 998, 110, 111,
112, 113, 114, 115, 116, 117, 118, -1, -1, -1,
-1, -1, -1, -1, -1, 296, -1, -1, 245, 246,
247, -1, -1, -1, -1, -1, -1, -1, -1, 256,
-1, -1, -1, -1, -1, 262, 263, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 279, -1, -1, -1, 283, -1, -1, 0,
1, -1, 3, 4, 5, 6, 7, 8, -1, 10,
11, 12, 13, 14, -1, 302, 303, -1, 19, 20,
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
-1, -1, -1, 34, 35, -1, 37, -1, -1, -1,
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
61, 62, 63, -1, -1, -1, -1, 68, -1, 70,
71, 72, 73, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 83, 84, 85, 86, -1, 31, 32, 33,
-1, -1, -1, -1, 95, 96, 97, 98, 99, 100,
-1, 102, -1, 104, 105, 49, 50, 108, -1, -1,
9, -1, 453, -1, 58, -1, -1, -1, -1, -1,
121, -1, 123, 124, -1, 126, 413, 128, -1, 130,
-1, -1, -1, -1, -1, 34, 35, 36, -1, -1,
481, -1, 429, -1, -1, -1, -1, -1, 489, -1,
-1, 492, -1, 494, -1, 54, 55, 56, 57, -1,
59, 60, -1, -1, -1, -1, 110, 111, 112, 113,
114, 115, 116, 117, 118, 74, 75, 76, 77, 78,
79, 80, 81, 82, -1, -1, -1, -1, 87, 88,
89, 90, 91, 92, 93, 94, -1, -1, -1, -1,
-1, 542, -1, 544, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 555, -1, -1, 504, -1, -1,
-1, 562, -1, -1, 565, 566, 513, 568, -1, -1,
571, 130, -1, 132, -1, -1, -1, 578, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 594, -1, -1, -1, -1, 545, -1,
547, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 5, -1, 7, 8, -1, 10, 11,
12, 13, -1, 570, -1, -1, -1, 19, 20, 21,
22, 23, 24, -1, 26, -1, 583, -1, 30, -1,
-1, -1, -1, -1, -1, -1, 593, -1, -1, 596,
42, -1, 44, -1, -1, 47, 48, -1, 5, -1,
52, 53, -1, -1, 11, 12, -1, -1, 669, 61,
-1, -1, -1, -1, -1, 22, 23, 24, 70, 26,
72, 73, -1, 30, -1, -1, -1, -1, -1, -1,
-1, -1, 84, -1, -1, 42, -1, 44, -1, 10,
47, 48, -1, 95, 96, 52, 53, 99, -1, 20,
21, -1, -1, -1, 61, 716, 108, -1, 665, 666,
-1, -1, -1, 724, -1, 726, -1, -1, -1, 121,
-1, -1, -1, 734, 126, -1, 128, 84, 685, 50,
-1, -1, -1, -1, -1, -1, 57, 58, 95, -1,
-1, -1, 99, 754, -1, -1, -1, -1, 759, 106,
761, 108, -1, -1, -1, -1, -1, -1, 715, -1,
-1, 718, -1, -1, 775, 722, 723, 778, 779, 780,
-1, -1, -1, 784, -1, 732, 787, 734, -1, -1,
-1, 738, 739, -1, -1, -1, -1, 744, -1, 746,
747, -1, -1, -1, -1, -1, -1, -1, -1, -1,
811, -1, -1, -1, 74, 75, 76, 77, 78, 79,
80, 81, 82, -1, 135, -1, -1, 87, 88, 89,
90, 91, 92, 93, 94, 146, -1, -1, -1, -1,
-1, -1, 153, -1, -1, 846, -1, -1, -1, 160,
-1, -1, 853, -1, -1, 856, -1, 27, 169, 170,
-1, 31, 32, 33, -1, 812, 813, -1, -1, -1,
27, 28, 132, -1, 31, 32, 33, -1, 879, 49,
50, -1, -1, -1, -1, -1, -1, -1, 58, 836,
-1, 838, 49, 50, -1, -1, -1, -1, -1, -1,
847, 58, 849, -1, 905, -1, -1, -1, -1, -1,
-1, -1, 913, 914, -1, -1, -1, -1, 919, -1,
-1, -1, -1, 870, -1, -1, 927, 928, 875, -1,
931, 878, -1, 934, 935, -1, -1, -1, 249, -1,
110, 111, 112, 113, 114, 115, 116, 117, 118, -1,
107, -1, 263, 110, 111, 112, 113, 114, 115, 116,
117, 118, -1, 274, 911, -1, 277, -1, -1, -1,
-1, -1, 973, 920, -1, 976, 923, -1, -1, -1,
-1, -1, 929, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 306, 307, -1, 9, 310,
-1, 312, -1, -1, -1, -1, -1, -1, 319, -1,
-1, -1, 323, 960, -1, -1, -1, 328, -1, -1,
-1, 332, -1, 34, 35, 336, -1, -1, -1, 340,
-1, -1, 343, -1, -1, -1, 347, -1, -1, -1,
351, -1, -1, 54, 55, 56, 57, 358, 59, 60,
-1, -1, -1, -1, -1, -1, -1, -1, 1005, 1006,
-1, -1, -1, 74, 75, 76, 77, 78, 79, 80,
81, 82, -1, -1, -1, -1, 87, 88, 89, 90,
91, 92, 93, 94, -1, 396, -1, 398, -1, -1,
401, -1, -1, 404, -1, -1, -1, -1, 409, -1,
-1, -1, -1, -1, 415, -1, -1, -1, -1, -1,
-1, 422, 423, 424, 425, 426, 427, 428, -1, 130,
-1, 132, -1, -1, -1, 436, -1, 438, -1, -1,
441, 67, 68, 69, -1, 71, 447, 73, -1, -1,
76, -1, 78, -1, 80, -1, -1, -1, 84, -1,
86, -1, -1, -1, 90, -1, -1, -1, 94, 95,
-1, -1, -1, 99, -1, 101, -1, -1, 104, -1,
-1, -1, -1, 27, 28, -1, -1, 31, 32, 33,
-1, -1, -1, 119, 120, -1, 122, -1, -1, -1,
-1, -1, -1, -1, -1, 49, 50, -1, -1, -1,
-1, -1, -1, -1, 58, -1, -1, -1, -1, -1,
-1, -1, -1, 524, 525, 526, 527, 528, 529, 530,
531, 532, 533, 534, 535, 536, 537, 538, 539, 540,
541, -1, -1, -1, -1, -1, 172, 173, 174, 175,
176, 177, 178, 179, -1, 181, 182, 558, 184, 185,
186, -1, 188, 564, 190, 191, 110, 111, 112, 113,
114, 115, 116, 117, 118, -1, -1, 203, -1, 205,
206, -1, 583, -1, -1, -1, -1, -1, -1, -1,
-1, 592, -1, -1, 220, 221, 222, 223, 224, 225,
226, 227, -1, 229, 230, 606, 232, 233, 234, -1,
236, 237, 238, -1, -1, 241, 242, 243, -1, -1,
621, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 267, 268, -1, 270, 271, -1, 5, -1, 7,
8, -1, 10, 11, 12, 13, -1, -1, -1, 660,
-1, 19, 20, 21, 22, 23, 24, 668, 26, -1,
-1, 29, 30, -1, -1, 676, 34, 35, -1, -1,
681, -1, -1, -1, 42, -1, 44, -1, -1, 47,
48, -1, -1, 51, 52, 53, -1, -1, -1, -1,
-1, -1, -1, 61, -1, -1, -1, -1, -1, -1,
-1, -1, 70, -1, 72, 73, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 84, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 95, 96, -1,
-1, 99, -1, -1, -1, 746, 104, 105, 106, 107,
108, -1, 378, -1, -1, -1, 114, 115, -1, -1,
-1, -1, -1, 121, 122, 766, -1, -1, 126, 770,
128, -1, 130, -1, -1, 776, -1, -1, -1, -1,
-1, 782, -1, -1, -1, -1, -1, 788, -1, -1,
-1, -1, -1, -1, 795, -1, -1, -1, -1, 800,
0, 1, -1, 3, 4, 5, 6, 7, 8, -1,
10, 11, 12, 13, 14, -1, -1, -1, -1, 19,
20, 21, 22, 23, 24, 25, 26, -1, -1, 830,
30, -1, -1, -1, 34, 35, -1, 37, -1, -1,
-1, -1, 42, 43, 44, 45, -1, 47, 48, -1,
-1, 51, 52, 53, -1, -1, -1, -1, 859, -1,
861, 61, 62, 63, -1, 866, -1, -1, 68, -1,
70, 71, 72, 73, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 83, 84, 85, 86, 9, -1, -1,
-1, -1, -1, -1, -1, 95, 96, 97, 98, 99,
100, -1, 102, -1, 104, 105, -1, -1, 108, -1,
-1, -1, 34, 35, 36, -1, -1, -1, -1, -1,
-1, 121, -1, 123, 124, -1, 126, -1, 128, -1,
130, -1, 54, 55, 56, 57, -1, 59, 60, -1,
-1, -1, -1, -1, -1, 946, -1, -1, -1, -1,
-1, -1, 74, 75, 76, 77, 78, 79, 80, 81,
82, -1, -1, 589, -1, 87, 88, 89, 90, 91,
92, 93, 94, -1, -1, -1, 602, -1, 1, 605,
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, -1, 30, 130, -1,
132, 34, 35, -1, 37, 38, 39, 40, 41, 42,
43, 44, 45, 46, 47, 48, -1, -1, 51, 52,
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
63, 64, 65, 66, 67, 68, -1, 70, 71, 72,
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
-1, -1, 95, 96, 97, 98, 99, 100, 101, 102,
103, 104, 105, -1, -1, 108, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 121, -1,
123, 124, -1, 126, -1, 128, 129, 130, 1, -1,
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
13, 14, -1, -1, 17, -1, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
-1, 34, 35, -1, 37, -1, -1, -1, -1, 42,
43, 44, 45, -1, 47, 48, -1, -1, 51, 52,
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
63, 64, 65, 66, 67, 68, -1, 70, 71, 72,
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
-1, -1, 95, 96, 97, 98, 99, 100, -1, 102,
-1, 104, 105, -1, -1, 108, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 121, -1,
123, 124, -1, 126, -1, 128, 1, 130, 3, 4,
5, 6, 7, 8, -1, 10, 11, 12, 13, 14,
-1, -1, 17, -1, 19, 20, 21, 22, 23, 24,
25, 26, -1, -1, -1, 30, -1, -1, -1, 34,
35, -1, 37, 38, 39, 40, -1, 42, 43, 44,
45, -1, 47, 48, -1, -1, 51, 52, 53, -1,
-1, -1, -1, -1, -1, -1, 61, 62, 63, -1,
-1, -1, -1, 68, -1, 70, 71, 72, 73, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 83, 84,
85, 86, -1, -1, -1, -1, -1, -1, -1, -1,
95, 96, 97, 98, 99, 100, -1, 102, -1, 104,
105, -1, -1, 108, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 121, -1, 123, 124,
-1, 126, -1, 128, 1, 130, 3, 4, 5, 6,
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
17, -1, 19, 20, 21, 22, 23, 24, 25, 26,
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
37, 38, 39, -1, -1, 42, 43, 44, 45, -1,
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
-1, 68, -1, 70, 71, 72, 73, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 83, 84, 85, 86,
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
97, 98, 99, 100, 101, 102, -1, 104, 105, -1,
-1, 108, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 121, -1, 123, 124, -1, 126,
-1, 128, 1, 130, 3, 4, 5, 6, 7, 8,
-1, 10, 11, 12, 13, 14, -1, -1, 17, -1,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
-1, 30, -1, -1, -1, 34, 35, -1, 37, 38,
39, 40, -1, 42, 43, 44, 45, -1, 47, 48,
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
-1, -1, 61, 62, 63, -1, -1, -1, -1, 68,
-1, 70, 71, 72, 73, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 83, 84, 85, 86, -1, -1,
-1, -1, -1, -1, -1, -1, 95, 96, 97, 98,
99, 100, -1, 102, -1, 104, 105, -1, -1, 108,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 121, -1, 123, 124, -1, 126, -1, 128,
1, 130, 3, 4, 5, 6, 7, 8, -1, 10,
11, 12, 13, 14, -1, -1, 17, -1, 19, 20,
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
-1, -1, -1, 34, 35, -1, 37, 38, 39, -1,
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
61, 62, 63, -1, -1, -1, -1, 68, -1, 70,
71, 72, 73, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 83, 84, 85, 86, -1, -1, -1, -1,
-1, -1, -1, -1, 95, 96, 97, 98, 99, 100,
101, 102, -1, 104, 105, -1, -1, 108, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
121, -1, 123, 124, -1, 126, -1, 128, 1, 130,
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
-1, 34, 35, -1, 37, -1, -1, -1, -1, 42,
43, 44, 45, -1, 47, 48, -1, -1, 51, 52,
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
63, -1, -1, -1, -1, 68, -1, 70, 71, 72,
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
-1, -1, 95, 96, 97, 98, 99, 100, -1, 102,
-1, 104, 105, -1, -1, 108, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 121, -1,
123, 124, -1, 126, -1, 128, 1, 130, 3, 4,
5, 6, 7, 8, -1, 10, 11, 12, 13, 14,
-1, -1, 17, -1, 19, 20, 21, 22, 23, 24,
25, 26, -1, -1, -1, 30, -1, -1, -1, 34,
35, -1, 37, 38, 39, 40, -1, 42, 43, 44,
45, -1, 47, 48, -1, -1, 51, 52, 53, -1,
-1, -1, -1, -1, -1, -1, 61, 62, 63, -1,
-1, -1, -1, 68, -1, 70, 71, 72, 73, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 83, 84,
85, 86, -1, -1, -1, -1, -1, -1, -1, -1,
95, 96, 97, 98, 99, 100, -1, 102, -1, 104,
105, -1, -1, 108, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 121, -1, 123, 124,
-1, 126, -1, 128, 1, 130, 3, 4, 5, 6,
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
17, -1, 19, 20, 21, 22, 23, 24, 25, 26,
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
37, 38, 39, -1, -1, 42, 43, 44, 45, -1,
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
-1, 68, -1, 70, 71, 72, 73, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 83, 84, 85, 86,
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
97, 98, 99, 100, 101, 102, -1, 104, 105, -1,
-1, 108, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 121, -1, 123, 124, -1, 126,
-1, 128, 1, 130, 3, 4, 5, 6, 7, 8,
-1, 10, 11, 12, 13, 14, -1, -1, 17, -1,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
-1, 30, -1, -1, -1, 34, 35, -1, 37, -1,
39, 40, -1, 42, 43, 44, 45, -1, 47, 48,
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
-1, -1, 61, 62, 63, -1, -1, -1, -1, 68,
-1, 70, 71, 72, 73, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 83, 84, 85, 86, -1, -1,
-1, -1, -1, -1, -1, -1, 95, 96, 97, 98,
99, 100, -1, 102, -1, 104, 105, -1, -1, 108,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 121, -1, 123, 124, -1, 126, -1, 128,
1, 130, 3, 4, 5, 6, 7, 8, -1, 10,
11, 12, 13, 14, -1, -1, 17, -1, 19, 20,
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
-1, -1, -1, 34, 35, -1, 37, -1, -1, -1,
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
61, 62, 63, -1, -1, 66, 67, 68, -1, 70,
71, 72, 73, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 83, 84, 85, 86, -1, -1, -1, -1,
-1, -1, -1, -1, 95, 96, 97, 98, 99, 100,
-1, 102, -1, 104, 105, -1, -1, 108, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
121, -1, 123, 124, -1, 126, -1, 128, 1, 130,
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
13, 14, -1, -1, 17, -1, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
-1, 34, 35, -1, 37, -1, -1, -1, -1, 42,
43, 44, 45, -1, 47, 48, -1, -1, 51, 52,
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
63, -1, -1, -1, -1, 68, -1, 70, 71, 72,
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
-1, -1, 95, 96, 97, 98, 99, 100, -1, 102,
103, 104, 105, -1, -1, 108, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 121, -1,
123, 124, -1, 126, -1, 128, 1, 130, 3, 4,
5, 6, 7, 8, -1, 10, 11, 12, 13, 14,
-1, -1, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, -1, -1, -1, 30, -1, -1, -1, 34,
35, -1, 37, -1, -1, -1, -1, 42, 43, 44,
45, -1, 47, 48, -1, -1, 51, 52, 53, -1,
-1, -1, -1, -1, -1, -1, 61, 62, 63, -1,
-1, -1, -1, 68, -1, 70, 71, 72, 73, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 83, 84,
85, 86, -1, -1, -1, -1, -1, -1, -1, -1,
95, 96, 97, 98, 99, 100, -1, 102, -1, 104,
105, -1, -1, 108, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 121, -1, 123, 124,
-1, 126, -1, 128, 1, 130, 3, 4, 5, 6,
7, 8, -1, 10, 11, 12, 13, 14, -1, -1,
17, -1, 19, 20, 21, 22, 23, 24, 25, 26,
-1, -1, -1, 30, -1, -1, -1, 34, 35, -1,
37, -1, -1, -1, 41, 42, 43, 44, 45, -1,
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
-1, -1, -1, -1, 61, 62, 63, -1, -1, -1,
-1, 68, -1, 70, 71, 72, 73, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 83, 84, 85, 86,
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
97, 98, 99, 100, -1, 102, -1, 104, 105, -1,
-1, 108, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 121, -1, 123, 124, -1, 126,
-1, 128, 1, 130, 3, 4, 5, 6, 7, 8,
-1, 10, 11, 12, 13, 14, -1, -1, 17, -1,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
-1, 30, -1, -1, -1, 34, 35, -1, 37, -1,
-1, -1, -1, 42, 43, 44, 45, 46, 47, 48,
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
-1, -1, 61, 62, 63, -1, -1, -1, -1, 68,
-1, 70, 71, 72, 73, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 83, 84, 85, 86, -1, -1,
-1, -1, -1, -1, -1, -1, 95, 96, 97, 98,
99, 100, -1, 102, -1, 104, 105, -1, -1, 108,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 121, -1, 123, 124, -1, 126, -1, 128,
1, 130, 3, 4, 5, 6, 7, 8, -1, 10,
11, 12, 13, 14, -1, -1, 17, -1, 19, 20,
21, 22, 23, 24, 25, 26, -1, -1, -1, 30,
-1, -1, -1, 34, 35, -1, 37, -1, -1, -1,
-1, 42, 43, 44, 45, -1, 47, 48, -1, -1,
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
61, 62, 63, -1, -1, -1, 67, 68, -1, 70,
71, 72, 73, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 83, 84, 85, 86, -1, -1, -1, -1,
-1, -1, -1, -1, 95, 96, 97, 98, 99, 100,
-1, 102, -1, 104, 105, -1, -1, 108, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
121, -1, 123, 124, -1, 126, -1, 128, 1, 130,
3, 4, 5, 6, 7, 8, -1, 10, 11, 12,
13, 14, -1, -1, -1, -1, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, -1, 30, -1, -1,
-1, 34, 35, -1, 37, -1, -1, -1, -1, 42,
43, 44, 45, -1, 47, 48, -1, -1, 51, 52,
53, -1, -1, -1, -1, -1, -1, -1, 61, 62,
63, -1, -1, -1, -1, 68, -1, 70, 71, 72,
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
83, 84, 85, 86, -1, -1, -1, -1, -1, -1,
-1, -1, 95, 96, 97, 98, 99, 100, -1, 102,
-1, 104, 105, -1, -1, 108, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 121, -1,
123, 124, -1, 126, -1, 128, 129, 130, 5, -1,
7, 8, -1, 10, 11, 12, 13, -1, -1, -1,
-1, -1, 19, 20, 21, 22, 23, 24, -1, 26,
-1, -1, 29, 30, -1, -1, -1, 34, 35, -1,
-1, -1, -1, -1, -1, 42, -1, 44, -1, -1,
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
-1, -1, -1, -1, 61, -1, -1, -1, -1, -1,
-1, -1, -1, 70, -1, 72, 73, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 84, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
-1, -1, 99, -1, -1, -1, -1, 104, 105, -1,
-1, 108, -1, -1, -1, -1, -1, 114, 115, -1,
-1, -1, -1, -1, 121, 122, -1, -1, 125, 126,
-1, 128, 5, 130, 7, 8, -1, 10, 11, 12,
13, -1, -1, -1, -1, -1, 19, 20, 21, 22,
23, 24, -1, 26, -1, -1, 29, 30, -1, -1,
-1, 34, 35, -1, -1, -1, -1, -1, -1, 42,
-1, 44, -1, -1, 47, 48, -1, -1, 51, 52,
53, -1, -1, -1, -1, -1, -1, -1, 61, -1,
-1, -1, -1, -1, -1, -1, -1, 70, -1, 72,
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 84, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 95, 96, -1, -1, 99, -1, -1, -1,
-1, 104, 105, 106, -1, 108, -1, -1, -1, -1,
-1, 114, 115, -1, -1, -1, -1, -1, 121, 122,
-1, -1, -1, 126, -1, 128, 5, 130, 7, 8,
-1, 10, 11, 12, 13, -1, -1, -1, -1, -1,
19, 20, 21, 22, 23, 24, -1, 26, -1, -1,
29, 30, -1, -1, -1, 34, 35, -1, -1, -1,
-1, -1, -1, 42, -1, 44, -1, -1, 47, 48,
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
-1, -1, 61, -1, -1, -1, -1, -1, -1, -1,
-1, 70, -1, 72, 73, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 84, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 95, 96, -1, -1,
99, -1, -1, -1, -1, 104, 105, 106, -1, 108,
-1, -1, -1, -1, -1, 114, 115, -1, -1, -1,
-1, -1, 121, 122, -1, -1, -1, 126, -1, 128,
5, 130, 7, 8, -1, 10, 11, 12, 13, -1,
-1, -1, -1, -1, 19, 20, 21, 22, 23, 24,
-1, 26, -1, -1, 29, 30, -1, -1, -1, 34,
35, -1, -1, -1, -1, -1, -1, 42, -1, 44,
-1, -1, 47, 48, -1, -1, 51, 52, 53, -1,
-1, -1, -1, -1, -1, -1, 61, -1, -1, -1,
-1, -1, -1, -1, -1, 70, -1, 72, 73, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 84,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
95, 96, -1, -1, 99, -1, -1, -1, -1, 104,
105, -1, -1, 108, -1, -1, -1, -1, -1, 114,
115, -1, -1, -1, -1, -1, 121, 122, -1, -1,
-1, 126, -1, 128, 5, 130, 7, 8, -1, 10,
11, 12, 13, -1, -1, -1, -1, -1, 19, 20,
21, 22, 23, 24, -1, 26, -1, -1, 29, 30,
-1, -1, -1, 34, 35, -1, -1, -1, -1, -1,
-1, 42, -1, 44, -1, -1, 47, 48, -1, -1,
51, 52, 53, -1, -1, -1, -1, -1, -1, -1,
61, -1, -1, -1, -1, -1, -1, -1, -1, 70,
-1, 72, 73, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 84, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 95, 96, -1, -1, 99, -1,
-1, -1, -1, 104, 105, -1, -1, 108, -1, -1,
-1, -1, -1, 114, 115, -1, -1, -1, -1, -1,
121, 122, -1, -1, -1, 126, -1, 128, 5, 130,
7, 8, -1, 10, 11, 12, 13, -1, -1, -1,
-1, -1, 19, 20, 21, 22, 23, 24, -1, 26,
-1, -1, 29, 30, -1, -1, -1, 34, 35, -1,
-1, -1, -1, -1, -1, 42, -1, 44, -1, -1,
47, 48, -1, -1, 51, 52, 53, -1, -1, -1,
-1, -1, -1, -1, 61, -1, -1, -1, -1, -1,
-1, -1, -1, 70, -1, 72, 73, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 84, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 95, 96,
-1, -1, 99, -1, -1, -1, -1, 104, 105, -1,
-1, 108, -1, -1, -1, -1, -1, 114, 115, -1,
-1, -1, -1, -1, 121, 122, -1, -1, -1, 126,
-1, 128, 5, 130, 7, 8, -1, 10, 11, 12,
13, -1, -1, -1, -1, -1, 19, 20, 21, 22,
23, 24, -1, 26, -1, -1, 29, 30, -1, -1,
-1, 34, 35, -1, -1, -1, -1, -1, -1, 42,
-1, 44, -1, -1, 47, 48, -1, -1, 51, 52,
53, -1, -1, -1, -1, -1, -1, -1, 61, -1,
-1, -1, -1, -1, -1, -1, -1, 70, -1, 72,
73, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 84, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 95, 96, -1, -1, 99, -1, -1, -1,
-1, 104, 105, -1, -1, 108, -1, -1, -1, -1,
-1, 114, 115, -1, -1, -1, -1, -1, 121, 122,
-1, -1, -1, 126, -1, 128, 5, 130, 7, 8,
-1, 10, 11, 12, 13, -1, -1, -1, -1, -1,
19, 20, 21, 22, 23, 24, -1, 26, -1, -1,
-1, 30, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 42, -1, 44, -1, -1, 47, 48,
-1, -1, 51, 52, 53, -1, -1, -1, -1, -1,
-1, -1, 61, -1, -1, -1, -1, 9, -1, -1,
-1, 70, -1, 72, 73, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 84, -1, -1, -1, -1,
-1, -1, 34, 35, 36, -1, 95, 96, -1, -1,
99, -1, -1, -1, -1, 104, 105, -1, -1, 108,
-1, -1, 54, 55, 56, 57, -1, 59, 60, -1,
-1, -1, 121, -1, -1, -1, -1, 126, 9, 128,
-1, 130, 74, 75, 76, 77, 78, 79, 80, 81,
82, -1, -1, -1, -1, 87, 88, 89, 90, 91,
92, 93, 94, 34, 35, 36, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 54, 55, 56, 57, -1, 59, 60,
-1, 123, 124, 125, -1, -1, -1, -1, 130, -1,
132, -1, -1, 74, 75, 76, 77, 78, 79, 80,
81, 82, -1, -1, -1, -1, 87, 88, 89, 90,
91, 92, 93, 94, -1, 5, -1, -1, -1, -1,
-1, 11, 12, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 22, 23, 24, -1, 26, -1, -1, -1,
30, -1, -1, -1, -1, -1, -1, -1, -1, 130,
-1, 132, 42, -1, 44, -1, -1, 47, 48, 5,
-1, -1, 52, 53, -1, 11, 12, -1, -1, -1,
-1, 61, -1, -1, -1, -1, 22, 23, 24, -1,
26, -1, 72, 73, 30, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 84, -1, 42, -1, 44, -1,
-1, 47, 48, -1, 5, 95, 52, 53, -1, 99,
11, 12, -1, -1, -1, 61, -1, -1, 108, -1,
-1, 22, 23, 24, -1, 26, -1, -1, -1, 30,
-1, 121, -1, -1, -1, -1, 126, -1, 84, -1,
-1, 42, -1, 44, -1, -1, 47, 48, 5, 95,
-1, 52, 53, 99, 11, 12, -1, -1, -1, -1,
61, -1, 108, -1, -1, 22, 23, 24, -1, 26,
-1, -1, -1, 30, -1, -1, -1, 123, 124, -1,
-1, -1, -1, 84, -1, 42, -1, 44, -1, -1,
47, 48, -1, 5, 95, 52, 53, -1, 99, 11,
12, -1, -1, -1, 61, -1, -1, 108, -1, -1,
22, 23, 24, -1, 26, -1, -1, -1, 30, -1,
-1, 122, -1, -1, -1, -1, -1, 84, -1, -1,
42, -1, 44, -1, -1, 47, 48, 5, 95, -1,
52, 53, 99, 11, 12, -1, -1, -1, -1, 61,
-1, 108, -1, -1, 22, 23, 24, -1, 26, -1,
-1, -1, 30, -1, -1, 122, -1, -1, -1, -1,
-1, -1, 84, -1, 42, -1, 44, -1, -1, 47,
48, -1, 5, 95, 52, 53, -1, 99, 11, 12,
-1, -1, -1, 61, -1, -1, 108, -1, -1, 22,
23, 24, -1, 26, -1, -1, -1, 30, -1, -1,
122, -1, -1, -1, -1, -1, 84, -1, -1, 42,
-1, 44, -1, -1, 47, 48, 5, 95, -1, 52,
53, 99, 11, 12, -1, -1, -1, -1, 61, -1,
108, -1, -1, 22, 23, 24, -1, 26, -1, 72,
73, 30, -1, -1, 122, -1, -1, -1, -1, -1,
-1, 84, -1, 42, -1, 44, -1, -1, 47, 48,
-1, 5, 95, 52, 53, -1, 99, 11, 12, -1,
-1, -1, 61, -1, -1, 108, -1, -1, 22, 23,
24, -1, 26, 72, 73, -1, 30, -1, 121, -1,
-1, -1, -1, -1, -1, 84, -1, -1, 42, -1,
44, -1, -1, 47, 48, 5, 95, -1, 52, 53,
99, 11, 12, -1, -1, -1, -1, 61, -1, 108,
-1, -1, 22, 23, 24, -1, 26, -1, -1, -1,
30, -1, -1, -1, -1, -1, -1, -1, -1, -1,
84, -1, 42, -1, 44, -1, -1, 47, 48, -1,
-1, 95, 52, 53, -1, 99, -1, -1, -1, -1,
-1, 61, 106, -1, 108, -1, -1, -1, 5, -1,
-1, -1, -1, -1, 11, 12, -1, -1, -1, -1,
-1, -1, -1, -1, 84, 22, 23, 24, -1, 26,
-1, -1, -1, 30, -1, 95, -1, -1, -1, 99,
-1, -1, -1, -1, -1, 42, 106, 44, 108, -1,
47, 48, 5, -1, -1, 52, 53, -1, 11, 12,
-1, -1, -1, -1, 61, -1, -1, -1, -1, 22,
23, 24, -1, 26, -1, -1, -1, 30, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 84, -1, 42,
-1, 44, -1, -1, 47, 48, -1, -1, 95, 52,
53, -1, 99, -1, -1, -1, -1, -1, 61, 106,
-1, 108, -1, -1, -1, -1, -1, -1, -1, 74,
75, 76, 77, 78, 79, 80, 81, 82, -1, -1,
-1, 84, 87, 88, 89, 90, 91, 92, 93, 94,
-1, -1, 95, -1, -1, -1, 99, -1, -1, -1,
-1, -1, -1, -1, -1, 108, -1, -1, -1, 74,
75, 76, 77, 78, 79, 80, 81, 82, -1, -1,
-1, 126, 87, 88, 89, 90, 91, 92, 93, 94,
74, 75, 76, 77, 78, 79, 80, 81, 82, -1,
-1, -1, -1, 87, 88, 89, 90, 91, 92, 93,
94, 74, 75, 76, 77, 78, 79, 80, 81, 82,
-1, 126, -1, -1, 87, 88, 89, 90, 91, 92,
93, 94, -1, -1, 72, -1, 74, 75, -1, 77,
-1, 79, 126, 81, -1, 83, -1, 85, -1, 87,
-1, 89, -1, 91, 92, 93, -1, -1, -1, 97,
-1, -1, 100, 126, -1, 103, -1, 105, -1, -1,
-1, -1, -1, 74, 75, 76, 77, 78, 79, 80,
81, 82, -1, 121, -1, 123, 87, 88, 89, 90,
91, 92, 93, 94
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */
static const yytype_uint16 yystos[] =
{
0, 1, 5, 6, 7, 8, 10, 11, 12, 13,
14, 19, 20, 21, 22, 23, 24, 25, 26, 30,
34, 35, 37, 42, 43, 44, 45, 47, 48, 51,
52, 53, 61, 62, 63, 68, 70, 71, 72, 73,
83, 84, 85, 86, 95, 96, 97, 98, 99, 100,
102, 104, 105, 108, 121, 123, 124, 126, 128, 130,
135, 136, 137, 138, 143, 150, 168, 169, 170, 171,
172, 173, 174, 175, 176, 177, 178, 179, 180, 181,
182, 183, 184, 185, 186, 187, 189, 190, 191, 192,
193, 194, 195, 196, 198, 199, 200, 201, 202, 203,
205, 210, 212, 213, 214, 215, 221, 223, 224, 226,
227, 228, 229, 230, 231, 232, 233, 234, 241, 246,
251, 252, 253, 254, 255, 267, 271, 274, 289, 290,
291, 303, 306, 308, 318, 321, 324, 336, 341, 345,
347, 354, 367, 371, 374, 374, 152, 159, 160, 36,
36, 256, 257, 126, 11, 12, 22, 23, 24, 26,
29, 30, 42, 44, 51, 53, 61, 95, 108, 114,
115, 122, 169, 170, 171, 173, 175, 178, 180, 182,
184, 186, 189, 191, 193, 198, 199, 200, 203, 204,
210, 214, 216, 217, 221, 223, 224, 225, 226, 234,
235, 236, 237, 246, 250, 251, 253, 168, 166, 168,
167, 168, 159, 153, 217, 217, 307, 272, 159, 168,
169, 170, 171, 173, 175, 178, 180, 182, 184, 186,
189, 191, 193, 198, 199, 200, 203, 210, 214, 220,
221, 246, 251, 253, 36, 268, 259, 155, 355, 151,
159, 191, 193, 366, 10, 168, 168, 128, 168, 280,
19, 158, 242, 69, 368, 168, 191, 193, 198, 200,
210, 251, 332, 333, 346, 217, 12, 126, 251, 122,
250, 106, 107, 122, 188, 207, 208, 209, 217, 219,
240, 168, 191, 193, 211, 0, 1, 137, 138, 150,
274, 374, 3, 4, 36, 126, 9, 132, 238, 239,
9, 238, 9, 238, 168, 191, 193, 197, 251, 9,
36, 238, 197, 9, 36, 238, 197, 197, 9, 36,
238, 197, 9, 36, 238, 197, 9, 36, 238, 197,
9, 36, 197, 9, 36, 238, 197, 9, 238, 197,
251, 9, 36, 126, 159, 238, 197, 251, 9, 36,
126, 159, 238, 197, 251, 8, 10, 168, 172, 173,
174, 175, 176, 177, 178, 179, 180, 181, 182, 183,
184, 185, 186, 187, 190, 191, 192, 193, 194, 197,
246, 251, 252, 253, 254, 197, 9, 238, 9, 159,
238, 9, 36, 197, 9, 36, 159, 238, 197, 9,
36, 126, 238, 130, 197, 9, 36, 159, 238, 197,
34, 35, 54, 55, 56, 57, 59, 60, 110, 130,
222, 159, 159, 159, 159, 159, 247, 374, 9, 36,
238, 9, 36, 159, 238, 197, 251, 9, 36, 159,
238, 197, 159, 15, 16, 17, 18, 294, 296, 301,
302, 1, 12, 25, 26, 137, 150, 161, 162, 163,
164, 274, 374, 17, 38, 39, 40, 304, 305, 309,
314, 250, 164, 17, 101, 342, 343, 344, 159, 217,
374, 168, 260, 263, 260, 217, 217, 217, 217, 168,
202, 74, 75, 76, 77, 78, 79, 80, 81, 82,
87, 88, 89, 90, 91, 92, 93, 94, 147, 148,
147, 147, 147, 147, 27, 28, 31, 32, 33, 49,
50, 58, 110, 111, 112, 113, 114, 115, 116, 117,
118, 125, 292, 147, 157, 125, 374, 125, 374, 191,
261, 262, 263, 374, 168, 273, 9, 110, 328, 195,
168, 269, 273, 261, 69, 360, 217, 368, 19, 126,
276, 168, 374, 145, 147, 126, 374, 114, 127, 106,
168, 243, 244, 125, 168, 204, 208, 216, 217, 251,
369, 370, 52, 125, 217, 374, 258, 168, 127, 129,
168, 191, 198, 200, 202, 210, 125, 129, 107, 125,
129, 374, 168, 168, 206, 209, 217, 217, 106, 217,
218, 125, 131, 217, 217, 217, 217, 217, 217, 217,
217, 217, 217, 217, 206, 217, 206, 217, 217, 217,
217, 217, 206, 211, 217, 217, 217, 217, 217, 217,
217, 217, 211, 217, 245, 249, 217, 217, 217, 374,
297, 301, 16, 294, 301, 3, 4, 161, 310, 315,
38, 304, 314, 39, 304, 374, 38, 39, 348, 351,
374, 132, 145, 265, 266, 125, 374, 374, 125, 168,
168, 217, 217, 217, 217, 217, 217, 217, 217, 217,
217, 217, 217, 217, 217, 217, 217, 217, 217, 374,
374, 168, 168, 145, 265, 125, 154, 145, 125, 374,
217, 145, 52, 125, 270, 374, 156, 217, 374, 374,
122, 374, 275, 168, 279, 280, 282, 374, 277, 281,
19, 374, 145, 133, 125, 370, 125, 122, 217, 334,
335, 332, 374, 372, 260, 127, 217, 219, 209, 139,
141, 140, 142, 125, 127, 218, 132, 127, 127, 127,
125, 248, 164, 165, 295, 250, 299, 301, 168, 168,
250, 374, 312, 304, 317, 319, 217, 352, 38, 343,
351, 217, 264, 146, 148, 125, 131, 263, 207, 293,
9, 146, 262, 374, 168, 325, 168, 168, 374, 374,
165, 19, 84, 122, 168, 284, 287, 288, 283, 280,
282, 374, 168, 278, 282, 284, 106, 168, 370, 168,
125, 337, 165, 374, 107, 374, 126, 374, 126, 209,
218, 217, 129, 129, 165, 374, 250, 126, 374, 126,
374, 374, 316, 250, 374, 165, 349, 374, 217, 9,
217, 132, 125, 165, 217, 145, 47, 145, 356, 374,
122, 168, 168, 145, 127, 125, 125, 145, 125, 129,
127, 145, 334, 99, 340, 17, 103, 373, 219, 106,
144, 149, 168, 144, 298, 374, 144, 144, 311, 165,
374, 165, 320, 374, 353, 350, 217, 217, 207, 250,
64, 65, 363, 364, 365, 168, 145, 126, 145, 145,
122, 168, 288, 84, 282, 374, 145, 338, 127, 125,
145, 127, 165, 300, 127, 127, 165, 313, 17, 41,
322, 323, 165, 165, 374, 127, 48, 329, 168, 357,
374, 374, 126, 145, 219, 285, 286, 374, 168, 145,
122, 168, 374, 374, 106, 168, 374, 165, 374, 374,
165, 165, 250, 326, 66, 361, 362, 165, 165, 285,
125, 127, 126, 145, 168, 145, 339, 145, 374, 358,
374, 127, 286, 285, 126, 145, 165, 330, 327, 17,
67, 359, 165, 127, 285, 17, 46, 331, 330, 127,
168, 168
};
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYEMPTY (-2)
#define YYEOF 0
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
/* Like YYERROR except do call yyerror. This remains here temporarily
to ease the transition to the new meaning of YYERROR, for GCC.
Once GCC version 2 has supplanted version 1, this can go. */
#define YYFAIL goto yyerrlab
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY && yylen == 1) \
{ \
yychar = (Token); \
yylval = (Value); \
yytoken = YYTRANSLATE (yychar); \
YYPOPSTACK (1); \
goto yybackup; \
} \
else \
{ \
yyerror (pComp, YY_("syntax error: cannot back up")); \
YYERROR; \
} \
while (YYID (0))
#define YYTERROR 1
#define YYERRCODE 256
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
If N is 0, then set CURRENT to the empty location which ends
the previous symbol: RHS[0] (always defined). */
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
#ifndef YYLLOC_DEFAULT
# define YYLLOC_DEFAULT(Current, Rhs, N) \
do \
if (YYID (N)) \
{ \
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
} \
else \
{ \
(Current).first_line = (Current).last_line = \
YYRHSLOC (Rhs, 0).last_line; \
(Current).first_column = (Current).last_column = \
YYRHSLOC (Rhs, 0).last_column; \
} \
while (YYID (0))
#endif
/* YY_LOCATION_PRINT -- Print the location on the stream.
This macro was not mandated originally: define only if we know
we won't break user code: when these are the locations we know. */
#ifndef YY_LOCATION_PRINT
# if YYLTYPE_IS_TRIVIAL
# define YY_LOCATION_PRINT(File, Loc) \
fprintf (File, "%d.%d-%d.%d", \
(Loc).first_line, (Loc).first_column, \
(Loc).last_line, (Loc).last_column)
# else
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
# endif
#endif
/* YYLEX -- calling `yylex' with the right arguments. */
#ifdef YYLEX_PARAM
# define YYLEX yylex (&yylval, YYLEX_PARAM)
#else
# define YYLEX yylex (&yylval, pComp)
#endif
/* Enable debugging if requested. */
#if YYDEBUG
# ifndef YYFPRINTF
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
# define YYFPRINTF fprintf
# endif
# define YYDPRINTF(Args) \
do { \
if (yydebug) \
YYFPRINTF Args; \
} while (YYID (0))
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Type, Value, pComp); \
YYFPRINTF (stderr, "\n"); \
} \
} while (YYID (0))
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, HB_COMP_PTR pComp)
#else
static void
yy_symbol_value_print (yyoutput, yytype, yyvaluep, pComp)
FILE *yyoutput;
int yytype;
YYSTYPE const * const yyvaluep;
HB_COMP_PTR pComp;
#endif
{
if (!yyvaluep)
return;
YYUSE (pComp);
# ifdef YYPRINT
if (yytype < YYNTOKENS)
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
# else
YYUSE (yyoutput);
# endif
switch (yytype)
{
default:
break;
}
}
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, HB_COMP_PTR pComp)
#else
static void
yy_symbol_print (yyoutput, yytype, yyvaluep, pComp)
FILE *yyoutput;
int yytype;
YYSTYPE const * const yyvaluep;
HB_COMP_PTR pComp;
#endif
{
if (yytype < YYNTOKENS)
YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
else
YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
yy_symbol_value_print (yyoutput, yytype, yyvaluep, pComp);
YYFPRINTF (yyoutput, ")");
}
/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`------------------------------------------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_stack_print (yytype_int16 *bottom, yytype_int16 *top)
#else
static void
yy_stack_print (bottom, top)
yytype_int16 *bottom;
yytype_int16 *top;
#endif
{
YYFPRINTF (stderr, "Stack now");
for (; bottom <= top; ++bottom)
YYFPRINTF (stderr, " %d", *bottom);
YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
do { \
if (yydebug) \
yy_stack_print ((Bottom), (Top)); \
} while (YYID (0))
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_reduce_print (YYSTYPE *yyvsp, int yyrule, HB_COMP_PTR pComp)
#else
static void
yy_reduce_print (yyvsp, yyrule, pComp)
YYSTYPE *yyvsp;
int yyrule;
HB_COMP_PTR pComp;
#endif
{
int yynrhs = yyr2[yyrule];
int yyi;
unsigned long int yylno = yyrline[yyrule];
YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
yyrule - 1, yylno);
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
fprintf (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
&(yyvsp[(yyi + 1) - (yynrhs)])
, pComp);
fprintf (stderr, "\n");
}
}
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug) \
yy_reduce_print (yyvsp, Rule, pComp); \
} while (YYID (0))
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args)
# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !YYDEBUG */
/* YYINITDEPTH -- initial size of the parser's stacks. */
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
if the built-in stack extension method is used).
Do not make this value too large; the results are undefined if
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
evaluated with infinite-precision integer arithmetic. */
#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif
#if YYERROR_VERBOSE
# ifndef yystrlen
# if defined __GLIBC__ && defined _STRING_H
# define yystrlen strlen
# else
/* Return the length of YYSTR. */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static YYSIZE_T
yystrlen (const char *yystr)
#else
static YYSIZE_T
yystrlen (yystr)
const char *yystr;
#endif
{
YYSIZE_T yylen;
for (yylen = 0; yystr[yylen]; yylen++)
continue;
return yylen;
}
# endif
# endif
# ifndef yystpcpy
# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
# define yystpcpy stpcpy
# else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
YYDEST. */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static char *
yystpcpy (char *yydest, const char *yysrc)
#else
static char *
yystpcpy (yydest, yysrc)
char *yydest;
const char *yysrc;
#endif
{
char *yyd = yydest;
const char *yys = yysrc;
while ((*yyd++ = *yys++) != '\0')
continue;
return yyd - 1;
}
# endif
# endif
# ifndef yytnamerr
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
quotes and backslashes, so that it's suitable for yyerror. The
heuristic is that double-quoting is unnecessary unless the string
contains an apostrophe, a comma, or backslash (other than
backslash-backslash). YYSTR is taken from yytname. If YYRES is
null, do not copy; instead, return the length of what the result
would have been. */
static YYSIZE_T
yytnamerr (char *yyres, const char *yystr)
{
if (*yystr == '"')
{
YYSIZE_T yyn = 0;
char const *yyp = yystr;
for (;;)
switch (*++yyp)
{
case '\'':
case ',':
goto do_not_strip_quotes;
case '\\':
if (*++yyp != '\\')
goto do_not_strip_quotes;
/* Fall through. */
default:
if (yyres)
yyres[yyn] = *yyp;
yyn++;
break;
case '"':
if (yyres)
yyres[yyn] = '\0';
return yyn;
}
do_not_strip_quotes: ;
}
if (! yyres)
return yystrlen (yystr);
return yystpcpy (yyres, yystr) - yyres;
}
# endif
/* Copy into YYRESULT an error message about the unexpected token
YYCHAR while in state YYSTATE. Return the number of bytes copied,
including the terminating null byte. If YYRESULT is null, do not
copy anything; just return the number of bytes that would be
copied. As a special case, return 0 if an ordinary "syntax error"
message will do. Return YYSIZE_MAXIMUM if overflow occurs during
size calculation. */
static YYSIZE_T
yysyntax_error (char *yyresult, int yystate, int yychar)
{
int yyn = yypact[yystate];
if (! (YYPACT_NINF < yyn && yyn <= YYLAST))
return 0;
else
{
int yytype = YYTRANSLATE (yychar);
YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);
YYSIZE_T yysize = yysize0;
YYSIZE_T yysize1;
int yysize_overflow = 0;
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
int yyx;
# if 0
/* This is so xgettext sees the translatable formats that are
constructed on the fly. */
YY_("syntax error, unexpected %s");
YY_("syntax error, unexpected %s, expecting %s");
YY_("syntax error, unexpected %s, expecting %s or %s");
YY_("syntax error, unexpected %s, expecting %s or %s or %s");
YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");
# endif
char *yyfmt;
char const *yyf;
static char const yyunexpected[] = "syntax error, unexpected %s";
static char const yyexpecting[] = ", expecting %s";
static char const yyor[] = " or %s";
char yyformat[sizeof yyunexpected
+ sizeof yyexpecting - 1
+ ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)
* (sizeof yyor - 1))];
char const *yyprefix = yyexpecting;
/* Start YYX at -YYN if negative to avoid negative indexes in
YYCHECK. */
int yyxbegin = yyn < 0 ? -yyn : 0;
/* Stay within bounds of both yycheck and yytname. */
int yychecklim = YYLAST - yyn + 1;
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
int yycount = 1;
yyarg[0] = yytname[yytype];
yyfmt = yystpcpy (yyformat, yyunexpected);
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)
{
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
{
yycount = 1;
yysize = yysize0;
yyformat[sizeof yyunexpected - 1] = '\0';
break;
}
yyarg[yycount++] = yytname[yyx];
yysize1 = yysize + yytnamerr (0, yytname[yyx]);
yysize_overflow |= (yysize1 < yysize);
yysize = yysize1;
yyfmt = yystpcpy (yyfmt, yyprefix);
yyprefix = yyor;
}
yyf = YY_(yyformat);
yysize1 = yysize + yystrlen (yyf);
yysize_overflow |= (yysize1 < yysize);
yysize = yysize1;
if (yysize_overflow)
return YYSIZE_MAXIMUM;
if (yyresult)
{
/* Avoid sprintf, as that infringes on the user's name space.
Don't have undefined behavior even if the translation
produced a string with the wrong number of "%s"s. */
char *yyp = yyresult;
int yyi = 0;
while ((*yyp = *yyf) != '\0')
{
if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)
{
yyp += yytnamerr (yyp, yyarg[yyi++]);
yyf += 2;
}
else
{
yyp++;
yyf++;
}
}
}
return yysize;
}
}
#endif /* YYERROR_VERBOSE */
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, HB_COMP_PTR pComp)
#else
static void
yydestruct (yymsg, yytype, yyvaluep, pComp)
const char *yymsg;
int yytype;
YYSTYPE *yyvaluep;
HB_COMP_PTR pComp;
#endif
{
YYUSE (yyvaluep);
YYUSE (pComp);
if (!yymsg)
yymsg = "Deleting";
YYUSE (yymsg);
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
switch (yytype)
{
case 19: /* "LITERAL" */
#line 281 "harbour.y"
{ if( (yyvaluep->valChar).dealloc ) hb_xfree( (yyvaluep->valChar).string ); };
#line 4005 "harboury.c"
break;
case 96: /* "CBSTART" */
#line 280 "harbour.y"
{ if( (yyvaluep->asCodeblock).string ) hb_xfree( (yyvaluep->asCodeblock).string ); };
#line 4010 "harboury.c"
break;
default:
break;
}
}
/* Prevent warnings from -Wmissing-prototypes. */
#ifdef YYPARSE_PARAM
#if defined __STDC__ || defined __cplusplus
int yyparse (void *YYPARSE_PARAM);
#else
int yyparse ();
#endif
#else /* ! YYPARSE_PARAM */
#if defined __STDC__ || defined __cplusplus
int yyparse (HB_COMP_PTR pComp);
#else
int yyparse ();
#endif
#endif /* ! YYPARSE_PARAM */
/*----------.
| yyparse. |
`----------*/
#ifdef YYPARSE_PARAM
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
int
yyparse (void *YYPARSE_PARAM)
#else
int
yyparse (YYPARSE_PARAM)
void *YYPARSE_PARAM;
#endif
#else /* ! YYPARSE_PARAM */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
int
yyparse (HB_COMP_PTR pComp)
#else
int
yyparse (pComp)
HB_COMP_PTR pComp;
#endif
#endif
{
/* The look-ahead symbol. */
int yychar;
/* The semantic value of the look-ahead symbol. */
YYSTYPE yylval;
/* Number of syntax errors so far. */
int yynerrs;
int yystate;
int yyn;
int yyresult;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus;
/* Look-ahead token as an internal (translated) token number. */
int yytoken = 0;
#if YYERROR_VERBOSE
/* Buffer for error messages, and its allocated size. */
char yymsgbuf[128];
char *yymsg = yymsgbuf;
YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
#endif
/* Three stacks and their tools:
`yyss': related to states,
`yyvs': related to semantic values,
`yyls': related to locations.
Refer to the stacks thru separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
yytype_int16 yyssa[YYINITDEPTH];
yytype_int16 *yyss = yyssa;
yytype_int16 *yyssp;
/* The semantic value stack. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs = yyvsa;
YYSTYPE *yyvsp;
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
YYSIZE_T yystacksize = YYINITDEPTH;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
YYDPRINTF ((stderr, "Starting parse\n"));
yystate = 0;
yyerrstatus = 0;
yynerrs = 0;
yychar = YYEMPTY; /* Cause a token to be read. */
/* Initialize stack pointers.
Waste one element of value and location stack
so that they stay on the same level as the state stack.
The wasted elements are never initialized. */
yyssp = yyss;
yyvsp = yyvs;
goto yysetstate;
/*------------------------------------------------------------.
| yynewstate -- Push a new state, which is found in yystate. |
`------------------------------------------------------------*/
yynewstate:
/* In all cases, when you get here, the value and location stacks
have just been pushed. So pushing a state here evens the stacks. */
yyssp++;
yysetstate:
*yyssp = yystate;
if (yyss + yystacksize - 1 <= yyssp)
{
/* Get the current used size of the three stacks, in elements. */
YYSIZE_T yysize = yyssp - yyss + 1;
#ifdef yyoverflow
{
/* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into
memory. */
YYSTYPE *yyvs1 = yyvs;
yytype_int16 *yyss1 = yyss;
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might
be undefined if yyoverflow is a macro. */
yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * sizeof (*yyssp),
&yyvs1, yysize * sizeof (*yyvsp),
&yystacksize);
yyss = yyss1;
yyvs = yyvs1;
}
#else /* no yyoverflow */
# ifndef YYSTACK_RELOCATE
goto yyexhaustedlab;
# else
/* Extend the stack our own way. */
if (YYMAXDEPTH <= yystacksize)
goto yyexhaustedlab;
yystacksize *= 2;
if (YYMAXDEPTH < yystacksize)
yystacksize = YYMAXDEPTH;
{
yytype_int16 *yyss1 = yyss;
union yyalloc *yyptr =
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
if (! yyptr)
goto yyexhaustedlab;
YYSTACK_RELOCATE (yyss);
YYSTACK_RELOCATE (yyvs);
YYUSE (yyptr);
# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
}
# endif
#endif /* no yyoverflow */
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
YYDPRINTF ((stderr, "Stack size increased to %lu\n",
(unsigned long int) yystacksize));
if (yyss + yystacksize - 1 <= yyssp)
YYABORT;
}
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
goto yybackup;
/*-----------.
| yybackup. |
`-----------*/
yybackup:
/* Do appropriate processing given the current state. Read a
look-ahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to look-ahead token. */
yyn = yypact[yystate];
if (yyn == YYPACT_NINF)
goto yydefault;
/* Not known => get a look-ahead token if don't already have one. */
/* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */
if (yychar == YYEMPTY)
{
YYDPRINTF ((stderr, "Reading a token: "));
yychar = YYLEX;
}
if (yychar <= YYEOF)
{
yychar = yytoken = YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else
{
yytoken = YYTRANSLATE (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
goto yydefault;
yyn = yytable[yyn];
if (yyn <= 0)
{
if (yyn == 0 || yyn == YYTABLE_NINF)
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
if (yyn == YYFINAL)
YYACCEPT;
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the look-ahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
/* Discard the shifted token unless it is eof. */
if (yychar != YYEOF)
yychar = YYEMPTY;
yystate = yyn;
*++yyvsp = yylval;
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
goto yyreduce;
/*-----------------------------.
| yyreduce -- Do a reduction. |
`-----------------------------*/
yyreduce:
/* yyn is the number of a rule to reduce with. */
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
`$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
yyval = yyvsp[1-yylen];
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
case 9:
#line 294 "harbour.y"
{ yyclearin; yyerrok; ;}
break;
case 15:
#line 300 "harbour.y"
{ yyclearin; yyerrok; ;}
break;
case 16:
#line 304 "harbour.y"
{ HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(3) - (4)].valChar).string, (yyvsp[(3) - (4)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC );
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(2) - (4)].valLong).lNumber;
HB_COMP_PARAM->pLex->fEol = FALSE;
(yyvsp[(3) - (4)].valChar).dealloc = FALSE; ;}
break;
case 17:
#line 309 "harbour.y"
{ HB_COMP_PARAM->currModule = hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(5) - (6)].valChar).string, (yyvsp[(5) - (6)].valChar).dealloc ? HB_IDENT_FREE : HB_IDENT_STATIC );
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(2) - (6)].valLong).lNumber;
HB_COMP_PARAM->pLex->fEol = FALSE;
if( (yyvsp[(3) - (6)].valChar).dealloc ) { hb_xfree( (yyvsp[(3) - (6)].valChar).string ); (yyvsp[(3) - (6)].valChar).dealloc = FALSE; }
(yyvsp[(5) - (6)].valChar).dealloc = FALSE; ;}
break;
case 18:
#line 316 "harbour.y"
{ hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); ;}
break;
case 20:
#line 317 "harbour.y"
{ hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); ;}
break;
case 22:
#line 318 "harbour.y"
{ hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); HB_COMP_PARAM->iVarScope = VS_PARAMETER; ;}
break;
case 24:
#line 319 "harbour.y"
{ hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); HB_COMP_PARAM->iVarScope = VS_PARAMETER;;}
break;
case 26:
#line 322 "harbour.y"
{ (yyval.iNumber) = HB_FS_PUBLIC; ;}
break;
case 27:
#line 323 "harbour.y"
{ (yyval.iNumber) = HB_FS_STATIC; ;}
break;
case 28:
#line 324 "harbour.y"
{ (yyval.iNumber) = HB_FS_INIT; ;}
break;
case 29:
#line 325 "harbour.y"
{ (yyval.iNumber) = HB_FS_EXIT; ;}
break;
case 30:
#line 328 "harbour.y"
{ (yyval.iNumber) = 0; ;}
break;
case 31:
#line 329 "harbour.y"
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = 0; ;}
break;
case 33:
#line 331 "harbour.y"
{ HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = (yyvsp[(1) - (3)].iNumber); ;}
break;
case 34:
#line 334 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;}
break;
case 36:
#line 338 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;}
break;
case 38:
#line 342 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'N', NULL ); ;}
break;
case 39:
#line 343 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'C', NULL ); ;}
break;
case 40:
#line 344 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'D', NULL ); ;}
break;
case 41:
#line 345 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'L', NULL ); ;}
break;
case 42:
#line 346 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'B', NULL ); ;}
break;
case 43:
#line 347 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'O', NULL ); ;}
break;
case 44:
#line 348 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'S', (yyvsp[(2) - (2)].string) ); ;}
break;
case 45:
#line 349 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;}
break;
case 47:
#line 353 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ); ;}
break;
case 48:
#line 354 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'n', NULL ); ;}
break;
case 49:
#line 355 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'c', NULL ); ;}
break;
case 50:
#line 356 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'd', NULL ); ;}
break;
case 51:
#line 357 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'l', NULL ); ;}
break;
case 52:
#line 358 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'a', NULL ); ;}
break;
case 53:
#line 359 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'b', NULL ); ;}
break;
case 54:
#line 360 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'o', NULL ); ;}
break;
case 55:
#line 361 "harbour.y"
{ (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 's', (yyvsp[(2) - (2)].string) ); ;}
break;
case 56:
#line 364 "harbour.y"
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); (yyval.iNumber) = 1; ;}
break;
case 57:
#line 365 "harbour.y"
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); (yyval.iNumber)++; ;}
break;
case 59:
#line 374 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 60:
#line 375 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 61:
#line 376 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 62:
#line 377 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 63:
#line 378 "harbour.y"
{ if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) )
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) );
else
HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) );
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN;
;}
break;
case 64:
#line 384 "harbour.y"
{ if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) )
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) );
else
HB_COMP_EXPR_DELETE( HB_COMP_ERROR_SYNTAX( (yyvsp[(1) - (2)].asExpr) ) );
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN;
;}
break;
case 65:
#line 390 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 66:
#line 391 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 67:
#line 392 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 68:
#line 393 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 69:
#line 394 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 70:
#line 395 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 71:
#line 396 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 72:
#line 397 "harbour.y"
{ hb_compGenBreak( HB_COMP_PARAM ); hb_compGenPCode2( HB_P_DOSHORT, 0, HB_COMP_PARAM );
HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;}
break;
case 73:
#line 399 "harbour.y"
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
break;
case 74:
#line 400 "harbour.y"
{
hb_compGenBreak( HB_COMP_PARAM ); HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
hb_compGenPCode2( HB_P_DOSHORT, 1, HB_COMP_PARAM );
HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE;
;}
break;
case 75:
#line 405 "harbour.y"
{ hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;}
break;
case 76:
#line 406 "harbour.y"
{ hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->funFlags |= FUN_BREAK_CODE; ;}
break;
case 77:
#line 407 "harbour.y"
{
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL );
}
hb_compGenPCode1( HB_P_ENDPROC, HB_COMP_PARAM );
if( (HB_COMP_PARAM->functions.pLast->funFlags & FUN_PROCEDURE) == 0 )
{ /* return from a function without a return value */
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_NO_RETURN_VALUE, NULL, NULL );
}
HB_COMP_PARAM->functions.pLast->funFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE;
;}
break;
case 78:
#line 419 "harbour.y"
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
break;
case 79:
#line 421 "harbour.y"
{
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL );
}
/* TODO: check if return value agree with declared value */
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK )
/* extended clodeblock, use HB_P_ENDBLOCK to return value and stop execution */
hb_compGenPCode1( HB_P_ENDBLOCK, HB_COMP_PARAM );
else
hb_compGenPCode2( HB_P_RETVALUE, HB_P_ENDPROC, HB_COMP_PARAM );
if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_PROCEDURE )
{ /* procedure returns a value */
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_PROC_RETURN_VALUE, NULL, NULL );
}
HB_COMP_PARAM->functions.pLast->funFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE;
;}
break;
case 80:
#line 439 "harbour.y"
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PUBLIC; ;}
break;
case 81:
#line 441 "harbour.y"
{ hb_compRTVariableGen( HB_COMP_PARAM, "__MVPUBLIC" );
HB_COMP_PARAM->iVarScope = VS_NONE;
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN;
;}
break;
case 83:
#line 445 "harbour.y"
{ hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PRIVATE; ;}
break;
case 84:
#line 447 "harbour.y"
{ hb_compRTVariableGen( HB_COMP_PARAM, "__MVPRIVATE" );
HB_COMP_PARAM->iVarScope = VS_NONE;
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN;
;}
break;
case 91:
#line 456 "harbour.y"
{
if( HB_COMP_PARAM->szAnnounce == NULL )
{
/* check for reserved name
* NOTE: Clipper doesn't check for it
*/
const char * szFunction = hb_compReservedName( (yyvsp[(2) - (2)].string) );
if( szFunction )
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FUNC_RESERVED, szFunction, (yyvsp[(2) - (2)].string) );
HB_COMP_PARAM->szAnnounce = (yyvsp[(2) - (2)].string);
}
else
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_DUPL_ANNOUNCE, (yyvsp[(2) - (2)].string), NULL );
;}
break;
case 93:
#line 470 "harbour.y"
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN; ;}
break;
case 94:
#line 473 "harbour.y"
{
if( (yyvsp[(1) - (1)].valChar).dealloc )
{
(yyvsp[(1) - (1)].valChar).string = ( char * ) hb_compIdentifierNew( HB_COMP_PARAM, (yyvsp[(1) - (1)].valChar).string, HB_IDENT_FREE );
(yyvsp[(1) - (1)].valChar).dealloc = FALSE;
}
hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].valChar).string );
;}
break;
case 95:
#line 481 "harbour.y"
{
{
char szFileName[ HB_PATH_MAX ];
hb_strncat( hb_strncpy( szFileName, (yyvsp[(1) - (3)].valChar).string, sizeof( szFileName ) - 1 ), (yyvsp[(3) - (3)].valChar).string, sizeof( szFileName ) - 1 );
hb_compAutoOpenAdd( HB_COMP_PARAM, hb_compIdentifierNew( HB_COMP_PARAM, szFileName, HB_IDENT_COPY ) );
if( (yyvsp[(1) - (3)].valChar).dealloc )
{
hb_xfree( (yyvsp[(1) - (3)].valChar).string );
(yyvsp[(1) - (3)].valChar).dealloc = FALSE;
}
if( (yyvsp[(3) - (3)].valChar).dealloc )
{
hb_xfree( (yyvsp[(3) - (3)].valChar).string );
(yyvsp[(3) - (3)].valChar).dealloc = FALSE;
}
}
;}
break;
case 96:
#line 500 "harbour.y"
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
break;
case 98:
#line 503 "harbour.y"
{ (yyval.lNumber) = 0; ;}
break;
case 99:
#line 504 "harbour.y"
{ (yyval.lNumber) = 1; ;}
break;
case 100:
#line 505 "harbour.y"
{ (yyval.lNumber) = 1; ;}
break;
case 101:
#line 506 "harbour.y"
{ (yyval.lNumber) = 0; ;}
break;
case 102:
#line 507 "harbour.y"
{ (yyval.lNumber) = 0; hb_compCheckUnclosedStru( HB_COMP_PARAM, HB_COMP_PARAM->functions.pLast ); ;}
break;
case 103:
#line 508 "harbour.y"
{ if( HB_COMP_PARAM->ilastLineErr && HB_COMP_PARAM->ilastLineErr == HB_COMP_PARAM->currLine )
{
yyclearin;
}
else
{
yyerrok;
HB_COMP_PARAM->ilastLineErr = HB_COMP_PARAM->currLine;
}
(yyval.lNumber) = 0;
;}
break;
case 113:
#line 534 "harbour.y"
{ (yyval.lNumber) += (yyvsp[(2) - (2)].lNumber); ;}
break;
case 114:
#line 537 "harbour.y"
{ (yyval.lNumber) = 0; ;}
break;
case 116:
#line 541 "harbour.y"
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), 0 ); ;}
break;
case 117:
#line 542 "harbour.y"
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), 0 ); ;}
break;
case 118:
#line 545 "harbour.y"
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(1) - (1)].string), HB_FS_DEFERRED ); ;}
break;
case 119:
#line 546 "harbour.y"
{ hb_compExternAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), HB_FS_DEFERRED ); ;}
break;
case 121:
#line 550 "harbour.y"
{ (yyval.string) = ( char * ) "STEP"; ;}
break;
case 122:
#line 551 "harbour.y"
{ (yyval.string) = ( char * ) "TO"; ;}
break;
case 123:
#line 552 "harbour.y"
{ (yyval.string) = ( char * ) "LOOP"; ;}
break;
case 124:
#line 553 "harbour.y"
{ (yyval.string) = ( char * ) "EXIT"; ;}
break;
case 125:
#line 554 "harbour.y"
{ (yyval.string) = ( char * ) "IN"; ;}
break;
case 126:
#line 555 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 127:
#line 556 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 128:
#line 557 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 129:
#line 558 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 130:
#line 559 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 131:
#line 560 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 132:
#line 561 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 133:
#line 562 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 134:
#line 563 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 135:
#line 564 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 136:
#line 565 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 137:
#line 566 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 138:
#line 567 "harbour.y"
{ (yyval.string) = (yyvsp[(1) - (1)].string); ;}
break;
case 139:
#line 572 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewDouble( (yyvsp[(1) - (1)].valDouble).dNumber, (yyvsp[(1) - (1)].valDouble).bWidth, (yyvsp[(1) - (1)].valDouble).bDec, HB_COMP_PARAM ); ;}
break;
case 140:
#line 573 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
break;
case 141:
#line 576 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewDate( ( LONG ) (yyvsp[(1) - (1)].valLong).lNumber, HB_COMP_PARAM ); ;}
break;
case 142:
#line 579 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewTimeStamp( (yyvsp[(1) - (1)].valTimeStamp).date, (yyvsp[(1) - (1)].valTimeStamp).time, HB_COMP_PARAM ); ;}
break;
case 143:
#line 582 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewLong( (yyvsp[(1) - (2)].valLong).lNumber, HB_COMP_PARAM ); ;}
break;
case 144:
#line 583 "harbour.y"
{ (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, hb_compExprNewDouble( (yyvsp[(1) - (2)].valDouble).dNumber, (yyvsp[(1) - (2)].valDouble).bWidth, (yyvsp[(1) - (2)].valDouble).bDec, HB_COMP_PARAM ) ); ;}
break;
case 145:
#line 588 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewNil( HB_COMP_PARAM ); ;}
break;
case 147:
#line 596 "harbour.y"
{
(yyval.asExpr) = hb_compExprNewString( (yyvsp[(1) - (1)].valChar).string, (yyvsp[(1) - (1)].valChar).length, (yyvsp[(1) - (1)].valChar).dealloc, HB_COMP_PARAM );
(yyvsp[(1) - (1)].valChar).dealloc = FALSE;
;}
break;
case 150:
#line 612 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewLogical( TRUE, HB_COMP_PARAM ); ;}
break;
case 151:
#line 613 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewLogical( FALSE, HB_COMP_PARAM ); ;}
break;
case 153:
#line 621 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewSelf( HB_COMP_PARAM ); ;}
break;
case 155:
#line 635 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArray( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 157:
#line 643 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 159:
#line 649 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewHash( NULL, HB_COMP_PARAM ); ;}
break;
case 160:
#line 650 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewHash( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 162:
#line 656 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr) ); ;}
break;
case 163:
#line 657 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprAddListExpr( (yyvsp[(1) - (5)].asExpr), (yyvsp[(3) - (5)].asExpr) ), (yyvsp[(5) - (5)].asExpr) ); ;}
break;
case 164:
#line 662 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
break;
case 165:
#line 665 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAlias( (yyvsp[(1) - (2)].string), HB_COMP_PARAM ); ;}
break;
case 166:
#line 670 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, '&', (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
break;
case 167:
#line 671 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewMacro( NULL, 0, (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
break;
case 169:
#line 679 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewMacro( (yyvsp[(2) - (2)].asExpr), 0, NULL, HB_COMP_PARAM ); ;}
break;
case 171:
#line 689 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAlias( "FIELD", HB_COMP_PARAM ); ;}
break;
case 172:
#line 690 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(3) - (3)].asExpr); ;}
break;
case 173:
#line 695 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 174:
#line 696 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 175:
#line 697 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 176:
#line 698 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 177:
#line 699 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 178:
#line 700 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 179:
#line 701 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 180:
#line 702 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 181:
#line 703 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 182:
#line 704 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 183:
#line 705 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 184:
#line 706 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 185:
#line 707 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 186:
#line 708 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 187:
#line 711 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
break;
case 190:
#line 716 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 191:
#line 717 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 192:
#line 718 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 193:
#line 719 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 194:
#line 720 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 195:
#line 721 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 196:
#line 722 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 197:
#line 723 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 198:
#line 724 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 199:
#line 725 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 200:
#line 726 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 201:
#line 727 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 202:
#line 728 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 203:
#line 729 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 204:
#line 730 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 205:
#line 731 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 206:
#line 732 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(1) - (2)].asExpr) ); ;}
break;
case 207:
#line 733 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 208:
#line 734 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 209:
#line 735 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasVar( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 210:
#line 744 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 211:
#line 745 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 212:
#line 746 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 213:
#line 747 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 214:
#line 748 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewAliasExpr( (yyvsp[(1) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 215:
#line 749 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) ); (yyval.asExpr) = hb_compErrorAlias( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 216:
#line 754 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 217:
#line 755 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 218:
#line 756 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 219:
#line 757 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 220:
#line 758 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 221:
#line 759 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 222:
#line 760 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 223:
#line 761 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 224:
#line 762 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 225:
#line 763 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 226:
#line 764 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 227:
#line 765 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 228:
#line 766 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 229:
#line 767 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 230:
#line 768 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 231:
#line 769 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 232:
#line 770 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 233:
#line 771 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 234:
#line 772 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 236:
#line 779 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( (yyvsp[(1) - (4)].string), HB_COMP_PARAM ), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;}
break;
case 238:
#line 783 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;}
break;
case 239:
#line 784 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ); ;}
break;
case 240:
#line 788 "harbour.y"
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 242:
#line 794 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
break;
case 243:
#line 795 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
break;
case 246:
#line 802 "harbour.y"
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ) ); ;}
break;
case 247:
#line 803 "harbour.y"
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
break;
case 248:
#line 804 "harbour.y"
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
break;
case 249:
#line 805 "harbour.y"
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, hb_compExprNewRef( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); ;}
break;
case 250:
#line 806 "harbour.y"
{ (yyval.asExpr) = hb_compCheckPassByRef( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); (yyval.asExpr)->value.asList.reference = TRUE; ;}
break;
case 251:
#line 809 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
break;
case 253:
#line 815 "harbour.y"
{ (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;}
break;
case 254:
#line 816 "harbour.y"
{ (yyval.asExpr) = ((yyvsp[(3) - (3)].asMessage).bMacro ? hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), NULL, (yyvsp[(3) - (3)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asMessage).value.string, NULL, HB_COMP_PARAM )); ;}
break;
case 255:
#line 817 "harbour.y"
{ if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt == 0 )
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_WITHOBJECT, NULL, NULL );
(yyval.asExpr) = ((yyvsp[(2) - (2)].asMessage).bMacro ? hb_compExprNewSend( NULL, NULL, (yyvsp[(2) - (2)].asMessage).value.macro, HB_COMP_PARAM ) : hb_compExprNewSend( NULL, (yyvsp[(2) - (2)].asMessage).value.string, NULL, HB_COMP_PARAM ));
;}
break;
case 256:
#line 823 "harbour.y"
{ (yyval.asMessage).value.string = (yyvsp[(1) - (1)].string); (yyval.asMessage).bMacro=FALSE; ;}
break;
case 257:
#line 824 "harbour.y"
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
break;
case 258:
#line 825 "harbour.y"
{ (yyval.asMessage).value.macro = (yyvsp[(1) - (1)].asExpr); (yyval.asMessage).bMacro=TRUE; ;}
break;
case 259:
#line 828 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(3) - (4)].string), HB_COMP_PARAM ); ;}
break;
case 261:
#line 836 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewMethodCall( (yyvsp[(1) - (4)].asExpr), (yyvsp[(3) - (4)].asExpr) ); ;}
break;
case 271:
#line 856 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
break;
case 281:
#line 866 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
break;
case 284:
#line 869 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
break;
case 286:
#line 871 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
break;
case 298:
#line 885 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
break;
case 299:
#line 886 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;}
break;
case 301:
#line 890 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;}
break;
case 303:
#line 894 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewEmpty( HB_COMP_PARAM ); ;}
break;
case 305:
#line 898 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
break;
case 311:
#line 904 "harbour.y"
{ (yyval.asExpr) = hb_compExprListStrip( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
break;
case 334:
#line 938 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewPostInc( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
break;
case 335:
#line 939 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewPostDec( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;}
break;
case 336:
#line 942 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 337:
#line 945 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 338:
#line 946 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 339:
#line 949 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 340:
#line 950 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 341:
#line 951 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 342:
#line 954 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 343:
#line 955 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 344:
#line 956 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 345:
#line 957 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 346:
#line 958 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 347:
#line 959 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 348:
#line 960 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 349:
#line 961 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 350:
#line 962 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 351:
#line 963 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 352:
#line 964 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 353:
#line 965 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 354:
#line 966 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 355:
#line 967 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 356:
#line 968 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 357:
#line 969 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 358:
#line 970 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 359:
#line 971 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 360:
#line 972 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 361:
#line 973 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 362:
#line 974 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 363:
#line 975 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 364:
#line 978 "harbour.y"
{ (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 365:
#line 981 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 366:
#line 984 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 367:
#line 987 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 368:
#line 990 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 369:
#line 993 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 370:
#line 996 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewExpEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 377:
#line 1007 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 378:
#line 1008 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 379:
#line 1009 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMult( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 380:
#line 1010 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDiv( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 381:
#line 1011 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMod( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 382:
#line 1012 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPower( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 383:
#line 1015 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewAnd( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 384:
#line 1016 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewOr( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 385:
#line 1019 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEQ( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 386:
#line 1020 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 387:
#line 1021 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 388:
#line 1022 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 389:
#line 1023 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 390:
#line 1024 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 391:
#line 1025 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 392:
#line 1026 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 393:
#line 1027 "harbour.y"
{ (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEqual( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 395:
#line 1036 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(0) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 396:
#line 1037 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 397:
#line 1038 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); ;}
break;
case 398:
#line 1041 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
break;
case 399:
#line 1042 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
break;
case 400:
#line 1045 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewCodeBlock( (yyvsp[(1) - (1)].asCodeblock).string, (yyvsp[(1) - (1)].asCodeblock).length, (yyvsp[(1) - (1)].asCodeblock).flags, HB_COMP_PARAM ); (yyvsp[(1) - (1)].asCodeblock).string = NULL; ;}
break;
case 401:
#line 1046 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (4)].asExpr); ;}
break;
case 402:
#line 1051 "harbour.y"
{ (yyval.asExpr) = NULL; ;}
break;
case 403:
#line 1052 "harbour.y"
{ (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
break;
case 404:
#line 1053 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;}
break;
case 405:
#line 1054 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;}
break;
case 406:
#line 1057 "harbour.y"
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (2)].asExpr), (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType)->cVarType, HB_COMP_PARAM ); ;}
break;
case 407:
#line 1058 "harbour.y"
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (4)].asExpr), (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType)->cVarType, HB_COMP_PARAM ); ;}
break;
case 408:
#line 1061 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-1) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;}
break;
case 409:
#line 1062 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
break;
case 410:
#line 1066 "harbour.y"
{ (yyval.bTrue) = HB_COMP_PARAM->functions.pLast->bBlock;
HB_COMP_PARAM->functions.pLast->bBlock = TRUE; ;}
break;
case 411:
#line 1069 "harbour.y"
{ HB_COMP_PARAM->functions.pLast->bBlock = (yyvsp[(2) - (3)].bTrue); ;}
break;
case 413:
#line 1072 "harbour.y"
{ /* 3 */
HB_CBVAR_PTR pVar;
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
hb_compCodeBlockStart( HB_COMP_PARAM, TRUE );
HB_COMP_PARAM->functions.pLast->funFlags |= FUN_EXTBLOCK;
HB_COMP_PARAM->functions.pLast->fVParams =
( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags & HB_BLOCK_VPARAMS ) != 0;
(yyvsp[(1) - (2)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_EXT;
if( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string )
{
hb_xfree( (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string );
(yyvsp[(1) - (2)].asExpr)->value.asCodeblock.string = NULL;
(yyvsp[(1) - (2)].asExpr)->ulLength = 0;
}
HB_COMP_PARAM->iVarScope = VS_PARAMETER;
pVar = (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.pLocals;
while( pVar )
{
hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, hb_compVarTypeNew( HB_COMP_PARAM, pVar->bType, NULL ) );
pVar =pVar->pNext;
}
;}
break;
case 414:
#line 1097 "harbour.y"
{ /* 6 */
hb_compCodeBlockEnd( HB_COMP_PARAM );
(yyval.asExpr) = hb_compExprSetCodeblockBody( (yyvsp[(1) - (5)].asExpr),
HB_COMP_PARAM->functions.pLast->pCode + ( ULONG ) (yyvsp[(3) - (5)].lNumber),
HB_COMP_PARAM->functions.pLast->lPCodePos - ( ULONG ) (yyvsp[(3) - (5)].lNumber) );
HB_COMP_PARAM->functions.pLast->lPCodePos = ( ULONG ) (yyvsp[(3) - (5)].lNumber);
HB_COMP_PARAM->lastLinePos = 0;
;}
break;
case 415:
#line 1107 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
break;
case 416:
#line 1108 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
break;
case 417:
#line 1110 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (3)].asExpr) ;}
break;
case 419:
#line 1123 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewIIF( hb_compExprAddListExpr( hb_compExprAddListExpr( hb_compExprNewList( (yyvsp[(3) - (8)].asExpr), HB_COMP_PARAM ), (yyvsp[(5) - (8)].asExpr) ), (yyvsp[(7) - (8)].asExpr) ) ); ;}
break;
case 421:
#line 1129 "harbour.y"
{ HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP_PARAM ); ;}
break;
case 423:
#line 1131 "harbour.y"
{ HB_COMP_PARAM->iVarScope = VS_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;}
break;
case 425:
#line 1133 "harbour.y"
{ HB_COMP_PARAM->iVarScope = VS_TH_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;}
break;
case 427:
#line 1135 "harbour.y"
{ if( HB_COMP_PARAM->functions.pLast->funFlags & FUN_USES_LOCAL_PARAMS )
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_PARAMETERS_NOT_ALLOWED, NULL, NULL );
else
{
HB_COMP_PARAM->functions.pLast->wParamNum = 0;
HB_COMP_PARAM->iVarScope = ( VS_PRIVATE | VS_PARAMETER );
}
;}
break;
case 428:
#line 1142 "harbour.y"
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
break;
case 429:
#line 1145 "harbour.y"
{ (yyval.iNumber) = 1; ;}
break;
case 430:
#line 1146 "harbour.y"
{ (yyval.iNumber)++; ;}
break;
case 431:
#line 1149 "harbour.y"
{ (yyval.iNumber) = 1; ;}
break;
case 432:
#line 1150 "harbour.y"
{ (yyval.iNumber)++; ;}
break;
case 434:
#line 1160 "harbour.y"
{ hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ), FALSE ); ;}
break;
case 435:
#line 1162 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ) );
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (4)].asExpr), HB_COMP_PARAM ), TRUE );
;}
break;
case 436:
#line 1166 "harbour.y"
{
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), TRUE );
;}
break;
case 437:
#line 1173 "harbour.y"
{
hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) );
if( HB_COMP_PARAM->iVarScope & VS_STATIC )
{
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string) );
}
else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
{
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (2)].string), NULL, HB_COMP_PARAM ), FALSE );
}
else if( HB_COMP_PARAM->iVarScope == VS_LOCAL &&
( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) )
{
HB_COMP_EXPR_DELETE( hb_compExprGenPush( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ) );
}
;}
break;
case 438:
#line 1190 "harbour.y"
{ (yyval.iNumber) = HB_COMP_PARAM->iVarScope;
hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) );
;}
break;
case 439:
#line 1194 "harbour.y"
{
HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (5)].iNumber);
if( HB_COMP_PARAM->iVarScope & VS_STATIC )
{
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssignStatic( hb_compExprNewVar( (yyvsp[(1) - (5)].string), HB_COMP_PARAM ), (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
hb_compStaticDefEnd( HB_COMP_PARAM, (yyvsp[(1) - (5)].string) );
}
else if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
{
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ) );
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( (yyvsp[(1) - (5)].string), NULL, HB_COMP_PARAM ), TRUE );
}
else if( HB_COMP_PARAM->iVarScope == VS_LOCAL &&
( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) )
{
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ) );
}
else
{
HB_COMP_EXPR_DELETE( hb_compExprGenStatement( hb_compExprAssign( hb_compExprNewVar( (yyvsp[(1) - (5)].string), HB_COMP_PARAM ), (yyvsp[(5) - (5)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
}
HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (5)].iNumber);
;}
break;
case 440:
#line 1219 "harbour.y"
{ hb_compVariableDim( (yyvsp[(1) - (3)].string), (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;}
break;
case 442:
#line 1228 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 443:
#line 1229 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
break;
case 444:
#line 1230 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr) ); ;}
break;
case 445:
#line 1233 "harbour.y"
{ HB_COMP_PARAM->iVarScope = VS_FIELD; ;}
break;
case 446:
#line 1235 "harbour.y"
{
if( (yyvsp[(4) - (5)].string) ) hb_compFieldSetAlias( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), (yyvsp[(3) - (5)].iNumber) );
;}
break;
case 447:
#line 1240 "harbour.y"
{ (yyval.iNumber) = hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;}
break;
case 448:
#line 1241 "harbour.y"
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;}
break;
case 449:
#line 1244 "harbour.y"
{ (yyval.string) = NULL; ;}
break;
case 450:
#line 1245 "harbour.y"
{ (yyval.string) = (yyvsp[(2) - (2)].string); ;}
break;
case 451:
#line 1248 "harbour.y"
{ HB_COMP_PARAM->iVarScope = VS_MEMVAR; ;}
break;
case 453:
#line 1251 "harbour.y"
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;}
break;
case 454:
#line 1252 "harbour.y"
{ hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;}
break;
case 455:
#line 1255 "harbour.y"
{ hb_compDeclaredAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->szDeclaredFun = (yyvsp[(2) - (3)].string); ;}
break;
case 456:
#line 1256 "harbour.y"
{
if( HB_COMP_PARAM->pLastDeclared )
{
HB_COMP_PARAM->pLastDeclared->cType = (yyvsp[(7) - (8)].asVarType)->cVarType;
if ( HB_TOUPPER( (yyvsp[(7) - (8)].asVarType)->cVarType ) == 'S' )
{
HB_COMP_PARAM->pLastDeclared->pClass = hb_compClassFind( HB_COMP_PARAM, (yyvsp[(7) - (8)].asVarType)->szFromClass );
if( ! HB_COMP_PARAM->pLastDeclared->pClass )
{
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, (yyvsp[(7) - (8)].asVarType)->szFromClass, HB_COMP_PARAM->pLastDeclared->szName );
HB_COMP_PARAM->pLastDeclared->cType = ( HB_ISUPPER( ( UCHAR ) (yyvsp[(7) - (8)].asVarType)->cVarType ) ? 'O' : 'o' );
}
}
}
HB_COMP_PARAM->szDeclaredFun = NULL;
HB_COMP_PARAM->iVarScope = VS_NONE;
;}
break;
case 457:
#line 1274 "harbour.y"
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].string), NULL ); ;}
break;
case 458:
#line 1274 "harbour.y"
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
break;
case 459:
#line 1275 "harbour.y"
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), NULL ); HB_COMP_PARAM->iVarScope = VS_NONE; ;}
break;
case 460:
#line 1276 "harbour.y"
{ HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (4)].string), (yyvsp[(3) - (4)].string) ); HB_COMP_PARAM->iVarScope = VS_NONE; ;}
break;
case 461:
#line 1277 "harbour.y"
{ HB_COMP_PARAM->iVarScope = VS_NONE; ;}
break;
case 462:
#line 1278 "harbour.y"
{ HB_COMP_PARAM->cDataListType = (yyvsp[(3) - (3)].asVarType)->cVarType; ;}
break;
case 463:
#line 1278 "harbour.y"
{ HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; ;}
break;
case 470:
#line 1291 "harbour.y"
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (2)].string) ); ;}
break;
case 471:
#line 1292 "harbour.y"
{
if( HB_COMP_PARAM->pLastMethod )
{
HB_COMP_PARAM->pLastMethod->cType = (yyvsp[(6) - (6)].asVarType)->cVarType;
if ( HB_TOUPPER( (yyvsp[(6) - (6)].asVarType)->cVarType ) == 'S' )
{
HB_COMP_PARAM->pLastMethod->pClass = hb_compClassFind( HB_COMP_PARAM, (yyvsp[(6) - (6)].asVarType)->szFromClass );
if( ! HB_COMP_PARAM->pLastMethod->pClass )
{
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, (yyvsp[(6) - (6)].asVarType)->szFromClass, HB_COMP_PARAM->pLastMethod->szName );
HB_COMP_PARAM->pLastMethod->cType = ( HB_ISUPPER( ( UCHAR ) (yyvsp[(6) - (6)].asVarType)->cVarType ) ? 'O' : 'o' );
}
}
}
HB_COMP_PARAM->pLastMethod = NULL;
;}
break;
case 472:
#line 1310 "harbour.y"
{ HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (1)].string) ); ;}
break;
case 473:
#line 1311 "harbour.y"
{
if( HB_COMP_PARAM->pLastMethod )
{
PCOMCLASS pClass;
char szSetData[ HB_SYMBOL_NAME_LEN + 1 ];
int iLen;
char cVarType = (yyvsp[(3) - (3)].asVarType)->cVarType;
/* List Type overrides if exists. */
if( HB_COMP_PARAM->cDataListType )
cVarType = HB_COMP_PARAM->cDataListType;
HB_COMP_PARAM->pLastMethod->cType = cVarType;
if ( HB_TOUPPER( cVarType ) == 'S' )
{
pClass = hb_compClassFind( HB_COMP_PARAM, (yyvsp[(3) - (3)].asVarType)->szFromClass );
HB_COMP_PARAM->pLastMethod->pClass = pClass;
if( ! HB_COMP_PARAM->pLastMethod->pClass )
{
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, (yyvsp[(3) - (3)].asVarType)->szFromClass, HB_COMP_PARAM->pLastMethod->szName );
HB_COMP_PARAM->pLastMethod->cType = ( HB_ISUPPER( ( UCHAR ) cVarType ) ? 'O' :'o' );
}
}
else
pClass = NULL;
iLen = strlen( (yyvsp[(1) - (3)].string) );
if( iLen >= HB_SYMBOL_NAME_LEN )
iLen = HB_SYMBOL_NAME_LEN - 1;
szSetData[ 0 ] = '_';
memcpy( szSetData + 1, (yyvsp[(1) - (3)].string), iLen );
szSetData[ iLen + 1 ] = '\0';
HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass,
hb_compIdentifierNew( HB_COMP_PARAM, szSetData, HB_IDENT_COPY ) );
HB_COMP_PARAM->pLastMethod->cType = cVarType;
HB_COMP_PARAM->pLastMethod->iParamCount = 1;
HB_COMP_PARAM->pLastMethod->cParamTypes = ( BYTE * ) hb_xgrab( 1 );
HB_COMP_PARAM->pLastMethod->pParamClasses = ( PCOMCLASS * ) hb_xgrab( sizeof( COMCLASS ) );
HB_COMP_PARAM->pLastMethod->cParamTypes[0] = cVarType;
HB_COMP_PARAM->pLastMethod->pParamClasses[0] = pClass;
if ( HB_TOUPPER( cVarType ) == 'S' )
{
HB_COMP_PARAM->pLastMethod->pClass = pClass;
}
}
HB_COMP_PARAM->pLastMethod = NULL;
;}
break;
case 480:
#line 1375 "harbour.y"
{ HB_COMP_EXPR_DELETE( (yyvsp[(1) - (1)].asExpr) ); ;}
break;
case 481:
#line 1378 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;}
break;
case 482:
#line 1379 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(3) - (3)].asVarType)->cVarType + VT_OFFSET_BYREF, NULL ) ); ;}
break;
case 483:
#line 1380 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); ;}
break;
case 484:
#line 1381 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;}
break;
case 485:
#line 1382 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(5) - (5)].asVarType)->cVarType + VT_OFFSET_BYREF, NULL ) ); ;}
break;
case 486:
#line 1383 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (7)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); ;}
break;
case 487:
#line 1386 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(3) - (3)].asVarType)->cVarType + VT_OFFSET_OPTIONAL, NULL ) ); ;}
break;
case 488:
#line 1387 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(4) - (4)].asVarType)->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;}
break;
case 489:
#line 1388 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (6)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F' + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;}
break;
case 490:
#line 1389 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(5) - (5)].asVarType)->cVarType + VT_OFFSET_OPTIONAL, NULL ) ); ;}
break;
case 491:
#line 1390 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (6)].string), hb_compVarTypeNew( HB_COMP_PARAM, (yyvsp[(6) - (6)].asVarType)->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;}
break;
case 492:
#line 1391 "harbour.y"
{ hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (8)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F' + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); ;}
break;
case 501:
#line 1404 "harbour.y"
{ hb_compGenJumpHere( (yyvsp[(1) - (2)].iNumber), HB_COMP_PARAM ); ;}
break;
case 502:
#line 1405 "harbour.y"
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); ;}
break;
case 503:
#line 1406 "harbour.y"
{ hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
break;
case 504:
#line 1407 "harbour.y"
{ hb_compGenJumpHere( (yyvsp[(1) - (4)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
break;
case 505:
#line 1411 "harbour.y"
{ ++HB_COMP_PARAM->functions.pLast->wIfCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
break;
case 506:
#line 1413 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (4)].asExpr), HB_COMP_PARAM ) ); (yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM ); ;}
break;
case 507:
#line 1415 "harbour.y"
{ (yyval.iNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;}
break;
case 508:
#line 1418 "harbour.y"
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;}
break;
case 510:
#line 1422 "harbour.y"
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
break;
case 511:
#line 1424 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
;}
break;
case 512:
#line 1428 "harbour.y"
{ (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) );
hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM );
;}
break;
case 513:
#line 1432 "harbour.y"
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;}
break;
case 514:
#line 1434 "harbour.y"
{ HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ) );
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
;}
break;
case 515:
#line 1438 "harbour.y"
{ (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) );
hb_compGenJumpHere( (yyvsp[(6) - (7)].iNumber), HB_COMP_PARAM );
;}
break;
case 516:
#line 1444 "harbour.y"
{
if( HB_COMP_PARAM->functions.pLast->wIfCounter )
--HB_COMP_PARAM->functions.pLast->wIfCounter;
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
;}
break;
case 519:
#line 1457 "harbour.y"
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;}
break;
case 522:
#line 1469 "harbour.y"
{ hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;}
break;
case 523:
#line 1473 "harbour.y"
{ if( HB_COMP_PARAM->functions.pLast->wCaseCounter )
--HB_COMP_PARAM->functions.pLast->wCaseCounter;
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
;}
break;
case 526:
#line 1483 "harbour.y"
{ ++HB_COMP_PARAM->functions.pLast->wCaseCounter; hb_compLinePushIfDebugger( HB_COMP_PARAM );;}
break;
case 529:
#line 1487 "harbour.y"
{
if( (yyvsp[(2) - (2)].lNumber) > 0 )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
}
;}
break;
case 530:
#line 1495 "harbour.y"
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
break;
case 531:
#line 1496 "harbour.y"
{
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) );
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
;}
break;
case 532:
#line 1501 "harbour.y"
{
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE;
(yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) );
hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM );
;}
break;
case 533:
#line 1507 "harbour.y"
{ hb_compLinePushIfInside( HB_COMP_PARAM ); ;}
break;
case 534:
#line 1508 "harbour.y"
{
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(4) - (5)].asExpr), HB_COMP_PARAM ) );
(yyval.iNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
;}
break;
case 535:
#line 1513 "harbour.y"
{
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE;
(yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) );
hb_compGenJumpHere( (yyvsp[(6) - (7)].iNumber), HB_COMP_PARAM );
;}
break;
case 536:
#line 1520 "harbour.y"
{hb_compLinePushIfDebugger( HB_COMP_PARAM ); ;}
break;
case 537:
#line 1520 "harbour.y"
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;}
break;
case 539:
#line 1522 "harbour.y"
{ hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL ); ;}
break;
case 541:
#line 1527 "harbour.y"
{
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
(yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
;}
break;
case 542:
#line 1532 "harbour.y"
{
hb_compLoopHere( HB_COMP_PARAM );
hb_compGenJump( ( ULONG ) (yyvsp[(1) - (5)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
;}
break;
case 543:
#line 1537 "harbour.y"
{
hb_compGenJumpHere( ( ULONG ) (yyvsp[(4) - (7)].lNumber), HB_COMP_PARAM );
if( HB_COMP_PARAM->functions.pLast->wWhileCounter )
--HB_COMP_PARAM->functions.pLast->wWhileCounter;
hb_compLoopEnd( HB_COMP_PARAM );
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_WITH_RETURN;
;}
break;
case 544:
#line 1547 "harbour.y"
{
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
hb_compLinePushIfInside( HB_COMP_PARAM );
++HB_COMP_PARAM->functions.pLast->wWhileCounter;
hb_compLoopStart( HB_COMP_PARAM, TRUE );
;}
break;
case 545:
#line 1556 "harbour.y"
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;}
break;
case 548:
#line 1564 "harbour.y"
{ /* 5 */
hb_compLinePushIfInside( HB_COMP_PARAM );
(yyvsp[(1) - (4)].lNumber) = HB_COMP_PARAM->currLine;
hb_compDebugStart();
++HB_COMP_PARAM->functions.pLast->wForCounter;
(yyvsp[(2) - (4)].asExpr) = hb_compExprReduce( (yyvsp[(2) - (4)].asExpr), HB_COMP_PARAM );
(yyval.asExpr) = hb_compExprGenPush( hb_compExprAssign( (yyvsp[(2) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM );
if( hb_compExprAsSymbol( (yyvsp[(2) - (4)].asExpr) ) )
{
hb_compForStart( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (4)].asExpr) ), FALSE );
}
;}
break;
case 549:
#line 1577 "harbour.y"
{ /* 9 */
hb_compLoopStart( HB_COMP_PARAM, TRUE );
(yyval.lNumber) = hb_compGenJump( 0, HB_COMP_PARAM );
;}
break;
case 550:
#line 1582 "harbour.y"
{ /* 11 */
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
;}
break;
case 551:
#line 1586 "harbour.y"
{
int iSign, iLine;
hb_compLoopHere( HB_COMP_PARAM );
iLine = HB_COMP_PARAM->currLine;
HB_COMP_PARAM->currLine = ( int ) (yyvsp[(1) - (12)].lNumber);
hb_compLinePush( HB_COMP_PARAM );
HB_COMP_PARAM->currLine = iLine;
if( (yyvsp[(8) - (12)].asExpr) )
{
(yyvsp[(8) - (12)].asExpr) = hb_compExprReduce( (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM );
iSign = hb_compExprAsNumSign( (yyvsp[(8) - (12)].asExpr) );
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
}
else
{
iSign = 1;
HB_COMP_EXPR_CLEAR( hb_compExprGenPush( hb_compExprNewPreInc( (yyvsp[(2) - (12)].asExpr), HB_COMP_PARAM ), HB_COMP_PARAM ) );
}
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (12)].lNumber), HB_COMP_PARAM );
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(7) - (12)].asExpr), HB_COMP_PARAM ) ); /* end */
if( iSign )
{
hb_compGenPCode1( ( BYTE ) ( iSign > 0 ? HB_P_GREATER : HB_P_LESS ), HB_COMP_PARAM );
if( (yyvsp[(8) - (12)].asExpr) )
HB_COMP_EXPR_DELETE( (yyvsp[(8) - (12)].asExpr) );
}
else
{
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(8) - (12)].asExpr), HB_COMP_PARAM ) ); /* step */
hb_compGenPCode1( HB_P_FORTEST, HB_COMP_PARAM );
}
hb_compGenJumpFalse( ( ULONG ) (yyvsp[(11) - (12)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
hb_compLoopEnd( HB_COMP_PARAM );
if( hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) )
hb_compForEnd( HB_COMP_PARAM, hb_compExprAsSymbol( (yyvsp[(2) - (12)].asExpr) ) );
HB_COMP_EXPR_DELETE( (yyvsp[(5) - (12)].asExpr) ); /* deletes $5, $2, $4 */
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
;}
break;
case 554:
#line 1634 "harbour.y"
{ (yyval.asExpr) = NULL; ;}
break;
case 555:
#line 1635 "harbour.y"
{ (yyval.asExpr) = hb_compExprReduce( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;}
break;
case 556:
#line 1639 "harbour.y"
{
hb_compLinePush( HB_COMP_PARAM );
if( HB_COMP_PARAM->functions.pLast->wForCounter )
--HB_COMP_PARAM->functions.pLast->wForCounter;
;}
break;
case 561:
#line 1652 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
break;
case 562:
#line 1653 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
break;
case 563:
#line 1656 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
break;
case 564:
#line 1657 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
break;
case 565:
#line 1660 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;}
break;
case 567:
#line 1664 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
break;
case 568:
#line 1665 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
break;
case 569:
#line 1670 "harbour.y"
{
++HB_COMP_PARAM->functions.pLast->wForCounter; /* 5 */
hb_compLinePushIfInside( HB_COMP_PARAM );
hb_compDebugStart();
;}
break;
case 570:
#line 1676 "harbour.y"
{
/* 7
*/
(yyvsp[(2) - (6)].asExpr) = hb_compExprReduce( (yyvsp[(2) - (6)].asExpr), HB_COMP_PARAM );
(yyvsp[(4) - (6)].asExpr) = hb_compExprReduce( (yyvsp[(4) - (6)].asExpr), HB_COMP_PARAM );
hb_compEnumStart( HB_COMP_PARAM, (yyvsp[(2) - (6)].asExpr), (yyvsp[(4) - (6)].asExpr), (yyvsp[(6) - (6)].iNumber) );
hb_compLoopStart( HB_COMP_PARAM, TRUE );
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
;}
break;
case 571:
#line 1687 "harbour.y"
{
/* 9
*/
(yyval.lNumber) = hb_compGenJumpFalse( 0, HB_COMP_PARAM );
;}
break;
case 572:
#line 1693 "harbour.y"
{
hb_compLoopHere( HB_COMP_PARAM );
hb_compEnumNext( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr), (yyvsp[(6) - (10)].iNumber) );
hb_compGenJump( ( ULONG ) (yyvsp[(7) - (10)].lNumber) - HB_COMP_PARAM->functions.pLast->lPCodePos, HB_COMP_PARAM );
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (10)].lNumber), HB_COMP_PARAM );
hb_compLoopEnd( HB_COMP_PARAM );
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
hb_compEnumEnd( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr) );
HB_COMP_EXPR_DELETE( (yyvsp[(2) - (10)].asExpr) );
HB_COMP_EXPR_DELETE( (yyvsp[(4) - (10)].asExpr) );
;}
break;
case 573:
#line 1707 "harbour.y"
{ (yyval.iNumber) = 1; ;}
break;
case 574:
#line 1708 "harbour.y"
{ (yyval.iNumber) = -1; ;}
break;
case 575:
#line 1712 "harbour.y"
{
hb_compLoopStart( HB_COMP_PARAM, FALSE );
hb_compSwitchStart( HB_COMP_PARAM, (yyvsp[(1) - (1)].asExpr) );
hb_compGenJump( 0, HB_COMP_PARAM );
;}
break;
case 576:
#line 1719 "harbour.y"
{
hb_compSwitchEnd( HB_COMP_PARAM );
hb_compLoopEnd( HB_COMP_PARAM );
;}
break;
case 577:
#line 1726 "harbour.y"
{
HB_COMP_EXPR_DELETE( (yyvsp[(1) - (2)].asExpr) );
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
;}
break;
case 578:
#line 1733 "harbour.y"
{
if( HB_COMP_PARAM->functions.pLast->wSwitchCounter )
--HB_COMP_PARAM->functions.pLast->wSwitchCounter;
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
;}
break;
case 581:
#line 1745 "harbour.y"
{
++HB_COMP_PARAM->functions.pLast->wSwitchCounter;
hb_compLinePushIfInside( HB_COMP_PARAM );
;}
break;
case 582:
#line 1750 "harbour.y"
{
(yyval.asExpr) = hb_compExprReduce( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM );
;}
break;
case 584:
#line 1757 "harbour.y"
{
if( (yyvsp[(2) - (2)].lNumber) > 0 )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
}
;}
break;
case 585:
#line 1765 "harbour.y"
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
break;
case 587:
#line 1768 "harbour.y"
{ hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;}
break;
case 591:
#line 1776 "harbour.y"
{ hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); ;}
break;
case 592:
#line 1776 "harbour.y"
{ HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;}
break;
case 594:
#line 1781 "harbour.y"
{ /* 2 */
hb_compLinePushIfInside( HB_COMP_PARAM );
++HB_COMP_PARAM->functions.pLast->wSeqCounter;
(yyval.lNumber) = hb_compSequenceBegin( HB_COMP_PARAM );
;}
break;
case 595:
#line 1789 "harbour.y"
{ /* 6 */
/* Set jump address for HB_P_SEQBEGIN opcode - this address
* will be used in BREAK code if there is no RECOVER clause
*/
if( (yyvsp[(3) - (5)].lNumber) )
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
hb_compGenJumpHere( ( ULONG ) (yyvsp[(2) - (5)].lNumber), HB_COMP_PARAM );
(yyval.lNumber) = hb_compSequenceEnd( HB_COMP_PARAM );
(yyvsp[(4) - (5)].lNumber) = hb_compLoopCount( HB_COMP_PARAM );
;}
break;
case 596:
#line 1800 "harbour.y"
{ /* 8 */
/* Replace END address with RECOVER address in
* HB_P_SEQBEGIN opcode if there is RECOVER clause
*/
if( (yyvsp[(7) - (7)].lNumber) )
hb_compGenJumpThere( ( ULONG ) (yyvsp[(2) - (7)].lNumber), ( ULONG ) (yyvsp[(7) - (7)].lNumber), HB_COMP_PARAM );
else if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
;}
break;
case 597:
#line 1810 "harbour.y"
{ /* 10 */
long lLoopCount = hb_compLoopCount( HB_COMP_PARAM );
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
if( (yyvsp[(9) - (9)].lNumber) )
{
if( (yyvsp[(4) - (9)].lNumber) != lLoopCount )
{
/* ALWAYS statement after RECOVER with EXIT/LOOP statments */
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_ALWAYS_AFTER_EXIT, "EXIT/LOOP", NULL );
}
--HB_COMP_PARAM->functions.pLast->wAlwaysCounter;
/* replace END address with ALWAYS address in
HB_P_SEQEND opcode */
hb_compGenJumpThere( ( ULONG ) (yyvsp[(6) - (9)].lNumber), ( ULONG ) (yyvsp[(9) - (9)].lNumber), HB_COMP_PARAM );
/* Fix ALWAYS address in HB_P_SEQALWAYS opcode */
hb_compGenJumpThere( ( ULONG ) (yyvsp[(2) - (9)].lNumber) - 4, ( ULONG ) (yyvsp[(9) - (9)].lNumber), HB_COMP_PARAM );
/* Fix ALWAYSEND address in HB_P_ALWAYSBEGIN opcode */
hb_compGenJumpHere( ( ULONG ) (yyvsp[(9) - (9)].lNumber) + 1, HB_COMP_PARAM );
hb_compGenPCode1( HB_P_ALWAYSEND, HB_COMP_PARAM );
}
else
{
/* Fix END address in HB_P_SEQEND opcode */
hb_compGenJumpHere( ( ULONG ) (yyvsp[(6) - (9)].lNumber), HB_COMP_PARAM );
}
hb_compSequenceFinish( HB_COMP_PARAM, ( ULONG ) (yyvsp[(2) - (9)].lNumber), ( ULONG ) (yyvsp[(6) - (9)].lNumber), ( ULONG ) (yyvsp[(9) - (9)].lNumber),
(yyvsp[(5) - (9)].lNumber) != 0, (yyvsp[(7) - (9)].lNumber) != 0, (yyvsp[(4) - (9)].lNumber) == lLoopCount );
;}
break;
case 601:
#line 1845 "harbour.y"
{ (yyval.lNumber) = 0; ;}
break;
case 602:
#line 1847 "harbour.y"
{
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) );
hb_compGenPCode1( HB_P_SEQBLOCK, HB_COMP_PARAM );
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
;}
break;
case 603:
#line 1854 "harbour.y"
{ (yyval.lNumber) = 0; ;}
break;
case 605:
#line 1859 "harbour.y"
{
HB_COMP_PARAM->functions.pLast->funFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE );
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
++HB_COMP_PARAM->functions.pLast->wAlwaysCounter;
hb_compSequenceAlways( HB_COMP_PARAM );
;}
break;
case 606:
#line 1867 "harbour.y"
{ (yyval.lNumber) = 0; HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE; ;}
break;
case 609:
#line 1873 "harbour.y"
{
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE;
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
hb_compLinePushIfInside( HB_COMP_PARAM );
hb_compGenPCode2( HB_P_SEQRECOVER, HB_P_POP, HB_COMP_PARAM );
;}
break;
case 610:
#line 1884 "harbour.y"
{
HB_COMP_PARAM->functions.pLast->funFlags &= ~ FUN_BREAK_CODE;
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
if( HB_COMP_PARAM->functions.pLast->wSeqCounter )
--HB_COMP_PARAM->functions.pLast->wSeqCounter;
hb_compLinePushIfInside( HB_COMP_PARAM );
hb_compGenPCode1( HB_P_SEQRECOVER, HB_COMP_PARAM );
hb_compGenPopVar( (yyvsp[(2) - (2)].string), HB_COMP_PARAM );
;}
break;
case 613:
#line 1906 "harbour.y"
{
(yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(2) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM );
;}
break;
case 614:
#line 1910 "harbour.y"
{
hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string) );
/* DOIDENT is the only one identifier which can be returned in lower letters */
(yyval.asExpr) = hb_compExprNewFunCall( hb_compExprNewFunName( hb_compIdentifierNew( HB_COMP_PARAM, hb_strupr( hb_strdup( (yyvsp[(1) - (2)].string) ) ), HB_IDENT_FREE ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM );
;}
break;
case 615:
#line 1917 "harbour.y"
{ (yyval.asExpr) = NULL; ;}
break;
case 616:
#line 1918 "harbour.y"
{ (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;}
break;
case 617:
#line 1921 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
break;
case 618:
#line 1922 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr) ); ;}
break;
case 619:
#line 1923 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;}
break;
case 620:
#line 1924 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (2)].asExpr), hb_compExprNewNil( HB_COMP_PARAM ) ); ;}
break;
case 621:
#line 1925 "harbour.y"
{ (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;}
break;
case 622:
#line 1928 "harbour.y"
{ (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;}
break;
case 627:
#line 1936 "harbour.y"
{
hb_compLinePushIfInside( HB_COMP_PARAM );
HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) );
(yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos;
hb_compGenPCode1( HB_P_WITHOBJECTSTART, HB_COMP_PARAM );
HB_COMP_PARAM->functions.pLast->wWithObjectCnt++;
;}
break;
case 628:
#line 1945 "harbour.y"
{ if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt )
--HB_COMP_PARAM->functions.pLast->wWithObjectCnt;
if( (yyvsp[(5) - (6)].lNumber) )
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
else
{
hb_compNOOPfill( HB_COMP_PARAM->functions.pLast,
( ULONG ) (yyvsp[(4) - (6)].lNumber), 1, FALSE, TRUE );
hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM );
}
;}
break;
case 631:
#line 1962 "harbour.y"
{ HB_COMP_PARAM->fError = FALSE; ;}
break;
/* Line 1268 of yacc.c. */
#line 7006 "harboury.c"
default: break;
}
YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
*++yyvsp = yyval;
/* Now `shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule
number reduced by. */
yyn = yyr1[yyn];
yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;
if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)
yystate = yytable[yystate];
else
yystate = yydefgoto[yyn - YYNTOKENS];
goto yynewstate;
/*------------------------------------.
| yyerrlab -- here on detecting error |
`------------------------------------*/
yyerrlab:
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
++yynerrs;
YYUSE (yynerrs);
#if ! YYERROR_VERBOSE
yyerror (pComp, YY_("syntax error"));
#else
{
YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);
if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM)
{
YYSIZE_T yyalloc = 2 * yysize;
if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))
yyalloc = YYSTACK_ALLOC_MAXIMUM;
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
yymsg = (char *) YYSTACK_ALLOC (yyalloc);
if (yymsg)
yymsg_alloc = yyalloc;
else
{
yymsg = yymsgbuf;
yymsg_alloc = sizeof yymsgbuf;
}
}
if (0 < yysize && yysize <= yymsg_alloc)
{
(void) yysyntax_error (yymsg, yystate, yychar);
yyerror (pComp, yymsg);
}
else
{
yyerror (pComp, YY_("syntax error"));
if (yysize != 0)
goto yyexhaustedlab;
}
}
#endif
}
if (yyerrstatus == 3)
{
/* If just tried and failed to reuse look-ahead token after an
error, discard it. */
if (yychar <= YYEOF)
{
/* Return failure if at end of input. */
if (yychar == YYEOF)
YYABORT;
}
else
{
yydestruct ("Error: discarding",
yytoken, &yylval, pComp);
yychar = YYEMPTY;
}
}
/* Else will try to reuse look-ahead token after shifting the error
token. */
goto yyerrlab1;
/*---------------------------------------------------.
| yyerrorlab -- error raised explicitly by YYERROR. |
`---------------------------------------------------*/
#ifndef NO_YYERROR
yyerrorlab:
/* Pacify compilers like GCC when the user code never invokes
YYERROR and the label yyerrorlab therefore never appears in user
code. */
#if ! defined( __BORLANDC__ ) && ! defined( __WATCOMC__ )
if (/*CONSTCOND*/ 0)
goto yyerrorlab;
#endif
/* Do not reclaim the symbols of the rule which action triggered
this YYERROR. */
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
yystate = *yyssp;
goto yyerrlab1;
#endif /* NO_YYERROR */
/*-------------------------------------------------------------.
| yyerrlab1 -- common code for both syntax error and YYERROR. |
`-------------------------------------------------------------*/
yyerrlab1:
yyerrstatus = 3; /* Each real token shifted decrements this. */
for (;;)
{
yyn = yypact[yystate];
if (yyn != YYPACT_NINF)
{
yyn += YYTERROR;
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR)
{
yyn = yytable[yyn];
if (0 < yyn)
break;
}
}
/* Pop the current state because it cannot handle the error token. */
if (yyssp == yyss)
YYABORT;
yydestruct ("Error: popping",
yystos[yystate], yyvsp, pComp);
YYPOPSTACK (1);
yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp);
}
if (yyn == YYFINAL)
YYACCEPT;
*++yyvsp = yylval;
/* Shift the error token. */
YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);
yystate = yyn;
goto yynewstate;
/*-------------------------------------.
| yyacceptlab -- YYACCEPT comes here. |
`-------------------------------------*/
yyacceptlab:
yyresult = 0;
goto yyreturn;
/*-----------------------------------.
| yyabortlab -- YYABORT comes here. |
`-----------------------------------*/
yyabortlab:
yyresult = 1;
goto yyreturn;
#ifndef yyoverflow
/*-------------------------------------------------.
| yyexhaustedlab -- memory exhaustion comes here. |
`-------------------------------------------------*/
yyexhaustedlab:
yyerror (pComp, YY_("memory exhausted"));
yyresult = 2;
/* Fall through. */
#endif
yyreturn:
if (yychar != YYEOF && yychar != YYEMPTY)
yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval, pComp);
/* Do not reclaim the symbols of the rule which action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
yystos[*yyssp], yyvsp, pComp);
YYPOPSTACK (1);
}
#ifndef yyoverflow
if (yyss != yyssa)
YYSTACK_FREE (yyss);
#endif
#if YYERROR_VERBOSE
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
#endif
/* Make sure YYID is used. */
return YYID (yyresult);
}
#line 1966 "harbour.y"
/*
** ------------------------------------------------------------------------ **
*/
/*
* Avoid tracing in preprocessor/compiler.
*/
#if ! defined(HB_TRACE_UTILS)
#if defined(HB_TRACE_LEVEL)
#undef HB_TRACE_LEVEL
#endif
#endif
/* ************************************************************************* */
/*
* This function stores the position in pcode buffer where the FOR/WHILE
* loop starts. It will be used to fix any LOOP/EXIT statements
*/
static void hb_compLoopStart( HB_COMP_DECL, BOOL fCanLoop )
{
HB_LOOPEXIT_PTR pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
if( pFunc->pLoops )
{
HB_LOOPEXIT_PTR pLast = pFunc->pLoops;
while( pLast->pNext )
pLast = pLast->pNext;
pLast->pNext = pLoop;
}
else
pFunc->pLoops = pLoop;
pLoop->ulOffset = pFunc->lPCodePos; /* store the start position */
pLoop->fCanLoop = fCanLoop; /* can we use LOOP inside */
pLoop->wSeqCounter = pFunc->wSeqCounter; /* store current SEQUENCE counter */
pLoop->wWithObjectCnt = pFunc->wWithObjectCnt; /* store current WITH OBJECT counter */
pLoop->wAlwaysCounter = pFunc->wAlwaysCounter; /* store current ALWAYS counter */
pLoop->pExitList = NULL;
pLoop->pLoopList = NULL;
pLoop->pNext = NULL;
}
/*
* return number of LOOP of EXIT statement in the top most structure
*/
static long hb_compLoopCount( HB_COMP_DECL )
{
HB_LOOPEXIT_PTR pLastLoop, pLastExit, pLoop;
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
long lCount = 0;
pLastLoop = pLastExit = NULL;
pLoop = pFunc->pLoops;
while( pLoop )
{
if( pLoop->fCanLoop )
pLastLoop = pLoop;
pLastExit = pLoop;
pLoop = pLoop->pNext;
}
if( pLastLoop )
{
while( pLastLoop->pLoopList )
{
++lCount;
pLastLoop = pLastLoop->pLoopList;
}
}
if( pLastExit )
{
while( pLastExit->pExitList )
{
++lCount;
pLastExit = pLastExit->pExitList;
}
}
return lCount;
}
/*
* Stores the position of LOOP statement to fix it later at the end of loop
*/
static void hb_compLoopLoop( HB_COMP_DECL )
{
HB_LOOPEXIT_PTR pLast = NULL, pLoop;
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
pLoop = pFunc->pLoops;
while( pLoop )
{
if( pLoop->fCanLoop )
pLast = pLoop;
pLoop = pLoop->pNext;
}
if( ! pLast )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "LOOP", NULL );
}
else
{
if( pLast->wSeqCounter != pFunc->wSeqCounter )
{
/* Attempt to LOOP from BEGIN/END sequence
* Current SEQUENCE counter is different then at the beginning of loop
* Notice that LOOP is allowed in RECOVER code when there is no
* ALWAYS block
*/
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "LOOP", NULL );
}
else if( pLast->wAlwaysCounter != pFunc->wAlwaysCounter )
{
/* Attempt to LOOP from ALWAYS block of BEGIN/END sequence
*/
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "LOOP", NULL );
}
else
{
USHORT wWithObjectCnt = pLast->wWithObjectCnt;
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
pLoop->pLoopList = NULL;
while( pLast->pLoopList )
pLast = pLast->pLoopList;
pLast->pLoopList = pLoop;
while( wWithObjectCnt < pFunc->wWithObjectCnt )
{
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
wWithObjectCnt++;
}
/* store the position to fix */
pLoop->ulOffset = pFunc->lPCodePos;
hb_compGenJump( 0, HB_COMP_PARAM );
}
}
}
/*
* Stores the position of EXIT statement to fix it later at the end of loop
*/
static void hb_compLoopExit( HB_COMP_DECL )
{
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
if( ! pFunc->pLoops )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNMATCHED_EXIT, "EXIT", NULL );
}
else
{
HB_LOOPEXIT_PTR pLast, pLoop;
pLast = pFunc->pLoops;
while( pLast->pNext )
pLast = pLast->pNext;
if( pLast->wSeqCounter != pFunc->wSeqCounter )
{
/* Attempt to EXIT from BEGIN/END sequence
* Current SEQUENCE counter is different then at the beginning of loop
* Notice that EXIT is allowed in RECOVER code when there is no
* ALWAYS block
*/
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "EXIT", NULL );
}
else if( pLast->wAlwaysCounter != pFunc->wAlwaysCounter )
{
/* Attempt to EXIT from ALWAYS block of BEGIN/END sequence
*/
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "EXIT", NULL );
}
else
{
USHORT wWithObjectCnt = pLast->wWithObjectCnt;
pLoop = ( HB_LOOPEXIT_PTR ) hb_xgrab( sizeof( HB_LOOPEXIT ) );
pLoop->pExitList = NULL;
while( pLast->pExitList )
pLast = pLast->pExitList;
pLast->pExitList = pLoop;
while( wWithObjectCnt < pFunc->wWithObjectCnt )
{
hb_compGenPCode1( HB_P_WITHOBJECTEND, HB_COMP_PARAM );
wWithObjectCnt++;
}
/* store the position to fix */
pLoop->ulOffset = pFunc->lPCodePos;
hb_compGenJump( 0, HB_COMP_PARAM );
}
}
}
/*
* Fixes the LOOP statement
*/
static void hb_compLoopHere( HB_COMP_DECL )
{
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
HB_LOOPEXIT_PTR pLoop = pFunc->pLoops, pFree, pLast;
if( pLoop )
{
while( pLoop->pNext )
pLoop = pLoop->pNext;
pLast = pLoop;
pLoop = pLoop->pLoopList;
while( pLoop )
{
hb_compGenJumpHere( pLoop->ulOffset + 1, HB_COMP_PARAM );
pFree = pLoop;
pLoop = pLoop->pLoopList;
hb_xfree( ( void * ) pFree );
}
pLast->pLoopList = NULL;
}
}
/*
* Fixes the EXIT statements and releases memory allocated for current loop
*/
static void hb_compLoopEnd( HB_COMP_DECL )
{
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
HB_LOOPEXIT_PTR pLoop = pFunc->pLoops, pLast = pFunc->pLoops, pExit, pFree;
if( pLoop )
{
while( pLoop->pNext )
{
pLast = pLoop;
pLoop = pLoop->pNext;
}
pExit = pLoop->pExitList;
while( pExit )
{
hb_compGenJumpHere( pExit->ulOffset + 1, HB_COMP_PARAM );
pFree = pExit;
pExit = pExit->pExitList;
hb_xfree( ( void * ) pFree );
}
pLast->pNext = NULL;
if( pLoop == pFunc->pLoops )
pFunc->pLoops = NULL;
hb_xfree( ( void * ) pLoop );
}
}
void hb_compLoopKill( PFUNCTION pFunc )
{
HB_LOOPEXIT_PTR pLoop, pFree;
while( pFunc->pLoops )
{
pLoop = pFunc->pLoops;
while( pLoop->pExitList )
{
pFree = pLoop->pExitList;
pLoop->pExitList = pFree->pExitList;
hb_xfree( ( void * ) pFree );
}
while( pLoop->pLoopList )
{
pFree = pLoop->pLoopList;
pLoop->pLoopList = pFree->pLoopList;
hb_xfree( ( void * ) pFree );
}
pFunc->pLoops = pLoop->pNext;
hb_xfree( ( void * ) pLoop );
}
}
static void * hb_compElseIfGen( HB_COMP_DECL, void * pFirst, ULONG ulOffset )
{
HB_ELSEIF_PTR pElseIf = ( HB_ELSEIF_PTR ) hb_xgrab( sizeof( HB_ELSEIF ) ), pLast;
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
pElseIf->ulOffset = ulOffset;
pElseIf->pPrev = NULL;
pElseIf->pElseif = NULL;
if( pFirst )
{
pLast = ( HB_ELSEIF_PTR ) pFirst;
while( pLast->pElseif )
pLast = pLast->pElseif;
pLast->pElseif = pElseIf;
}
else
{
if( pFunc->elseif )
{
pElseIf->pPrev = pFunc->elseif;
}
pFirst = pElseIf;
pFunc->elseif = pElseIf;
}
return pFirst;
}
static void hb_compElseIfFix( HB_COMP_DECL, void * pFixElseIfs )
{
HB_ELSEIF_PTR pFix = ( HB_ELSEIF_PTR ) pFixElseIfs;
HB_ELSEIF_PTR pDel;
HB_COMP_PARAM->functions.pLast->elseif = pFix->pPrev;
while( pFix )
{
hb_compGenJumpHere( pFix->ulOffset, HB_COMP_PARAM );
pDel = pFix;
pFix = pFix->pElseif;
hb_xfree( pDel );
}
}
void hb_compElseIfKill( PFUNCTION pFunc )
{
HB_ELSEIF_PTR pFix;
HB_ELSEIF_PTR pDel;
while( pFunc->elseif )
{
pFix = pFunc->elseif;
pFunc->elseif = pFix->pPrev;
while( pFix )
{
pDel = pFix;
pFix = pFix->pElseif;
hb_xfree( pDel );
}
}
}
static void hb_compRTVariableAdd( HB_COMP_DECL, HB_EXPR_PTR pVar, BOOL bPopInitValue )
{
HB_RTVAR_PTR pRTvar = ( HB_RTVAR_PTR ) hb_xgrab( sizeof( HB_RTVAR ) );
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
pRTvar->pVar = pVar;
pRTvar->bPopValue = bPopInitValue;
pRTvar->pNext = NULL;
pRTvar->pPrev = NULL;
if( pFunc->rtvars )
{
HB_RTVAR_PTR pLast = pFunc->rtvars;
while( pLast->pNext )
pLast = pLast->pNext;
pLast->pNext = pRTvar;
pRTvar->pPrev = pLast;
}
else
pFunc->rtvars = pRTvar;
}
static void hb_compRTVariableGen( HB_COMP_DECL, const char * szCreateFun )
{
USHORT usCount = 0;
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
HB_RTVAR_PTR pVar = pFunc->rtvars;
HB_RTVAR_PTR pDel;
/* generate the function call frame */
hb_compGenPushFunCall( szCreateFun, HB_COMP_PARAM );
/* push variable names to create */
while( pVar->pNext )
{
pVar->pVar = hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
pVar = pVar->pNext;
++usCount;
}
pVar->pVar = hb_compExprGenPush( pVar->pVar, HB_COMP_PARAM );
++usCount;
/* call function that will create either PUBLIC or PRIVATE variables */
if( usCount > 255 )
hb_compGenPCode3( HB_P_DO, HB_LOBYTE( usCount ), HB_HIBYTE( usCount ), HB_COMP_PARAM );
else
hb_compGenPCode2( HB_P_DOSHORT, ( BYTE ) usCount, HB_COMP_PARAM );
/* pop initial values */
while( pVar )
{
if( pVar->bPopValue )
HB_COMP_EXPR_DELETE( hb_compExprGenPop( pVar->pVar, HB_COMP_PARAM ) );
else
HB_COMP_EXPR_DELETE( pVar->pVar );
pDel = pVar;
pVar = pVar->pPrev;
hb_xfree( pDel );
}
pFunc->rtvars = NULL;
}
void hb_compRTVariableKill( HB_COMP_DECL, PFUNCTION pFunc )
{
HB_RTVAR_PTR pVar;
while( pFunc->rtvars )
{
pVar = pFunc->rtvars;
HB_COMP_EXPR_DELETE( pVar->pVar );
pFunc->rtvars = pVar->pPrev;
hb_xfree( pVar );
}
pFunc->rtvars = NULL;
}
static HB_EXPR_PTR hb_compArrayDimPush( HB_EXPR_PTR pInitValue, HB_COMP_DECL )
{
USHORT uCount = ( USHORT ) hb_compExprListLen( pInitValue );
if( uCount == 1 && hb_compExprIsInteger( pInitValue->value.asList.pExprList ) &&
hb_compExprAsInteger( pInitValue->value.asList.pExprList ) == 0 )
{
hb_compGenPCode3( HB_P_ARRAYGEN, 0, 0, HB_COMP_PARAM );
}
else
{
pInitValue = hb_compExprGenPush( pInitValue, HB_COMP_PARAM );
hb_compGenPCode3( HB_P_ARRAYDIM, HB_LOBYTE( uCount ), HB_HIBYTE( uCount ), HB_COMP_PARAM );
}
return pInitValue;
}
static void hb_compVariableDim( const char * szName, HB_EXPR_PTR pInitValue, HB_COMP_DECL )
{
if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE )
{
hb_compVariableAdd( HB_COMP_PARAM, szName, hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ) );
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( pInitValue, HB_COMP_PARAM ) );
hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( szName, NULL, HB_COMP_PARAM ), TRUE );
}
else if( HB_COMP_PARAM->iVarScope & VS_STATIC )
{
HB_EXPR_PTR pVar = hb_compExprNewVar( szName, HB_COMP_PARAM );
HB_EXPR_PTR pAssign;
/* create a static variable */
hb_compVariableAdd( HB_COMP_PARAM, szName, hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ) );
hb_compStaticDefStart( HB_COMP_PARAM ); /* switch to statics pcode buffer */
/* create an array */
pInitValue = hb_compArrayDimPush( pInitValue, HB_COMP_PARAM );
/* now pop an array */
pVar = hb_compExprGenPop( pVar, HB_COMP_PARAM );
/* check if valid initializers were used but don't generate any code */
pAssign = hb_compExprAssignStatic( pVar, pInitValue, HB_COMP_PARAM );
/* delete all used expressions */
HB_COMP_EXPR_DELETE( pAssign );
hb_compStaticDefEnd( HB_COMP_PARAM, szName );
}
else
{
hb_compVariableAdd( HB_COMP_PARAM, szName, hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ) );
HB_COMP_EXPR_DELETE( hb_compArrayDimPush( pInitValue, HB_COMP_PARAM ) );
if( HB_COMP_PARAM->iVarScope != VS_LOCAL ||
!( HB_COMP_PARAM->functions.pLast->funFlags & FUN_EXTBLOCK ) )
{
HB_COMP_EXPR_DELETE( hb_compExprGenPop( hb_compExprNewVar( szName, HB_COMP_PARAM ), HB_COMP_PARAM ) );
}
}
}
static void hb_compForStart( HB_COMP_DECL, const char *szVarName, BOOL bForEach )
{
HB_ENUMERATOR_PTR pEnumVar;
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
if( pEnumVar == NULL )
{
HB_COMP_PARAM->functions.pLast->pEnum = (HB_ENUMERATOR_PTR) hb_xgrab( sizeof(HB_ENUMERATOR) );
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
}
else
{
BOOL bWarn = TRUE;
HB_ENUMERATOR_PTR pLast = pEnumVar;
while( pEnumVar )
{
if( strcmp( pEnumVar->szName, szVarName ) == 0 )
{
/* Enumerator variable exists already - throw warning */
if( bWarn )
{
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_FORVAR_DUPL, szVarName, NULL );
bWarn = FALSE;
}
}
pLast = pEnumVar;
pEnumVar = pEnumVar->pNext;
}
pLast->pNext = (HB_ENUMERATOR_PTR) hb_xgrab( sizeof( HB_ENUMERATOR ) );
pEnumVar = pLast->pNext;
}
pEnumVar->szName = szVarName;
pEnumVar->bForEach = bForEach;
pEnumVar->pNext = NULL;
}
BOOL hb_compForEachVarError( HB_COMP_DECL, const char *szVarName )
{
HB_ENUMERATOR_PTR pEnumVar;
pEnumVar = HB_COMP_PARAM->functions.pLast->pEnum;
if( pEnumVar && !HB_COMP_PARAM->functions.pLast->bBlock )
{
while( pEnumVar )
{
if( strcmp( pEnumVar->szName, szVarName ) == 0 )
{
if( pEnumVar->bForEach )
{
/* only if it is FOR EACH enumerator
* generate warning if it is FOR/NEXT loop
*/
return FALSE;
}
}
pEnumVar = pEnumVar->pNext;
}
}
hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_ENUM_INVALID, szVarName, NULL );
return TRUE;
}
static void hb_compForEnd( HB_COMP_DECL, const char *szVar )
{
HB_ENUMERATOR_PTR * pEnumVar;
HB_SYMBOL_UNUSED( szVar );
pEnumVar = &HB_COMP_PARAM->functions.pLast->pEnum;
if( *pEnumVar )
{
while( ( *pEnumVar )->pNext )
pEnumVar = &( *pEnumVar )->pNext;
hb_xfree( *pEnumVar );
*pEnumVar = NULL;
}
}
static HB_CARGO2_FUNC( hb_compEnumEvalStart )
{
const char * szName = hb_compExprAsSymbol( ( HB_EXPR_PTR ) cargo );
if( szName )
hb_compForStart( HB_COMP_PARAM, szName, TRUE );
hb_compExprGenPush( ( HB_EXPR_PTR ) dummy, HB_COMP_PARAM ); /* expression */
hb_compExprGenPush( ( HB_EXPR_PTR ) cargo, HB_COMP_PARAM ); /* variable */
}
static void hb_compEnumStart( HB_COMP_DECL, HB_EXPR_PTR pVars, HB_EXPR_PTR pExprs, int descend )
{
ULONG ulLen;
if( hb_compExprListLen(pVars) != hb_compExprListLen(pExprs) )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FORVAR_DIFF, NULL, NULL );
}
ulLen = hb_compExprListEval2( HB_COMP_PARAM, pVars, pExprs, hb_compEnumEvalStart );
if( ulLen > 255 )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_FORVAR_TOOMANY, NULL, NULL );
}
else
{
hb_compGenPCode3( HB_P_ENUMSTART, ( BYTE ) ( ulLen & 0xFF ), ( BYTE ) ( descend > 0 ? 1 : 0 ), HB_COMP_PARAM );
}
}
static void hb_compEnumNext( HB_COMP_DECL, HB_EXPR_PTR pExpr, int descend )
{
HB_SYMBOL_UNUSED( pExpr );
if( descend > 0 )
{
hb_compGenPCode1( HB_P_ENUMNEXT, HB_COMP_PARAM );
}
else
{
hb_compGenPCode1( HB_P_ENUMPREV, HB_COMP_PARAM );
}
}
static HB_CARGO_FUNC( hb_compEnumEvalEnd )
{
const char * szName = hb_compExprAsSymbol( ( HB_EXPR_PTR ) cargo );
if( szName )
hb_compForEnd( HB_COMP_PARAM, szName );
}
static void hb_compEnumEnd( HB_COMP_DECL, HB_EXPR_PTR pExpr )
{
hb_compExprListEval( HB_COMP_PARAM, pExpr, hb_compEnumEvalEnd );
hb_compGenPCode1( HB_P_ENUMEND, HB_COMP_PARAM );
}
static void hb_compSwitchStart( HB_COMP_DECL, HB_EXPR_PTR pExpr )
{
HB_SWITCHCMD_PTR pSwitch = (HB_SWITCHCMD_PTR) hb_xgrab( sizeof( HB_SWITCHCMD ) );
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
pSwitch->pCases = NULL;
pSwitch->pLast = NULL;
pSwitch->ulDefault = 0;
pSwitch->ulOffset = pFunc->lPCodePos;
pSwitch->pExpr = pExpr;
pSwitch->pPrev = pFunc->pSwitch;
pFunc->pSwitch = pSwitch;
}
static void hb_compSwitchAdd( HB_COMP_DECL, HB_EXPR_PTR pExpr )
{
HB_SWITCHCASE_PTR pCase;
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
pFunc->funFlags &= ~FUN_BREAK_CODE;
if( pExpr )
{
/* normal CASE */
pCase = (HB_SWITCHCASE_PTR) hb_xgrab( sizeof( HB_SWITCHCASE ) );
pCase->ulOffset = pFunc->lPCodePos;
pCase->pNext = NULL;
pExpr = hb_compExprReduce( pExpr, HB_COMP_PARAM );
if( !( hb_compExprIsLong( pExpr ) || hb_compExprIsString( pExpr ) ) )
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_NOT_LITERAL_CASE, NULL, NULL );
pCase->pExpr = pExpr;
if( pFunc->pSwitch->pLast )
{
pFunc->pSwitch->pLast->pNext = pCase;
pFunc->pSwitch->pLast = pCase;
}
else
{
pFunc->pSwitch->pCases = pFunc->pSwitch->pLast = pCase;
}
if( hb_compExprIsString( pExpr ) && hb_compExprAsStringLen(pExpr) > 255 )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INVALID_STR, NULL, NULL );
}
}
else
{
/* DEFAULT */
if( pFunc->pSwitch->ulDefault )
{
/* more than one default clause */
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL );
}
else
{
pFunc->pSwitch->ulDefault = pFunc->lPCodePos;
}
}
}
static void hb_compSwitchEnd( HB_COMP_DECL )
{
PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast;
HB_SWITCHCMD_PTR pSwitch = pFunc->pSwitch;
HB_EXPR_PTR pExpr = pSwitch->pExpr;
HB_SWITCHCASE_PTR pCase, pTmp;
ULONG ulExitPos, ulCountPos;
int iCount = 0;
/* skip switch pcode if there was no EXIT in the last CASE
* or in the DEFAULT case
*/
ulExitPos = hb_compGenJump( 0, HB_COMP_PARAM );
hb_compGenJumpHere( pSwitch->ulOffset + 1, HB_COMP_PARAM );
pCase = pSwitch->pCases;
if( hb_compExprIsLong( pExpr ) || hb_compExprIsString( pExpr ) )
{
BOOL fGen = FALSE;
while( pCase )
{
if( hb_compExprIsLong( pCase->pExpr ) )
{
fGen = hb_compExprIsLong( pExpr ) &&
hb_compExprAsLongNum( pExpr ) ==
hb_compExprAsLongNum( pCase->pExpr );
}
else if( hb_compExprIsString( pCase->pExpr ) )
{
fGen = hb_compExprIsString( pExpr ) &&
hb_compExprAsStringLen( pExpr ) ==
hb_compExprAsStringLen( pCase->pExpr ) &&
memcmp( hb_compExprAsString( pExpr ),
hb_compExprAsString( pCase->pExpr ),
hb_compExprAsStringLen( pExpr ) ) == 0;
}
if( fGen )
{
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
pCase->ulOffset, HB_COMP_PARAM );
break;
}
pCase = pCase->pNext;
}
if( pSwitch->ulDefault && !fGen )
{
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
pSwitch->ulDefault, HB_COMP_PARAM );
}
}
else
{
BOOL fLongOptimize = HB_COMP_PARAM->fLongOptimize;
BOOL fMacroText = ( HB_COMP_PARAM->supported & HB_COMPFLAG_MACROTEXT ) != 0;
pExpr = hb_compExprGenPush( pExpr, HB_COMP_PARAM );
ulCountPos = pFunc->lPCodePos + 1;
hb_compGenPCode3( HB_P_SWITCH, 0, 0, HB_COMP_PARAM );
HB_COMP_PARAM->fLongOptimize = FALSE;
HB_COMP_PARAM->supported &= ~HB_COMPFLAG_MACROTEXT;
while( pCase )
{
if( hb_compExprIsLong( pCase->pExpr ) || hb_compExprIsString( pCase->pExpr ) )
{
iCount++;
pCase->pExpr = hb_compExprGenPush( pCase->pExpr, HB_COMP_PARAM );
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
pCase->ulOffset, HB_COMP_PARAM );
}
pCase = pCase->pNext;
}
if( pSwitch->ulDefault )
{
iCount++;
hb_compGenPCode1( HB_P_PUSHNIL, HB_COMP_PARAM );
hb_compGenJumpThere( hb_compGenJump( 0, HB_COMP_PARAM ),
pSwitch->ulDefault, HB_COMP_PARAM );
}
HB_PUT_LE_UINT16( pFunc->pCode + ulCountPos, iCount );
HB_COMP_PARAM->fLongOptimize = fLongOptimize;
if( fMacroText )
HB_COMP_PARAM->supported |= HB_COMPFLAG_MACROTEXT;
}
hb_compGenJumpHere( ulExitPos, HB_COMP_PARAM );
if( pExpr )
HB_COMP_EXPR_DELETE( pExpr );
pCase = pSwitch->pCases;
while( pCase )
{
HB_COMP_EXPR_DELETE( pCase->pExpr );
pTmp = pCase->pNext;
hb_xfree( (void *)pCase );
pCase = pTmp;
}
pFunc->pSwitch = pSwitch->pPrev;
hb_xfree( pSwitch );
}
/* Release all switch statements
*/
void hb_compSwitchKill( HB_COMP_DECL, PFUNCTION pFunc )
{
HB_SWITCHCASE_PTR pCase;
HB_SWITCHCMD_PTR pSwitch;
while( pFunc->pSwitch )
{
while( pFunc->pSwitch->pCases )
{
pCase = pFunc->pSwitch->pCases;
HB_COMP_EXPR_DELETE( pCase->pExpr );
pFunc->pSwitch->pCases = pCase->pNext;
hb_xfree( (void *) pCase );
}
pSwitch = pFunc->pSwitch;
pFunc->pSwitch = pSwitch->pPrev;
if( pSwitch->pExpr )
HB_COMP_EXPR_DELETE( pSwitch->pExpr );
hb_xfree( (void *) pSwitch );
}
}
static HB_EXPR_PTR hb_compCheckPassByRef( HB_COMP_DECL, HB_EXPR_PTR pExpr )
{
if( pExpr->ExprType == HB_ET_FUNCALL )
{
if( hb_compExprParamListLen( pExpr->value.asFunCall.pParms ) == 0 )
{
HB_EXPR_PTR pDelExpr = pExpr;
if( pExpr->value.asFunCall.pFunName->ExprType == HB_ET_MACRO )
{
pExpr = pExpr->value.asFunCall.pFunName;
HB_COMP_EXPR_CLEAR( pDelExpr );
}
else
{
pExpr = hb_compExprNewFunRef( hb_compExprAsSymbol( pExpr ), HB_COMP_PARAM );
HB_COMP_EXPR_DELETE( pDelExpr );
}
return pExpr;
}
else
{
const char * szDesc;
szDesc = hb_compExprAsSymbol( pExpr );
if( ! szDesc )
szDesc = hb_compExprDescription( pExpr );
return hb_compErrorRefer( HB_COMP_PARAM, pExpr, szDesc );
}
}
return pExpr;
}
/* ************************************************************************* */
BOOL hb_compCheckUnclosedStru( HB_COMP_DECL, PFUNCTION pFunc )
{
BOOL fUnclosed = TRUE;
if( pFunc->wIfCounter )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "IF", NULL );
pFunc->wIfCounter = 0;
}
else if( pFunc->wForCounter )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "FOR", NULL );
pFunc->wForCounter = 0;
}
else if( pFunc->wWhileCounter )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WHILE", NULL );
pFunc->wWhileCounter = 0;
}
else if( pFunc->wCaseCounter )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "CASE", NULL );
pFunc->wCaseCounter = 0;
}
else if( pFunc->wSwitchCounter )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "SWITCH", NULL );
pFunc->wSwitchCounter = 0;
}
else if( pFunc->wWithObjectCnt )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "WITH OBJECT", NULL );
pFunc->wWithObjectCnt = 0;
}
else if( pFunc->wSeqCounter )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "BEGIN SEQUENCE", NULL );
pFunc->wSeqCounter = 0;
}
else if( pFunc->funFlags & FUN_EXTBLOCK )
{
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_UNCLOSED_STRU, "{||...}", NULL );
pFunc->funFlags &= ~FUN_EXTBLOCK;
}
else
fUnclosed = FALSE;
return fUnclosed;
}
void yyerror( HB_COMP_DECL, const char * s )
{
if( !HB_COMP_PARAM->pLex->lasttok || HB_COMP_PARAM->pLex->lasttok[ 0 ] == '\n' )
{
if( HB_COMP_PARAM->iErrorCount == 0 || !hb_pp_eof( HB_COMP_PARAM->pLex->pPP ) )
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_INCOMPLETE_STMT, NULL, NULL );
}
else
hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_YACC, s, HB_COMP_PARAM->pLex->lasttok );
}