diff --git a/harbour/ChangeLog b/harbour/ChangeLog index eae320c7c6..b40303fd99 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,7 +8,18 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ -2009-01-18 21:39 UTC+0100 Francesco Saverio Giudice (info/at/fsgiudice.com) +2009-01-15 03:20 UTC+0200 Mindaugas Kavaliauskas (dbtopas/at/dbtopas.lt) + * harbour/include/hbcomp.h + * harbour/include/hbcompdf.h + * harbour/include/hbexprb.c + * harbour/source/compiler/harbour.y + * harbour/source/compiler/harbour.yyc + * harbour/source/compiler/harbour.yyh + * harbour/source/compiler/hbcomp.c + * harbour/source/compiler/hbmain.c + * removed global variables HB_COMP_PARAM->cVarType, ->szFromClass + +2009-01-14 21:39 UTC+0100 Francesco Saverio Giudice (info/at/fsgiudice.com) + harbour/source/rdd/usrrdd/example/exlog.prg + harbour/source/rdd/usrrdd/rdds/logrdd.prg * harbour/source/rdd/usrrdd/rdds/Makefile diff --git a/harbour/include/hbcomp.h b/harbour/include/hbcomp.h index c12765c40c..52929c9bd4 100644 --- a/harbour/include/hbcomp.h +++ b/harbour/include/hbcomp.h @@ -147,7 +147,8 @@ extern PINLINE hb_compInlineFind( HB_COMP_DECL, const char * szFunName ); extern PFUNCALL hb_compFunCallFind( HB_COMP_DECL, const char * szFunName ); /* locates a previously defined called function */ extern BOOL hb_compFunCallCheck( HB_COMP_DECL, const char *, int ); -extern void hb_compVariableAdd( HB_COMP_DECL, const char * szVarName, BYTE cType ); /* add a new param, local, static variable to a function definition or a public or private */ +extern PHB_VARTYPE hb_compVarTypeNew( HB_COMP_DECL, char cVarType, const char * szFromClass ); +extern void hb_compVariableAdd( HB_COMP_DECL, const char * szVarName, PHB_VARTYPE pVarType ); /* add a new param, local, static variable to a function definition or a public or private */ extern PVAR hb_compVariableFind( HB_COMP_DECL, const char * szVarName, int * piPos, int * piScope ); extern const char * hb_compLocalVariableName( PFUNCTION pFunc, USHORT wVar ); /* returns the name of local variable */ extern const char * hb_compStaticVariableName( HB_COMP_DECL, USHORT wVar ); /* returns the name of static variable */ @@ -164,7 +165,7 @@ extern PCOMCLASS hb_compClassAdd( HB_COMP_DECL, const char *, const char * ); extern PCOMCLASS hb_compClassFind( HB_COMP_DECL, const char * ); extern PCOMDECLARED hb_compMethodAdd( HB_COMP_DECL, PCOMCLASS pClass, const char * ); extern PCOMDECLARED hb_compMethodFind( PCOMCLASS pClass, const char * ); -extern void hb_compDeclaredParameterAdd( HB_COMP_DECL, const char * szVarName, BYTE cValueType ); +extern void hb_compDeclaredParameterAdd( HB_COMP_DECL, const char * szVarName, PHB_VARTYPE pVarType ); extern void hb_compGenBreak( HB_COMP_DECL ); /* generate code for BREAK statement */ diff --git a/harbour/include/hbcompdf.h b/harbour/include/hbcompdf.h index 60d2f7e354..e3b8f6ea8d 100644 --- a/harbour/include/hbcompdf.h +++ b/harbour/include/hbcompdf.h @@ -117,6 +117,13 @@ typedef struct HB_CBVAR_ struct HB_CBVAR_ * pNext; } HB_CBVAR, * HB_CBVAR_PTR; +typedef struct _HB_VARTYPE +{ + struct _HB_VARTYPE * pNext; + char cVarType; + const char * szFromClass; +} HB_VARTYPE, * PHB_VARTYPE; + /* value types seen at language level */ #define HB_EV_UNKNOWN 0x0000 @@ -627,6 +634,7 @@ typedef struct _HB_COMP INLINES inlines; PEXTERN externs; PAUTOOPEN autoopen; + PHB_VARTYPE pVarType; PCOMDECLARED pFirstDeclared; PCOMDECLARED pLastDeclared; @@ -659,12 +667,10 @@ typedef struct _HB_COMP const char * szAnnounce; char * szStdCh; /* standard definitions file name (-u) */ - const char * szFromClass; const char * szDeclaredFun; const char * szFile; /* Source file name of compiled module */ char szPrefix[ 20 ]; /* holds the prefix added to the generated symbol init function name (in C output currently) */ - char cVarType; /* current declared variable type */ char cDataListType; /* current declared variable list type */ char cCastType; /* current casting type */ diff --git a/harbour/include/hbexprb.c b/harbour/include/hbexprb.c index 3bb173a870..acc24140e2 100644 --- a/harbour/include/hbexprb.c +++ b/harbour/include/hbexprb.c @@ -4201,7 +4201,7 @@ static void hb_compExprCodeblockPush( HB_EXPR_PTR pSelf, BOOL bLateEval, HB_COMP pVar = pSelf->value.asCodeblock.pLocals; while( pVar ) { - hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, pVar->bType ); + hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, hb_compVarTypeNew( HB_COMP_PARAM, pVar->bType, NULL ) ); pVar =pVar->pNext; } } diff --git a/harbour/source/compiler/harbour.y b/harbour/source/compiler/harbour.y index 14a13876b8..b885924693 100644 --- a/harbour/source/compiler/harbour.y +++ b/harbour/source/compiler/harbour.y @@ -146,6 +146,7 @@ static void hb_compDebugStart( void ) { }; HB_EXPR_PTR macro; } value; } asMessage; + PHB_VARTYPE asVarType; }; %{ @@ -252,6 +253,7 @@ extern void yyerror( HB_COMP_DECL, const char * ); /* parsing error manageme %type ForVar ForList ForExpr ForArgs %type CBSTART %type SendId +%type AsType StrongType AsArrayType AsArray /* We cannot use destructors for expressions. The internal bison logic cannot @@ -300,10 +302,10 @@ Line : LINE NUM_LONG LITERAL Crlf $5.dealloc = FALSE; } ; -Function : FunScope FUNCTION IdentName { HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, $3, ( HB_SYMBOLSCOPE ) $1, 0 ); } Crlf - | FunScope PROCEDURE IdentName { HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, $3, ( HB_SYMBOLSCOPE ) $1, FUN_PROCEDURE ); } Crlf - | FunScope FUNCTION IdentName { HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, $3, ( HB_SYMBOLSCOPE ) $1, 0 ); HB_COMP_PARAM->iVarScope = VS_PARAMETER; } '(' Params ')' Crlf - | FunScope PROCEDURE IdentName { HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, $3, ( HB_SYMBOLSCOPE ) $1, FUN_PROCEDURE ); HB_COMP_PARAM->iVarScope = VS_PARAMETER;} '(' Params ')' Crlf +Function : FunScope FUNCTION IdentName { hb_compFunctionAdd( HB_COMP_PARAM, $3, ( HB_SYMBOLSCOPE ) $1, 0 ); } Crlf + | FunScope PROCEDURE IdentName { hb_compFunctionAdd( HB_COMP_PARAM, $3, ( HB_SYMBOLSCOPE ) $1, FUN_PROCEDURE ); } Crlf + | FunScope FUNCTION IdentName { hb_compFunctionAdd( HB_COMP_PARAM, $3, ( HB_SYMBOLSCOPE ) $1, 0 ); HB_COMP_PARAM->iVarScope = VS_PARAMETER; } '(' Params ')' Crlf + | FunScope PROCEDURE IdentName { hb_compFunctionAdd( HB_COMP_PARAM, $3, ( HB_SYMBOLSCOPE ) $1, FUN_PROCEDURE ); HB_COMP_PARAM->iVarScope = VS_PARAMETER;} '(' Params ')' Crlf ; FunScope : { $$ = HB_FS_PUBLIC; } @@ -318,38 +320,38 @@ Params : /*no parameters */ { $$ = 0; } | ParamList ',' EPSILON { HB_COMP_PARAM->functions.pLast->fVParams = TRUE; $$ = $1; } ; -AsType : /* not specified */ { HB_COMP_PARAM->cVarType = ' '; } +AsType : /* not specified */ { $$ = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); } | StrongType ; -AsArrayType: /* not specified */ { HB_COMP_PARAM->cVarType = ' '; } +AsArrayType: /* not specified */ { $$ = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); } | AsArray ; -StrongType : AS_NUMERIC { HB_COMP_PARAM->cVarType = 'N'; } - | AS_CHARACTER { HB_COMP_PARAM->cVarType = 'C'; } - | AS_DATE { HB_COMP_PARAM->cVarType = 'D'; } - | AS_LOGICAL { HB_COMP_PARAM->cVarType = 'L'; } - | AS_BLOCK { HB_COMP_PARAM->cVarType = 'B'; } - | AS_OBJECT { HB_COMP_PARAM->cVarType = 'O'; } - | AS_CLASS IdentName { HB_COMP_PARAM->cVarType = 'S'; HB_COMP_PARAM->szFromClass = $2; } - | AS_VARIANT { HB_COMP_PARAM->cVarType = ' '; } +StrongType : AS_NUMERIC { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'N', NULL ); } + | AS_CHARACTER { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'C', NULL ); } + | AS_DATE { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'D', NULL ); } + | AS_LOGICAL { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'L', NULL ); } + | AS_BLOCK { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'B', NULL ); } + | AS_OBJECT { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'O', NULL ); } + | AS_CLASS IdentName { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'S', $2 ); } + | AS_VARIANT { $$ = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); } | AsArray ; -AsArray : AS_ARRAY { HB_COMP_PARAM->cVarType = 'A'; } - | AS_NUMERIC_ARRAY { HB_COMP_PARAM->cVarType = 'n'; } - | AS_CHARACTER_ARRAY { HB_COMP_PARAM->cVarType = 'c'; } - | AS_DATE_ARRAY { HB_COMP_PARAM->cVarType = 'd'; } - | AS_LOGICAL_ARRAY { HB_COMP_PARAM->cVarType = 'l'; } - | AS_ARRAY_ARRAY { HB_COMP_PARAM->cVarType = 'a'; } - | AS_BLOCK_ARRAY { HB_COMP_PARAM->cVarType = 'b'; } - | AS_OBJECT_ARRAY { HB_COMP_PARAM->cVarType = 'o'; } - | AS_CLASS_ARRAY IdentName { HB_COMP_PARAM->cVarType = 's'; HB_COMP_PARAM->szFromClass = $2; } +AsArray : AS_ARRAY { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ); } + | AS_NUMERIC_ARRAY { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'n', NULL ); } + | AS_CHARACTER_ARRAY { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'c', NULL ); } + | AS_DATE_ARRAY { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'd', NULL ); } + | AS_LOGICAL_ARRAY { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'l', NULL ); } + | AS_ARRAY_ARRAY { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'a', NULL ); } + | AS_BLOCK_ARRAY { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'b', NULL ); } + | AS_OBJECT_ARRAY { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 'o', NULL ); } + | AS_CLASS_ARRAY IdentName { $$ = hb_compVarTypeNew( HB_COMP_PARAM, 's', $2 ); } ; -ParamList : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $1, HB_COMP_PARAM->cVarType ); $$ = 1; } - | ParamList ',' IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $3, HB_COMP_PARAM->cVarType ); $$++; } +ParamList : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $1, $2 ); $$ = 1; } + | ParamList ',' IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $3, $4 ); $$++; } ; /* NOTE: This allows the use of Expression as a statement. @@ -403,11 +405,9 @@ Statement : ExecFlow CrlfStmnt } HB_COMP_PARAM->functions.pLast->bFlags |= FUN_WITH_RETURN | FUN_BREAK_CODE; } - | RETURN { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; } + | RETURN { hb_compLinePushIfInside( HB_COMP_PARAM ); } Expression Crlf { - HB_COMP_PARAM->cVarType = ' '; - if( HB_COMP_PARAM->functions.pLast->wSeqCounter ) { hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL ); @@ -428,13 +428,13 @@ Statement : ExecFlow CrlfStmnt | PUBLIC { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PUBLIC; } ExtVarList { hb_compRTVariableGen( HB_COMP_PARAM, "__MVPUBLIC" ); - HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE; + HB_COMP_PARAM->iVarScope = VS_NONE; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } Crlf | PRIVATE { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->iVarScope = VS_PRIVATE; } ExtVarList { hb_compRTVariableGen( HB_COMP_PARAM, "__MVPRIVATE" ); - HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE; + HB_COMP_PARAM->iVarScope = VS_NONE; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; } Crlf | VarDefs @@ -836,7 +836,7 @@ SimpleExpression : | CodeBlock | Logical | SelfValue - | SelfValue {HB_COMP_PARAM->cVarType = ' ';} StrongType { $$ = $1; } + | SelfValue StrongType { $$ = $1; } | Array | ArrayAt | Hash @@ -846,12 +846,12 @@ SimpleExpression : | MacroExpr | VariableAt | FunCall - | FunCall {HB_COMP_PARAM->cVarType = ' ';} StrongType { $$ = $1; } + | FunCall StrongType { $$ = $1; } | IfInline | ObjectData - | ObjectData {HB_COMP_PARAM->cVarType = ' ';} StrongType { $$ = $1; } + | ObjectData StrongType { $$ = $1; } | ObjectMethod - | ObjectMethod {HB_COMP_PARAM->cVarType = ' ';} StrongType { $$ = $1; } + | ObjectMethod StrongType { $$ = $1; } | ExprAssign | ExprOperEq | ExprPostOp @@ -865,8 +865,8 @@ SimpleExpression : Expression : SimpleExpression | Variable | PareExpList - | Variable { HB_COMP_PARAM->cVarType = ' ';} StrongType { $$ = $1; } - | PareExpList { HB_COMP_PARAM->cVarType = ' ';} StrongType { $$ = $1; } + | Variable StrongType { $$ = $1; } + | PareExpList StrongType { $$ = $1; } | FunRef ; @@ -947,12 +947,12 @@ ExprAssign : NumValue INASSIGN Expression { $$ = hb_compExprAssign( $1, $ | AliasExpr INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); } | MacroVar INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); } | MacroExpr INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); } - | Variable INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';} - | VariableAt INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';} + | Variable INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); } + | VariableAt INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); } | PareExpList INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); } | IfInline INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); } | FunCall INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); } - | ObjectData INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';} + | ObjectData INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); } | ObjectMethod INASSIGN Expression { $$ = hb_compExprAssign( $1, $3, HB_COMP_PARAM ); } ; @@ -1035,8 +1035,8 @@ BlockVars : /* empty list */ { $$ = NULL; } | BlockVarList ',' EPSILON { $$ = $1; $0->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; } ; -BlockVarList : IdentName AsType { HB_COMP_PARAM->iVarScope = VS_LOCAL; $$ = hb_compExprCBVarAdd( $0, $1, HB_COMP_PARAM->cVarType, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; } - | BlockVarList ',' IdentName AsType { HB_COMP_PARAM->iVarScope = VS_LOCAL; $$ = hb_compExprCBVarAdd( $0, $3, HB_COMP_PARAM->cVarType, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; } +BlockVarList : IdentName AsType { HB_COMP_PARAM->iVarScope = VS_LOCAL; $$ = hb_compExprCBVarAdd( $0, $1, $2->cVarType, HB_COMP_PARAM ); } + | BlockVarList ',' IdentName AsType { HB_COMP_PARAM->iVarScope = VS_LOCAL; $$ = hb_compExprCBVarAdd( $0, $3, $4->cVarType, HB_COMP_PARAM ); } ; BlockExpList : Expression { $$ = hb_compExprAddCodeblockExpr( $-1, $1 ); } @@ -1070,7 +1070,7 @@ CodeBlock : BlockHead pVar = $1->value.asCodeblock.pLocals; while( pVar ) { - hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, pVar->bType ); + hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, hb_compVarTypeNew( HB_COMP_PARAM, pVar->bType, NULL ) ); pVar =pVar->pNext; } } @@ -1108,11 +1108,11 @@ IfInlineAlias : IfInline ALIASOP ; VarDefs : LOCAL { HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP_PARAM ); } - VarList Crlf { HB_COMP_PARAM->cVarType = ' '; } + VarList Crlf | STATIC { HB_COMP_PARAM->iVarScope = VS_STATIC; hb_compLinePush( HB_COMP_PARAM ); } - VarList Crlf { HB_COMP_PARAM->cVarType = ' '; } + VarList Crlf | THREAD STATIC { HB_COMP_PARAM->iVarScope = VS_TH_STATIC; hb_compLinePush( HB_COMP_PARAM ); } - VarList Crlf { HB_COMP_PARAM->cVarType = ' '; } + VarList Crlf | PARAMETERS { if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_USES_LOCAL_PARAMS ) hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_PARAMETERS_NOT_ALLOWED, NULL, NULL ); else @@ -1150,7 +1150,7 @@ ExtVarDef : VarDef } ; -VarDef : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $1, HB_COMP_PARAM->cVarType ); } +VarDef : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $1, $2 ); } { if( HB_COMP_PARAM->iVarScope & VS_STATIC ) { @@ -1168,12 +1168,10 @@ VarDef : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $1, HB_COMP_P } } | IdentName AsType { $$ = HB_COMP_PARAM->iVarScope; - hb_compVariableAdd( HB_COMP_PARAM, $1, HB_COMP_PARAM->cVarType ); + hb_compVariableAdd( HB_COMP_PARAM, $1, $2 ); } - INASSIGN {HB_COMP_PARAM->cVarType = ' ';} Expression + INASSIGN { ; } Expression { - HB_COMP_PARAM->cVarType = ' '; - HB_COMP_PARAM->iVarScope = $3; if( HB_COMP_PARAM->iVarScope & VS_STATIC ) { @@ -1216,53 +1214,48 @@ FieldsDef : FIELD { HB_COMP_PARAM->iVarScope = VS_FIELD; } FieldList InAlias Crlf { if( $4 ) hb_compFieldSetAlias( HB_COMP_PARAM, $4, $3 ); - HB_COMP_PARAM->cVarType = ' '; } ; -FieldList : IdentName AsType { $$=hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, $1, HB_COMP_PARAM->cVarType ); } - | FieldList ',' IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $3, HB_COMP_PARAM->cVarType ); } +FieldList : IdentName AsType { $$ = hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, $1, $2 ); } + | FieldList ',' IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $3, $4 ); } ; InAlias : /* no alias */ { $$ = NULL; } | IN IdentName { $$ = $2; } ; -MemvarDef : MEMVAR { HB_COMP_PARAM->iVarScope = VS_MEMVAR; } MemvarList Crlf { HB_COMP_PARAM->cVarType = ' '; } +MemvarDef : MEMVAR { HB_COMP_PARAM->iVarScope = VS_MEMVAR; } MemvarList Crlf ; -MemvarList : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $1, HB_COMP_PARAM->cVarType ); } - | MemvarList ',' IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $3, HB_COMP_PARAM->cVarType ); } +MemvarList : IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $1, $2 ); } + | MemvarList ',' IdentName AsType { hb_compVariableAdd( HB_COMP_PARAM, $3, $4 ); } ; Declaration: DECLARE IdentName '(' { hb_compDeclaredAdd( HB_COMP_PARAM, $2 ); HB_COMP_PARAM->szDeclaredFun = $2; } DecList ')' AsType Crlf { if( HB_COMP_PARAM->pLastDeclared ) { - HB_COMP_PARAM->pLastDeclared->cType = HB_COMP_PARAM->cVarType; + HB_COMP_PARAM->pLastDeclared->cType = $7->cVarType; - if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' ) + if ( toupper( $7->cVarType ) == 'S' ) { - HB_COMP_PARAM->pLastDeclared->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass ); + HB_COMP_PARAM->pLastDeclared->pClass = hb_compClassFind( HB_COMP_PARAM, $7->szFromClass ); if( ! HB_COMP_PARAM->pLastDeclared->pClass ) { - hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastDeclared->szName ); - HB_COMP_PARAM->pLastDeclared->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' ); + hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, $7->szFromClass, HB_COMP_PARAM->pLastDeclared->szName ); + HB_COMP_PARAM->pLastDeclared->cType = ( isupper( ( UCHAR ) $7->cVarType ) ? 'O' : 'o' ); } - - /* Resetting */ - HB_COMP_PARAM->szFromClass = NULL; } } HB_COMP_PARAM->szDeclaredFun = NULL; - HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE; } | DECLARE IdentName { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, $2, NULL ); } ClassInfo Crlf { HB_COMP_PARAM->iVarScope = VS_NONE; } | DECLARE_CLASS IdentName Crlf { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, $2, NULL ); HB_COMP_PARAM->iVarScope = VS_NONE; } | DECLARE_CLASS IdentName IdentName Crlf { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, $2, $3 ); HB_COMP_PARAM->iVarScope = VS_NONE; } | DECLARE_MEMBER DecMethod Crlf { HB_COMP_PARAM->iVarScope = VS_NONE; } - | DECLARE_MEMBER '{' AsType { HB_COMP_PARAM->cDataListType = HB_COMP_PARAM->cVarType; } DecDataList '}' Crlf { HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; } + | DECLARE_MEMBER '{' AsType { HB_COMP_PARAM->cDataListType = $3->cVarType; } DecDataList '}' Crlf { HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; } ; DecDataList: DecData @@ -1279,21 +1272,18 @@ DecMethod : IdentName '(' { HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_C { if( HB_COMP_PARAM->pLastMethod ) { - HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType; - if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' ) + HB_COMP_PARAM->pLastMethod->cType = $6->cVarType; + if ( toupper( $6->cVarType ) == 'S' ) { - HB_COMP_PARAM->pLastMethod->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass ); + HB_COMP_PARAM->pLastMethod->pClass = hb_compClassFind( HB_COMP_PARAM, $6->szFromClass ); if( ! HB_COMP_PARAM->pLastMethod->pClass ) { - hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastMethod->szName ); - HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' ); + hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, $6->szFromClass, HB_COMP_PARAM->pLastMethod->szName ); + HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( UCHAR ) $6->cVarType ) ? 'O' : 'o' ); } - - HB_COMP_PARAM->szFromClass = NULL; } } HB_COMP_PARAM->pLastMethod = NULL; - HB_COMP_PARAM->cVarType = ' '; } ; @@ -1302,21 +1292,23 @@ DecData : IdentName { HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_ if( HB_COMP_PARAM->pLastMethod ) { PCOMCLASS pClass; - char szSetData[ HB_SYMBOL_NAME_LEN + 1 ]; - int iLen; + char szSetData[ HB_SYMBOL_NAME_LEN + 1 ]; + int iLen; + char cVarType = $3->cVarType; /* List Type overrides if exists. */ - if( HB_COMP_PARAM->cDataListType ) HB_COMP_PARAM->cVarType = HB_COMP_PARAM->cDataListType; + if( HB_COMP_PARAM->cDataListType ) + cVarType = HB_COMP_PARAM->cDataListType; - HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType; - if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' ) + HB_COMP_PARAM->pLastMethod->cType = cVarType; + if ( toupper( cVarType ) == 'S' ) { - pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass ); + pClass = hb_compClassFind( HB_COMP_PARAM, $3->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, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastMethod->szName ); - HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' :'o' ); + hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, $3->szFromClass, HB_COMP_PARAM->pLastMethod->szName ); + HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( UCHAR ) cVarType ) ? 'O' :'o' ); } } else @@ -1331,24 +1323,22 @@ DecData : IdentName { HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_ 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 = HB_COMP_PARAM->cVarType; + 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] = HB_COMP_PARAM->cVarType; + HB_COMP_PARAM->pLastMethod->cParamTypes[0] = cVarType; HB_COMP_PARAM->pLastMethod->pParamClasses[0] = pClass; - if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' ) + if ( toupper( cVarType ) == 'S' ) { HB_COMP_PARAM->pLastMethod->pClass = pClass; - HB_COMP_PARAM->szFromClass = NULL; } } HB_COMP_PARAM->pLastMethod = NULL; - HB_COMP_PARAM->cVarType = ' '; } ; @@ -1365,20 +1355,20 @@ DummyArgList : DummyArgument DummyArgument : EmptyExpression { HB_COMP_EXPR_DELETE( $1 ); } ; -FormalList : IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $1, ( BYTE ) ( HB_COMP_PARAM->cVarType ) ); } - | '@' IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $2, ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ) ); } - | '@' IdentName '(' DummyArgList ')' { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $2, ( BYTE ) 'F' ); } - | FormalList ',' IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $3, ( BYTE ) ( HB_COMP_PARAM->cVarType ) ); } - | FormalList ',' '@' IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $4, ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ) ); } - | FormalList ',' '@' IdentName '(' DummyArgList ')' { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $4, ( BYTE ) 'F' ); } +FormalList : IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $1, $2 ); } + | '@' IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $2, hb_compVarTypeNew( HB_COMP_PARAM, $3->cVarType + VT_OFFSET_BYREF, NULL ) ); } + | '@' IdentName '(' DummyArgList ')' { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $2, hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); } + | FormalList ',' IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $3, $4 ); } + | FormalList ',' '@' IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $4, hb_compVarTypeNew( HB_COMP_PARAM, $5->cVarType + VT_OFFSET_BYREF, NULL ) ); } + | FormalList ',' '@' IdentName '(' DummyArgList ')' { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $4, hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); } ; -OptList : OPTIONAL IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $2, ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ) ); } - | OPTIONAL '@' IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $3, ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); } - | OPTIONAL '@' IdentName '(' DummyArgList ')' { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $3, ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); } - | OptList ',' OPTIONAL IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $4, ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ) ); } - | OptList ',' OPTIONAL '@' IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $5, ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); } - | OptList ',' OPTIONAL '@' IdentName '(' DummyArgList ')' { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $5, ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); } +OptList : OPTIONAL IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $2, hb_compVarTypeNew( HB_COMP_PARAM, $3->cVarType + VT_OFFSET_OPTIONAL, NULL ) ); } + | OPTIONAL '@' IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $3, hb_compVarTypeNew( HB_COMP_PARAM, $4->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); } + | OPTIONAL '@' IdentName '(' DummyArgList ')' { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $3, hb_compVarTypeNew( HB_COMP_PARAM, 'F' + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); } + | OptList ',' OPTIONAL IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $4, hb_compVarTypeNew( HB_COMP_PARAM, $5->cVarType + VT_OFFSET_OPTIONAL, NULL ) ); } + | OptList ',' OPTIONAL '@' IdentName AsType { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $5, hb_compVarTypeNew( HB_COMP_PARAM, $6->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); } + | OptList ',' OPTIONAL '@' IdentName '(' DummyArgList ')' { hb_compDeclaredParameterAdd( HB_COMP_PARAM, $5, hb_compVarTypeNew( HB_COMP_PARAM, 'F' + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF, NULL ) ); } ; ExecFlow : IfEndif @@ -2401,7 +2391,7 @@ static void hb_compVariableDim( const char * szName, HB_EXPR_PTR pInitValue, HB_ { if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE ) { - hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' ); + 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 ); } @@ -2411,7 +2401,7 @@ static void hb_compVariableDim( const char * szName, HB_EXPR_PTR pInitValue, HB_ HB_EXPR_PTR pAssign; /* create a static variable */ - hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' ); + 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 */ @@ -2426,7 +2416,7 @@ static void hb_compVariableDim( const char * szName, HB_EXPR_PTR pInitValue, HB_ } else { - hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' ); + 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->bFlags & FUN_EXTBLOCK ) ) diff --git a/harbour/source/compiler/harbour.yyc b/harbour/source/compiler/harbour.yyc index 9352f1c918..e4ba78e3e5 100644 --- a/harbour/source/compiler/harbour.yyc +++ b/harbour/source/compiler/harbour.yyc @@ -463,9 +463,10 @@ typedef union YYSTYPE HB_EXPR_PTR macro; } value; } asMessage; + PHB_VARTYPE asVarType; } /* Line 187 of yacc.c. */ -#line 469 "harboury.c" +#line 470 "harboury.c" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 @@ -475,7 +476,7 @@ typedef union YYSTYPE /* Copy the second part of user declarations. */ -#line 151 "harbour.y" +#line 152 "harbour.y" /* This must be placed after the above union - the union is * typedef-ined to YYSTYPE @@ -485,7 +486,7 @@ extern void yyerror( HB_COMP_DECL, const char * ); /* parsing error manageme /* Line 216 of yacc.c. */ -#line 489 "harboury.c" +#line 490 "harboury.c" #ifdef short # undef short @@ -700,16 +701,16 @@ union yyalloc /* YYFINAL -- State number of the termination state. */ #define YYFINAL 290 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 8849 +#define YYLAST 8873 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 133 /* YYNNTS -- Number of nonterminals. */ -#define YYNNTS 254 +#define YYNNTS 248 /* YYNRULES -- Number of rules. */ -#define YYNRULES 641 +#define YYNRULES 635 /* YYNRULES -- Number of states. */ -#define YYNSTATES 1019 +#define YYNSTATES 1013 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 @@ -792,80 +793,79 @@ static const yytype_uint16 yyprhs[] = 668, 674, 677, 680, 682, 686, 688, 690, 693, 696, 699, 702, 705, 707, 709, 713, 717, 720, 722, 724, 726, 731, 734, 735, 741, 744, 746, 748, 750, 752, - 754, 756, 758, 759, 763, 765, 767, 769, 771, 773, - 775, 777, 779, 781, 782, 786, 788, 790, 791, 795, - 797, 798, 802, 804, 806, 808, 810, 812, 814, 816, - 818, 820, 822, 824, 825, 829, 830, 834, 836, 838, - 840, 841, 843, 845, 847, 849, 851, 853, 855, 857, + 754, 756, 758, 761, 763, 765, 767, 769, 771, 773, + 775, 777, 779, 782, 784, 786, 789, 791, 794, 796, + 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, + 819, 822, 824, 826, 828, 829, 831, 833, 835, 837, + 839, 841, 843, 845, 847, 849, 851, 853, 855, 857, 859, 861, 863, 865, 867, 869, 871, 873, 875, 877, - 879, 881, 883, 885, 887, 889, 891, 893, 895, 897, - 899, 901, 903, 906, 909, 912, 915, 918, 921, 925, - 929, 933, 937, 941, 945, 949, 953, 957, 961, 965, - 969, 973, 977, 981, 985, 989, 993, 997, 1001, 1005, - 1009, 1013, 1017, 1021, 1025, 1029, 1033, 1035, 1037, 1039, - 1041, 1043, 1045, 1049, 1053, 1057, 1061, 1065, 1069, 1073, - 1077, 1081, 1085, 1089, 1093, 1097, 1101, 1105, 1109, 1113, - 1116, 1119, 1123, 1128, 1130, 1134, 1135, 1140, 1141, 1143, - 1145, 1149, 1152, 1157, 1159, 1163, 1164, 1165, 1171, 1172, - 1178, 1180, 1184, 1188, 1191, 1200, 1203, 1204, 1209, 1210, - 1215, 1216, 1222, 1223, 1228, 1230, 1234, 1236, 1240, 1242, - 1245, 1250, 1254, 1255, 1259, 1260, 1261, 1268, 1272, 1275, - 1278, 1282, 1287, 1288, 1294, 1297, 1302, 1303, 1306, 1307, - 1312, 1315, 1320, 1321, 1330, 1331, 1337, 1341, 1346, 1350, - 1351, 1359, 1361, 1365, 1367, 1370, 1372, 1375, 1376, 1383, - 1384, 1388, 1389, 1391, 1393, 1397, 1399, 1403, 1405, 1408, - 1412, 1418, 1423, 1429, 1437, 1441, 1446, 1453, 1459, 1466, - 1475, 1477, 1479, 1481, 1483, 1485, 1487, 1489, 1491, 1494, - 1498, 1502, 1507, 1508, 1509, 1516, 1517, 1522, 1523, 1524, - 1531, 1532, 1533, 1541, 1543, 1545, 1547, 1551, 1555, 1558, - 1563, 1565, 1567, 1569, 1570, 1574, 1576, 1579, 1580, 1581, - 1588, 1589, 1590, 1598, 1599, 1600, 1606, 1607, 1613, 1614, - 1615, 1623, 1625, 1627, 1629, 1631, 1632, 1633, 1634, 1647, - 1649, 1651, 1652, 1655, 1658, 1660, 1663, 1665, 1668, 1670, - 1672, 1674, 1678, 1681, 1683, 1685, 1689, 1690, 1691, 1692, - 1703, 1704, 1706, 1707, 1712, 1715, 1717, 1719, 1721, 1722, - 1727, 1729, 1732, 1733, 1739, 1740, 1747, 1749, 1752, 1753, - 1754, 1760, 1761, 1762, 1763, 1764, 1776, 1778, 1780, 1781, - 1784, 1785, 1789, 1791, 1792, 1796, 1800, 1802, 1805, 1807, - 1809, 1810, 1815, 1816, 1820, 1821, 1824, 1826, 1829, 1831, - 1834, 1838, 1840, 1842, 1844, 1846, 1848, 1849, 1856, 1858, - 1860, 1862 + 879, 881, 883, 885, 887, 889, 891, 894, 897, 900, + 903, 906, 909, 913, 917, 921, 925, 929, 933, 937, + 941, 945, 949, 953, 957, 961, 965, 969, 973, 977, + 981, 985, 989, 993, 997, 1001, 1005, 1009, 1013, 1017, + 1021, 1023, 1025, 1027, 1029, 1031, 1033, 1037, 1041, 1045, + 1049, 1053, 1057, 1061, 1065, 1069, 1073, 1077, 1081, 1085, + 1089, 1093, 1097, 1101, 1104, 1107, 1111, 1116, 1118, 1122, + 1123, 1128, 1129, 1131, 1133, 1137, 1140, 1145, 1147, 1151, + 1152, 1153, 1159, 1160, 1166, 1168, 1172, 1176, 1179, 1188, + 1191, 1192, 1197, 1198, 1203, 1204, 1210, 1211, 1216, 1218, + 1222, 1224, 1228, 1230, 1233, 1238, 1242, 1243, 1247, 1248, + 1249, 1256, 1260, 1263, 1266, 1270, 1275, 1276, 1282, 1285, + 1290, 1291, 1294, 1295, 1300, 1303, 1308, 1309, 1318, 1319, + 1325, 1329, 1334, 1338, 1339, 1347, 1349, 1353, 1355, 1358, + 1360, 1363, 1364, 1371, 1372, 1376, 1377, 1379, 1381, 1385, + 1387, 1391, 1393, 1396, 1400, 1406, 1411, 1417, 1425, 1429, + 1434, 1441, 1447, 1454, 1463, 1465, 1467, 1469, 1471, 1473, + 1475, 1477, 1479, 1482, 1486, 1490, 1495, 1496, 1497, 1504, + 1505, 1510, 1511, 1512, 1519, 1520, 1521, 1529, 1531, 1533, + 1535, 1539, 1543, 1546, 1551, 1553, 1555, 1557, 1558, 1562, + 1564, 1567, 1568, 1569, 1576, 1577, 1578, 1586, 1587, 1588, + 1594, 1595, 1601, 1602, 1603, 1611, 1613, 1615, 1617, 1619, + 1620, 1621, 1622, 1635, 1637, 1639, 1640, 1643, 1646, 1648, + 1651, 1653, 1656, 1658, 1660, 1662, 1666, 1669, 1671, 1673, + 1677, 1678, 1679, 1680, 1691, 1692, 1694, 1695, 1700, 1703, + 1705, 1707, 1709, 1710, 1715, 1717, 1720, 1721, 1727, 1728, + 1735, 1737, 1740, 1741, 1742, 1748, 1749, 1750, 1751, 1752, + 1764, 1766, 1768, 1769, 1772, 1773, 1777, 1779, 1780, 1784, + 1788, 1790, 1793, 1795, 1797, 1798, 1803, 1804, 1808, 1809, + 1812, 1814, 1817, 1819, 1822, 1826, 1828, 1830, 1832, 1834, + 1836, 1837, 1844, 1846, 1848, 1850 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { - 134, 0, -1, 135, -1, -1, 386, -1, 284, -1, - 137, -1, 149, -1, 136, -1, 1, 386, -1, 135, - 386, -1, 135, 284, -1, 135, 137, -1, 135, 149, - -1, 135, 136, -1, 135, 1, 386, -1, 71, 10, - 19, 386, -1, 71, 10, 19, 121, 19, 386, -1, - -1, 142, 3, 167, 138, 386, -1, -1, 142, 4, - 167, 139, 386, -1, -1, 142, 3, 167, 140, 125, - 143, 126, 386, -1, -1, 142, 4, 167, 141, 125, - 143, 126, 386, -1, -1, 12, -1, 25, -1, 26, + 134, 0, -1, 135, -1, -1, 380, -1, 278, -1, + 137, -1, 149, -1, 136, -1, 1, 380, -1, 135, + 380, -1, 135, 278, -1, 135, 137, -1, 135, 149, + -1, 135, 136, -1, 135, 1, 380, -1, 71, 10, + 19, 380, -1, 71, 10, 19, 121, 19, 380, -1, + -1, 142, 3, 167, 138, 380, -1, -1, 142, 4, + 167, 139, 380, -1, -1, 142, 3, 167, 140, 125, + 143, 126, 380, -1, -1, 142, 4, 167, 141, 125, + 143, 126, 380, -1, -1, 12, -1, 25, -1, 26, -1, -1, 105, -1, 148, -1, 148, 124, 105, -1, -1, 146, -1, -1, 147, -1, 80, -1, 76, -1, 78, -1, 79, -1, 75, -1, 81, -1, 77, 167, -1, 82, -1, 147, -1, 74, -1, 93, -1, 89, -1, 91, -1, 92, -1, 87, -1, 88, -1, 94, -1, 90, 167, -1, 167, 144, -1, 148, 124, 167, - 144, -1, 299, 158, -1, 261, 158, -1, 202, 158, + 144, -1, 293, 158, -1, 255, 158, -1, 202, 158, -1, 197, 158, -1, 215, 158, -1, 189, 158, -1, - 191, 158, -1, 259, 158, -1, 232, 158, -1, 231, - 158, -1, 242, 158, -1, 235, 158, -1, 234, 158, - -1, 377, 158, -1, 63, 158, -1, -1, 63, 150, - 223, 386, -1, 26, 158, -1, 44, 158, -1, 6, - 158, -1, -1, 6, 151, 223, 386, -1, -1, -1, - 30, 152, 269, 153, 386, -1, -1, -1, 61, 154, - 269, 155, 386, -1, 263, -1, 277, -1, 281, -1, - 23, 165, 386, -1, 24, 166, 386, -1, -1, 22, - 167, 156, 386, -1, 95, 157, 126, 386, -1, 19, - -1, 19, 113, 19, -1, -1, 159, 386, -1, 386, - -1, 149, -1, 284, -1, 136, -1, 161, -1, 1, - -1, 162, 3, 167, 386, -1, 162, 3, 167, 125, - 143, 126, 386, -1, 162, 4, 167, 386, -1, 162, - 4, 167, 125, 143, 126, 386, -1, -1, 12, -1, + 191, 158, -1, 253, 158, -1, 226, 158, -1, 225, + 158, -1, 236, 158, -1, 229, 158, -1, 228, 158, + -1, 371, 158, -1, 63, 158, -1, -1, 63, 150, + 219, 380, -1, 26, 158, -1, 44, 158, -1, 6, + 158, -1, -1, 6, 151, 219, 380, -1, -1, -1, + 30, 152, 263, 153, 380, -1, -1, -1, 61, 154, + 263, 155, 380, -1, 257, -1, 271, -1, 275, -1, + 23, 165, 380, -1, 24, 166, 380, -1, -1, 22, + 167, 156, 380, -1, 95, 157, 126, 380, -1, 19, + -1, 19, 113, 19, -1, -1, 159, 380, -1, 380, + -1, 149, -1, 278, -1, 136, -1, 161, -1, 1, + -1, 162, 3, 167, 380, -1, 162, 3, 167, 125, + 143, 126, 380, -1, 162, 4, 167, 380, -1, 162, + 4, 167, 125, 143, 126, 380, -1, -1, 12, -1, 25, -1, 26, -1, 160, -1, 163, 160, -1, -1, 163, -1, 167, -1, 165, 124, 167, -1, 167, -1, 166, 124, 167, -1, 5, -1, 48, -1, 47, -1, @@ -874,167 +874,166 @@ static const yytype_int16 yyrhs[] = 61, -1, 30, -1, 53, -1, 95, -1, 99, -1, 107, -1, 8, -1, 10, -1, 104, -1, 10, 36, -1, 8, 36, -1, 7, -1, 171, 36, -1, 19, - -1, 173, 36, -1, 254, 36, -1, 20, -1, 21, + -1, 173, 36, -1, 248, 36, -1, 20, -1, 21, -1, 176, 36, -1, 70, -1, 178, 36, -1, 127, - 248, 128, -1, 180, 36, -1, 180, 246, -1, 182, + 242, 128, -1, 180, 36, -1, 180, 240, -1, 182, 36, -1, 127, 106, 128, -1, 127, 186, 128, -1, - 184, 36, -1, 223, 106, 227, -1, 186, 124, 223, - 106, 227, -1, 167, -1, 167, 36, -1, 72, -1, - 73, -1, 189, 36, -1, 120, 259, -1, 191, 36, + 184, 36, -1, 219, 106, 221, -1, 186, 124, 219, + 106, 221, -1, 167, -1, 167, 36, -1, 72, -1, + 73, -1, 189, 36, -1, 120, 253, -1, 191, 36, -1, 51, 36, -1, 51, 36, 193, -1, 193, 188, - -1, 193, 170, -1, 193, 260, -1, 193, 190, -1, + -1, 193, 170, -1, 193, 254, -1, 193, 190, -1, 193, 192, -1, 193, 172, -1, 193, 174, -1, 193, 177, -1, 193, 175, -1, 193, 179, -1, 193, 181, - -1, 193, 183, -1, 193, 185, -1, 193, 262, -1, + -1, 193, 183, -1, 193, 185, -1, 193, 256, -1, 167, -1, 189, -1, 191, -1, 170, 195, -1, 190, - 195, -1, 192, 195, -1, 260, 195, -1, 172, 195, + 195, -1, 192, 195, -1, 254, 195, -1, 172, 195, -1, 174, 195, -1, 177, 195, -1, 175, 195, -1, 185, 195, -1, 179, 195, -1, 181, 195, -1, 183, - 195, -1, 199, 195, -1, 262, 195, -1, 206, 195, + 195, -1, 199, 195, -1, 256, 195, -1, 206, 195, -1, 214, 195, -1, 217, 195, -1, 188, 195, -1, - 193, 195, -1, 194, 195, -1, 170, 259, -1, 188, - 259, -1, 190, 259, -1, 192, 259, -1, 260, 259, - -1, 193, 259, -1, 168, 246, -1, 171, 246, -1, - 169, 246, -1, 173, 246, -1, 254, 246, -1, 176, - 246, -1, 184, 246, -1, 178, 246, -1, 187, 246, - -1, 196, 246, -1, 197, 246, -1, 189, 246, -1, - 191, 246, -1, 211, 246, -1, 215, 246, -1, 202, - 246, -1, 261, 246, -1, 259, 246, -1, 198, 36, + 193, 195, -1, 194, 195, -1, 170, 253, -1, 188, + 253, -1, 190, 253, -1, 192, 253, -1, 254, 253, + -1, 193, 253, -1, 168, 240, -1, 171, 240, -1, + 169, 240, -1, 173, 240, -1, 248, 240, -1, 176, + 240, -1, 184, 240, -1, 178, 240, -1, 187, 240, + -1, 196, 240, -1, 197, 240, -1, 189, 240, -1, + 191, 240, -1, 211, 240, -1, 215, 240, -1, 202, + 240, -1, 255, 240, -1, 253, 240, -1, 198, 36, -1, -1, 167, 125, 201, 207, 126, -1, 200, -1, -1, 189, 125, 203, 207, 126, -1, -1, 191, 125, 204, 207, 126, -1, 121, 200, -1, 202, 36, -1, - 210, -1, 207, 124, 210, -1, 227, -1, 209, -1, + 210, -1, 207, 124, 210, -1, 221, -1, 209, -1, 121, 167, -1, 121, 189, -1, 121, 196, -1, 121, - 211, -1, 121, 198, -1, 105, -1, 208, -1, 229, + 211, -1, 121, 198, -1, 105, -1, 208, -1, 223, 129, 212, -1, 213, 129, 212, -1, 129, 212, -1, 167, -1, 189, -1, 191, -1, 125, 121, 167, 126, -1, 211, 36, -1, -1, 211, 125, 216, 207, 126, -1, 215, 36, -1, 168, -1, 171, -1, 169, -1, - 173, -1, 254, -1, 176, -1, 178, -1, -1, 178, - 219, 146, -1, 180, -1, 182, -1, 184, -1, 196, - -1, 197, -1, 189, -1, 191, -1, 198, -1, 202, - -1, -1, 202, 220, 146, -1, 261, -1, 211, -1, - -1, 211, 221, 146, -1, 215, -1, -1, 215, 222, - 146, -1, 234, -1, 242, -1, 231, -1, 232, -1, - 233, -1, 243, -1, 244, -1, 245, -1, 218, -1, - 187, -1, 259, -1, -1, 187, 224, 146, -1, -1, - 259, 225, 146, -1, 205, -1, 105, -1, 223, -1, - -1, 223, -1, 167, -1, 196, -1, 189, -1, 191, - -1, 211, -1, 198, -1, 259, -1, 168, -1, 171, - -1, 169, -1, 173, -1, 254, -1, 176, -1, 178, + 173, -1, 248, -1, 176, -1, 178, -1, 178, 146, -1, 180, -1, 182, -1, 184, -1, 196, -1, 197, - -1, 189, -1, 191, -1, 187, -1, 198, -1, 259, - -1, 202, -1, 261, -1, 211, -1, 215, -1, 34, - -1, 35, -1, 229, 230, -1, 34, 223, -1, 35, - 223, -1, 29, 223, -1, 114, 223, -1, 113, 223, - -1, 168, 9, 223, -1, 171, 9, 223, -1, 169, - 9, 223, -1, 173, 9, 223, -1, 254, 9, 223, - -1, 176, 9, 223, -1, 178, 9, 223, -1, 180, - 9, 223, -1, 182, 9, 223, -1, 184, 9, 223, - -1, 196, 9, 223, -1, 197, 9, 223, -1, 189, - 9, 223, -1, 191, 9, 223, -1, 187, 9, 223, - -1, 198, 9, 223, -1, 259, 9, 223, -1, 261, - 9, 223, -1, 202, 9, 223, -1, 211, 9, 223, - -1, 215, 9, 223, -1, 229, 109, 223, -1, 229, - 54, 223, -1, 229, 55, 223, -1, 229, 56, 223, - -1, 229, 57, 223, -1, 229, 60, 223, -1, 229, - 59, 223, -1, 236, -1, 237, -1, 238, -1, 239, - -1, 240, -1, 241, -1, 223, 113, 223, -1, 223, - 114, 223, -1, 223, 115, 223, -1, 223, 116, 223, - -1, 223, 117, 223, -1, 223, 58, 223, -1, 223, - 27, 223, -1, 223, 28, 223, -1, 223, 31, 223, - -1, 223, 110, 223, -1, 223, 111, 223, -1, 223, - 49, 223, -1, 223, 50, 223, -1, 223, 32, 223, - -1, 223, 33, 223, -1, 223, 112, 223, -1, 223, - 109, 223, -1, 247, 130, -1, 131, 226, -1, 247, - 124, 226, -1, 247, 130, 131, 226, -1, 210, -1, - 248, 124, 210, -1, -1, 96, 250, 251, 132, -1, - -1, 105, -1, 252, -1, 252, 124, 105, -1, 167, - 144, -1, 252, 124, 167, 144, -1, 223, -1, 253, - 124, 223, -1, -1, -1, 249, 255, 253, 256, 128, - -1, -1, 249, 386, 257, 164, 128, -1, 223, -1, - 258, 124, 223, -1, 125, 258, 126, -1, 259, 36, - -1, 13, 125, 223, 124, 208, 124, 208, 126, -1, - 261, 36, -1, -1, 11, 264, 268, 386, -1, -1, - 12, 265, 268, 386, -1, -1, 107, 12, 266, 268, - 386, -1, -1, 53, 267, 283, 386, -1, 271, -1, - 268, 124, 271, -1, 270, -1, 269, 124, 270, -1, - 271, -1, 189, 144, -1, 189, 144, 9, 223, -1, - 189, 275, 145, -1, -1, 167, 144, 272, -1, -1, - -1, 167, 144, 273, 9, 274, 223, -1, 167, 275, - 145, -1, 276, 130, -1, 131, 223, -1, 276, 124, - 223, -1, 276, 130, 131, 223, -1, -1, 51, 278, - 279, 280, 386, -1, 167, 144, -1, 279, 124, 167, - 144, -1, -1, 52, 167, -1, -1, 42, 282, 283, - 386, -1, 167, 144, -1, 283, 124, 167, 144, -1, - -1, 83, 167, 125, 285, 294, 126, 144, 386, -1, - -1, 83, 167, 286, 289, 386, -1, 85, 167, 386, - -1, 85, 167, 167, 386, -1, 86, 290, 386, -1, - -1, 86, 127, 144, 287, 288, 128, 386, -1, 292, - -1, 288, 124, 292, -1, 290, -1, 289, 290, -1, - 292, -1, 289, 292, -1, -1, 167, 125, 291, 294, - 126, 144, -1, -1, 167, 293, 144, -1, -1, 297, - -1, 298, -1, 297, 124, 298, -1, 296, -1, 295, - 124, 296, -1, 227, -1, 167, 144, -1, 121, 167, - 144, -1, 121, 167, 125, 295, 126, -1, 297, 124, - 167, 144, -1, 297, 124, 121, 167, 144, -1, 297, - 124, 121, 167, 125, 295, 126, -1, 84, 167, 144, - -1, 84, 121, 167, 144, -1, 84, 121, 167, 125, - 295, 126, -1, 298, 124, 84, 167, 144, -1, 298, - 124, 84, 121, 167, 144, -1, 298, 124, 84, 121, - 167, 125, 295, 126, -1, 300, -1, 313, -1, 328, - -1, 334, -1, 364, -1, 346, -1, 351, -1, 383, - -1, 301, 311, -1, 301, 304, 311, -1, 301, 306, - 311, -1, 301, 306, 304, 311, -1, -1, -1, 14, - 258, 302, 386, 303, 164, -1, -1, 15, 386, 305, - 164, -1, -1, -1, 16, 307, 258, 386, 308, 164, - -1, -1, -1, 306, 16, 309, 258, 386, 310, 164, - -1, 312, -1, 18, -1, 17, -1, 318, 319, 314, - -1, 318, 324, 314, -1, 318, 314, -1, 318, 319, - 324, 314, -1, 315, -1, 40, -1, 17, -1, -1, - 37, 317, 386, -1, 316, -1, 316, 163, -1, -1, - -1, 38, 320, 258, 386, 321, 164, -1, -1, -1, - 319, 38, 322, 258, 386, 323, 164, -1, -1, -1, - 39, 325, 386, 326, 164, -1, -1, 324, 39, 327, - 386, 164, -1, -1, -1, 331, 258, 386, 329, 164, - 330, 332, -1, 43, -1, 333, -1, 41, -1, 17, - -1, -1, -1, -1, 45, 228, 338, 223, 335, 47, - 258, 339, 336, 386, 337, 340, -1, 109, -1, 9, - -1, -1, 48, 258, -1, 164, 341, -1, 46, -1, - 46, 167, -1, 17, -1, 17, 167, -1, 167, -1, - 196, -1, 342, -1, 343, 124, 342, -1, 121, 167, - -1, 223, -1, 344, -1, 345, 124, 344, -1, -1, - -1, -1, 98, 343, 52, 345, 347, 350, 348, 386, - 349, 340, -1, -1, 99, -1, -1, 357, 352, 358, - 353, -1, 357, 353, -1, 354, -1, 101, -1, 17, - -1, -1, 100, 356, 223, 386, -1, 355, -1, 355, - 163, -1, -1, 38, 223, 359, 386, 164, -1, -1, - 358, 38, 223, 360, 386, 164, -1, 361, -1, 358, - 361, -1, -1, -1, 39, 362, 386, 363, 164, -1, - -1, -1, -1, -1, 62, 365, 370, 386, 164, 366, - 373, 367, 371, 368, 369, -1, 67, -1, 17, -1, - -1, 69, 223, -1, -1, 372, 386, 164, -1, 66, - -1, -1, 374, 386, 164, -1, 375, 386, 164, -1, - 64, -1, 65, 167, -1, 189, -1, 191, -1, -1, - 68, 376, 378, 380, -1, -1, 97, 379, 380, -1, - -1, 69, 381, -1, 124, -1, 124, 382, -1, 382, - -1, 381, 124, -1, 381, 124, 382, -1, 167, -1, - 209, -1, 205, -1, 218, -1, 259, -1, -1, 102, - 223, 386, 384, 164, 385, -1, 103, -1, 17, -1, - 122, -1, 123, -1 + -1, 189, -1, 191, -1, 198, -1, 202, -1, 202, + 146, -1, 255, -1, 211, -1, 211, 146, -1, 215, + -1, 215, 146, -1, 228, -1, 236, -1, 225, -1, + 226, -1, 227, -1, 237, -1, 238, -1, 239, -1, + 218, -1, 187, -1, 253, -1, 187, 146, -1, 253, + 146, -1, 205, -1, 105, -1, 219, -1, -1, 219, + -1, 167, -1, 196, -1, 189, -1, 191, -1, 211, + -1, 198, -1, 253, -1, 168, -1, 171, -1, 169, + -1, 173, -1, 248, -1, 176, -1, 178, -1, 180, + -1, 182, -1, 184, -1, 196, -1, 197, -1, 189, + -1, 191, -1, 187, -1, 198, -1, 253, -1, 202, + -1, 255, -1, 211, -1, 215, -1, 34, -1, 35, + -1, 223, 224, -1, 34, 219, -1, 35, 219, -1, + 29, 219, -1, 114, 219, -1, 113, 219, -1, 168, + 9, 219, -1, 171, 9, 219, -1, 169, 9, 219, + -1, 173, 9, 219, -1, 248, 9, 219, -1, 176, + 9, 219, -1, 178, 9, 219, -1, 180, 9, 219, + -1, 182, 9, 219, -1, 184, 9, 219, -1, 196, + 9, 219, -1, 197, 9, 219, -1, 189, 9, 219, + -1, 191, 9, 219, -1, 187, 9, 219, -1, 198, + 9, 219, -1, 253, 9, 219, -1, 255, 9, 219, + -1, 202, 9, 219, -1, 211, 9, 219, -1, 215, + 9, 219, -1, 223, 109, 219, -1, 223, 54, 219, + -1, 223, 55, 219, -1, 223, 56, 219, -1, 223, + 57, 219, -1, 223, 60, 219, -1, 223, 59, 219, + -1, 230, -1, 231, -1, 232, -1, 233, -1, 234, + -1, 235, -1, 219, 113, 219, -1, 219, 114, 219, + -1, 219, 115, 219, -1, 219, 116, 219, -1, 219, + 117, 219, -1, 219, 58, 219, -1, 219, 27, 219, + -1, 219, 28, 219, -1, 219, 31, 219, -1, 219, + 110, 219, -1, 219, 111, 219, -1, 219, 49, 219, + -1, 219, 50, 219, -1, 219, 32, 219, -1, 219, + 33, 219, -1, 219, 112, 219, -1, 219, 109, 219, + -1, 241, 130, -1, 131, 220, -1, 241, 124, 220, + -1, 241, 130, 131, 220, -1, 210, -1, 242, 124, + 210, -1, -1, 96, 244, 245, 132, -1, -1, 105, + -1, 246, -1, 246, 124, 105, -1, 167, 144, -1, + 246, 124, 167, 144, -1, 219, -1, 247, 124, 219, + -1, -1, -1, 243, 249, 247, 250, 128, -1, -1, + 243, 380, 251, 164, 128, -1, 219, -1, 252, 124, + 219, -1, 125, 252, 126, -1, 253, 36, -1, 13, + 125, 219, 124, 208, 124, 208, 126, -1, 255, 36, + -1, -1, 11, 258, 262, 380, -1, -1, 12, 259, + 262, 380, -1, -1, 107, 12, 260, 262, 380, -1, + -1, 53, 261, 277, 380, -1, 265, -1, 262, 124, + 265, -1, 264, -1, 263, 124, 264, -1, 265, -1, + 189, 144, -1, 189, 144, 9, 219, -1, 189, 269, + 145, -1, -1, 167, 144, 266, -1, -1, -1, 167, + 144, 267, 9, 268, 219, -1, 167, 269, 145, -1, + 270, 130, -1, 131, 219, -1, 270, 124, 219, -1, + 270, 130, 131, 219, -1, -1, 51, 272, 273, 274, + 380, -1, 167, 144, -1, 273, 124, 167, 144, -1, + -1, 52, 167, -1, -1, 42, 276, 277, 380, -1, + 167, 144, -1, 277, 124, 167, 144, -1, -1, 83, + 167, 125, 279, 288, 126, 144, 380, -1, -1, 83, + 167, 280, 283, 380, -1, 85, 167, 380, -1, 85, + 167, 167, 380, -1, 86, 284, 380, -1, -1, 86, + 127, 144, 281, 282, 128, 380, -1, 286, -1, 282, + 124, 286, -1, 284, -1, 283, 284, -1, 286, -1, + 283, 286, -1, -1, 167, 125, 285, 288, 126, 144, + -1, -1, 167, 287, 144, -1, -1, 291, -1, 292, + -1, 291, 124, 292, -1, 290, -1, 289, 124, 290, + -1, 221, -1, 167, 144, -1, 121, 167, 144, -1, + 121, 167, 125, 289, 126, -1, 291, 124, 167, 144, + -1, 291, 124, 121, 167, 144, -1, 291, 124, 121, + 167, 125, 289, 126, -1, 84, 167, 144, -1, 84, + 121, 167, 144, -1, 84, 121, 167, 125, 289, 126, + -1, 292, 124, 84, 167, 144, -1, 292, 124, 84, + 121, 167, 144, -1, 292, 124, 84, 121, 167, 125, + 289, 126, -1, 294, -1, 307, -1, 322, -1, 328, + -1, 358, -1, 340, -1, 345, -1, 377, -1, 295, + 305, -1, 295, 298, 305, -1, 295, 300, 305, -1, + 295, 300, 298, 305, -1, -1, -1, 14, 252, 296, + 380, 297, 164, -1, -1, 15, 380, 299, 164, -1, + -1, -1, 16, 301, 252, 380, 302, 164, -1, -1, + -1, 300, 16, 303, 252, 380, 304, 164, -1, 306, + -1, 18, -1, 17, -1, 312, 313, 308, -1, 312, + 318, 308, -1, 312, 308, -1, 312, 313, 318, 308, + -1, 309, -1, 40, -1, 17, -1, -1, 37, 311, + 380, -1, 310, -1, 310, 163, -1, -1, -1, 38, + 314, 252, 380, 315, 164, -1, -1, -1, 313, 38, + 316, 252, 380, 317, 164, -1, -1, -1, 39, 319, + 380, 320, 164, -1, -1, 318, 39, 321, 380, 164, + -1, -1, -1, 325, 252, 380, 323, 164, 324, 326, + -1, 43, -1, 327, -1, 41, -1, 17, -1, -1, + -1, -1, 45, 222, 332, 219, 329, 47, 252, 333, + 330, 380, 331, 334, -1, 109, -1, 9, -1, -1, + 48, 252, -1, 164, 335, -1, 46, -1, 46, 167, + -1, 17, -1, 17, 167, -1, 167, -1, 196, -1, + 336, -1, 337, 124, 336, -1, 121, 167, -1, 219, + -1, 338, -1, 339, 124, 338, -1, -1, -1, -1, + 98, 337, 52, 339, 341, 344, 342, 380, 343, 334, + -1, -1, 99, -1, -1, 351, 346, 352, 347, -1, + 351, 347, -1, 348, -1, 101, -1, 17, -1, -1, + 100, 350, 219, 380, -1, 349, -1, 349, 163, -1, + -1, 38, 219, 353, 380, 164, -1, -1, 352, 38, + 219, 354, 380, 164, -1, 355, -1, 352, 355, -1, + -1, -1, 39, 356, 380, 357, 164, -1, -1, -1, + -1, -1, 62, 359, 364, 380, 164, 360, 367, 361, + 365, 362, 363, -1, 67, -1, 17, -1, -1, 69, + 219, -1, -1, 366, 380, 164, -1, 66, -1, -1, + 368, 380, 164, -1, 369, 380, 164, -1, 64, -1, + 65, 167, -1, 189, -1, 191, -1, -1, 68, 370, + 372, 374, -1, -1, 97, 373, 374, -1, -1, 69, + 375, -1, 124, -1, 124, 376, -1, 376, -1, 375, + 124, -1, 375, 124, 376, -1, 167, -1, 209, -1, + 205, -1, 218, -1, 253, -1, -1, 102, 219, 380, + 378, 164, 379, -1, 103, -1, 17, -1, 122, -1, + 123, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { - 0, 272, 272, 273, 276, 277, 278, 279, 280, 281, - 282, 283, 284, 285, 286, 287, 290, 295, 303, 303, - 304, 304, 305, 305, 306, 306, 309, 310, 311, 312, - 315, 316, 317, 318, 321, 322, 325, 326, 329, 330, - 331, 332, 333, 334, 335, 336, 337, 340, 341, 342, - 343, 344, 345, 346, 347, 348, 351, 352, 360, 361, - 362, 363, 364, 365, 371, 377, 378, 379, 380, 381, - 382, 383, 384, 386, 386, 392, 393, 394, 406, 406, + 0, 274, 274, 275, 278, 279, 280, 281, 282, 283, + 284, 285, 286, 287, 288, 289, 292, 297, 305, 305, + 306, 306, 307, 307, 308, 308, 311, 312, 313, 314, + 317, 318, 319, 320, 323, 324, 327, 328, 331, 332, + 333, 334, 335, 336, 337, 338, 339, 342, 343, 344, + 345, 346, 347, 348, 349, 350, 353, 354, 362, 363, + 364, 365, 366, 367, 373, 379, 380, 381, 382, 383, + 384, 385, 386, 388, 388, 394, 395, 396, 408, 408, 428, 430, 428, 434, 436, 434, 440, 441, 442, 443, 444, 445, 445, 459, 462, 470, 489, 489, 492, 493, 494, 495, 496, 497, 510, 511, 512, 513, 516, 517, @@ -1054,44 +1053,43 @@ static const yytype_uint16 yyrline[] = 768, 772, 775, 778, 779, 782, 783, 786, 787, 788, 789, 790, 793, 794, 799, 800, 801, 807, 808, 809, 812, 815, 820, 820, 823, 832, 833, 834, 835, 836, - 837, 838, 839, 839, 840, 841, 842, 843, 844, 845, - 846, 847, 848, 849, 849, 850, 851, 852, 852, 853, - 854, 854, 855, 856, 857, 858, 859, 860, 861, 862, - 865, 866, 867, 868, 868, 869, 869, 870, 873, 874, - 877, 878, 881, 882, 883, 884, 885, 886, 887, 894, - 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, - 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, - 920, 921, 924, 927, 928, 931, 932, 933, 936, 937, - 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, - 948, 949, 950, 951, 952, 953, 954, 955, 956, 959, - 962, 965, 968, 971, 974, 977, 980, 981, 982, 983, - 984, 985, 988, 989, 990, 991, 992, 993, 996, 997, - 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1011, - 1017, 1018, 1019, 1022, 1023, 1026, 1026, 1032, 1033, 1034, - 1035, 1038, 1039, 1042, 1043, 1047, 1050, 1046, 1053, 1052, - 1088, 1089, 1091, 1094, 1103, 1107, 1110, 1110, 1112, 1112, - 1114, 1114, 1116, 1116, 1126, 1127, 1130, 1131, 1139, 1140, - 1142, 1146, 1153, 1153, 1170, 1173, 1170, 1201, 1207, 1210, - 1211, 1212, 1215, 1215, 1223, 1224, 1227, 1228, 1231, 1231, - 1234, 1235, 1238, 1238, 1261, 1261, 1262, 1263, 1264, 1265, - 1265, 1268, 1269, 1272, 1273, 1274, 1275, 1278, 1278, 1300, - 1300, 1355, 1356, 1357, 1358, 1361, 1362, 1365, 1368, 1369, - 1370, 1371, 1372, 1373, 1376, 1377, 1378, 1379, 1380, 1381, - 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1394, 1395, - 1396, 1397, 1401, 1403, 1400, 1408, 1408, 1412, 1414, 1412, - 1422, 1424, 1422, 1433, 1441, 1442, 1445, 1449, 1453, 1456, - 1462, 1469, 1470, 1473, 1473, 1476, 1477, 1485, 1486, 1485, - 1497, 1498, 1497, 1510, 1510, 1510, 1512, 1512, 1517, 1522, - 1516, 1536, 1545, 1549, 1550, 1554, 1567, 1572, 1553, 1620, - 1621, 1624, 1625, 1628, 1636, 1637, 1638, 1639, 1642, 1643, - 1646, 1647, 1650, 1651, 1654, 1655, 1660, 1666, 1677, 1659, - 1697, 1698, 1702, 1701, 1714, 1721, 1729, 1730, 1734, 1733, - 1743, 1744, 1753, 1753, 1756, 1756, 1759, 1761, 1764, 1764, - 1764, 1769, 1777, 1788, 1798, 1768, 1829, 1830, 1833, 1834, - 1842, 1843, 1846, 1855, 1856, 1857, 1860, 1871, 1889, 1890, - 1894, 1893, 1901, 1900, 1911, 1912, 1915, 1916, 1917, 1918, - 1919, 1922, 1923, 1924, 1925, 1926, 1930, 1929, 1952, 1953, - 1956, 1957 + 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, + 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, + 857, 858, 859, 860, 861, 862, 865, 866, 867, 868, + 869, 870, 873, 874, 877, 878, 881, 882, 883, 884, + 885, 886, 887, 894, 895, 896, 897, 898, 899, 900, + 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, + 911, 912, 913, 914, 920, 921, 924, 927, 928, 931, + 932, 933, 936, 937, 938, 939, 940, 941, 942, 943, + 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, + 954, 955, 956, 959, 962, 965, 968, 971, 974, 977, + 980, 981, 982, 983, 984, 985, 988, 989, 990, 991, + 992, 993, 996, 997, 1000, 1001, 1002, 1003, 1004, 1005, + 1006, 1007, 1008, 1011, 1017, 1018, 1019, 1022, 1023, 1026, + 1026, 1032, 1033, 1034, 1035, 1038, 1039, 1042, 1043, 1047, + 1050, 1046, 1053, 1052, 1088, 1089, 1091, 1094, 1103, 1107, + 1110, 1110, 1112, 1112, 1114, 1114, 1116, 1116, 1126, 1127, + 1130, 1131, 1139, 1140, 1142, 1146, 1153, 1153, 1170, 1173, + 1170, 1199, 1205, 1208, 1209, 1210, 1213, 1213, 1220, 1221, + 1224, 1225, 1228, 1228, 1231, 1232, 1235, 1235, 1254, 1254, + 1255, 1256, 1257, 1258, 1258, 1261, 1262, 1265, 1266, 1267, + 1268, 1271, 1271, 1290, 1290, 1345, 1346, 1347, 1348, 1351, + 1352, 1355, 1358, 1359, 1360, 1361, 1362, 1363, 1366, 1367, + 1368, 1369, 1370, 1371, 1374, 1375, 1376, 1377, 1378, 1379, + 1380, 1381, 1384, 1385, 1386, 1387, 1391, 1393, 1390, 1398, + 1398, 1402, 1404, 1402, 1412, 1414, 1412, 1423, 1431, 1432, + 1435, 1439, 1443, 1446, 1452, 1459, 1460, 1463, 1463, 1466, + 1467, 1475, 1476, 1475, 1487, 1488, 1487, 1500, 1500, 1500, + 1502, 1502, 1507, 1512, 1506, 1526, 1535, 1539, 1540, 1544, + 1557, 1562, 1543, 1610, 1611, 1614, 1615, 1618, 1626, 1627, + 1628, 1629, 1632, 1633, 1636, 1637, 1640, 1641, 1644, 1645, + 1650, 1656, 1667, 1649, 1687, 1688, 1692, 1691, 1704, 1711, + 1719, 1720, 1724, 1723, 1733, 1734, 1743, 1743, 1746, 1746, + 1749, 1751, 1754, 1754, 1754, 1759, 1767, 1778, 1788, 1758, + 1819, 1820, 1823, 1824, 1832, 1833, 1836, 1845, 1846, 1847, + 1850, 1861, 1879, 1880, 1884, 1883, 1891, 1890, 1901, 1902, + 1905, 1906, 1907, 1908, 1909, 1912, 1913, 1914, 1915, 1916, + 1920, 1919, 1942, 1943, 1946, 1947 }; #endif @@ -1134,34 +1132,34 @@ static const char *const yytname[] = "VariableAt", "VariableAtAlias", "FunIdentCall", "@13", "FunCall", "@14", "@15", "FunRef", "FunCallAlias", "ArgList", "Argument", "RefArgument", "ExtArgument", "ObjectData", "SendId", "ObjectRef", "ObjectDataAlias", - "ObjectMethod", "@16", "ObjectMethodAlias", "SimpleExpression", "@17", - "@18", "@19", "@20", "Expression", "@21", "@22", "ExtExpression", - "EmptyExpression", "LValue", "LeftExpression", "PostOp", "ExprPostOp", - "ExprPreOp", "ExprUnary", "ExprAssign", "ExprEqual", "ExprPlusEq", - "ExprMinusEq", "ExprMultEq", "ExprDivEq", "ExprModEq", "ExprExpEq", - "ExprOperEq", "ExprMath", "ExprBool", "ExprRelation", "ArrayIndex", - "IndexList", "ElemList", "BlockHead", "@23", "BlockVars", "BlockVarList", - "BlockExpList", "CodeBlock", "@24", "@25", "@26", "ExpList", - "PareExpList", "PareExpListAlias", "IfInline", "IfInlineAlias", - "VarDefs", "@27", "@28", "@29", "@30", "VarList", "ExtVarList", - "ExtVarDef", "VarDef", "@31", "@32", "@33", "DimList", "DimIndex", - "FieldsDef", "@34", "FieldList", "InAlias", "MemvarDef", "@35", - "MemvarList", "Declaration", "@36", "@37", "@38", "DecDataList", - "ClassInfo", "DecMethod", "@39", "DecData", "@40", "DecList", - "DummyArgList", "DummyArgument", "FormalList", "OptList", "ExecFlow", - "IfEndif", "IfBegin", "@41", "@42", "IfElse", "@43", "IfElseIf", "@44", - "@45", "@46", "@47", "EndIf", "EndIfID", "DoCase", "EndCase", - "EndCaseID", "DoCaseStart", "@48", "DoCaseBegin", "Cases", "@49", "@50", - "@51", "@52", "Otherwise", "@53", "@54", "@55", "DoWhile", "@56", "@57", - "WhileBegin", "EndWhile", "EndWhileID", "ForNext", "@58", "@59", "@60", - "ForAssign", "StepExpr", "ForStatements", "EndForID", "ForVar", - "ForList", "ForExpr", "ForArgs", "ForEach", "@61", "@62", "@63", - "Descend", "DoSwitch", "@64", "EndSwitch", "EndSwitchID", "SwitchStart", - "@65", "SwitchBegin", "SwitchCases", "@66", "@67", "SwitchDefault", - "@68", "@69", "BeginSeq", "@70", "@71", "@72", "@73", "EndSeqID", - "BlockSeq", "AlwaysSeq", "Always", "RecoverSeq", "RecoverEmpty", - "RecoverUsing", "DoName", "DoProc", "@74", "@75", "DoArgs", "DoArgList", - "DoArgument", "WithObject", "@76", "EndWithID", "Crlf", 0 + "ObjectMethod", "@16", "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", "@17", "BlockVars", "BlockVarList", "BlockExpList", + "CodeBlock", "@18", "@19", "@20", "ExpList", "PareExpList", + "PareExpListAlias", "IfInline", "IfInlineAlias", "VarDefs", "@21", "@22", + "@23", "@24", "VarList", "ExtVarList", "ExtVarDef", "VarDef", "@25", + "@26", "@27", "DimList", "DimIndex", "FieldsDef", "@28", "FieldList", + "InAlias", "MemvarDef", "@29", "MemvarList", "Declaration", "@30", "@31", + "@32", "DecDataList", "ClassInfo", "DecMethod", "@33", "DecData", "@34", + "DecList", "DummyArgList", "DummyArgument", "FormalList", "OptList", + "ExecFlow", "IfEndif", "IfBegin", "@35", "@36", "IfElse", "@37", + "IfElseIf", "@38", "@39", "@40", "@41", "EndIf", "EndIfID", "DoCase", + "EndCase", "EndCaseID", "DoCaseStart", "@42", "DoCaseBegin", "Cases", + "@43", "@44", "@45", "@46", "Otherwise", "@47", "@48", "@49", "DoWhile", + "@50", "@51", "WhileBegin", "EndWhile", "EndWhileID", "ForNext", "@52", + "@53", "@54", "ForAssign", "StepExpr", "ForStatements", "EndForID", + "ForVar", "ForList", "ForExpr", "ForArgs", "ForEach", "@55", "@56", + "@57", "Descend", "DoSwitch", "@58", "EndSwitch", "EndSwitchID", + "SwitchStart", "@59", "SwitchBegin", "SwitchCases", "@60", "@61", + "SwitchDefault", "@62", "@63", "BeginSeq", "@64", "@65", "@66", "@67", + "EndSeqID", "BlockSeq", "AlwaysSeq", "Always", "RecoverSeq", + "RecoverEmpty", "RecoverUsing", "DoName", "DoProc", "@68", "@69", + "DoArgs", "DoArgList", "DoArgument", "WithObject", "@70", "EndWithID", + "Crlf", 0 }; #endif @@ -1217,44 +1215,43 @@ static const yytype_uint16 yyr1[] = 202, 205, 206, 207, 207, 208, 208, 209, 209, 209, 209, 209, 210, 210, 211, 211, 211, 212, 212, 212, 213, 214, 216, 215, 217, 218, 218, 218, 218, 218, - 218, 218, 219, 218, 218, 218, 218, 218, 218, 218, - 218, 218, 218, 220, 218, 218, 218, 221, 218, 218, - 222, 218, 218, 218, 218, 218, 218, 218, 218, 218, - 223, 223, 223, 224, 223, 225, 223, 223, 226, 226, - 227, 227, 228, 228, 228, 228, 228, 228, 228, 229, - 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, - 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, - 230, 230, 231, 232, 232, 233, 233, 233, 234, 234, - 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, - 234, 234, 234, 234, 234, 234, 234, 234, 234, 235, - 236, 237, 238, 239, 240, 241, 242, 242, 242, 242, - 242, 242, 243, 243, 243, 243, 243, 243, 244, 244, - 245, 245, 245, 245, 245, 245, 245, 245, 245, 246, - 247, 247, 247, 248, 248, 250, 249, 251, 251, 251, - 251, 252, 252, 253, 253, 255, 256, 254, 257, 254, - 258, 258, 259, 260, 261, 262, 264, 263, 265, 263, - 266, 263, 267, 263, 268, 268, 269, 269, 270, 270, - 270, 270, 272, 271, 273, 274, 271, 271, 275, 276, - 276, 276, 278, 277, 279, 279, 280, 280, 282, 281, - 283, 283, 285, 284, 286, 284, 284, 284, 284, 287, - 284, 288, 288, 289, 289, 289, 289, 291, 290, 293, - 292, 294, 294, 294, 294, 295, 295, 296, 297, 297, - 297, 297, 297, 297, 298, 298, 298, 298, 298, 298, - 299, 299, 299, 299, 299, 299, 299, 299, 300, 300, - 300, 300, 302, 303, 301, 305, 304, 307, 308, 306, - 309, 310, 306, 311, 312, 312, 313, 313, 313, 313, - 314, 315, 315, 317, 316, 318, 318, 320, 321, 319, - 322, 323, 319, 325, 326, 324, 327, 324, 329, 330, - 328, 331, 332, 333, 333, 335, 336, 337, 334, 338, - 338, 339, 339, 340, 341, 341, 341, 341, 342, 342, - 343, 343, 344, 344, 345, 345, 347, 348, 349, 346, - 350, 350, 352, 351, 351, 353, 354, 354, 356, 355, - 357, 357, 359, 358, 360, 358, 358, 358, 362, 363, - 361, 365, 366, 367, 368, 364, 369, 369, 370, 370, - 371, 371, 372, 373, 373, 373, 374, 375, 376, 376, - 378, 377, 379, 377, 380, 380, 381, 381, 381, 381, - 381, 382, 382, 382, 382, 382, 384, 383, 385, 385, - 386, 386 + 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, + 218, 218, 218, 218, 218, 218, 218, 218, 218, 218, + 218, 218, 218, 218, 218, 218, 219, 219, 219, 219, + 219, 219, 220, 220, 221, 221, 222, 222, 222, 222, + 222, 222, 222, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + 223, 223, 223, 223, 224, 224, 225, 226, 226, 227, + 227, 227, 228, 228, 228, 228, 228, 228, 228, 228, + 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, + 228, 228, 228, 229, 230, 231, 232, 233, 234, 235, + 236, 236, 236, 236, 236, 236, 237, 237, 237, 237, + 237, 237, 238, 238, 239, 239, 239, 239, 239, 239, + 239, 239, 239, 240, 241, 241, 241, 242, 242, 244, + 243, 245, 245, 245, 245, 246, 246, 247, 247, 249, + 250, 248, 251, 248, 252, 252, 253, 254, 255, 256, + 258, 257, 259, 257, 260, 257, 261, 257, 262, 262, + 263, 263, 264, 264, 264, 264, 266, 265, 267, 268, + 265, 265, 269, 270, 270, 270, 272, 271, 273, 273, + 274, 274, 276, 275, 277, 277, 279, 278, 280, 278, + 278, 278, 278, 281, 278, 282, 282, 283, 283, 283, + 283, 285, 284, 287, 286, 288, 288, 288, 288, 289, + 289, 290, 291, 291, 291, 291, 291, 291, 292, 292, + 292, 292, 292, 292, 293, 293, 293, 293, 293, 293, + 293, 293, 294, 294, 294, 294, 296, 297, 295, 299, + 298, 301, 302, 300, 303, 304, 300, 305, 306, 306, + 307, 307, 307, 307, 308, 309, 309, 311, 310, 312, + 312, 314, 315, 313, 316, 317, 313, 319, 320, 318, + 321, 318, 323, 324, 322, 325, 326, 327, 327, 329, + 330, 331, 328, 332, 332, 333, 333, 334, 335, 335, + 335, 335, 336, 336, 337, 337, 338, 338, 339, 339, + 341, 342, 343, 340, 344, 344, 346, 345, 345, 347, + 348, 348, 350, 349, 351, 351, 353, 352, 354, 352, + 352, 352, 356, 357, 355, 359, 360, 361, 362, 358, + 363, 363, 364, 364, 365, 365, 366, 367, 367, 367, + 368, 369, 370, 370, 372, 371, 373, 371, 374, 374, + 375, 375, 375, 375, 375, 376, 376, 376, 376, 376, + 378, 377, 379, 379, 380, 380 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ @@ -1287,44 +1284,43 @@ static const yytype_uint8 yyr2[] = 5, 2, 2, 1, 3, 1, 1, 2, 2, 2, 2, 2, 1, 1, 3, 3, 2, 1, 1, 1, 4, 2, 0, 5, 2, 1, 1, 1, 1, 1, - 1, 1, 0, 3, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 0, 3, 1, 1, 0, 3, 1, - 0, 3, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 0, 3, 0, 3, 1, 1, 1, - 0, 1, 1, 1, 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, 2, 2, 2, 2, 2, 2, 3, 3, + 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, 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, 0, 3, 0, 0, 6, 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, - 0, 4, 0, 3, 0, 2, 1, 2, 1, 2, - 3, 1, 1, 1, 1, 1, 0, 6, 1, 1, - 1, 1 + 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, + 3, 3, 3, 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, 0, 3, 0, 0, + 6, 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, 0, 4, 0, 3, 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 @@ -1332,35 +1328,35 @@ static const yytype_uint8 yyr2[] = means the default is an error. */ static const yytype_uint16 yydefact[] = { - 0, 0, 120, 78, 144, 139, 140, 426, 428, 0, + 0, 0, 120, 78, 144, 139, 140, 420, 422, 0, 0, 146, 149, 150, 129, 127, 128, 28, 124, 80, - 0, 0, 533, 458, 551, 123, 0, 122, 121, 452, - 125, 432, 83, 601, 73, 0, 152, 0, 165, 166, - 0, 126, 0, 0, 136, 405, 622, 0, 137, 588, - 0, 141, 138, 0, 640, 641, 0, 310, 0, 0, - 0, 8, 6, 0, 7, 163, 319, 321, 0, 320, - 0, 322, 0, 0, 324, 0, 325, 0, 326, 0, - 327, 0, 328, 0, 333, 0, 331, 0, 332, 0, - 0, 0, 329, 330, 334, 0, 236, 336, 0, 338, - 0, 0, 339, 0, 0, 96, 96, 96, 96, 376, - 377, 378, 379, 380, 381, 96, 415, 323, 335, 0, - 337, 0, 86, 87, 88, 5, 96, 500, 0, 501, - 0, 0, 502, 0, 503, 505, 506, 0, 582, 504, - 96, 507, 4, 9, 0, 77, 0, 143, 142, 0, + 0, 0, 527, 452, 545, 123, 0, 122, 121, 446, + 125, 426, 83, 595, 73, 0, 152, 0, 165, 166, + 0, 126, 0, 0, 136, 399, 616, 0, 137, 582, + 0, 141, 138, 0, 634, 635, 0, 304, 0, 0, + 0, 8, 6, 0, 7, 163, 313, 315, 0, 314, + 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, 236, 330, 0, 332, + 0, 0, 333, 0, 0, 96, 96, 96, 96, 370, + 371, 372, 373, 374, 375, 96, 409, 317, 329, 0, + 331, 0, 86, 87, 88, 5, 96, 494, 0, 495, + 0, 0, 496, 0, 497, 499, 500, 0, 576, 498, + 96, 501, 4, 9, 0, 77, 0, 143, 142, 0, 0, 0, 130, 132, 129, 127, 128, 124, 0, 134, 131, 123, 0, 135, 133, 136, 138, 0, 0, 0, - 265, 267, 266, 268, 270, 271, 274, 275, 276, 301, - 279, 280, 277, 278, 281, 282, 307, 286, 289, 300, - 420, 0, 294, 295, 296, 292, 293, 297, 298, 299, - 269, 512, 302, 285, 91, 0, 116, 0, 118, 75, - 0, 343, 344, 0, 0, 76, 163, 319, 321, 320, - 322, 324, 325, 326, 327, 328, 333, 314, 315, 313, - 330, 317, 336, 316, 339, 0, 0, 323, 318, 337, - 170, 0, 0, 0, 608, 0, 72, 618, 619, 620, - 0, 464, 0, 34, 0, 0, 94, 0, 407, 624, - 163, 331, 332, 569, 334, 338, 335, 570, 0, 0, - 0, 430, 0, 168, 0, 0, 252, 0, 0, 0, - 253, 246, 403, 311, 245, 0, 257, 258, 259, 256, + 265, 267, 266, 268, 270, 271, 273, 274, 275, 297, + 278, 279, 276, 277, 280, 281, 301, 284, 286, 296, + 414, 0, 290, 291, 292, 288, 289, 293, 294, 295, + 269, 506, 298, 283, 91, 0, 116, 0, 118, 75, + 0, 337, 338, 0, 0, 76, 163, 313, 315, 314, + 316, 318, 319, 320, 321, 322, 327, 308, 309, 307, + 324, 311, 330, 310, 333, 0, 0, 317, 312, 331, + 170, 0, 0, 0, 602, 0, 72, 612, 613, 614, + 0, 458, 0, 34, 0, 0, 94, 0, 401, 618, + 163, 325, 326, 563, 328, 332, 329, 564, 0, 0, + 0, 424, 0, 168, 0, 0, 252, 0, 0, 0, + 253, 246, 397, 305, 245, 0, 257, 258, 259, 256, 1, 0, 14, 12, 13, 11, 10, 0, 0, 164, 234, 0, 0, 215, 0, 0, 217, 186, 187, 188, 189, 209, 0, 145, 216, 193, 0, 147, 218, 194, @@ -1373,727 +1369,831 @@ static const yytype_uint16 yydefact[] = 188, 176, 207, 0, 214, 174, 0, 185, 208, 0, 224, 0, 61, 225, 0, 233, 201, 0, 242, 60, 230, 203, 0, 261, 262, 228, 0, 204, 0, 264, - 62, 229, 205, 340, 341, 0, 0, 0, 0, 0, - 0, 0, 0, 342, 67, 66, 70, 69, 68, 0, - 418, 0, 148, 219, 0, 423, 65, 232, 192, 213, - 0, 425, 59, 231, 202, 58, 0, 517, 525, 524, - 0, 0, 508, 523, 103, 428, 110, 124, 101, 99, - 112, 102, 0, 0, 100, 98, 532, 537, 543, 531, - 528, 530, 0, 0, 0, 0, 587, 586, 0, 584, - 585, 71, 0, 97, 34, 0, 434, 0, 0, 345, - 347, 346, 0, 241, 0, 0, 0, 0, 0, 0, + 62, 229, 205, 334, 335, 0, 0, 0, 0, 0, + 0, 0, 0, 336, 67, 66, 70, 69, 68, 0, + 412, 0, 148, 219, 0, 417, 65, 232, 192, 213, + 0, 419, 59, 231, 202, 58, 0, 511, 519, 518, + 0, 0, 502, 517, 103, 422, 110, 124, 101, 99, + 112, 102, 0, 0, 100, 98, 526, 531, 537, 525, + 522, 524, 0, 0, 0, 0, 581, 580, 0, 578, + 579, 71, 0, 97, 34, 0, 428, 0, 0, 339, + 341, 340, 0, 241, 47, 42, 39, 0, 40, 41, + 38, 43, 45, 52, 53, 49, 0, 50, 51, 48, + 54, 272, 46, 299, 282, 285, 287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 89, 0, 90, 34, 81, 436, 438, 534, 34, - 0, 560, 559, 0, 171, 34, 456, 0, 84, 0, - 0, 0, 624, 0, 462, 0, 0, 466, 47, 42, - 39, 0, 40, 41, 38, 43, 45, 52, 53, 49, - 0, 50, 51, 48, 54, 469, 35, 46, 477, 468, - 0, 0, 408, 34, 0, 409, 0, 623, 0, 0, - 0, 636, 0, 0, 422, 158, 247, 248, 249, 251, - 241, 250, 0, 159, 310, 310, 154, 15, 18, 20, - 310, 348, 308, 309, 400, 0, 399, 350, 349, 351, - 353, 354, 355, 356, 357, 362, 360, 310, 361, 310, - 358, 359, 363, 366, 367, 310, 255, 368, 370, 371, - 372, 373, 375, 374, 369, 254, 413, 416, 0, 352, - 364, 365, 515, 0, 509, 520, 0, 510, 0, 0, - 113, 0, 0, 540, 526, 0, 546, 527, 548, 0, - 598, 0, 596, 79, 0, 442, 36, 0, 0, 427, - 429, 310, 273, 304, 284, 288, 291, 388, 389, 390, - 395, 396, 393, 394, 387, 398, 391, 392, 397, 382, - 383, 384, 385, 386, 421, 513, 306, 92, 117, 119, - 439, 36, 0, 0, 460, 0, 459, 555, 454, 0, - 0, 0, 433, 0, 609, 0, 74, 621, 0, 16, - 481, 479, 0, 473, 475, 467, 44, 55, 0, 481, - 95, 93, 411, 406, 0, 626, 163, 307, 632, 300, - 0, 302, 625, 628, 0, 573, 574, 576, 571, 589, - 0, 0, 260, 0, 311, 161, 404, 0, 0, 0, - 0, 0, 243, 401, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 511, 0, 0, 0, 544, - 0, 529, 0, 0, 592, 0, 0, 583, 597, 449, - 443, 0, 447, 37, 0, 448, 435, 0, 0, 0, - 441, 437, 82, 34, 0, 457, 34, 453, 85, 602, - 0, 126, 0, 34, 0, 482, 483, 34, 474, 476, - 465, 479, 0, 471, 0, 410, 34, 627, 629, 572, - 0, 580, 0, 431, 310, 19, 30, 21, 30, 310, - 235, 402, 238, 240, 263, 414, 417, 419, 516, 518, - 0, 30, 104, 30, 106, 538, 0, 0, 0, 549, - 0, 599, 594, 445, 450, 0, 310, 514, 440, 461, - 0, 455, 613, 17, 0, 34, 34, 488, 34, 0, - 0, 480, 0, 0, 34, 412, 630, 575, 581, 577, - 639, 638, 637, 162, 31, 0, 32, 34, 0, 244, - 0, 521, 0, 0, 0, 545, 541, 547, 0, 0, - 0, 0, 0, 451, 0, 561, 616, 0, 603, 0, - 0, 34, 494, 310, 489, 0, 0, 34, 484, 0, - 472, 470, 478, 0, 0, 0, 56, 0, 519, 0, - 0, 0, 539, 0, 554, 553, 550, 552, 593, 600, - 0, 446, 424, 0, 556, 617, 610, 0, 0, 310, - 495, 487, 0, 485, 463, 34, 491, 0, 34, 578, - 23, 33, 34, 25, 522, 105, 107, 542, 595, 562, - 0, 612, 604, 0, 614, 615, 0, 310, 490, 310, - 492, 34, 497, 0, 57, 557, 0, 0, 496, 486, - 0, 310, 498, 0, 579, 0, 607, 606, 605, 611, - 493, 0, 566, 564, 563, 558, 499, 567, 565 + 0, 0, 0, 0, 0, 0, 300, 0, 0, 89, + 0, 90, 34, 81, 430, 432, 528, 34, 0, 554, + 553, 0, 171, 34, 450, 0, 84, 0, 0, 0, + 618, 0, 456, 0, 0, 460, 463, 35, 471, 462, + 0, 0, 402, 34, 0, 403, 0, 617, 0, 0, + 0, 630, 0, 0, 416, 158, 247, 248, 249, 251, + 241, 250, 0, 159, 304, 304, 154, 15, 18, 20, + 304, 342, 302, 303, 394, 0, 393, 344, 343, 345, + 347, 348, 349, 350, 351, 356, 354, 304, 355, 304, + 352, 353, 357, 360, 361, 304, 255, 362, 364, 365, + 366, 367, 369, 368, 363, 254, 407, 410, 0, 346, + 358, 359, 509, 0, 503, 514, 0, 504, 0, 0, + 113, 0, 0, 534, 520, 0, 540, 521, 542, 0, + 592, 0, 590, 79, 0, 436, 36, 0, 0, 421, + 423, 304, 44, 55, 382, 383, 384, 389, 390, 387, + 388, 381, 392, 385, 386, 391, 376, 377, 378, 379, + 380, 415, 507, 92, 117, 119, 433, 36, 0, 0, + 454, 0, 453, 549, 448, 0, 0, 0, 427, 0, + 603, 0, 74, 615, 0, 16, 475, 473, 0, 467, + 469, 461, 0, 475, 95, 93, 405, 400, 0, 620, + 163, 301, 626, 296, 0, 298, 619, 622, 0, 567, + 568, 570, 565, 583, 0, 0, 260, 0, 305, 161, + 398, 0, 0, 0, 0, 0, 243, 395, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 505, + 0, 0, 0, 538, 0, 523, 0, 0, 586, 0, + 0, 577, 591, 443, 437, 0, 441, 37, 0, 442, + 429, 0, 0, 0, 435, 431, 82, 34, 0, 451, + 34, 447, 85, 596, 0, 126, 0, 34, 0, 476, + 477, 34, 468, 470, 459, 473, 0, 465, 0, 404, + 34, 621, 623, 566, 0, 574, 0, 425, 304, 19, + 30, 21, 30, 304, 235, 396, 238, 240, 263, 408, + 411, 413, 510, 512, 0, 30, 104, 30, 106, 532, + 0, 0, 0, 543, 0, 593, 588, 439, 444, 0, + 304, 508, 434, 455, 0, 449, 607, 17, 0, 34, + 34, 482, 34, 0, 0, 474, 0, 0, 34, 406, + 624, 569, 575, 571, 633, 632, 631, 162, 31, 0, + 32, 34, 0, 244, 0, 515, 0, 0, 0, 539, + 535, 541, 0, 0, 0, 0, 0, 445, 0, 555, + 610, 0, 597, 0, 0, 34, 488, 304, 483, 0, + 0, 34, 478, 0, 466, 464, 472, 0, 0, 0, + 56, 0, 513, 0, 0, 0, 533, 0, 548, 547, + 544, 546, 587, 594, 0, 440, 418, 0, 550, 611, + 604, 0, 0, 304, 489, 481, 0, 479, 457, 34, + 485, 0, 34, 572, 23, 33, 34, 25, 516, 105, + 107, 536, 589, 556, 0, 606, 598, 0, 608, 609, + 0, 304, 484, 304, 486, 34, 491, 0, 57, 551, + 0, 0, 490, 480, 0, 304, 492, 0, 573, 0, + 601, 600, 599, 605, 487, 0, 560, 558, 557, 552, + 493, 561, 559 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { - -1, 59, 60, 458, 62, 757, 759, 758, 760, 63, - 895, 565, 792, 566, 567, 896, 459, 245, 144, 210, - 703, 243, 713, 519, 257, 209, 146, 460, 461, 462, - 770, 1003, 205, 207, 65, 170, 171, 68, 172, 70, + -1, 59, 60, 458, 62, 751, 753, 752, 754, 63, + 889, 566, 786, 567, 512, 890, 459, 245, 144, 210, + 699, 243, 709, 537, 257, 209, 146, 460, 461, 462, + 764, 997, 205, 207, 65, 170, 171, 68, 172, 70, 173, 72, 73, 174, 75, 175, 77, 176, 79, 177, 81, 178, 83, 279, 179, 85, 180, 87, 181, 89, 90, 91, 310, 182, 183, 184, 95, 96, 600, 185, - 617, 619, 186, 98, 761, 280, 281, 762, 187, 289, - 100, 101, 188, 625, 103, 189, 494, 496, 497, 498, - 754, 495, 518, 604, 284, 235, 191, 423, 192, 193, - 194, 195, 108, 109, 110, 111, 112, 113, 114, 196, - 197, 198, 199, 348, 304, 285, 116, 258, 574, 575, - 637, 200, 429, 769, 638, 275, 202, 119, 203, 121, - 122, 149, 150, 582, 242, 485, 525, 526, 486, 790, - 791, 912, 666, 667, 123, 241, 536, 711, 124, 214, - 530, 464, 720, 545, 728, 822, 722, 255, 729, 724, - 817, 814, 962, 963, 815, 816, 126, 127, 128, 517, - 798, 450, 772, 451, 643, 900, 774, 939, 452, 453, - 129, 470, 471, 130, 213, 131, 472, 651, 904, 780, - 943, 473, 652, 856, 782, 132, 783, 908, 133, 946, - 947, 134, 804, 980, 1005, 533, 954, 1004, 1014, 267, - 268, 746, 747, 135, 831, 933, 993, 889, 136, 478, - 479, 480, 137, 269, 138, 661, 860, 911, 662, 785, - 910, 139, 244, 872, 956, 996, 1008, 540, 982, 983, - 918, 919, 920, 249, 140, 542, 259, 577, 742, 743, - 141, 750, 892, 465 + 617, 619, 186, 98, 755, 280, 281, 756, 187, 289, + 100, 101, 188, 625, 103, 189, 748, 604, 284, 235, + 191, 423, 192, 193, 194, 195, 108, 109, 110, 111, + 112, 113, 114, 196, 197, 198, 199, 348, 304, 285, + 116, 258, 574, 575, 637, 200, 429, 763, 638, 275, + 202, 119, 203, 121, 122, 149, 150, 582, 242, 485, + 543, 544, 486, 784, 785, 906, 666, 667, 123, 241, + 554, 707, 124, 214, 548, 464, 716, 563, 722, 816, + 718, 255, 723, 720, 811, 808, 956, 957, 809, 810, + 126, 127, 128, 535, 792, 450, 766, 451, 643, 894, + 768, 933, 452, 453, 129, 470, 471, 130, 213, 131, + 472, 651, 898, 774, 937, 473, 652, 850, 776, 132, + 777, 902, 133, 940, 941, 134, 798, 974, 999, 551, + 948, 998, 1008, 267, 268, 740, 741, 135, 825, 927, + 987, 883, 136, 478, 479, 480, 137, 269, 138, 661, + 854, 905, 662, 779, 904, 139, 244, 866, 950, 990, + 1002, 558, 976, 977, 912, 913, 914, 249, 140, 560, + 259, 577, 736, 737, 141, 744, 886, 465 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ -#define YYPACT_NINF -708 +#define YYPACT_NINF -939 static const yytype_int16 yypact[] = { - 4630, 177, -708, 414, -708, 46, 80, 548, 230, -77, - 7415, -708, -708, -708, 4366, 4366, 4366, -708, 130, 703, - 7415, 7415, -708, 1061, -708, 414, 3741, -708, -708, 158, - -708, 1146, 1281, -708, 414, 301, -708, 97, -708, -708, - 4366, -708, 4366, 1887, 195, -708, -708, 3741, -708, -708, - 7415, -708, 308, 117, -708, -708, 7538, 6923, 8386, 329, - 4764, -708, -708, 577, -708, -5, 32, 54, 2680, 14, - 8386, 16, 8386, 8386, 18, 8386, 52, 8386, 75, 8386, - 33, 8386, 87, 8386, 57, 2680, 56, 2680, 90, 2680, - 7907, 8386, 65, 175, 44, 8386, -708, 42, 8386, 28, - 268, 8386, 100, 8386, 508, -708, -708, -708, -708, -708, - -708, -708, -708, -708, -708, -708, 177, 96, 106, 2680, - 146, 8386, -708, -708, -708, -708, -708, -708, 510, -708, - 5020, 466, -708, 7415, -708, -708, -708, 5147, 12, -708, - -708, -708, -708, -708, 7415, -708, 177, -708, -708, 4366, - 4366, 7415, -708, -708, -708, -708, -708, -708, 7415, -708, - -708, -708, 158, -708, -708, -708, -708, 7415, 7415, 4366, - 190, 248, 564, 665, 1591, 7961, 1785, 929, 2018, 8207, - 333, 1474, 1416, 1698, 1271, 8022, -708, 3383, 8084, -708, - 7955, 1328, -708, -708, -708, -708, -708, -708, -708, -708, - 2060, 224, 8145, 2119, -708, 331, -708, 357, -708, -708, - 8430, -708, -708, 177, 4366, -708, 184, 272, 272, -3, - 26, 40, 64, 66, 374, 99, 272, 199, 222, 209, - 272, -12, 144, 235, 164, 13, 287, 196, -4, 219, - 379, 4366, 4366, 8430, 358, 7415, -708, -708, -708, -708, - 420, 318, 3286, 8745, 323, 177, 378, 384, 8475, 446, - 372, 240, 276, 209, 482, 289, 226, -708, 155, 7415, - 1739, -708, 7415, -708, 4366, 232, -708, 428, 3741, -85, - -708, -708, -708, 2937, -708, 194, -708, -708, -708, -708, - -708, 177, -708, -708, -708, -708, -708, 4366, 4366, -708, - -708, 7415, 7046, -708, 143, 7415, -708, -708, -708, -708, - -708, -708, 7415, -708, -708, -708, 7415, -708, -708, -708, - -708, 7415, -708, -708, -708, 7415, -708, -708, -708, 7415, - -708, -708, -708, 7415, -708, -708, 7415, -708, -708, -708, - 7415, -708, -708, -708, 7415, -708, -708, -708, -708, -708, - -708, 7415, -708, -708, -708, -708, -708, -708, 46, 80, - 530, -708, 565, -708, 570, -708, -708, 580, -708, 600, - -708, 66, -708, 374, -708, 629, -708, -708, 636, -708, - 640, -708, -708, 642, 655, -708, 656, -708, -708, 7415, - -708, 7415, -708, -708, 7415, -708, -708, 7415, -708, -708, - -708, -708, 7415, -708, -708, -708, 8386, -708, 7415, -708, - -708, -708, -708, -708, -708, 7415, 7415, 7415, 7415, 7415, - 7415, 7415, 8386, -708, -708, -708, -708, -708, -708, 7415, - -708, 7415, -708, -708, 7415, -708, -708, -708, -708, -708, - 7415, -708, -708, -708, -708, -708, 177, -708, -708, -708, - 449, 559, -708, -708, -708, 535, -708, 213, -708, -708, - -708, -708, 645, 5274, -708, -708, -708, -708, -708, -708, - -708, -708, 593, 411, 463, 5401, -708, -708, 620, -708, - -708, -708, 1739, -708, 3504, 517, -708, 517, 3509, 4183, - -708, -708, 447, -708, 8745, 8745, 8745, 8745, 8745, 7415, - 7415, 7415, 7415, 7415, 7415, 7415, 7415, 7415, 7415, 7415, - 7415, 7415, 7415, 7415, 7415, 7415, 7415, 177, 8745, 177, - 4366, -708, 4366, -708, 3504, 473, -708, -708, -708, 8745, - 523, -708, -708, 7415, -708, 8745, 239, 523, 473, 7415, - 177, 1739, 446, 438, -708, 4366, 177, -708, -708, -708, - -708, 4366, -708, -708, -708, -708, -708, -708, -708, -708, - 4366, -708, -708, -708, -708, -708, -708, -708, -708, -708, - 610, 177, -708, 8745, 562, 566, 7169, -708, 7661, 3741, - 1739, -708, 4366, 536, -708, -708, 307, 199, 209, -12, - 9, 235, 7415, -708, 7415, 7292, -708, -708, 571, 572, - 7292, 7955, -708, 7955, -708, 7046, 567, 7955, 7955, 7955, - 7955, 7955, 7955, 7955, 7955, 7955, 7955, 7292, 7955, 7292, - 7955, 7955, 7955, 7955, 7955, 7292, -708, 7955, 7955, 7955, - 7955, 7955, 7955, 7955, 7955, -708, 7955, 579, 6798, 7955, - 7955, 7955, -708, 7415, -708, -708, 449, -708, 4366, 4366, - -708, 7415, 177, -708, -708, 411, -708, -708, -708, 7415, - -708, 418, -708, -708, 7415, 695, 654, 270, 4366, -708, - -708, 7784, -708, -708, -708, -708, -708, 8608, 7955, 4183, - 4183, 4183, 437, 437, 647, 4183, 437, 437, 437, 554, - 554, 344, 344, 344, 7955, -708, -708, -708, -708, -708, - 697, 654, 8430, 177, -708, 4366, -708, 7955, -708, 4366, - 4366, 177, -708, 177, 7955, 4434, -708, -708, 688, -708, - 2460, 323, 3286, -708, -708, -708, -708, -708, 4366, 2460, - -708, -708, -708, -708, 8539, 7784, 346, 558, -708, 561, - 7955, 4230, 584, -708, 4366, 7955, -708, 587, -708, -708, - 6163, 517, -708, 4161, 7955, -708, -708, 177, 588, 177, - 589, 246, -708, -708, 7046, 348, 376, 383, 7415, 590, - 4891, 603, 6290, 463, 7415, -708, -66, 391, 463, -708, - 7415, -708, 177, 6417, 7955, 177, 7415, -708, -708, 7955, - -708, 707, -708, -708, 7415, 601, -708, 611, 5528, 7415, - -708, -708, -708, 8745, 687, -708, 8745, -708, -708, -708, - 177, 3917, 4366, 8745, 614, 612, 625, 8745, -708, -708, - -708, -708, 366, -708, 626, -708, 8745, -708, 7784, 447, - 7661, 652, 169, -708, 7415, -708, 8584, -708, 8584, 7292, - -708, -708, -708, -708, -708, 7955, -708, -708, -708, -708, - 463, 8584, -708, 8584, -708, -708, 5909, 463, 5909, -708, - 177, -708, 7955, -708, 7955, 7415, 7784, -708, 7955, -708, - 7415, -708, 623, -708, 4366, 8745, 4491, -708, 8745, 8297, - 671, -708, 4366, 177, 8745, -708, -708, -708, -708, -708, - -708, -708, -708, -708, -708, 630, 637, 8745, 638, -708, - 5528, -708, 641, 643, 5655, -708, -708, -708, 275, 5782, - 5782, 177, 7415, 7955, 648, -20, -708, 4366, -708, 177, - 177, 8682, -708, 7415, -708, 177, 4366, 8745, 625, 8341, - -708, -708, -708, 177, 177, 8648, -708, 177, -708, 5528, - 177, 177, -708, 5655, -708, -708, -708, -708, -708, -708, - 5782, 7955, -708, 7415, -708, -708, 700, 6036, 6036, 7415, - -708, -708, 405, -708, -708, 8703, -708, 4366, 8745, -708, - -708, -708, 8745, -708, -708, -708, -708, -708, -708, 224, - 177, -708, -708, 177, -708, -708, 485, 7415, -708, 7415, - -708, 8724, -708, 6544, -708, -708, 19, 6671, -708, -708, - 489, 7415, -708, 21, -708, 6544, -708, -708, -708, -708, - -708, 501, 4366, 4366, -708, -708, -708, -708, -708 + 3752, 422, -939, 451, -939, 2, 25, 745, 496, -74, + 7465, -939, -939, -939, 8669, 8669, 8669, -939, 112, 787, + 7465, 7465, -939, 1199, -939, 451, 4561, -939, -939, 38, + -939, 1515, 1724, -939, 451, 305, -939, 99, -939, -939, + 8669, -939, 8669, 1630, 138, -939, -939, 4561, -939, -939, + 7465, -939, 76, 147, -939, -939, 7588, 7219, 8362, 277, + 4926, -939, -939, 424, -939, 213, 39, 45, 4370, 28, + 8362, 56, 8362, 8362, 57, 8362, 58, 8362, 69, 8362, + 20, 8362, 113, 8362, 53, 4370, 60, 4370, 91, 4370, + 3885, 8362, 101, 108, 44, 8362, -939, 98, 8362, 40, + 196, 8362, 102, 8362, 454, -939, -939, -939, -939, -939, + -939, -939, -939, -939, -939, -939, 422, 119, 131, 4370, + 169, 8362, -939, -939, -939, -939, -939, -939, 486, -939, + 5316, 370, -939, 7465, -939, -939, -939, 5443, 228, -939, + -939, -939, -939, -939, 7465, -939, 422, -939, -939, 8669, + 8669, 7465, -939, -939, -939, -939, -939, -939, 7465, -939, + -939, -939, 38, -939, -939, -939, -939, 7465, 7465, 8669, + 752, 830, 396, 611, 1739, 3324, 2001, 975, 2018, 8094, + 310, 1831, 2238, 2291, 1117, 7910, -939, 2812, 7971, -939, + 3939, 255, -939, -939, -939, -939, -939, -939, -939, -939, + 2034, 259, 8033, 2122, -939, 372, -939, 413, -939, -939, + 8406, -939, -939, 422, 8669, -939, 77, 248, 248, 4, + 14, 63, 68, 78, 376, 171, 248, 191, 211, -88, + 248, -3, 182, 227, 219, 27, 285, 224, -6, 229, + 297, 8669, 8669, 8406, 348, 7465, -939, -939, -939, -939, + 449, 346, 2379, 2046, 359, 422, 374, 380, 8451, 423, + 321, 192, 206, -88, 476, 222, 231, -939, 217, 7465, + 2928, -939, 7465, -939, 8669, 278, -939, 392, 4561, 312, + -939, -939, -939, 2651, -939, 338, -939, -939, -939, -939, + -939, 422, -939, -939, -939, -939, -939, 8669, 8669, -939, + -939, 7465, 3574, -939, 152, 7465, -939, -939, -939, -939, + -939, -939, 7465, -939, -939, -939, 7465, -939, -939, -939, + -939, 7465, -939, -939, -939, 7465, -939, -939, -939, 7465, + -939, -939, -939, 7465, -939, -939, 7465, -939, -939, -939, + 7465, -939, -939, -939, 7465, -939, -939, -939, -939, -939, + -939, 7465, -939, -939, -939, -939, -939, -939, 2, 25, + 493, -939, 502, -939, 521, -939, -939, 525, -939, 529, + -939, 78, -939, 376, -939, 548, -939, -939, 559, -939, + 567, -939, -939, 577, 586, -939, 587, -939, -939, 7465, + -939, 7465, -939, -939, 7465, -939, -939, 7465, -939, -939, + -939, -939, 7465, -939, -939, -939, 8362, -939, 7465, -939, + -939, -939, -939, -939, -939, 7465, 7465, 7465, 7465, 7465, + 7465, 7465, 8362, -939, -939, -939, -939, -939, -939, 7465, + -939, 7465, -939, -939, 7465, -939, -939, -939, -939, -939, + 7465, -939, -939, -939, -939, -939, 422, -939, -939, -939, + 590, 501, -939, -939, -939, 626, -939, 129, -939, -939, + -939, -939, 606, 5570, -939, -939, -939, -939, -939, -939, + -939, -939, 404, 342, 419, 5697, -939, -939, 573, -939, + -939, -939, 2928, -939, 4813, 425, -939, 425, 2497, 3435, + -939, -939, 397, -939, -939, -939, -939, 8669, -939, -939, + -939, -939, -939, -939, -939, -939, 8669, -939, -939, -939, + -939, -939, -939, -939, -939, -939, -939, 7465, 7465, 7465, + 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, 7465, + 7465, 7465, 7465, 7465, 7465, 422, -939, 422, 8669, -939, + 8669, -939, 4813, 500, -939, -939, -939, 2046, 447, -939, + -939, 7465, -939, 2046, 272, 447, 500, 7465, 422, 2928, + 423, 455, -939, 8669, 422, -939, -939, -939, -939, -939, + 609, 422, -939, 2046, 499, 508, 4190, -939, 7711, 4561, + 2928, -939, 8669, 491, -939, -939, 243, 191, -88, -3, + 66, 227, 7465, -939, 7465, 7342, -939, -939, 514, 515, + 7342, 3939, -939, 3939, -939, 3574, 510, 3939, 3939, 3939, + 3939, 3939, 3939, 3939, 3939, 3939, 3939, 7342, 3939, 7342, + 3939, 3939, 3939, 3939, 3939, 7342, -939, 3939, 3939, 3939, + 3939, 3939, 3939, 3939, 3939, -939, 3939, 509, 7094, 3939, + 3939, 3939, -939, 7465, -939, -939, 590, -939, 8669, 8669, + -939, 7465, 422, -939, -939, 342, -939, -939, -939, 7465, + -939, 288, -939, -939, 7465, 634, 600, 330, 8669, -939, + -939, 7834, -939, -939, 4588, 3939, 3435, 3435, 3435, 657, + 657, 593, 3435, 657, 657, 657, 366, 366, 332, 332, + 332, 3939, -939, -939, -939, -939, 639, 600, 8406, 422, + -939, 8669, -939, 3939, -939, 8669, 8669, 422, -939, 422, + 3939, 5189, -939, -939, 633, -939, 8184, 359, 2379, -939, + -939, -939, 8669, 8184, -939, -939, -939, -939, 8515, 7834, + 270, 458, -939, 464, 3939, 4432, 530, -939, 8669, 3939, + -939, 531, -939, -939, 6459, 425, -939, 2748, 3939, -939, + -939, 422, 528, 422, 532, 333, -939, -939, 3574, 434, + 466, 467, 7465, 535, 5053, 536, 6586, 419, 7465, -939, + 172, 401, 419, -939, 7465, -939, 422, 6713, 3939, 422, + 7465, -939, -939, 3939, -939, 647, -939, -939, 7465, 538, + -939, 549, 5824, 7465, -939, -939, -939, 2046, 612, -939, + 2046, -939, -939, -939, 422, 8228, 8669, 2046, 546, 551, + 552, 2046, -939, -939, -939, -939, 362, -939, 569, -939, + 2046, -939, 7834, 397, 7711, 578, 200, -939, 7465, -939, + 8560, -939, 8560, 7342, -939, -939, -939, -939, -939, 3939, + -939, -939, -939, -939, 419, 8560, -939, 8560, -939, -939, + 6205, 419, 6205, -939, 422, -939, 3939, -939, 3939, 7465, + 7834, -939, 3939, -939, 7465, -939, 554, -939, 8669, 2046, + 4681, -939, 2046, 8273, 594, -939, 8669, 422, 2046, -939, + -939, -939, -939, -939, -939, -939, -939, -939, -939, 570, + 575, 2046, 571, -939, 5824, -939, 574, 576, 5951, -939, + -939, -939, 322, 6078, 6078, 422, 7465, 3939, 582, 175, + -939, 8669, -939, 422, 422, 8706, -939, 7465, -939, 422, + 8669, 2046, 552, 8317, -939, -939, -939, 422, 422, 8624, + -939, 422, -939, 5824, 422, 422, -939, 5951, -939, -939, + -939, -939, -939, -939, 6078, 3939, -939, 7465, -939, -939, + 635, 6332, 6332, 7465, -939, -939, 470, -939, -939, 8727, + -939, 8669, 2046, -939, -939, -939, 2046, -939, -939, -939, + -939, -939, -939, 259, 422, -939, -939, 422, -939, -939, + 474, 7465, -939, 7465, -939, 8748, -939, 6840, -939, -939, + 15, 6967, -939, -939, 475, 7465, -939, 17, -939, 6840, + -939, -939, -939, -939, -939, 478, 8669, 8669, -939, -939, + -939, -939, -939 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { - -708, -708, -708, 34, 708, -708, -708, -708, -708, -708, - -407, -480, 72, 157, -370, -708, 251, -708, -708, -708, - -708, -708, -708, -708, -708, 415, -708, -457, -708, -708, - 180, -524, -708, -708, 3155, 1093, 1329, 685, 254, 689, - 315, 691, 692, 352, 698, 498, 701, 596, 702, 663, - 705, 754, 709, -708, 1427, 712, 0, 713, 71, 714, - 537, -708, 2792, 1501, 1643, 1666, -708, -166, -708, 1858, - -708, -708, -568, -708, -141, -661, -567, -55, 1881, -376, - -708, -708, 2000, -708, -708, -565, -708, -708, -708, -708, - 3829, -708, -708, -588, -578, -708, 2063, -708, 2122, 2183, - -708, 2246, -708, -708, -708, -708, -708, -708, -708, 2379, - -708, -708, -708, 3429, -708, -708, -708, -708, -708, -708, - -708, 825, -708, -708, -708, -9, 151, 715, 1015, 716, - -708, -708, -708, -708, -708, -145, 542, 85, -203, -708, - -708, -708, 273, -708, -708, -708, -708, -708, -708, -708, - 568, 294, -708, -708, -708, -708, -708, -533, -708, -707, - -708, 78, -576, -179, -708, -70, -708, -708, -708, -708, - -708, 360, -708, -708, -708, -708, -708, -708, -437, -708, - -708, -453, -708, -708, -708, -708, -708, -708, -708, -708, - -708, 341, -708, -708, -708, -708, -708, -708, -708, -708, - -708, -708, -708, -708, -708, -708, -708, -189, -708, 238, - -708, -11, -708, -708, -708, -708, -708, -708, -708, -708, - 159, -708, -708, -708, -708, -708, -708, -708, 161, -708, - -708, -708, -708, -708, -708, -708, -708, -708, -708, -708, - -708, -708, -708, -708, -708, -708, -708, 281, -708, -625, - -708, -708, -708, 3199 + -939, -939, -939, 273, 643, -939, -939, -939, -939, -939, + -371, -400, 7, -171, -638, -939, 301, -939, -939, -939, + -939, -939, -939, -939, -939, 178, -939, -457, -939, -939, + 286, -518, -939, -939, 3422, 1257, 1337, 620, 261, 622, + 328, 623, 624, 438, 627, 507, 630, 589, 631, 658, + 632, 819, 638, -939, 1460, 641, 0, 642, 71, 644, + 483, -939, 8671, 1567, 1689, 1787, -939, -166, -939, 1804, + -939, -939, -566, -939, -573, -664, -565, -55, 1981, -367, + -939, -939, 2172, -939, -939, -554, 4019, -578, -582, -939, + 2243, -939, 2308, 2353, -939, 2376, -939, -939, -939, -939, + -939, -939, -939, 2537, -939, -939, -939, 4647, -939, -939, + -939, -939, -939, -939, -939, 1000, -939, -939, -939, -9, + 151, 648, 1080, 649, -939, -939, -939, -939, -939, -145, + 482, 31, -201, -939, -939, -939, 195, -939, -939, -939, + -939, -939, -939, -939, 503, 343, -939, -939, -939, -939, + -939, -550, -939, -697, -939, 10, -938, -240, -939, -130, + -939, -939, -939, -939, -939, 295, -939, -939, -939, -939, + -939, -939, -431, -939, -939, -449, -939, -939, -939, -939, + -939, -939, -939, -939, -939, 275, -939, -939, -939, -939, + -939, -939, -939, -939, -939, -939, -939, -939, -939, -939, + -939, -250, -939, 173, -939, -71, -939, -939, -939, -939, + -939, -939, -939, -939, 89, -939, -939, -939, -939, -939, + -939, -939, 95, -939, -939, -939, -939, -939, -939, -939, + -939, -939, -939, -939, -939, -939, -939, -939, -939, -939, + -939, 198, -939, -492, -939, -939, -939, 3169 }; /* 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 -636 +#define YYTABLE_NINF -630 static const yytype_int16 yytable[] = { - 86, 201, 282, 493, 665, 487, 650, 527, 737, 738, - 797, 739, 723, 644, 647, 819, 755, 763, 650, 654, - 657, 823, 531, 312, 395, 316, 227, 321, 953, 476, - 626, 299, 435, 313, 61, 247, 1006, 402, 1012, 592, - 527, 301, 333, 593, 700, -236, 635, 261, 151, 704, - 313, 397, 317, 394, 322, 708, 54, 55, 287, 851, - 86, 325, 317, 305, 403, 344, 340, 1013, 308, 334, - 308, 88, 308, 308, 389, 308, 322, 308, 398, 308, - 395, 308, 147, 308, 329, 308, 1007, 308, 326, 308, - 378, 308, 345, 732, 292, 308, 336, 228, 308, 351, - 326, 308, 330, 308, 516, 431, 248, 250, 493, 408, - 827, 330, 590, 477, 771, 434, 148, -334, 262, 308, - 300, 308, 532, 337, 474, -335, 352, 302, 302, 288, - 86, 88, 432, -29, -29, 337, 409, 86, -236, 309, - -236, 309, 435, 309, 309, 302, 309, 302, 309, 302, - 309, 118, 309, 404, 309, 440, 309, 302, 309, 302, - 309, 380, 309, 302, -96, -96, 309, 737, 738, 309, - 739, 302, 309, 302, 309, 930, 841, 238, -96, -96, - 398, 346, 441, 302, 391, 302, 890, 302, 302, 818, - 309, 809, 309, -312, 240, 302, 302, 302, 266, 301, - 409, 88, 781, 886, 273, 914, 302, 578, 88, 775, - 524, 118, -96, -96, 256, 353, -111, -111, 302, 311, - 299, 302, -96, -96, -319, -319, 832, 302, -96, -96, - 302, 302, 432, -27, -27, 345, 343, 302, 350, -132, - 357, 384, 272, 524, -319, -319, -319, -319, 848, -319, - -319, 64, -96, -96, 69, 441, 893, 305, 352, 859, - 737, 738, 435, 739, -132, -132, -132, 605, -96, -96, - 439, 403, 891, 606, 867, 302, 345, 302, 587, 579, - 219, 118, -321, -321, -132, -132, -132, -132, 118, -132, - -132, 709, 944, -312, 125, 302, 793, -96, -96, 54, - 55, 219, -321, -321, -321, -321, 302, -321, -321, 300, - 463, 294, 352, 650, 69, 71, 945, 475, 595, -319, - 271, 302, 596, 869, 346, 403, 871, 302, -331, 290, - 302, 793, 905, 877, 907, -96, -96, 881, -329, -132, - 302, 220, 344, 299, 362, 961, 885, 353, 516, 262, - 302, -332, 74, 302, 295, -132, 516, 302, 584, -132, - 404, -132, 220, 710, -338, 346, 302, -331, -331, 345, - 839, 302, 840, 38, 39, 71, 938, -321, 221, 302, - 942, 961, 299, 986, 69, 948, 949, -331, -331, -331, - -331, 69, -331, -331, 794, 922, 924, 406, 925, 221, - 795, 353, 506, 302, 932, 364, 287, 302, 299, 961, - 334, 961, 74, 1000, 404, 974, 422, 936, 145, 977, - 302, 53, 287, 961, -568, 1011, 978, 539, 466, 266, - 162, 898, 300, 984, 985, 476, -163, 751, -163, 543, - 215, 960, 367, 544, 902, 71, 903, 966, 568, 246, - 656, 469, 71, 54, 55, 520, 786, 660, 346, 513, - 514, 515, -331, 86, 302, 796, 448, 449, -631, -631, - -631, 300, 839, 1009, 842, 86, 765, 288, 766, 54, - 55, 522, 74, 466, 767, 990, 504, 505, 992, 74, - 882, 570, 994, 288, 883, 506, -568, 300, 76, 527, - 839, 347, 843, 354, 467, 468, 469, 839, 392, 844, - 571, 1002, 399, 54, 55, 576, 853, 410, 395, 477, - 424, 425, 426, 427, 222, 446, 447, 448, 449, 987, - 428, 988, 219, 436, 88, 442, -96, -96, -109, -109, - 756, 445, 413, 414, -132, 222, 88, 508, 509, 510, - 511, 512, 513, 514, 515, 481, 585, -130, 76, 718, - 54, 55, 415, 416, 417, 418, 299, 419, 420, -132, - -132, -132, 300, 312, 446, 645, 448, 449, 493, 261, - 297, 298, -130, -130, -130, 54, 55, 516, 369, -132, - -132, -132, -132, 220, -132, -132, 78, 702, -320, -320, - 313, 313, -130, -130, -130, -130, 317, -130, -130, 987, - 466, 998, 506, 987, 118, 1010, 322, 421, -320, -320, - -320, -320, 223, -320, -320, 987, 118, 1016, 76, 730, - 221, 653, 468, 469, 773, 76, 326, 422, 86, 54, - 55, 668, 778, 223, -132, 54, 55, 705, 648, 649, - 262, 672, 673, 674, 675, 676, 78, -130, 659, 660, - -132, 300, 752, 80, -132, 337, -132, 511, 512, 513, - 514, 515, 345, -130, 316, 696, 352, -130, 432, -130, - -633, -633, -633, -634, -634, -634, 371, 916, 917, 224, - 734, 435, 441, -320, 733, 302, -22, -24, 764, -322, - -322, 317, 524, 768, -444, 506, 799, 810, 828, 88, - 224, 830, -134, 836, 838, 86, 863, 69, 846, -322, - -322, -322, -322, 80, -322, -322, 78, 741, 548, 69, - 266, 847, 865, 78, 870, 866, 879, -134, -134, -134, - 878, 557, 558, 559, 560, 561, 562, 563, 564, 880, - 86, 888, 884, 373, 82, 929, 934, -134, -134, -134, - -134, 935, -134, -134, 937, 850, 981, 940, 293, 941, - 86, 857, 86, 800, 952, 361, 222, 534, 71, 363, - 225, 365, 366, 86, 899, 538, 88, 801, 368, 118, - 71, 370, 372, 80, -322, 374, 302, 701, 86, 376, - 80, 225, 377, 379, 381, 385, 387, 824, 999, 928, - 537, 646, -134, 655, 82, 74, 1015, 748, 0, 887, - 787, 88, 788, 717, 0, 117, 0, 74, -134, 0, - 0, 0, -134, 219, -134, 0, 0, 0, 0, 0, - 0, 88, 0, 88, 375, 0, 0, 0, 0, 0, - 0, 237, 0, 0, 88, 0, 86, 0, 86, 0, - 0, 915, 0, 0, 0, 0, 118, 0, 0, 88, - 0, 0, 237, 0, 223, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 82, 117, 741, 0, 0, 0, - 0, 82, 69, 0, 220, 0, 0, 0, 0, 0, - 86, 118, 0, 0, 86, 0, 0, 0, 0, 86, - 86, 0, 0, 0, 0, 383, 0, 0, 0, 0, - 0, 118, 0, 118, 0, 0, 0, 88, 0, 88, - 0, 221, 0, 0, 118, 0, 0, 0, 333, 86, - 0, 224, 0, 86, 979, 0, 0, 0, 0, 118, - 86, 0, 0, 71, 0, 117, 0, 86, 86, 0, - 0, 76, 117, -327, -327, 334, 0, 0, 0, 69, - 0, 88, 0, 76, 0, 88, 0, 0, 0, 741, - 88, 88, 0, -327, -327, -327, -327, 0, -327, -327, - 74, 0, 0, 86, 0, 0, 0, 86, 0, 0, - 0, 0, 0, 0, 69, 86, 0, 118, 0, 118, - 88, 0, 0, 0, 88, 120, 0, 0, 0, 0, - 0, 88, 0, 0, 69, 0, 69, 0, 88, 88, - 71, 0, 225, 0, 0, 0, 0, 69, 0, 0, - 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 118, 69, 0, 0, 118, 0, 0, -327, 78, - 118, 118, 239, 0, 88, 71, 0, 74, 88, 0, - -131, 78, 0, 0, 0, 120, 88, 222, 0, 0, - 0, 0, 0, 0, 0, 71, 0, 71, 0, 0, - 118, 0, 0, 66, 118, -131, -131, -131, 71, 0, - 0, 118, 74, 237, 0, 386, 0, 0, 118, 118, - 69, 0, 69, 71, 0, -131, -131, -131, -131, 217, - -131, -131, 74, 0, 74, 0, 80, 0, 0, 0, - 0, 0, 0, 0, 0, 74, 76, 0, 80, 0, - 217, 0, 0, 0, 118, 120, 0, 0, 118, 0, - 74, 0, 120, 66, 69, -135, 118, 0, 69, 0, - 0, 0, 0, 69, 69, 0, 0, 0, 0, 0, - -131, 71, 0, 71, 0, 223, 0, 0, 0, 0, - -135, -135, -135, 0, 0, 0, -131, 0, 0, 0, - -131, 0, -131, 69, 0, 0, 0, 69, 0, 0, - -135, -135, -135, -135, 69, -135, -135, 0, 74, 0, - 74, 69, 69, 76, 0, 71, 0, 82, 0, 71, - 0, 0, 0, 66, 71, 71, 0, 0, 0, 82, - 66, 0, 0, 0, 78, 0, 0, 0, 0, 0, - 0, 0, 224, 0, 0, 0, 0, 69, 76, 0, - 0, 69, 74, 0, 71, -135, 74, 0, 71, 69, - 0, 74, 74, 0, 0, 71, 0, 0, 76, 0, - 76, -135, 71, 71, 0, -135, 0, -135, 0, 0, - 394, 76, 0, 0, 0, 0, 0, 0, 117, 0, - -133, 74, 0, 239, 0, 74, 76, 0, 0, 0, - 117, 80, 74, 0, 0, -334, -334, 395, 71, 74, - 74, 78, 71, 0, 0, -133, -133, -133, 0, 0, - 71, 0, 0, 0, 0, -334, -334, -334, -334, 67, - -334, -334, 0, 225, 0, -133, -133, -133, -133, 0, - -133, -133, 0, 0, 0, 74, 78, 0, 0, 74, - 0, 0, 0, 0, 76, 218, 76, 74, 0, 0, - 0, 0, 413, 414, 0, 0, 78, 0, 78, 0, - 0, 217, 0, 0, 0, 0, 218, 0, 80, 78, - 0, 0, 415, 416, 417, 418, 0, 419, 420, 67, - -133, 0, 82, 0, 78, 0, 0, 0, 76, 0, - -334, 0, 76, 0, 237, 0, -133, 76, 76, 0, - -133, 0, -133, 80, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 389, 0, 84, 0, 0, - 0, 0, 0, 80, 0, 80, 0, 76, 0, 0, - 0, 76, 0, 0, 0, 0, 80, 0, 76, 0, - -329, -329, 78, 226, 78, 76, 76, 422, 0, 67, - 0, 80, 0, 117, 0, 0, 67, 0, 0, 82, - -329, -329, -329, -329, 226, -329, -329, 0, 120, 0, - 0, 0, 0, 351, 0, 0, 0, 84, 0, 0, - 120, 76, 0, 0, 0, 76, 78, 0, 0, 0, - 78, 92, 0, 76, 82, 78, 78, 0, -332, -332, - 352, 0, 0, 0, 0, 0, 0, 0, 0, 80, - 0, 80, 0, 0, 82, 0, 82, 229, -332, -332, - -332, -332, 0, -332, -332, 78, 0, 82, 0, 78, - 117, 0, 0, 0, 0, -329, 78, 302, 263, 0, - 0, 0, 82, 78, 78, 0, 66, 84, 0, 0, - 0, 92, 0, 80, 84, 0, 0, 80, 66, 0, - 0, 0, 80, 80, 0, 117, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, - 0, 0, 0, 78, 239, 117, 0, 117, 0, 353, - 321, 78, 80, -332, 0, 302, 80, 218, 117, 0, - 82, 0, 82, 80, 0, 0, 0, 0, 0, 0, - 80, 80, 0, 117, 0, -324, -324, 322, 0, 0, - 0, 92, 0, 0, 0, 0, 0, 0, 92, 0, - 0, 0, 0, 93, 0, -324, -324, -324, -324, 0, - -324, -324, 0, 120, 82, 0, 80, 0, 82, 0, - 80, 0, 0, 82, 82, 0, 94, 0, 80, 230, - 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, - 0, 117, 0, 117, 0, 0, 0, 0, 0, 0, - 230, 0, 231, 82, 0, 0, 0, 82, 0, 0, - 0, 0, 0, 93, 82, 226, 0, 391, 0, 0, - 0, 82, 82, 264, 0, 0, 0, 0, 0, 0, - -324, 0, 302, 0, 0, 117, 94, 0, 0, 117, - 120, 66, -330, -330, 117, 117, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 82, 0, 0, - 0, 82, -330, -330, -330, -330, 0, -330, -330, 82, - 0, 0, 0, 0, 117, 120, 499, 500, 117, 0, - 501, 502, 503, 93, 0, 117, 0, 0, 0, 588, - 93, 0, 117, 117, 0, 120, 0, 120, 504, 505, - 0, 0, 67, 0, 329, 0, 94, 506, 120, 0, - 0, 0, 0, 94, 67, 0, 0, 0, 66, 0, - 0, 0, 0, 120, 0, 0, 0, 0, 117, -326, - -326, 330, 117, 0, 0, 0, 0, -330, 0, 302, - 117, 0, 0, 0, 0, 0, 0, 0, 0, -326, - -326, -326, -326, 66, -326, -326, 0, 0, 507, 508, - 509, 510, 511, 512, 513, 514, 515, 0, 97, 0, - 0, 54, 55, 66, 0, 66, 0, 0, 0, 0, - 0, 120, 0, 120, 0, 0, 66, 0, 0, 0, - 0, 99, 0, 0, 232, 0, 0, 0, 0, 0, - 84, 66, 2, 0, 0, 0, 0, 0, 152, 153, - 0, 0, 84, 0, 0, 232, 0, 233, 218, 154, - 155, 156, 0, 157, -326, 120, 302, 159, 97, 120, - 0, 230, 0, 0, 120, 120, 0, 0, 265, 160, - 0, 161, 0, 0, 27, 28, 0, 0, 0, 30, - 163, 99, 0, 0, 589, 0, 0, 0, 164, 66, - 0, 66, 0, 0, 120, 0, 0, 0, 120, 0, - 0, 0, 0, 0, 92, 120, 0, 67, 0, 0, - 0, 41, 120, 120, 0, 0, 92, 0, 0, 0, - 0, 0, 165, 0, 0, 0, 48, 0, 97, 0, - 0, 0, 0, 66, 166, 97, 0, 66, 0, 0, - 102, 0, 66, 66, 0, 0, 226, 0, 120, 0, - 0, 99, 120, 0, 253, 0, 0, 0, 99, 0, - 120, 0, 0, 0, 0, 0, 234, 336, 0, 0, - 0, 0, 66, 0, 0, 0, 66, 0, 0, 0, - 0, 0, 0, 66, 67, 0, 0, 234, 0, 0, - 66, 66, -328, -328, 337, 0, 0, 0, 0, 0, - 102, 0, 0, 104, 0, 84, 0, 0, 0, 431, - 0, 0, -328, -328, -328, -328, 0, -328, -328, 67, - 263, 0, 0, 0, 0, 0, 66, 0, 0, 236, - 66, 0, 0, 0, -323, -323, 432, 0, 66, 67, - 0, 67, 0, 0, 0, 0, 93, 0, 0, 0, - 236, 0, 67, 0, -323, -323, -323, -323, 93, -323, - -323, 0, 105, 104, 0, 0, 0, 67, 440, 94, - 102, 0, 0, 0, 0, 0, 232, 102, 0, 92, - 0, 94, 84, 0, 0, 0, 0, -328, 0, 302, - 0, 0, 0, -337, -337, 441, 0, 0, 0, 591, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, -337, -337, -337, -337, 84, -337, -337, - 0, 0, 105, 106, 0, 67, 0, 67, 0, -323, - 0, 302, 0, 104, 0, 0, 0, 84, 0, 84, - 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 84, 0, 0, 0, 0, 0, 92, 0, 0, 0, - 0, 0, 230, 0, 0, 84, 0, 0, 0, 67, - 0, 0, 0, 67, 0, 0, 0, 0, 67, 67, - 0, 0, 0, 106, 0, 264, 107, 0, -337, 0, - 302, 92, 105, 0, 0, 0, 0, 0, 0, 105, - 0, 0, 0, 0, 0, 0, 0, 0, 67, 0, - 0, 92, 67, 92, 0, 0, 0, 0, 234, 67, - 0, 93, 0, 84, 92, 84, 67, 67, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, - 0, 0, 0, 0, 94, 0, 107, 0, 0, 0, - 0, 0, 0, 106, 0, 0, 0, 0, 0, 0, - 106, 97, 67, 0, 0, 0, 67, 84, 0, 0, - 0, 84, 0, 97, 67, 0, 84, 84, 0, 0, - 0, 236, 0, 0, 99, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 99, 92, 93, 92, - 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, - 84, 0, 0, 0, 0, 0, 107, 84, 0, 115, - 0, 94, 0, 107, 84, 84, 0, 0, 0, 0, - 0, 0, 0, 93, 0, 0, 0, 0, 0, 0, - 0, 92, 0, 0, 0, 92, 0, 0, 0, 0, - 92, 92, 0, 93, 0, 93, 94, 0, 0, 0, - 84, 0, 0, 0, 84, 0, 93, 0, 0, 0, - 0, 0, 84, 0, 0, 0, 94, 232, 94, 115, - 92, 93, 0, 0, 92, 0, 0, 0, 0, 94, - 0, 92, 0, 0, 0, 0, 0, 0, 92, 92, - 265, 0, 0, 102, 94, 2, 0, 0, 0, 0, - 0, 152, 153, 0, 0, 102, 0, 0, 0, 0, - 0, 0, 154, 155, 156, 0, 157, 0, 0, 0, - 159, 0, 0, 0, 92, 0, 97, 0, 92, 93, - 0, 93, 160, 0, 161, 0, 92, 27, 28, 115, - 0, 0, 30, 163, 0, 0, 115, 0, 0, 99, - 0, 164, 94, 0, 94, 0, 104, 0, 0, 0, + 86, 201, 282, 493, 511, 487, 650, 791, 513, 545, + 731, 732, 749, 719, 514, 980, 515, 516, 650, 644, + 647, 813, 733, 654, 657, 817, 227, 757, 787, 333, + 435, 536, 1000, 395, 1006, 247, 549, 312, 147, 626, + 313, -323, 545, 302, 759, 994, 760, 261, 301, 402, + 317, 151, 761, 394, 305, 635, 334, 1005, 287, 787, + 86, 148, 340, 1007, 313, 316, 321, 325, 308, 344, + 308, 88, 308, 308, 240, 308, 403, 308, 329, 308, + 395, 308, 1001, 308, 665, 308, -306, 308, 271, 308, + 378, 308, 317, 322, 326, 308, 345, 228, 308, 322, + 351, 308, -236, 308, 326, 330, 248, 397, 493, 250, + 389, 408, 590, 299, 330, -29, -29, 391, 262, 308, + 765, 308, 336, -329, 474, 302, -328, 352, 431, 288, + 86, 88, -111, -111, 398, 302, 550, 86, 409, 309, + 434, 309, 696, 309, 309, 302, 309, 700, 309, 337, + 309, 118, 309, 704, 309, 432, 309, 256, 309, 302, + 309, 380, 309, 731, 732, 404, 309, 435, 812, 309, + 302, 302, 309, 726, 309, 733, 302, 238, 440, 924, + 835, 145, -96, -96, 302, 346, -306, 302, 302, 302, + 309, 302, 309, 803, 302, -236, 908, -236, 266, 302, + 302, 88, 300, 215, 273, 441, 775, 337, 88, 302, + 542, 118, 246, -96, -96, 769, 353, 884, 398, 311, + -96, -96, 302, 947, -96, -96, 826, 345, 345, 302, + -96, -96, 302, 302, -96, -96, 343, 821, 350, 302, + 357, 384, 352, 542, 302, 476, 887, 352, 842, 299, + 302, -96, -96, -96, -96, 409, 731, 732, 403, 853, + 432, 69, 302, 403, 347, 441, 354, 435, 733, 578, + 439, 392, 272, 61, 861, 399, 605, 290, 587, 299, + 410, 118, 606, 424, 425, 426, 427, 219, 118, 413, + 414, -96, -96, 428, 54, 55, 436, 845, 442, 534, + 302, 64, 302, 885, 445, 476, 299, 650, 219, 415, + 416, 417, 418, 302, 419, 420, 346, 346, 481, 344, + -325, 69, 302, 302, 705, 406, 780, 660, 71, 477, + 880, 353, 899, 292, 901, 955, 353, 302, 300, 938, + -326, 579, 302, 125, -325, -325, 345, 404, 162, 262, + 302, 362, 404, 302, 220, 302, -332, 299, 302, 466, + 302, 294, 302, 939, -325, -325, -325, -325, 300, -325, + -325, 955, -163, -562, -163, 220, 932, 38, 39, 302, + 936, 656, 469, 534, 422, 942, 943, 466, 71, 477, + 524, 69, -625, -625, -625, 300, 706, 863, 69, 955, + 865, 955, 534, 295, 584, 312, 287, 871, 467, 468, + 469, 875, 334, 955, 422, 968, 463, 557, 364, 971, + 879, 466, 287, 475, 524, 53, 972, 297, 298, 266, + -314, -314, 313, 978, 979, 346, 592, 745, 74, -325, + 593, 302, 653, 468, 469, -562, 300, 531, 532, 533, + -314, -314, -314, -314, 788, -314, -314, 833, 71, 834, + 789, 892, 595, 86, 221, 71, 596, 790, 561, 916, + 918, 562, 919, 1003, 896, 86, 897, 288, 926, 529, + 530, 531, 532, 533, 568, 221, 876, 570, 413, 414, + 877, 930, 576, 288, 54, 55, 538, 545, 74, -27, + -27, 446, 447, 448, 449, -132, 571, 76, 415, 416, + 417, 418, 395, 419, 420, 954, 446, 645, 448, 449, + 585, 960, 300, 54, 55, -314, 847, 302, 367, 299, + -132, -132, -132, 222, 88, 54, 55, 540, 313, 219, + 750, 54, 55, 534, 54, 55, 88, 54, 55, 668, + -132, -132, -132, -132, 222, -132, -132, 317, 833, 984, + 836, 322, 986, 421, 536, 326, 988, 76, 74, 54, + 55, 701, 493, -96, -96, 74, 714, 54, 55, 261, + -627, -627, -627, 422, 337, 996, -628, -628, -628, 78, + 833, 833, 837, 838, 981, 345, 982, 369, 981, 981, + 992, 1004, 981, 352, 1010, -132, 220, 448, 449, 648, + 649, 659, 660, 432, 118, 223, 300, 746, 910, 911, + 316, -132, 435, 441, 698, -132, 118, -132, 724, -109, + -109, 727, 728, 762, 767, -132, 223, 76, 86, -22, + -24, 758, 772, -438, 76, -316, -316, 317, 793, 78, + 262, 524, 804, 830, 822, 824, 857, 832, 80, 864, + -132, -132, -132, 840, 841, -316, -316, -316, -316, 859, + -316, -316, 872, 860, 494, 873, 874, 882, 923, 371, + -132, -132, -132, -132, 224, -132, -132, 503, 504, 505, + 506, 507, 508, 509, 510, 878, 928, 931, 542, 929, + 934, 975, 935, 293, 794, 224, 522, 523, 946, 88, + 361, 86, 363, 365, 366, 524, 221, 368, 80, 78, + 370, 372, 374, 552, 69, 556, 78, 735, 376, 795, + 266, 377, 379, 818, 381, -132, 69, 697, 385, 387, + -316, 993, 302, 922, 86, 555, 646, 655, 373, 1009, + 781, -132, 742, 881, -130, -132, 782, -132, 713, 844, + 0, 301, 0, 0, 86, 851, 86, 526, 527, 528, + 529, 530, 531, 532, 533, 0, 0, 86, 893, -130, + -130, -130, 88, 0, 0, 222, -313, -313, 80, 118, + 0, 71, 86, 0, 0, 80, -134, 0, 0, -130, + -130, -130, -130, 71, -130, -130, -313, -313, -313, -313, + 0, -313, -313, 0, 0, 88, 0, 0, 0, 82, + 0, -134, -134, -134, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 88, 0, 88, 0, 305, + 219, -134, -134, -134, -134, 225, -134, -134, 88, 0, + 86, 0, 86, 0, -130, 909, 0, 0, 0, 0, + 0, 0, 118, 88, -315, -315, 225, 223, 0, 0, + -130, 0, 0, 0, -130, 0, -130, 0, 0, 82, + 735, -313, 0, 302, -315, -315, -315, -315, 0, -315, + -315, 0, 0, 0, 86, 118, -134, 0, 86, 69, + 0, 74, 0, 86, 86, 0, 0, 220, 0, 375, + 0, 0, -134, 74, 0, 118, -134, 118, -134, 0, + 0, 88, 0, 88, 0, 0, 0, 0, 118, 0, + 0, 0, 0, 86, 0, 0, 224, 86, 973, 0, + 0, 0, 0, 118, 86, 0, 0, 0, 0, 82, + 0, 86, 86, 0, 0, 0, 82, 0, 0, -315, + 0, 302, 0, 0, 0, 88, 71, 0, 0, 88, + 76, 0, 69, 735, 88, 88, 0, 0, 0, 0, + 0, 0, 76, 0, 333, 0, 0, 86, 0, 0, + 0, 86, 0, 0, 0, 0, 0, 0, 0, 86, + 117, 118, 0, 118, 88, 69, 0, 0, 88, -321, + -321, 334, 0, 0, 0, 88, 0, 221, 0, 0, + 0, 0, 88, 88, 0, 69, 237, 69, 0, -321, + -321, -321, -321, 0, -321, -321, 0, 0, 69, 71, + 0, 0, 0, 0, 0, 118, 0, 237, 0, 118, + 0, 0, 78, 69, 118, 118, 0, 0, 88, 0, + 117, 0, 88, 0, 78, 0, 0, 0, 0, 0, + 88, 0, 71, 0, 0, 0, 74, 0, 0, 0, + 120, 0, 0, 0, 118, 0, 222, 0, 118, 0, + 383, 0, 71, 0, 71, 118, 0, 225, 0, 0, + 0, 0, 118, 118, -321, 71, 239, 0, 0, 0, + 0, 69, 0, 69, 0, 0, 0, 0, 0, 0, + 71, 80, 0, 0, 0, 0, 394, 239, 0, 0, + 117, 0, 0, 80, 0, 0, 0, 117, 118, 0, + 120, 0, 118, 0, 0, 76, 0, 0, 0, 74, + 118, -328, -328, 395, 0, 69, 0, 0, 0, 69, + 0, 0, 0, 0, 69, 69, 0, 0, 223, 0, + 386, -328, -328, -328, -328, 0, -328, -328, 71, 0, + 71, 0, 74, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 69, 0, 0, 0, 69, 0, + 0, 0, 74, 0, 74, 69, 0, 0, -131, 0, + 120, 0, 69, 69, 0, 74, 0, 120, 76, 0, + 0, 0, 71, 0, 0, 0, 71, 78, 0, 0, + 74, 71, 71, -131, -131, -131, 0, 224, 0, 0, + 0, 0, 0, 0, 0, 0, -328, 0, 69, 0, + 0, 76, 69, -131, -131, -131, -131, 66, -131, -131, + 69, 71, 0, 0, 0, 71, 0, 0, 0, 0, + 0, 76, 71, 76, 0, 0, 0, 0, 237, 71, + 71, 0, 82, 217, 76, 0, 0, 0, 74, 0, + 74, 0, 0, 0, 82, 0, 80, 0, 0, 76, + 78, 0, 0, 0, 217, 0, 0, 0, -131, 0, + 0, 0, 0, 0, 0, 71, 0, 66, 0, 71, + 0, 0, 0, 0, -131, 0, 0, 71, -131, 0, + -131, 0, 74, 78, 0, 0, 74, 67, 0, 0, + 0, 74, 74, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 78, 0, 78, 0, 76, 239, 76, + 0, 0, 0, 218, 0, 0, 78, 0, 0, 80, + 0, 74, 0, 0, 0, 74, 0, 0, 0, 0, + 0, 78, 74, 0, 218, 0, 0, 66, 0, 74, + 74, 0, 0, 0, 66, 0, 0, 67, 225, 0, + 0, 76, 80, 0, 0, 76, 0, 0, 0, 0, + 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 80, 0, 80, 74, 0, 0, 0, 74, + 0, 0, 0, 0, 0, 80, 0, 74, 0, 78, + 76, 78, 0, 0, 76, 0, 0, 0, 0, 0, + 80, 76, 0, 0, 0, 0, 0, 82, 76, 76, + 84, 0, 0, 117, 0, 0, 0, 67, 0, 0, + 0, 0, 0, 0, 67, 117, 0, 0, 0, 0, + 0, 0, 0, 78, 0, 0, 226, 78, 0, 0, + 0, 0, 78, 78, 76, 0, 0, 0, 76, 0, + 0, 0, 0, 0, 0, 0, 76, 226, 80, 0, + 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 84, 0, 78, 0, -135, 0, 78, 0, 0, 0, + 82, 0, 0, 78, 0, 217, 0, 0, 0, 0, + 78, 78, 0, 120, 0, 0, 0, 0, 0, -135, + -135, -135, 80, 0, 0, 120, 80, 0, 0, 0, + 0, 80, 80, 82, 0, 0, 0, 92, 0, -135, + -135, -135, -135, 0, -135, -135, 78, 0, 0, 237, + 78, 0, 0, 82, 0, 82, 0, 0, 78, 0, + 84, 80, 0, 229, 0, 80, 82, 84, 0, 0, + 0, 0, 80, 0, 0, 0, 0, 0, 0, 80, + 80, 82, 0, 0, 263, 218, 0, 0, 0, 0, + 0, 0, 0, 0, -135, 0, 0, 92, 0, 0, + 0, 0, 0, 0, 0, 2, 0, 0, 117, 0, + -135, 152, 153, 0, -135, 80, -135, 0, 0, 80, + 0, 0, 154, 155, 156, 0, 157, 80, 0, 239, + 159, 0, 0, 0, 0, 0, 0, 0, 0, 82, + 0, 82, 160, 0, 161, 0, 0, 27, 28, 0, + 0, 0, 30, 163, 0, 0, 0, 0, 0, 93, + 0, 164, 0, 0, 0, 0, 0, 92, 0, 0, + 0, 0, 0, 0, 92, 0, 0, 0, 0, 0, + 0, 117, 0, 82, 41, 230, 0, 82, 120, 0, + 66, 0, 82, 82, 0, 165, 0, 0, 0, 48, + 0, 0, 66, -133, 0, 0, 230, 166, 226, 0, + 0, 0, 0, 0, 117, 0, 0, 0, 321, 93, + 0, 0, 82, 0, 0, 0, 82, 253, -133, -133, + -133, 0, 0, 82, 117, 0, 117, 0, 0, 0, + 82, 82, 0, -318, -318, 322, 0, 117, -133, -133, + -133, -133, 0, -133, -133, 0, 0, 94, 0, 0, + 0, 120, 117, -318, -318, -318, -318, 0, -318, -318, + 67, 0, 0, 0, 97, 0, 82, 0, 0, 0, + 82, 0, 67, 231, 0, 0, 0, 0, 82, 93, + 0, 0, 0, 0, 120, 0, 93, 0, 0, 0, + 232, 0, 0, -133, 264, 0, 217, 0, 0, 0, + 351, 0, 0, 0, 120, 588, 120, 94, 0, -133, + 117, 232, 117, -133, 0, -133, 0, 120, 0, 0, + 0, 0, 0, 0, 97, -326, -326, 352, -318, 0, + 302, 0, 120, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, -326, -326, -326, -326, 0, + -326, -326, 0, 0, 117, 66, 0, 0, 117, 0, + 0, 0, 0, 117, 117, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 218, 94, 0, 0, + 0, 0, 0, 84, 94, 0, 0, 0, 0, 0, + 120, 0, 120, 117, 97, 84, 0, 117, 0, 0, + 0, 97, 0, 0, 117, 0, 0, 0, 0, 0, + 0, 117, 117, 0, 0, 0, 353, 0, 0, 0, + -326, 0, 302, 0, 0, 0, 0, 230, 66, 0, + 0, 0, 0, 0, 120, 67, 0, 0, 120, 0, + 0, 99, 0, 120, 120, 0, 0, 117, 0, 0, + 0, 117, 0, 0, 0, 0, 0, 0, 0, 117, + 0, 66, 0, 0, 0, 0, 0, 233, 0, 0, + 329, 0, 0, 120, 0, 0, 0, 120, 0, 0, + 0, 66, 0, 66, 120, 0, 0, 336, 265, 0, + 92, 120, 120, 0, 66, -320, -320, 330, 0, 226, + 0, 99, 92, 431, 0, 0, 0, 0, 67, 66, + 0, 0, -322, -322, 337, -320, -320, -320, -320, 0, + -320, -320, 0, 0, 0, 589, 0, 120, -317, -317, + 432, 120, -322, -322, -322, -322, 0, -322, -322, 120, + 0, 67, 232, 0, 0, 0, 0, 0, -317, -317, + -317, -317, 0, -317, -317, 0, 0, 0, 84, 0, + 0, 67, 0, 67, 0, 0, 0, 66, 0, 66, + 0, 99, 0, 0, 67, 0, 0, 0, 99, 0, + 494, 495, 496, 497, 498, 499, 500, 501, 502, 67, + -320, 440, 302, 503, 504, 505, 506, 507, 508, 509, + 510, 0, 0, 0, 0, 0, 263, -322, 0, 302, + 0, 66, 93, 0, 0, 66, -331, -331, 441, 0, + 66, 66, 0, -317, 93, 302, 0, 0, 0, 0, + 0, 84, 102, 0, 0, 0, -331, -331, -331, -331, + 0, -331, -331, 0, 0, 0, 0, 67, 0, 67, + 66, 0, 0, 0, 66, 0, 0, 0, 234, 0, + 0, 66, 0, 0, 84, 92, 0, 0, 66, 66, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, + 0, 0, 0, 0, 84, 0, 84, 0, 0, 0, + 0, 67, 102, 0, 0, 67, 0, 84, 0, 0, + 67, 67, 0, 104, 66, 0, 0, 389, 66, 0, + 94, -331, 84, 302, 0, 0, 66, 0, 0, 591, + 0, 0, 94, 0, 0, 0, 0, 97, 230, 236, + 67, 0, -323, -323, 67, 0, 0, 0, 92, 97, + 0, 67, 0, 0, 0, 0, 0, 0, 67, 67, + 236, 0, -323, -323, -323, -323, 0, -323, -323, 0, + 391, 0, 102, 104, 0, 0, 0, 0, 105, 102, + 84, 92, 84, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 67, -324, -324, 93, 67, 0, + 0, 92, 0, 92, 0, 0, 67, 0, 0, 0, + 0, 0, 0, 0, 92, -324, -324, -324, -324, 0, + -324, -324, 0, 106, 84, 0, 0, 0, 84, 92, + 0, 0, 0, 84, 84, 0, 264, -323, 105, 302, + 0, 0, 0, 104, 0, 0, 107, 0, 0, 0, + 104, 0, 0, 232, 2, 0, 0, 0, 0, 0, + 152, 153, 0, 84, 0, 0, 0, 84, 0, 0, + 93, 154, 155, 156, 84, 157, 0, 0, 0, 159, + 0, 84, 84, 106, 0, 0, 0, 92, 0, 92, + -324, 160, 302, 161, 0, 94, 27, 28, 0, 0, + 0, 30, 163, 93, 0, 0, 107, 0, 105, 0, + 164, 0, 97, 0, 99, 105, 0, 84, 0, 0, + 234, 84, 0, 93, 0, 93, 99, 0, 0, 84, + 0, 92, 0, 41, 0, 92, 93, 0, 0, 0, + 92, 92, 0, 0, 165, 0, 0, 0, 48, 0, + 0, 93, 0, 106, 0, 0, 166, 0, 0, 0, + 106, 0, 0, 0, 0, 0, 0, 0, 94, 0, + 92, 54, 55, 0, 92, 0, 107, 0, 0, 0, + 0, 92, 0, 107, 0, 97, 0, 0, 92, 92, + 0, 236, 0, 0, 517, 518, 0, 0, 519, 520, + 521, 94, 0, 0, 0, 0, 0, 115, 0, 93, + 0, 93, 0, 0, 0, 0, 522, 523, 97, 0, + 0, 94, 0, 94, 92, 524, 0, 0, 92, 0, + 265, 0, 0, 0, 94, 0, 92, 0, 97, 0, + 97, 0, 0, 0, 0, 0, 0, 0, 0, 94, + 0, 97, 0, 93, 0, 0, 0, 93, 0, 0, + 0, 0, 93, 93, 0, 0, 97, 115, 0, 0, + 0, 0, 0, 0, 0, 0, 525, 526, 527, 528, + 529, 530, 531, 532, 533, 0, 0, 0, 0, 99, + 0, 671, 93, 0, 0, 0, 93, 0, 0, 0, + 0, 0, 0, 93, 0, 102, 0, 94, 0, 94, + 93, 93, 0, 0, 0, 0, 0, 102, 0, 0, + 0, 0, 0, 0, 97, 0, 97, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 115, 0, 0, + 0, 0, 0, 0, 115, 0, 93, 0, 517, 518, + 93, 94, 519, 520, 521, 94, 0, 0, 93, 0, + 94, 94, 99, 0, 0, 0, 0, 0, 97, 0, + 522, 523, 97, 0, 0, 0, 104, 97, 97, 524, 0, 0, 0, 0, 0, 0, 0, 0, 104, 0, - 0, 0, 0, 93, 811, 0, 0, 93, 0, 0, - 0, 0, 93, 93, 0, 165, 0, 0, 0, 48, - 0, 0, 0, 0, 0, 0, 94, 166, 0, 0, - 94, 0, 0, 97, 0, 94, 94, 0, 0, 234, - 0, 812, 93, 0, 0, 105, 93, 0, 0, 0, - 0, 0, 0, 93, 0, 0, 99, 105, 0, 0, - 93, 93, 0, 0, 0, 94, 0, 0, 97, 94, - 0, 0, 0, 0, 0, 0, 94, 0, 0, 0, - 0, 0, 0, 94, 94, 0, 0, 0, 97, 0, - 97, 99, 0, 0, 0, 0, 93, 0, 102, 0, - 93, 97, 236, 0, 0, 0, 106, 0, 93, 0, - 0, 99, 0, 99, 0, 0, 97, 0, 106, 94, - 0, 0, 0, 94, 99, 0, 0, 0, 0, 0, - 0, 94, 0, 0, 0, 0, 0, 0, 0, 99, - 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, - 0, 152, 153, 0, 0, 0, 0, 0, 0, 0, - 0, 104, 154, 155, 156, 0, 157, 0, 0, 107, - 159, 0, 0, 0, 97, 102, 97, 0, 0, 0, - 0, 107, 160, 0, 161, 0, 0, 27, 28, 0, - 0, 0, 30, 163, 0, 0, 0, 99, 0, 99, - 0, 164, 0, 0, 0, 0, 0, 0, 0, 0, - 102, 0, 38, 39, 0, 0, 0, 0, 97, 0, - 105, 0, 97, 0, 41, 0, 0, 97, 97, 0, - 102, 0, 102, 0, 0, 165, 0, 0, 104, 48, - 0, 99, 0, 102, 0, 99, 0, 166, 0, 0, - 99, 99, 0, 0, 0, 0, 0, 97, 102, 0, - 53, 97, 0, 0, 0, 272, 0, 0, 97, 0, - 0, 0, 0, 104, 0, 97, 97, 0, 0, 0, - 99, 106, 0, 0, 99, 0, 0, 0, 0, 0, - 0, 99, 0, 104, 0, 104, 0, 105, 99, 99, - 0, 0, 115, 0, 0, 0, 104, 0, 0, 0, - 0, 97, 0, 0, 115, 97, 102, 0, 102, 0, - 0, 104, 315, 97, 319, 320, 0, 324, 0, 328, - 0, 332, 105, 335, 99, 339, 0, 342, 99, 349, - 0, 356, 382, 388, 107, 0, 99, 396, 0, 0, - 401, 0, 105, 407, 105, 412, 0, 0, 106, 0, - 102, 0, 0, 0, 102, 105, 0, 0, 0, 102, - 102, 438, 0, 444, 0, 0, 0, 0, 0, 104, - 105, 104, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 106, 0, 0, 0, 0, 0, 102, - 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, - 102, 0, 0, 106, 0, 106, 0, 102, 102, 0, - 0, 107, 0, 104, 499, 500, 106, 104, 501, 502, - 503, 0, 104, 104, 0, 0, 0, 0, 105, 0, - 105, 106, 0, 0, 0, 0, 504, 505, 0, 0, - 0, 0, 0, 102, 0, 506, 107, 102, 0, 0, - 0, 0, 104, 0, 0, 102, 104, 0, 0, 0, - 0, 0, 0, 104, 0, 0, 107, 115, 107, 0, - 104, 104, 105, 0, 0, 0, 105, 0, 0, 107, - 0, 105, 105, 0, 0, 0, 0, 0, 0, 106, - 0, 106, 0, 594, 107, 0, 507, 508, 509, 510, - 511, 512, 513, 514, 515, 0, 104, 0, 0, 0, - 104, 105, 0, 0, 0, 105, 0, 0, 104, 0, - 0, 0, 105, 0, 0, 0, 0, 0, 0, 105, - 105, 0, 0, 106, 0, 0, 0, 106, 0, 0, - 0, 0, 106, 106, 115, 0, 0, 0, 0, 0, - 0, 0, 107, 0, 107, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 105, 0, 0, 0, 105, - 0, 0, 106, 0, 0, 0, 106, 105, 0, 115, - 0, 0, 0, 106, 0, 0, 0, 0, 0, 0, - 106, 106, 0, 0, 0, 0, 107, 0, 0, 115, - 107, 115, 0, 0, 0, 107, 107, 0, 0, 0, - 0, 0, 115, 0, 0, 0, 0, 0, 0, 204, - 206, 208, 0, 0, 0, 0, 106, 115, 0, 0, - 106, 216, 0, 0, 0, 107, 0, 0, 106, 107, - 0, 0, 0, 0, 0, 251, 107, 252, 254, 142, - 143, 0, 260, 107, 107, 0, 0, 0, 0, 0, - 0, 0, 0, 286, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 307, 0, 307, 0, 307, 307, 0, - 307, 0, 307, 0, 307, 115, 307, 115, 307, 107, - 307, 0, 307, 107, 307, 360, 307, 0, 0, 0, - 307, 107, 0, 307, 0, 0, 307, 0, 307, 296, + 94, 0, 0, 0, 94, 99, 0, 0, 0, 0, + 0, 94, 0, 0, 0, 0, 0, 97, 94, 94, + 0, 97, 0, 0, 0, 99, 0, 99, 97, 0, + 0, 234, 0, 0, 0, 97, 97, 594, 99, 0, + 525, 526, 527, 528, 529, 530, 531, 532, 533, 0, + 0, 105, 0, 99, 94, 517, 518, 0, 94, 519, + 520, 521, 0, 105, 0, 0, 94, 0, 0, 0, + 0, 97, 0, 0, 0, 97, 0, 522, 523, 0, + 0, 0, 0, 97, 0, 0, 524, 0, 0, 0, + 102, 0, 0, 0, 0, 0, 106, 0, 0, 0, + 0, 402, 236, 0, 0, 0, 0, 0, 106, 0, + 0, 99, 0, 99, 0, 0, 0, 0, 0, 107, + 0, 0, 0, 0, 0, 0, -332, -332, 403, 0, + 0, 107, 0, 0, 828, 0, 0, 525, 526, 527, + 528, 529, 530, 531, 532, 533, -332, -332, -332, -332, + 0, -332, -332, 0, 0, 99, 0, 0, 0, 99, + 0, 104, 0, 102, 99, 99, 494, 495, 496, 497, + 498, 499, 500, 501, 502, 0, 0, 0, 0, 503, + 504, 505, 506, 507, 508, 509, 510, 0, 0, 0, + 0, 0, 0, 0, 99, 0, 102, 0, 99, 0, + 0, 0, 0, 0, 0, 99, 0, 0, 0, 0, + 0, 0, 99, 99, 0, 0, 102, 404, 102, 0, + 0, -332, 0, 302, 0, 0, 105, 0, 0, 102, + 0, 0, 0, 0, 104, 517, 518, 0, 0, 519, + 520, 521, 0, 0, 102, 0, 0, 0, 99, 0, + 0, 0, 99, 0, 0, 0, 0, 522, 523, 0, + 99, 0, 0, 0, 0, 0, 524, 104, 0, 0, + 0, 106, 0, 0, 0, 0, 0, 0, 0, 0, + 115, 0, 0, 0, 0, 0, 0, 104, 0, 104, + 0, 0, 115, 0, 107, 0, 0, 0, 0, 105, + 104, 0, 102, 0, 102, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 104, 0, 525, 526, 527, + 528, 529, 530, 531, 532, 533, 0, 0, 0, 0, + 54, 55, 105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 106, 0, 102, 0, 0, 0, + 102, 0, 105, 0, 105, 102, 102, 0, 0, 0, + 0, 0, 0, 0, 0, 105, 0, 107, 0, 0, + 0, 0, 0, 104, 0, 104, 0, 106, 0, 0, + 105, 0, 0, 0, 0, 102, 0, 0, 0, 102, + 0, 0, 0, 0, 0, 0, 102, 106, 0, 106, + 107, 0, 0, 102, 102, 0, 0, 0, 0, 0, + 106, 0, 0, 0, 0, 0, 0, 104, 0, 0, + 107, 104, 107, 0, 0, 106, 104, 104, 0, 0, + 0, 0, 0, 107, 0, 0, 0, 0, 105, 102, + 105, 0, 0, 102, 0, 0, 0, 0, 107, 142, + 143, 102, 0, 0, 0, 115, 104, 0, 0, 0, + 104, 0, 0, 0, 0, 0, 0, 104, 0, 0, + 0, 0, 0, 0, 104, 104, 0, 0, 0, 0, + 0, 0, 105, 106, 0, 106, 105, 0, 0, 0, + 0, 105, 105, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 107, 0, 107, 296, + 104, 0, 0, 0, 104, 0, 0, 0, 0, 0, + 0, 105, 104, 0, 0, 105, 0, 106, 115, 0, + 0, 106, 105, 0, 0, 0, 106, 106, 0, 105, + 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 107, 0, 0, 0, 107, 0, 0, 0, 0, 107, + 107, 115, 0, 0, 0, 430, 106, 0, 0, 0, + 106, 0, 0, 0, 0, 105, 0, 106, 0, 105, + 0, 115, 0, 115, 106, 106, 0, 105, 0, 107, + 0, 0, 0, 107, 115, 483, 0, 0, 0, 0, + 107, 0, 0, 0, 0, 0, 0, 107, 107, 115, + 0, 0, 0, 325, 0, 0, 0, 0, 0, 0, + 106, 0, 0, 0, 106, 0, 0, 0, 0, 0, + 0, 0, 106, 0, 0, 0, 0, 0, -319, -319, + 326, 0, 0, 107, 0, 0, 0, 107, 0, 0, + 0, 0, 0, 0, 539, 107, 541, 0, -319, -319, + -319, -319, 546, -319, -319, 0, 0, 115, 0, 115, + 0, 0, 0, 0, 0, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 501, 502, 0, 0, 0, + 0, 503, 504, 505, 506, 507, 508, 509, 510, 0, + 0, 565, 0, 0, 569, 0, 0, 0, 0, 0, + 0, 115, 0, 0, 0, 115, 204, 206, 208, 581, + 115, 115, 0, 0, 0, 0, 0, 0, 216, 0, + 0, 0, 0, -319, 0, 302, 0, 0, 0, 0, + 597, 0, 251, 0, 252, 254, 519, 520, 521, 260, + 115, 0, 0, 0, 115, 0, 0, 0, 0, 0, + 286, 115, 0, 0, 522, 523, 0, 0, 115, 115, + 307, 0, 307, 524, 307, 307, 0, 307, 0, 307, + 0, 307, 0, 307, 0, 307, 0, 307, 0, 307, + 0, 307, 360, 307, 0, 0, 0, 307, 0, 0, + 307, 0, 0, 307, 115, 307, 0, 0, 115, 0, + 0, 0, 0, 0, 0, 0, 115, 0, 0, 0, + 0, 307, 0, 307, 525, 526, 527, 528, 529, 530, + 531, 532, 533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 307, 0, 307, 0, 0, 115, - 0, 0, 0, 115, 0, 0, 0, 0, 115, 115, - 0, 2, 0, 0, 0, 0, 0, 152, 153, 0, - 0, 0, 0, 0, 484, 484, 0, 0, 154, 155, - 156, 0, 157, 0, 0, 430, 159, 0, 115, 0, - 0, 0, 115, 0, 492, 0, 0, 0, 160, 115, - 161, 0, 0, 27, 28, 0, 115, 115, 30, 163, - 0, 0, 0, 0, 0, 483, 0, 164, 0, 0, + 0, 484, 484, 0, 0, 0, 0, 0, 0, 2, + 0, 4, 5, 0, 6, 152, 153, 9, 0, 0, + 0, 492, 0, 11, 12, 13, 154, 155, 156, 0, + 157, 0, 0, 158, 159, 0, 0, 0, 20, 21, + 0, 0, 0, 0, 0, 642, 160, 0, 161, 0, + 0, 27, 28, 0, 0, 162, 30, 163, 0, 0, + 0, 0, 484, 0, 0, 164, 547, 0, 0, 0, + 0, 0, 0, 658, 36, 0, 38, 39, 0, 0, + 0, 663, 0, 0, 669, 0, 670, 0, 41, 0, + 0, 0, 0, 553, 547, 484, 0, 0, 0, 165, + 45, 0, 0, 48, 564, 0, 0, 0, 51, 602, + 573, 166, 0, 0, 0, 0, 0, 167, 168, 0, + 0, 0, 0, 0, 53, 169, 583, 0, 0, 56, + 586, 57, 0, 58, 692, 0, 693, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 702, 0, 598, + 599, 0, 0, 0, 708, 0, 0, 711, 712, 0, + 715, 0, 0, 721, 0, 0, 0, 0, 0, 0, + 725, 0, 0, 0, 0, 0, 0, 0, 0, 743, + 0, 0, -3, 1, 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, 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, 773, 36, 37, 38, 39, 0, 0, 286, 0, + 0, 0, 0, 0, 0, 40, 41, 42, 43, 0, + 0, 0, 0, 0, 286, 0, 0, 44, 45, 46, + 47, 48, 49, 0, 50, 0, 51, 0, 0, 52, + 0, 0, 0, 0, 0, 0, 0, 0, 796, 0, + 0, 0, 53, 0, 54, 55, 801, 56, 802, 57, + 0, 58, 0, 0, 0, 0, 0, 814, 0, 0, + 2, 0, 4, 358, 0, 359, 152, 153, 9, 0, + 0, 0, 0, 0, 11, 12, 13, 154, 155, 156, + 0, 157, 0, 0, 827, 159, 0, 0, 0, 672, + 829, 0, 831, 0, 0, 0, 0, 160, 673, 161, + 0, 0, 27, 28, 0, 0, 843, 30, 163, 846, + 848, 849, 0, 0, 0, 852, 164, 0, 855, 0, + 0, 0, 0, 0, 0, 36, 0, 38, 39, 0, + 694, 0, 695, 0, 0, 0, 517, 518, 0, 41, + 519, 520, 521, 867, 0, 0, 0, 0, 0, 0, + 165, 45, 0, 0, 48, 717, 0, 0, 522, 523, + 0, 0, 166, 0, 0, 0, 0, 524, 730, 0, + 0, 260, 0, 0, 484, 53, 0, 0, 0, 0, + 272, 0, 57, 895, 0, 0, 0, 0, 0, 0, + 900, 0, 0, 903, 0, 0, 0, 0, 0, 190, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, + 212, 0, 0, 0, 0, 0, 925, 0, 525, 526, + 527, 528, 529, 530, 531, 532, 533, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 270, + 770, 771, 0, 0, 944, 190, 283, 0, 0, 0, + 0, 0, 951, 952, 0, 0, 0, 0, 958, 0, + 484, 0, 0, 0, 0, 0, 963, 964, 0, 0, + 967, 0, 0, 969, 970, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 484, 0, 0, 0, 529, - 41, 0, 115, 0, 0, 0, 115, 0, 0, 0, - 0, 165, 0, 0, 115, 48, 0, 0, 0, 0, - 0, 0, 402, 166, 0, 0, 535, 529, 484, 0, - 0, 0, 0, 0, 521, 0, 523, 546, 54, 55, - 0, 0, 528, 573, 0, 0, 0, -338, -338, 403, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 583, - 0, 0, 0, 586, 0, 0, 0, -338, -338, -338, - -338, 0, -338, -338, 0, 0, 0, 0, 0, 0, - 0, 547, 598, 599, 569, 0, 0, -287, -287, -287, - -287, -287, -287, -287, -287, -287, 0, 0, 0, 581, - -287, -287, -287, -287, -287, -287, -287, -287, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 597, 0, 0, 0, 0, 303, 306, 0, 314, 0, - 318, 0, 0, 323, 0, 327, 0, 331, 404, 0, - 0, 338, -338, 341, 302, 0, 0, 355, 0, 0, - 0, 390, 393, 0, 0, 0, 400, 0, 405, 0, - 0, 411, 0, 0, 0, 0, 499, 500, 0, 0, - 501, 502, 503, 0, 0, 0, 433, 437, 0, 443, - 0, 0, 0, 0, 0, 0, 0, 0, 504, 505, - 0, 286, 0, 0, 0, 0, 0, 506, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 286, 548, 549, - 550, 551, 552, 553, 554, 555, 556, 0, 0, 0, - 0, 557, 558, 559, 560, 561, 562, 563, 564, 303, - 306, 314, 318, 323, 327, 331, 0, 338, 341, 0, - 355, 390, 393, 0, 400, 0, 405, 411, 507, 508, - 509, 510, 511, 512, 513, 514, 515, 0, 0, 433, - 0, 437, 443, 671, 0, 664, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 642, 303, 306, 314, 318, - 323, 327, 331, 0, 338, 341, 0, 355, 390, 393, - 0, 400, 405, 411, 0, 0, 433, 437, 443, 0, - 0, 0, 0, 658, 0, 698, 0, 699, 0, 0, - 0, 663, 0, 0, 669, 0, 670, 0, 0, 0, - 0, 355, 390, 0, 405, 437, 0, 0, 0, 0, - 721, 0, 0, 0, 0, 0, 726, 0, 0, 0, - 0, 0, 0, 0, 0, 727, 695, 0, 697, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 706, - 0, 736, 0, 0, 260, 0, 712, 484, 0, 715, - 716, 0, 719, 0, 0, 725, 2, 0, 4, 5, - 0, 6, 152, 153, 9, 0, 0, 0, 0, 0, + 484, 0, 0, 797, 0, 0, 0, 799, 800, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 807, 0, + 717, 0, 0, 989, 815, 807, 991, 0, 0, 0, + 820, 730, 190, 0, 0, 0, 0, 0, 0, 0, + 823, 0, 0, 482, 0, 0, 0, 0, 0, 0, + 488, 0, 0, 0, 0, 0, 0, 489, 0, 0, + 0, 0, 0, 0, 0, 0, 490, 491, 0, 0, + 0, 0, 0, 0, 0, 2, 0, 4, 5, 0, + 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, + 12, 13, 154, 155, 156, 0, 157, 0, 0, 158, + 159, 0, 0, 0, 20, 21, 0, 869, 870, 0, + 0, 0, 160, 0, 161, 0, 0, 27, 28, 0, + 0, 162, 30, 163, 730, 0, 0, 0, 0, 0, + 0, 164, 891, 0, 891, 0, 0, 0, 0, 0, + 36, 0, 38, 39, 559, 0, 0, 891, 0, 891, + 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 165, 45, 0, 580, 48, + 915, 190, 0, 0, 51, 921, 0, 166, 815, 0, + 0, 0, 0, 167, 168, 0, 0, 0, 0, 0, + 53, 278, 0, 0, 729, 56, 0, 57, 0, 58, + 601, 603, 0, 0, 607, 0, 0, 0, 0, 0, + 0, 608, 0, 949, 0, 609, 0, 0, 0, 0, + 610, 0, 959, 0, 611, 962, 0, 0, 612, 0, + 0, 966, 613, 0, 0, 614, 0, 0, 0, 615, + 0, 0, 0, 616, 0, 0, 0, 0, 0, 0, + 618, 0, 0, 0, 0, 2, 0, 0, 0, 0, + 0, 152, 153, 985, 0, 0, 0, 0, 0, 0, + 0, 0, 154, 155, 156, 0, 157, 0, 0, 0, + 159, 0, 0, 0, 0, 0, 0, 0, 620, 0, + 621, 0, 160, 622, 161, 0, 623, 27, 28, 0, + 0, 624, 30, 163, 0, 0, 0, 627, 1011, 1012, + 0, 164, 0, 0, 628, 629, 630, 631, 632, 633, + 634, 434, 38, 39, 0, 0, 0, 0, 636, 0, + 639, 0, 0, 640, 41, 0, 0, 0, 0, 641, + 0, 0, 0, 0, 0, 165, -329, -329, 435, 48, + 0, 0, 0, 0, 0, 0, 0, 166, 0, 0, + 0, 0, 0, 0, 0, 0, -329, -329, -329, -329, + 53, -329, -329, 0, 0, 272, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 494, 495, 496, 497, + 498, 499, 500, 501, 502, 0, 0, 0, 0, 503, + 504, 505, 506, 507, 508, 509, 510, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 674, 675, 676, 677, + 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, + 688, 689, 690, 691, -629, -629, -629, 0, 0, 0, + 0, -329, 0, 302, 0, 0, 2, 0, 4, 5, + 703, 6, 152, 153, 9, 0, 710, 0, 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, 0, 0, - 731, 159, 0, 0, 0, 0, 0, 0, 0, 749, + 0, 159, 0, 0, 0, 734, 0, 739, 0, 0, 0, 0, 0, 160, 0, 161, 0, 0, 27, 28, - 0, 0, 162, 30, 163, 0, 0, 0, 0, 0, - 331, 0, 164, 776, 777, 0, 0, 0, 0, 0, - 0, 36, 0, 38, 39, 0, 0, 0, 0, 0, - 0, 0, 0, 484, 0, 41, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 165, 45, 0, 190, - 48, 0, 0, 0, 0, 51, 0, 0, 166, 211, - 212, 779, 0, 0, 0, 0, 0, 484, 0, 0, - 803, 53, 0, 0, 805, 806, 56, 0, 57, 0, - 58, 0, 0, 0, 0, 813, 0, 721, 0, 270, - 0, 0, 0, 821, 813, 190, 283, 0, 0, 826, - 736, 0, 0, 0, 0, 0, 0, 0, 0, 829, - 0, 0, 802, 0, 0, 0, 0, 0, 0, 0, - 807, 0, 808, 0, 0, 0, 0, 0, 0, 0, - 0, 820, 2, 0, 0, 0, 0, 0, 152, 153, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, - 155, 156, 0, 157, 0, 0, 0, 159, 0, 0, - 833, 0, 0, 0, 0, 0, 835, 0, 837, 160, - 0, 161, 190, 0, 27, 28, 875, 876, 0, 30, - 163, 0, 849, 482, 0, 852, 854, 855, 164, 0, - 488, 858, 0, 736, 861, 0, 0, 489, 0, 0, - 0, 897, 0, 897, 0, 0, 490, 491, 0, 0, - 0, 41, 0, 0, 0, 0, 897, 0, 897, 873, - 0, 0, 165, 0, 0, 0, 48, 390, 0, 0, - 405, 0, 0, 0, 166, 0, 0, 0, 0, 921, - 0, 0, 0, 0, 927, 0, 0, 821, 874, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 901, - 0, 0, 0, 0, 0, 0, 906, 0, 0, 909, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 955, 0, 541, 0, 0, 0, 0, 0, - 0, 965, 931, 0, 968, 0, 0, 0, 0, 0, - 972, 0, 0, 0, 0, 0, 0, 0, 580, 0, - 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, - 950, 0, 0, 0, 0, 0, 0, 0, 957, 958, - 0, 0, 991, 0, 964, 0, 0, 0, 0, 0, - 601, 603, 969, 970, 607, 0, 973, 0, 0, 975, - 976, 608, 0, 0, 0, 609, 0, 0, 0, 0, - 610, 0, 0, 0, 611, 0, 0, 0, 612, 0, - 0, 0, 613, 0, 0, 614, 0, 1017, 1018, 615, - 437, 0, 0, 616, 0, 0, 0, 0, 0, 995, - 618, 0, 997, 0, 0, 0, 0, 0, 499, 500, - 0, 0, 501, 502, 503, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 504, 505, 0, 0, 501, 502, 503, 0, 620, 506, - 621, 0, 0, 622, 0, 0, 623, 0, 0, 0, - 0, 624, 504, 505, 0, 0, 0, 627, 0, 434, - 0, 506, 0, 0, 628, 629, 630, 631, 632, 633, - 634, 0, 0, 0, 0, 0, 0, 0, 636, 0, - 639, 0, 0, 640, -335, -335, 435, 834, 0, 641, - 507, 508, 509, 510, 511, 512, 513, 514, 515, 0, - 0, 0, 0, 0, -335, -335, -335, -335, 0, -335, - -335, 0, 507, 508, 509, 510, 511, 512, 513, 514, - 515, 0, 0, 0, -305, -305, -305, -305, -305, -305, - -305, -305, -305, 0, 0, 0, 0, -305, -305, -305, - -305, -305, -305, -305, -305, 0, 0, 0, 677, 678, - 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, - 689, 690, 691, 692, 693, 694, 0, 0, 0, 0, - 0, 0, -635, -635, -635, 0, 0, 0, 0, -335, - 0, 302, 707, 0, 0, 0, 0, 0, 714, 0, - 0, 2, 0, 0, 0, 0, 0, 152, 153, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 154, 155, - 156, 0, 157, 0, 0, 0, 159, 0, 0, 0, - 0, 0, 0, 0, 0, 740, 0, 745, 160, 0, - 161, 0, 0, 27, 28, 0, 0, 0, 30, 163, - 0, 753, 0, 0, 0, 0, 0, 164, 0, 0, - 0, 0, 0, 0, 603, 454, 0, -108, -108, 2, - 3, 4, 5, 0, 6, 7, 455, 9, 10, 0, - 41, -114, 0, 11, 12, 13, 14, 15, 16, 456, - 457, 165, 0, 0, 19, 48, 0, 0, 20, 21, - 0, 22, 190, 166, 0, 0, 23, 24, 25, 26, - 190, 27, 28, 0, 0, 29, 30, 31, 784, 0, - 0, 0, 0, 789, 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, 0, - 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, - 0, 57, 0, 58, 740, 548, 549, 550, 551, 552, - 553, 554, 555, 556, 0, 0, 0, 0, 557, 558, - 559, 560, 561, 562, 563, 564, 0, 0, 0, 0, - 0, 0, 0, 603, 0, 0, 0, 845, 0, 0, - 0, 0, 0, 190, 0, 0, 0, 0, 0, 190, - 0, 0, 0, 0, 0, 862, 923, 0, 0, 0, - 0, 0, 0, 864, 0, 0, 0, 0, 868, 0, - -3, 1, 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, 740, 0, 745, - 19, 0, 0, 0, 20, 21, 0, 22, 0, 0, - 0, 0, 23, 24, 25, 26, 0, 27, 28, 0, + 0, 747, 162, 30, 163, 517, 0, 0, 0, 519, + 520, 521, 164, 0, 603, 0, 0, 0, 0, 0, + 0, 36, 0, 38, 39, 0, 0, 522, 523, 0, + 0, 0, 0, 0, 0, 41, 524, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 165, 45, 0, 0, + 48, 0, 190, 0, 0, 51, 0, 0, 166, 0, + 190, 0, 0, 0, 0, 0, 0, 0, 778, 0, + 0, 53, 0, 783, 0, 0, 56, 0, 57, 0, + 58, 0, 0, 0, 0, 0, 0, 525, 526, 527, + 528, 529, 530, 531, 532, 533, 0, 0, 0, 0, + 0, 0, 0, 303, 306, 0, 314, 0, 318, 0, + 0, 323, 0, 327, 0, 331, 0, 0, 0, 338, + 0, 341, 0, 0, 0, 355, 0, 0, 0, 390, + 393, 0, 0, 0, 400, 0, 405, 0, 734, 411, + 0, 0, 0, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 501, 502, 433, 437, 0, 443, 503, 504, + 505, 506, 507, 508, 509, 510, 0, 603, 0, 0, + 0, 839, 0, 0, 0, 0, 0, 190, 0, 0, + 0, 0, 0, 190, 0, 0, 0, 0, 0, 856, + 0, 0, 0, 0, 0, 0, 917, 858, 0, 0, + 0, 0, 862, 0, 0, 0, 0, 303, 306, 314, + 318, 323, 327, 331, 0, 338, 341, 0, 355, 390, + 393, 0, 400, 0, 405, 411, 0, 0, 0, 0, + 0, 734, 0, 739, 0, 0, 0, 433, 0, 437, + 443, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 303, 306, 314, 318, 323, 327, + 331, 0, 338, 341, 0, 355, 390, 393, 907, 400, + 405, 411, 0, 190, 433, 437, 443, 494, 495, 496, + 497, 498, 499, 500, 501, 502, 0, 0, 0, 0, + 503, 504, 505, 506, 507, 508, 509, 510, 0, 355, + 390, 0, 405, 437, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 945, -2, 291, 0, -26, + -26, 2, 3, 4, 5, 0, 6, 7, 8, 9, + 10, 0, 0, 0, 664, 11, 12, 13, 14, 15, + 16, 17, 18, 0, 0, 0, 19, 0, 0, 0, + 20, 21, 0, 22, 0, 0, 190, 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, 331, 0, + 0, 44, 45, 46, 47, 48, 49, 0, 50, 0, + 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, + 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, + 4, 5, 0, 6, 7, 455, 9, 10, -115, -115, + -115, -115, 11, 12, 13, 14, 15, 16, 456, 457, + 0, 0, 0, 19, 0, 0, 0, 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, 0, 0, + 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, + 57, -115, 58, 0, 0, 0, 0, 0, 0, 0, + 454, 0, -108, -108, 2, 3, 4, 5, 0, 6, + 7, 455, 9, 10, 0, 0, -114, 0, 11, 12, + 13, 14, 15, 16, 456, 457, 0, 0, 0, 19, + 0, 0, 0, 20, 21, 0, 22, 0, 0, 0, + 0, 23, 24, 25, 26, 390, 27, 28, 405, 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, 0, 0, 52, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, + 0, 54, 55, 0, 56, 0, 57, 454, 58, -108, + -108, 2, 3, 4, 5, 0, 6, 7, 455, 9, + 10, 0, 0, -529, 0, 11, 12, 13, 14, 15, + 16, 456, 457, 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, 437, 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, 0, 0, 52, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, + 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, + 4, 5, 0, 6, 7, 455, 9, 10, 0, 0, + -584, 0, 11, 12, 13, 14, 15, 16, 456, 457, + 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, 0, 0, + 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, + 57, 454, 58, -108, -108, 2, 3, 4, 5, 0, + 6, 7, 455, 9, 10, 0, 0, -530, 0, 11, + 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, + 19, 0, 0, 0, 20, 21, 0, 22, -530, -530, + -530, 0, 23, 24, 25, 26, 0, 27, 28, 0, 0, 29, 30, 31, 0, 0, 0, 0, 0, 0, - 0, 32, 33, 34, 913, 0, 0, 0, 35, 190, + 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, 0, 0, 52, 0, 0, - 0, 951, 0, 0, 0, 0, 0, 0, 0, 0, - 53, 0, 54, 55, 0, 56, 0, 57, 0, 58, - 0, 0, 0, 0, -2, 291, 0, -26, -26, 2, - 3, 4, 5, 0, 6, 7, 8, 9, 10, 0, - 0, 0, 190, 11, 12, 13, 14, 15, 16, 17, - 18, 0, 0, 0, 19, 0, 0, 0, 20, 21, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, + -108, -108, 2, 3, 4, 5, 0, 6, 7, 455, + 9, 10, 0, 0, -585, 0, 11, 12, 13, 14, + 15, 16, 456, 457, 0, 0, 0, 19, 0, 0, + 0, 20, 21, 0, 22, -585, -585, 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, -585, 50, + 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, + 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, + 3, 4, 5, 0, 6, 7, 455, 9, 10, -114, + -114, -114, -114, 11, 12, 13, 14, 15, 16, 456, + 457, 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, @@ -2104,86 +2204,35 @@ static const yytype_int16 yytable[] = 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, 4, 5, - 0, 6, 7, 455, 9, 10, -115, -115, -115, -115, + 0, 6, 7, 455, 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, 456, 457, 0, 0, - 0, 19, 0, 0, 0, 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, 0, 0, 52, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 53, 0, 54, 55, 0, 56, 0, 57, -115, - 58, 454, 0, -108, -108, 2, 3, 4, 5, 0, - 6, 7, 455, 9, 10, 0, 0, -535, 0, 11, - 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, - 19, 0, 0, 0, 20, 21, 0, 22, -535, -535, - -535, 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, 0, 0, 52, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, - -108, -108, 2, 3, 4, 5, 0, 6, 7, 455, - 9, 10, 0, 0, -590, 0, 11, 12, 13, 14, - 15, 16, 456, 457, 0, 0, 0, 19, 0, 0, - 0, 20, 21, 0, 22, -590, -590, 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, -590, 50, - 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, - 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, - 3, 4, 5, 0, 6, 7, 455, 9, 10, 0, - 0, -536, 0, 11, 12, 13, 14, 15, 16, 456, - 457, 0, 0, 0, 19, 0, 0, 0, 20, 21, - 0, 22, -536, -536, -536, 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, 0, - 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, - 0, 57, 454, 58, -108, -108, 2, 3, 4, 5, - 0, 6, 7, 455, 9, 10, 0, 0, -591, 0, - 11, 12, 13, 14, 15, 16, 456, 457, 0, 0, - 0, 19, 0, 0, 0, 20, 21, 0, 22, -591, - -591, 0, 0, 23, 24, 25, 26, 0, 27, 28, + 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, -591, 50, 0, 51, 0, 0, 52, 0, + 48, 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, 4, 5, 0, 6, 7, - 455, 9, 10, -114, -114, -114, -114, 11, 12, 13, + 455, 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, 19, 0, - 0, 0, 20, 21, 0, 22, 0, 0, 0, 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, 0, + 0, 0, 0, 44, 45, 46, 47, 48, 49, -114, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, 4, 5, 0, 6, 7, 455, 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, 19, 0, 0, 0, 20, - 21, 0, 22, -114, -114, -114, 0, 23, 24, 25, + 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, @@ -2196,35 +2245,35 @@ static const yytype_int16 yytable[] = 5, 0, 6, 7, 455, 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, 22, - -114, -114, 0, 0, 23, 24, 25, 26, 0, 27, + 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, + 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, -114, 50, 0, 51, 0, 0, 52, + 47, 48, 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, 4, 5, 0, 6, 7, 455, 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, 19, - 0, 0, 0, 20, 21, 0, 22, 0, -114, -114, + 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, 0, 0, 52, 0, 0, 0, + 0, 50, -114, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, 4, 5, 0, 6, 7, 455, 9, - 10, 0, 0, -114, 0, 11, 12, 13, 14, 15, + 10, 0, 0, -114, -114, 11, 12, 13, 14, 15, 16, 456, 457, 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, 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, @@ -2234,20 +2283,20 @@ static const yytype_int16 yytable[] = 4, 5, 0, 6, 7, 455, 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, - 22, 0, 0, 0, 0, 23, 24, 25, 26, 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, -114, 51, 0, 0, + 46, 47, 48, 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, 4, 5, 0, - 6, 7, 455, 9, 10, 0, 0, -114, -114, 11, + 6, 7, 455, 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, 19, 0, 0, 0, 20, 21, 0, 22, 0, 0, - 0, 0, 23, 24, 25, 26, 0, 27, 28, 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, @@ -2259,10 +2308,10 @@ static const yytype_int16 yytable[] = -108, -108, 2, 3, 4, 5, 0, 6, 7, 455, 9, 10, 0, 0, -114, 0, 11, 12, 13, 14, 15, 16, 456, 457, 0, 0, 0, 19, 0, 0, - 0, 20, 21, 0, 22, 0, 0, 0, -114, 23, + 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, + 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, @@ -2270,10 +2319,10 @@ static const yytype_int16 yytable[] = 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, 0, 57, 454, 58, -108, -108, 2, 3, 4, 5, 0, 6, 7, 455, 9, 10, 0, - 0, -114, 0, 11, 12, 13, 14, 15, 16, 456, + 0, 0, 0, 11, 12, 13, 14, 15, 16, 456, 457, 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, 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, @@ -2281,57 +2330,7 @@ static const yytype_int16 yytable[] = 45, 46, 47, 48, 49, 0, 50, 0, 51, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 54, 55, 0, 56, - 0, 57, 454, 58, -108, -108, 2, 3, 4, 5, - 0, 6, 7, 455, 9, 10, 0, 0, -114, 0, - 11, 12, 13, 14, 15, 16, 456, 457, 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, 0, 0, 52, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 53, 0, 54, 55, 0, 56, 0, 57, 454, - 58, -108, -108, 2, 3, 4, 5, 0, 6, 7, - 455, 9, 10, 0, 0, 0, 0, 11, 12, 13, - 14, 15, 16, 456, 457, 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, 0, 0, 52, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, - 54, 55, 0, 56, 0, 57, -114, 58, 2, 0, - 4, 5, 0, 6, 152, 153, 9, 0, 0, 0, - 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, - 0, 0, 158, 159, 0, 0, 0, 20, 21, 0, - 0, 0, 0, 0, 0, 160, 0, 161, 0, 0, - 27, 28, 0, 0, 162, 30, 163, 0, 0, 0, - 0, 0, 0, 0, 164, 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, 165, 45, - 0, 0, 48, 0, 0, 0, 0, 51, 276, 277, - 166, 0, 0, 0, 0, 0, 167, 168, 0, 0, - 0, 0, 0, 53, 278, 0, 0, 0, 56, 0, - 57, 2, 58, 4, 5, 0, 6, 152, 153, 9, - 0, 0, 0, 0, 0, 11, 12, 13, 154, 155, - 156, 0, 157, 0, 0, 158, 159, 0, 0, 0, - 20, 21, 0, 0, 0, 0, 0, 0, 160, 0, - 161, 0, 0, 27, 28, 0, 0, 162, 30, 163, - 0, 0, 0, 0, 0, 0, 0, 164, 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, 165, 45, 0, 0, 48, 0, 0, 0, 0, - 51, 602, 0, 166, 0, 0, 0, 0, 0, 167, - 168, 0, 0, 0, 0, 0, 53, 169, 0, 0, - 0, 56, 0, 57, 2, 58, 4, 5, 0, 6, + 0, 57, -114, 58, 2, 0, 4, 5, 0, 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, 0, 0, 158, 159, 0, 0, 0, 20, 21, 0, 0, 0, 0, 0, @@ -2341,9 +2340,9 @@ static const yytype_int16 yytable[] = 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 45, 0, 0, 48, 0, - 0, 0, 0, 51, 0, 0, 166, 0, 0, 0, + 0, 0, 0, 51, 276, 277, 166, 0, 0, 0, 0, 0, 167, 168, 0, 0, 0, 0, 0, 53, - 278, 0, 0, 735, 56, 0, 57, 2, 58, 4, + 278, 0, 0, 0, 56, 0, 57, 2, 58, 4, 5, 0, 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, 0, 0, 158, 159, 0, 0, 0, 20, 21, 0, 0, @@ -2392,7 +2391,7 @@ static const yytype_int16 yytable[] = 0, 0, 0, 0, 0, 0, 165, 45, 0, 0, 48, 0, 0, 0, 0, 51, 0, 0, 166, 0, 0, 0, 0, 0, 167, 168, 0, 0, 0, 0, - 0, 53, 744, 0, 0, 0, 56, 0, 57, 2, + 0, 53, 738, 0, 0, 0, 56, 0, 57, 2, 58, 4, 5, 0, 6, 152, 153, 9, 0, 0, 0, 0, 0, 11, 12, 13, 154, 155, 156, 0, 157, 0, 0, 158, 159, 0, 0, 0, 20, 21, @@ -2400,612 +2399,665 @@ static const yytype_int16 yytable[] = 0, 27, 28, 0, 0, 162, 30, 163, 0, 0, 0, 0, 0, 0, 0, 164, 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, 41, 397, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 45, 0, 0, 48, 0, 0, 0, 0, 51, 0, - 0, 166, 0, 0, 0, 0, 0, 167, 168, 0, + 0, 166, 0, 0, -330, -330, 398, 167, 168, 0, 0, 0, 0, 0, 53, 278, 0, 0, 0, 56, - 0, 57, 2, 58, 4, 358, 0, 359, 152, 153, - 9, 0, 0, 0, 0, 0, 11, 12, 13, 154, - 155, 156, 0, 157, 0, 0, 0, 159, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, - 0, 161, 0, 0, 27, 28, 0, 0, 0, 30, - 163, 0, 0, 0, 0, 0, 0, 0, 164, 0, - 325, 0, 0, 0, 0, 0, 0, 36, 0, 38, - 39, 0, 499, 500, 0, 0, 501, 502, 503, 0, - 0, 41, 0, 0, 0, -325, -325, 326, 0, 0, - 0, 0, 165, 45, 504, 505, 48, 0, 0, 0, - 0, 0, 0, 506, 166, -325, -325, -325, -325, 0, - -325, -325, 0, 0, 0, 0, 0, 53, 0, 0, - 0, 397, 272, 0, 57, -272, -272, -272, -272, -272, - -272, -272, -272, -272, 0, 0, 0, 0, -272, -272, - -272, -272, -272, -272, -272, -272, -336, -336, 398, 0, - 0, 0, 0, 0, 507, 508, 509, 510, 511, 512, - 513, 514, 515, 0, 0, 0, -336, -336, -336, -336, - 0, -336, -336, 0, 0, 0, 0, 0, 0, 0, - -325, 0, 302, 408, 0, 0, -283, -283, -283, -283, - -283, -283, -283, -283, -283, 0, 0, 0, 0, -283, - -283, -283, -283, -283, -283, -283, -283, 0, -339, -339, - 409, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, -339, -339, - -339, -339, 0, -339, -339, 0, 0, 0, 0, 0, - 0, -336, 0, 302, 434, 0, 0, 0, -290, -290, - -290, -290, -290, -290, -290, -290, -290, 0, 0, 0, - 0, -290, -290, -290, -290, -290, -290, -290, -290, -335, - -335, 435, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, -335, - -335, -335, -335, 0, -335, -335, 0, 0, 0, 0, - 0, 0, 0, -339, 0, 302, 340, 0, 0, -305, - -305, -305, -305, -305, -305, -305, -305, -305, 0, 0, - 0, 0, -305, -305, -305, -305, -305, -305, -305, -305, - 0, -333, -333, 0, 0, 0, 0, 0, 0, 0, + 0, 57, 0, 58, -330, -330, -330, -330, 0, -330, + -330, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 408, 0, 0, 0, 494, 495, 496, 497, 498, 499, + 500, 501, 502, 0, 0, 0, 0, 503, 504, 505, + 506, 507, 508, 509, 510, -333, -333, 409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, -333, -333, -333, -333, 0, -333, -333, 0, 0, - 0, 0, 0, 0, -335, 0, 302, 0, 0, 0, - 0, -303, -303, -303, -303, -303, -303, -303, -303, -303, - 0, 0, 0, 0, -303, -303, -303, -303, -303, -303, - -303, -303, 2, 0, 0, 0, 0, 0, 152, 153, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, - 155, 156, 0, 157, 0, 0, 0, 159, 0, 0, - 0, 0, 0, 0, 0, 0, -333, 0, 302, 160, - 0, 161, 0, 0, 27, 28, 2, 0, 0, 30, - 163, 0, 152, 153, 0, 0, 0, 0, 164, 0, - 0, 0, 0, 154, 155, 156, 0, 157, 0, 0, - 0, 159, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 811, 0, 160, 0, 161, 0, 0, 27, 28, - 0, 2, 165, 30, 163, 0, 48, 152, 153, 0, - 0, 0, 164, 0, 166, 0, 0, 0, 154, 155, - 156, 0, 157, 0, 0, 0, 159, 0, 926, 0, - 0, 0, 0, 0, 0, 41, 0, 0, 160, 0, - 161, 0, 0, 27, 28, 2, 165, 0, 30, 163, - 48, 152, 153, 0, 0, 0, 0, 164, 166, 0, - 0, 0, 154, 155, 156, 0, 157, 0, 38, 39, - 159, 0, 967, 0, 0, 0, 0, 0, 0, 0, - 41, 0, 160, 0, 161, 0, 0, 27, 28, 0, - 2, 165, 30, 163, 0, 48, 152, 153, 0, 0, - 0, 164, 0, 166, 0, 0, 0, 154, 155, 156, - 0, 157, 38, 39, 0, 159, 53, 0, 0, 0, - 0, 0, 0, 0, 41, 0, 0, 160, 0, 161, - 0, 0, 27, 28, 0, 165, 0, 30, 163, 48, - 0, 0, 0, 0, 0, 0, 164, 166, 0, 0, - 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, - 152, 153, 0, 0, 0, 0, 0, 0, 0, 41, - 0, 154, 155, 156, 0, 157, 0, 0, 0, 159, - 165, 0, 0, 0, 48, 0, 0, 0, 0, 0, - 572, 160, 166, 161, 0, 0, 27, 28, 0, 2, - 0, 30, 163, 0, 0, 152, 153, 0, 0, 0, - 164, 0, 0, 0, 0, 0, 154, 155, 156, 0, + 0, 0, 0, 0, 0, -333, -333, -333, -333, 0, + -333, -333, 0, 0, 0, 0, 0, 0, 0, -330, + 0, 302, 434, 0, 0, 494, 495, 496, 497, 498, + 499, 500, 501, 502, 0, 0, 0, 0, 503, 504, + 505, 506, 507, 508, 509, 510, 0, -329, -329, 435, + 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, 0, 0, 0, 0, 0, + -333, 0, 302, 340, 0, 0, 0, 494, 495, 496, + 497, 498, 499, 500, 501, 502, 0, 0, 0, 0, + 503, 504, 505, 506, 507, 508, 509, 510, -327, -327, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, -327, -327, + -327, -327, 0, -327, -327, 0, 0, 0, 0, 0, + 0, 0, -329, 0, 302, 0, 0, 0, 494, 495, + 496, 497, 498, 499, 500, 501, 502, 0, 0, 0, + 0, 503, 504, 505, 506, 507, 508, 509, 510, 2, + 0, 0, 0, 0, 0, 152, 153, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 154, 155, 156, 0, 157, 0, 0, 0, 159, 0, 0, 0, 0, 0, - 0, 0, 0, 41, 0, 0, 160, 0, 161, 0, - 0, 27, 28, 0, 165, 499, 30, 163, 48, 501, - 502, 503, 0, 0, 825, 164, 166, 0, 0, 0, - 0, 0, 0, 2, 0, 0, 0, 504, 505, 152, - 153, 0, 0, 0, 0, 0, 506, 0, 41, 0, - 154, 155, 156, 0, 157, 0, 0, 0, 159, 165, - 0, 0, 0, 48, 0, 0, 0, 0, 0, 894, - 160, 166, 161, 0, 0, 27, 28, 0, 0, 0, - 30, 163, 0, 0, 0, 0, 0, 0, 0, 164, - 0, 0, 0, 0, 0, 0, 0, 507, 508, 509, - 510, 511, 512, 513, 514, 515, 0, 0, 0, 0, - 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 165, 0, 0, 0, 48, 0, 0, - 0, 0, 0, 971, 0, 166, 548, 549, 550, 551, - 552, 553, 554, 555, 556, 0, 0, 0, 0, 557, - 558, 559, 560, 561, 562, 563, 564, 548, 549, 550, - 551, 552, 553, 554, 555, 556, 0, 0, 0, 0, - 557, 558, 559, 560, 561, 562, 563, 564, 548, 549, - 550, 551, 552, 553, 554, 555, 556, 959, 0, 0, - 0, 557, 558, 559, 560, 561, 562, 563, 564, 548, - 549, 550, 551, 552, 553, 554, 555, 556, 989, 0, - 0, 0, 557, 558, 559, 560, 561, 562, 563, 564, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1001 + 0, 0, 0, -327, 0, 302, 160, 0, 161, 0, + 0, 27, 28, 2, 0, 0, 30, 163, 0, 152, + 153, 0, 0, 0, 0, 164, 0, 0, 0, 0, + 154, 155, 156, 0, 157, 0, 0, 0, 159, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 805, 0, + 160, 0, 161, 0, 0, 27, 28, 0, 2, 165, + 30, 163, 0, 48, 152, 153, 0, 0, 0, 164, + 0, 166, 0, 0, 0, 154, 155, 156, 0, 157, + 0, 0, 0, 159, 0, 806, 0, 0, 0, 0, + 0, 0, 41, 0, 0, 160, 0, 161, 0, 0, + 27, 28, 2, 165, 0, 30, 163, 48, 152, 153, + 0, 0, 0, 0, 164, 166, 0, 0, 0, 154, + 155, 156, 0, 157, 0, 0, 0, 159, 0, 868, + 0, 0, 0, 0, 0, 0, 0, 805, 0, 160, + 0, 161, 0, 0, 27, 28, 0, 2, 165, 30, + 163, 0, 48, 152, 153, 0, 0, 0, 164, 0, + 166, 0, 0, 0, 154, 155, 156, 0, 157, 0, + 0, 0, 159, 0, 920, 0, 0, 0, 0, 0, + 0, 41, 0, 0, 160, 0, 161, 0, 0, 27, + 28, 2, 165, 0, 30, 163, 48, 152, 153, 0, + 0, 0, 0, 164, 166, 0, 0, 0, 154, 155, + 156, 0, 157, 0, 38, 39, 159, 0, 961, 0, + 0, 0, 0, 0, 0, 0, 41, 0, 160, 0, + 161, 0, 0, 27, 28, 0, 2, 165, 30, 163, + 0, 48, 152, 153, 0, 0, 0, 164, 0, 166, + 0, 0, 0, 154, 155, 156, 0, 157, 38, 39, + 0, 159, 53, 0, 0, 0, 0, 0, 0, 0, + 41, 0, 0, 160, 0, 161, 0, 0, 27, 28, + 0, 165, 0, 30, 163, 48, 0, 0, 0, 0, + 0, 0, 164, 166, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 152, 153, 0, 0, + 0, 0, 0, 0, 0, 41, 0, 154, 155, 156, + 0, 157, 0, 0, 0, 159, 165, 0, 0, 0, + 48, 0, 0, 0, 0, 0, 572, 160, 166, 161, + 0, 0, 27, 28, 0, 2, 0, 30, 163, 0, + 0, 152, 153, 0, 0, 0, 164, 0, 0, 0, + 0, 0, 154, 155, 156, 0, 157, 0, 0, 0, + 159, 0, 0, 0, 0, 0, 0, 0, 0, 41, + 0, 0, 160, 0, 161, 0, 0, 27, 28, 0, + 165, 0, 30, 163, 48, 0, 0, 0, 0, 0, + 819, 164, 166, 0, 0, 0, 0, 0, 0, 2, + 0, 0, 0, 0, 0, 152, 153, 0, 0, 0, + 0, 0, 0, 0, 41, 0, 154, 155, 156, 0, + 157, 0, 0, 0, 159, 165, 0, 0, 0, 48, + 0, 0, 0, 0, 0, 888, 160, 166, 161, 0, + 0, 27, 28, 0, 2, 0, 30, 163, 0, 0, + 152, 153, 0, 0, 0, 164, 0, 0, 0, 0, + 0, 154, 155, 156, 0, 157, 0, 0, 0, 159, + 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, + 0, 160, 0, 161, 0, 0, 27, 28, 0, 165, + 0, 30, 163, 48, 0, 0, 0, 0, 0, 965, + 164, 166, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 315, 0, 319, 320, 0, 324, 0, 328, 0, + 332, 0, 335, 41, 339, 0, 342, 0, 349, 0, + 356, 382, 388, 0, 165, 0, 396, 0, 48, 401, + 0, 0, 407, 0, 412, 0, 166, 0, 0, 0, + 494, 495, 496, 497, 498, 499, 500, 501, 502, 0, + 438, 0, 444, 503, 504, 505, 506, 507, 508, 509, + 510, 494, 495, 496, 497, 498, 499, 500, 501, 502, + 0, 0, 0, 0, 503, 504, 505, 506, 507, 508, + 509, 510, 494, 495, 496, 497, 498, 499, 500, 501, + 502, 953, 0, 0, 0, 503, 504, 505, 506, 507, + 508, 509, 510, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 983, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 995 }; static const yytype_int16 yycheck[] = { - 0, 10, 57, 169, 484, 150, 463, 210, 576, 576, - 671, 576, 545, 450, 451, 722, 594, 605, 475, 472, - 473, 728, 9, 9, 36, 9, 26, 9, 48, 17, - 406, 36, 36, 36, 0, 35, 17, 9, 17, 124, - 243, 9, 9, 128, 524, 36, 422, 47, 125, 529, - 36, 9, 36, 9, 36, 535, 122, 123, 58, 125, - 60, 9, 36, 9, 36, 9, 9, 46, 68, 36, - 70, 0, 72, 73, 9, 75, 36, 77, 36, 79, - 36, 81, 36, 83, 9, 85, 67, 87, 36, 89, - 90, 91, 36, 573, 60, 95, 9, 26, 98, 9, - 36, 101, 36, 103, 124, 9, 35, 10, 274, 9, - 735, 36, 278, 101, 638, 9, 36, 129, 47, 119, - 125, 121, 109, 36, 133, 129, 36, 131, 131, 58, - 130, 60, 36, 3, 4, 36, 36, 137, 129, 68, - 131, 70, 36, 72, 73, 131, 75, 131, 77, 131, - 79, 0, 81, 125, 83, 9, 85, 131, 87, 131, - 89, 90, 91, 131, 122, 123, 95, 735, 735, 98, - 735, 131, 101, 131, 103, 882, 764, 26, 122, 123, - 36, 125, 36, 131, 9, 131, 17, 131, 131, 722, - 119, 715, 121, 9, 36, 131, 131, 131, 47, 9, - 36, 130, 655, 828, 53, 866, 131, 52, 137, 646, - 210, 60, 122, 123, 19, 125, 3, 4, 131, 68, - 36, 131, 122, 123, 34, 35, 750, 131, 122, 123, - 131, 131, 36, 3, 4, 36, 85, 131, 87, 9, - 89, 90, 125, 243, 54, 55, 56, 57, 772, 59, - 60, 0, 122, 123, 0, 36, 834, 9, 36, 783, - 828, 828, 36, 828, 34, 35, 36, 124, 122, 123, - 119, 36, 103, 130, 798, 131, 36, 131, 278, 124, - 26, 130, 34, 35, 54, 55, 56, 57, 137, 59, - 60, 52, 17, 109, 0, 131, 666, 122, 123, 122, - 123, 47, 54, 55, 56, 57, 131, 59, 60, 125, - 130, 60, 36, 770, 60, 0, 41, 137, 124, 129, - 12, 131, 128, 803, 125, 36, 806, 131, 129, 0, - 131, 701, 856, 813, 858, 122, 123, 817, 129, 109, - 131, 26, 9, 36, 90, 923, 826, 125, 124, 278, - 131, 129, 0, 131, 60, 125, 124, 131, 126, 129, - 125, 131, 47, 124, 129, 125, 131, 34, 35, 36, - 124, 131, 126, 72, 73, 60, 900, 129, 26, 131, - 904, 959, 36, 959, 130, 909, 910, 54, 55, 56, - 57, 137, 59, 60, 124, 875, 876, 129, 878, 47, - 130, 125, 58, 131, 884, 90, 406, 131, 36, 987, - 36, 989, 60, 989, 125, 939, 129, 897, 3, 943, - 131, 120, 422, 1001, 52, 1001, 950, 69, 17, 278, - 51, 838, 125, 957, 958, 17, 129, 582, 131, 19, - 25, 921, 90, 125, 851, 130, 853, 927, 125, 34, - 39, 40, 137, 122, 123, 124, 38, 39, 125, 115, - 116, 117, 129, 463, 131, 668, 17, 18, 122, 123, - 124, 125, 124, 997, 126, 475, 617, 406, 619, 122, - 123, 124, 130, 17, 625, 965, 49, 50, 968, 137, - 124, 113, 972, 422, 128, 58, 124, 125, 0, 702, - 124, 86, 126, 88, 38, 39, 40, 124, 93, 126, - 126, 991, 97, 122, 123, 69, 125, 102, 36, 101, - 105, 106, 107, 108, 26, 15, 16, 17, 18, 124, - 115, 126, 278, 118, 463, 120, 122, 123, 3, 4, - 595, 126, 34, 35, 9, 47, 475, 110, 111, 112, - 113, 114, 115, 116, 117, 140, 128, 9, 60, 121, - 122, 123, 54, 55, 56, 57, 36, 59, 60, 34, - 35, 36, 125, 9, 15, 16, 17, 18, 744, 579, - 3, 4, 34, 35, 36, 122, 123, 124, 90, 54, - 55, 56, 57, 278, 59, 60, 0, 124, 34, 35, - 36, 36, 54, 55, 56, 57, 36, 59, 60, 124, - 17, 126, 58, 124, 463, 126, 36, 109, 54, 55, - 56, 57, 26, 59, 60, 124, 475, 126, 130, 19, - 278, 38, 39, 40, 643, 137, 36, 129, 638, 122, - 123, 124, 651, 47, 109, 122, 123, 124, 3, 4, - 579, 494, 495, 496, 497, 498, 60, 109, 38, 39, - 125, 125, 126, 0, 129, 36, 131, 113, 114, 115, - 116, 117, 36, 125, 9, 518, 36, 129, 36, 131, - 122, 123, 124, 122, 123, 124, 90, 64, 65, 26, - 124, 36, 36, 129, 132, 131, 125, 125, 131, 34, - 35, 36, 702, 124, 9, 58, 9, 19, 124, 638, - 47, 124, 9, 125, 125, 715, 9, 463, 128, 54, - 55, 56, 57, 60, 59, 60, 130, 576, 74, 475, - 579, 128, 131, 137, 47, 124, 124, 34, 35, 36, - 126, 87, 88, 89, 90, 91, 92, 93, 94, 124, - 750, 99, 126, 90, 0, 84, 126, 54, 55, 56, - 57, 124, 59, 60, 126, 774, 66, 126, 60, 126, - 770, 780, 772, 701, 126, 90, 278, 240, 463, 90, - 26, 90, 90, 783, 839, 243, 715, 702, 90, 638, - 475, 90, 90, 130, 129, 90, 131, 524, 798, 90, - 137, 47, 90, 90, 90, 90, 90, 729, 987, 879, - 242, 451, 109, 472, 60, 463, 1005, 579, -1, 830, - 661, 750, 661, 542, -1, 0, -1, 475, 125, -1, - -1, -1, 129, 579, 131, -1, -1, -1, -1, -1, - -1, 770, -1, 772, 90, -1, -1, -1, -1, -1, - -1, 26, -1, -1, 783, -1, 856, -1, 858, -1, - -1, 870, -1, -1, -1, -1, 715, -1, -1, 798, - -1, -1, 47, -1, 278, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 130, 60, 735, -1, -1, -1, - -1, 137, 638, -1, 579, -1, -1, -1, -1, -1, - 900, 750, -1, -1, 904, -1, -1, -1, -1, 909, - 910, -1, -1, -1, -1, 90, -1, -1, -1, -1, - -1, 770, -1, 772, -1, -1, -1, 856, -1, 858, - -1, 579, -1, -1, 783, -1, -1, -1, 9, 939, - -1, 278, -1, 943, 953, -1, -1, -1, -1, 798, - 950, -1, -1, 638, -1, 130, -1, 957, 958, -1, - -1, 463, 137, 34, 35, 36, -1, -1, -1, 715, - -1, 900, -1, 475, -1, 904, -1, -1, -1, 828, - 909, 910, -1, 54, 55, 56, 57, -1, 59, 60, - 638, -1, -1, 993, -1, -1, -1, 997, -1, -1, - -1, -1, -1, -1, 750, 1005, -1, 856, -1, 858, - 939, -1, -1, -1, 943, 0, -1, -1, -1, -1, - -1, 950, -1, -1, 770, -1, 772, -1, 957, 958, - 715, -1, 278, -1, -1, -1, -1, 783, -1, -1, - -1, 26, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 900, 798, -1, -1, 904, -1, -1, 129, 463, - 909, 910, 47, -1, 993, 750, -1, 715, 997, -1, - 9, 475, -1, -1, -1, 60, 1005, 579, -1, -1, - -1, -1, -1, -1, -1, 770, -1, 772, -1, -1, - 939, -1, -1, 0, 943, 34, 35, 36, 783, -1, - -1, 950, 750, 278, -1, 90, -1, -1, 957, 958, - 856, -1, 858, 798, -1, 54, 55, 56, 57, 26, - 59, 60, 770, -1, 772, -1, 463, -1, -1, -1, - -1, -1, -1, -1, -1, 783, 638, -1, 475, -1, - 47, -1, -1, -1, 993, 130, -1, -1, 997, -1, - 798, -1, 137, 60, 900, 9, 1005, -1, 904, -1, - -1, -1, -1, 909, 910, -1, -1, -1, -1, -1, - 109, 856, -1, 858, -1, 579, -1, -1, -1, -1, - 34, 35, 36, -1, -1, -1, 125, -1, -1, -1, - 129, -1, 131, 939, -1, -1, -1, 943, -1, -1, - 54, 55, 56, 57, 950, 59, 60, -1, 856, -1, - 858, 957, 958, 715, -1, 900, -1, 463, -1, 904, - -1, -1, -1, 130, 909, 910, -1, -1, -1, 475, - 137, -1, -1, -1, 638, -1, -1, -1, -1, -1, - -1, -1, 579, -1, -1, -1, -1, 993, 750, -1, - -1, 997, 900, -1, 939, 109, 904, -1, 943, 1005, - -1, 909, 910, -1, -1, 950, -1, -1, 770, -1, - 772, 125, 957, 958, -1, 129, -1, 131, -1, -1, - 9, 783, -1, -1, -1, -1, -1, -1, 463, -1, - 9, 939, -1, 278, -1, 943, 798, -1, -1, -1, - 475, 638, 950, -1, -1, 34, 35, 36, 993, 957, - 958, 715, 997, -1, -1, 34, 35, 36, -1, -1, - 1005, -1, -1, -1, -1, 54, 55, 56, 57, 0, - 59, 60, -1, 579, -1, 54, 55, 56, 57, -1, - 59, 60, -1, -1, -1, 993, 750, -1, -1, 997, - -1, -1, -1, -1, 856, 26, 858, 1005, -1, -1, - -1, -1, 34, 35, -1, -1, 770, -1, 772, -1, - -1, 278, -1, -1, -1, -1, 47, -1, 715, 783, - -1, -1, 54, 55, 56, 57, -1, 59, 60, 60, - 109, -1, 638, -1, 798, -1, -1, -1, 900, -1, - 129, -1, 904, -1, 579, -1, 125, 909, 910, -1, - 129, -1, 131, 750, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 9, -1, 0, -1, -1, - -1, -1, -1, 770, -1, 772, -1, 939, -1, -1, - -1, 943, -1, -1, -1, -1, 783, -1, 950, -1, - 34, 35, 856, 26, 858, 957, 958, 129, -1, 130, - -1, 798, -1, 638, -1, -1, 137, -1, -1, 715, - 54, 55, 56, 57, 47, 59, 60, -1, 463, -1, - -1, -1, -1, 9, -1, -1, -1, 60, -1, -1, - 475, 993, -1, -1, -1, 997, 900, -1, -1, -1, - 904, 0, -1, 1005, 750, 909, 910, -1, 34, 35, - 36, -1, -1, -1, -1, -1, -1, -1, -1, 856, - -1, 858, -1, -1, 770, -1, 772, 26, 54, 55, - 56, 57, -1, 59, 60, 939, -1, 783, -1, 943, - 715, -1, -1, -1, -1, 129, 950, 131, 47, -1, - -1, -1, 798, 957, 958, -1, 463, 130, -1, -1, - -1, 60, -1, 900, 137, -1, -1, 904, 475, -1, - -1, -1, 909, 910, -1, 750, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 993, - -1, -1, -1, 997, 579, 770, -1, 772, -1, 125, - 9, 1005, 939, 129, -1, 131, 943, 278, 783, -1, - 856, -1, 858, 950, -1, -1, -1, -1, -1, -1, - 957, 958, -1, 798, -1, 34, 35, 36, -1, -1, - -1, 130, -1, -1, -1, -1, -1, -1, 137, -1, - -1, -1, -1, 0, -1, 54, 55, 56, 57, -1, - 59, 60, -1, 638, 900, -1, 993, -1, 904, -1, - 997, -1, -1, 909, 910, -1, 0, -1, 1005, 26, - -1, -1, 579, -1, -1, -1, -1, -1, -1, -1, - -1, 856, -1, 858, -1, -1, -1, -1, -1, -1, - 47, -1, 26, 939, -1, -1, -1, 943, -1, -1, - -1, -1, -1, 60, 950, 278, -1, 9, -1, -1, - -1, 957, 958, 47, -1, -1, -1, -1, -1, -1, - 129, -1, 131, -1, -1, 900, 60, -1, -1, 904, - 715, 638, 34, 35, 909, 910, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 993, -1, -1, - -1, 997, 54, 55, 56, 57, -1, 59, 60, 1005, - -1, -1, -1, -1, 939, 750, 27, 28, 943, -1, - 31, 32, 33, 130, -1, 950, -1, -1, -1, 278, - 137, -1, 957, 958, -1, 770, -1, 772, 49, 50, - -1, -1, 463, -1, 9, -1, 130, 58, 783, -1, - -1, -1, -1, 137, 475, -1, -1, -1, 715, -1, - -1, -1, -1, 798, -1, -1, -1, -1, 993, 34, - 35, 36, 997, -1, -1, -1, -1, 129, -1, 131, - 1005, -1, -1, -1, -1, -1, -1, -1, -1, 54, - 55, 56, 57, 750, 59, 60, -1, -1, 109, 110, - 111, 112, 113, 114, 115, 116, 117, -1, 0, -1, - -1, 122, 123, 770, -1, 772, -1, -1, -1, -1, - -1, 856, -1, 858, -1, -1, 783, -1, -1, -1, - -1, 0, -1, -1, 26, -1, -1, -1, -1, -1, - 463, 798, 5, -1, -1, -1, -1, -1, 11, 12, - -1, -1, 475, -1, -1, 47, -1, 26, 579, 22, - 23, 24, -1, 26, 129, 900, 131, 30, 60, 904, - -1, 278, -1, -1, 909, 910, -1, -1, 47, 42, - -1, 44, -1, -1, 47, 48, -1, -1, -1, 52, - 53, 60, -1, -1, 278, -1, -1, -1, 61, 856, - -1, 858, -1, -1, 939, -1, -1, -1, 943, -1, - -1, -1, -1, -1, 463, 950, -1, 638, -1, -1, - -1, 84, 957, 958, -1, -1, 475, -1, -1, -1, - -1, -1, 95, -1, -1, -1, 99, -1, 130, -1, - -1, -1, -1, 900, 107, 137, -1, 904, -1, -1, - 0, -1, 909, 910, -1, -1, 579, -1, 993, -1, - -1, 130, 997, -1, 127, -1, -1, -1, 137, -1, - 1005, -1, -1, -1, -1, -1, 26, 9, -1, -1, - -1, -1, 939, -1, -1, -1, 943, -1, -1, -1, - -1, -1, -1, 950, 715, -1, -1, 47, -1, -1, - 957, 958, 34, 35, 36, -1, -1, -1, -1, -1, - 60, -1, -1, 0, -1, 638, -1, -1, -1, 9, - -1, -1, 54, 55, 56, 57, -1, 59, 60, 750, - 579, -1, -1, -1, -1, -1, 993, -1, -1, 26, - 997, -1, -1, -1, 34, 35, 36, -1, 1005, 770, - -1, 772, -1, -1, -1, -1, 463, -1, -1, -1, - 47, -1, 783, -1, 54, 55, 56, 57, 475, 59, - 60, -1, 0, 60, -1, -1, -1, 798, 9, 463, - 130, -1, -1, -1, -1, -1, 278, 137, -1, 638, - -1, 475, 715, -1, -1, -1, -1, 129, -1, 131, - -1, -1, -1, 34, 35, 36, -1, -1, -1, 278, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 54, 55, 56, 57, 750, 59, 60, - -1, -1, 60, 0, -1, 856, -1, 858, -1, 129, - -1, 131, -1, 130, -1, -1, -1, 770, -1, 772, - 137, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 783, -1, -1, -1, -1, -1, 715, -1, -1, -1, - -1, -1, 579, -1, -1, 798, -1, -1, -1, 900, - -1, -1, -1, 904, -1, -1, -1, -1, 909, 910, - -1, -1, -1, 60, -1, 579, 0, -1, 129, -1, - 131, 750, 130, -1, -1, -1, -1, -1, -1, 137, - -1, -1, -1, -1, -1, -1, -1, -1, 939, -1, - -1, 770, 943, 772, -1, -1, -1, -1, 278, 950, - -1, 638, -1, 856, 783, 858, 957, 958, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 798, - -1, -1, -1, -1, 638, -1, 60, -1, -1, -1, - -1, -1, -1, 130, -1, -1, -1, -1, -1, -1, - 137, 463, 993, -1, -1, -1, 997, 900, -1, -1, - -1, 904, -1, 475, 1005, -1, 909, 910, -1, -1, - -1, 278, -1, -1, 463, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 475, 856, 715, 858, - -1, -1, -1, -1, -1, -1, 939, -1, -1, -1, - 943, -1, -1, -1, -1, -1, 130, 950, -1, 0, - -1, 715, -1, 137, 957, 958, -1, -1, -1, -1, - -1, -1, -1, 750, -1, -1, -1, -1, -1, -1, - -1, 900, -1, -1, -1, 904, -1, -1, -1, -1, - 909, 910, -1, 770, -1, 772, 750, -1, -1, -1, - 993, -1, -1, -1, 997, -1, 783, -1, -1, -1, - -1, -1, 1005, -1, -1, -1, 770, 579, 772, 60, - 939, 798, -1, -1, 943, -1, -1, -1, -1, 783, - -1, 950, -1, -1, -1, -1, -1, -1, 957, 958, - 579, -1, -1, 463, 798, 5, -1, -1, -1, -1, - -1, 11, 12, -1, -1, 475, -1, -1, -1, -1, - -1, -1, 22, 23, 24, -1, 26, -1, -1, -1, - 30, -1, -1, -1, 993, -1, 638, -1, 997, 856, - -1, 858, 42, -1, 44, -1, 1005, 47, 48, 130, - -1, -1, 52, 53, -1, -1, 137, -1, -1, 638, - -1, 61, 856, -1, 858, -1, 463, -1, -1, -1, + 0, 10, 57, 169, 175, 150, 463, 671, 179, 210, + 576, 576, 594, 563, 185, 953, 187, 188, 475, 450, + 451, 718, 576, 472, 473, 722, 26, 605, 666, 9, + 36, 202, 17, 36, 17, 35, 9, 9, 36, 406, + 36, 129, 243, 131, 617, 983, 619, 47, 9, 9, + 36, 125, 625, 9, 9, 422, 36, 995, 58, 697, + 60, 36, 9, 46, 36, 9, 9, 9, 68, 9, + 70, 0, 72, 73, 36, 75, 36, 77, 9, 79, + 36, 81, 67, 83, 484, 85, 9, 87, 12, 89, + 90, 91, 36, 36, 36, 95, 36, 26, 98, 36, + 9, 101, 36, 103, 36, 36, 35, 9, 274, 10, + 9, 9, 278, 36, 36, 3, 4, 9, 47, 119, + 638, 121, 9, 129, 133, 131, 129, 36, 9, 58, + 130, 60, 3, 4, 36, 131, 109, 137, 36, 68, + 9, 70, 542, 72, 73, 131, 75, 547, 77, 36, + 79, 0, 81, 553, 83, 36, 85, 19, 87, 131, + 89, 90, 91, 729, 729, 125, 95, 36, 718, 98, + 131, 131, 101, 573, 103, 729, 131, 26, 9, 876, + 758, 3, 122, 123, 131, 125, 109, 131, 131, 131, + 119, 131, 121, 711, 131, 129, 860, 131, 47, 131, + 131, 130, 125, 25, 53, 36, 655, 36, 137, 131, + 210, 60, 34, 122, 123, 646, 125, 17, 36, 68, + 122, 123, 131, 48, 122, 123, 744, 36, 36, 131, + 122, 123, 131, 131, 122, 123, 85, 729, 87, 131, + 89, 90, 36, 243, 131, 17, 828, 36, 766, 36, + 131, 122, 123, 122, 123, 36, 822, 822, 36, 777, + 36, 0, 131, 36, 86, 36, 88, 36, 822, 52, + 119, 93, 125, 0, 792, 97, 124, 0, 278, 36, + 102, 130, 130, 105, 106, 107, 108, 26, 137, 34, + 35, 122, 123, 115, 122, 123, 118, 125, 120, 124, + 131, 0, 131, 103, 126, 17, 36, 764, 47, 54, + 55, 56, 57, 131, 59, 60, 125, 125, 140, 9, + 129, 60, 131, 131, 52, 129, 38, 39, 0, 101, + 822, 125, 850, 60, 852, 917, 125, 131, 125, 17, + 129, 124, 131, 0, 34, 35, 36, 125, 51, 278, + 131, 90, 125, 131, 26, 131, 129, 36, 131, 17, + 131, 60, 131, 41, 54, 55, 56, 57, 125, 59, + 60, 953, 129, 52, 131, 47, 894, 72, 73, 131, + 898, 39, 40, 124, 129, 903, 904, 17, 60, 101, + 58, 130, 122, 123, 124, 125, 124, 797, 137, 981, + 800, 983, 124, 60, 126, 9, 406, 807, 38, 39, + 40, 811, 36, 995, 129, 933, 130, 69, 90, 937, + 820, 17, 422, 137, 58, 120, 944, 3, 4, 278, + 34, 35, 36, 951, 952, 125, 124, 582, 0, 129, + 128, 131, 38, 39, 40, 124, 125, 115, 116, 117, + 54, 55, 56, 57, 124, 59, 60, 124, 130, 126, + 130, 832, 124, 463, 26, 137, 128, 668, 19, 869, + 870, 125, 872, 991, 845, 475, 847, 406, 878, 113, + 114, 115, 116, 117, 125, 47, 124, 113, 34, 35, + 128, 891, 69, 422, 122, 123, 124, 698, 60, 3, + 4, 15, 16, 17, 18, 9, 126, 0, 54, 55, + 56, 57, 36, 59, 60, 915, 15, 16, 17, 18, + 128, 921, 125, 122, 123, 129, 125, 131, 90, 36, + 34, 35, 36, 26, 463, 122, 123, 124, 36, 278, + 595, 122, 123, 124, 122, 123, 475, 122, 123, 124, + 54, 55, 56, 57, 47, 59, 60, 36, 124, 959, + 126, 36, 962, 109, 735, 36, 966, 60, 130, 122, + 123, 124, 738, 122, 123, 137, 121, 122, 123, 579, + 122, 123, 124, 129, 36, 985, 122, 123, 124, 0, + 124, 124, 126, 126, 124, 36, 126, 90, 124, 124, + 126, 126, 124, 36, 126, 109, 278, 17, 18, 3, + 4, 38, 39, 36, 463, 26, 125, 126, 64, 65, + 9, 125, 36, 36, 124, 129, 475, 131, 19, 3, + 4, 132, 124, 124, 643, 9, 47, 130, 638, 125, + 125, 131, 651, 9, 137, 34, 35, 36, 9, 60, + 579, 58, 19, 125, 124, 124, 9, 125, 0, 47, + 34, 35, 36, 128, 128, 54, 55, 56, 57, 131, + 59, 60, 126, 124, 74, 124, 124, 99, 84, 90, + 54, 55, 56, 57, 26, 59, 60, 87, 88, 89, + 90, 91, 92, 93, 94, 126, 126, 126, 698, 124, + 126, 66, 126, 60, 697, 47, 49, 50, 126, 638, + 90, 711, 90, 90, 90, 58, 278, 90, 60, 130, + 90, 90, 90, 240, 463, 243, 137, 576, 90, 698, + 579, 90, 90, 723, 90, 109, 475, 542, 90, 90, + 129, 981, 131, 873, 744, 242, 451, 472, 90, 999, + 661, 125, 579, 824, 9, 129, 661, 131, 560, 768, + -1, 9, -1, -1, 764, 774, 766, 110, 111, 112, + 113, 114, 115, 116, 117, -1, -1, 777, 833, 34, + 35, 36, 711, -1, -1, 278, 34, 35, 130, 638, + -1, 463, 792, -1, -1, 137, 9, -1, -1, 54, + 55, 56, 57, 475, 59, 60, 54, 55, 56, 57, + -1, 59, 60, -1, -1, 744, -1, -1, -1, 0, + -1, 34, 35, 36, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 764, -1, 766, -1, 9, + 579, 54, 55, 56, 57, 26, 59, 60, 777, -1, + 850, -1, 852, -1, 109, 864, -1, -1, -1, -1, + -1, -1, 711, 792, 34, 35, 47, 278, -1, -1, + 125, -1, -1, -1, 129, -1, 131, -1, -1, 60, + 729, 129, -1, 131, 54, 55, 56, 57, -1, 59, + 60, -1, -1, -1, 894, 744, 109, -1, 898, 638, + -1, 463, -1, 903, 904, -1, -1, 579, -1, 90, + -1, -1, 125, 475, -1, 764, 129, 766, 131, -1, + -1, 850, -1, 852, -1, -1, -1, -1, 777, -1, + -1, -1, -1, 933, -1, -1, 278, 937, 947, -1, + -1, -1, -1, 792, 944, -1, -1, -1, -1, 130, + -1, 951, 952, -1, -1, -1, 137, -1, -1, 129, + -1, 131, -1, -1, -1, 894, 638, -1, -1, 898, + 463, -1, 711, 822, 903, 904, -1, -1, -1, -1, + -1, -1, 475, -1, 9, -1, -1, 987, -1, -1, + -1, 991, -1, -1, -1, -1, -1, -1, -1, 999, + 0, 850, -1, 852, 933, 744, -1, -1, 937, 34, + 35, 36, -1, -1, -1, 944, -1, 579, -1, -1, + -1, -1, 951, 952, -1, 764, 26, 766, -1, 54, + 55, 56, 57, -1, 59, 60, -1, -1, 777, 711, + -1, -1, -1, -1, -1, 894, -1, 47, -1, 898, + -1, -1, 463, 792, 903, 904, -1, -1, 987, -1, + 60, -1, 991, -1, 475, -1, -1, -1, -1, -1, + 999, -1, 744, -1, -1, -1, 638, -1, -1, -1, + 0, -1, -1, -1, 933, -1, 579, -1, 937, -1, + 90, -1, 764, -1, 766, 944, -1, 278, -1, -1, + -1, -1, 951, 952, 129, 777, 26, -1, -1, -1, + -1, 850, -1, 852, -1, -1, -1, -1, -1, -1, + 792, 463, -1, -1, -1, -1, 9, 47, -1, -1, + 130, -1, -1, 475, -1, -1, -1, 137, 987, -1, + 60, -1, 991, -1, -1, 638, -1, -1, -1, 711, + 999, 34, 35, 36, -1, 894, -1, -1, -1, 898, + -1, -1, -1, -1, 903, 904, -1, -1, 579, -1, + 90, 54, 55, 56, 57, -1, 59, 60, 850, -1, + 852, -1, 744, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 933, -1, -1, -1, 937, -1, + -1, -1, 764, -1, 766, 944, -1, -1, 9, -1, + 130, -1, 951, 952, -1, 777, -1, 137, 711, -1, + -1, -1, 894, -1, -1, -1, 898, 638, -1, -1, + 792, 903, 904, 34, 35, 36, -1, 579, -1, -1, + -1, -1, -1, -1, -1, -1, 129, -1, 987, -1, + -1, 744, 991, 54, 55, 56, 57, 0, 59, 60, + 999, 933, -1, -1, -1, 937, -1, -1, -1, -1, + -1, 764, 944, 766, -1, -1, -1, -1, 278, 951, + 952, -1, 463, 26, 777, -1, -1, -1, 850, -1, + 852, -1, -1, -1, 475, -1, 638, -1, -1, 792, + 711, -1, -1, -1, 47, -1, -1, -1, 109, -1, + -1, -1, -1, -1, -1, 987, -1, 60, -1, 991, + -1, -1, -1, -1, 125, -1, -1, 999, 129, -1, + 131, -1, 894, 744, -1, -1, 898, 0, -1, -1, + -1, 903, 904, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 764, -1, 766, -1, 850, 278, 852, + -1, -1, -1, 26, -1, -1, 777, -1, -1, 711, + -1, 933, -1, -1, -1, 937, -1, -1, -1, -1, + -1, 792, 944, -1, 47, -1, -1, 130, -1, 951, + 952, -1, -1, -1, 137, -1, -1, 60, 579, -1, + -1, 894, 744, -1, -1, 898, -1, -1, -1, -1, + 903, 904, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 764, -1, 766, 987, -1, -1, -1, 991, + -1, -1, -1, -1, -1, 777, -1, 999, -1, 850, + 933, 852, -1, -1, 937, -1, -1, -1, -1, -1, + 792, 944, -1, -1, -1, -1, -1, 638, 951, 952, + 0, -1, -1, 463, -1, -1, -1, 130, -1, -1, + -1, -1, -1, -1, 137, 475, -1, -1, -1, -1, + -1, -1, -1, 894, -1, -1, 26, 898, -1, -1, + -1, -1, 903, 904, 987, -1, -1, -1, 991, -1, + -1, -1, -1, -1, -1, -1, 999, 47, 850, -1, + 852, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 60, -1, 933, -1, 9, -1, 937, -1, -1, -1, + 711, -1, -1, 944, -1, 278, -1, -1, -1, -1, + 951, 952, -1, 463, -1, -1, -1, -1, -1, 34, + 35, 36, 894, -1, -1, 475, 898, -1, -1, -1, + -1, 903, 904, 744, -1, -1, -1, 0, -1, 54, + 55, 56, 57, -1, 59, 60, 987, -1, -1, 579, + 991, -1, -1, 764, -1, 766, -1, -1, 999, -1, + 130, 933, -1, 26, -1, 937, 777, 137, -1, -1, + -1, -1, 944, -1, -1, -1, -1, -1, -1, 951, + 952, 792, -1, -1, 47, 278, -1, -1, -1, -1, + -1, -1, -1, -1, 109, -1, -1, 60, -1, -1, + -1, -1, -1, -1, -1, 5, -1, -1, 638, -1, + 125, 11, 12, -1, 129, 987, 131, -1, -1, 991, + -1, -1, 22, 23, 24, -1, 26, 999, -1, 579, + 30, -1, -1, -1, -1, -1, -1, -1, -1, 850, + -1, 852, 42, -1, 44, -1, -1, 47, 48, -1, + -1, -1, 52, 53, -1, -1, -1, -1, -1, 0, + -1, 61, -1, -1, -1, -1, -1, 130, -1, -1, + -1, -1, -1, -1, 137, -1, -1, -1, -1, -1, + -1, 711, -1, 894, 84, 26, -1, 898, 638, -1, + 463, -1, 903, 904, -1, 95, -1, -1, -1, 99, + -1, -1, 475, 9, -1, -1, 47, 107, 278, -1, + -1, -1, -1, -1, 744, -1, -1, -1, 9, 60, + -1, -1, 933, -1, -1, -1, 937, 127, 34, 35, + 36, -1, -1, 944, 764, -1, 766, -1, -1, -1, + 951, 952, -1, 34, 35, 36, -1, 777, 54, 55, + 56, 57, -1, 59, 60, -1, -1, 0, -1, -1, + -1, 711, 792, 54, 55, 56, 57, -1, 59, 60, + 463, -1, -1, -1, 0, -1, 987, -1, -1, -1, + 991, -1, 475, 26, -1, -1, -1, -1, 999, 130, + -1, -1, -1, -1, 744, -1, 137, -1, -1, -1, + 26, -1, -1, 109, 47, -1, 579, -1, -1, -1, + 9, -1, -1, -1, 764, 278, 766, 60, -1, 125, + 850, 47, 852, 129, -1, 131, -1, 777, -1, -1, + -1, -1, -1, -1, 60, 34, 35, 36, 129, -1, + 131, -1, 792, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 54, 55, 56, 57, -1, + 59, 60, -1, -1, 894, 638, -1, -1, 898, -1, + -1, -1, -1, 903, 904, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 579, 130, -1, -1, + -1, -1, -1, 463, 137, -1, -1, -1, -1, -1, + 850, -1, 852, 933, 130, 475, -1, 937, -1, -1, + -1, 137, -1, -1, 944, -1, -1, -1, -1, -1, + -1, 951, 952, -1, -1, -1, 125, -1, -1, -1, + 129, -1, 131, -1, -1, -1, -1, 278, 711, -1, + -1, -1, -1, -1, 894, 638, -1, -1, 898, -1, + -1, 0, -1, 903, 904, -1, -1, 987, -1, -1, + -1, 991, -1, -1, -1, -1, -1, -1, -1, 999, + -1, 744, -1, -1, -1, -1, -1, 26, -1, -1, + 9, -1, -1, 933, -1, -1, -1, 937, -1, -1, + -1, 764, -1, 766, 944, -1, -1, 9, 47, -1, + 463, 951, 952, -1, 777, 34, 35, 36, -1, 579, + -1, 60, 475, 9, -1, -1, -1, -1, 711, 792, + -1, -1, 34, 35, 36, 54, 55, 56, 57, -1, + 59, 60, -1, -1, -1, 278, -1, 987, 34, 35, + 36, 991, 54, 55, 56, 57, -1, 59, 60, 999, + -1, 744, 278, -1, -1, -1, -1, -1, 54, 55, + 56, 57, -1, 59, 60, -1, -1, -1, 638, -1, + -1, 764, -1, 766, -1, -1, -1, 850, -1, 852, + -1, 130, -1, -1, 777, -1, -1, -1, 137, -1, + 74, 75, 76, 77, 78, 79, 80, 81, 82, 792, + 129, 9, 131, 87, 88, 89, 90, 91, 92, 93, + 94, -1, -1, -1, -1, -1, 579, 129, -1, 131, + -1, 894, 463, -1, -1, 898, 34, 35, 36, -1, + 903, 904, -1, 129, 475, 131, -1, -1, -1, -1, + -1, 711, 0, -1, -1, -1, 54, 55, 56, 57, + -1, 59, 60, -1, -1, -1, -1, 850, -1, 852, + 933, -1, -1, -1, 937, -1, -1, -1, 26, -1, + -1, 944, -1, -1, 744, 638, -1, -1, 951, 952, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, + -1, -1, -1, -1, 764, -1, 766, -1, -1, -1, + -1, 894, 60, -1, -1, 898, -1, 777, -1, -1, + 903, 904, -1, 0, 987, -1, -1, 9, 991, -1, + 463, 129, 792, 131, -1, -1, 999, -1, -1, 278, + -1, -1, 475, -1, -1, -1, -1, 463, 579, 26, + 933, -1, 34, 35, 937, -1, -1, -1, 711, 475, + -1, 944, -1, -1, -1, -1, -1, -1, 951, 952, + 47, -1, 54, 55, 56, 57, -1, 59, 60, -1, + 9, -1, 130, 60, -1, -1, -1, -1, 0, 137, + 850, 744, 852, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 987, 34, 35, 638, 991, -1, + -1, 764, -1, 766, -1, -1, 999, -1, -1, -1, + -1, -1, -1, -1, 777, 54, 55, 56, 57, -1, + 59, 60, -1, 0, 894, -1, -1, -1, 898, 792, + -1, -1, -1, 903, 904, -1, 579, 129, 60, 131, + -1, -1, -1, 130, -1, -1, 0, -1, -1, -1, + 137, -1, -1, 579, 5, -1, -1, -1, -1, -1, + 11, 12, -1, 933, -1, -1, -1, 937, -1, -1, + 711, 22, 23, 24, 944, 26, -1, -1, -1, 30, + -1, 951, 952, 60, -1, -1, -1, 850, -1, 852, + 129, 42, 131, 44, -1, 638, 47, 48, -1, -1, + -1, 52, 53, 744, -1, -1, 60, -1, 130, -1, + 61, -1, 638, -1, 463, 137, -1, 987, -1, -1, + 278, 991, -1, 764, -1, 766, 475, -1, -1, 999, + -1, 894, -1, 84, -1, 898, 777, -1, -1, -1, + 903, 904, -1, -1, 95, -1, -1, -1, 99, -1, + -1, 792, -1, 130, -1, -1, 107, -1, -1, -1, + 137, -1, -1, -1, -1, -1, -1, -1, 711, -1, + 933, 122, 123, -1, 937, -1, 130, -1, -1, -1, + -1, 944, -1, 137, -1, 711, -1, -1, 951, 952, + -1, 278, -1, -1, 27, 28, -1, -1, 31, 32, + 33, 744, -1, -1, -1, -1, -1, 0, -1, 850, + -1, 852, -1, -1, -1, -1, 49, 50, 744, -1, + -1, 764, -1, 766, 987, 58, -1, -1, 991, -1, + 579, -1, -1, -1, 777, -1, 999, -1, 764, -1, + 766, -1, -1, -1, -1, -1, -1, -1, -1, 792, + -1, 777, -1, 894, -1, -1, -1, 898, -1, -1, + -1, -1, 903, 904, -1, -1, 792, 60, -1, -1, + -1, -1, -1, -1, -1, -1, 109, 110, 111, 112, + 113, 114, 115, 116, 117, -1, -1, -1, -1, 638, + -1, 124, 933, -1, -1, -1, 937, -1, -1, -1, + -1, -1, -1, 944, -1, 463, -1, 850, -1, 852, + 951, 952, -1, -1, -1, -1, -1, 475, -1, -1, + -1, -1, -1, -1, 850, -1, 852, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 130, -1, -1, + -1, -1, -1, -1, 137, -1, 987, -1, 27, 28, + 991, 894, 31, 32, 33, 898, -1, -1, 999, -1, + 903, 904, 711, -1, -1, -1, -1, -1, 894, -1, + 49, 50, 898, -1, -1, -1, 463, 903, 904, 58, -1, -1, -1, -1, -1, -1, -1, -1, 475, -1, - -1, -1, -1, 900, 84, -1, -1, 904, -1, -1, - -1, -1, 909, 910, -1, 95, -1, -1, -1, 99, - -1, -1, -1, -1, -1, -1, 900, 107, -1, -1, - 904, -1, -1, 715, -1, 909, 910, -1, -1, 579, - -1, 121, 939, -1, -1, 463, 943, -1, -1, -1, - -1, -1, -1, 950, -1, -1, 715, 475, -1, -1, - 957, 958, -1, -1, -1, 939, -1, -1, 750, 943, - -1, -1, -1, -1, -1, -1, 950, -1, -1, -1, - -1, -1, -1, 957, 958, -1, -1, -1, 770, -1, - 772, 750, -1, -1, -1, -1, 993, -1, 638, -1, - 997, 783, 579, -1, -1, -1, 463, -1, 1005, -1, - -1, 770, -1, 772, -1, -1, 798, -1, 475, 993, - -1, -1, -1, 997, 783, -1, -1, -1, -1, -1, - -1, 1005, -1, -1, -1, -1, -1, -1, -1, 798, - -1, -1, -1, -1, -1, 5, -1, -1, -1, -1, - -1, 11, 12, -1, -1, -1, -1, -1, -1, -1, - -1, 638, 22, 23, 24, -1, 26, -1, -1, 463, - 30, -1, -1, -1, 856, 715, 858, -1, -1, -1, - -1, 475, 42, -1, 44, -1, -1, 47, 48, -1, - -1, -1, 52, 53, -1, -1, -1, 856, -1, 858, - -1, 61, -1, -1, -1, -1, -1, -1, -1, -1, - 750, -1, 72, 73, -1, -1, -1, -1, 900, -1, - 638, -1, 904, -1, 84, -1, -1, 909, 910, -1, - 770, -1, 772, -1, -1, 95, -1, -1, 715, 99, - -1, 900, -1, 783, -1, 904, -1, 107, -1, -1, - 909, 910, -1, -1, -1, -1, -1, 939, 798, -1, - 120, 943, -1, -1, -1, 125, -1, -1, 950, -1, - -1, -1, -1, 750, -1, 957, 958, -1, -1, -1, - 939, 638, -1, -1, 943, -1, -1, -1, -1, -1, - -1, 950, -1, 770, -1, 772, -1, 715, 957, 958, - -1, -1, 463, -1, -1, -1, 783, -1, -1, -1, - -1, 993, -1, -1, 475, 997, 856, -1, 858, -1, - -1, 798, 70, 1005, 72, 73, -1, 75, -1, 77, - -1, 79, 750, 81, 993, 83, -1, 85, 997, 87, - -1, 89, 90, 91, 638, -1, 1005, 95, -1, -1, - 98, -1, 770, 101, 772, 103, -1, -1, 715, -1, - 900, -1, -1, -1, 904, 783, -1, -1, -1, 909, - 910, 119, -1, 121, -1, -1, -1, -1, -1, 856, - 798, 858, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 750, -1, -1, -1, -1, -1, 939, - -1, -1, -1, 943, -1, -1, -1, -1, -1, -1, - 950, -1, -1, 770, -1, 772, -1, 957, 958, -1, - -1, 715, -1, 900, 27, 28, 783, 904, 31, 32, - 33, -1, 909, 910, -1, -1, -1, -1, 856, -1, - 858, 798, -1, -1, -1, -1, 49, 50, -1, -1, - -1, -1, -1, 993, -1, 58, 750, 997, -1, -1, - -1, -1, 939, -1, -1, 1005, 943, -1, -1, -1, - -1, -1, -1, 950, -1, -1, 770, 638, 772, -1, - 957, 958, 900, -1, -1, -1, 904, -1, -1, 783, - -1, 909, 910, -1, -1, -1, -1, -1, -1, 856, - -1, 858, -1, 106, 798, -1, 109, 110, 111, 112, - 113, 114, 115, 116, 117, -1, 993, -1, -1, -1, - 997, 939, -1, -1, -1, 943, -1, -1, 1005, -1, - -1, -1, 950, -1, -1, -1, -1, -1, -1, 957, - 958, -1, -1, 900, -1, -1, -1, 904, -1, -1, - -1, -1, 909, 910, 715, -1, -1, -1, -1, -1, - -1, -1, 856, -1, 858, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 993, -1, -1, -1, 997, - -1, -1, 939, -1, -1, -1, 943, 1005, -1, 750, - -1, -1, -1, 950, -1, -1, -1, -1, -1, -1, - 957, 958, -1, -1, -1, -1, 900, -1, -1, 770, - 904, 772, -1, -1, -1, 909, 910, -1, -1, -1, - -1, -1, 783, -1, -1, -1, -1, -1, -1, 14, - 15, 16, -1, -1, -1, -1, 993, 798, -1, -1, - 997, 26, -1, -1, -1, 939, -1, -1, 1005, 943, - -1, -1, -1, -1, -1, 40, 950, 42, 43, 0, - 1, -1, 47, 957, 958, -1, -1, -1, -1, -1, - -1, -1, -1, 58, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 68, -1, 70, -1, 72, 73, -1, - 75, -1, 77, -1, 79, 856, 81, 858, 83, 993, - 85, -1, 87, 997, 89, 90, 91, -1, -1, -1, - 95, 1005, -1, 98, -1, -1, 101, -1, 103, 60, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 119, -1, 121, -1, -1, 900, - -1, -1, -1, 904, -1, -1, -1, -1, 909, 910, - -1, 5, -1, -1, -1, -1, -1, 11, 12, -1, - -1, -1, -1, -1, 149, 150, -1, -1, 22, 23, - 24, -1, 26, -1, -1, 116, 30, -1, 939, -1, - -1, -1, 943, -1, 169, -1, -1, -1, 42, 950, - 44, -1, -1, 47, 48, -1, 957, 958, 52, 53, - -1, -1, -1, -1, -1, 146, -1, 61, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 210, -1, -1, -1, 214, - 84, -1, 993, -1, -1, -1, 997, -1, -1, -1, - -1, 95, -1, -1, 1005, 99, -1, -1, -1, -1, - -1, -1, 9, 107, -1, -1, 241, 242, 243, -1, - -1, -1, -1, -1, 205, -1, 207, 252, 122, 123, - -1, -1, 213, 258, -1, -1, -1, 34, 35, 36, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 274, - -1, -1, -1, 278, -1, -1, -1, 54, 55, 56, - 57, -1, 59, 60, -1, -1, -1, -1, -1, -1, - -1, 252, 297, 298, 255, -1, -1, 74, 75, 76, - 77, 78, 79, 80, 81, 82, -1, -1, -1, 270, - 87, 88, 89, 90, 91, 92, 93, 94, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 291, -1, -1, -1, -1, 66, 67, -1, 69, -1, - 71, -1, -1, 74, -1, 76, -1, 78, 125, -1, - -1, 82, 129, 84, 131, -1, -1, 88, -1, -1, - -1, 92, 93, -1, -1, -1, 97, -1, 99, -1, - -1, 102, -1, -1, -1, -1, 27, 28, -1, -1, - 31, 32, 33, -1, -1, -1, 117, 118, -1, 120, - -1, -1, -1, -1, -1, -1, -1, -1, 49, 50, - -1, 406, -1, -1, -1, -1, -1, 58, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 422, 74, 75, - 76, 77, 78, 79, 80, 81, 82, -1, -1, -1, - -1, 87, 88, 89, 90, 91, 92, 93, 94, 170, - 171, 172, 173, 174, 175, 176, -1, 178, 179, -1, - 181, 182, 183, -1, 185, -1, 187, 188, 109, 110, - 111, 112, 113, 114, 115, 116, 117, -1, -1, 200, - -1, 202, 203, 124, -1, 131, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 446, 217, 218, 219, 220, - 221, 222, 223, -1, 225, 226, -1, 228, 229, 230, - -1, 232, 233, 234, -1, -1, 237, 238, 239, -1, - -1, -1, -1, 474, -1, 520, -1, 522, -1, -1, - -1, 482, -1, -1, 485, -1, 487, -1, -1, -1, - -1, 262, 263, -1, 265, 266, -1, -1, -1, -1, - 545, -1, -1, -1, -1, -1, 551, -1, -1, -1, - -1, -1, -1, -1, -1, 560, 517, -1, 519, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 530, - -1, 576, -1, -1, 579, -1, 537, 582, -1, 540, - 541, -1, 543, -1, -1, 546, 5, -1, 7, 8, - -1, 10, 11, 12, 13, -1, -1, -1, -1, -1, - 19, 20, 21, 22, 23, 24, -1, 26, -1, -1, - 571, 30, -1, -1, -1, -1, -1, -1, -1, 580, - -1, -1, -1, 42, -1, 44, -1, -1, 47, 48, - -1, -1, 51, 52, 53, -1, -1, -1, -1, -1, - 371, -1, 61, 648, 649, -1, -1, -1, -1, -1, - -1, 70, -1, 72, 73, -1, -1, -1, -1, -1, - -1, -1, -1, 668, -1, 84, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 95, 96, -1, 10, - 99, -1, -1, -1, -1, 104, -1, -1, 107, 20, - 21, 652, -1, -1, -1, -1, -1, 702, -1, -1, - 705, 120, -1, -1, 709, 710, 125, -1, 127, -1, - 129, -1, -1, -1, -1, 720, -1, 722, -1, 50, - -1, -1, -1, 728, 729, 56, 57, -1, -1, 734, - 735, -1, -1, -1, -1, -1, -1, -1, -1, 744, - -1, -1, 703, -1, -1, -1, -1, -1, -1, -1, - 711, -1, 713, -1, -1, -1, -1, -1, -1, -1, - -1, 722, 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, - 751, -1, -1, -1, -1, -1, 757, -1, 759, 42, - -1, 44, 133, -1, 47, 48, 811, 812, -1, 52, - 53, -1, 773, 144, -1, 776, 777, 778, 61, -1, - 151, 782, -1, 828, 785, -1, -1, 158, -1, -1, - -1, 836, -1, 838, -1, -1, 167, 168, -1, -1, - -1, 84, -1, -1, -1, -1, 851, -1, 853, 810, - -1, -1, 95, -1, -1, -1, 99, 588, -1, -1, - 591, -1, -1, -1, 107, -1, -1, -1, -1, 874, - -1, -1, -1, -1, 879, -1, -1, 882, 121, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 850, - -1, -1, -1, -1, -1, -1, 857, -1, -1, 860, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 917, -1, 245, -1, -1, -1, -1, -1, - -1, 926, 883, -1, 929, -1, -1, -1, -1, -1, - 935, -1, -1, -1, -1, -1, -1, -1, 269, -1, - -1, 272, -1, -1, -1, -1, -1, -1, -1, -1, - 911, -1, -1, -1, -1, -1, -1, -1, 919, 920, - -1, -1, 967, -1, 925, -1, -1, -1, -1, -1, - 301, 302, 933, 934, 305, -1, 937, -1, -1, 940, - 941, 312, -1, -1, -1, 316, -1, -1, -1, -1, - 321, -1, -1, -1, 325, -1, -1, -1, 329, -1, - -1, -1, 333, -1, -1, 336, -1, 1012, 1013, 340, - 741, -1, -1, 344, -1, -1, -1, -1, -1, 980, - 351, -1, 983, -1, -1, -1, -1, -1, 27, 28, - -1, -1, 31, 32, 33, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 49, 50, -1, -1, 31, 32, 33, -1, 389, 58, - 391, -1, -1, 394, -1, -1, 397, -1, -1, -1, - -1, 402, 49, 50, -1, -1, -1, 408, -1, 9, - -1, 58, -1, -1, 415, 416, 417, 418, 419, 420, - 421, -1, -1, -1, -1, -1, -1, -1, 429, -1, - 431, -1, -1, 434, 34, 35, 36, 106, -1, 440, + 933, -1, -1, -1, 937, 744, -1, -1, -1, -1, + -1, 944, -1, -1, -1, -1, -1, 933, 951, 952, + -1, 937, -1, -1, -1, 764, -1, 766, 944, -1, + -1, 579, -1, -1, -1, 951, 952, 106, 777, -1, 109, 110, 111, 112, 113, 114, 115, 116, 117, -1, - -1, -1, -1, -1, 54, 55, 56, 57, -1, 59, - 60, -1, 109, 110, 111, 112, 113, 114, 115, 116, - 117, -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, -1, -1, 499, 500, - 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, - 511, 512, 513, 514, 515, 516, -1, -1, -1, -1, - -1, -1, 122, 123, 124, -1, -1, -1, -1, 129, - -1, 131, 533, -1, -1, -1, -1, -1, 539, -1, - -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, 576, -1, 578, 42, -1, - 44, -1, -1, 47, 48, -1, -1, -1, 52, 53, - -1, 592, -1, -1, -1, -1, -1, 61, -1, -1, - -1, -1, -1, -1, 605, 1, -1, 3, 4, 5, - 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, - 84, 17, -1, 19, 20, 21, 22, 23, 24, 25, - 26, 95, -1, -1, 30, 99, -1, -1, 34, 35, - -1, 37, 643, 107, -1, -1, 42, 43, 44, 45, - 651, 47, 48, -1, -1, 51, 52, 53, 659, -1, - -1, -1, -1, 664, -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, -1, - -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, - -1, 127, -1, 129, 735, 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, -1, -1, 764, -1, -1, -1, 768, -1, -1, - -1, -1, -1, 774, -1, -1, -1, -1, -1, 780, - -1, -1, -1, -1, -1, 786, 125, -1, -1, -1, - -1, -1, -1, 794, -1, -1, -1, -1, 799, -1, - 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, 828, -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, -1, -1, - -1, 61, 62, 63, 865, -1, -1, -1, 68, 870, - 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, -1, -1, 107, -1, -1, - -1, 912, -1, -1, -1, -1, -1, -1, -1, -1, - 120, -1, 122, 123, -1, 125, -1, 127, -1, 129, - -1, -1, -1, -1, 0, 1, -1, 3, 4, 5, - 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, - -1, -1, 953, 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, -1, - -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, - -1, 127, 1, 129, 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, 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, -1, -1, 107, -1, + -1, 463, -1, 792, 987, 27, 28, -1, 991, 31, + 32, 33, -1, 475, -1, -1, 999, -1, -1, -1, + -1, 987, -1, -1, -1, 991, -1, 49, 50, -1, + -1, -1, -1, 999, -1, -1, 58, -1, -1, -1, + 638, -1, -1, -1, -1, -1, 463, -1, -1, -1, + -1, 9, 579, -1, -1, -1, -1, -1, 475, -1, + -1, 850, -1, 852, -1, -1, -1, -1, -1, 463, + -1, -1, -1, -1, -1, -1, 34, 35, 36, -1, + -1, 475, -1, -1, 106, -1, -1, 109, 110, 111, + 112, 113, 114, 115, 116, 117, 54, 55, 56, 57, + -1, 59, 60, -1, -1, 894, -1, -1, -1, 898, + -1, 638, -1, 711, 903, 904, 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, -1, -1, 933, -1, 744, -1, 937, -1, + -1, -1, -1, -1, -1, 944, -1, -1, -1, -1, + -1, -1, 951, 952, -1, -1, 764, 125, 766, -1, + -1, 129, -1, 131, -1, -1, 638, -1, -1, 777, + -1, -1, -1, -1, 711, 27, 28, -1, -1, 31, + 32, 33, -1, -1, 792, -1, -1, -1, 987, -1, + -1, -1, 991, -1, -1, -1, -1, 49, 50, -1, + 999, -1, -1, -1, -1, -1, 58, 744, -1, -1, + -1, 638, -1, -1, -1, -1, -1, -1, -1, -1, + 463, -1, -1, -1, -1, -1, -1, 764, -1, 766, + -1, -1, 475, -1, 638, -1, -1, -1, -1, 711, + 777, -1, 850, -1, 852, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 792, -1, 109, 110, 111, + 112, 113, 114, 115, 116, 117, -1, -1, -1, -1, + 122, 123, 744, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 711, -1, 894, -1, -1, -1, + 898, -1, 764, -1, 766, 903, 904, -1, -1, -1, + -1, -1, -1, -1, -1, 777, -1, 711, -1, -1, + -1, -1, -1, 850, -1, 852, -1, 744, -1, -1, + 792, -1, -1, -1, -1, 933, -1, -1, -1, 937, + -1, -1, -1, -1, -1, -1, 944, 764, -1, 766, + 744, -1, -1, 951, 952, -1, -1, -1, -1, -1, + 777, -1, -1, -1, -1, -1, -1, 894, -1, -1, + 764, 898, 766, -1, -1, 792, 903, 904, -1, -1, + -1, -1, -1, 777, -1, -1, -1, -1, 850, 987, + 852, -1, -1, 991, -1, -1, -1, -1, 792, 0, + 1, 999, -1, -1, -1, 638, 933, -1, -1, -1, + 937, -1, -1, -1, -1, -1, -1, 944, -1, -1, + -1, -1, -1, -1, 951, 952, -1, -1, -1, -1, + -1, -1, 894, 850, -1, 852, 898, -1, -1, -1, + -1, 903, 904, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 850, -1, 852, 60, + 987, -1, -1, -1, 991, -1, -1, -1, -1, -1, + -1, 933, 999, -1, -1, 937, -1, 894, 711, -1, + -1, 898, 944, -1, -1, -1, 903, 904, -1, 951, + 952, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 894, -1, -1, -1, 898, -1, -1, -1, -1, 903, + 904, 744, -1, -1, -1, 116, 933, -1, -1, -1, + 937, -1, -1, -1, -1, 987, -1, 944, -1, 991, + -1, 764, -1, 766, 951, 952, -1, 999, -1, 933, + -1, -1, -1, 937, 777, 146, -1, -1, -1, -1, + 944, -1, -1, -1, -1, -1, -1, 951, 952, 792, + -1, -1, -1, 9, -1, -1, -1, -1, -1, -1, + 987, -1, -1, -1, 991, -1, -1, -1, -1, -1, + -1, -1, 999, -1, -1, -1, -1, -1, 34, 35, + 36, -1, -1, 987, -1, -1, -1, 991, -1, -1, + -1, -1, -1, -1, 205, 999, 207, -1, 54, 55, + 56, 57, 213, 59, 60, -1, -1, 850, -1, 852, + -1, -1, -1, -1, -1, -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, + -1, 252, -1, -1, 255, -1, -1, -1, -1, -1, + -1, 894, -1, -1, -1, 898, 14, 15, 16, 270, + 903, 904, -1, -1, -1, -1, -1, -1, 26, -1, + -1, -1, -1, 129, -1, 131, -1, -1, -1, -1, + 291, -1, 40, -1, 42, 43, 31, 32, 33, 47, + 933, -1, -1, -1, 937, -1, -1, -1, -1, -1, + 58, 944, -1, -1, 49, 50, -1, -1, 951, 952, + 68, -1, 70, 58, 72, 73, -1, 75, -1, 77, + -1, 79, -1, 81, -1, 83, -1, 85, -1, 87, + -1, 89, 90, 91, -1, -1, -1, 95, -1, -1, + 98, -1, -1, 101, 987, 103, -1, -1, 991, -1, + -1, -1, -1, -1, -1, -1, 999, -1, -1, -1, + -1, 119, -1, 121, 109, 110, 111, 112, 113, 114, + 115, 116, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 120, -1, 122, 123, -1, 125, -1, 127, 128, - 129, 1, -1, 3, 4, 5, 6, 7, 8, -1, + -1, 149, 150, -1, -1, -1, -1, -1, -1, 5, + -1, 7, 8, -1, 10, 11, 12, 13, -1, -1, + -1, 169, -1, 19, 20, 21, 22, 23, 24, -1, + 26, -1, -1, 29, 30, -1, -1, -1, 34, 35, + -1, -1, -1, -1, -1, 446, 42, -1, 44, -1, + -1, 47, 48, -1, -1, 51, 52, 53, -1, -1, + -1, -1, 210, -1, -1, 61, 214, -1, -1, -1, + -1, -1, -1, 474, 70, -1, 72, 73, -1, -1, + -1, 482, -1, -1, 485, -1, 487, -1, 84, -1, + -1, -1, -1, 241, 242, 243, -1, -1, -1, 95, + 96, -1, -1, 99, 252, -1, -1, -1, 104, 105, + 258, 107, -1, -1, -1, -1, -1, 113, 114, -1, + -1, -1, -1, -1, 120, 121, 274, -1, -1, 125, + 278, 127, -1, 129, 535, -1, 537, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 548, -1, 297, + 298, -1, -1, -1, 555, -1, -1, 558, 559, -1, + 561, -1, -1, 564, -1, -1, -1, -1, -1, -1, + 571, -1, -1, -1, -1, -1, -1, -1, -1, 580, + -1, -1, 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, -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, 652, 70, 71, 72, 73, -1, -1, 406, -1, + -1, -1, -1, -1, -1, 83, 84, 85, 86, -1, + -1, -1, -1, -1, 422, -1, -1, 95, 96, 97, + 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, + -1, -1, -1, -1, -1, -1, -1, -1, 699, -1, + -1, -1, 120, -1, 122, 123, 707, 125, 709, 127, + -1, 129, -1, -1, -1, -1, -1, 718, -1, -1, + 5, -1, 7, 8, -1, 10, 11, 12, 13, -1, + -1, -1, -1, -1, 19, 20, 21, 22, 23, 24, + -1, 26, -1, -1, 745, 30, -1, -1, -1, 497, + 751, -1, 753, -1, -1, -1, -1, 42, 506, 44, + -1, -1, 47, 48, -1, -1, 767, 52, 53, 770, + 771, 772, -1, -1, -1, 776, 61, -1, 779, -1, + -1, -1, -1, -1, -1, 70, -1, 72, 73, -1, + 538, -1, 540, -1, -1, -1, 27, 28, -1, 84, + 31, 32, 33, 804, -1, -1, -1, -1, -1, -1, + 95, 96, -1, -1, 99, 563, -1, -1, 49, 50, + -1, -1, 107, -1, -1, -1, -1, 58, 576, -1, + -1, 579, -1, -1, 582, 120, -1, -1, -1, -1, + 125, -1, 127, 844, -1, -1, -1, -1, -1, -1, + 851, -1, -1, 854, -1, -1, -1, -1, -1, 10, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 20, + 21, -1, -1, -1, -1, -1, 877, -1, 109, 110, + 111, 112, 113, 114, 115, 116, 117, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 50, + 648, 649, -1, -1, 905, 56, 57, -1, -1, -1, + -1, -1, 913, 914, -1, -1, -1, -1, 919, -1, + 668, -1, -1, -1, -1, -1, 927, 928, -1, -1, + 931, -1, -1, 934, 935, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 698, -1, -1, 701, -1, -1, -1, 705, 706, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 716, -1, + 718, -1, -1, 974, 722, 723, 977, -1, -1, -1, + 728, 729, 133, -1, -1, -1, -1, -1, -1, -1, + 738, -1, -1, 144, -1, -1, -1, -1, -1, -1, + 151, -1, -1, -1, -1, -1, -1, 158, -1, -1, + -1, -1, -1, -1, -1, -1, 167, 168, -1, -1, + -1, -1, -1, -1, -1, 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, 805, 806, -1, + -1, -1, 42, -1, 44, -1, -1, 47, 48, -1, + -1, 51, 52, 53, 822, -1, -1, -1, -1, -1, + -1, 61, 830, -1, 832, -1, -1, -1, -1, -1, + 70, -1, 72, 73, 245, -1, -1, 845, -1, 847, + -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 95, 96, -1, 269, 99, + 868, 272, -1, -1, 104, 873, -1, 107, 876, -1, + -1, -1, -1, 113, 114, -1, -1, -1, -1, -1, + 120, 121, -1, -1, 124, 125, -1, 127, -1, 129, + 301, 302, -1, -1, 305, -1, -1, -1, -1, -1, + -1, 312, -1, 911, -1, 316, -1, -1, -1, -1, + 321, -1, 920, -1, 325, 923, -1, -1, 329, -1, + -1, 929, 333, -1, -1, 336, -1, -1, -1, 340, + -1, -1, -1, 344, -1, -1, -1, -1, -1, -1, + 351, -1, -1, -1, -1, 5, -1, -1, -1, -1, + -1, 11, 12, 961, -1, -1, -1, -1, -1, -1, + -1, -1, 22, 23, 24, -1, 26, -1, -1, -1, + 30, -1, -1, -1, -1, -1, -1, -1, 389, -1, + 391, -1, 42, 394, 44, -1, 397, 47, 48, -1, + -1, 402, 52, 53, -1, -1, -1, 408, 1006, 1007, + -1, 61, -1, -1, 415, 416, 417, 418, 419, 420, + 421, 9, 72, 73, -1, -1, -1, -1, 429, -1, + 431, -1, -1, 434, 84, -1, -1, -1, -1, 440, + -1, -1, -1, -1, -1, 95, 34, 35, 36, 99, + -1, -1, -1, -1, -1, -1, -1, 107, -1, -1, + -1, -1, -1, -1, -1, -1, 54, 55, 56, 57, + 120, 59, 60, -1, -1, 125, -1, -1, -1, -1, + -1, -1, -1, -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, -1, -1, + -1, -1, -1, -1, -1, -1, 517, 518, 519, 520, + 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, + 531, 532, 533, 534, 122, 123, 124, -1, -1, -1, + -1, 129, -1, 131, -1, -1, 5, -1, 7, 8, + 551, 10, 11, 12, 13, -1, 557, -1, -1, -1, + 19, 20, 21, 22, 23, 24, -1, 26, -1, -1, + -1, 30, -1, -1, -1, 576, -1, 578, -1, -1, + -1, -1, -1, 42, -1, 44, -1, -1, 47, 48, + -1, 592, 51, 52, 53, 27, -1, -1, -1, 31, + 32, 33, 61, -1, 605, -1, -1, -1, -1, -1, + -1, 70, -1, 72, 73, -1, -1, 49, 50, -1, + -1, -1, -1, -1, -1, 84, 58, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 95, 96, -1, -1, + 99, -1, 643, -1, -1, 104, -1, -1, 107, -1, + 651, -1, -1, -1, -1, -1, -1, -1, 659, -1, + -1, 120, -1, 664, -1, -1, 125, -1, 127, -1, + 129, -1, -1, -1, -1, -1, -1, 109, 110, 111, + 112, 113, 114, 115, 116, 117, -1, -1, -1, -1, + -1, -1, -1, 66, 67, -1, 69, -1, 71, -1, + -1, 74, -1, 76, -1, 78, -1, -1, -1, 82, + -1, 84, -1, -1, -1, 88, -1, -1, -1, 92, + 93, -1, -1, -1, 97, -1, 99, -1, 729, 102, + -1, -1, -1, -1, -1, 74, 75, 76, 77, 78, + 79, 80, 81, 82, 117, 118, -1, 120, 87, 88, + 89, 90, 91, 92, 93, 94, -1, 758, -1, -1, + -1, 762, -1, -1, -1, -1, -1, 768, -1, -1, + -1, -1, -1, 774, -1, -1, -1, -1, -1, 780, + -1, -1, -1, -1, -1, -1, 125, 788, -1, -1, + -1, -1, 793, -1, -1, -1, -1, 170, 171, 172, + 173, 174, 175, 176, -1, 178, 179, -1, 181, 182, + 183, -1, 185, -1, 187, 188, -1, -1, -1, -1, + -1, 822, -1, 824, -1, -1, -1, 200, -1, 202, + 203, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 217, 218, 219, 220, 221, 222, + 223, -1, 225, 226, -1, 228, 229, 230, 859, 232, + 233, 234, -1, 864, 237, 238, 239, 74, 75, 76, + 77, 78, 79, 80, 81, 82, -1, -1, -1, -1, + 87, 88, 89, 90, 91, 92, 93, 94, -1, 262, + 263, -1, 265, 266, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 906, 0, 1, -1, 3, + 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, + 14, -1, -1, -1, 131, 19, 20, 21, 22, 23, + 24, 25, 26, -1, -1, -1, 30, -1, -1, -1, + 34, 35, -1, 37, -1, -1, 947, -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, 371, -1, + -1, 95, 96, 97, 98, 99, 100, -1, 102, -1, + 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, + -1, 125, -1, 127, 1, 129, 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, 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, -1, -1, + 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, + 127, 128, 129, -1, -1, -1, -1, -1, -1, -1, + 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, 588, 47, 48, 591, -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, -1, -1, 107, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, + -1, 122, 123, -1, 125, -1, 127, 1, 129, 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, 735, -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, -1, -1, 107, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, + -1, 125, -1, 127, 1, 129, 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, -1, -1, + 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, + 127, 1, 129, 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, @@ -3031,10 +3083,10 @@ static const yytype_int16 yycheck[] = -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, - 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, - -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, + 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, 38, 39, 40, -1, 42, 43, 44, 45, + -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, @@ -3047,32 +3099,32 @@ static const yytype_int16 yycheck[] = -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, + 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, 101, 102, -1, 104, -1, -1, 107, -1, + 99, 100, -1, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, - 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, + 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, + -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, -1, + -1, -1, -1, 95, 96, 97, 98, 99, 100, 101, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 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, + 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, @@ -3085,35 +3137,35 @@ static const yytype_int16 yycheck[] = 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, + -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, + -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, 101, 102, -1, 104, -1, -1, 107, + 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 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, -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, -1, -1, 107, -1, -1, -1, + -1, 102, 103, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, - 14, -1, -1, 17, -1, 19, 20, 21, 22, 23, + 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, 66, 67, 68, -1, 70, 71, 72, 73, + -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, @@ -3123,20 +3175,20 @@ static const yytype_int16 yycheck[] = 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, + 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, 103, 104, -1, -1, + 97, 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, - 10, 11, 12, 13, 14, -1, -1, 17, 18, 19, + 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, -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, @@ -3148,10 +3200,10 @@ static const yytype_int16 yycheck[] = 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, + -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, + 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, @@ -3159,10 +3211,10 @@ static const yytype_int16 yycheck[] = -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, 129, 3, 4, 5, 6, 7, 8, -1, 10, 11, 12, 13, 14, -1, - -1, 17, -1, 19, 20, 21, 22, 23, 24, 25, + -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, - 46, 47, 48, -1, -1, 51, 52, 53, -1, -1, + -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, @@ -3170,57 +3222,7 @@ static const yytype_int16 yycheck[] = 96, 97, 98, 99, 100, -1, 102, -1, 104, -1, -1, 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, 122, 123, -1, 125, - -1, 127, 1, 129, 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, -1, -1, 107, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 120, -1, 122, 123, -1, 125, -1, 127, 1, - 129, 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, -1, -1, 107, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 120, -1, - 122, 123, -1, 125, -1, 127, 128, 129, 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, 106, - 107, -1, -1, -1, -1, -1, 113, 114, -1, -1, - -1, -1, -1, 120, 121, -1, -1, -1, 125, -1, - 127, 5, 129, 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, 107, -1, -1, -1, -1, -1, 113, - 114, -1, -1, -1, -1, -1, 120, 121, -1, -1, - -1, 125, -1, 127, 5, 129, 7, 8, -1, 10, + -1, 127, 128, 129, 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, @@ -3230,9 +3232,9 @@ static const yytype_int16 yycheck[] = -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, -1, -1, 107, -1, -1, -1, + -1, -1, -1, 104, 105, 106, 107, -1, -1, -1, -1, -1, 113, 114, -1, -1, -1, -1, -1, 120, - 121, -1, -1, 124, 125, -1, 127, 5, 129, 7, + 121, -1, -1, -1, 125, -1, 127, 5, 129, 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, @@ -3289,105 +3291,103 @@ static const yytype_int16 yycheck[] = -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, 84, 9, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, -1, -1, 99, -1, -1, -1, -1, 104, -1, - -1, 107, -1, -1, -1, -1, -1, 113, 114, -1, + -1, 107, -1, -1, 34, 35, 36, 113, 114, -1, -1, -1, -1, -1, 120, 121, -1, -1, -1, 125, - -1, 127, 5, 129, 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, -1, 52, - 53, -1, -1, -1, -1, -1, -1, -1, 61, -1, - 9, -1, -1, -1, -1, -1, -1, 70, -1, 72, - 73, -1, 27, 28, -1, -1, 31, 32, 33, -1, - -1, 84, -1, -1, -1, 34, 35, 36, -1, -1, - -1, -1, 95, 96, 49, 50, 99, -1, -1, -1, - -1, -1, -1, 58, 107, 54, 55, 56, 57, -1, - 59, 60, -1, -1, -1, -1, -1, 120, -1, -1, - -1, 9, 125, -1, 127, 74, 75, 76, 77, 78, + -1, 127, -1, 129, 54, 55, 56, 57, -1, 59, + 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 9, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, 129, + -1, 131, 9, -1, -1, 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, 109, 110, 111, 112, 113, 114, - 115, 116, 117, -1, -1, -1, 54, 55, 56, 57, - -1, 59, 60, -1, -1, -1, -1, -1, -1, -1, - 129, -1, 131, 9, -1, -1, 74, 75, 76, 77, - 78, 79, 80, 81, 82, -1, -1, -1, -1, 87, - 88, 89, 90, 91, 92, 93, 94, -1, 34, 35, - 36, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 89, 90, 91, 92, 93, 94, -1, 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, -1, -1, -1, -1, -1, + 129, -1, 131, 9, -1, -1, -1, 74, 75, 76, + 77, 78, 79, 80, 81, 82, -1, -1, -1, -1, + 87, 88, 89, 90, 91, 92, 93, 94, 34, 35, + -1, -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, -1, -1, -1, -1, - -1, 129, -1, 131, 9, -1, -1, -1, 74, 75, + -1, -1, 129, -1, 131, -1, -1, -1, 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, -1, -1, -1, - -1, -1, -1, 129, -1, 131, 9, -1, -1, 74, - 75, 76, 77, 78, 79, 80, 81, 82, -1, -1, - -1, -1, 87, 88, 89, 90, 91, 92, 93, 94, - -1, 34, 35, -1, -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, -1, - -1, -1, -1, -1, 129, -1, 131, -1, -1, -1, - -1, 74, 75, 76, 77, 78, 79, 80, 81, 82, - -1, -1, -1, -1, 87, 88, 89, 90, 91, 92, - 93, 94, 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, 129, -1, 131, 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, -1, - -1, 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, 107, -1, -1, -1, 22, 23, - 24, -1, 26, -1, -1, -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, 107, -1, - -1, -1, 22, 23, 24, -1, 26, -1, 72, 73, - 30, -1, 121, -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, 107, -1, -1, -1, 22, 23, 24, - -1, 26, 72, 73, -1, 30, 120, -1, -1, -1, - -1, -1, -1, -1, 84, -1, -1, 42, -1, 44, - -1, -1, 47, 48, -1, 95, -1, 52, 53, 99, - -1, -1, -1, -1, -1, -1, 61, 107, -1, -1, - -1, -1, -1, -1, 5, -1, -1, -1, -1, -1, - 11, 12, -1, -1, -1, -1, -1, -1, -1, 84, - -1, 22, 23, 24, -1, 26, -1, -1, -1, 30, - 95, -1, -1, -1, 99, -1, -1, -1, -1, -1, - 105, 42, 107, 44, -1, -1, 47, 48, -1, 5, - -1, 52, 53, -1, -1, 11, 12, -1, -1, -1, - 61, -1, -1, -1, -1, -1, 22, 23, 24, -1, + -1, 87, 88, 89, 90, 91, 92, 93, 94, 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, 84, -1, -1, 42, -1, 44, -1, - -1, 47, 48, -1, 95, 27, 52, 53, 99, 31, - 32, 33, -1, -1, 105, 61, 107, -1, -1, -1, - -1, -1, -1, 5, -1, -1, -1, 49, 50, 11, - 12, -1, -1, -1, -1, -1, 58, -1, 84, -1, - 22, 23, 24, -1, 26, -1, -1, -1, 30, 95, - -1, -1, -1, 99, -1, -1, -1, -1, -1, 105, - 42, 107, 44, -1, -1, 47, 48, -1, -1, -1, - 52, 53, -1, -1, -1, -1, -1, -1, -1, 61, - -1, -1, -1, -1, -1, -1, -1, 109, 110, 111, - 112, 113, 114, 115, 116, 117, -1, -1, -1, -1, - -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 95, -1, -1, -1, 99, -1, -1, - -1, -1, -1, 105, -1, 107, 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, -1, -1, -1, - 87, 88, 89, 90, 91, 92, 93, 94, 74, 75, - 76, 77, 78, 79, 80, 81, 82, 125, -1, -1, - -1, 87, 88, 89, 90, 91, 92, 93, 94, 74, - 75, 76, 77, 78, 79, 80, 81, 82, 125, -1, - -1, -1, 87, 88, 89, 90, 91, 92, 93, 94, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 125 + -1, -1, -1, 129, -1, 131, 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, -1, -1, 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, 107, -1, -1, -1, 22, 23, 24, -1, 26, + -1, -1, -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, 107, -1, -1, -1, 22, + 23, 24, -1, 26, -1, -1, -1, 30, -1, 121, + -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, + 107, -1, -1, -1, 22, 23, 24, -1, 26, -1, + -1, -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, 107, -1, -1, -1, 22, 23, + 24, -1, 26, -1, 72, 73, 30, -1, 121, -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, 107, + -1, -1, -1, 22, 23, 24, -1, 26, 72, 73, + -1, 30, 120, -1, -1, -1, -1, -1, -1, -1, + 84, -1, -1, 42, -1, 44, -1, -1, 47, 48, + -1, 95, -1, 52, 53, 99, -1, -1, -1, -1, + -1, -1, 61, 107, -1, -1, -1, -1, -1, -1, + 5, -1, -1, -1, -1, -1, 11, 12, -1, -1, + -1, -1, -1, -1, -1, 84, -1, 22, 23, 24, + -1, 26, -1, -1, -1, 30, 95, -1, -1, -1, + 99, -1, -1, -1, -1, -1, 105, 42, 107, 44, + -1, -1, 47, 48, -1, 5, -1, 52, 53, -1, + -1, 11, 12, -1, -1, -1, 61, -1, -1, -1, + -1, -1, 22, 23, 24, -1, 26, -1, -1, -1, + 30, -1, -1, -1, -1, -1, -1, -1, -1, 84, + -1, -1, 42, -1, 44, -1, -1, 47, 48, -1, + 95, -1, 52, 53, 99, -1, -1, -1, -1, -1, + 105, 61, 107, -1, -1, -1, -1, -1, -1, 5, + -1, -1, -1, -1, -1, 11, 12, -1, -1, -1, + -1, -1, -1, -1, 84, -1, 22, 23, 24, -1, + 26, -1, -1, -1, 30, 95, -1, -1, -1, 99, + -1, -1, -1, -1, -1, 105, 42, 107, 44, -1, + -1, 47, 48, -1, 5, -1, 52, 53, -1, -1, + 11, 12, -1, -1, -1, 61, -1, -1, -1, -1, + -1, 22, 23, 24, -1, 26, -1, -1, -1, 30, + -1, -1, -1, -1, -1, -1, -1, -1, 84, -1, + -1, 42, -1, 44, -1, -1, 47, 48, -1, 95, + -1, 52, 53, 99, -1, -1, -1, -1, -1, 105, + 61, 107, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 70, -1, 72, 73, -1, 75, -1, 77, -1, + 79, -1, 81, 84, 83, -1, 85, -1, 87, -1, + 89, 90, 91, -1, 95, -1, 95, -1, 99, 98, + -1, -1, 101, -1, 103, -1, 107, -1, -1, -1, + 74, 75, 76, 77, 78, 79, 80, 81, 82, -1, + 119, -1, 121, 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, 125, -1, -1, -1, 87, 88, 89, 90, 91, + 92, 93, 94, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 125, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 125 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing @@ -3404,98 +3404,98 @@ static const yytype_uint16 yystos[] = 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 193, 194, 196, 197, 198, 199, 200, 202, 206, 211, - 213, 214, 215, 217, 229, 231, 232, 234, 235, 236, - 237, 238, 239, 240, 241, 242, 249, 254, 259, 260, - 261, 262, 263, 277, 281, 284, 299, 300, 301, 313, - 316, 318, 328, 331, 334, 346, 351, 355, 357, 364, - 377, 383, 386, 386, 151, 158, 159, 36, 36, 264, - 265, 125, 11, 12, 22, 23, 24, 26, 29, 30, + 213, 214, 215, 217, 223, 225, 226, 228, 229, 230, + 231, 232, 233, 234, 235, 236, 243, 248, 253, 254, + 255, 256, 257, 271, 275, 278, 293, 294, 295, 307, + 310, 312, 322, 325, 328, 340, 345, 349, 351, 358, + 371, 377, 380, 380, 151, 158, 159, 36, 36, 258, + 259, 125, 11, 12, 22, 23, 24, 26, 29, 30, 42, 44, 51, 53, 61, 95, 107, 113, 114, 121, 168, 169, 171, 173, 176, 178, 180, 182, 184, 187, 189, 191, 196, 197, 198, 202, 205, 211, 215, 218, - 223, 229, 231, 232, 233, 234, 242, 243, 244, 245, - 254, 258, 259, 261, 167, 165, 167, 166, 167, 158, - 152, 223, 223, 317, 282, 158, 167, 168, 169, 171, + 219, 223, 225, 226, 227, 228, 236, 237, 238, 239, + 248, 252, 253, 255, 167, 165, 167, 166, 167, 158, + 152, 219, 219, 311, 276, 158, 167, 168, 169, 171, 173, 176, 178, 180, 182, 184, 187, 189, 191, 196, - 197, 198, 202, 211, 215, 228, 229, 254, 259, 261, - 36, 278, 267, 154, 365, 150, 158, 189, 191, 376, - 10, 167, 167, 127, 167, 290, 19, 157, 250, 379, - 167, 189, 191, 196, 198, 211, 259, 342, 343, 356, - 223, 12, 125, 259, 121, 258, 105, 106, 121, 186, - 208, 209, 210, 223, 227, 248, 167, 189, 191, 212, - 0, 1, 136, 137, 149, 284, 386, 3, 4, 36, - 125, 9, 131, 246, 247, 9, 246, 167, 189, 191, - 195, 259, 9, 36, 246, 195, 9, 36, 246, 195, - 195, 9, 36, 246, 195, 9, 36, 246, 195, 9, - 36, 246, 195, 9, 36, 195, 9, 36, 246, 195, - 9, 246, 195, 259, 9, 36, 125, 158, 246, 195, - 259, 9, 36, 125, 158, 246, 195, 259, 8, 10, + 197, 198, 202, 211, 215, 222, 223, 248, 253, 255, + 36, 272, 261, 154, 359, 150, 158, 189, 191, 370, + 10, 167, 167, 127, 167, 284, 19, 157, 244, 373, + 167, 189, 191, 196, 198, 211, 253, 336, 337, 350, + 219, 12, 125, 253, 121, 252, 105, 106, 121, 186, + 208, 209, 210, 219, 221, 242, 167, 189, 191, 212, + 0, 1, 136, 137, 149, 278, 380, 3, 4, 36, + 125, 9, 131, 240, 241, 9, 240, 167, 189, 191, + 195, 253, 9, 36, 240, 195, 9, 36, 240, 195, + 195, 9, 36, 240, 195, 9, 36, 240, 195, 9, + 36, 240, 195, 9, 36, 195, 9, 36, 240, 195, + 9, 240, 195, 253, 9, 36, 125, 158, 240, 195, + 253, 9, 36, 125, 158, 240, 195, 253, 8, 10, 167, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 188, 189, 190, - 191, 192, 195, 254, 259, 260, 261, 262, 195, 9, - 246, 9, 158, 246, 9, 36, 195, 9, 36, 158, - 246, 195, 9, 36, 125, 246, 129, 195, 9, 36, - 158, 246, 195, 34, 35, 54, 55, 56, 57, 59, - 60, 109, 129, 230, 158, 158, 158, 158, 158, 255, - 386, 9, 36, 246, 9, 36, 158, 246, 195, 259, - 9, 36, 158, 246, 195, 158, 15, 16, 17, 18, - 304, 306, 311, 312, 1, 12, 25, 26, 136, 149, - 160, 161, 162, 163, 284, 386, 17, 38, 39, 40, - 314, 315, 319, 324, 258, 163, 17, 101, 352, 353, - 354, 158, 223, 386, 167, 268, 271, 268, 223, 223, - 223, 223, 167, 200, 219, 224, 220, 221, 222, 27, - 28, 31, 32, 33, 49, 50, 58, 109, 110, 111, - 112, 113, 114, 115, 116, 117, 124, 302, 225, 156, - 124, 386, 124, 386, 189, 269, 270, 271, 386, 167, - 283, 9, 109, 338, 193, 167, 279, 283, 269, 69, - 370, 223, 378, 19, 125, 286, 167, 386, 74, 75, - 76, 77, 78, 79, 80, 81, 82, 87, 88, 89, - 90, 91, 92, 93, 94, 144, 146, 147, 125, 386, - 113, 126, 105, 167, 251, 252, 69, 380, 52, 124, - 223, 386, 266, 167, 126, 128, 167, 189, 196, 198, - 200, 211, 124, 128, 106, 124, 128, 386, 167, 167, - 201, 223, 105, 223, 226, 124, 130, 223, 223, 223, - 223, 223, 223, 223, 223, 223, 223, 203, 223, 204, - 223, 223, 223, 223, 223, 216, 212, 223, 223, 223, - 223, 223, 223, 223, 223, 212, 223, 253, 257, 223, - 223, 223, 386, 307, 311, 16, 304, 311, 3, 4, - 160, 320, 325, 38, 314, 324, 39, 314, 386, 38, - 39, 358, 361, 386, 131, 144, 275, 276, 124, 386, - 386, 124, 146, 146, 146, 146, 146, 223, 223, 223, - 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, - 223, 223, 223, 223, 223, 386, 146, 386, 167, 167, - 144, 275, 124, 153, 144, 124, 386, 223, 144, 52, - 124, 280, 386, 155, 223, 386, 386, 380, 121, 386, - 285, 167, 289, 290, 292, 386, 167, 167, 287, 291, - 19, 386, 144, 132, 124, 124, 167, 205, 209, 218, - 223, 259, 381, 382, 121, 223, 344, 345, 342, 386, - 384, 268, 126, 223, 223, 227, 210, 138, 140, 139, - 141, 207, 210, 226, 131, 207, 207, 207, 124, 256, - 163, 164, 305, 258, 309, 311, 167, 167, 258, 386, - 322, 314, 327, 329, 223, 362, 38, 353, 361, 223, - 272, 273, 145, 147, 124, 130, 271, 208, 303, 9, - 145, 270, 386, 167, 335, 167, 167, 386, 386, 164, - 19, 84, 121, 167, 294, 297, 298, 293, 290, 292, - 386, 167, 288, 292, 294, 105, 167, 382, 124, 167, - 124, 347, 164, 386, 106, 386, 125, 386, 125, 124, - 126, 226, 126, 126, 126, 223, 128, 128, 164, 386, - 258, 125, 386, 125, 386, 386, 326, 258, 386, 164, - 359, 386, 223, 9, 223, 131, 124, 164, 223, 144, - 47, 144, 366, 386, 121, 167, 167, 144, 126, 124, - 124, 144, 124, 128, 126, 144, 382, 344, 99, 350, - 17, 103, 385, 227, 105, 143, 148, 167, 143, 210, - 308, 386, 143, 143, 321, 164, 386, 164, 330, 386, - 363, 360, 274, 223, 208, 258, 64, 65, 373, 374, - 375, 167, 144, 125, 144, 144, 121, 167, 298, 84, - 292, 386, 144, 348, 126, 124, 144, 126, 164, 310, - 126, 126, 164, 323, 17, 41, 332, 333, 164, 164, - 386, 223, 126, 48, 339, 167, 367, 386, 386, 125, - 144, 227, 295, 296, 386, 167, 144, 121, 167, 386, - 386, 105, 167, 386, 164, 386, 386, 164, 164, 258, - 336, 66, 371, 372, 164, 164, 295, 124, 126, 125, - 144, 167, 144, 349, 144, 386, 368, 386, 126, 296, - 295, 125, 144, 164, 340, 337, 17, 67, 369, 164, - 126, 295, 17, 46, 341, 340, 126, 167, 167 + 191, 192, 195, 248, 253, 254, 255, 256, 195, 9, + 240, 9, 158, 240, 9, 36, 195, 9, 36, 158, + 240, 195, 9, 36, 125, 240, 129, 195, 9, 36, + 158, 240, 195, 34, 35, 54, 55, 56, 57, 59, + 60, 109, 129, 224, 158, 158, 158, 158, 158, 249, + 380, 9, 36, 240, 9, 36, 158, 240, 195, 253, + 9, 36, 158, 240, 195, 158, 15, 16, 17, 18, + 298, 300, 305, 306, 1, 12, 25, 26, 136, 149, + 160, 161, 162, 163, 278, 380, 17, 38, 39, 40, + 308, 309, 313, 318, 252, 163, 17, 101, 346, 347, + 348, 158, 219, 380, 167, 262, 265, 262, 219, 219, + 219, 219, 167, 200, 74, 75, 76, 77, 78, 79, + 80, 81, 82, 87, 88, 89, 90, 91, 92, 93, + 94, 146, 147, 146, 146, 146, 146, 27, 28, 31, + 32, 33, 49, 50, 58, 109, 110, 111, 112, 113, + 114, 115, 116, 117, 124, 296, 146, 156, 124, 380, + 124, 380, 189, 263, 264, 265, 380, 167, 277, 9, + 109, 332, 193, 167, 273, 277, 263, 69, 364, 219, + 372, 19, 125, 280, 167, 380, 144, 146, 125, 380, + 113, 126, 105, 167, 245, 246, 69, 374, 52, 124, + 219, 380, 260, 167, 126, 128, 167, 189, 196, 198, + 200, 211, 124, 128, 106, 124, 128, 380, 167, 167, + 201, 219, 105, 219, 220, 124, 130, 219, 219, 219, + 219, 219, 219, 219, 219, 219, 219, 203, 219, 204, + 219, 219, 219, 219, 219, 216, 212, 219, 219, 219, + 219, 219, 219, 219, 219, 212, 219, 247, 251, 219, + 219, 219, 380, 301, 305, 16, 298, 305, 3, 4, + 160, 314, 319, 38, 308, 318, 39, 308, 380, 38, + 39, 352, 355, 380, 131, 144, 269, 270, 124, 380, + 380, 124, 167, 167, 219, 219, 219, 219, 219, 219, + 219, 219, 219, 219, 219, 219, 219, 219, 219, 219, + 219, 219, 380, 380, 167, 167, 144, 269, 124, 153, + 144, 124, 380, 219, 144, 52, 124, 274, 380, 155, + 219, 380, 380, 374, 121, 380, 279, 167, 283, 284, + 286, 380, 281, 285, 19, 380, 144, 132, 124, 124, + 167, 205, 209, 218, 219, 253, 375, 376, 121, 219, + 338, 339, 336, 380, 378, 262, 126, 219, 219, 221, + 210, 138, 140, 139, 141, 207, 210, 220, 131, 207, + 207, 207, 124, 250, 163, 164, 299, 252, 303, 305, + 167, 167, 252, 380, 316, 308, 321, 323, 219, 356, + 38, 347, 355, 219, 266, 267, 145, 147, 124, 130, + 265, 208, 297, 9, 145, 264, 380, 167, 329, 167, + 167, 380, 380, 164, 19, 84, 121, 167, 288, 291, + 292, 287, 284, 286, 380, 167, 282, 286, 288, 105, + 167, 376, 124, 167, 124, 341, 164, 380, 106, 380, + 125, 380, 125, 124, 126, 220, 126, 126, 126, 219, + 128, 128, 164, 380, 252, 125, 380, 125, 380, 380, + 320, 252, 380, 164, 353, 380, 219, 9, 219, 131, + 124, 164, 219, 144, 47, 144, 360, 380, 121, 167, + 167, 144, 126, 124, 124, 144, 124, 128, 126, 144, + 376, 338, 99, 344, 17, 103, 379, 221, 105, 143, + 148, 167, 143, 210, 302, 380, 143, 143, 315, 164, + 380, 164, 324, 380, 357, 354, 268, 219, 208, 252, + 64, 65, 367, 368, 369, 167, 144, 125, 144, 144, + 121, 167, 292, 84, 286, 380, 144, 342, 126, 124, + 144, 126, 164, 304, 126, 126, 164, 317, 17, 41, + 326, 327, 164, 164, 380, 219, 126, 48, 333, 167, + 361, 380, 380, 125, 144, 221, 289, 290, 380, 167, + 144, 121, 167, 380, 380, 105, 167, 380, 164, 380, + 380, 164, 164, 252, 330, 66, 365, 366, 164, 164, + 289, 124, 126, 125, 144, 167, 144, 343, 144, 380, + 362, 380, 126, 290, 289, 125, 144, 164, 334, 331, + 17, 67, 363, 164, 126, 289, 17, 46, 335, 334, + 126, 167, 167 }; #define yyerrok (yyerrstatus = 0) @@ -4005,20 +4005,19 @@ yydestruct (yymsg, yytype, yyvaluep, pComp) if (!yymsg) yymsg = "Deleting"; - YYUSE (yymsg); YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); switch (yytype) { case 19: /* "LITERAL" */ -#line 268 "harbour.y" +#line 270 "harbour.y" { if( (yyvaluep->valChar).dealloc ) hb_xfree( (yyvaluep->valChar).string ); }; -#line 4017 "harboury.c" +#line 4016 "harboury.c" break; case 96: /* "CBSTART" */ -#line 267 "harbour.y" +#line 269 "harbour.y" { if( (yyvaluep->asCodeblock).string ) hb_xfree( (yyvaluep->asCodeblock).string ); }; -#line 4022 "harboury.c" +#line 4021 "harboury.c" break; default: @@ -4204,7 +4203,6 @@ int yynerrs; goto yyexhaustedlab; YYSTACK_RELOCATE (yyss); YYSTACK_RELOCATE (yyvs); - YYUSE (yyptr); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) @@ -4328,17 +4326,17 @@ yyreduce: switch (yyn) { case 9: -#line 281 "harbour.y" +#line 283 "harbour.y" { yyclearin; yyerrok; ;} break; case 15: -#line 287 "harbour.y" +#line 289 "harbour.y" { yyclearin; yyerrok; ;} break; case 16: -#line 291 "harbour.y" +#line 293 "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; @@ -4346,7 +4344,7 @@ yyreduce: break; case 17: -#line 296 "harbour.y" +#line 298 "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; @@ -4355,187 +4353,187 @@ yyreduce: break; case 18: -#line 303 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); ;} +#line 305 "harbour.y" + { hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); ;} break; case 20: -#line 304 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); ;} +#line 306 "harbour.y" + { hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); ;} break; case 22: -#line 305 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), 0 ); HB_COMP_PARAM->iVarScope = VS_PARAMETER; ;} +#line 307 "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 306 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; hb_compFunctionAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].string), ( HB_SYMBOLSCOPE ) (yyvsp[(1) - (3)].iNumber), FUN_PROCEDURE ); HB_COMP_PARAM->iVarScope = VS_PARAMETER;;} +#line 308 "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 309 "harbour.y" +#line 311 "harbour.y" { (yyval.iNumber) = HB_FS_PUBLIC; ;} break; case 27: -#line 310 "harbour.y" +#line 312 "harbour.y" { (yyval.iNumber) = HB_FS_STATIC; ;} break; case 28: -#line 311 "harbour.y" +#line 313 "harbour.y" { (yyval.iNumber) = HB_FS_INIT; ;} break; case 29: -#line 312 "harbour.y" +#line 314 "harbour.y" { (yyval.iNumber) = HB_FS_EXIT; ;} break; case 30: -#line 315 "harbour.y" +#line 317 "harbour.y" { (yyval.iNumber) = 0; ;} break; case 31: -#line 316 "harbour.y" +#line 318 "harbour.y" { HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = 0; ;} break; case 33: -#line 318 "harbour.y" +#line 320 "harbour.y" { HB_COMP_PARAM->functions.pLast->fVParams = TRUE; (yyval.iNumber) = (yyvsp[(1) - (3)].iNumber); ;} break; case 34: -#line 321 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; ;} +#line 323 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;} break; case 36: -#line 325 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; ;} +#line 327 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;} break; case 38: -#line 329 "harbour.y" - { HB_COMP_PARAM->cVarType = 'N'; ;} +#line 331 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'N', NULL ); ;} break; case 39: -#line 330 "harbour.y" - { HB_COMP_PARAM->cVarType = 'C'; ;} +#line 332 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'C', NULL ); ;} break; case 40: -#line 331 "harbour.y" - { HB_COMP_PARAM->cVarType = 'D'; ;} +#line 333 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'D', NULL ); ;} break; case 41: -#line 332 "harbour.y" - { HB_COMP_PARAM->cVarType = 'L'; ;} +#line 334 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'L', NULL ); ;} break; case 42: -#line 333 "harbour.y" - { HB_COMP_PARAM->cVarType = 'B'; ;} +#line 335 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'B', NULL ); ;} break; case 43: -#line 334 "harbour.y" - { HB_COMP_PARAM->cVarType = 'O'; ;} +#line 336 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'O', NULL ); ;} break; case 44: -#line 335 "harbour.y" - { HB_COMP_PARAM->cVarType = 'S'; HB_COMP_PARAM->szFromClass = (yyvsp[(2) - (2)].string); ;} +#line 337 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'S', (yyvsp[(2) - (2)].string) ); ;} break; case 45: -#line 336 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; ;} +#line 338 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, ' ', NULL ); ;} break; case 47: -#line 340 "harbour.y" - { HB_COMP_PARAM->cVarType = 'A'; ;} +#line 342 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'A', NULL ); ;} break; case 48: -#line 341 "harbour.y" - { HB_COMP_PARAM->cVarType = 'n'; ;} +#line 343 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'n', NULL ); ;} break; case 49: -#line 342 "harbour.y" - { HB_COMP_PARAM->cVarType = 'c'; ;} +#line 344 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'c', NULL ); ;} break; case 50: -#line 343 "harbour.y" - { HB_COMP_PARAM->cVarType = 'd'; ;} +#line 345 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'd', NULL ); ;} break; case 51: -#line 344 "harbour.y" - { HB_COMP_PARAM->cVarType = 'l'; ;} +#line 346 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'l', NULL ); ;} break; case 52: -#line 345 "harbour.y" - { HB_COMP_PARAM->cVarType = 'a'; ;} +#line 347 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'a', NULL ); ;} break; case 53: -#line 346 "harbour.y" - { HB_COMP_PARAM->cVarType = 'b'; ;} +#line 348 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'b', NULL ); ;} break; case 54: -#line 347 "harbour.y" - { HB_COMP_PARAM->cVarType = 'o'; ;} +#line 349 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 'o', NULL ); ;} break; case 55: -#line 348 "harbour.y" - { HB_COMP_PARAM->cVarType = 's'; HB_COMP_PARAM->szFromClass = (yyvsp[(2) - (2)].string); ;} +#line 350 "harbour.y" + { (yyval.asVarType) = hb_compVarTypeNew( HB_COMP_PARAM, 's', (yyvsp[(2) - (2)].string) ); ;} break; case 56: -#line 351 "harbour.y" - { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); (yyval.iNumber) = 1; ;} +#line 353 "harbour.y" + { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); (yyval.iNumber) = 1; ;} break; case 57: -#line 352 "harbour.y" - { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); (yyval.iNumber)++; ;} +#line 354 "harbour.y" + { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); (yyval.iNumber)++; ;} break; case 59: -#line 361 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} - break; - - case 60: -#line 362 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} - break; - - case 61: #line 363 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} break; - case 62: + case 60: #line 364 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} break; - case 63: + case 61: #line 365 "harbour.y" + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + break; + + case 62: +#line 366 "harbour.y" + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + break; + + case 63: +#line 367 "harbour.y" { if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) ) HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); else @@ -4545,7 +4543,7 @@ yyreduce: break; case 64: -#line 371 "harbour.y" +#line 373 "harbour.y" { if( HB_COMP_ISSUPPORTED( HB_COMPFLAG_XBASE ) ) HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); else @@ -4555,53 +4553,53 @@ yyreduce: break; case 65: -#line 377 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} - break; - - case 66: -#line 378 "harbour.y" - { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} - break; - - case 67: #line 379 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} break; - case 68: + case 66: #line 380 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} break; - case 69: + case 67: #line 381 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} break; - case 70: + case 68: #line 382 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} break; - case 71: + case 69: #line 383 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} break; - case 72: + case 70: #line 384 "harbour.y" + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + break; + + case 71: +#line 385 "harbour.y" + { HB_COMP_EXPR_DELETE( hb_compExprGenStatement( (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ) ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} + break; + + case 72: +#line 386 "harbour.y" { hb_compGenBreak( HB_COMP_PARAM ); hb_compGenPCode2( HB_P_DOSHORT, 0, HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;} break; case 73: -#line 386 "harbour.y" +#line 388 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; case 74: -#line 387 "harbour.y" +#line 389 "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 ); @@ -4610,17 +4608,17 @@ yyreduce: break; case 75: -#line 392 "harbour.y" +#line 394 "harbour.y" { hb_compLoopExit( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;} break; case 76: -#line 393 "harbour.y" +#line 395 "harbour.y" { hb_compLoopLoop( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags |= FUN_BREAK_CODE; ;} break; case 77: -#line 394 "harbour.y" +#line 396 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wSeqCounter ) { @@ -4636,15 +4634,13 @@ yyreduce: break; case 78: -#line 406 "harbour.y" - { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;} +#line 408 "harbour.y" + { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; case 79: -#line 408 "harbour.y" +#line 410 "harbour.y" { - HB_COMP_PARAM->cVarType = ' '; - if( HB_COMP_PARAM->functions.pLast->wSeqCounter ) { hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_EXIT_IN_SEQUENCE, "RETURN", NULL ); @@ -4672,7 +4668,7 @@ yyreduce: case 81: #line 430 "harbour.y" { hb_compRTVariableGen( HB_COMP_PARAM, "__MVPUBLIC" ); - HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE; + HB_COMP_PARAM->iVarScope = VS_NONE; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} break; @@ -4685,7 +4681,7 @@ yyreduce: case 84: #line 436 "harbour.y" { hb_compRTVariableGen( HB_COMP_PARAM, "__MVPRIVATE" ); - HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE; + HB_COMP_PARAM->iVarScope = VS_NONE; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_WITH_RETURN; ;} break; @@ -5449,436 +5445,406 @@ yyreduce: case 272: #line 839 "harbour.y" - {HB_COMP_PARAM->cVarType = ' ';;} + { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 273: -#line 839 "harbour.y" - { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;} - break; - - case 283: + case 282: #line 849 "harbour.y" - {HB_COMP_PARAM->cVarType = ' ';;} + { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 284: -#line 849 "harbour.y" - { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;} + case 285: +#line 852 "harbour.y" + { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; case 287: -#line 852 "harbour.y" - {HB_COMP_PARAM->cVarType = ' ';;} - break; - - case 288: -#line 852 "harbour.y" - { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;} - break; - - case 290: #line 854 "harbour.y" - {HB_COMP_PARAM->cVarType = ' ';;} + { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 291: -#line 854 "harbour.y" - { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;} - break; - - case 303: + case 299: #line 868 "harbour.y" - { HB_COMP_PARAM->cVarType = ' ';;} + { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 304: -#line 868 "harbour.y" - { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;} - break; - - case 305: + case 300: #line 869 "harbour.y" - { HB_COMP_PARAM->cVarType = ' ';;} + { (yyval.asExpr) = (yyvsp[(1) - (2)].asExpr); ;} break; - case 306: -#line 869 "harbour.y" - { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); ;} - break; - - case 308: + case 302: #line 873 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgRef( HB_COMP_PARAM ); ;} break; - case 310: + case 304: #line 877 "harbour.y" { (yyval.asExpr) = hb_compExprNewEmpty( HB_COMP_PARAM ); ;} break; - case 312: + case 306: #line 881 "harbour.y" { (yyval.asExpr) = hb_compExprNewVar( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 318: + case 312: #line 887 "harbour.y" { (yyval.asExpr) = hb_compExprListStrip( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 340: + case 334: #line 920 "harbour.y" { (yyval.asExpr) = hb_compExprNewPostInc( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 341: + case 335: #line 921 "harbour.y" { (yyval.asExpr) = hb_compExprNewPostDec( (yyvsp[(0) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 342: + case 336: #line 924 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 343: + case 337: #line 927 "harbour.y" { (yyval.asExpr) = hb_compExprNewPreInc( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 344: + case 338: #line 928 "harbour.y" { (yyval.asExpr) = hb_compExprNewPreDec( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 345: + case 339: #line 931 "harbour.y" { (yyval.asExpr) = hb_compExprNewNot( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 346: + case 340: #line 932 "harbour.y" { (yyval.asExpr) = hb_compExprNewNegate( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 347: + case 341: #line 933 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} break; - case 348: + case 342: #line 936 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 349: + case 343: #line 937 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 350: + case 344: #line 938 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 351: + case 345: #line 939 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 352: + case 346: #line 940 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 353: + case 347: #line 941 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 354: + case 348: #line 942 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 355: + case 349: #line 943 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 356: + case 350: #line 944 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 357: + case 351: #line 945 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 358: + case 352: #line 946 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 359: + case 353: #line 947 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 360: + case 354: #line 948 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 361: + case 355: #line 949 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 362: + case 356: #line 950 "harbour.y" - { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';;} + { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 363: + case 357: #line 951 "harbour.y" - { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';;} + { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 364: + case 358: #line 952 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 365: + case 359: #line 953 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 366: + case 360: #line 954 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 367: + case 361: #line 955 "harbour.y" - { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' ';;} + { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 368: + case 362: #line 956 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 369: + case 363: #line 959 "harbour.y" { (yyval.asExpr) = hb_compExprAssign( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 370: + case 364: #line 962 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 371: + case 365: #line 965 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinusEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 372: + case 366: #line 968 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMultEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 373: + case 367: #line 971 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDivEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 374: + case 368: #line 974 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewModEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 375: + case 369: #line 977 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewExpEq( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 382: + case 376: #line 988 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPlus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 383: + case 377: #line 989 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMinus( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 384: + case 378: #line 990 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMult( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 385: + case 379: #line 991 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewDiv( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 386: + case 380: #line 992 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewMod( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 387: + case 381: #line 993 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewPower( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 388: + case 382: #line 996 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewAnd( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 389: + case 383: #line 997 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewOr( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 390: + case 384: #line 1000 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEQ( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 391: + case 385: #line 1001 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 392: + case 386: #line 1002 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGT( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 393: + case 387: #line 1003 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewLE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 394: + case 388: #line 1004 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewGE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 395: + case 389: #line 1005 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 396: + case 390: #line 1006 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewNE( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 397: + case 391: #line 1007 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewIN( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 398: + case 392: #line 1008 "harbour.y" { (yyval.asExpr) = hb_compExprSetOperand( hb_compExprNewEqual( (yyvsp[(1) - (3)].asExpr), HB_COMP_PARAM ), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 400: + case 394: #line 1017 "harbour.y" { (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(0) - (2)].asExpr), (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 401: + case 395: #line 1018 "harbour.y" { (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 402: + case 396: #line 1019 "harbour.y" { (yyval.asExpr) = hb_compExprNewArrayAt( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); ;} break; - case 403: + case 397: #line 1022 "harbour.y" { (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 404: + case 398: #line 1023 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 405: + case 399: #line 1026 "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 406: + case 400: #line 1027 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (4)].asExpr); ;} break; - case 407: + case 401: #line 1032 "harbour.y" { (yyval.asExpr) = NULL; ;} break; - case 408: + case 402: #line 1033 "harbour.y" { (yyval.asExpr) = NULL; (yyvsp[(0) - (1)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;} break; - case 409: + case 403: #line 1034 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (1)].asExpr); ;} break; - case 410: + case 404: #line 1035 "harbour.y" { (yyval.asExpr) = (yyvsp[(1) - (3)].asExpr); (yyvsp[(0) - (3)].asExpr)->value.asCodeblock.flags |= HB_BLOCK_VPARAMS; ;} break; - case 411: + case 405: #line 1038 "harbour.y" - { HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (2)].asExpr), (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;} + { 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 412: + case 406: #line 1039 "harbour.y" - { HB_COMP_PARAM->iVarScope = VS_LOCAL; (yyval.asExpr) = hb_compExprCBVarAdd( (yyvsp[(0) - (4)].asExpr), (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType, HB_COMP_PARAM ); HB_COMP_PARAM->cVarType = ' '; ;} + { 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 413: + case 407: #line 1042 "harbour.y" { (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-1) - (1)].asExpr), (yyvsp[(1) - (1)].asExpr) ); ;} break; - case 414: + case 408: #line 1043 "harbour.y" { (yyval.asExpr) = hb_compExprAddCodeblockExpr( (yyvsp[(-1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 415: + case 409: #line 1047 "harbour.y" { (yyval.bTrue) = HB_COMP_PARAM->functions.pLast->bBlock; HB_COMP_PARAM->functions.pLast->bBlock = TRUE; ;} break; - case 416: + case 410: #line 1050 "harbour.y" { HB_COMP_PARAM->functions.pLast->bBlock = (yyvsp[(2) - (3)].bTrue); ;} break; - case 418: + case 412: #line 1053 "harbour.y" { /* 3 */ HB_CBVAR_PTR pVar; @@ -5900,13 +5866,13 @@ yyreduce: pVar = (yyvsp[(1) - (2)].asExpr)->value.asCodeblock.pLocals; while( pVar ) { - hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, pVar->bType ); + hb_compVariableAdd( HB_COMP_PARAM, pVar->szName, hb_compVarTypeNew( HB_COMP_PARAM, pVar->bType, NULL ) ); pVar =pVar->pNext; } ;} break; - case 419: + case 413: #line 1078 "harbour.y" { /* 6 */ hb_compCodeBlockEnd( HB_COMP_PARAM ); @@ -5918,57 +5884,42 @@ yyreduce: ;} break; - case 420: + case 414: #line 1088 "harbour.y" { (yyval.asExpr) = hb_compExprNewList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 421: + case 415: #line 1089 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 422: + case 416: #line 1091 "harbour.y" { (yyval.asExpr) = (yyvsp[(2) - (3)].asExpr) ;} break; - case 424: + case 418: #line 1104 "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 426: + case 420: #line 1110 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_LOCAL; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 427: -#line 1111 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; ;} - break; - - case 428: + case 422: #line 1112 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 429: -#line 1113 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; ;} - break; - - case 430: + case 424: #line 1114 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_TH_STATIC; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 431: -#line 1115 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; ;} - break; - - case 432: + case 426: #line 1116 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->bFlags & FUN_USES_LOCAL_PARAMS ) hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_PARAMETERS_NOT_ALLOWED, NULL, NULL ); @@ -5980,44 +5931,44 @@ yyreduce: ;} break; - case 433: + case 427: #line 1123 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 434: + case 428: #line 1126 "harbour.y" { (yyval.iNumber) = 1; ;} break; - case 435: + case 429: #line 1127 "harbour.y" { (yyval.iNumber)++; ;} break; - case 436: + case 430: #line 1130 "harbour.y" { (yyval.iNumber) = 1; ;} break; - case 437: + case 431: #line 1131 "harbour.y" { (yyval.iNumber)++; ;} break; - case 439: + case 433: #line 1141 "harbour.y" { hb_compRTVariableAdd( HB_COMP_PARAM, hb_compExprNewRTVar( NULL, (yyvsp[(1) - (2)].asExpr), HB_COMP_PARAM ), FALSE ); ;} break; - case 440: + case 434: #line 1143 "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 441: + case 435: #line 1147 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compArrayDimPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) ); @@ -6025,12 +5976,12 @@ yyreduce: ;} break; - case 442: + case 436: #line 1153 "harbour.y" - { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;} + { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; - case 443: + case 437: #line 1154 "harbour.y" { if( HB_COMP_PARAM->iVarScope & VS_STATIC ) @@ -6050,23 +6001,21 @@ yyreduce: ;} break; - case 444: + case 438: #line 1170 "harbour.y" { (yyval.iNumber) = HB_COMP_PARAM->iVarScope; - hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); + hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; - case 445: + case 439: #line 1173 "harbour.y" - {HB_COMP_PARAM->cVarType = ' ';;} + { ; ;} break; - case 446: + case 440: #line 1174 "harbour.y" { - HB_COMP_PARAM->cVarType = ' '; - HB_COMP_PARAM->iVarScope = (yyvsp[(3) - (6)].iNumber); if( HB_COMP_PARAM->iVarScope & VS_STATIC ) { @@ -6092,199 +6041,188 @@ yyreduce: ;} break; - case 447: -#line 1201 "harbour.y" + case 441: +#line 1199 "harbour.y" { hb_compVariableDim( (yyvsp[(1) - (3)].string), (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ); ;} break; - case 449: -#line 1210 "harbour.y" + case 443: +#line 1208 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 450: -#line 1211 "harbour.y" + case 444: +#line 1209 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 451: -#line 1212 "harbour.y" + case 445: +#line 1210 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr) ); ;} break; - case 452: -#line 1215 "harbour.y" + case 446: +#line 1213 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_FIELD; ;} break; - case 453: -#line 1217 "harbour.y" + case 447: +#line 1215 "harbour.y" { if( (yyvsp[(4) - (5)].string) ) hb_compFieldSetAlias( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), (yyvsp[(3) - (5)].iNumber) ); - HB_COMP_PARAM->cVarType = ' '; ;} break; - case 454: -#line 1223 "harbour.y" - { (yyval.iNumber)=hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;} + case 448: +#line 1220 "harbour.y" + { (yyval.iNumber) = hb_compFieldsCount( HB_COMP_PARAM ); hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; - case 455: + case 449: +#line 1221 "harbour.y" + { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;} + break; + + case 450: #line 1224 "harbour.y" - { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;} - break; - - case 456: -#line 1227 "harbour.y" { (yyval.string) = NULL; ;} break; - case 457: -#line 1228 "harbour.y" + case 451: +#line 1225 "harbour.y" { (yyval.string) = (yyvsp[(2) - (2)].string); ;} break; - case 458: -#line 1231 "harbour.y" + case 452: +#line 1228 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_MEMVAR; ;} break; - case 459: + case 454: #line 1231 "harbour.y" - { HB_COMP_PARAM->cVarType = ' '; ;} + { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} break; - case 460: -#line 1234 "harbour.y" - { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), HB_COMP_PARAM->cVarType ); ;} + case 455: +#line 1232 "harbour.y" + { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;} break; - case 461: + case 456: #line 1235 "harbour.y" - { hb_compVariableAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), HB_COMP_PARAM->cVarType ); ;} - break; - - case 462: -#line 1238 "harbour.y" { hb_compDeclaredAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string) ); HB_COMP_PARAM->szDeclaredFun = (yyvsp[(2) - (3)].string); ;} break; - case 463: -#line 1239 "harbour.y" + case 457: +#line 1236 "harbour.y" { if( HB_COMP_PARAM->pLastDeclared ) { - HB_COMP_PARAM->pLastDeclared->cType = HB_COMP_PARAM->cVarType; + HB_COMP_PARAM->pLastDeclared->cType = (yyvsp[(7) - (8)].asVarType)->cVarType; - if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' ) + if ( toupper( (yyvsp[(7) - (8)].asVarType)->cVarType ) == 'S' ) { - HB_COMP_PARAM->pLastDeclared->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass ); + 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, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastDeclared->szName ); - HB_COMP_PARAM->pLastDeclared->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' ); + 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 = ( isupper( ( UCHAR ) (yyvsp[(7) - (8)].asVarType)->cVarType ) ? 'O' : 'o' ); } - - /* Resetting */ - HB_COMP_PARAM->szFromClass = NULL; } } HB_COMP_PARAM->szDeclaredFun = NULL; - HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 464: -#line 1261 "harbour.y" + case 458: +#line 1254 "harbour.y" { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].string), NULL ); ;} break; - case 465: -#line 1261 "harbour.y" + case 459: +#line 1254 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 466: -#line 1262 "harbour.y" + case 460: +#line 1255 "harbour.y" { HB_COMP_PARAM->pLastClass = hb_compClassAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), NULL ); HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 467: -#line 1263 "harbour.y" + case 461: +#line 1256 "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 468: -#line 1264 "harbour.y" + case 462: +#line 1257 "harbour.y" { HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 469: -#line 1265 "harbour.y" - { HB_COMP_PARAM->cDataListType = HB_COMP_PARAM->cVarType; ;} + case 463: +#line 1258 "harbour.y" + { HB_COMP_PARAM->cDataListType = (yyvsp[(3) - (3)].asVarType)->cVarType; ;} break; - case 470: -#line 1265 "harbour.y" + case 464: +#line 1258 "harbour.y" { HB_COMP_PARAM->cDataListType = 0; HB_COMP_PARAM->iVarScope = VS_NONE; ;} break; - case 477: -#line 1278 "harbour.y" + case 471: +#line 1271 "harbour.y" { HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (2)].string) ); ;} break; - case 478: -#line 1279 "harbour.y" + case 472: +#line 1272 "harbour.y" { if( HB_COMP_PARAM->pLastMethod ) { - HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType; - if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' ) + HB_COMP_PARAM->pLastMethod->cType = (yyvsp[(6) - (6)].asVarType)->cVarType; + if ( toupper( (yyvsp[(6) - (6)].asVarType)->cVarType ) == 'S' ) { - HB_COMP_PARAM->pLastMethod->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass ); + 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, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastMethod->szName ); - HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' : 'o' ); + 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 = ( isupper( ( UCHAR ) (yyvsp[(6) - (6)].asVarType)->cVarType ) ? 'O' : 'o' ); } - - HB_COMP_PARAM->szFromClass = NULL; } } HB_COMP_PARAM->pLastMethod = NULL; - HB_COMP_PARAM->cVarType = ' '; ;} break; - case 479: -#line 1300 "harbour.y" + case 473: +#line 1290 "harbour.y" { HB_COMP_PARAM->pLastMethod = hb_compMethodAdd( HB_COMP_PARAM, HB_COMP_PARAM->pLastClass, (yyvsp[(1) - (1)].string) ); ;} break; - case 480: -#line 1301 "harbour.y" + case 474: +#line 1291 "harbour.y" { if( HB_COMP_PARAM->pLastMethod ) { PCOMCLASS pClass; - char szSetData[ HB_SYMBOL_NAME_LEN + 1 ]; - int iLen; + 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 ) HB_COMP_PARAM->cVarType = HB_COMP_PARAM->cDataListType; + if( HB_COMP_PARAM->cDataListType ) + cVarType = HB_COMP_PARAM->cDataListType; - HB_COMP_PARAM->pLastMethod->cType = HB_COMP_PARAM->cVarType; - if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' ) + HB_COMP_PARAM->pLastMethod->cType = cVarType; + if ( toupper( cVarType ) == 'S' ) { - pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass ); + 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, HB_COMP_PARAM->szFromClass, HB_COMP_PARAM->pLastMethod->szName ); - HB_COMP_PARAM->pLastMethod->cType = ( isupper( ( UCHAR ) HB_COMP_PARAM->cVarType ) ? 'O' :'o' ); + 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 = ( isupper( ( UCHAR ) cVarType ) ? 'O' :'o' ); } } else @@ -6299,172 +6237,170 @@ yyreduce: 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 = HB_COMP_PARAM->cVarType; + 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] = HB_COMP_PARAM->cVarType; + HB_COMP_PARAM->pLastMethod->cParamTypes[0] = cVarType; HB_COMP_PARAM->pLastMethod->pParamClasses[0] = pClass; - if ( toupper( HB_COMP_PARAM->cVarType ) == 'S' ) + if ( toupper( cVarType ) == 'S' ) { HB_COMP_PARAM->pLastMethod->pClass = pClass; - HB_COMP_PARAM->szFromClass = NULL; } } HB_COMP_PARAM->pLastMethod = NULL; - HB_COMP_PARAM->cVarType = ' '; ;} break; - case 487: -#line 1365 "harbour.y" + case 481: +#line 1355 "harbour.y" { HB_COMP_EXPR_DELETE( (yyvsp[(1) - (1)].asExpr) ); ;} break; + case 482: +#line 1358 "harbour.y" + { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), (yyvsp[(2) - (2)].asVarType) ); ;} + break; + + case 483: +#line 1359 "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 484: +#line 1360 "harbour.y" + { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (5)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); ;} + break; + + case 485: +#line 1361 "harbour.y" + { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), (yyvsp[(4) - (4)].asVarType) ); ;} + break; + + case 486: +#line 1362 "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 487: +#line 1363 "harbour.y" + { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (7)].string), hb_compVarTypeNew( HB_COMP_PARAM, 'F', NULL ) ); ;} + break; + case 488: -#line 1368 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(1) - (2)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType ) ); ;} +#line 1366 "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 489: -#line 1369 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ) ); ;} +#line 1367 "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 490: -#line 1370 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (5)].string), ( BYTE ) 'F' ); ;} +#line 1368 "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 491: -#line 1371 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType ) ); ;} +#line 1369 "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 492: -#line 1372 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_BYREF ) ); ;} +#line 1370 "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 493: -#line 1373 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (7)].string), ( BYTE ) 'F' ); ;} +#line 1371 "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 494: -#line 1376 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(2) - (3)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ) ); ;} - break; - - case 495: -#line 1377 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (4)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;} - break; - - case 496: -#line 1378 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(3) - (6)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;} - break; - - case 497: -#line 1379 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(4) - (5)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL ) ); ;} - break; - - case 498: -#line 1380 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (6)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;} - break; - - case 499: -#line 1381 "harbour.y" - { hb_compDeclaredParameterAdd( HB_COMP_PARAM, (yyvsp[(5) - (8)].string), ( BYTE ) ( HB_COMP_PARAM->cVarType + VT_OFFSET_OPTIONAL + VT_OFFSET_BYREF ) ); ;} - break; - - case 508: -#line 1394 "harbour.y" + case 502: +#line 1384 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (2)].iNumber), HB_COMP_PARAM ); ;} break; - case 509: -#line 1395 "harbour.y" + case 503: +#line 1385 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); ;} break; - case 510: -#line 1396 "harbour.y" + case 504: +#line 1386 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (3)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;} break; - case 511: -#line 1397 "harbour.y" + case 505: +#line 1387 "harbour.y" { hb_compGenJumpHere( (yyvsp[(1) - (4)].iNumber), HB_COMP_PARAM ); hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;} break; - case 512: -#line 1401 "harbour.y" + case 506: +#line 1391 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wIfCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 513: -#line 1403 "harbour.y" + case 507: +#line 1393 "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 514: -#line 1405 "harbour.y" + case 508: +#line 1395 "harbour.y" { (yyval.iNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); hb_compGenJumpHere( (yyvsp[(5) - (6)].iNumber), HB_COMP_PARAM ); ;} break; - case 515: -#line 1408 "harbour.y" + case 509: +#line 1398 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;} break; - case 517: -#line 1412 "harbour.y" + case 511: +#line 1402 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 518: -#line 1414 "harbour.y" + case 512: +#line 1404 "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 519: -#line 1418 "harbour.y" + case 513: +#line 1408 "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 520: -#line 1422 "harbour.y" + case 514: +#line 1412 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 521: -#line 1424 "harbour.y" + case 515: +#line 1414 "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 522: -#line 1428 "harbour.y" + case 516: +#line 1418 "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 523: -#line 1434 "harbour.y" + case 517: +#line 1424 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wIfCounter ) --HB_COMP_PARAM->functions.pLast->wIfCounter; @@ -6472,31 +6408,31 @@ yyreduce: ;} break; - case 526: -#line 1447 "harbour.y" + case 520: +#line 1437 "harbour.y" { hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (3)].pVoid) ); ;} break; - case 529: -#line 1459 "harbour.y" + case 523: +#line 1449 "harbour.y" { hb_compElseIfFix( HB_COMP_PARAM, (yyvsp[(2) - (4)].pVoid) ); ;} break; - case 530: -#line 1463 "harbour.y" + case 524: +#line 1453 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wCaseCounter ) --HB_COMP_PARAM->functions.pLast->wCaseCounter; HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); ;} break; - case 533: -#line 1473 "harbour.y" + case 527: +#line 1463 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wCaseCounter; hb_compLinePushIfDebugger( HB_COMP_PARAM );;} break; - case 536: -#line 1477 "harbour.y" + case 530: +#line 1467 "harbour.y" { if( (yyvsp[(2) - (2)].lNumber) > 0 ) { @@ -6505,21 +6441,21 @@ yyreduce: ;} break; - case 537: -#line 1485 "harbour.y" + case 531: +#line 1475 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 538: -#line 1486 "harbour.y" + case 532: +#line 1476 "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 539: -#line 1491 "harbour.y" + case 533: +#line 1481 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, NULL, hb_compGenJump( 0, HB_COMP_PARAM ) ); @@ -6527,21 +6463,21 @@ yyreduce: ;} break; - case 540: -#line 1497 "harbour.y" + case 534: +#line 1487 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 541: -#line 1498 "harbour.y" + case 535: +#line 1488 "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 542: -#line 1503 "harbour.y" + case 536: +#line 1493 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; (yyval.pVoid) = hb_compElseIfGen( HB_COMP_PARAM, (yyvsp[(1) - (7)].pVoid), hb_compGenJump( 0, HB_COMP_PARAM ) ); @@ -6549,39 +6485,39 @@ yyreduce: ;} break; - case 543: -#line 1510 "harbour.y" + case 537: +#line 1500 "harbour.y" {hb_compLinePushIfDebugger( HB_COMP_PARAM ); ;} break; - case 544: -#line 1510 "harbour.y" + case 538: +#line 1500 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;} break; - case 546: -#line 1512 "harbour.y" + case 540: +#line 1502 "harbour.y" { hb_compGenError( HB_COMP_PARAM, hb_comp_szErrors, 'E', HB_COMP_ERR_MAYHEM_IN_CASE, NULL, NULL ); ;} break; - case 548: -#line 1517 "harbour.y" + case 542: +#line 1507 "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 549: -#line 1522 "harbour.y" + case 543: +#line 1512 "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 550: -#line 1527 "harbour.y" + case 544: +#line 1517 "harbour.y" { hb_compGenJumpHere( ( ULONG ) (yyvsp[(4) - (7)].lNumber), HB_COMP_PARAM ); if( HB_COMP_PARAM->functions.pLast->wWhileCounter ) @@ -6591,8 +6527,8 @@ yyreduce: ;} break; - case 551: -#line 1537 "harbour.y" + case 545: +#line 1527 "harbour.y" { (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; hb_compLinePushIfInside( HB_COMP_PARAM ); @@ -6601,13 +6537,13 @@ yyreduce: ;} break; - case 552: -#line 1546 "harbour.y" + case 546: +#line 1536 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;} break; - case 555: -#line 1554 "harbour.y" + case 549: +#line 1544 "harbour.y" { /* 5 */ hb_compLinePushIfInside( HB_COMP_PARAM ); (yyvsp[(1) - (4)].lNumber) = HB_COMP_PARAM->currLine; @@ -6622,23 +6558,23 @@ yyreduce: ;} break; - case 556: -#line 1567 "harbour.y" + case 550: +#line 1557 "harbour.y" { /* 9 */ hb_compLoopStart( HB_COMP_PARAM, TRUE ); (yyval.lNumber) = hb_compGenJump( 0, HB_COMP_PARAM ); ;} break; - case 557: -#line 1572 "harbour.y" + case 551: +#line 1562 "harbour.y" { /* 11 */ (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; ;} break; - case 558: -#line 1576 "harbour.y" + case 552: +#line 1566 "harbour.y" { int iSign, iLine; @@ -6683,18 +6619,18 @@ yyreduce: ;} break; - case 561: -#line 1624 "harbour.y" + case 555: +#line 1614 "harbour.y" { (yyval.asExpr) = NULL; ;} break; - case 562: -#line 1625 "harbour.y" + case 556: +#line 1615 "harbour.y" { (yyval.asExpr) = hb_compExprReduce( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ); ;} break; - case 563: -#line 1629 "harbour.y" + case 557: +#line 1619 "harbour.y" { hb_compLinePush( HB_COMP_PARAM ); if( HB_COMP_PARAM->functions.pLast->wForCounter ) @@ -6702,43 +6638,43 @@ yyreduce: ;} break; - case 568: -#line 1642 "harbour.y" + case 562: +#line 1632 "harbour.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 569: -#line 1643 "harbour.y" + case 563: +#line 1633 "harbour.y" { (yyval.asExpr) = hb_compExprNewRef( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 570: -#line 1646 "harbour.y" + case 564: +#line 1636 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 571: -#line 1647 "harbour.y" + case 565: +#line 1637 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 572: -#line 1650 "harbour.y" + case 566: +#line 1640 "harbour.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(2) - (2)].string), HB_COMP_PARAM ); ;} break; - case 574: -#line 1654 "harbour.y" + case 568: +#line 1644 "harbour.y" { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} break; - case 575: -#line 1655 "harbour.y" + case 569: +#line 1645 "harbour.y" { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} break; - case 576: -#line 1660 "harbour.y" + case 570: +#line 1650 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wForCounter; /* 5 */ hb_compLinePushIfInside( HB_COMP_PARAM ); @@ -6746,8 +6682,8 @@ yyreduce: ;} break; - case 577: -#line 1666 "harbour.y" + case 571: +#line 1656 "harbour.y" { /* 7 */ @@ -6760,8 +6696,8 @@ yyreduce: ;} break; - case 578: -#line 1677 "harbour.y" + case 572: +#line 1667 "harbour.y" { /* 9 */ @@ -6769,8 +6705,8 @@ yyreduce: ;} break; - case 579: -#line 1683 "harbour.y" + case 573: +#line 1673 "harbour.y" { hb_compLoopHere( HB_COMP_PARAM ); hb_compEnumNext( HB_COMP_PARAM, (yyvsp[(2) - (10)].asExpr), (yyvsp[(6) - (10)].iNumber) ); @@ -6785,18 +6721,18 @@ yyreduce: ;} break; - case 580: -#line 1697 "harbour.y" + case 574: +#line 1687 "harbour.y" { (yyval.iNumber) = 1; ;} break; - case 581: -#line 1698 "harbour.y" + case 575: +#line 1688 "harbour.y" { (yyval.iNumber) = -1; ;} break; - case 582: -#line 1702 "harbour.y" + case 576: +#line 1692 "harbour.y" { hb_compLoopStart( HB_COMP_PARAM, FALSE ); hb_compSwitchStart( HB_COMP_PARAM ); @@ -6804,23 +6740,23 @@ yyreduce: ;} break; - case 583: -#line 1709 "harbour.y" + case 577: +#line 1699 "harbour.y" { hb_compSwitchEnd( HB_COMP_PARAM ); hb_compLoopEnd( HB_COMP_PARAM ); ;} break; - case 584: -#line 1716 "harbour.y" + case 578: +#line 1706 "harbour.y" { hb_compGenPCode1( HB_P_POP, HB_COMP_PARAM ); ;} break; - case 585: -#line 1722 "harbour.y" + case 579: +#line 1712 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wSwitchCounter ) --HB_COMP_PARAM->functions.pLast->wSwitchCounter; @@ -6828,22 +6764,22 @@ yyreduce: ;} break; - case 588: -#line 1734 "harbour.y" + case 582: +#line 1724 "harbour.y" { ++HB_COMP_PARAM->functions.pLast->wSwitchCounter; hb_compLinePushIfInside( HB_COMP_PARAM ); ;} break; - case 589: -#line 1738 "harbour.y" + case 583: +#line 1728 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(3) - (4)].asExpr), HB_COMP_PARAM ) ); ;} break; - case 591: -#line 1745 "harbour.y" + case 585: +#line 1735 "harbour.y" { if( (yyvsp[(2) - (2)].lNumber) > 0 ) { @@ -6852,28 +6788,28 @@ yyreduce: ;} break; - case 592: -#line 1753 "harbour.y" + case 586: +#line 1743 "harbour.y" { hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(2) - (2)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 594: -#line 1756 "harbour.y" + case 588: +#line 1746 "harbour.y" { hb_compSwitchAdd( HB_COMP_PARAM, (yyvsp[(3) - (3)].asExpr) ); hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 598: -#line 1764 "harbour.y" + case 592: +#line 1754 "harbour.y" { hb_compSwitchAdd( HB_COMP_PARAM, NULL ); hb_compLinePush( HB_COMP_PARAM ); ;} break; - case 599: -#line 1764 "harbour.y" + case 593: +#line 1754 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;} break; - case 601: -#line 1769 "harbour.y" + case 595: +#line 1759 "harbour.y" { /* 2 */ hb_compLinePushIfInside( HB_COMP_PARAM ); ++HB_COMP_PARAM->functions.pLast->wSeqCounter; @@ -6881,8 +6817,8 @@ yyreduce: ;} break; - case 602: -#line 1777 "harbour.y" + case 596: +#line 1767 "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 @@ -6895,8 +6831,8 @@ yyreduce: ;} break; - case 603: -#line 1788 "harbour.y" + case 597: +#line 1778 "harbour.y" { /* 8 */ /* Replace END address with RECOVER address in * HB_P_SEQBEGIN opcode if there is RECOVER clause @@ -6908,8 +6844,8 @@ yyreduce: ;} break; - case 604: -#line 1798 "harbour.y" + case 598: +#line 1788 "harbour.y" { /* 10 */ long lLoopCount = hb_compLoopCount( HB_COMP_PARAM ); HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); @@ -6940,13 +6876,13 @@ yyreduce: ;} break; - case 608: -#line 1833 "harbour.y" + case 602: +#line 1823 "harbour.y" { (yyval.lNumber) = 0; ;} break; - case 609: -#line 1835 "harbour.y" + case 603: +#line 1825 "harbour.y" { HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (2)].asExpr), HB_COMP_PARAM ) ); hb_compGenPCode1( HB_P_SEQBLOCK, HB_COMP_PARAM ); @@ -6954,13 +6890,13 @@ yyreduce: ;} break; - case 610: -#line 1842 "harbour.y" + case 604: +#line 1832 "harbour.y" { (yyval.lNumber) = 0; ;} break; - case 612: -#line 1847 "harbour.y" + case 606: +#line 1837 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ ( FUN_WITH_RETURN | FUN_BREAK_CODE ); (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; @@ -6969,13 +6905,13 @@ yyreduce: ;} break; - case 613: -#line 1855 "harbour.y" + case 607: +#line 1845 "harbour.y" { (yyval.lNumber) = 0; HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; ;} break; - case 616: -#line 1861 "harbour.y" + case 610: +#line 1851 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; @@ -6986,8 +6922,8 @@ yyreduce: ;} break; - case 617: -#line 1872 "harbour.y" + case 611: +#line 1862 "harbour.y" { HB_COMP_PARAM->functions.pLast->bFlags &= ~ FUN_BREAK_CODE; (yyval.lNumber) = HB_COMP_PARAM->functions.pLast->lPCodePos; @@ -6999,26 +6935,26 @@ yyreduce: ;} break; - case 620: -#line 1894 "harbour.y" + case 614: +#line 1884 "harbour.y" { (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;} break; - case 621: -#line 1896 "harbour.y" + case 615: +#line 1886 "harbour.y" { (yyval.asExpr) = hb_compExprNewFunCall( (yyvsp[(2) - (4)].asExpr), (yyvsp[(4) - (4)].asExpr), HB_COMP_PARAM ); HB_COMP_PARAM->iPassByRef = (yyvsp[(3) - (4)].bTrue); ;} break; - case 622: -#line 1901 "harbour.y" + case 616: +#line 1891 "harbour.y" { (yyval.bTrue) = HB_COMP_PARAM->iPassByRef;HB_COMP_PARAM->iPassByRef=HB_PASSBYREF_FUNCALL; ;} break; - case 623: -#line 1903 "harbour.y" + case 617: +#line 1893 "harbour.y" { hb_compAutoOpenAdd( HB_COMP_PARAM, (yyvsp[(1) - (3)].string) ); /* DOIDENT is the only one identifier which can be returned in lower letters */ @@ -7027,48 +6963,48 @@ yyreduce: ;} break; - case 624: -#line 1911 "harbour.y" + case 618: +#line 1901 "harbour.y" { (yyval.asExpr) = NULL; ;} break; + case 619: +#line 1902 "harbour.y" + { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} + break; + + case 620: +#line 1905 "harbour.y" + { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), hb_compExprNewNil( HB_COMP_PARAM ) ); ;} + break; + + case 621: +#line 1906 "harbour.y" + { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr) ); ;} + break; + + case 622: +#line 1907 "harbour.y" + { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} + break; + + case 623: +#line 1908 "harbour.y" + { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (2)].asExpr), hb_compExprNewNil( HB_COMP_PARAM ) ); ;} + break; + + case 624: +#line 1909 "harbour.y" + { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} + break; + case 625: #line 1912 "harbour.y" - { (yyval.asExpr) = (yyvsp[(2) - (2)].asExpr); ;} - break; - - case 626: -#line 1915 "harbour.y" - { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), hb_compExprNewNil( HB_COMP_PARAM ) ); ;} - break; - - case 627: -#line 1916 "harbour.y" - { (yyval.asExpr) = hb_compExprAddListExpr( hb_compExprNewArgList( hb_compExprNewNil( HB_COMP_PARAM ), HB_COMP_PARAM ), (yyvsp[(2) - (2)].asExpr) ); ;} - break; - - case 628: -#line 1917 "harbour.y" - { (yyval.asExpr) = hb_compExprNewArgList( (yyvsp[(1) - (1)].asExpr), HB_COMP_PARAM ); ;} - break; - - case 629: -#line 1918 "harbour.y" - { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (2)].asExpr), hb_compExprNewNil( HB_COMP_PARAM ) ); ;} - break; - - case 630: -#line 1919 "harbour.y" - { (yyval.asExpr) = hb_compExprAddListExpr( (yyvsp[(1) - (3)].asExpr), (yyvsp[(3) - (3)].asExpr) ); ;} - break; - - case 631: -#line 1922 "harbour.y" { (yyval.asExpr) = hb_compExprNewVarRef( (yyvsp[(1) - (1)].string), HB_COMP_PARAM ); ;} break; - case 636: -#line 1930 "harbour.y" + case 630: +#line 1920 "harbour.y" { hb_compLinePushIfInside( HB_COMP_PARAM ); HB_COMP_EXPR_DELETE( hb_compExprGenPush( (yyvsp[(2) - (3)].asExpr), HB_COMP_PARAM ) ); @@ -7078,8 +7014,8 @@ yyreduce: ;} break; - case 637: -#line 1939 "harbour.y" + case 631: +#line 1929 "harbour.y" { if( HB_COMP_PARAM->functions.pLast->wWithObjectCnt ) --HB_COMP_PARAM->functions.pLast->wWithObjectCnt; if( (yyvsp[(5) - (6)].lNumber) ) @@ -7093,14 +7029,14 @@ yyreduce: ;} break; - case 640: -#line 1956 "harbour.y" + case 634: +#line 1946 "harbour.y" { HB_COMP_PARAM->fError = FALSE; ;} break; -/* Line 1268 of yacc.c. */ -#line 7104 "harboury.c" +/* Line 1267 of yacc.c. */ +#line 7040 "harboury.c" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -7135,7 +7071,6 @@ yyerrlab: if (!yyerrstatus) { ++yynerrs; - YYUSE (yynerrs); #if ! YYERROR_VERBOSE yyerror (pComp, YY_("syntax error")); #else @@ -7202,16 +7137,13 @@ yyerrlab: /*---------------------------------------------------. | 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. */ @@ -7220,7 +7152,6 @@ yyerrorlab: YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; -#endif /* NO_YYERROR */ /*-------------------------------------------------------------. @@ -7319,7 +7250,7 @@ yyreturn: } -#line 1960 "harbour.y" +#line 1950 "harbour.y" /* @@ -7764,7 +7695,7 @@ static void hb_compVariableDim( const char * szName, HB_EXPR_PTR pInitValue, HB_ { if( HB_COMP_PARAM->iVarScope == VS_PUBLIC || HB_COMP_PARAM->iVarScope == VS_PRIVATE ) { - hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' ); + 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 ); } @@ -7774,7 +7705,7 @@ static void hb_compVariableDim( const char * szName, HB_EXPR_PTR pInitValue, HB_ HB_EXPR_PTR pAssign; /* create a static variable */ - hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' ); + 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 */ @@ -7789,7 +7720,7 @@ static void hb_compVariableDim( const char * szName, HB_EXPR_PTR pInitValue, HB_ } else { - hb_compVariableAdd( HB_COMP_PARAM, szName, 'A' ); + 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->bFlags & FUN_EXTBLOCK ) ) diff --git a/harbour/source/compiler/harbour.yyh b/harbour/source/compiler/harbour.yyh index b616cfb556..e81f6f32b3 100644 --- a/harbour/source/compiler/harbour.yyh +++ b/harbour/source/compiler/harbour.yyh @@ -305,9 +305,10 @@ typedef union YYSTYPE HB_EXPR_PTR macro; } value; } asMessage; + PHB_VARTYPE asVarType; } -/* Line 1495 of yacc.c. */ -#line 311 "harboury.h" +/* Line 1489 of yacc.c. */ +#line 312 "harboury.h" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 diff --git a/harbour/source/compiler/hbcomp.c b/harbour/source/compiler/hbcomp.c index c6407f393c..c71b5e8706 100644 --- a/harbour/source/compiler/hbcomp.c +++ b/harbour/source/compiler/hbcomp.c @@ -272,6 +272,14 @@ void hb_comp_free( HB_COMP_PTR pComp ) hb_xfree( pAutoOpen ); } + while( pComp->pVarType ) + { + PHB_VARTYPE pVarType = pComp->pVarType; + + pComp->pVarType = pComp->pVarType->pNext; + hb_xfree( pVarType ); + } + if( pComp->pOutBuf ) hb_xfree( pComp->pOutBuf ); diff --git a/harbour/source/compiler/hbmain.c b/harbour/source/compiler/hbmain.c index f7243718cf..a1ecda9147 100644 --- a/harbour/source/compiler/hbmain.c +++ b/harbour/source/compiler/hbmain.c @@ -376,14 +376,12 @@ static USHORT hb_compVarListAdd( PVAR * pVarLst, PVAR pVar ) return uiVar; } -void hb_compVariableAdd( HB_COMP_DECL, const char * szVarName, BYTE cValueType ) +void hb_compVariableAdd( HB_COMP_DECL, const char * szVarName, PHB_VARTYPE pVarType ) { PFUNCTION pFunc = HB_COMP_PARAM->functions.pLast; PVAR pVar; BOOL bFreeVar = TRUE; - HB_SYMBOL_UNUSED( cValueType ); - if( ! HB_COMP_PARAM->fStartProc && HB_COMP_PARAM->functions.iCount <= 1 && ( HB_COMP_PARAM->iVarScope == VS_LOCAL || HB_COMP_PARAM->iVarScope == ( VS_PRIVATE | VS_PARAMETER ) ) ) @@ -461,22 +459,20 @@ void hb_compVariableAdd( HB_COMP_DECL, const char * szVarName, BYTE cValueType ) pVar->szName = szVarName; pVar->szAlias = NULL; pVar->uiFlags = 0; - pVar->cType = cValueType; + pVar->cType = pVarType->cVarType; pVar->iUsed = VU_NOT_USED; pVar->pNext = NULL; pVar->iDeclLine = HB_COMP_PARAM->currLine; - if( toupper( cValueType ) == 'S' ) + if( toupper( pVarType->cVarType ) == 'S' ) { - /* printf( "\nVariable %s is of Class: %s\n", szVarName, HB_COMP_PARAM->szFromClass ); */ - pVar->pClass = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass ); + /* printf( "\nVariable %s is of Class: %s\n", szVarName, pVarType->szFromClass ); */ + pVar->pClass = hb_compClassFind( HB_COMP_PARAM, pVarType->szFromClass ); if( ! pVar->pClass ) { - hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, HB_COMP_PARAM->szFromClass, szVarName ); + hb_compGenWarning( HB_COMP_PARAM, hb_comp_szWarnings, 'W', HB_COMP_WARN_CLASS_NOT_FOUND, pVarType->szFromClass, szVarName ); pVar->cType = 'O'; } - /* Resetting */ - HB_COMP_PARAM->szFromClass = NULL; } if( HB_COMP_PARAM->iVarScope & VS_PARAMETER ) @@ -1137,7 +1133,7 @@ PCOMDECLARED hb_compDeclaredAdd( HB_COMP_DECL, const char * szDeclaredName ) return pDeclared; } -void hb_compDeclaredParameterAdd( HB_COMP_DECL, const char * szVarName, BYTE cValueType ) +void hb_compDeclaredParameterAdd( HB_COMP_DECL, const char * szVarName, PHB_VARTYPE pVarType ) { /* Nothing to do since no warnings requested.*/ if( HB_COMP_PARAM->iWarnings < 3 ) @@ -1167,20 +1163,17 @@ void hb_compDeclaredParameterAdd( HB_COMP_DECL, const char * szVarName, BYTE cVa pDeclared->pParamClasses = ( PCOMCLASS * ) hb_xgrab( sizeof( PCOMCLASS ) ); } - pDeclared->cParamTypes[ pDeclared->iParamCount - 1 ] = cValueType; + pDeclared->cParamTypes[ pDeclared->iParamCount - 1 ] = pVarType->cVarType; - if( toupper( cValueType ) == 'S' ) + if( toupper( pVarType->cVarType ) == 'S' ) { - pDeclared->pParamClasses[ pDeclared->iParamCount - 1 ] = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass ); - - /* Resetting */ - HB_COMP_PARAM->szFromClass = NULL; + pDeclared->pParamClasses[ pDeclared->iParamCount - 1 ] = hb_compClassFind( HB_COMP_PARAM, pVarType->szFromClass ); } } } else /* Declared Method Parameter */ { - /* printf( "\nAdding parameter: %s Type: %c In Method: %s Class: %s FROM CLASS: %s\n", szVarName, cValueType, HB_COMP_PARAM->pLastMethod->szName, HB_COMP_PARAM->pLastClass->szName, HB_COMP_PARAM->szFromClass ); */ + /* printf( "\nAdding parameter: %s Type: %c In Method: %s Class: %s FROM CLASS: %s\n", szVarName, pVarType->cVarType, HB_COMP_PARAM->pLastMethod->szName, HB_COMP_PARAM->pLastClass->szName, pVarType->szFromClass ); */ HB_COMP_PARAM->pLastMethod->iParamCount++; @@ -1195,16 +1188,13 @@ void hb_compDeclaredParameterAdd( HB_COMP_DECL, const char * szVarName, BYTE cVa HB_COMP_PARAM->pLastMethod->pParamClasses = ( PCOMCLASS * ) hb_xgrab( sizeof( COMCLASS ) ); } - HB_COMP_PARAM->pLastMethod->cParamTypes[ HB_COMP_PARAM->pLastMethod->iParamCount - 1 ] = cValueType; + HB_COMP_PARAM->pLastMethod->cParamTypes[ HB_COMP_PARAM->pLastMethod->iParamCount - 1 ] = pVarType->cVarType; - if( toupper( cValueType ) == 'S' ) + if( toupper( pVarType->cVarType ) == 'S' ) { - HB_COMP_PARAM->pLastMethod->pParamClasses[ HB_COMP_PARAM->pLastMethod->iParamCount - 1 ] = hb_compClassFind( HB_COMP_PARAM, HB_COMP_PARAM->szFromClass ); + HB_COMP_PARAM->pLastMethod->pParamClasses[ HB_COMP_PARAM->pLastMethod->iParamCount - 1 ] = hb_compClassFind( HB_COMP_PARAM, pVarType->szFromClass ); /* printf( "\nParameter: %s FROM CLASS: %s\n", szVarName, HB_COMP_PARAM->pLastMethod->pParamClasses[ HB_COMP_PARAM->pLastMethod->iParamCount - 1 ]->szName ); */ - - /* Resetting */ - HB_COMP_PARAM->szFromClass = NULL; } } } @@ -3663,7 +3653,6 @@ static void hb_compInitVars( HB_COMP_DECL ) HB_COMP_PARAM->iFunctionCnt = 0; HB_COMP_PARAM->iErrorCount = 0; - HB_COMP_PARAM->cVarType = ' '; HB_COMP_PARAM->lastLinePos = 0; HB_COMP_PARAM->iStaticCnt = 0; HB_COMP_PARAM->iVarScope = VS_LOCAL; @@ -4303,3 +4292,30 @@ static int hb_compAutoOpen( HB_COMP_DECL, const char * szPrg, BOOL * pbSkipGen, return HB_COMP_PARAM->fExit ? EXIT_FAILURE : iStatus; } + + +PHB_VARTYPE hb_compVarTypeNew( HB_COMP_DECL, char cVarType, const char* szFromClass ) +{ + PHB_VARTYPE pVT = HB_COMP_PARAM->pVarType; + PHB_VARTYPE* ppVT = &( HB_COMP_PARAM->pVarType ); + + while( pVT ) + { + if( pVT->cVarType == cVarType && + ( ( ! pVT->szFromClass && ! szFromClass ) || + ( pVT->szFromClass && szFromClass && ! strcmp( pVT->szFromClass, szFromClass ) ) ) ) + return pVT; + + ppVT = &pVT->pNext; + pVT = pVT->pNext; + } + + /* Add to the end of list. I hope it will help the most usual type (' ', NULL) + to be in the begining of the list, and it will be found faster. [Mindaugas] */ + pVT = ( PHB_VARTYPE ) hb_xgrab( sizeof( HB_VARTYPE ) ); + pVT->pNext = NULL; + pVT->cVarType = cVarType; + pVT->szFromClass = szFromClass; + *ppVT = pVT; + return pVT; +}