From dc39f145ce5264c64c569eb7fde2c8185e517dde Mon Sep 17 00:00:00 2001 From: Patrick Dular <patrick.dular@ulg.ac.be> Date: Thu, 15 Oct 2015 03:18:17 +0000 Subject: [PATCH] (1) If and EndIf now allowed in comments and variable names (with alpha-char before or after); (2) Else now possible in If EndIf; (3) Warning if orphan EndIf. --- Parser/Gmsh.l | 113 +- Parser/Gmsh.tab.cpp | 13238 +++++++++++++++++++++--------------------- Parser/Gmsh.tab.hpp | 610 +- Parser/Gmsh.y | 39 +- Parser/Gmsh.yy.cpp | 1625 +++--- 5 files changed, 8112 insertions(+), 7513 deletions(-) diff --git a/Parser/Gmsh.l b/Parser/Gmsh.l index 5dfcd931dc..b04319644e 100644 --- a/Parser/Gmsh.l +++ b/Parser/Gmsh.l @@ -155,6 +155,7 @@ SetChanged return tSetChanged; Exp return tExp; Ellipsis return tEllipse; Ellipse return tEllipse; +Else return tElse; Extrude return tExtrude; Elliptic return tElliptic; EndFor return tEndFor; @@ -275,6 +276,7 @@ SyncModel return tSyncModel; T2 return tText2D; T3 return tText3D; +TestLevel return tTestLevel; TextAttributes return tTextAttributes; TIME return tTime; Transfinite return tTransfinite; @@ -363,20 +365,89 @@ void skipline() } } +bool is_alpha(const int c) +{ + return (c>='a' && c<='z') || (c>='A' && c<='Z') || c=='_'; +} + void skip_until(const char *skip, const char *until) { - int i, nb_skip; + int i, nb_skip = 0; int l, l_skip, l_until; char chars[256]; + int c_next, c_next_skip, c_next_until, c_previous = 0; - nb_skip = 0; + l_skip = (skip)? strlen(skip) : 0; + l_until = strlen(until); - if(skip) - l_skip = strlen(skip); - else - l_skip = 0; + while(1){ + while (1){ + chars[0] = yyinput(); + if(gmsheof(yyin)){ + Msg::Error("Unexpected end of file"); + return; + } + if(chars[0] == '/'){ + c_next = yyinput(); + if (c_next == '*') skipcomments(); + else if(c_next == '/') skipline(); + else unput(c_next); + } + if(!c_previous || !is_alpha(c_previous)){ + if(chars[0] == until[0]) break; + if(skip && chars[0] == skip[0]) break; + } + c_previous = chars[0]; + } + + l = std::max(l_skip,l_until); + if(l >= (int)sizeof(chars)){ + Msg::Error("Search pattern too long in skip_until"); + return; + } + for(i=1; i<l; i++){ + chars[i] = yyinput(); + if(gmsheof(yyin)){ + l = i; + break; + } + } + + c_next = yyinput(); unput(c_next); + c_next_skip = (l_skip<l)? chars[l_skip] : c_next; + c_next_until = (l_until<l)? chars[l_until] : c_next; + + if(!strncmp(chars,until,l_until) && !is_alpha(c_next_until)){ + if(!nb_skip){ + return; + } + else{ + nb_skip--; + } + } + else if(skip && !strncmp(chars,skip,l_skip) && !is_alpha(c_next_skip)){ + nb_skip++; + } + else{ + for(i=1;i<l-1;i++){ + unput(chars[l-i]); + } + } + + } +} + +void skip_until_test(const char *skip, const char *until, const char *until2, int *flag_until2) +{ + int i, nb_skip = 0; + int l, l_skip, l_until, l_until2; + char chars[256]; + int c_next, c_next_skip, c_next_until, c_next_until2, c_previous = 0; + + l_skip = (skip)? strlen(skip) : 0; l_until = strlen(until); + l_until2 = (until2)? strlen(until2) : 0; while(1){ while (1){ @@ -385,11 +456,22 @@ void skip_until(const char *skip, const char *until) Msg::Error("Unexpected end of file"); return; } - if(chars[0] == until[0]) break; - if(skip && chars[0] == skip[0]) break; + if(chars[0] == '/'){ + c_next = yyinput(); + if (c_next == '*') skipcomments(); + else if(c_next == '/') skipline(); + else unput(c_next); + } + if(!c_previous || !is_alpha(c_previous)){ + if(chars[0] == until[0]) break; + if(skip && chars[0] == skip[0]) break; + if(until2 && chars[0] == until2[0]) break; + } + c_previous = chars[0]; } l = std::max(l_skip,l_until); + l = std::max(l,l_until2); if(l >= (int)sizeof(chars)){ Msg::Error("Search pattern too long in skip_until"); return; @@ -402,7 +484,18 @@ void skip_until(const char *skip, const char *until) } } - if(!strncmp(chars,until,l_until)){ + c_next = yyinput(); unput(c_next); + c_next_skip = (l_skip<l)? chars[l_skip] : c_next; + c_next_until = (l_until<l)? chars[l_until] : c_next; + c_next_until2 = (l_until2<l)? chars[l_until2] : c_next; + + if(!strncmp(chars,until2,l_until2) && !is_alpha(c_next_until2)){ + if(!nb_skip){ + *flag_until2 = 1; + return; + } + } + else if(!strncmp(chars,until,l_until) && !is_alpha(c_next_until)){ if(!nb_skip){ return; } @@ -410,7 +503,7 @@ void skip_until(const char *skip, const char *until) nb_skip--; } } - else if(skip && !strncmp(chars,skip,l_skip)){ + else if(skip && !strncmp(chars,skip,l_skip) && !is_alpha(c_next_skip)){ nb_skip++; } else{ diff --git a/Parser/Gmsh.tab.cpp b/Parser/Gmsh.tab.cpp index 02a59d1fbe..bdac2b5db0 100644 --- a/Parser/Gmsh.tab.cpp +++ b/Parser/Gmsh.tab.cpp @@ -1,13 +1,14 @@ -/* A Bison parser, made by GNU Bison 3.0.4. */ +/* A Bison parser, made by GNU Bison 2.3. */ -/* Bison implementation for Yacc-like parsers in C +/* Skeleton implementation for Bison's Yacc-like parsers in C - Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + Free Software Foundation, Inc. - This program is free software: you can redistribute it and/or modify + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + the Free Software Foundation; either version 2, or (at your option) + any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -15,7 +16,9 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. */ + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work @@ -44,7 +47,7 @@ #define YYBISON 1 /* Bison version. */ -#define YYBISON_VERSION "3.0.4" +#define YYBISON_VERSION "2.3" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" @@ -52,25 +55,400 @@ /* Pure parsers. */ #define YYPURE 0 -/* Push parsers. */ -#define YYPUSH 0 +/* Using locations. */ +#define YYLSP_NEEDED 0 -/* Pull parsers. */ -#define YYPULL 1 +/* Substitute the variable and function names. */ +#define yyparse gmsh_yyparse +#define yylex gmsh_yylex +#define yyerror gmsh_yyerror +#define yylval gmsh_yylval +#define yychar gmsh_yychar +#define yydebug gmsh_yydebug +#define yynerrs gmsh_yynerrs + + +/* Tokens. */ +#ifndef YYTOKENTYPE +# define YYTOKENTYPE + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + tDOUBLE = 258, + tSTRING = 259, + tBIGSTR = 260, + tEND = 261, + tAFFECT = 262, + tDOTS = 263, + tPi = 264, + tMPI_Rank = 265, + tMPI_Size = 266, + tEuclidian = 267, + tCoordinates = 268, + tTestLevel = 269, + tExp = 270, + tLog = 271, + tLog10 = 272, + tSqrt = 273, + tSin = 274, + tAsin = 275, + tCos = 276, + tAcos = 277, + tTan = 278, + tRand = 279, + tAtan = 280, + tAtan2 = 281, + tSinh = 282, + tCosh = 283, + tTanh = 284, + tFabs = 285, + tFloor = 286, + tCeil = 287, + tRound = 288, + tFmod = 289, + tModulo = 290, + tHypot = 291, + tList = 292, + tPrintf = 293, + tError = 294, + tStr = 295, + tSprintf = 296, + tStrCat = 297, + tStrPrefix = 298, + tStrRelative = 299, + tStrReplace = 300, + tFind = 301, + tStrFind = 302, + tStrCmp = 303, + tStrChoice = 304, + tUpperCase = 305, + tLowerCase = 306, + tLowerCaseIn = 307, + tTextAttributes = 308, + tBoundingBox = 309, + tDraw = 310, + tSetChanged = 311, + tToday = 312, + tFixRelativePath = 313, + tCurrentDirectory = 314, + tSyncModel = 315, + tNewModel = 316, + tOnelabAction = 317, + tOnelabRun = 318, + tCpu = 319, + tMemory = 320, + tTotalMemory = 321, + tCreateTopology = 322, + tCreateTopologyNoHoles = 323, + tDistanceFunction = 324, + tDefineConstant = 325, + tUndefineConstant = 326, + tDefineNumber = 327, + tDefineString = 328, + tSetNumber = 329, + tSetString = 330, + tPoint = 331, + tCircle = 332, + tEllipse = 333, + tLine = 334, + tSphere = 335, + tPolarSphere = 336, + tSurface = 337, + tSpline = 338, + tVolume = 339, + tCharacteristic = 340, + tLength = 341, + tParametric = 342, + tElliptic = 343, + tRefineMesh = 344, + tAdaptMesh = 345, + tRelocateMesh = 346, + tPlane = 347, + tRuled = 348, + tTransfinite = 349, + tComplex = 350, + tPhysical = 351, + tCompound = 352, + tPeriodic = 353, + tUsing = 354, + tPlugin = 355, + tDegenerated = 356, + tRecursive = 357, + tRotate = 358, + tTranslate = 359, + tSymmetry = 360, + tDilate = 361, + tExtrude = 362, + tLevelset = 363, + tAffine = 364, + tRecombine = 365, + tSmoother = 366, + tSplit = 367, + tDelete = 368, + tCoherence = 369, + tIntersect = 370, + tMeshAlgorithm = 371, + tReverse = 372, + tLayers = 373, + tScaleLast = 374, + tHole = 375, + tAlias = 376, + tAliasWithOptions = 377, + tCopyOptions = 378, + tQuadTriAddVerts = 379, + tQuadTriNoNewVerts = 380, + tQuadTriSngl = 381, + tQuadTriDbl = 382, + tRecombLaterals = 383, + tTransfQuadTri = 384, + tText2D = 385, + tText3D = 386, + tInterpolationScheme = 387, + tTime = 388, + tCombine = 389, + tBSpline = 390, + tBezier = 391, + tNurbs = 392, + tNurbsOrder = 393, + tNurbsKnots = 394, + tColor = 395, + tColorTable = 396, + tFor = 397, + tIn = 398, + tEndFor = 399, + tIf = 400, + tElse = 401, + tEndIf = 402, + tExit = 403, + tAbort = 404, + tField = 405, + tReturn = 406, + tCall = 407, + tMacro = 408, + tShow = 409, + tHide = 410, + tGetValue = 411, + tGetEnv = 412, + tGetString = 413, + tGetNumber = 414, + tHomology = 415, + tCohomology = 416, + tBetti = 417, + tSetOrder = 418, + tExists = 419, + tFileExists = 420, + tGMSH_MAJOR_VERSION = 421, + tGMSH_MINOR_VERSION = 422, + tGMSH_PATCH_VERSION = 423, + tGmshExecutableName = 424, + tSetPartition = 425, + tNameFromString = 426, + tStringFromName = 427, + tAFFECTDIVIDE = 428, + tAFFECTTIMES = 429, + tAFFECTMINUS = 430, + tAFFECTPLUS = 431, + tOR = 432, + tAND = 433, + tNOTEQUAL = 434, + tEQUAL = 435, + tGREATEROREQUAL = 436, + tLESSOREQUAL = 437, + UNARYPREC = 438, + tMINUSMINUS = 439, + tPLUSPLUS = 440 + }; +#endif +/* Tokens. */ +#define tDOUBLE 258 +#define tSTRING 259 +#define tBIGSTR 260 +#define tEND 261 +#define tAFFECT 262 +#define tDOTS 263 +#define tPi 264 +#define tMPI_Rank 265 +#define tMPI_Size 266 +#define tEuclidian 267 +#define tCoordinates 268 +#define tTestLevel 269 +#define tExp 270 +#define tLog 271 +#define tLog10 272 +#define tSqrt 273 +#define tSin 274 +#define tAsin 275 +#define tCos 276 +#define tAcos 277 +#define tTan 278 +#define tRand 279 +#define tAtan 280 +#define tAtan2 281 +#define tSinh 282 +#define tCosh 283 +#define tTanh 284 +#define tFabs 285 +#define tFloor 286 +#define tCeil 287 +#define tRound 288 +#define tFmod 289 +#define tModulo 290 +#define tHypot 291 +#define tList 292 +#define tPrintf 293 +#define tError 294 +#define tStr 295 +#define tSprintf 296 +#define tStrCat 297 +#define tStrPrefix 298 +#define tStrRelative 299 +#define tStrReplace 300 +#define tFind 301 +#define tStrFind 302 +#define tStrCmp 303 +#define tStrChoice 304 +#define tUpperCase 305 +#define tLowerCase 306 +#define tLowerCaseIn 307 +#define tTextAttributes 308 +#define tBoundingBox 309 +#define tDraw 310 +#define tSetChanged 311 +#define tToday 312 +#define tFixRelativePath 313 +#define tCurrentDirectory 314 +#define tSyncModel 315 +#define tNewModel 316 +#define tOnelabAction 317 +#define tOnelabRun 318 +#define tCpu 319 +#define tMemory 320 +#define tTotalMemory 321 +#define tCreateTopology 322 +#define tCreateTopologyNoHoles 323 +#define tDistanceFunction 324 +#define tDefineConstant 325 +#define tUndefineConstant 326 +#define tDefineNumber 327 +#define tDefineString 328 +#define tSetNumber 329 +#define tSetString 330 +#define tPoint 331 +#define tCircle 332 +#define tEllipse 333 +#define tLine 334 +#define tSphere 335 +#define tPolarSphere 336 +#define tSurface 337 +#define tSpline 338 +#define tVolume 339 +#define tCharacteristic 340 +#define tLength 341 +#define tParametric 342 +#define tElliptic 343 +#define tRefineMesh 344 +#define tAdaptMesh 345 +#define tRelocateMesh 346 +#define tPlane 347 +#define tRuled 348 +#define tTransfinite 349 +#define tComplex 350 +#define tPhysical 351 +#define tCompound 352 +#define tPeriodic 353 +#define tUsing 354 +#define tPlugin 355 +#define tDegenerated 356 +#define tRecursive 357 +#define tRotate 358 +#define tTranslate 359 +#define tSymmetry 360 +#define tDilate 361 +#define tExtrude 362 +#define tLevelset 363 +#define tAffine 364 +#define tRecombine 365 +#define tSmoother 366 +#define tSplit 367 +#define tDelete 368 +#define tCoherence 369 +#define tIntersect 370 +#define tMeshAlgorithm 371 +#define tReverse 372 +#define tLayers 373 +#define tScaleLast 374 +#define tHole 375 +#define tAlias 376 +#define tAliasWithOptions 377 +#define tCopyOptions 378 +#define tQuadTriAddVerts 379 +#define tQuadTriNoNewVerts 380 +#define tQuadTriSngl 381 +#define tQuadTriDbl 382 +#define tRecombLaterals 383 +#define tTransfQuadTri 384 +#define tText2D 385 +#define tText3D 386 +#define tInterpolationScheme 387 +#define tTime 388 +#define tCombine 389 +#define tBSpline 390 +#define tBezier 391 +#define tNurbs 392 +#define tNurbsOrder 393 +#define tNurbsKnots 394 +#define tColor 395 +#define tColorTable 396 +#define tFor 397 +#define tIn 398 +#define tEndFor 399 +#define tIf 400 +#define tElse 401 +#define tEndIf 402 +#define tExit 403 +#define tAbort 404 +#define tField 405 +#define tReturn 406 +#define tCall 407 +#define tMacro 408 +#define tShow 409 +#define tHide 410 +#define tGetValue 411 +#define tGetEnv 412 +#define tGetString 413 +#define tGetNumber 414 +#define tHomology 415 +#define tCohomology 416 +#define tBetti 417 +#define tSetOrder 418 +#define tExists 419 +#define tFileExists 420 +#define tGMSH_MAJOR_VERSION 421 +#define tGMSH_MINOR_VERSION 422 +#define tGMSH_PATCH_VERSION 423 +#define tGmshExecutableName 424 +#define tSetPartition 425 +#define tNameFromString 426 +#define tStringFromName 427 +#define tAFFECTDIVIDE 428 +#define tAFFECTTIMES 429 +#define tAFFECTMINUS 430 +#define tAFFECTPLUS 431 +#define tOR 432 +#define tAND 433 +#define tNOTEQUAL 434 +#define tEQUAL 435 +#define tGREATEROREQUAL 436 +#define tLESSOREQUAL 437 +#define UNARYPREC 438 +#define tMINUSMINUS 439 +#define tPLUSPLUS 440 -/* Substitute the variable and function names. */ -#define yyparse gmsh_yyparse -#define yylex gmsh_yylex -#define yyerror gmsh_yyerror -#define yydebug gmsh_yydebug -#define yynerrs gmsh_yynerrs -#define yylval gmsh_yylval -#define yychar gmsh_yychar /* Copy the first part of user declarations. */ -#line 1 "Gmsh.y" /* yacc.c:339 */ +#line 1 "Gmsh.y" // Gmsh - Copyright (C) 1997-2015 C. Geuzaine, J.-F. Remacle // @@ -142,8 +520,10 @@ static std::vector<double> *ViewValueList = 0; static int *ViewNumList = 0; static ExtrudeParams extr; static gmshSurface *myGmshSurface = 0; +#define MAX_RECUR_TESTS 100 +static int statusImbricatedTests[MAX_RECUR_TESTS]; #define MAX_RECUR_LOOPS 100 -static int ImbricatedLoop = 0; +static int ImbricatedLoop = 0, ImbricatedTest = 0; static gmshfpos_t yyposImbricatedLoopsTab[MAX_RECUR_LOOPS]; static int yylinenoImbricatedLoopsTab[MAX_RECUR_LOOPS]; static double LoopControlVariablesTab[MAX_RECUR_LOOPS][3]; @@ -153,7 +533,9 @@ static std::map<std::string, std::vector<std::string> > charOptions; void yyerror(const char *s); void yymsg(int level, const char *fmt, ...); +bool is_alpha(const int c); void skip_until(const char *skip, const char *until); +void skip_until_test(const char *skip, const char *until, const char *until2, int *flag_until2); void assignVariable(const std::string &name, int index, int assignType, double value); void assignVariables(const std::string &name, List_T *indices, int assignType, @@ -163,10 +545,10 @@ int PrintListOfDouble(char *format, List_T *list, char *buffer); void PrintParserSymbols(std::vector<std::string> &vec); fullMatrix<double> ListOfListOfDouble2Matrix(List_T *list); -void addPeriodicEdge(int,int,const std::vector<double>&); -void addPeriodicFace(int,int,const std::map<int,int>&); -void addPeriodicFace(int,int,const std::vector<double>&); -void computeAffineTransformation(SPoint3&,SPoint3&,double,SPoint3&,std::vector<double>&); +void addPeriodicEdge(int, int, const std::vector<double>&); +void addPeriodicFace(int, int, const std::map<int,int>&); +void addPeriodicFace(int, int, const std::vector<double>&); +void computeAffineTransformation(SPoint3&, SPoint3&, double, SPoint3&, std::vector<double>&); struct doubleXstring{ double d; @@ -174,15 +556,11 @@ struct doubleXstring{ }; -#line 178 "Gmsh.tab.cpp" /* yacc.c:339 */ -# ifndef YY_NULLPTR -# if defined __cplusplus && 201103L <= __cplusplus -# define YY_NULLPTR nullptr -# else -# define YY_NULLPTR 0 -# endif -# endif +/* Enabling traces. */ +#ifndef YYDEBUG +# define YYDEBUG 0 +#endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE @@ -192,214 +570,15 @@ struct doubleXstring{ # define YYERROR_VERBOSE 0 #endif -/* In a future release of Bison, this section will be replaced - by #include "Gmsh.tab.hpp". */ -#ifndef YY_GMSH_YY_GMSH_TAB_HPP_INCLUDED -# define YY_GMSH_YY_GMSH_TAB_HPP_INCLUDED -/* Debug traces. */ -#ifndef YYDEBUG -# define YYDEBUG 0 -#endif -#if YYDEBUG -extern int gmsh_yydebug; +/* Enabling the token table. */ +#ifndef YYTOKEN_TABLE +# define YYTOKEN_TABLE 0 #endif -/* Token type. */ -#ifndef YYTOKENTYPE -# define YYTOKENTYPE - enum yytokentype - { - tDOUBLE = 258, - tSTRING = 259, - tBIGSTR = 260, - tEND = 261, - tAFFECT = 262, - tDOTS = 263, - tPi = 264, - tMPI_Rank = 265, - tMPI_Size = 266, - tEuclidian = 267, - tCoordinates = 268, - tExp = 269, - tLog = 270, - tLog10 = 271, - tSqrt = 272, - tSin = 273, - tAsin = 274, - tCos = 275, - tAcos = 276, - tTan = 277, - tRand = 278, - tAtan = 279, - tAtan2 = 280, - tSinh = 281, - tCosh = 282, - tTanh = 283, - tFabs = 284, - tFloor = 285, - tCeil = 286, - tRound = 287, - tFmod = 288, - tModulo = 289, - tHypot = 290, - tList = 291, - tPrintf = 292, - tError = 293, - tStr = 294, - tSprintf = 295, - tStrCat = 296, - tStrPrefix = 297, - tStrRelative = 298, - tStrReplace = 299, - tFind = 300, - tStrFind = 301, - tStrCmp = 302, - tStrChoice = 303, - tUpperCase = 304, - tLowerCase = 305, - tLowerCaseIn = 306, - tTextAttributes = 307, - tBoundingBox = 308, - tDraw = 309, - tSetChanged = 310, - tToday = 311, - tFixRelativePath = 312, - tCurrentDirectory = 313, - tSyncModel = 314, - tNewModel = 315, - tOnelabAction = 316, - tOnelabRun = 317, - tCpu = 318, - tMemory = 319, - tTotalMemory = 320, - tCreateTopology = 321, - tCreateTopologyNoHoles = 322, - tDistanceFunction = 323, - tDefineConstant = 324, - tUndefineConstant = 325, - tDefineNumber = 326, - tDefineString = 327, - tSetNumber = 328, - tSetString = 329, - tPoint = 330, - tCircle = 331, - tEllipse = 332, - tLine = 333, - tSphere = 334, - tPolarSphere = 335, - tSurface = 336, - tSpline = 337, - tVolume = 338, - tCharacteristic = 339, - tLength = 340, - tParametric = 341, - tElliptic = 342, - tRefineMesh = 343, - tAdaptMesh = 344, - tRelocateMesh = 345, - tPlane = 346, - tRuled = 347, - tTransfinite = 348, - tComplex = 349, - tPhysical = 350, - tCompound = 351, - tPeriodic = 352, - tUsing = 353, - tPlugin = 354, - tDegenerated = 355, - tRecursive = 356, - tRotate = 357, - tTranslate = 358, - tSymmetry = 359, - tDilate = 360, - tExtrude = 361, - tLevelset = 362, - tAffine = 363, - tRecombine = 364, - tSmoother = 365, - tSplit = 366, - tDelete = 367, - tCoherence = 368, - tIntersect = 369, - tMeshAlgorithm = 370, - tReverse = 371, - tLayers = 372, - tScaleLast = 373, - tHole = 374, - tAlias = 375, - tAliasWithOptions = 376, - tCopyOptions = 377, - tQuadTriAddVerts = 378, - tQuadTriNoNewVerts = 379, - tQuadTriSngl = 380, - tQuadTriDbl = 381, - tRecombLaterals = 382, - tTransfQuadTri = 383, - tText2D = 384, - tText3D = 385, - tInterpolationScheme = 386, - tTime = 387, - tCombine = 388, - tBSpline = 389, - tBezier = 390, - tNurbs = 391, - tNurbsOrder = 392, - tNurbsKnots = 393, - tColor = 394, - tColorTable = 395, - tFor = 396, - tIn = 397, - tEndFor = 398, - tIf = 399, - tEndIf = 400, - tExit = 401, - tAbort = 402, - tField = 403, - tReturn = 404, - tCall = 405, - tMacro = 406, - tShow = 407, - tHide = 408, - tGetValue = 409, - tGetEnv = 410, - tGetString = 411, - tGetNumber = 412, - tHomology = 413, - tCohomology = 414, - tBetti = 415, - tSetOrder = 416, - tExists = 417, - tFileExists = 418, - tGMSH_MAJOR_VERSION = 419, - tGMSH_MINOR_VERSION = 420, - tGMSH_PATCH_VERSION = 421, - tGmshExecutableName = 422, - tSetPartition = 423, - tNameFromString = 424, - tStringFromName = 425, - tAFFECTPLUS = 426, - tAFFECTMINUS = 427, - tAFFECTTIMES = 428, - tAFFECTDIVIDE = 429, - tOR = 430, - tAND = 431, - tEQUAL = 432, - tNOTEQUAL = 433, - tLESSOREQUAL = 434, - tGREATEROREQUAL = 435, - tPLUSPLUS = 436, - tMINUSMINUS = 437, - UNARYPREC = 438 - }; -#endif - -/* Value type. */ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED - -union YYSTYPE +typedef union YYSTYPE +#line 109 "Gmsh.y" { -#line 105 "Gmsh.y" /* yacc.c:355 */ - char *c; int i; unsigned int u; @@ -407,25 +586,22 @@ union YYSTYPE double v[5]; Shape s; List_T *l; - -#line 412 "Gmsh.tab.cpp" /* yacc.c:355 */ -}; - -typedef union YYSTYPE YYSTYPE; -# define YYSTYPE_IS_TRIVIAL 1 +} +/* Line 193 of yacc.c. */ +#line 592 "Gmsh.tab.cpp" + YYSTYPE; +# define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 +# define YYSTYPE_IS_TRIVIAL 1 #endif -extern YYSTYPE gmsh_yylval; - -int gmsh_yyparse (void); - -#endif /* !YY_GMSH_YY_GMSH_TAB_HPP_INCLUDED */ /* Copy the second part of user declarations. */ -#line 429 "Gmsh.tab.cpp" /* yacc.c:358 */ + +/* Line 216 of yacc.c. */ +#line 605 "Gmsh.tab.cpp" #ifdef short # undef short @@ -439,8 +615,11 @@ typedef unsigned char yytype_uint8; #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; -#else +#elif (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; +#else +typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 @@ -460,7 +639,8 @@ typedef short int yytype_int16; # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t -# elif ! defined YYSIZE_T +# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) # include <stddef.h> /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else @@ -474,68 +654,39 @@ typedef short int yytype_int16; # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include <libintl.h> /* INFRINGES ON USER NAME SPACE */ -# define YY_(Msgid) dgettext ("bison-runtime", Msgid) +# define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ -# define YY_(Msgid) Msgid -# endif -#endif - -#ifndef YY_ATTRIBUTE -# if (defined __GNUC__ \ - && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \ - || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C -# define YY_ATTRIBUTE(Spec) __attribute__(Spec) -# else -# define YY_ATTRIBUTE(Spec) /* empty */ -# endif -#endif - -#ifndef YY_ATTRIBUTE_PURE -# define YY_ATTRIBUTE_PURE YY_ATTRIBUTE ((__pure__)) -#endif - -#ifndef YY_ATTRIBUTE_UNUSED -# define YY_ATTRIBUTE_UNUSED YY_ATTRIBUTE ((__unused__)) -#endif - -#if !defined _Noreturn \ - && (!defined __STDC_VERSION__ || __STDC_VERSION__ < 201112) -# if defined _MSC_VER && 1200 <= _MSC_VER -# define _Noreturn __declspec (noreturn) -# else -# define _Noreturn YY_ATTRIBUTE ((__noreturn__)) +# define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ -# define YYUSE(E) ((void) (E)) +# define YYUSE(e) ((void) (e)) #else -# define YYUSE(E) /* empty */ +# define YYUSE(e) /* empty */ #endif -#if defined __GNUC__ && 407 <= __GNUC__ * 100 + __GNUC_MINOR__ -/* Suppress an incorrect diagnostic about yylval being uninitialized. */ -# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \ - _Pragma ("GCC diagnostic push") \ - _Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")\ - _Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"") -# define YY_IGNORE_MAYBE_UNINITIALIZED_END \ - _Pragma ("GCC diagnostic pop") +/* Identity function, used to suppress warnings about constant conditions. */ +#ifndef lint +# define YYID(n) (n) #else -# define YY_INITIAL_VALUE(Value) Value -#endif -#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN -# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN -# define YY_IGNORE_MAYBE_UNINITIALIZED_END +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static int +YYID (int i) +#else +static int +YYID (i) + int i; #endif -#ifndef YY_INITIAL_VALUE -# define YY_INITIAL_VALUE(Value) /* Nothing. */ +{ + return i; +} #endif - #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ @@ -553,11 +704,11 @@ typedef short int yytype_int16; # define alloca _alloca # else # define YYSTACK_ALLOC alloca -# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS +# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ - /* Use EXIT_SUCCESS as a witness for stdlib.h. */ -# ifndef EXIT_SUCCESS -# define EXIT_SUCCESS 0 +# ifndef _STDLIB_H +# define _STDLIB_H 1 # endif # endif # endif @@ -565,8 +716,8 @@ typedef short int yytype_int16; # endif # ifdef YYSTACK_ALLOC - /* Pacify GCC's 'empty if-body' warning. */ -# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) + /* Pacify GCC's `empty if-body' warning. */ +# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely @@ -580,23 +731,25 @@ typedef short int yytype_int16; # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif -# if (defined __cplusplus && ! defined EXIT_SUCCESS \ +# if (defined __cplusplus && ! defined _STDLIB_H \ && ! ((defined YYMALLOC || defined malloc) \ - && (defined YYFREE || defined free))) + && (defined YYFREE || defined free))) # include <stdlib.h> /* INFRINGES ON USER NAME SPACE */ -# ifndef EXIT_SUCCESS -# define EXIT_SUCCESS 0 +# ifndef _STDLIB_H +# define _STDLIB_H 1 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc -# if ! defined malloc && ! defined EXIT_SUCCESS +# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free -# if ! defined free && ! defined EXIT_SUCCESS +# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif @@ -606,14 +759,14 @@ void free (void *); /* INFRINGES ON USER NAME SPACE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ - || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) + || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { - yytype_int16 yyss_alloc; - YYSTYPE yyvs_alloc; -}; + yytype_int16 yyss; + YYSTYPE yyvs; + }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) @@ -624,85 +777,79 @@ union yyalloc ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) -# define YYCOPY_NEEDED 1 +/* Copy COUNT objects from FROM to TO. The source and destination do + not overlap. */ +# ifndef YYCOPY +# if defined __GNUC__ && 1 < __GNUC__ +# define YYCOPY(To, From, Count) \ + __builtin_memcpy (To, From, (Count) * sizeof (*(From))) +# else +# define YYCOPY(To, From, Count) \ + do \ + { \ + YYSIZE_T yyi; \ + for (yyi = 0; yyi < (Count); yyi++) \ + (To)[yyi] = (From)[yyi]; \ + } \ + while (YYID (0)) +# endif +# endif /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ -# define YYSTACK_RELOCATE(Stack_alloc, Stack) \ - do \ - { \ - YYSIZE_T yynewbytes; \ - YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ - Stack = &yyptr->Stack_alloc; \ - yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ - yyptr += yynewbytes / sizeof (*yyptr); \ - } \ - while (0) +# define YYSTACK_RELOCATE(Stack) \ + do \ + { \ + YYSIZE_T yynewbytes; \ + YYCOPY (&yyptr->Stack, Stack, yysize); \ + Stack = &yyptr->Stack; \ + yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ + yyptr += yynewbytes / sizeof (*yyptr); \ + } \ + while (YYID (0)) #endif -#if defined YYCOPY_NEEDED && YYCOPY_NEEDED -/* Copy COUNT objects from SRC to DST. The source and destination do - not overlap. */ -# ifndef YYCOPY -# if defined __GNUC__ && 1 < __GNUC__ -# define YYCOPY(Dst, Src, Count) \ - __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src))) -# else -# define YYCOPY(Dst, Src, Count) \ - do \ - { \ - YYSIZE_T yyi; \ - for (yyi = 0; yyi < (Count); yyi++) \ - (Dst)[yyi] = (Src)[yyi]; \ - } \ - while (0) -# endif -# endif -#endif /* !YYCOPY_NEEDED */ - /* YYFINAL -- State number of the termination state. */ #define YYFINAL 5 /* YYLAST -- Last index in YYTABLE. */ -#define YYLAST 10143 +#define YYLAST 10262 /* YYNTOKENS -- Number of terminals. */ -#define YYNTOKENS 204 +#define YYNTOKENS 206 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 98 /* YYNRULES -- Number of rules. */ -#define YYNRULES 518 -/* YYNSTATES -- Number of states. */ -#define YYNSTATES 1835 +#define YYNRULES 520 +/* YYNRULES -- Number of states. */ +#define YYNSTATES 1837 -/* YYTRANSLATE[YYX] -- Symbol number corresponding to YYX as returned - by yylex, with out-of-bounds checking. */ +/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 -#define YYMAXUTOK 438 +#define YYMAXUTOK 440 -#define YYTRANSLATE(YYX) \ +#define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) -/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM - as returned by yylex, without out-of-bounds checking. */ +/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 189, 2, 199, 2, 188, 2, 2, - 194, 195, 186, 184, 200, 185, 198, 187, 2, 2, + 2, 2, 2, 191, 2, 201, 2, 190, 2, 2, + 196, 197, 188, 186, 202, 187, 200, 189, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 180, 2, 182, 175, 2, 2, 2, 2, 2, 2, + 182, 2, 183, 177, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 196, 2, 197, 193, 2, 2, 2, 2, 2, + 2, 198, 2, 199, 195, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, - 2, 2, 2, 201, 2, 202, 203, 2, 2, 2, + 2, 2, 2, 203, 2, 204, 205, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, @@ -733,137 +880,500 @@ static const yytype_uint8 yytranslate[] = 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, - 176, 177, 178, 179, 181, 183, 190, 191, 192 + 175, 176, 178, 179, 180, 181, 184, 185, 192, 193, + 194 }; #if YYDEBUG - /* YYRLINE[YYN] -- Source line where rule number YYN was defined. */ +/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in + YYRHS. */ +static const yytype_uint16 yyprhs[] = +{ + 0, 0, 3, 5, 8, 9, 12, 14, 16, 18, + 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, + 40, 42, 44, 46, 49, 55, 61, 69, 77, 85, + 95, 102, 109, 116, 125, 126, 129, 132, 135, 138, + 141, 143, 147, 149, 153, 154, 155, 166, 168, 172, + 173, 187, 189, 193, 194, 210, 219, 234, 235, 242, + 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, + 264, 270, 276, 284, 292, 297, 304, 311, 319, 327, + 335, 343, 353, 363, 367, 374, 381, 388, 395, 400, + 407, 417, 424, 434, 440, 449, 458, 470, 477, 487, + 493, 501, 511, 521, 533, 541, 551, 561, 562, 564, + 565, 569, 575, 576, 586, 592, 593, 603, 604, 608, + 612, 618, 619, 622, 626, 632, 636, 637, 640, 644, + 648, 652, 658, 660, 662, 666, 668, 670, 674, 676, + 678, 682, 684, 686, 690, 691, 697, 698, 701, 709, + 718, 725, 733, 738, 746, 755, 764, 772, 780, 792, + 801, 810, 819, 828, 838, 842, 847, 858, 866, 874, + 883, 892, 905, 914, 923, 931, 940, 949, 955, 967, + 973, 983, 993, 998, 1008, 1018, 1020, 1022, 1023, 1026, + 1033, 1040, 1047, 1054, 1063, 1074, 1089, 1106, 1119, 1128, + 1137, 1144, 1159, 1164, 1171, 1178, 1182, 1187, 1193, 1200, + 1206, 1210, 1214, 1219, 1225, 1230, 1236, 1240, 1246, 1254, + 1262, 1266, 1274, 1278, 1281, 1284, 1287, 1290, 1293, 1309, + 1312, 1315, 1318, 1321, 1324, 1341, 1345, 1352, 1361, 1370, + 1381, 1383, 1386, 1389, 1391, 1395, 1399, 1404, 1406, 1408, + 1414, 1426, 1440, 1441, 1449, 1450, 1464, 1465, 1481, 1482, + 1489, 1498, 1507, 1516, 1529, 1542, 1555, 1570, 1585, 1600, + 1601, 1614, 1615, 1628, 1629, 1642, 1643, 1660, 1661, 1678, + 1679, 1696, 1697, 1716, 1717, 1736, 1737, 1756, 1758, 1761, + 1767, 1775, 1785, 1788, 1791, 1794, 1798, 1801, 1805, 1808, + 1812, 1815, 1819, 1829, 1836, 1837, 1841, 1842, 1844, 1845, + 1848, 1849, 1852, 1853, 1856, 1864, 1871, 1880, 1886, 1890, + 1898, 1904, 1909, 1916, 1928, 1940, 1959, 1978, 1991, 2004, + 2017, 2028, 2039, 2050, 2061, 2072, 2077, 2082, 2087, 2092, + 2097, 2100, 2104, 2111, 2113, 2115, 2117, 2120, 2126, 2134, + 2145, 2147, 2151, 2154, 2157, 2160, 2164, 2168, 2172, 2176, + 2180, 2184, 2188, 2192, 2196, 2200, 2204, 2208, 2212, 2216, + 2222, 2227, 2232, 2237, 2242, 2247, 2252, 2257, 2262, 2267, + 2272, 2279, 2284, 2289, 2294, 2299, 2304, 2309, 2314, 2321, + 2328, 2335, 2340, 2342, 2344, 2346, 2348, 2350, 2352, 2354, + 2356, 2358, 2360, 2362, 2363, 2370, 2375, 2377, 2382, 2387, + 2392, 2397, 2402, 2407, 2412, 2415, 2421, 2427, 2433, 2439, + 2443, 2450, 2455, 2463, 2470, 2477, 2484, 2491, 2496, 2498, + 2501, 2504, 2508, 2512, 2524, 2534, 2542, 2550, 2552, 2556, + 2558, 2560, 2563, 2567, 2572, 2578, 2580, 2582, 2585, 2589, + 2593, 2599, 2604, 2607, 2610, 2613, 2616, 2620, 2624, 2628, + 2632, 2638, 2644, 2650, 2656, 2673, 2690, 2707, 2724, 2726, + 2728, 2732, 2736, 2741, 2748, 2755, 2757, 2759, 2763, 2767, + 2777, 2785, 2787, 2793, 2797, 2804, 2806, 2810, 2812, 2814, + 2818, 2825, 2827, 2832, 2834, 2836, 2838, 2843, 2850, 2855, + 2860, 2865, 2870, 2879, 2884, 2889, 2894, 2899, 2908, 2913, + 2920, 2925, 2927, 2928, 2935, 2937, 2941, 2947, 2953, 2955, + 2957 +}; + +/* YYRHS -- A `-1'-separated list of the rules' RHS. */ +static const yytype_int16 yyrhs[] = +{ + 207, 0, -1, 208, -1, 1, 6, -1, -1, 208, + 209, -1, 212, -1, 211, -1, 232, -1, 249, -1, + 250, -1, 254, -1, 255, -1, 256, -1, 257, -1, + 260, -1, 281, -1, 282, -1, 259, -1, 258, -1, + 253, -1, 284, -1, 183, -1, 183, 183, -1, 38, + 196, 298, 197, 6, -1, 39, 196, 298, 197, 6, + -1, 38, 196, 298, 197, 210, 298, 6, -1, 38, + 196, 298, 202, 294, 197, 6, -1, 39, 196, 298, + 202, 294, 197, 6, -1, 38, 196, 298, 202, 294, + 197, 210, 298, 6, -1, 4, 298, 203, 213, 204, + 6, -1, 121, 4, 198, 285, 199, 6, -1, 122, + 4, 198, 285, 199, 6, -1, 123, 4, 198, 285, + 202, 285, 199, 6, -1, -1, 213, 216, -1, 213, + 220, -1, 213, 223, -1, 213, 225, -1, 213, 226, + -1, 285, -1, 214, 202, 285, -1, 285, -1, 215, + 202, 285, -1, -1, -1, 4, 217, 196, 214, 197, + 218, 203, 215, 204, 6, -1, 298, -1, 219, 202, + 298, -1, -1, 130, 196, 285, 202, 285, 202, 285, + 197, 221, 203, 219, 204, 6, -1, 298, -1, 222, + 202, 298, -1, -1, 131, 196, 285, 202, 285, 202, + 285, 202, 285, 197, 224, 203, 222, 204, 6, -1, + 132, 203, 290, 204, 203, 290, 204, 6, -1, 132, + 203, 290, 204, 203, 290, 204, 203, 290, 204, 203, + 290, 204, 6, -1, -1, 133, 227, 203, 215, 204, + 6, -1, 7, -1, 176, -1, 175, -1, 174, -1, + 173, -1, 194, -1, 193, -1, 196, -1, 198, -1, + 197, -1, 199, -1, 70, 198, 234, 199, 6, -1, + 71, 198, 237, 199, 6, -1, 74, 230, 299, 202, + 285, 231, 6, -1, 75, 230, 303, 202, 299, 231, + 6, -1, 303, 228, 291, 6, -1, 4, 230, 231, + 228, 291, 6, -1, 302, 230, 231, 228, 291, 6, + -1, 4, 198, 285, 199, 228, 285, 6, -1, 4, + 196, 285, 197, 228, 285, 6, -1, 302, 198, 285, + 199, 228, 285, 6, -1, 302, 196, 285, 197, 228, + 285, 6, -1, 4, 230, 203, 294, 204, 231, 228, + 291, 6, -1, 302, 230, 203, 294, 204, 231, 228, + 291, 6, -1, 303, 229, 6, -1, 4, 198, 285, + 199, 229, 6, -1, 4, 196, 285, 197, 229, 6, + -1, 302, 198, 285, 199, 229, 6, -1, 302, 196, + 285, 197, 229, 6, -1, 303, 7, 299, 6, -1, + 4, 200, 4, 7, 299, 6, -1, 4, 198, 285, + 199, 200, 4, 7, 299, 6, -1, 4, 200, 4, + 228, 285, 6, -1, 4, 198, 285, 199, 200, 4, + 228, 285, 6, -1, 4, 200, 4, 229, 6, -1, + 4, 198, 285, 199, 200, 4, 229, 6, -1, 4, + 200, 140, 200, 4, 7, 295, 6, -1, 4, 198, + 285, 199, 200, 140, 200, 4, 7, 295, 6, -1, + 4, 200, 141, 7, 296, 6, -1, 4, 198, 285, + 199, 200, 141, 7, 296, 6, -1, 4, 150, 7, + 285, 6, -1, 150, 198, 285, 199, 7, 4, 6, + -1, 150, 198, 285, 199, 200, 4, 7, 285, 6, + -1, 150, 198, 285, 199, 200, 4, 7, 299, 6, + -1, 150, 198, 285, 199, 200, 4, 7, 203, 294, + 204, 6, -1, 150, 198, 285, 199, 200, 4, 6, + -1, 100, 196, 4, 197, 200, 4, 7, 285, 6, + -1, 100, 196, 4, 197, 200, 4, 7, 299, 6, + -1, -1, 202, -1, -1, 234, 233, 303, -1, 234, + 233, 303, 7, 285, -1, -1, 234, 233, 303, 7, + 203, 291, 235, 239, 204, -1, 234, 233, 303, 7, + 299, -1, -1, 234, 233, 303, 7, 203, 299, 236, + 241, 204, -1, -1, 237, 233, 298, -1, 285, 7, + 299, -1, 238, 202, 285, 7, 299, -1, -1, 239, + 240, -1, 202, 4, 291, -1, 202, 4, 203, 238, + 204, -1, 202, 4, 299, -1, -1, 241, 242, -1, + 202, 4, 285, -1, 202, 4, 299, -1, 202, 153, + 299, -1, 202, 4, 203, 301, 204, -1, 285, -1, + 299, -1, 299, 202, 285, -1, 285, -1, 299, -1, + 299, 202, 285, -1, 285, -1, 299, -1, 299, 202, + 285, -1, 285, -1, 299, -1, 299, 202, 285, -1, + -1, 143, 80, 203, 285, 204, -1, -1, 92, 288, + -1, 76, 196, 285, 197, 7, 288, 6, -1, 96, + 76, 196, 243, 197, 228, 291, 6, -1, 85, 86, + 291, 7, 285, 6, -1, 79, 196, 285, 197, 7, + 291, 6, -1, 101, 79, 291, 6, -1, 83, 196, + 285, 197, 7, 291, 6, -1, 77, 196, 285, 197, + 7, 291, 248, 6, -1, 78, 196, 285, 197, 7, + 291, 248, 6, -1, 135, 196, 285, 197, 7, 291, + 6, -1, 136, 196, 285, 197, 7, 291, 6, -1, + 137, 196, 285, 197, 7, 291, 139, 291, 138, 285, + 6, -1, 79, 4, 196, 285, 197, 7, 291, 6, + -1, 97, 79, 196, 285, 197, 7, 291, 6, -1, + 96, 79, 196, 244, 197, 228, 291, 6, -1, 92, + 82, 196, 285, 197, 7, 291, 6, -1, 93, 82, + 196, 285, 197, 7, 291, 247, 6, -1, 12, 13, + 6, -1, 13, 82, 285, 6, -1, 87, 82, 196, + 285, 197, 7, 5, 5, 5, 6, -1, 80, 196, + 285, 197, 7, 291, 6, -1, 81, 196, 285, 197, + 7, 291, 6, -1, 82, 4, 196, 285, 197, 7, + 291, 6, -1, 97, 82, 196, 285, 197, 7, 291, + 6, -1, 97, 82, 196, 285, 197, 7, 291, 4, + 203, 290, 204, 6, -1, 96, 82, 196, 245, 197, + 228, 291, 6, -1, 95, 84, 196, 285, 197, 7, + 291, 6, -1, 84, 196, 285, 197, 7, 291, 6, + -1, 97, 84, 196, 285, 197, 7, 291, 6, -1, + 96, 84, 196, 246, 197, 228, 291, 6, -1, 104, + 288, 203, 251, 204, -1, 103, 203, 288, 202, 288, + 202, 285, 204, 203, 251, 204, -1, 105, 288, 203, + 251, 204, -1, 106, 203, 288, 202, 285, 204, 203, + 251, 204, -1, 106, 203, 288, 202, 288, 204, 203, + 251, 204, -1, 4, 203, 251, 204, -1, 115, 79, + 203, 294, 204, 82, 203, 285, 204, -1, 112, 79, + 196, 285, 197, 203, 294, 204, 6, -1, 252, -1, + 250, -1, -1, 252, 249, -1, 252, 76, 203, 294, + 204, 6, -1, 252, 79, 203, 294, 204, 6, -1, + 252, 82, 203, 294, 204, 6, -1, 252, 84, 203, + 294, 204, 6, -1, 108, 92, 196, 285, 197, 7, + 291, 6, -1, 108, 76, 196, 285, 197, 7, 203, + 290, 204, 6, -1, 108, 92, 196, 285, 197, 7, + 203, 288, 202, 288, 202, 294, 204, 6, -1, 108, + 92, 196, 285, 197, 7, 203, 288, 202, 288, 202, + 288, 202, 294, 204, 6, -1, 108, 80, 196, 285, + 197, 7, 203, 288, 202, 294, 204, 6, -1, 108, + 4, 196, 285, 197, 7, 291, 6, -1, 108, 4, + 196, 285, 197, 7, 5, 6, -1, 108, 4, 203, + 285, 204, 6, -1, 108, 4, 196, 285, 197, 7, + 203, 288, 202, 288, 202, 294, 204, 6, -1, 113, + 203, 252, 204, -1, 113, 150, 198, 285, 199, 6, + -1, 113, 4, 198, 285, 199, 6, -1, 113, 303, + 6, -1, 113, 4, 4, 6, -1, 140, 295, 203, + 252, 204, -1, 102, 140, 295, 203, 252, 204, -1, + 170, 285, 203, 252, 204, -1, 154, 5, 6, -1, + 155, 5, 6, -1, 154, 203, 252, 204, -1, 102, + 154, 203, 252, 204, -1, 155, 203, 252, 204, -1, + 102, 155, 203, 252, 204, -1, 4, 299, 6, -1, + 63, 196, 301, 197, 6, -1, 4, 4, 198, 285, + 199, 298, 6, -1, 4, 4, 4, 198, 285, 199, + 6, -1, 4, 285, 6, -1, 100, 196, 4, 197, + 200, 4, 6, -1, 134, 4, 6, -1, 148, 6, + -1, 149, 6, -1, 60, 6, -1, 61, 6, -1, + 54, 6, -1, 54, 203, 285, 202, 285, 202, 285, + 202, 285, 202, 285, 202, 285, 204, 6, -1, 55, + 6, -1, 56, 6, -1, 67, 6, -1, 68, 6, + -1, 89, 6, -1, 90, 203, 294, 204, 203, 294, + 204, 203, 290, 204, 203, 285, 202, 285, 204, 6, + -1, 163, 285, 6, -1, 142, 196, 285, 8, 285, + 197, -1, 142, 196, 285, 8, 285, 8, 285, 197, + -1, 142, 4, 143, 203, 285, 8, 285, 204, -1, + 142, 4, 143, 203, 285, 8, 285, 8, 285, 204, + -1, 144, -1, 153, 4, -1, 153, 299, -1, 151, + -1, 152, 303, 6, -1, 152, 299, 6, -1, 145, + 196, 285, 197, -1, 146, -1, 147, -1, 107, 288, + 203, 252, 204, -1, 107, 203, 288, 202, 288, 202, + 285, 204, 203, 252, 204, -1, 107, 203, 288, 202, + 288, 202, 288, 202, 285, 204, 203, 252, 204, -1, + -1, 107, 288, 203, 252, 261, 274, 204, -1, -1, + 107, 203, 288, 202, 288, 202, 285, 204, 203, 252, + 262, 274, 204, -1, -1, 107, 203, 288, 202, 288, + 202, 288, 202, 285, 204, 203, 252, 263, 274, 204, + -1, -1, 107, 203, 252, 264, 274, 204, -1, 107, + 76, 203, 285, 202, 288, 204, 6, -1, 107, 79, + 203, 285, 202, 288, 204, 6, -1, 107, 82, 203, + 285, 202, 288, 204, 6, -1, 107, 76, 203, 285, + 202, 288, 202, 288, 202, 285, 204, 6, -1, 107, + 79, 203, 285, 202, 288, 202, 288, 202, 285, 204, + 6, -1, 107, 82, 203, 285, 202, 288, 202, 288, + 202, 285, 204, 6, -1, 107, 76, 203, 285, 202, + 288, 202, 288, 202, 288, 202, 285, 204, 6, -1, + 107, 79, 203, 285, 202, 288, 202, 288, 202, 288, + 202, 285, 204, 6, -1, 107, 82, 203, 285, 202, + 288, 202, 288, 202, 288, 202, 285, 204, 6, -1, + -1, 107, 76, 203, 285, 202, 288, 204, 265, 203, + 274, 204, 6, -1, -1, 107, 79, 203, 285, 202, + 288, 204, 266, 203, 274, 204, 6, -1, -1, 107, + 82, 203, 285, 202, 288, 204, 267, 203, 274, 204, + 6, -1, -1, 107, 76, 203, 285, 202, 288, 202, + 288, 202, 285, 204, 268, 203, 274, 204, 6, -1, + -1, 107, 79, 203, 285, 202, 288, 202, 288, 202, + 285, 204, 269, 203, 274, 204, 6, -1, -1, 107, + 82, 203, 285, 202, 288, 202, 288, 202, 285, 204, + 270, 203, 274, 204, 6, -1, -1, 107, 76, 203, + 285, 202, 288, 202, 288, 202, 288, 202, 285, 204, + 271, 203, 274, 204, 6, -1, -1, 107, 79, 203, + 285, 202, 288, 202, 288, 202, 288, 202, 285, 204, + 272, 203, 274, 204, 6, -1, -1, 107, 82, 203, + 285, 202, 288, 202, 288, 202, 288, 202, 285, 204, + 273, 203, 274, 204, 6, -1, 275, -1, 274, 275, + -1, 118, 203, 285, 204, 6, -1, 118, 203, 291, + 202, 291, 204, 6, -1, 118, 203, 291, 202, 291, + 202, 291, 204, 6, -1, 119, 6, -1, 110, 6, + -1, 126, 6, -1, 126, 128, 6, -1, 127, 6, + -1, 127, 128, 6, -1, 124, 6, -1, 124, 128, + 6, -1, 125, 6, -1, 125, 128, 6, -1, 120, + 196, 285, 197, 7, 291, 99, 285, 6, -1, 99, + 4, 198, 285, 199, 6, -1, -1, 99, 4, 285, + -1, -1, 4, -1, -1, 7, 291, -1, -1, 7, + 285, -1, -1, 109, 291, -1, 94, 79, 292, 7, + 285, 276, 6, -1, 94, 82, 292, 278, 277, 6, + -1, 88, 82, 203, 285, 204, 7, 291, 6, -1, + 94, 84, 292, 278, 6, -1, 129, 292, 6, -1, + 116, 82, 203, 294, 204, 285, 6, -1, 110, 82, + 292, 279, 6, -1, 110, 84, 292, 6, -1, 111, + 82, 291, 7, 285, 6, -1, 98, 79, 203, 294, + 204, 7, 203, 294, 204, 280, 6, -1, 98, 82, + 203, 294, 204, 7, 203, 294, 204, 280, 6, -1, + 98, 79, 203, 294, 204, 7, 203, 294, 204, 103, + 203, 288, 202, 288, 202, 285, 204, 6, -1, 98, + 82, 203, 294, 204, 7, 203, 294, 204, 103, 203, + 288, 202, 288, 202, 285, 204, 6, -1, 98, 79, + 203, 294, 204, 7, 203, 294, 204, 104, 288, 6, + -1, 98, 82, 203, 294, 204, 7, 203, 294, 204, + 104, 288, 6, -1, 98, 82, 285, 203, 294, 204, + 7, 285, 203, 294, 204, 6, -1, 76, 203, 294, + 204, 143, 82, 203, 285, 204, 6, -1, 79, 203, + 294, 204, 143, 82, 203, 285, 204, 6, -1, 76, + 203, 294, 204, 143, 84, 203, 285, 204, 6, -1, + 79, 203, 294, 204, 143, 84, 203, 285, 204, 6, + -1, 82, 203, 294, 204, 143, 84, 203, 285, 204, + 6, -1, 117, 82, 292, 6, -1, 117, 79, 292, + 6, -1, 91, 76, 292, 6, -1, 91, 79, 292, + 6, -1, 91, 82, 292, 6, -1, 114, 6, -1, + 114, 4, 6, -1, 114, 76, 203, 294, 204, 6, + -1, 160, -1, 161, -1, 162, -1, 283, 6, -1, + 283, 203, 291, 204, 6, -1, 283, 203, 291, 202, + 291, 204, 6, -1, 283, 196, 291, 197, 203, 291, + 202, 291, 204, 6, -1, 286, -1, 196, 285, 197, + -1, 187, 285, -1, 186, 285, -1, 191, 285, -1, + 285, 187, 285, -1, 285, 186, 285, -1, 285, 188, + 285, -1, 285, 189, 285, -1, 285, 190, 285, -1, + 285, 195, 285, -1, 285, 182, 285, -1, 285, 183, + 285, -1, 285, 185, 285, -1, 285, 184, 285, -1, + 285, 181, 285, -1, 285, 180, 285, -1, 285, 179, + 285, -1, 285, 178, 285, -1, 285, 177, 285, 8, + 285, -1, 15, 230, 285, 231, -1, 16, 230, 285, + 231, -1, 17, 230, 285, 231, -1, 18, 230, 285, + 231, -1, 19, 230, 285, 231, -1, 20, 230, 285, + 231, -1, 21, 230, 285, 231, -1, 22, 230, 285, + 231, -1, 23, 230, 285, 231, -1, 25, 230, 285, + 231, -1, 26, 230, 285, 202, 285, 231, -1, 27, + 230, 285, 231, -1, 28, 230, 285, 231, -1, 29, + 230, 285, 231, -1, 30, 230, 285, 231, -1, 31, + 230, 285, 231, -1, 32, 230, 285, 231, -1, 33, + 230, 285, 231, -1, 34, 230, 285, 202, 285, 231, + -1, 35, 230, 285, 202, 285, 231, -1, 36, 230, + 285, 202, 285, 231, -1, 24, 230, 285, 231, -1, + 3, -1, 9, -1, 14, -1, 10, -1, 11, -1, + 166, -1, 167, -1, 168, -1, 64, -1, 65, -1, + 66, -1, -1, 72, 230, 285, 287, 239, 231, -1, + 159, 230, 298, 231, -1, 303, -1, 4, 198, 285, + 199, -1, 4, 196, 285, 197, -1, 302, 198, 285, + 199, -1, 302, 196, 285, 197, -1, 164, 196, 303, + 197, -1, 165, 196, 299, 197, -1, 201, 303, 230, + 231, -1, 303, 229, -1, 4, 198, 285, 199, 229, + -1, 4, 196, 285, 197, 229, -1, 302, 198, 285, + 199, 229, -1, 302, 196, 285, 197, 229, -1, 4, + 200, 4, -1, 4, 198, 285, 199, 200, 4, -1, + 4, 200, 4, 229, -1, 4, 198, 285, 199, 200, + 4, 229, -1, 156, 196, 298, 202, 285, 197, -1, + 46, 196, 291, 202, 291, 197, -1, 47, 196, 298, + 202, 298, 197, -1, 48, 196, 298, 202, 298, 197, + -1, 53, 196, 301, 197, -1, 289, -1, 187, 288, + -1, 186, 288, -1, 288, 187, 288, -1, 288, 186, + 288, -1, 203, 285, 202, 285, 202, 285, 202, 285, + 202, 285, 204, -1, 203, 285, 202, 285, 202, 285, + 202, 285, 204, -1, 203, 285, 202, 285, 202, 285, + 204, -1, 196, 285, 202, 285, 202, 285, 197, -1, + 291, -1, 290, 202, 291, -1, 285, -1, 293, -1, + 203, 204, -1, 203, 294, 204, -1, 187, 203, 294, + 204, -1, 285, 188, 203, 294, 204, -1, 291, -1, + 5, -1, 187, 293, -1, 285, 188, 293, -1, 285, + 8, 285, -1, 285, 8, 285, 8, 285, -1, 76, + 203, 285, 204, -1, 76, 5, -1, 79, 5, -1, + 82, 5, -1, 84, 5, -1, 96, 76, 5, -1, + 96, 79, 5, -1, 96, 82, 5, -1, 96, 84, + 5, -1, 96, 76, 203, 294, 204, -1, 96, 79, + 203, 294, 204, -1, 96, 82, 203, 294, 204, -1, + 96, 84, 203, 294, 204, -1, 76, 143, 54, 203, + 285, 202, 285, 202, 285, 202, 285, 202, 285, 202, + 285, 204, -1, 79, 143, 54, 203, 285, 202, 285, + 202, 285, 202, 285, 202, 285, 202, 285, 204, -1, + 82, 143, 54, 203, 285, 202, 285, 202, 285, 202, + 285, 202, 285, 202, 285, 204, -1, 84, 143, 54, + 203, 285, 202, 285, 202, 285, 202, 285, 202, 285, + 202, 285, 204, -1, 250, -1, 260, -1, 4, 230, + 231, -1, 302, 230, 231, -1, 37, 198, 303, 199, + -1, 4, 230, 203, 294, 204, 231, -1, 302, 230, + 203, 294, 204, 231, -1, 285, -1, 293, -1, 294, + 202, 285, -1, 294, 202, 293, -1, 203, 285, 202, + 285, 202, 285, 202, 285, 204, -1, 203, 285, 202, + 285, 202, 285, 204, -1, 4, -1, 4, 200, 140, + 200, 4, -1, 203, 297, 204, -1, 4, 198, 285, + 199, 200, 141, -1, 295, -1, 297, 202, 295, -1, + 299, -1, 303, -1, 4, 200, 4, -1, 4, 198, + 285, 199, 200, 4, -1, 5, -1, 172, 198, 303, + 199, -1, 57, -1, 169, -1, 62, -1, 157, 196, + 298, 197, -1, 158, 196, 298, 202, 298, 197, -1, + 158, 196, 298, 197, -1, 42, 230, 301, 231, -1, + 43, 196, 298, 197, -1, 44, 196, 298, 197, -1, + 45, 196, 298, 202, 298, 202, 298, 197, -1, 40, + 230, 301, 231, -1, 50, 230, 298, 231, -1, 51, + 230, 298, 231, -1, 52, 230, 298, 231, -1, 49, + 230, 285, 202, 299, 202, 299, 231, -1, 41, 230, + 298, 231, -1, 41, 230, 298, 202, 294, 231, -1, + 58, 230, 298, 231, -1, 59, -1, -1, 73, 230, + 299, 300, 241, 231, -1, 298, -1, 301, 202, 298, + -1, 4, 205, 203, 285, 204, -1, 302, 205, 203, + 285, 204, -1, 4, -1, 302, -1, 171, 198, 298, + 199, -1 +}; + +/* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { - 0, 192, 192, 193, 198, 200, 204, 205, 206, 207, - 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, - 218, 219, 223, 227, 234, 239, 244, 258, 271, 284, - 312, 326, 339, 352, 371, 376, 377, 378, 379, 380, - 384, 386, 391, 393, 399, 503, 398, 521, 528, 539, - 538, 556, 563, 574, 573, 590, 607, 630, 629, 643, - 644, 645, 646, 647, 651, 652, 658, 658, 659, 659, - 665, 666, 667, 672, 678, 738, 767, 796, 801, 806, - 811, 816, 823, 830, 845, 850, 855, 860, 865, 874, - 880, 889, 907, 925, 934, 946, 951, 959, 979, 1002, - 1013, 1021, 1043, 1066, 1092, 1113, 1125, 1139, 1139, 1141, - 1143, 1152, 1162, 1161, 1179, 1189, 1188, 1202, 1204, 1212, - 1218, 1225, 1226, 1230, 1241, 1256, 1266, 1267, 1272, 1280, - 1289, 1297, 1315, 1319, 1325, 1333, 1337, 1343, 1351, 1355, - 1361, 1369, 1373, 1379, 1388, 1391, 1404, 1407, 1417, 1440, - 1472, 1495, 1513, 1534, 1552, 1582, 1612, 1630, 1648, 1675, - 1693, 1711, 1746, 1764, 1803, 1809, 1815, 1822, 1847, 1872, - 1889, 1908, 1942, 1978, 1996, 2013, 2029, 2066, 2071, 2076, - 2081, 2086, 2091, 2114, 2120, 2131, 2132, 2137, 2140, 2144, - 2167, 2190, 2213, 2241, 2262, 2288, 2309, 2331, 2351, 2463, - 2482, 2520, 2629, 2638, 2644, 2659, 2687, 2704, 2713, 2727, - 2741, 2747, 2753, 2762, 2771, 2780, 2794, 2850, 2868, 2885, - 2900, 2919, 2931, 2955, 2959, 2964, 2971, 2976, 2982, 2987, - 2993, 3001, 3005, 3009, 3014, 3069, 3082, 3099, 3116, 3138, - 3160, 3195, 3203, 3211, 3217, 3224, 3231, 3235, 3244, 3252, - 3260, 3269, 3268, 3283, 3282, 3297, 3296, 3311, 3310, 3324, - 3331, 3338, 3345, 3352, 3359, 3366, 3373, 3380, 3388, 3387, - 3401, 3400, 3414, 3413, 3427, 3426, 3440, 3439, 3453, 3452, - 3466, 3465, 3479, 3478, 3492, 3491, 3508, 3511, 3517, 3529, - 3549, 3573, 3577, 3581, 3585, 3589, 3595, 3601, 3605, 3609, - 3613, 3617, 3636, 3649, 3652, 3668, 3671, 3688, 3691, 3697, - 3700, 3707, 3710, 3717, 3773, 3843, 3848, 3915, 3951, 3959, - 4002, 4041, 4061, 4093, 4120, 4146, 4172, 4198, 4224, 4246, - 4274, 4302, 4306, 4310, 4338, 4377, 4416, 4437, 4458, 4485, - 4489, 4499, 4534, 4535, 4536, 4540, 4546, 4558, 4576, 4604, - 4605, 4606, 4607, 4608, 4609, 4610, 4611, 4612, 4619, 4620, - 4621, 4622, 4623, 4624, 4625, 4626, 4627, 4628, 4629, 4630, - 4631, 4632, 4633, 4634, 4635, 4636, 4637, 4638, 4639, 4640, - 4641, 4642, 4643, 4644, 4645, 4646, 4647, 4648, 4649, 4650, - 4651, 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4667, 4668, - 4669, 4674, 4673, 4681, 4686, 4703, 4721, 4739, 4757, 4775, - 4780, 4786, 4798, 4815, 4833, 4851, 4869, 4890, 4895, 4900, - 4910, 4920, 4925, 4936, 4945, 4950, 4977, 4981, 4985, 4989, - 4993, 5000, 5004, 5008, 5012, 5019, 5024, 5031, 5036, 5040, - 5045, 5049, 5057, 5068, 5072, 5084, 5092, 5100, 5107, 5117, - 5146, 5150, 5154, 5158, 5162, 5166, 5170, 5174, 5178, 5207, - 5236, 5265, 5294, 5307, 5320, 5333, 5346, 5356, 5366, 5378, - 5391, 5403, 5421, 5442, 5447, 5451, 5455, 5467, 5471, 5483, - 5490, 5500, 5504, 5519, 5524, 5531, 5535, 5548, 5556, 5567, - 5571, 5575, 5583, 5589, 5595, 5603, 5611, 5618, 5633, 5647, - 5661, 5673, 5689, 5698, 5707, 5717, 5728, 5732, 5751, 5758, - 5765, 5764, 5777, 5782, 5788, 5797, 5810, 5813, 5817 + 0, 196, 196, 197, 202, 204, 208, 209, 210, 211, + 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, + 222, 223, 227, 231, 238, 243, 248, 262, 275, 288, + 316, 330, 343, 356, 375, 380, 381, 382, 383, 384, + 388, 390, 395, 397, 403, 507, 402, 525, 532, 543, + 542, 560, 567, 578, 577, 594, 611, 634, 633, 647, + 648, 649, 650, 651, 655, 656, 662, 662, 663, 663, + 669, 670, 671, 676, 682, 742, 771, 800, 805, 810, + 815, 820, 827, 834, 849, 854, 859, 864, 869, 878, + 884, 893, 911, 929, 938, 950, 955, 963, 983, 1006, + 1017, 1025, 1047, 1070, 1096, 1117, 1129, 1143, 1143, 1145, + 1147, 1156, 1166, 1165, 1183, 1193, 1192, 1206, 1208, 1216, + 1222, 1229, 1230, 1234, 1245, 1260, 1270, 1271, 1276, 1284, + 1293, 1301, 1319, 1323, 1329, 1337, 1341, 1347, 1355, 1359, + 1365, 1373, 1377, 1383, 1392, 1395, 1408, 1411, 1421, 1444, + 1476, 1499, 1517, 1538, 1556, 1586, 1616, 1634, 1652, 1679, + 1697, 1715, 1750, 1768, 1807, 1813, 1819, 1826, 1851, 1876, + 1893, 1912, 1946, 1982, 2000, 2017, 2033, 2070, 2075, 2080, + 2085, 2090, 2095, 2118, 2124, 2135, 2136, 2141, 2144, 2148, + 2171, 2194, 2217, 2245, 2266, 2292, 2313, 2335, 2355, 2467, + 2486, 2524, 2633, 2642, 2648, 2663, 2691, 2708, 2717, 2731, + 2745, 2751, 2757, 2766, 2775, 2784, 2798, 2854, 2872, 2889, + 2904, 2923, 2935, 2959, 2963, 2968, 2975, 2980, 2986, 2991, + 2997, 3005, 3009, 3013, 3018, 3073, 3086, 3103, 3120, 3142, + 3164, 3199, 3207, 3215, 3221, 3228, 3235, 3255, 3262, 3274, + 3282, 3290, 3299, 3298, 3313, 3312, 3327, 3326, 3341, 3340, + 3354, 3361, 3368, 3375, 3382, 3389, 3396, 3403, 3410, 3418, + 3417, 3431, 3430, 3444, 3443, 3457, 3456, 3470, 3469, 3483, + 3482, 3496, 3495, 3509, 3508, 3522, 3521, 3538, 3541, 3547, + 3559, 3579, 3603, 3607, 3611, 3615, 3619, 3625, 3631, 3635, + 3639, 3643, 3647, 3666, 3679, 3682, 3698, 3701, 3718, 3721, + 3727, 3730, 3737, 3740, 3747, 3803, 3873, 3878, 3945, 3981, + 3989, 4032, 4071, 4091, 4123, 4150, 4176, 4202, 4228, 4254, + 4276, 4304, 4332, 4336, 4340, 4368, 4407, 4446, 4467, 4488, + 4515, 4519, 4529, 4564, 4565, 4566, 4570, 4576, 4588, 4606, + 4634, 4635, 4636, 4637, 4638, 4639, 4640, 4641, 4642, 4649, + 4650, 4651, 4652, 4653, 4654, 4655, 4656, 4657, 4658, 4659, + 4660, 4661, 4662, 4663, 4664, 4665, 4666, 4667, 4668, 4669, + 4670, 4671, 4672, 4673, 4674, 4675, 4676, 4677, 4678, 4679, + 4680, 4681, 4690, 4691, 4692, 4693, 4694, 4695, 4696, 4697, + 4698, 4699, 4700, 4705, 4704, 4712, 4717, 4734, 4752, 4770, + 4788, 4806, 4811, 4817, 4829, 4846, 4864, 4882, 4900, 4921, + 4926, 4931, 4941, 4951, 4956, 4967, 4976, 4981, 5008, 5012, + 5016, 5020, 5024, 5031, 5035, 5039, 5043, 5050, 5055, 5062, + 5067, 5071, 5076, 5080, 5088, 5099, 5103, 5115, 5123, 5131, + 5138, 5148, 5177, 5181, 5185, 5189, 5193, 5197, 5201, 5205, + 5209, 5238, 5267, 5296, 5325, 5338, 5351, 5364, 5377, 5387, + 5397, 5409, 5422, 5434, 5452, 5473, 5478, 5482, 5486, 5498, + 5502, 5514, 5521, 5531, 5535, 5550, 5555, 5562, 5566, 5579, + 5587, 5598, 5602, 5606, 5614, 5620, 5626, 5634, 5642, 5649, + 5664, 5678, 5692, 5704, 5720, 5729, 5738, 5748, 5759, 5763, + 5782, 5789, 5796, 5795, 5808, 5813, 5819, 5828, 5841, 5844, + 5848 }; #endif -#if YYDEBUG || YYERROR_VERBOSE || 0 +#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "tDOUBLE", "tSTRING", "tBIGSTR", "tEND", "tAFFECT", "tDOTS", "tPi", "tMPI_Rank", "tMPI_Size", "tEuclidian", - "tCoordinates", "tExp", "tLog", "tLog10", "tSqrt", "tSin", "tAsin", - "tCos", "tAcos", "tTan", "tRand", "tAtan", "tAtan2", "tSinh", "tCosh", - "tTanh", "tFabs", "tFloor", "tCeil", "tRound", "tFmod", "tModulo", - "tHypot", "tList", "tPrintf", "tError", "tStr", "tSprintf", "tStrCat", - "tStrPrefix", "tStrRelative", "tStrReplace", "tFind", "tStrFind", - "tStrCmp", "tStrChoice", "tUpperCase", "tLowerCase", "tLowerCaseIn", - "tTextAttributes", "tBoundingBox", "tDraw", "tSetChanged", "tToday", - "tFixRelativePath", "tCurrentDirectory", "tSyncModel", "tNewModel", - "tOnelabAction", "tOnelabRun", "tCpu", "tMemory", "tTotalMemory", - "tCreateTopology", "tCreateTopologyNoHoles", "tDistanceFunction", - "tDefineConstant", "tUndefineConstant", "tDefineNumber", "tDefineString", - "tSetNumber", "tSetString", "tPoint", "tCircle", "tEllipse", "tLine", - "tSphere", "tPolarSphere", "tSurface", "tSpline", "tVolume", - "tCharacteristic", "tLength", "tParametric", "tElliptic", "tRefineMesh", - "tAdaptMesh", "tRelocateMesh", "tPlane", "tRuled", "tTransfinite", - "tComplex", "tPhysical", "tCompound", "tPeriodic", "tUsing", "tPlugin", - "tDegenerated", "tRecursive", "tRotate", "tTranslate", "tSymmetry", - "tDilate", "tExtrude", "tLevelset", "tAffine", "tRecombine", "tSmoother", - "tSplit", "tDelete", "tCoherence", "tIntersect", "tMeshAlgorithm", - "tReverse", "tLayers", "tScaleLast", "tHole", "tAlias", - "tAliasWithOptions", "tCopyOptions", "tQuadTriAddVerts", - "tQuadTriNoNewVerts", "tQuadTriSngl", "tQuadTriDbl", "tRecombLaterals", - "tTransfQuadTri", "tText2D", "tText3D", "tInterpolationScheme", "tTime", - "tCombine", "tBSpline", "tBezier", "tNurbs", "tNurbsOrder", - "tNurbsKnots", "tColor", "tColorTable", "tFor", "tIn", "tEndFor", "tIf", - "tEndIf", "tExit", "tAbort", "tField", "tReturn", "tCall", "tMacro", - "tShow", "tHide", "tGetValue", "tGetEnv", "tGetString", "tGetNumber", - "tHomology", "tCohomology", "tBetti", "tSetOrder", "tExists", - "tFileExists", "tGMSH_MAJOR_VERSION", "tGMSH_MINOR_VERSION", - "tGMSH_PATCH_VERSION", "tGmshExecutableName", "tSetPartition", - "tNameFromString", "tStringFromName", "tAFFECTPLUS", "tAFFECTMINUS", - "tAFFECTTIMES", "tAFFECTDIVIDE", "'?'", "tOR", "tAND", "tEQUAL", - "tNOTEQUAL", "'<'", "tLESSOREQUAL", "'>'", "tGREATEROREQUAL", "'+'", - "'-'", "'*'", "'/'", "'%'", "'!'", "tPLUSPLUS", "tMINUSMINUS", - "UNARYPREC", "'^'", "'('", "')'", "'['", "']'", "'.'", "'#'", "','", + "tCoordinates", "tTestLevel", "tExp", "tLog", "tLog10", "tSqrt", "tSin", + "tAsin", "tCos", "tAcos", "tTan", "tRand", "tAtan", "tAtan2", "tSinh", + "tCosh", "tTanh", "tFabs", "tFloor", "tCeil", "tRound", "tFmod", + "tModulo", "tHypot", "tList", "tPrintf", "tError", "tStr", "tSprintf", + "tStrCat", "tStrPrefix", "tStrRelative", "tStrReplace", "tFind", + "tStrFind", "tStrCmp", "tStrChoice", "tUpperCase", "tLowerCase", + "tLowerCaseIn", "tTextAttributes", "tBoundingBox", "tDraw", + "tSetChanged", "tToday", "tFixRelativePath", "tCurrentDirectory", + "tSyncModel", "tNewModel", "tOnelabAction", "tOnelabRun", "tCpu", + "tMemory", "tTotalMemory", "tCreateTopology", "tCreateTopologyNoHoles", + "tDistanceFunction", "tDefineConstant", "tUndefineConstant", + "tDefineNumber", "tDefineString", "tSetNumber", "tSetString", "tPoint", + "tCircle", "tEllipse", "tLine", "tSphere", "tPolarSphere", "tSurface", + "tSpline", "tVolume", "tCharacteristic", "tLength", "tParametric", + "tElliptic", "tRefineMesh", "tAdaptMesh", "tRelocateMesh", "tPlane", + "tRuled", "tTransfinite", "tComplex", "tPhysical", "tCompound", + "tPeriodic", "tUsing", "tPlugin", "tDegenerated", "tRecursive", + "tRotate", "tTranslate", "tSymmetry", "tDilate", "tExtrude", "tLevelset", + "tAffine", "tRecombine", "tSmoother", "tSplit", "tDelete", "tCoherence", + "tIntersect", "tMeshAlgorithm", "tReverse", "tLayers", "tScaleLast", + "tHole", "tAlias", "tAliasWithOptions", "tCopyOptions", + "tQuadTriAddVerts", "tQuadTriNoNewVerts", "tQuadTriSngl", "tQuadTriDbl", + "tRecombLaterals", "tTransfQuadTri", "tText2D", "tText3D", + "tInterpolationScheme", "tTime", "tCombine", "tBSpline", "tBezier", + "tNurbs", "tNurbsOrder", "tNurbsKnots", "tColor", "tColorTable", "tFor", + "tIn", "tEndFor", "tIf", "tElse", "tEndIf", "tExit", "tAbort", "tField", + "tReturn", "tCall", "tMacro", "tShow", "tHide", "tGetValue", "tGetEnv", + "tGetString", "tGetNumber", "tHomology", "tCohomology", "tBetti", + "tSetOrder", "tExists", "tFileExists", "tGMSH_MAJOR_VERSION", + "tGMSH_MINOR_VERSION", "tGMSH_PATCH_VERSION", "tGmshExecutableName", + "tSetPartition", "tNameFromString", "tStringFromName", "tAFFECTDIVIDE", + "tAFFECTTIMES", "tAFFECTMINUS", "tAFFECTPLUS", "'?'", "tOR", "tAND", + "tNOTEQUAL", "tEQUAL", "'<'", "'>'", "tGREATEROREQUAL", "tLESSOREQUAL", + "'+'", "'-'", "'*'", "'/'", "'%'", "'!'", "UNARYPREC", "tMINUSMINUS", + "tPLUSPLUS", "'^'", "'('", "')'", "'['", "']'", "'.'", "'#'", "','", "'{'", "'}'", "'~'", "$accept", "All", "GeoFormatItems", "GeoFormatItem", "SendToFile", "Printf", "View", "Views", "ElementCoords", - "ElementValues", "Element", "$@1", "$@2", "Text2DValues", "Text2D", - "$@3", "Text3DValues", "Text3D", "$@4", "InterpolationMatrix", "Time", - "$@5", "NumericAffectation", "NumericIncrement", "LP", "RP", - "Affectation", "Comma", "DefineConstants", "$@6", "$@7", - "UndefineConstants", "Enumeration", "FloatParameterOptions", - "FloatParameterOption", "CharParameterOptions", "CharParameterOption", - "PhysicalId0", "PhysicalId1", "PhysicalId2", "PhysicalId3", - "InSphereCenter", "CircleOptions", "Shape", "Transform", "MultipleShape", - "ListOfShapes", "LevelSet", "Delete", "Colorify", "SetPartition", - "Visibility", "Command", "Loop", "Extrude", "$@8", "$@9", "$@10", "$@11", - "$@12", "$@13", "$@14", "$@15", "$@16", "$@17", "$@18", "$@19", "$@20", - "ExtrudeParameters", "ExtrudeParameter", "TransfiniteType", - "TransfiniteArrangement", "TransfiniteCorners", "RecombineAngle", - "PeriodicTransform", "Constraints", "Coherence", "HomologyCommand", - "Homology", "FExpr", "FExpr_Single", "$@21", "VExpr", "VExpr_Single", + "ElementValues", "Element", "@1", "@2", "Text2DValues", "Text2D", "@3", + "Text3DValues", "Text3D", "@4", "InterpolationMatrix", "Time", "@5", + "NumericAffectation", "NumericIncrement", "LP", "RP", "Affectation", + "Comma", "DefineConstants", "@6", "@7", "UndefineConstants", + "Enumeration", "FloatParameterOptions", "FloatParameterOption", + "CharParameterOptions", "CharParameterOption", "PhysicalId0", + "PhysicalId1", "PhysicalId2", "PhysicalId3", "InSphereCenter", + "CircleOptions", "Shape", "Transform", "MultipleShape", "ListOfShapes", + "LevelSet", "Delete", "Colorify", "SetPartition", "Visibility", + "Command", "Loop", "Extrude", "@8", "@9", "@10", "@11", "@12", "@13", + "@14", "@15", "@16", "@17", "@18", "@19", "@20", "ExtrudeParameters", + "ExtrudeParameter", "TransfiniteType", "TransfiniteArrangement", + "TransfiniteCorners", "RecombineAngle", "PeriodicTransform", + "Constraints", "Coherence", "HomologyCommand", "Homology", "FExpr", + "FExpr_Single", "@21", "VExpr", "VExpr_Single", "RecursiveListOfListOfDouble", "ListOfDouble", "ListOfDoubleOrAll", "FExpr_Multi", "RecursiveListOfDouble", "ColorExpr", "ListOfColor", - "RecursiveListOfColor", "StringExprVar", "StringExpr", "$@22", - "RecursiveListOfStringExprVar", "StringIndex", "String__Index", YY_NULLPTR + "RecursiveListOfColor", "StringExprVar", "StringExpr", "@22", + "RecursiveListOfStringExprVar", "StringIndex", "String__Index", 0 }; #endif # ifdef YYPRINT -/* YYTOKNUM[NUM] -- (External) token number corresponding to the - (internal) symbol number NUM (which must be that of a token). */ +/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to + token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, @@ -883,2814 +1393,2887 @@ static const yytype_uint16 yytoknum[] = 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 63, 430, 431, 432, 433, - 60, 434, 62, 435, 43, 45, 42, 47, 37, 33, - 436, 437, 438, 94, 40, 41, 91, 93, 46, 35, - 44, 123, 125, 126 + 425, 426, 427, 428, 429, 430, 431, 63, 432, 433, + 434, 435, 60, 62, 436, 437, 43, 45, 42, 47, + 37, 33, 438, 439, 440, 94, 40, 41, 91, 93, + 46, 35, 44, 123, 125, 126 }; # endif -#define YYPACT_NINF -1344 - -#define yypact_value_is_default(Yystate) \ - (!!((Yystate) == (-1344))) - -#define YYTABLE_NINF -489 - -#define yytable_value_is_error(Yytable_value) \ - 0 +/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ +static const yytype_uint16 yyr1[] = +{ + 0, 206, 207, 207, 208, 208, 209, 209, 209, 209, + 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, + 209, 209, 210, 210, 211, 211, 211, 211, 211, 211, + 212, 212, 212, 212, 213, 213, 213, 213, 213, 213, + 214, 214, 215, 215, 217, 218, 216, 219, 219, 221, + 220, 222, 222, 224, 223, 225, 225, 227, 226, 228, + 228, 228, 228, 228, 229, 229, 230, 230, 231, 231, + 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, + 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, + 232, 232, 232, 232, 232, 232, 232, 232, 232, 232, + 232, 232, 232, 232, 232, 232, 232, 233, 233, 234, + 234, 234, 235, 234, 234, 236, 234, 237, 237, 238, + 238, 239, 239, 240, 240, 240, 241, 241, 242, 242, + 242, 242, 243, 243, 243, 244, 244, 244, 245, 245, + 245, 246, 246, 246, 247, 247, 248, 248, 249, 249, + 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, + 249, 249, 249, 249, 249, 249, 249, 249, 249, 249, + 249, 249, 249, 249, 249, 249, 249, 250, 250, 250, + 250, 250, 250, 250, 250, 251, 251, 252, 252, 252, + 252, 252, 252, 253, 253, 253, 253, 253, 253, 253, + 253, 253, 254, 254, 254, 254, 254, 255, 255, 256, + 257, 257, 257, 257, 257, 257, 258, 258, 258, 258, + 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, + 258, 258, 258, 258, 258, 258, 259, 259, 259, 259, + 259, 259, 259, 259, 259, 259, 259, 259, 259, 260, + 260, 260, 261, 260, 262, 260, 263, 260, 264, 260, + 260, 260, 260, 260, 260, 260, 260, 260, 260, 265, + 260, 266, 260, 267, 260, 268, 260, 269, 260, 270, + 260, 271, 260, 272, 260, 273, 260, 274, 274, 275, + 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, + 275, 275, 275, 275, 276, 276, 277, 277, 278, 278, + 279, 279, 280, 280, 281, 281, 281, 281, 281, 281, + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, + 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, + 282, 282, 282, 283, 283, 283, 284, 284, 284, 284, + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 287, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, + 286, 286, 286, 286, 286, 286, 286, 286, 288, 288, + 288, 288, 288, 289, 289, 289, 289, 290, 290, 291, + 291, 291, 291, 291, 291, 292, 292, 293, 293, 293, + 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, + 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, + 293, 293, 293, 293, 293, 294, 294, 294, 294, 295, + 295, 295, 295, 296, 296, 297, 297, 298, 298, 298, + 298, 299, 299, 299, 299, 299, 299, 299, 299, 299, + 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, + 299, 299, 300, 299, 301, 301, 302, 302, 303, 303, + 303 +}; - /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing - STATE-NUM. */ -static const yytype_int16 yypact[] = +/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ +static const yytype_uint8 yyr2[] = { - 6580, 47, 59, 6699, -1344, -1344, 3508, 60, 70, -100, - -74, 45, 149, 153, 177, 225, 121, 319, 343, 144, - 182, -151, -151, -138, 163, 192, 32, 215, 224, 31, - 282, 288, 174, 409, 424, 554, 323, 348, 504, 514, - 277, 528, 278, 625, 253, 426, 552, -64, 458, -57, - -57, 468, 571, 28, 55, 605, 618, 8, 68, 643, - 657, 314, 720, 747, 753, 4841, 770, 569, 613, 620, - 35, 56, -1344, 627, -1344, 822, 827, 658, -1344, 1257, - 6079, 6, 39, -1344, -1344, -1344, 3709, 3709, 670, -1344, - -1344, -1344, -1344, -1344, -1344, -1344, -1344, -1344, -1344, -1344, - -1344, -1344, -1344, -1344, -1344, 51, -1344, 212, 146, -1344, - 22, -1344, -1344, -1344, -1344, -151, -151, -151, -151, -151, - -151, -151, -151, -151, -151, -151, -151, -151, -151, -151, - -151, -151, -151, -151, -151, -151, -151, -151, -151, -151, - 669, 680, 681, 686, 693, 694, -151, -151, -151, -151, - 701, -1344, -151, -1344, -1344, -1344, -1344, -1344, -151, -151, - 846, 709, 714, 715, -151, 718, 743, -1344, -1344, -1344, - -1344, 731, 3709, 3709, 3709, 3709, 3709, 122, 33, 317, - 740, -28, 825, -1344, 765, 938, 299, 97, 952, 3709, - 2081, 2081, -1344, 3709, -1344, -1344, -1344, -1344, 2081, -1344, - -1344, -1344, -1344, -1344, -1344, 6831, 33, 3709, 6442, 3709, - 3709, 769, 3709, 6442, 3709, 3709, 778, 6442, 3709, 3709, - 5227, 801, 795, -1344, 6442, 4841, 4841, 4841, 830, 831, - 4841, 4841, 4841, 838, 839, 843, 844, 853, 854, 862, - 887, 870, 3432, 973, 5227, 35, 898, 899, -57, -57, - -57, 3709, 3709, -104, -1344, -101, -57, 912, 920, 921, - 6192, -51, -102, 897, 932, 943, 4841, 4841, 5227, 944, - 12, 947, -1344, 818, 1134, 1138, -1344, 949, 951, 953, - 4841, 4841, 962, 963, 974, 255, -1344, 976, -2, 20, - 23, 24, 484, 5420, 3709, 3998, -1344, -1344, 394, -1344, - 1139, -1344, 462, 537, 1142, 3709, 3709, 3709, 977, 3709, - 981, 1032, 3709, 3709, -1344, -1344, 3709, 975, 1177, 1180, - -1344, -1344, 1181, -1344, 1184, -1344, 300, 1289, 7667, 2081, - -1344, 5227, 5227, 3709, 3709, 990, 338, 6831, -1344, -1344, - -1344, -1344, -1344, -1344, 5227, 1187, 999, 3709, 3709, 1192, - 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, - 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, - 3709, 3709, 2081, 2081, 2081, 2081, 2081, 2081, 5227, 2081, - 2081, 3709, 2081, 2081, 2081, 2081, 2081, 3709, 6831, 3709, - 2081, 2081, 2081, 2081, 33, 6831, 33, 1004, 1004, 1004, - 4549, 8889, 173, 1000, 1195, -151, 998, -1344, 1001, 6818, - 3709, -1344, -1344, 6442, 108, -1344, 3709, 3709, 3709, 3709, - 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, 3709, - 3709, -1344, -1344, 3709, 3709, -1344, -1344, 1381, 104, -182, - -1344, -1344, -86, 5608, -1344, 306, -15, 497, 1007, 1009, - 6220, 6442, 4613, -1344, 4, 9234, 9255, 3709, 9276, 72, - 9297, 9318, 3709, 264, 9339, 9360, 1197, 3709, 3709, 334, - 1204, 1205, 1207, 3709, 3709, 1211, 1215, 1215, 3709, 6255, - 6255, 6255, 6255, 3709, 3709, 3709, 6442, 6442, 7694, 1028, - 1222, 1033, -1344, -1344, -98, -1344, -1344, 5801, 5994, -57, - -57, 317, 317, -55, 3709, 3709, 3709, 6192, 6192, 3709, - 6818, 91, -1344, 3709, 3709, 3709, 3709, 3709, 1230, 1223, - 1232, 3709, 1234, 3709, 3709, 1085, -1344, -1344, 6442, 6442, - 6442, 1235, 1238, 3709, 3709, 3709, 3709, 3709, 1241, 396, - 33, -1344, 1196, 3709, -1344, 1198, -1344, 1203, -1344, 1206, - 41, 42, 43, 50, 6442, 1004, -1344, 9381, -1344, 419, - 3709, 5613, -1344, 3709, 3709, 557, -1344, 9402, 9423, 9444, - 1111, 7748, -1344, 1059, 5361, 9465, 8912, -1344, -1344, -1344, - 1419, -1344, 1522, 3709, -1344, -1344, 1066, 1069, 429, 9486, - 8935, 3709, 6442, 108, 1261, 1262, -1344, 3709, 9507, 8958, - 161, 8866, 8866, 8866, 8866, 8866, 8866, 8866, 8866, 8866, - 8866, 8866, 7774, 8866, 8866, 8866, 8866, 8866, 8866, 8866, - 7800, 7826, 7852, 116, 230, 116, 1074, 1076, 1072, 1073, - 1075, 1077, 7878, 473, 473, 473, 576, 473, 4163, -1344, - 1400, 1078, 1079, 578, 473, 1084, 1086, 1091, 194, 132, - 6831, 3709, 1276, 1298, 37, 473, -1344, -70, 36, 38, - -69, -1344, 5771, 534, -1344, 5227, 5380, 1212, 663, 1175, - 1175, 705, 705, 705, 705, 582, 582, 1004, 1004, 1004, - 1004, 17, 9528, 8981, -1344, 3709, 1299, 14, 6442, 1304, - 6442, 3709, 1306, 2081, 1310, -1344, 33, 1311, 2081, 3709, - 6831, 1315, 6442, 6442, 1182, 1318, 1319, 9549, 1320, 1186, - 1323, 1326, 9570, 1193, 1332, 1334, 3709, 9591, 6157, 1122, - -1344, -1344, -1344, 9612, 9633, 3709, 5227, 1338, 1337, 9654, - 1149, 4163, 1145, 1151, 4163, 1152, 1169, 4163, 1165, 1172, - 4163, 1170, 9675, 9696, 9717, 535, 584, 6442, 1173, -1344, - -1344, 2468, 2596, -57, 3709, 3709, -1344, -1344, 1174, 1178, - 6192, 7904, 7930, 7956, 5415, 431, -57, 2695, 9738, 6780, - 9759, 9780, 9801, 3709, 1366, -1344, 3709, 9822, -1344, 9004, - 9027, -1344, 594, 599, 603, -1344, -1344, 9050, 9073, 7982, - 9096, 537, 6442, -1344, 1188, 1183, 6827, 1185, 1201, 1202, - -1344, 6442, -1344, 6442, -1344, 6442, -1344, 6442, 606, -1344, - -1344, 5561, 6442, 1004, -1344, 6442, -1344, 1367, 1368, 1372, - 1209, 3709, 3077, 3709, 3709, -1344, 57, -1344, -1344, 3222, - -1344, 1208, 5227, 1377, 194, 194, 6855, 615, 5227, -1344, - -1344, 9119, 537, 1045, -1344, -1344, -1344, -1344, -1344, -1344, - -1344, -1344, -1344, -1344, -1344, -1344, 3709, -1344, -1344, -1344, - -1344, -1344, -1344, -1344, 3709, 3709, 3709, -1344, 6442, -1344, - -1344, -1344, -1344, 2081, 5227, 2081, 2081, 6831, -1344, -1344, - -1344, -1344, -1344, -1344, -1344, -1344, 3709, -1344, -1344, 2081, - -1344, -1344, -1344, -1344, 3709, 1398, 131, 3709, 1402, 1404, - 1520, -1344, 1408, 1220, 35, 1411, -1344, 6442, 6442, 6442, - 6442, -1344, 473, 1412, 3709, -1344, 1225, 1226, 1227, -1344, - 1415, -1344, -1344, -1344, -1344, -1344, 537, 537, 9142, -1344, - -1344, 1247, 2081, 585, -1344, 595, 8008, -1344, -1344, -1344, - 1416, -1344, -1344, 8866, 473, -57, 4613, -1344, 737, 5227, - 5227, 1423, 5227, 744, 5227, 5227, 1429, 1355, 5227, 5227, - 1648, 1436, 1437, 6442, 1438, 1442, 2307, -1344, -1344, 1444, - -1344, 1445, 108, 3709, 108, 3709, 108, 3709, 108, 3709, - 1446, 1447, 1448, 1449, 1450, 659, 1455, 4882, -1344, -1344, - 110, 8034, 8060, -1344, -1344, 6883, -94, -57, -57, -57, - 1456, 1472, 1250, 1473, 1267, 27, 63, 64, 65, -13, - -1344, 112, -1344, 431, 1474, 1478, 1479, 1480, 1481, 4163, - -1344, 1686, 1279, 1483, 1485, 1486, 1425, 3709, 1498, 1501, - 3709, -160, 667, -1344, 3709, -1344, 3709, 3709, 3709, 679, - 699, 700, 730, -1344, 3709, 733, 734, 5227, 5227, 5227, - 1458, 8086, -1344, 5747, 335, 1505, 1508, -1344, 5227, 1283, - -1344, 3709, 1510, 3709, 1511, -1344, 473, 1514, 1515, -1344, - 1518, -1344, 1517, 8866, 8866, 8866, 8866, 366, 1325, 1333, - 1335, 1336, 1329, 518, 564, 9843, 1341, 1759, -1344, 454, - 1340, 1525, 1804, -1344, -1344, -1344, 35, 3709, -1344, 748, - -1344, 757, 762, 767, 776, 108, -1344, 4163, 1339, 3709, - 3709, 5227, 1343, -1344, -1344, -1344, 1344, -1344, 1539, 18, - 1540, 3709, 2159, 1541, 1545, 9, 1369, 1370, 1482, 1482, - 5227, 1566, 1388, 1393, 1589, 1601, 5227, 1409, 1605, 1606, - -1344, 1610, 5227, 783, 5227, 5227, 1615, 1614, -1344, 5227, - 5227, 4163, 5227, 4163, 5227, 4163, 5227, 4163, 5227, 5227, - 5227, 1422, 1424, 1619, 804, -1344, 3709, 3709, 3709, 1426, - 1427, -107, -24, -21, 1428, -1344, 5227, -1344, 3709, -1344, - 1623, -1344, 1626, -1344, 1627, -1344, 1628, -1344, -1344, 6192, - 624, 5034, -1344, 1434, 1435, 5806, -1344, 6442, -1344, -1344, - -1344, 1439, 2440, -1344, -1344, 9165, 1633, 473, 8112, 8138, - 8164, 8190, -1344, -1344, -1344, -1344, 4163, -1344, 473, 1632, - 1635, 1504, -1344, 3709, 3709, 3709, -1344, 1637, 832, 1451, - 1638, 2757, -1344, 2800, -1344, 108, -1344, -1344, 272, -1344, - -1344, -1344, -1344, -1344, -1344, 2081, -1344, -1344, -1344, 6831, - 1642, -1344, -1344, 19, -1344, -1344, -1344, -1344, -1344, 6831, - 3709, 1641, 1644, 37, -1344, 1646, 9188, 35, -1344, 1647, - 1649, 1653, 1655, 5227, 3709, 8216, 8242, 787, -1344, 3709, - 1658, -1344, -1344, 2081, -1344, 8268, 4198, 4163, -1344, -1344, - -1344, -1344, 3709, 3709, -57, 1657, 1659, 1660, -1344, 3709, - 3709, -1344, -1344, 1662, 3709, -1344, -1344, 1634, 1664, 1463, - 1667, 1532, 3709, -1344, 1669, 1670, 1671, 1672, 1677, 1678, - 984, 1683, 6442, 6442, 3709, -1344, 6255, 6911, 9864, 6187, - 317, 317, -57, 1684, -57, 1685, -57, 1687, 3709, 496, - 1509, 9885, -1344, -1344, -1344, -1344, 6939, 124, -1344, 1704, - 3786, 1705, 5227, -57, 3786, 1706, 791, 3709, -1344, 1708, - 537, -1344, 3709, 3709, 3709, 3709, -1344, -1344, -1344, 5227, - 6383, 738, 9906, -1344, -1344, 4584, 5227, -1344, -1344, -1344, - 5227, -1344, 1526, 473, 4391, 4648, 6831, 1716, 2836, -1344, - 1643, 1717, -1344, 1527, -1344, -1344, -1344, -1344, -1344, 1723, - 597, 4163, 3709, 3709, 5227, 1529, 792, 4163, -1344, 1725, - 3709, -1344, -1344, 6967, 6995, 598, -1344, -1344, -1344, 7023, - 7051, -1344, 7079, 1727, -1344, 5227, -1344, 1665, 1733, 4163, - -1344, -1344, -1344, -1344, -1344, -1344, 1546, -1344, -1344, 814, - 817, 7721, 3947, 1739, 1547, -1344, 3709, -1344, 1548, 1553, - 148, -1344, 1559, 154, -1344, 1565, 232, -1344, 1568, 9211, - 1743, 5227, 1760, 1570, 3709, -1344, 5999, 347, -1344, 820, - 368, 399, -1344, 1766, 7107, -1344, 8294, 8320, 8346, 8372, - 1639, 3709, -1344, 3709, -1344, -1344, 6442, 3993, 1768, 1573, - 1771, -1344, -1344, 3998, -1344, -1344, 2081, 4163, -1344, -1344, - -1344, -1344, 35, -1344, 1645, -1344, -1344, 3709, 8398, 8424, - -1344, 5227, 3709, 1772, -1344, 8450, -1344, -1344, 1773, 1775, - 1777, 1778, 1781, 1782, 828, 1588, -1344, 5227, 181, 357, - 6442, -1344, -1344, 317, 6744, -1344, -1344, 6192, 431, 6192, - 431, 6192, 431, 1787, -1344, 829, 5227, -1344, 7135, -57, - 1788, 6442, -57, -1344, -1344, 3709, 3709, 3709, 3709, 3709, - 7163, 7191, 851, -1344, -1344, 1791, -1344, 852, 4350, 857, - 1792, -1344, 1602, 4163, 3709, 3709, 860, 4163, -1344, 3709, - 861, 864, -1344, -1344, -1344, -1344, -1344, -1344, 1608, 3709, - 867, 1611, -57, 5227, 1796, 1612, -57, 1805, 868, 1613, - 3709, -1344, 7219, 453, 759, 7247, 455, 856, 7275, 457, - 917, -1344, 5227, 1811, 1720, 5075, 1620, 463, -1344, 877, - 466, 8476, 8502, 8528, 8554, 4138, -1344, -1344, 1814, -1344, - 3709, -1344, 6831, -1344, -1344, 3709, 9927, 8580, 52, 8606, - -1344, -1344, 3709, 7303, 1834, -57, 13, -1344, -1344, -57, - 73, -1344, 1836, -1344, 7331, 1837, 3709, 1839, 1841, 3709, - 1842, 1846, 3709, 1848, 1656, -1344, 3709, -1344, 431, -1344, - 6442, 1849, 5999, 3709, 3709, 3709, 3709, -1344, -1344, 259, - -1344, 878, -1344, 3709, -1344, 5227, 3709, 8632, -1344, -1344, - 507, -1344, 517, -1344, -1344, -1344, -1344, 1674, 7359, -1344, - -1344, 1675, 7387, -1344, -1344, 1679, 7415, -1344, 1853, 4331, - 1006, 5268, 890, -1344, 520, 905, 8658, 8684, 8710, 8736, - 6831, 1875, 1681, 9948, 909, 7443, 3709, -57, -57, 431, - 1877, 431, 1879, 431, 1880, -1344, -1344, -1344, -1344, 431, - 1881, 6442, 1883, 3709, 3709, 3709, 3709, -1344, -1344, 2081, - -1344, 1692, 1910, 7471, 526, 545, 1107, -1344, 1718, 1129, - -1344, 1721, 1167, -1344, 1722, 1316, -1344, 910, -1344, 8762, - 8788, 8814, 8840, 914, -1344, 1726, 5227, -1344, 1911, 3709, - 3709, 1912, 431, 1915, 431, 1918, 431, -1344, 1920, 3709, - 3709, 3709, 3709, 2081, 1922, 2081, 918, -1344, 7499, 7527, - -1344, 1562, -1344, 1617, -1344, 1682, -1344, 7555, 7583, 7611, - 7639, -1344, -1344, 934, -1344, 1923, 1924, 1926, 1943, 1944, - 1945, -1344, -1344, -1344, -1344, 2081, 1947, -1344, -1344, -1344, - -1344, -1344, -1344, -1344, -1344 + 0, 2, 1, 2, 0, 2, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 2, 5, 5, 7, 7, 7, 9, + 6, 6, 6, 8, 0, 2, 2, 2, 2, 2, + 1, 3, 1, 3, 0, 0, 10, 1, 3, 0, + 13, 1, 3, 0, 15, 8, 14, 0, 6, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 5, 5, 7, 7, 4, 6, 6, 7, 7, 7, + 7, 9, 9, 3, 6, 6, 6, 6, 4, 6, + 9, 6, 9, 5, 8, 8, 11, 6, 9, 5, + 7, 9, 9, 11, 7, 9, 9, 0, 1, 0, + 3, 5, 0, 9, 5, 0, 9, 0, 3, 3, + 5, 0, 2, 3, 5, 3, 0, 2, 3, 3, + 3, 5, 1, 1, 3, 1, 1, 3, 1, 1, + 3, 1, 1, 3, 0, 5, 0, 2, 7, 8, + 6, 7, 4, 7, 8, 8, 7, 7, 11, 8, + 8, 8, 8, 9, 3, 4, 10, 7, 7, 8, + 8, 12, 8, 8, 7, 8, 8, 5, 11, 5, + 9, 9, 4, 9, 9, 1, 1, 0, 2, 6, + 6, 6, 6, 8, 10, 14, 16, 12, 8, 8, + 6, 14, 4, 6, 6, 3, 4, 5, 6, 5, + 3, 3, 4, 5, 4, 5, 3, 5, 7, 7, + 3, 7, 3, 2, 2, 2, 2, 2, 15, 2, + 2, 2, 2, 2, 16, 3, 6, 8, 8, 10, + 1, 2, 2, 1, 3, 3, 4, 1, 1, 5, + 11, 13, 0, 7, 0, 13, 0, 15, 0, 6, + 8, 8, 8, 12, 12, 12, 14, 14, 14, 0, + 12, 0, 12, 0, 12, 0, 16, 0, 16, 0, + 16, 0, 18, 0, 18, 0, 18, 1, 2, 5, + 7, 9, 2, 2, 2, 3, 2, 3, 2, 3, + 2, 3, 9, 6, 0, 3, 0, 1, 0, 2, + 0, 2, 0, 2, 7, 6, 8, 5, 3, 7, + 5, 4, 6, 11, 11, 18, 18, 12, 12, 12, + 10, 10, 10, 10, 10, 4, 4, 4, 4, 4, + 2, 3, 6, 1, 1, 1, 2, 5, 7, 10, + 1, 3, 2, 2, 2, 3, 3, 3, 3, 3, + 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, + 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, + 6, 4, 4, 4, 4, 4, 4, 4, 6, 6, + 6, 4, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 0, 6, 4, 1, 4, 4, 4, + 4, 4, 4, 4, 2, 5, 5, 5, 5, 3, + 6, 4, 7, 6, 6, 6, 6, 4, 1, 2, + 2, 3, 3, 11, 9, 7, 7, 1, 3, 1, + 1, 2, 3, 4, 5, 1, 1, 2, 3, 3, + 5, 4, 2, 2, 2, 2, 3, 3, 3, 3, + 5, 5, 5, 5, 16, 16, 16, 16, 1, 1, + 3, 3, 4, 6, 6, 1, 1, 3, 3, 9, + 7, 1, 5, 3, 6, 1, 3, 1, 1, 3, + 6, 1, 4, 1, 1, 1, 4, 6, 4, 4, + 4, 4, 8, 4, 4, 4, 4, 8, 4, 6, + 4, 1, 0, 6, 1, 3, 5, 5, 1, 1, + 4 }; - /* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM. - Performed when YYTABLE does not specify something else to do. Zero - means the default is an error. */ +/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state + STATE-NUM when YYTABLE doesn't specify something else to do. Zero + means the default is an error. */ static const yytype_uint16 yydefact[] = { - 0, 0, 0, 2, 3, 1, 516, 0, 0, 0, + 0, 0, 0, 2, 3, 1, 518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 240, 0, 247, 0, 0, 0, 243, 0, - 0, 0, 0, 342, 343, 344, 0, 0, 0, 5, - 7, 6, 8, 9, 10, 20, 11, 12, 13, 14, - 19, 18, 15, 16, 17, 0, 21, 517, 0, 391, - 516, 489, 392, 393, 394, 0, 0, 0, 0, 0, + 0, 0, 240, 0, 247, 248, 0, 0, 0, 243, + 0, 0, 0, 0, 343, 344, 345, 0, 0, 0, + 5, 7, 6, 8, 9, 10, 20, 11, 12, 13, + 14, 19, 18, 15, 16, 17, 0, 21, 519, 0, + 392, 518, 491, 393, 395, 396, 394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 491, 0, 509, 493, 398, 399, 400, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 395, 396, 397, - 492, 0, 0, 0, 0, 66, 67, 0, 0, 187, - 0, 0, 0, 349, 0, 485, 517, 404, 0, 0, - 0, 0, 227, 0, 229, 230, 225, 226, 0, 231, - 232, 109, 117, 66, 67, 0, 0, 0, 0, 0, + 0, 0, 0, 493, 0, 511, 495, 400, 401, 402, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 397, + 398, 399, 494, 0, 0, 0, 0, 66, 67, 0, + 0, 187, 0, 0, 0, 350, 0, 487, 519, 406, + 0, 0, 0, 0, 227, 0, 229, 230, 225, 226, + 0, 231, 232, 109, 117, 66, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 233, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 426, 0, 0, 0, 0, 0, - 187, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 516, 0, 187, 517, 0, 0, 339, 0, 0, 0, - 0, 0, 0, 0, 0, 516, 444, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 466, 467, 437, 443, - 0, 438, 517, 404, 0, 0, 0, 0, 479, 0, - 0, 0, 0, 0, 223, 224, 0, 516, 0, 0, - 241, 242, 0, 187, 0, 187, 516, 0, 0, 0, - 345, 0, 0, 66, 67, 0, 0, 59, 60, 61, - 62, 63, 64, 65, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 428, 0, 0, 0, + 0, 0, 187, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 518, 0, 187, 519, 0, 0, 340, 0, + 0, 0, 0, 0, 0, 0, 0, 518, 446, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 468, 469, + 439, 445, 0, 440, 519, 406, 0, 0, 0, 0, + 481, 0, 0, 0, 0, 0, 223, 224, 0, 518, + 0, 0, 241, 242, 0, 187, 0, 187, 518, 0, + 0, 0, 346, 0, 0, 66, 67, 0, 0, 59, + 63, 62, 61, 60, 65, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 352, 351, 353, - 0, 0, 0, 0, 0, 0, 0, 186, 0, 185, - 0, 68, 69, 0, 0, 220, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, + 352, 354, 0, 0, 0, 0, 0, 0, 0, 186, + 0, 185, 0, 68, 69, 0, 0, 220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 34, 216, 0, 0, 412, 164, 0, 516, 0, - 485, 486, 0, 0, 512, 0, 107, 107, 0, 0, - 0, 0, 473, 474, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 34, 216, 0, 0, 414, 164, 0, + 518, 0, 487, 488, 0, 0, 514, 0, 107, 107, + 0, 0, 0, 0, 475, 476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 307, 307, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 308, 308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 187, 187, 0, 428, 427, 0, 0, 0, - 0, 187, 187, 0, 0, 0, 0, 0, 0, 0, - 257, 0, 187, 0, 0, 0, 0, 0, 309, 0, - 0, 0, 0, 0, 0, 0, 205, 340, 0, 0, - 0, 0, 0, 0, 0, 0, 66, 67, 0, 0, - 0, 450, 0, 0, 451, 0, 452, 0, 453, 0, - 0, 0, 0, 0, 0, 351, 445, 0, 439, 0, - 0, 0, 317, 66, 67, 0, 222, 0, 0, 0, - 0, 0, 187, 0, 0, 0, 0, 245, 244, 210, - 0, 211, 0, 0, 235, 187, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 83, 0, 0, 0, - 417, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 187, 187, 0, 430, 429, 0, + 0, 0, 0, 187, 187, 0, 0, 0, 0, 0, + 0, 0, 258, 0, 187, 0, 0, 0, 0, 0, + 310, 0, 0, 0, 0, 0, 0, 0, 205, 341, + 0, 0, 0, 0, 0, 0, 0, 0, 66, 67, + 0, 0, 0, 452, 0, 0, 453, 0, 454, 0, + 455, 0, 0, 0, 0, 0, 0, 352, 447, 0, + 441, 0, 0, 0, 318, 66, 67, 0, 222, 0, + 0, 0, 0, 0, 187, 0, 0, 0, 0, 245, + 244, 210, 0, 211, 0, 0, 235, 187, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 83, 0, + 0, 0, 419, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 401, 510, - 0, 0, 0, 0, 0, 0, 0, 0, 350, 0, - 59, 0, 0, 0, 0, 0, 182, 0, 0, 0, - 0, 188, 0, 0, 59, 0, 0, 367, 366, 364, - 365, 360, 362, 361, 363, 355, 354, 356, 357, 358, - 359, 0, 0, 0, 165, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 403, 512, 0, 0, 0, 0, 0, 0, 0, 0, + 351, 0, 59, 0, 0, 0, 0, 0, 182, 0, + 0, 0, 0, 188, 0, 0, 59, 0, 0, 368, + 367, 366, 365, 361, 362, 364, 363, 356, 355, 357, + 358, 359, 360, 0, 0, 0, 165, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 336, 337, 338, 0, 0, 0, 0, 305, 0, 0, - 0, 132, 133, 0, 135, 136, 0, 138, 139, 0, - 141, 142, 0, 0, 0, 0, 0, 0, 0, 152, - 187, 0, 0, 0, 0, 0, 430, 429, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 251, 0, 0, - 0, 0, 0, 0, 0, 320, 0, 0, 206, 0, - 0, 202, 0, 0, 0, 335, 334, 0, 0, 0, - 0, 417, 0, 468, 0, 0, 0, 0, 0, 0, - 454, 0, 455, 0, 456, 0, 457, 0, 0, 350, - 440, 447, 0, 356, 446, 0, 469, 0, 0, 0, - 0, 0, 0, 0, 0, 246, 0, 212, 214, 0, - 518, 0, 0, 0, 0, 0, 0, 0, 0, 88, - 74, 0, 406, 405, 419, 369, 370, 371, 372, 373, - 374, 375, 376, 377, 390, 378, 0, 380, 381, 382, - 383, 384, 385, 386, 0, 0, 0, 501, 0, 506, - 497, 498, 499, 0, 0, 0, 0, 0, 502, 503, - 504, 425, 508, 121, 126, 99, 0, 494, 496, 0, - 403, 409, 410, 490, 0, 0, 0, 0, 0, 0, - 0, 93, 0, 0, 0, 0, 411, 0, 0, 0, - 0, 514, 0, 0, 0, 44, 0, 0, 0, 57, - 0, 35, 36, 37, 38, 39, 408, 407, 0, 487, - 24, 22, 0, 0, 25, 0, 0, 217, 513, 70, - 110, 71, 118, 0, 0, 0, 475, 476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 303, 308, 306, 0, - 316, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 213, 215, - 0, 0, 0, 177, 179, 0, 0, 0, 0, 0, + 0, 0, 337, 338, 339, 0, 0, 0, 0, 306, + 0, 0, 0, 132, 133, 0, 135, 136, 0, 138, + 139, 0, 141, 142, 0, 0, 0, 0, 0, 0, + 0, 152, 187, 0, 0, 0, 0, 0, 432, 431, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 252, + 0, 0, 0, 0, 0, 0, 0, 321, 0, 0, + 206, 0, 0, 202, 0, 0, 0, 336, 335, 0, + 0, 0, 0, 419, 0, 470, 0, 0, 0, 0, + 0, 0, 456, 0, 457, 0, 458, 0, 459, 0, + 0, 351, 442, 449, 0, 357, 448, 0, 471, 0, + 0, 0, 0, 0, 0, 0, 0, 246, 0, 212, + 214, 0, 520, 0, 0, 0, 0, 0, 0, 0, + 0, 88, 74, 0, 408, 407, 421, 370, 371, 372, + 373, 374, 375, 376, 377, 378, 391, 379, 0, 381, + 382, 383, 384, 385, 386, 387, 0, 0, 0, 503, + 0, 508, 499, 500, 501, 0, 0, 0, 0, 0, + 504, 505, 506, 427, 510, 121, 126, 99, 0, 496, + 498, 0, 405, 411, 412, 492, 0, 0, 0, 0, + 0, 0, 0, 93, 0, 0, 0, 0, 413, 0, + 0, 0, 0, 516, 0, 0, 0, 44, 0, 0, + 0, 57, 0, 35, 36, 37, 38, 39, 410, 409, + 0, 489, 24, 22, 0, 0, 25, 0, 0, 217, + 515, 70, 110, 71, 118, 0, 0, 0, 477, 478, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 286, 0, 248, 0, 0, 0, 0, 0, 0, 310, - 319, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 405, 0, 470, 0, 449, 0, 0, 0, 0, - 0, 0, 0, 441, 0, 0, 0, 0, 0, 0, - 0, 0, 207, 0, 0, 0, 0, 209, 0, 0, - 346, 0, 0, 0, 0, 515, 0, 0, 0, 414, - 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, - 0, 0, 0, 84, 89, 91, 0, 0, 483, 0, - 97, 0, 0, 0, 0, 0, 75, 368, 0, 0, - 0, 0, 0, 30, 416, 415, 0, 23, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 146, 146, + 0, 0, 0, 0, 0, 0, 0, 0, 304, 309, + 307, 0, 317, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 150, 0, 0, 0, 0, 0, 0, 0, 314, 0, - 0, 134, 0, 137, 0, 140, 0, 143, 0, 0, - 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 292, 0, 291, 0, 297, - 0, 299, 0, 293, 0, 295, 0, 258, 287, 0, - 0, 0, 200, 0, 0, 0, 321, 0, 204, 203, - 341, 0, 0, 31, 32, 0, 0, 0, 0, 0, - 0, 0, 458, 459, 460, 461, 448, 442, 0, 0, - 0, 0, 480, 0, 0, 0, 236, 0, 0, 0, - 0, 0, 87, 0, 86, 0, 76, 219, 418, 218, - 379, 387, 388, 389, 507, 0, 422, 423, 424, 0, - 0, 402, 122, 0, 511, 127, 421, 495, 78, 59, - 0, 0, 0, 0, 77, 0, 0, 0, 481, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 435, 0, - 0, 26, 27, 0, 28, 0, 0, 111, 114, 72, - 73, 148, 0, 0, 0, 0, 0, 0, 151, 0, - 0, 167, 168, 0, 0, 153, 174, 0, 0, 0, - 0, 144, 0, 313, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 221, 0, 0, 0, 0, - 187, 187, 0, 268, 0, 270, 0, 272, 0, 437, - 0, 0, 298, 300, 294, 296, 0, 0, 252, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 318, 0, - 418, 471, 0, 0, 0, 0, 472, 156, 157, 0, - 0, 0, 0, 100, 104, 0, 0, 347, 80, 79, - 0, 420, 0, 0, 0, 0, 0, 0, 0, 94, - 0, 0, 95, 0, 484, 189, 190, 191, 192, 0, - 0, 40, 0, 0, 0, 0, 0, 42, 488, 0, - 0, 112, 115, 0, 0, 147, 154, 155, 159, 0, - 0, 169, 0, 0, 315, 0, 162, 0, 0, 304, - 173, 149, 161, 172, 176, 160, 0, 170, 175, 0, - 0, 0, 0, 0, 0, 434, 0, 433, 0, 0, - 0, 259, 0, 0, 260, 0, 0, 261, 0, 0, - 0, 0, 0, 0, 0, 199, 0, 0, 198, 0, - 0, 0, 193, 0, 0, 33, 0, 0, 0, 0, - 0, 0, 478, 0, 238, 237, 0, 0, 0, 0, - 0, 500, 505, 0, 123, 125, 0, 128, 129, 130, - 90, 92, 0, 98, 0, 81, 45, 0, 0, 0, - 436, 0, 0, 0, 29, 0, 121, 126, 0, 0, - 0, 0, 0, 0, 0, 0, 163, 0, 311, 311, - 0, 105, 106, 187, 0, 180, 181, 0, 0, 0, - 0, 0, 0, 0, 288, 0, 0, 187, 0, 0, - 0, 0, 0, 184, 183, 0, 0, 0, 0, 0, - 0, 0, 0, 101, 102, 0, 82, 0, 473, 0, - 0, 482, 0, 41, 0, 0, 0, 43, 58, 0, - 0, 0, 329, 331, 330, 332, 333, 166, 0, 0, + 213, 215, 0, 0, 0, 177, 179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 432, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 302, 0, 0, 0, 253, 0, 0, 194, 0, - 0, 0, 0, 0, 0, 0, 477, 239, 0, 348, - 0, 124, 0, 131, 96, 0, 0, 0, 0, 0, - 113, 116, 0, 0, 0, 0, 0, 312, 322, 0, - 0, 323, 0, 178, 0, 274, 0, 0, 276, 0, - 0, 278, 0, 0, 0, 289, 0, 249, 0, 187, - 0, 0, 0, 0, 0, 0, 0, 158, 103, 0, - 119, 0, 49, 0, 55, 0, 0, 0, 145, 171, - 0, 326, 0, 327, 328, 431, 262, 0, 0, 269, - 263, 0, 0, 271, 264, 0, 0, 273, 0, 0, - 0, 255, 0, 197, 0, 0, 0, 0, 0, 0, + 0, 0, 287, 0, 249, 0, 0, 0, 0, 0, + 0, 311, 320, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 407, 0, 472, 0, 451, 0, 0, + 0, 0, 0, 0, 0, 443, 0, 0, 0, 0, + 0, 0, 0, 0, 207, 0, 0, 0, 0, 209, + 0, 0, 347, 0, 0, 0, 0, 517, 0, 0, + 0, 416, 0, 415, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 85, 0, 0, 0, 0, 84, 89, 91, 0, 0, + 485, 0, 97, 0, 0, 0, 0, 0, 75, 369, + 0, 0, 0, 0, 0, 30, 418, 417, 0, 23, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 146, 146, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 150, 0, 0, 0, 0, 0, 0, 0, + 315, 0, 0, 134, 0, 137, 0, 140, 0, 143, + 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 293, 0, 292, + 0, 298, 0, 300, 0, 294, 0, 296, 0, 259, + 288, 0, 0, 0, 200, 0, 0, 0, 322, 0, + 204, 203, 342, 0, 0, 31, 32, 0, 0, 0, + 0, 0, 0, 0, 460, 461, 462, 463, 450, 444, + 0, 0, 0, 0, 482, 0, 0, 0, 236, 0, + 0, 0, 0, 0, 87, 0, 86, 0, 76, 219, + 420, 218, 380, 388, 389, 390, 509, 0, 424, 425, + 426, 0, 0, 404, 122, 0, 513, 127, 423, 497, + 78, 59, 0, 0, 0, 0, 77, 0, 0, 0, + 483, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 437, 0, 0, 26, 27, 0, 28, 0, 0, 111, + 114, 72, 73, 148, 0, 0, 0, 0, 0, 0, + 151, 0, 0, 167, 168, 0, 0, 153, 174, 0, + 0, 0, 0, 144, 0, 314, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 221, 0, 0, + 0, 0, 187, 187, 0, 269, 0, 271, 0, 273, + 0, 439, 0, 0, 299, 301, 295, 297, 0, 0, + 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 319, 0, 420, 473, 0, 0, 0, 0, 474, 156, + 157, 0, 0, 0, 0, 100, 104, 0, 0, 348, + 80, 79, 0, 422, 0, 0, 0, 0, 0, 0, + 0, 94, 0, 0, 95, 0, 486, 189, 190, 191, + 192, 0, 0, 40, 0, 0, 0, 0, 0, 42, + 490, 0, 0, 112, 115, 0, 0, 147, 154, 155, + 159, 0, 0, 169, 0, 0, 316, 0, 162, 0, + 0, 305, 173, 149, 161, 172, 176, 160, 0, 170, + 175, 0, 0, 0, 0, 0, 0, 436, 0, 435, + 0, 0, 0, 260, 0, 0, 261, 0, 0, 262, + 0, 0, 0, 0, 0, 0, 0, 199, 0, 0, + 198, 0, 0, 0, 193, 0, 0, 33, 0, 0, + 0, 0, 0, 0, 480, 0, 238, 237, 0, 0, + 0, 0, 0, 502, 507, 0, 123, 125, 0, 128, + 129, 130, 90, 92, 0, 98, 0, 81, 45, 0, + 0, 0, 438, 0, 0, 0, 29, 0, 121, 126, + 0, 0, 0, 0, 0, 0, 0, 0, 163, 0, + 312, 312, 0, 105, 106, 187, 0, 180, 181, 0, + 0, 0, 0, 0, 0, 0, 289, 0, 0, 187, + 0, 0, 0, 0, 0, 184, 183, 0, 0, 0, + 0, 0, 0, 0, 0, 101, 102, 0, 82, 0, + 475, 0, 0, 484, 0, 41, 0, 0, 0, 43, + 58, 0, 0, 0, 330, 332, 331, 333, 334, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 280, 0, 282, 0, 284, 290, 301, 254, 250, 0, - 0, 0, 0, 0, 0, 0, 0, 120, 46, 0, - 53, 0, 0, 0, 0, 0, 0, 265, 0, 0, - 266, 0, 0, 267, 0, 0, 201, 0, 195, 0, - 0, 0, 0, 0, 47, 0, 0, 228, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 256, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 234, 0, 0, - 275, 0, 277, 0, 279, 0, 196, 0, 0, 0, - 0, 48, 50, 0, 51, 0, 0, 0, 0, 0, - 0, 462, 463, 464, 465, 0, 0, 56, 324, 325, - 281, 283, 285, 52, 54 + 0, 0, 0, 434, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 303, 0, 0, 0, 254, 0, 0, + 194, 0, 0, 0, 0, 0, 0, 0, 479, 239, + 0, 349, 0, 124, 0, 131, 96, 0, 0, 0, + 0, 0, 113, 116, 0, 0, 0, 0, 0, 313, + 323, 0, 0, 324, 0, 178, 0, 275, 0, 0, + 277, 0, 0, 279, 0, 0, 0, 290, 0, 250, + 0, 187, 0, 0, 0, 0, 0, 0, 0, 158, + 103, 0, 119, 0, 49, 0, 55, 0, 0, 0, + 145, 171, 0, 327, 0, 328, 329, 433, 263, 0, + 0, 270, 264, 0, 0, 272, 265, 0, 0, 274, + 0, 0, 0, 256, 0, 197, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 281, 0, 283, 0, 285, 291, 302, 255, + 251, 0, 0, 0, 0, 0, 0, 0, 0, 120, + 46, 0, 53, 0, 0, 0, 0, 0, 0, 266, + 0, 0, 267, 0, 0, 268, 0, 0, 201, 0, + 195, 0, 0, 0, 0, 0, 47, 0, 0, 228, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 257, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, + 0, 0, 276, 0, 278, 0, 280, 0, 196, 0, + 0, 0, 0, 48, 50, 0, 51, 0, 0, 0, + 0, 0, 0, 464, 465, 466, 467, 0, 0, 56, + 325, 326, 282, 284, 286, 52, 54 }; - /* YYPGOTO[NTERM-NUM]. */ -static const yytype_int16 yypgoto[] = +/* YYDEFGOTO[NTERM-NUM]. */ +static const yytype_int16 yydefgoto[] = { - -1344, -1344, -1344, -1344, 836, -1344, -1344, -1344, -1344, 313, - -1344, -1344, -1344, -1344, -1344, -1344, -1344, -1344, -1344, -1344, - -1344, -1344, -380, -103, 2255, -1, -1344, 1512, -1344, -1344, - -1344, -1344, -1344, 440, -1344, 441, -1344, -1344, -1344, -1344, - -1344, -1344, 847, 1972, 7, -494, -258, -1344, -1344, -1344, - -1344, -1344, -1344, -1344, 1990, -1344, -1344, -1344, -1344, -1344, - -1344, -1344, -1344, -1344, -1344, -1344, -1344, -1344, -952, -943, - -1344, -1344, 1519, -1344, 465, -1344, -1344, -1344, -1344, 1544, - -1344, -1344, 0, -1344, -1343, 2235, -109, 2444, 1942, -244, - 735, -1344, 21, 62, -1344, -368, -3, 95 + -1, 2, 3, 90, 934, 91, 92, 683, 1402, 1408, + 923, 1110, 1574, 1775, 924, 1724, 1815, 925, 1777, 926, + 927, 1114, 346, 437, 183, 416, 93, 698, 448, 1518, + 1519, 449, 1569, 1085, 1254, 1086, 1257, 732, 735, 738, + 741, 1430, 1297, 663, 298, 410, 411, 96, 97, 98, + 99, 100, 101, 102, 299, 1015, 1670, 1741, 767, 1454, + 1457, 1460, 1699, 1703, 1707, 1760, 1763, 1766, 1011, 1012, + 1149, 971, 729, 776, 1596, 104, 105, 106, 107, 300, + 185, 885, 498, 256, 1279, 301, 302, 303, 561, 312, + 907, 1101, 446, 442, 886, 447, 188, 305 }; - /* YYDEFGOTO[NTERM-NUM]. */ -static const yytype_int16 yydefgoto[] = +/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing + STATE-NUM. */ +#define YYPACT_NINF -1348 +static const yytype_int16 yypact[] = +{ + 6996, 78, 96, 7116, -1348, -1348, 3513, 77, 49, -96, + -75, 35, 144, 158, 202, 211, 61, 243, 257, 70, + 76, 190, 190, 3, 82, 106, 25, 133, 154, 17, + 198, 225, 283, 340, 383, 478, 291, 288, 413, 422, + 687, 423, 483, 694, -49, 338, 475, 1, 339, -94, + -94, 361, 456, 328, 237, 500, 506, 24, 53, 534, + 559, -34, 643, 650, 657, 4860, 684, 466, 498, 514, + 19, 51, -1348, 530, -1348, -1348, 723, 724, 538, -1348, + 5136, 5526, 34, 37, -1348, -1348, -1348, 6857, 6857, 541, + -1348, -1348, -1348, -1348, -1348, -1348, -1348, -1348, -1348, -1348, + -1348, -1348, -1348, -1348, -1348, -1348, -2, -1348, 153, 131, + -1348, 4, -1348, -1348, -1348, -1348, -1348, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 544, 552, 558, 564, 571, 589, 190, 190, + 190, 190, 602, -1348, 190, -1348, -1348, -1348, -1348, -1348, + 190, 190, 812, 624, 631, 632, 190, 642, 672, -1348, + -1348, -1348, -1348, 641, 6857, 6857, 6857, 6857, 6857, 132, + 16, 22, 673, -64, 391, -1348, 674, 876, 227, 88, + 884, 6857, 5331, 5331, -1348, 6857, -1348, -1348, -1348, -1348, + 5331, -1348, -1348, -1348, -1348, -1348, -1348, 5718, 16, 6857, + 6668, 6857, 6857, 698, 6857, 6668, 6857, 6857, 714, 6668, + 6857, 6857, 5250, 715, 729, -1348, 6668, 4860, 4860, 4860, + 719, 739, 4860, 4860, 4860, 743, 747, 750, 775, 779, + 801, 802, 806, 753, 6225, 956, 5250, 19, 771, 780, + -94, -94, -94, 6857, 6857, -83, -1348, -71, -94, 800, + 846, 849, 6284, -38, 87, 848, 883, 897, 4860, 4860, + 5250, 906, 5, 786, -1348, 868, 1066, 1095, -1348, 903, + 925, 927, 4860, 4860, 933, 934, 935, 300, -1348, 936, + 8, 20, 26, 27, 813, 5445, 6857, 4008, -1348, -1348, + 3952, -1348, 1119, -1348, 270, -40, 1130, 6857, 6857, 6857, + 938, 6857, 937, 996, 6857, 6857, -1348, -1348, 6857, 940, + 1136, 1140, -1348, -1348, 1141, -1348, 1144, -1348, 565, 827, + 7867, 5331, -1348, 5250, 5250, 6857, 6857, 949, 309, 5718, + -1348, -1348, -1348, -1348, -1348, -1348, 5250, 1148, 958, 6857, + 6857, 1156, 6857, 6857, 6857, 6857, 6857, 6857, 6857, 6857, + 6857, 6857, 6857, 6857, 6857, 6857, 6857, 6857, 6857, 6857, + 6857, 6857, 6857, 6857, 5331, 5331, 5331, 5331, 5331, 5331, + 5250, 5331, 5331, 6857, 5331, 5331, 5331, 5331, 5331, 6857, + 5718, 6857, 5331, 5331, 5331, 5331, 16, 5718, 16, 966, + 966, 966, 4565, 8985, 160, 962, 1166, 190, 973, -1348, + 974, 5879, 6857, -1348, -1348, 6668, 10, -1348, 6857, 6857, + 6857, 6857, 6857, 6857, 6857, 6857, 6857, 6857, 6857, 6857, + 6857, 6857, 6857, -1348, -1348, 6857, 6857, -1348, -1348, 1048, + -134, -114, -1348, -1348, -21, 5050, -1348, -4, 259, 265, + 975, 979, 9330, 6668, 4149, -1348, 251, 9351, 9372, 6857, + 9393, 359, 9414, 9435, 6857, 419, 9456, 9477, 1178, 6857, + 6857, 449, 1181, 1183, 1186, 6857, 6857, 1188, 1190, 1190, + 6857, 6479, 6479, 6479, 6479, 6857, 6857, 6857, 6668, 6668, + 7894, 1001, 1187, 997, -1348, -1348, -92, -1348, -1348, 5245, + 5440, -94, -94, 22, 22, 98, 6857, 6857, 6857, 6284, + 6284, 6857, 5879, 124, -1348, 6857, 6857, 6857, 6857, 6857, + 1192, 1195, 1198, 6857, 1196, 6857, 6857, 841, -1348, -1348, + 6668, 6668, 6668, 1200, 1201, 6857, 6857, 6857, 6857, 6857, + 1205, 390, 16, -1348, 1157, 6857, -1348, 1158, -1348, 1159, + -1348, 1160, 38, 39, 41, 42, 6668, 966, -1348, 9498, + -1348, 584, 6857, 5640, -1348, 6857, 6857, 398, -1348, 9519, + 9540, 9561, 1070, 5635, -1348, 1013, 4169, 9582, 9008, -1348, + -1348, -1348, 1087, -1348, 1317, 6857, -1348, -1348, 1021, 1024, + 597, 9603, 9031, 6857, 6668, 10, 1235, 1236, -1348, 6857, + 9624, 9054, 115, 8962, 8962, 8962, 8962, 8962, 8962, 8962, + 8962, 8962, 8962, 8962, 6025, 8962, 8962, 8962, 8962, 8962, + 8962, 8962, 6279, 6663, 7948, 520, 578, 520, 1050, 1051, + 1043, 1047, 1049, 1053, 7974, 613, 613, 613, 118, 613, + 4799, -1348, 1248, 1054, 1055, 252, 613, 1056, 1060, 1061, + 172, 123, 5718, 6857, 1244, 1257, 30, 613, -1348, 90, + 36, 33, 184, -1348, 6376, 658, -1348, 5250, 4352, 1420, + 1316, 661, 661, 173, 173, 173, 173, 229, 229, 966, + 966, 966, 966, 14, 9645, 9077, -1348, 6857, 1258, 9, + 6668, 1259, 6668, 6857, 1260, 5331, 1261, -1348, 16, 1263, + 5331, 6857, 5718, 1256, 6668, 6668, 1121, 1264, 1267, 9666, + 1268, 1127, 1269, 1270, 9687, 1135, 1272, 1273, 6857, 9708, + 6404, 1078, -1348, -1348, -1348, 9729, 9750, 6857, 5250, 1279, + 1280, 9771, 1090, 4799, 1086, 1093, 4799, 1100, 1106, 4799, + 1102, 1108, 4799, 1105, 9792, 9813, 9834, 667, 679, 6668, + 1097, -1348, -1348, 1481, 1610, -94, 6857, 6857, -1348, -1348, + 1104, 1107, 6284, 8000, 8026, 8052, 4855, 431, -94, 1792, + 9855, 6435, 9876, 9897, 9918, 6857, 1303, -1348, 6857, 9939, + -1348, 9100, 9123, -1348, 689, 701, 712, -1348, -1348, 9146, + 9169, 8078, 9192, -40, 6668, -1348, 1111, 1109, 6607, 1112, + 1113, 1114, -1348, 6668, -1348, 6668, -1348, 6668, -1348, 6668, + 725, -1348, -1348, 4630, 6668, 966, -1348, 6668, -1348, 1307, + 1311, 1312, 1120, 6857, 2077, 6857, 6857, -1348, 46, -1348, + -1348, 2398, -1348, 1122, 5250, 1318, 172, 172, 6753, 748, + 5250, -1348, -1348, 9215, -40, 1046, -1348, -1348, -1348, -1348, + -1348, -1348, -1348, -1348, -1348, -1348, -1348, -1348, 6857, -1348, + -1348, -1348, -1348, -1348, -1348, -1348, 6857, 6857, 6857, -1348, + 6668, -1348, -1348, -1348, -1348, 5331, 5250, 5331, 5331, 5718, + -1348, -1348, -1348, -1348, -1348, -1348, -1348, -1348, 6857, -1348, + -1348, 5331, -1348, -1348, -1348, -1348, 6857, 1320, 136, 6857, + 1321, 1322, 1289, -1348, 1324, 1134, 19, 1327, -1348, 6668, + 6668, 6668, 6668, -1348, 613, 1329, 6857, -1348, 1145, 1147, + 1142, -1348, 1331, -1348, -1348, -1348, -1348, -1348, -40, -40, + 9238, -1348, -1348, 1161, 5331, 425, -1348, 616, 8104, -1348, + -1348, -1348, 1340, -1348, -1348, 8962, 613, -94, 4149, -1348, + 781, 5250, 5250, 1341, 5250, 877, 5250, 5250, 1347, 1274, + 5250, 5250, 1475, 1352, 1353, 6668, 1354, 1355, 2105, -1348, + -1348, 1357, -1348, 1362, 10, 6857, 10, 6857, 10, 6857, + 10, 6857, 1363, 1369, 1370, 1374, 1375, 761, 1360, 2547, + -1348, -1348, 155, 8130, 8156, -1348, -1348, 6781, -105, -94, + -94, -94, 1381, 1380, 1184, 1382, 1193, 29, 32, 50, + 52, -13, -1348, 276, -1348, 431, 1384, 1386, 1398, 1399, + 1400, 4799, -1348, 1763, 1212, 1402, 1410, 1411, 1337, 6857, + 1414, 1415, 6857, -32, 764, -1348, 6857, -1348, 6857, 6857, + 6857, 765, 777, 778, 783, -1348, 6857, 787, 788, 5250, + 5250, 5250, 1418, 8182, -1348, 4818, 336, 1419, 1436, -1348, + 5250, 1237, -1348, 6857, 1438, 6857, 1439, -1348, 613, 1440, + 1441, -1348, 1451, -1348, 1450, 8962, 8962, 8962, 8962, 585, + 1240, 1262, 1265, 1266, 1255, 595, 606, 9960, 1283, 2002, + -1348, 254, 1282, 1454, 2038, -1348, -1348, -1348, 19, 6857, + -1348, 791, -1348, 792, 816, 817, 822, 10, -1348, 4799, + 1287, 6857, 6857, 5250, 1284, -1348, -1348, -1348, 1286, -1348, + 1452, 13, 1458, 6857, 3439, 1482, 1483, 66, 1288, 1305, + 1417, 1417, 5250, 1484, 1310, 1314, 1508, 1509, 5250, 1315, + 1513, 1514, -1348, 1517, 5250, 823, 5250, 5250, 1520, 1519, + -1348, 5250, 5250, 4799, 5250, 4799, 5250, 4799, 5250, 4799, + 5250, 5250, 5250, 1325, 1328, 1523, 332, -1348, 6857, 6857, + 6857, 1330, 1332, -126, -117, -113, 1334, -1348, 5250, -1348, + 6857, -1348, 1521, -1348, 1528, -1348, 1530, -1348, 1531, -1348, + -1348, 6284, 625, 5055, -1348, 1335, 1343, 5835, -1348, 6668, + -1348, -1348, -1348, 1344, 2508, -1348, -1348, 9261, 1536, 613, + 8208, 8234, 8260, 8286, -1348, -1348, -1348, -1348, 4799, -1348, + 613, 1538, 1542, 1413, -1348, 6857, 6857, 6857, -1348, 1543, + 349, 1365, 1549, 2575, -1348, 2760, -1348, 10, -1348, -1348, + 119, -1348, -1348, -1348, -1348, -1348, -1348, 5331, -1348, -1348, + -1348, 5718, 1552, -1348, -1348, 18, -1348, -1348, -1348, -1348, + -1348, 5718, 6857, 1563, 1566, 30, -1348, 1565, 9284, 19, + -1348, 1569, 1573, 1574, 1575, 5250, 6857, 8312, 8338, 826, + -1348, 6857, 1568, -1348, -1348, 5331, -1348, 8364, 4210, 4799, + -1348, -1348, -1348, -1348, 6857, 6857, -94, 1577, 1578, 1579, + -1348, 6857, 6857, -1348, -1348, 1580, 6857, -1348, -1348, 1582, + 1583, 1385, 1584, 1448, 6857, -1348, 1589, 1590, 1591, 1606, + 1607, 1608, 1027, 1613, 6668, 6668, 6857, -1348, 6479, 7111, + 9981, 5969, 22, 22, -94, 1614, -94, 1615, -94, 1618, + 6857, 256, 1423, 10002, -1348, -1348, -1348, -1348, 7139, 350, + -1348, 1620, 3791, 1621, 5250, -94, 3791, 1622, 830, 6857, + -1348, 1623, -40, -1348, 6857, 6857, 6857, 6857, -1348, -1348, + -1348, 5250, 6181, 489, 10023, -1348, -1348, 4600, 5250, -1348, + -1348, -1348, 5250, -1348, 1433, 613, 4405, 4665, 5718, 1625, + 2804, -1348, 1626, 1630, -1348, 1432, -1348, -1348, -1348, -1348, + -1348, 1631, 633, 4799, 6857, 6857, 5250, 1435, 833, 4799, + -1348, 1633, 6857, -1348, -1348, 7167, 7195, 224, -1348, -1348, + -1348, 7223, 7251, -1348, 7279, 1635, -1348, 5250, -1348, 1561, + 1636, 4799, -1348, -1348, -1348, -1348, -1348, -1348, 1442, -1348, + -1348, 834, 837, 7921, 2839, 1637, 1443, -1348, 6857, -1348, + 1444, 1445, 397, -1348, 1447, 442, -1348, 1463, 444, -1348, + 1464, 9307, 1638, 5250, 1661, 1469, 6857, -1348, 6030, 446, + -1348, 838, 453, 463, -1348, 1667, 7307, -1348, 8390, 8416, + 8442, 8468, 1537, 6857, -1348, 6857, -1348, -1348, 6668, 3123, + 1670, 1473, 1672, -1348, -1348, 4008, -1348, -1348, 5331, 4799, + -1348, -1348, -1348, -1348, 19, -1348, 1539, -1348, -1348, 6857, + 8494, 8520, -1348, 5250, 6857, 1673, -1348, 8546, -1348, -1348, + 1675, 1676, 1677, 1692, 1693, 1694, 851, 1498, -1348, 5250, + 554, 582, 6668, -1348, -1348, 22, 6220, -1348, -1348, 6284, + 431, 6284, 431, 6284, 431, 1698, -1348, 854, 5250, -1348, + 7335, -94, 1702, 6668, -94, -1348, -1348, 6857, 6857, 6857, + 6857, 6857, 7363, 7391, 857, -1348, -1348, 1703, -1348, 858, + 3575, 861, 1704, -1348, 1510, 4799, 6857, 6857, 862, 4799, + -1348, 6857, 866, 867, -1348, -1348, -1348, -1348, -1348, -1348, + 1511, 6857, 878, 1512, -94, 5250, 1710, 1515, -94, 1711, + 879, 1516, 6857, -1348, 7419, 494, 697, 7447, 496, 760, + 7475, 513, 1174, -1348, 5250, 1713, 1627, 2719, 1524, 518, + -1348, 890, 521, 8572, 8598, 8624, 8650, 3471, -1348, -1348, + 1722, -1348, 6857, -1348, 5718, -1348, -1348, 6857, 10044, 8676, + 45, 8702, -1348, -1348, 6857, 7503, 1725, -94, 69, -1348, + -1348, -94, 73, -1348, 1726, -1348, 7531, 1727, 6857, 1728, + 1729, 6857, 1730, 1731, 6857, 1733, 1540, -1348, 6857, -1348, + 431, -1348, 6668, 1735, 6030, 6857, 6857, 6857, 6857, -1348, + -1348, 3786, -1348, 905, -1348, 6857, -1348, 5250, 6857, 8728, + -1348, -1348, 526, -1348, 545, -1348, -1348, -1348, -1348, 1546, + 7559, -1348, -1348, 1548, 7587, -1348, -1348, 1550, 7615, -1348, + 1737, 3544, 1247, 3081, 909, -1348, 551, 910, 8754, 8780, + 8806, 8832, 5718, 1744, 1551, 10065, 913, 7643, 6857, -94, + -94, 431, 1746, 431, 1749, 431, 1754, -1348, -1348, -1348, + -1348, 431, 1759, 6668, 1764, 6857, 6857, 6857, 6857, -1348, + -1348, 5331, -1348, 1571, 1765, 7671, 570, 572, 1894, -1348, + 1576, 1997, -1348, 1585, 2151, -1348, 1586, 2218, -1348, 914, + -1348, 8858, 8884, 8910, 8936, 918, -1348, 1587, 5250, -1348, + 1770, 6857, 6857, 1771, 431, 1772, 431, 1774, 431, -1348, + 1775, 6857, 6857, 6857, 6857, 5331, 1776, 5331, 919, -1348, + 7699, 7727, -1348, 2431, -1348, 2470, -1348, 2758, -1348, 7755, + 7783, 7811, 7839, -1348, -1348, 922, -1348, 1777, 1781, 1787, + 1789, 1790, 1791, -1348, -1348, -1348, -1348, 5331, 1793, -1348, + -1348, -1348, -1348, -1348, -1348, -1348, -1348 +}; + +/* YYPGOTO[NTERM-NUM]. */ +static const yytype_int16 yypgoto[] = { - -1, 2, 3, 89, 932, 90, 91, 681, 1400, 1406, - 921, 1108, 1572, 1773, 922, 1722, 1813, 923, 1775, 924, - 925, 1112, 344, 435, 181, 414, 92, 696, 446, 1516, - 1517, 447, 1567, 1083, 1252, 1084, 1255, 730, 733, 736, - 739, 1428, 1295, 661, 296, 408, 409, 95, 96, 97, - 98, 99, 100, 101, 297, 1013, 1668, 1739, 765, 1452, - 1455, 1458, 1697, 1701, 1705, 1758, 1761, 1764, 1009, 1010, - 1147, 969, 727, 774, 1594, 103, 104, 105, 106, 298, - 183, 883, 496, 254, 1277, 299, 300, 301, 559, 310, - 905, 1099, 444, 440, 884, 445, 186, 303 + -1348, -1348, -1348, -1348, 677, -1348, -1348, -1348, -1348, 165, + -1348, -1348, -1348, -1348, -1348, -1348, -1348, -1348, -1348, -1348, + -1348, -1348, -380, -103, 2258, -1, -1348, 1358, -1348, -1348, + -1348, -1348, -1348, 285, -1348, 287, -1348, -1348, -1348, -1348, + -1348, -1348, 680, 1805, 7, -492, -260, -1348, -1348, -1348, + -1348, -1348, -1348, -1348, 1807, -1348, -1348, -1348, -1348, -1348, + -1348, -1348, -1348, -1348, -1348, -1348, -1348, -1348, -952, -903, + -1348, -1348, 1333, -1348, 282, -1348, -1348, -1348, -1348, 1547, + -1348, -1348, 0, -1348, -1347, 2238, -110, 2447, 1297, -246, + 550, -1348, 21, 62, -1348, -371, -3, 95 }; - /* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If - positive, shift that token. If negative, reduce the rule whose - number is the opposite. If YYTABLE_NINF, syntax error. */ +/* 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 -491 static const yytype_int16 yytable[] = { - 107, 491, 510, 541, 623, 345, 625, 758, 759, 1469, - 94, 322, 270, 687, 525, 1291, 522, 636, 688, 1691, - 930, 915, 651, 1385, 1282, 544, 346, 184, 546, 548, - 342, 343, 262, 1179, 665, 216, 211, 317, 1206, 308, - 211, 903, 216, 203, 324, 204, 800, 802, 804, 253, - 255, 192, 261, 4, 273, 806, 207, 330, 1684, 5, - 311, 1190, 302, 208, 1055, 580, 1188, 582, 185, 1181, - 1183, 1185, 275, 188, 276, 245, 273, 499, 500, 1693, - 499, 500, 1524, 499, 500, 1000, 499, 500, 246, 247, - 499, 500, 513, 1332, 190, 1333, 1001, 501, 108, 514, - 502, 187, 753, 263, 1002, 1003, 1004, 264, 1170, 689, - 1005, 1006, 1007, 1008, 690, 664, 470, 471, 472, 265, - 191, 475, 476, 477, 207, 219, 402, 249, 250, 499, - 500, 907, 910, 499, 500, 1089, 266, 251, 267, 664, - 542, 318, 321, 277, 252, 760, 916, 917, 918, 919, - 512, 189, 274, 337, 1180, 194, 271, 518, 519, 195, - 499, 500, 545, 499, 500, 547, 549, 411, 1576, 412, - 1386, 531, 532, 413, 319, 273, 1334, 88, 1335, 1336, - 650, 1337, 694, 196, 1590, 695, 407, 273, 273, 1187, - 1182, 1184, 1186, 499, 500, 273, 931, 499, 500, 543, - 931, 664, 88, 273, 703, 302, 704, 323, 523, 272, - 302, 439, 442, 838, 302, 180, 347, 302, 348, 920, - 349, 302, 302, 302, 302, 180, 212, 302, 302, 302, - 212, 197, 217, 213, 751, 752, 309, 908, 904, 909, - 325, 302, 801, 803, 805, 331, 193, 1188, 494, 495, - 312, 807, 332, 1685, 767, 1056, 503, 499, 500, 220, - 511, 403, 404, 302, 302, 302, 1720, 448, 894, 897, - 1090, 1091, 703, 405, 709, 499, 500, 302, 302, 338, - 339, 340, 341, 1591, 1592, 441, 441, 342, 343, 1593, - 302, 766, 302, 441, 499, 500, 499, 500, -486, 652, - 685, 449, 686, 338, 339, 340, 341, 180, 499, 500, - 1166, 411, 1189, 412, 822, 198, 693, 338, 339, 340, - 341, 406, 342, 343, 1464, 199, 273, 829, 302, 302, - 896, 241, 499, 500, 242, 593, 342, 343, 499, 500, - 201, 302, 1724, 1225, 338, 339, 340, 341, 1537, 200, - 586, 342, 343, 234, 1539, 230, 235, 209, 231, 236, - 232, 237, -487, 342, 343, 338, 339, 340, 341, 273, - 273, 273, 273, 273, 273, 302, 273, 273, 202, 273, - 273, 273, 273, 273, 342, 343, 210, 273, 273, 273, - 273, 273, 280, 273, 624, 281, 626, 627, 628, 594, - 630, 631, 560, 633, 634, 635, 333, 637, 334, 214, - 302, 641, 642, 643, 644, 335, 499, 500, 215, 48, - 49, 50, 51, 225, 441, 411, 226, 412, 56, 227, - 868, 59, 1541, 1796, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 302, 536, - 639, 537, 430, 538, 1061, 1063, 179, 646, 180, 1595, - 1596, 1259, 342, 343, 703, 1593, 713, 441, 441, 441, - 441, 441, 441, -488, 441, 441, 218, 441, 441, 441, - 441, 441, 219, 302, 302, 441, 441, 441, 441, 645, - 221, 647, 987, 433, 347, 434, 583, 844, 538, 756, - 757, 692, 335, 180, 560, 222, 693, 495, 407, 407, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 224, 302, 302, 302, 430, 1000, - 1226, 499, 500, 411, 703, 412, 719, 273, 793, 592, - 1001, 732, 735, 738, 741, 895, 898, 1549, 1002, 1003, - 1004, 302, 499, 500, 1005, 1006, 1007, 1008, 302, 550, - 223, 411, 551, 412, 816, 552, 703, 553, 1551, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 561, 428, 429, 499, 500, 228, 1604, 430, 1607, 302, - 1610, 411, 1150, 412, 1152, 229, 1154, 792, 1156, 1552, - 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, - 855, 233, 857, 858, 859, 860, 861, 862, 863, 703, - 243, 810, 867, 869, 870, 338, 339, 340, 341, 832, - 244, 833, 878, 879, 880, 794, 882, 499, 500, 499, - 500, 499, 500, 890, 342, 343, 257, 499, 500, 258, - 499, 500, 259, 1656, 906, 1659, 563, 1662, 564, 248, - 1098, 1188, 302, 1670, 1188, 335, 1672, 1188, 411, 256, - 412, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 561, 428, 429, 302, 268, 302, 844, 430, - 273, 499, 500, 273, 697, 273, 269, 695, 1460, 302, - 302, 499, 500, 238, 499, 500, 239, 1727, 240, 1260, - 499, 500, 899, 411, 938, 412, 1710, 1728, 1250, 942, - 1741, 278, 1000, 302, 282, 1273, 1779, 342, 343, 499, - 500, 1062, 1064, 1001, 703, 703, 912, 983, 279, 1069, - 1071, 1002, 1003, 1004, 302, 1780, 1483, 1005, 1006, 1007, - 1008, 283, 411, 990, 412, 249, 250, 284, 815, 411, - 996, 412, 944, 305, 1253, 251, 1011, 1188, 427, 428, - 429, 881, 260, 888, 304, 430, 693, 1756, 889, 1759, - 1119, 1762, 499, 500, 703, 703, 984, 1765, 441, 302, - 1120, 940, 1506, 441, 703, 703, 1025, 1507, 302, 703, - 302, 1026, 302, 703, 302, 1027, 703, 306, 1043, 302, - 1325, 1326, 302, 1188, 307, 703, 1188, 1066, 1126, 1188, - 1127, 313, 1188, 1114, 1115, 1132, 1348, 1133, 314, 302, - 1801, 415, 1803, 315, 1805, 302, 1448, 1449, 1374, 1375, - 273, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 1265, 389, 316, 1380, 430, 1000, 1188, 703, - 1188, 1163, 1188, 375, 1072, 302, 329, 703, 1001, 1207, - 273, 302, 273, 273, 376, 377, 1002, 1003, 1004, 703, - 378, 1212, 1005, 1006, 1007, 1008, 273, 379, 380, 425, - 426, 427, 428, 429, 1078, 385, 1080, 1081, 430, 703, - 703, 1213, 1214, 390, 302, 302, 302, 302, 391, 392, - 1086, 1105, 394, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 396, 1071, 273, - 703, 430, 1215, 703, 703, 1217, 1218, 395, 441, 1082, - 1484, 410, 1123, 1124, 432, 1125, 302, 302, 1267, 302, - 1268, 302, 302, 1118, 1000, 302, 302, 703, 436, 1269, - 302, 1657, 703, 457, 1270, 1001, 431, 703, 441, 1271, - 441, 441, 462, 1002, 1003, 1004, 703, 489, 1272, 1005, - 1006, 1007, 1008, 703, 441, 1309, 1261, 1404, 1436, 1405, - 1437, 703, 1512, 1473, 1513, 467, 468, 1171, 1172, 1173, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 703, 1000, 1528, 703, 430, 1529, - 1404, 335, 1550, 1394, 473, 474, 1001, 441, 1404, 1612, - 1588, 1613, 478, 479, 1002, 1003, 1004, 480, 481, 1599, - 1005, 1006, 1007, 1008, 302, 302, 302, 482, 483, 438, - 111, 703, 1630, 1628, 1631, 302, 484, 693, 1660, 1633, - 1404, 1250, 1638, 1640, 1253, 1235, 1641, 1404, 703, 1644, - 1652, 486, 1240, 1241, 1242, 1243, 1244, 703, 1512, 1671, - 1721, 485, 1251, 1254, 137, 138, 139, 140, 141, 142, - 703, 515, 1740, 146, 147, 148, 149, 7, 8, 492, - 493, 151, 152, 153, 1000, 703, 154, 1742, 302, 1404, - 703, 1751, 1788, 504, 1793, 1001, 1794, 159, 1404, 1663, - 1815, 505, 506, 1002, 1003, 1004, 516, 302, 1569, 1005, - 1006, 1007, 1008, 302, 1825, 1381, 1826, 517, 521, 302, - 526, 302, 302, 524, 527, 562, 302, 302, 566, 302, - 528, 302, 529, 302, 530, 302, 302, 302, 533, 534, - 657, 24, 25, 658, 27, 28, 659, 30, 660, 32, - 535, 33, 540, 302, 573, 570, 38, 39, 180, 41, - 42, 43, 572, 577, 1288, 46, 578, 579, 302, 1347, - 581, 591, 302, 596, 302, 597, 600, 430, 653, 179, - 162, 163, 654, 656, 716, 1000, 1361, 699, 1737, 700, - 720, 721, 170, 722, 88, 171, 1001, 1366, 725, 67, - 68, 69, 726, 748, 1002, 1003, 1004, 1000, 749, 775, - 1005, 1006, 1007, 1008, 750, 342, 343, 773, 1001, 776, - 778, 785, 273, 1070, 786, 791, 1002, 1003, 1004, 795, - 820, 797, 1005, 1006, 1007, 1008, 798, 1381, 1570, 799, - 823, 317, 111, 830, 831, 1000, 1382, 839, 840, 871, - 302, 872, 873, 874, 887, 875, 1001, 876, 886, 891, - 273, 892, 901, 302, 1002, 1003, 1004, 781, 893, 1615, - 1005, 1006, 1007, 1008, 1415, 584, 137, 138, 139, 140, - 141, 142, 902, 929, 1409, 146, 147, 148, 149, 1781, - 934, 1383, 937, 151, 152, 153, 939, 941, 154, 302, - 302, 1387, 945, 963, 948, 949, 950, 952, 953, 159, - 954, 1783, 1450, 955, 1453, 957, 1456, 407, 407, 958, - 441, 959, 968, 970, 972, 973, 974, 302, 1412, 302, - 1467, 302, 975, 1470, 1471, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 976, 977, 302, 978, 430, 1785, - 979, 986, 1020, 302, 1047, 1048, 993, 302, 441, 1049, - 994, 302, 1492, 1060, 1034, 1033, 1036, 684, 1443, 418, - 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 302, 1037, 1038, 1088, 430, 885, 1050, 1093, 1058, - 1094, 1711, 162, 163, 1000, 1096, 1097, 1100, 1106, 1109, - 1110, 1113, 302, 1122, 170, 1001, 88, 171, 1111, 1117, - 1130, 7, 8, 1002, 1003, 1004, 1136, 1488, 1137, 1005, - 1006, 1007, 1008, 1141, 1142, 1144, 1495, 1498, 1499, 1145, - 1148, 1176, 1149, 1158, 1159, 1160, 1161, 1162, 302, 1164, - 1174, 1178, 1222, 302, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 1175, 1177, - 1197, 1191, 430, 302, 1192, 1230, 1193, 1194, 1195, 1198, - 302, 1199, 1200, 273, 657, 24, 25, 658, 27, 28, - 659, 30, 660, 32, 1203, 33, 1201, 1204, 302, 1227, - 38, 39, 1228, 41, 42, 43, 1232, 1234, 1787, 46, - 1236, 1237, 1238, 1239, 302, 1245, 1095, 302, 1246, 1249, - 1247, 1248, 1263, 1274, 7, 8, 1257, 1603, 1262, 1606, - 407, 1609, 1280, 302, 1279, 1281, 1284, 1289, 302, 1617, - 182, 1290, 1620, 67, 68, 69, 416, 417, 418, 419, + 108, 493, 512, 625, 332, 627, 347, 1471, 348, 524, + 95, 760, 761, 543, 527, 932, 638, 666, 917, 1284, + 319, 218, 1387, 310, 653, 546, 408, 186, 272, 213, + 243, 548, 550, 244, 905, 1181, 667, 218, 1183, 324, + 213, 194, 326, 802, 804, 282, 806, 808, 283, 255, + 257, 1686, 263, 1057, 275, 313, 1185, 277, 1187, 278, + 501, 502, 304, 1192, 687, 582, 688, 584, 187, 501, + 502, 182, 1293, 501, 502, 1693, 1334, 275, 1335, 1695, + 1526, 501, 502, 689, 4, 1336, 1002, 1337, 690, 1338, + 190, 1339, 251, 252, 501, 502, 5, 1003, 109, 1172, + 192, 189, 253, 501, 502, 1004, 1005, 1006, 1190, 254, + 755, 1007, 1008, 1009, 1010, 501, 502, 472, 473, 474, + 503, 193, 477, 478, 479, 48, 49, 50, 51, 279, + 666, 191, 504, 413, 56, 414, 404, 59, 339, 415, + 1091, 247, 320, 323, 918, 919, 920, 921, 501, 502, + 196, 544, 276, 344, 345, 248, 249, 1182, 520, 521, + 1184, 344, 345, 547, 197, 514, 1578, 652, 1208, 549, + 551, 1388, 533, 534, 273, 321, 691, 275, 1186, 666, + 1188, 692, 1592, 340, 341, 342, 343, 89, 409, 275, + 275, 1189, 933, 694, 333, 89, 933, 275, 695, 209, + 349, 334, 350, 525, 351, 275, 210, 304, 198, 182, + 182, 545, 304, 441, 444, 840, 304, 199, 922, 304, + 219, 214, 311, 304, 304, 304, 304, 274, 215, 304, + 304, 304, 214, 906, 753, 754, 911, 325, 195, 910, + 327, 803, 805, 304, 807, 809, 1058, 314, 1687, 201, + 496, 497, 501, 502, 769, 501, 502, 200, 505, 501, + 502, 1261, 513, 202, 562, 304, 304, 304, 203, 450, + 896, 899, 405, 406, 204, 407, 1092, 1093, 211, 304, + 304, 344, 345, 515, 501, 502, 209, 443, 443, 1190, + 516, -488, 304, 909, 304, 443, 340, 341, 342, 343, + 762, 654, 212, 451, 340, 341, 342, 343, 344, 345, + 501, 502, 344, 345, 824, 883, 344, 345, -489, 268, + 695, 269, -490, 898, 344, 345, 768, 831, 275, 216, + 304, 304, 264, 340, 341, 342, 343, 595, 1327, 1328, + 1726, 501, 502, 304, 1227, 340, 341, 342, 343, 335, + 217, 336, 588, 344, 345, 1376, 1377, 1168, 337, 427, + 428, 429, 430, 431, 227, 344, 345, 228, 432, 222, + 229, 275, 275, 275, 275, 275, 275, 304, 275, 275, + 221, 275, 275, 275, 275, 275, 205, 912, 206, 275, + 275, 275, 275, 275, 220, 275, 626, 417, 628, 629, + 630, 596, 632, 633, 265, 635, 636, 637, 266, 639, + 501, 502, 304, 643, 644, 645, 646, 429, 430, 431, + 267, 221, 223, 435, 432, 436, 443, 340, 341, 342, + 343, 1798, 337, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 563, 430, 431, 344, 345, 890, + 304, 432, 641, 705, 891, 706, 1063, 1065, 696, 648, + 1462, 697, 501, 502, 699, 224, 565, 697, 566, 443, + 443, 443, 443, 443, 443, 337, 443, 443, 1191, 443, + 443, 443, 443, 443, 225, 304, 304, 443, 443, 443, + 443, 647, 989, 649, 226, 230, 538, 1485, 539, 846, + 540, 758, 759, 181, 231, 182, 413, 235, 414, 497, + 409, 409, 594, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 304, 304, 304, + 1002, 432, 259, 1228, 245, 260, 501, 502, 261, 275, + 795, 1003, 250, 734, 737, 740, 743, 897, 900, 1004, + 1005, 1006, 1466, 304, 246, 1007, 1008, 1009, 1010, 236, + 304, 705, 237, 711, 258, 238, 818, 239, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 1292, 1293, 1298, 1294, 430, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 1299, - 302, 441, 1646, 430, 1300, 1301, 1650, 657, 24, 25, - 658, 27, 28, 659, 30, 660, 32, 1302, 33, 302, - 1304, 1305, 1306, 38, 39, 1307, 41, 42, 43, 1312, - 1313, 827, 46, 1322, 1338, 1323, 1324, 1330, 1331, 1342, - 327, 328, 1343, 1344, 1345, 1352, 1353, 1360, 1367, 1423, - 1357, 1368, 1369, 1373, 1377, 1690, 1384, 1389, 1390, 1692, - 1502, 1376, 1392, 1395, 1140, 1396, 67, 68, 69, 1397, - 1000, 1398, 1408, 1416, 1425, 1417, 1418, 302, 1421, 302, - 1424, 1001, 1714, 1426, 1427, 1430, 1431, 1432, 1433, 1002, - 1003, 1004, 302, 1434, 1435, 1005, 1006, 1007, 1008, 1438, - 1451, 1454, 1196, 1457, 1680, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 1461, - 1465, 1468, 1472, 430, 1475, 1000, 397, 398, 399, 400, - 401, 1491, 1500, 1503, 828, 1504, 1001, 1754, 1755, 1505, - 1511, 1514, 1523, 437, 1002, 1003, 1004, 443, 302, 1526, - 1005, 1006, 1007, 1008, 1525, 1532, 273, 1527, 1533, 1544, - 1535, 450, 452, 455, 456, 1536, 458, 452, 460, 461, - 1538, 452, 464, 465, 1818, 1258, 1540, 1546, 452, 1542, - 1774, 1547, 1553, 302, 1564, 1565, 1559, 1566, 1578, 1582, - 1000, 1583, 1747, 1584, 1585, 1571, 488, 1586, 1587, 1589, - 273, 1001, 273, 1611, 1618, 497, 498, 1629, 1634, 1002, - 1003, 1004, 1648, 1635, 498, 1005, 1006, 1007, 1008, 1642, - 1264, 1651, 1645, 1649, 1811, 1653, 1814, 1665, 1666, 1819, - 1678, 1669, 273, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 555, 557, 452, - 1689, 430, 1694, 1696, 441, 1699, 1833, 1700, 1703, 567, - 568, 569, 1704, 571, 1707, 1713, 574, 575, 1708, 1735, - 576, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 1729, 1731, 589, 590, 430, - 1733, 1748, 1749, 1757, 1820, 1760, 1763, 1766, 441, 1768, - 441, 598, 599, 1776, 601, 602, 603, 604, 605, 606, - 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, - 617, 618, 619, 620, 621, 622, 1777, 1797, 1800, 1782, - 441, 1802, 1784, 1786, 1804, 632, 1806, 1795, 1812, 1827, - 1828, 638, 1829, 640, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 1681, 1830, - 1831, 1832, 430, 1834, 662, 1283, 1580, 452, 1581, 698, - 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, - 676, 677, 678, 679, 680, 93, 1296, 682, 683, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 102, 1597, 555, 728, 430, 1391, 0, - 0, 707, 0, 0, 0, 0, 712, 0, 0, 0, - 0, 717, 718, 0, 0, 0, 0, 723, 724, 0, - 0, 0, 729, 731, 734, 737, 740, 742, 743, 744, - 452, 452, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 761, 762, - 763, 397, 398, 764, 0, 0, 0, 768, 769, 770, - 771, 772, 0, 0, 0, 777, 0, 779, 780, 0, - 0, 0, 452, 452, 452, 0, 0, 787, 788, 789, - 598, 790, 0, 0, 0, 438, 111, 796, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 452, 0, - 0, 0, 0, 0, 811, 813, 0, 682, 683, 0, + 430, 431, 270, 501, 502, 271, 432, 413, 1606, 414, + 1609, 304, 1612, 794, 1152, 413, 1154, 414, 1156, 1539, + 1158, 817, 847, 848, 849, 850, 851, 852, 853, 854, + 855, 856, 857, 280, 859, 860, 861, 862, 863, 864, + 865, 705, 1121, 715, 869, 871, 872, 705, 501, 502, + 501, 502, 501, 502, 880, 881, 882, 796, 884, 501, + 502, 281, 251, 252, 1541, 892, 1543, 284, 1551, 501, + 502, 705, 253, 721, 285, 1553, 908, 1593, 1594, 262, + 1100, 286, 307, 1595, 304, 1554, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 501, 502, 501, 502, 432, 1597, 1598, 304, 306, 304, + 846, 1595, 275, 1486, 308, 275, 1658, 275, 1661, 501, + 502, 304, 304, 1190, 501, 502, 1190, 501, 502, 1190, + 309, 1262, 501, 502, 901, 1664, 940, 413, 1712, 414, + 1672, 944, 695, 1674, 1002, 304, 315, 1275, 1729, 316, + 317, 501, 502, 1064, 1066, 1003, 318, 501, 502, 331, + 377, 1071, 1073, 1004, 1005, 1006, 304, 1730, 378, 1007, + 1008, 1009, 1010, 1743, 379, 992, 501, 502, 501, 502, + 380, 349, 998, 585, 946, 540, 232, 381, 1013, 233, + 182, 234, 1781, 240, 1782, 413, 241, 414, 242, 1758, + 870, 1761, 413, 1764, 414, 382, 705, 705, 812, 1767, + 443, 304, 413, 942, 414, 443, 1002, 1252, 387, 834, + 304, 835, 304, 413, 304, 414, 304, 1003, 1255, 1190, + 413, 304, 414, 1122, 304, 1004, 1005, 1006, 705, 391, + 392, 1007, 1008, 1009, 1010, 1116, 1117, 393, 394, 1350, + 1508, 304, 1803, 586, 1805, 1509, 1807, 304, 396, 398, + 1450, 1451, 275, 423, 424, 425, 426, 427, 428, 429, + 430, 431, 1267, 7, 8, 1190, 432, 1382, 1190, 1002, + 705, 1190, 914, 1128, 1190, 1129, 1074, 304, 397, 705, + 1003, 985, 275, 304, 275, 275, 412, 433, 1004, 1005, + 1006, 705, 434, 986, 1007, 1008, 1009, 1010, 275, 552, + 438, 705, 553, 1027, 459, 554, 1080, 555, 1082, 1083, + 1190, 1659, 1190, 705, 1190, 1028, 304, 304, 304, 304, + 464, 469, 1088, 1107, 705, 475, 1029, 659, 24, 25, + 660, 27, 28, 661, 30, 662, 32, 705, 33, 1045, + 1073, 275, 470, 38, 39, 476, 41, 42, 43, 480, + 443, 1084, 46, 481, 1125, 1126, 482, 1127, 304, 304, + 705, 304, 1068, 304, 304, 1120, 488, 304, 304, 1134, + 491, 1135, 304, 705, 1662, 1165, 705, 705, 1209, 1214, + 443, 483, 443, 443, 494, 484, 67, 68, 69, 705, + 705, 1215, 1216, 495, 526, 705, 443, 1217, 1263, 705, + 705, 1219, 1220, 1269, 705, 1270, 1271, 485, 486, 1173, + 1174, 1175, 487, 506, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 705, 705, + 1272, 1273, 432, 1396, 705, 705, 1274, 1311, 1406, 443, + 1407, 1438, 705, 1439, 1475, 1514, 705, 1515, 1530, 705, + 1406, 1531, 1552, 1601, 517, 783, 304, 304, 304, 507, + 440, 112, 508, 1406, 686, 1590, 1614, 304, 1615, 705, + 1632, 1630, 1633, 695, 1406, 1635, 1640, 1237, 1252, 1255, + 1642, 1643, 528, 337, 1242, 1243, 1244, 1245, 1246, 518, + 1406, 705, 1646, 1654, 1253, 1256, 139, 140, 141, 142, + 143, 144, 705, 519, 1673, 148, 149, 150, 151, 7, + 8, 529, 523, 153, 154, 155, 530, 1514, 156, 1723, + 304, 705, 705, 1742, 1744, 1406, 705, 1753, 1790, 161, + 1795, 1406, 1796, 1817, 1827, 564, 1828, 1571, 531, 304, + 532, 535, 536, 537, 542, 304, 568, 1383, 572, 575, + 574, 304, 579, 304, 304, 182, 580, 581, 304, 304, + 583, 304, 593, 304, 598, 304, 599, 304, 304, 304, + 602, 432, 655, 659, 24, 25, 660, 27, 28, 661, + 30, 662, 32, 656, 33, 304, 181, 701, 658, 38, + 39, 702, 41, 42, 43, 718, 1290, 722, 46, 723, + 304, 1349, 724, 751, 304, 727, 304, 728, 750, 775, + 752, 777, 780, 164, 165, 778, 787, 788, 1363, 793, + 822, 797, 799, 800, 801, 172, 825, 89, 173, 1368, + 832, 833, 67, 68, 69, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 344, + 345, 841, 842, 432, 275, 875, 1072, 873, 874, 876, + 903, 877, 889, 893, 887, 878, 888, 894, 1572, 1383, + 895, 904, 931, 947, 950, 936, 939, 941, 1384, 943, + 955, 951, 304, 1002, 952, 954, 956, 957, 959, 960, + 961, 965, 275, 970, 1003, 304, 972, 974, 975, 1617, + 976, 829, 1004, 1005, 1006, 1097, 1417, 988, 1007, 1008, + 1009, 1010, 977, 978, 979, 980, 1411, 981, 995, 1022, + 1035, 996, 1036, 1385, 1049, 1038, 1039, 1040, 1050, 1051, + 1052, 304, 304, 1389, 1062, 1060, 1090, 1095, 1096, 7, + 8, 1098, 1099, 1102, 1452, 1108, 1455, 1115, 1458, 409, + 409, 1111, 443, 1112, 1119, 1113, 1002, 1124, 1132, 304, + 1414, 304, 1469, 304, 1138, 1472, 1473, 1003, 1139, 1143, + 1144, 1146, 1147, 1150, 1166, 1004, 1005, 1006, 304, 1151, + 1160, 1007, 1008, 1009, 1010, 304, 1161, 1162, 1665, 304, + 443, 1163, 1164, 304, 1494, 1176, 1177, 1178, 1179, 1180, + 1445, 1193, 1194, 659, 24, 25, 660, 27, 28, 661, + 30, 662, 32, 304, 33, 1195, 1196, 1197, 1200, 38, + 39, 1713, 41, 42, 43, 1199, 1201, 1202, 46, 1203, + 1205, 1206, 1224, 1229, 304, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 1490, + 1230, 1232, 1247, 432, 1234, 1236, 1238, 1239, 1497, 1500, + 1501, 1739, 67, 68, 69, 1240, 1241, 1251, 1283, 1248, + 304, 1265, 1249, 1250, 1286, 304, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 1259, 1142, 1264, 1276, 432, 304, 1282, 1281, 1291, 1292, + 1300, 1294, 304, 7, 8, 275, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 456, 1295, 1296, + 304, 432, 461, 1301, 1303, 1304, 465, 1302, 1306, 1307, + 1308, 830, 1309, 471, 1314, 1315, 304, 1344, 1324, 304, + 1326, 1325, 1340, 1332, 1345, 1333, 1346, 1347, 1354, 1605, + 1362, 1608, 409, 1611, 1369, 304, 1355, 1359, 1370, 1375, + 304, 1619, 1371, 184, 1622, 1379, 1386, 659, 24, 25, + 660, 27, 28, 661, 30, 662, 32, 1378, 33, 1391, + 1392, 1394, 1410, 38, 39, 1397, 41, 42, 43, 1398, + 1399, 1400, 46, 1418, 1419, 1420, 1423, 1425, 1427, 1426, + 1428, 1429, 304, 443, 1648, 1432, 1433, 1434, 1652, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 304, 1435, 1436, 1437, 432, 67, 68, 69, 1440, + 1453, 1456, 7, 8, 1459, 1463, 1467, 1470, 1474, 1477, + 1493, 1502, 1506, 1504, 329, 330, 1505, 1507, 1513, 1516, + 1525, 1527, 1528, 1534, 1546, 1529, 1535, 1692, 1537, 1538, + 1540, 1694, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 1542, 1544, 1548, 304, + 432, 304, 1549, 1555, 1716, 1561, 1566, 1567, 1568, 1580, + 1573, 1584, 1585, 1586, 304, 990, 659, 24, 25, 660, + 27, 28, 661, 30, 662, 32, 1682, 33, 1587, 1588, + 1589, 1591, 38, 39, 1613, 41, 42, 43, 1620, 1631, + 1636, 46, 665, 1637, 1644, 1647, 1650, 1653, 1651, 1667, + 1655, 399, 400, 401, 402, 403, 1668, 1671, 1680, 1756, + 1757, 1691, 1696, 1698, 1701, 1702, 1705, 1706, 439, 1709, + 304, 1715, 445, 1737, 1710, 67, 68, 69, 275, 1731, + 1750, 1733, 1759, 1735, 1751, 1762, 452, 454, 457, 458, + 1765, 460, 454, 462, 463, 1768, 454, 466, 467, 1198, + 1770, 1779, 1776, 454, 1778, 304, 1799, 1802, 1804, 1784, + 1806, 1808, 1814, 1829, 1749, 747, 748, 1830, 1786, 1788, + 1797, 490, 275, 1831, 275, 1832, 1833, 1834, 1285, 1836, + 499, 500, 1683, 1582, 7, 8, 1583, 700, 94, 500, + 103, 1298, 730, 1599, 991, 1393, 1813, 0, 1816, 0, + 0, 0, 0, 0, 275, 0, 0, 784, 785, 786, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 137, 138, 139, 140, 141, 142, 0, 790, 0, 146, - 147, 148, 149, 0, 0, 836, 452, 151, 152, 153, - 0, 841, 154, 0, 0, 0, 0, 0, 0, 0, - 454, 0, 0, 159, 0, 459, 0, 0, 0, 463, - 0, 0, 109, 326, 111, 0, 469, 0, 112, 113, - 114, 0, 0, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, - 132, 133, 134, 135, 136, 900, 0, 0, 137, 138, - 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, - 149, 150, 0, 0, 0, 151, 152, 153, 0, 0, - 154, 0, 155, 156, 157, 0, 0, 0, 0, 928, - 158, 159, 452, 0, 452, 936, 162, 163, 0, 0, - 0, 0, 0, 943, 0, 0, 813, 946, 170, 0, - 88, 171, 0, 0, 0, 0, 0, 0, 0, 0, - 960, 0, 0, 0, 0, 0, 0, 0, 0, 966, - 0, 0, 0, 0, 0, 0, 205, 206, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 452, 0, 0, 0, 0, 0, 0, 991, 992, - 0, 0, 0, 0, 995, 0, 0, 0, 0, 0, - 0, 0, 0, 161, 162, 163, 164, 1019, 0, 0, - 1021, 165, 166, 167, 168, 169, 170, 0, 88, 171, - 0, 0, 0, 0, 0, 0, 452, 0, 0, 0, - 0, 0, 0, 172, 173, 452, 0, 452, 174, 452, - 0, 452, 0, 294, 0, 663, 452, 0, 178, 452, - 1286, 0, 336, 0, 0, 1051, 0, 1053, 1054, 0, - 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, - 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, - 370, 371, 372, 373, 374, 0, 0, 0, 0, 0, - 1073, 381, 382, 383, 384, 1146, 0, 386, 1074, 1075, - 1076, 0, 452, 387, 388, 0, 0, 0, 0, 393, - 0, 0, 0, 0, 0, 0, 0, 0, 745, 746, - 1085, 0, 0, 0, 0, 0, 0, 0, 1087, 0, - 0, 1092, 0, 0, 0, 0, 1358, 0, 0, 0, - 0, 452, 452, 452, 452, 466, 0, 0, 1107, 0, + 0, 0, 557, 559, 454, 0, 443, 0, 1835, 0, + 0, 0, 0, 810, 569, 570, 571, 0, 573, 0, + 0, 576, 577, 0, 0, 578, 0, 0, 659, 24, + 25, 660, 27, 28, 661, 30, 662, 32, 0, 33, + 0, 0, 591, 592, 38, 39, 0, 41, 42, 43, + 443, 839, 443, 46, 0, 0, 600, 601, 0, 603, + 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, + 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, + 624, 0, 443, 0, 0, 0, 0, 67, 68, 69, + 634, 0, 0, 0, 0, 0, 640, 0, 642, 0, + 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 664, + 0, 0, 454, 0, 0, 668, 669, 670, 671, 672, + 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, + 0, 0, 684, 685, 0, 0, 0, 935, 0, 937, + 0, 0, 0, 1002, 0, 0, 1014, 0, 0, 0, + 557, 0, 0, 0, 1003, 0, 709, 0, 1260, 0, + 0, 714, 1004, 1005, 1006, 0, 719, 720, 1007, 1008, + 1009, 1010, 725, 726, 0, 0, 0, 731, 733, 736, + 739, 742, 744, 745, 746, 454, 454, 0, 0, 0, + 0, 0, 0, 0, 1266, 0, 987, 0, 0, 0, + 0, 0, 0, 763, 764, 765, 399, 400, 766, 0, + 0, 0, 770, 771, 772, 773, 774, 0, 0, 0, + 779, 0, 781, 782, 0, 0, 0, 454, 454, 454, + 0, 0, 789, 790, 791, 600, 792, 0, 0, 7, + 8, 1034, 798, 0, 0, 0, 1002, 0, 1783, 0, + 1041, 0, 1042, 454, 1043, 0, 1044, 1003, 0, 813, + 815, 1047, 684, 685, 1048, 1004, 1005, 1006, 0, 0, + 0, 1007, 1008, 1009, 1010, 0, 0, 0, 0, 0, + 0, 0, 792, 0, 0, 0, 0, 0, 0, 0, + 838, 454, 0, 0, 0, 0, 843, 0, 0, 0, + 0, 0, 0, 659, 24, 25, 660, 27, 28, 661, + 30, 662, 32, 0, 33, 0, 0, 1079, 0, 38, + 39, 0, 41, 42, 43, 0, 0, 0, 46, 418, + 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 902, 1785, 0, 0, 1148, 0, 1103, 1104, 1105, 1106, + 0, 0, 67, 68, 69, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 930, 0, 0, 454, 0, 454, + 938, 0, 0, 0, 0, 0, 0, 0, 945, 0, + 1002, 815, 948, 0, 0, 0, 0, 0, 0, 0, + 0, 1003, 1145, 0, 0, 962, 0, 0, 0, 1004, + 1005, 1006, 0, 0, 968, 1007, 1008, 1009, 1010, 207, + 208, 1054, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 454, 0, 0, 0, + 432, 0, 0, 993, 994, 0, 0, 0, 0, 997, + 0, 0, 0, 0, 0, 0, 0, 1002, 0, 0, + 0, 0, 1021, 0, 0, 1023, 0, 0, 1003, 0, + 0, 0, 0, 0, 0, 0, 1004, 1005, 1006, 0, + 0, 454, 1007, 1008, 1009, 1010, 0, 0, 0, 0, + 454, 0, 454, 0, 454, 1787, 454, 0, 0, 0, + 0, 454, 0, 0, 454, 0, 338, 0, 0, 0, + 1053, 0, 1055, 1056, 0, 352, 353, 354, 355, 356, + 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, + 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, + 0, 0, 0, 0, 0, 1075, 383, 384, 385, 386, + 7, 8, 388, 1076, 1077, 1078, 0, 454, 389, 390, + 0, 0, 1789, 0, 395, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1087, 0, 0, 0, 0, + 0, 0, 0, 1089, 0, 0, 1094, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 454, 454, 454, 454, + 468, 0, 0, 1109, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 659, 24, 25, 660, 27, 28, + 661, 30, 662, 32, 492, 33, 0, 0, 0, 0, + 38, 39, 0, 41, 42, 43, 1358, 0, 0, 46, + 0, 0, 0, 0, 0, 0, 0, 0, 522, 0, + 0, 0, 454, 0, 1360, 0, 0, 0, 0, 0, + 0, 0, 1153, 0, 1155, 0, 1157, 0, 1159, 0, + 1002, 0, 0, 67, 68, 69, 0, 0, 0, 0, + 0, 1003, 0, 0, 0, 541, 0, 0, 0, 1004, + 1005, 1006, 0, 0, 0, 1007, 1008, 1009, 1010, 7, + 8, 0, 567, 0, 0, 0, 0, 0, 0, 1002, + 0, 589, 590, 0, 0, 0, 1204, 0, 0, 1207, + 1003, 1380, 0, 1210, 597, 1211, 1212, 1213, 1004, 1005, + 1006, 0, 0, 1218, 1007, 1008, 1009, 1010, 0, 0, + 0, 0, 1059, 0, 0, 0, 0, 0, 0, 0, + 1233, 0, 1235, 0, 0, 0, 0, 0, 631, 0, + 0, 1441, 1442, 659, 24, 25, 660, 27, 28, 661, + 30, 662, 32, 0, 33, 1820, 0, 0, 0, 38, + 39, 0, 41, 42, 43, 0, 1268, 0, 46, 0, + 0, 0, 0, 0, 0, 0, 0, 455, 1277, 1278, + 0, 0, 455, 0, 0, 657, 455, 0, 0, 0, + 1287, 1289, 0, 455, 1821, 0, 0, 0, 0, 0, + 0, 0, 67, 68, 69, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1329, 1330, 1331, 0, 0, + 0, 0, 0, 0, 0, 1341, 0, 1343, 0, 0, + 0, 7, 8, 0, 0, 0, 0, 0, 1348, 0, + 0, 0, 558, 0, 455, 0, 454, 0, 0, 0, + 0, 1167, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 1381, 0, 0, 0, + 432, 0, 1372, 1373, 1374, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1564, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 659, 24, 25, 660, 27, + 28, 661, 30, 662, 32, 0, 33, 0, 0, 1390, + 1503, 38, 39, 0, 41, 42, 43, 0, 0, 0, + 46, 0, 0, 1403, 0, 0, 0, 0, 1409, 1600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 782, 783, 784, 0, 0, 0, 0, 0, 0, 490, - 7, 8, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 808, 0, 0, 0, - 430, 0, 0, 520, 0, 0, 0, 452, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1151, 0, 1153, - 0, 1155, 0, 1157, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 837, 0, 0, 0, 0, 0, - 539, 0, 0, 657, 24, 25, 658, 27, 28, 659, - 30, 660, 32, 0, 33, 0, 0, 565, 0, 38, - 39, 0, 41, 42, 43, 0, 587, 588, 46, 0, - 0, 1202, 0, 0, 1205, 0, 0, 0, 1208, 595, - 1209, 1210, 1211, 0, 0, 0, 0, 0, 1216, 0, + 0, 1415, 1416, 0, 0, 1533, 0, 0, 1421, 1422, + 1621, 0, 0, 1424, 67, 68, 69, 1002, 0, 0, + 0, 1431, 455, 0, 0, 0, 0, 0, 1003, 0, + 0, 454, 454, 1443, 0, 1444, 1004, 1005, 1006, 0, + 0, 0, 1007, 1008, 1009, 1010, 0, 1461, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 454, + 558, 0, 0, 454, 0, 915, 1476, 0, 0, 0, + 0, 1478, 1479, 1480, 1481, 0, 0, 0, 0, 0, + 0, 0, 0, 1669, 1489, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1499, 455, 455, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 1510, 1511, 0, 0, 432, 0, 0, 0, 1517, + 0, 0, 1822, 0, 0, 0, 969, 0, 0, 1714, + 0, 1717, 0, 0, 0, 0, 0, 455, 455, 455, + 0, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 1536, 0, 0, 0, 432, + 0, 0, 0, 455, 0, 0, 0, 0, 0, 0, + 816, 0, 0, 1550, 0, 557, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 1562, 0, 1563, 0, 432, 454, 0, 0, 0, 0, + 1769, 455, 1570, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1575, 0, 0, 0, + 0, 1579, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 1061, 0, 0, 0, 0, 0, 1069, 454, + 0, 0, 0, 0, 0, 0, 1604, 0, 1607, 0, + 1610, 0, 0, 7, 8, 0, 0, 0, 0, 0, + 454, 0, 0, 0, 1623, 1624, 1625, 1626, 1627, 0, + 0, 0, 0, 0, 1081, 0, 0, 0, 0, 0, + 0, 0, 0, 1638, 1639, 0, 0, 0, 1641, 1565, + 0, 0, 0, 0, 0, 0, 0, 455, 1645, 455, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 1656, + 0, 816, 949, 0, 0, 0, 0, 659, 24, 25, + 660, 27, 28, 661, 30, 662, 32, 0, 33, 0, + 0, 0, 0, 38, 39, 0, 41, 42, 43, 1681, + 0, 0, 46, 0, 1409, 0, 0, 0, 0, 1130, + 1131, 1689, 1133, 0, 1136, 1137, 455, 0, 1140, 1141, + 0, 0, 0, 0, 0, 1700, 0, 0, 1704, 0, + 0, 1708, 0, 0, 0, 1711, 67, 68, 69, 454, + 0, 454, 1718, 1719, 1720, 1721, 0, 0, 0, 0, + 0, 0, 1725, 0, 0, 1727, 0, 0, 0, 0, + 0, 455, 0, 0, 0, 0, 0, 0, 0, 0, + 455, 0, 455, 0, 455, 0, 455, 0, 0, 0, + 0, 455, 0, 0, 455, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1755, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1740, 0, 1221, 1222, 1223, + 454, 0, 1771, 1772, 1773, 1774, 0, 0, 1231, 0, + 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, + 428, 429, 430, 431, 0, 0, 0, 455, 432, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 1800, 1801, + 0, 0, 0, 0, 0, 0, 0, 0, 1809, 1810, + 1811, 1812, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1280, 0, 0, 0, 0, 455, 455, 455, 455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 67, 68, 69, 1231, 0, 1233, 7, 8, - 0, 0, 0, 629, 0, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 933, 0, 935, 430, 0, 0, 0, 0, 0, 0, - 0, 1266, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 453, 1275, 1276, 0, 0, 453, 0, 0, - 655, 453, 0, 0, 0, 1285, 1287, 0, 453, 0, - 988, 657, 24, 25, 658, 27, 28, 659, 30, 660, - 32, 0, 33, 0, 0, 0, 0, 38, 39, 985, - 41, 42, 43, 0, 0, 0, 46, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 7, 8, 0, - 1327, 1328, 1329, 0, 0, 0, 0, 0, 0, 0, - 1339, 0, 1341, 0, 0, 0, 0, 0, 0, 0, - 67, 68, 69, 1346, 1032, 0, 0, 556, 0, 453, - 0, 452, 0, 1039, 0, 1040, 0, 1041, 0, 1042, - 0, 0, 0, 0, 1045, 0, 0, 1046, 0, 0, - 0, 0, 0, 1378, 0, 0, 0, 1370, 1371, 1372, - 657, 24, 25, 658, 27, 28, 659, 30, 660, 32, - 0, 33, 0, 0, 0, 0, 38, 39, 0, 41, - 42, 43, 0, 0, 0, 46, 0, 0, 989, 0, - 0, 0, 0, 0, 1388, 0, 1379, 0, 0, 0, - 1077, 0, 0, 0, 0, 0, 0, 0, 1401, 0, - 0, 0, 0, 1407, 0, 0, 0, 0, 0, 67, - 68, 69, 0, 0, 0, 0, 1413, 1414, 0, 0, - 0, 0, 1501, 1419, 1420, 0, 0, 0, 1422, 1101, - 1102, 1103, 1104, 0, 0, 0, 1429, 453, 0, 0, - 0, 0, 0, 0, 0, 0, 452, 452, 1441, 0, - 1442, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 1459, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 452, 556, 0, 1012, 452, 0, - 913, 1474, 0, 0, 0, 1143, 1476, 1477, 1478, 1479, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1487, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 1497, - 453, 453, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 1508, 1509, 0, 0, - 430, 0, 0, 0, 1515, 0, 0, 0, 0, 0, - 0, 967, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 453, 453, 453, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 1534, 0, 0, 430, 0, 0, 0, 0, 453, 0, - 0, 0, 0, 0, 0, 814, 0, 0, 1548, 0, - 555, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 1560, 0, 1561, 0, 430, - 452, 0, 0, 0, 0, 0, 453, 1568, 0, 0, + 1299, 0, 0, 0, 0, 0, 1305, 0, 0, 0, + 0, 0, 1310, 0, 1312, 1313, 0, 0, 0, 1316, + 1317, 0, 1318, 0, 1319, 0, 1320, 0, 1321, 1322, + 1323, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 455, 0, 0, 0, 1342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1573, 0, 0, 0, 0, 1577, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 1059, 0, 0, - 0, 0, 0, 1067, 452, 0, 0, 0, 0, 0, - 0, 1602, 0, 1605, 0, 1608, 0, 0, 0, 7, - 8, 0, 0, 0, 0, 452, 0, 0, 0, 1621, - 1622, 1623, 1624, 1625, 0, 0, 0, 0, 0, 1079, - 0, 0, 0, 0, 0, 0, 0, 0, 1636, 1637, - 0, 0, 0, 1639, 0, 0, 0, 0, 0, 0, - 0, 0, 453, 1643, 453, 0, 0, 0, 0, 1356, - 0, 0, 0, 0, 1654, 0, 814, 947, 0, 0, - 0, 0, 657, 24, 25, 658, 27, 28, 659, 30, - 660, 32, 0, 33, 0, 0, 0, 0, 38, 39, - 0, 41, 42, 43, 1679, 0, 0, 46, 0, 1407, - 0, 0, 0, 0, 1128, 1129, 1687, 1131, 0, 1134, - 1135, 453, 0, 1138, 1139, 0, 0, 0, 0, 0, - 1698, 0, 0, 1702, 0, 0, 1706, 0, 0, 0, - 1709, 67, 68, 69, 452, 0, 452, 1716, 1717, 1718, - 1719, 0, 0, 0, 0, 0, 0, 1723, 0, 0, - 1725, 0, 0, 0, 7, 8, 453, 0, 0, 0, - 0, 0, 0, 0, 0, 453, 0, 453, 0, 453, - 0, 453, 0, 0, 0, 0, 453, 0, 0, 453, - 0, 0, 0, 0, 1439, 1440, 0, 0, 0, 0, - 1753, 0, 0, 0, 0, 0, 0, 0, 0, 1052, - 0, 0, 1219, 1220, 1221, 452, 0, 1769, 1770, 1771, - 1772, 0, 0, 1229, 0, 0, 0, 657, 24, 25, - 658, 27, 28, 659, 30, 660, 32, 0, 33, 0, - 0, 0, 453, 38, 39, 0, 41, 42, 43, 0, - 0, 0, 46, 1798, 1799, 0, 0, 0, 0, 0, - 0, 0, 0, 1807, 1808, 1809, 1810, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 1278, 0, 0, 0, - 0, 453, 453, 453, 453, 0, 67, 68, 69, 0, - 0, 0, 0, 0, 0, 1297, 0, 0, 0, 0, - 0, 1303, 0, 0, 0, 0, 0, 1308, 0, 1310, - 1311, 0, 0, 0, 1314, 1315, 0, 1316, 0, 1317, - 0, 1318, 0, 1319, 1320, 1321, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 453, 0, 0, - 0, 1340, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 1057, 0, 1351, 0, 1562, 0, - 1355, 0, 0, 0, 0, 109, 326, 0, 0, 0, - 0, 112, 113, 114, 0, 0, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 0, 0, - 0, 0, 1598, 0, 0, 0, 0, 143, 144, 145, - 0, 0, 0, 0, 150, 0, 0, 0, 0, 0, - 0, 0, 0, 1619, 0, 155, 156, 157, 0, 0, - 0, 0, 0, 158, 0, 0, 0, 0, 1399, 0, - 0, 109, 110, 111, 0, 0, 0, 112, 113, 114, - 0, 1411, 115, 116, 117, 118, 119, 120, 121, 122, + 0, 1353, 0, 0, 0, 1357, 0, 0, 0, 0, + 0, 0, 110, 328, 112, 0, 0, 0, 113, 114, + 115, 0, 0, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 0, 0, 0, 137, 138, 139, + 133, 134, 135, 136, 137, 138, 0, 1679, 0, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - 150, 0, 0, 0, 151, 152, 153, 0, 0, 154, - 0, 155, 156, 157, 0, 0, 0, 0, 0, 158, - 159, 0, 0, 0, 0, 0, 161, 1278, 0, 164, - 0, 0, 0, 0, 165, 166, 167, 168, 169, 0, - 0, 88, 0, 0, 1480, 0, 0, 0, 0, 0, - 0, 1489, 1712, 0, 1715, 1490, 172, 173, 0, 1494, - 0, 174, 0, 0, 0, 0, 294, 0, 0, 0, - 0, 178, 0, 487, 0, 0, 0, 0, 0, 1510, - 0, 453, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 160, 0, 0, 0, - 1278, 0, 161, 162, 163, 164, 0, 0, 0, 0, - 165, 166, 167, 168, 169, 170, 0, 88, 171, 0, - 0, 0, 0, 1767, 0, 0, 0, 0, 0, 0, - 0, 0, 172, 173, 0, 0, 1545, 174, 0, 0, - 0, 0, 175, 0, 176, 0, 177, 178, 0, 179, - 0, 180, 109, 326, 0, 0, 0, 0, 112, 113, - 114, 0, 0, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, - 132, 133, 134, 135, 136, 0, 1278, 0, 0, 0, - 0, 0, 0, 0, 143, 144, 145, 0, 0, 0, - 0, 150, 1278, 0, 0, 0, 453, 453, 0, 0, - 0, 0, 155, 156, 157, 0, 0, 0, 0, 0, - 158, 1614, 0, 0, 0, 0, 0, 0, 0, 109, - 285, 0, 0, 0, 453, 112, 113, 114, 453, 0, - 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 287, 0, 0, 0, 0, 0, 1647, 0, - 0, 143, 144, 145, 0, 0, 0, 0, 150, 0, - 0, 0, 0, 0, 0, 0, 0, 1664, 0, 155, - 156, 157, 0, 0, 0, 0, 0, 158, 0, 0, - 0, 288, 0, 161, 289, 0, 164, 290, 0, 291, - 0, 165, 166, 167, 168, 169, 0, 0, 88, 0, - 0, 292, 0, 0, 0, 0, 0, 0, 48, 49, - 50, 51, 52, 172, 173, 0, 0, 56, 174, 0, - 59, 0, 0, 294, 0, 0, 0, 0, 178, 0, - 556, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 1278, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 453, 0, 0, 0, 0, 0, 0, 453, 0, 0, - 161, 0, 0, 164, 0, 0, 0, 0, 165, 166, - 167, 168, 169, 1531, 0, 88, 0, 0, 0, 0, + 150, 151, 152, 0, 0, 0, 153, 154, 155, 0, + 0, 156, 0, 157, 158, 159, 0, 0, 0, 0, + 0, 160, 161, 1401, 0, 0, 110, 111, 112, 0, + 0, 0, 113, 114, 115, 0, 1413, 116, 117, 118, + 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, + 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, + 1738, 0, 0, 139, 140, 141, 142, 143, 144, 145, + 146, 147, 148, 149, 150, 151, 152, 0, 0, 0, + 153, 154, 155, 0, 0, 156, 0, 157, 158, 159, + 0, 0, 1634, 562, 0, 160, 161, 0, 0, 0, + 0, 0, 1280, 0, 0, 163, 164, 165, 166, 0, + 0, 0, 0, 167, 168, 169, 170, 171, 172, 1482, + 89, 173, 0, 0, 0, 0, 1491, 0, 0, 0, + 1492, 0, 0, 0, 1496, 174, 175, 0, 0, 0, + 176, 0, 0, 0, 0, 296, 0, 0, 0, 0, + 180, 0, 1288, 0, 1512, 0, 455, 0, 418, 419, + 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, + 430, 431, 0, 162, 0, 1280, 432, 0, 0, 163, + 164, 165, 166, 0, 0, 0, 0, 167, 168, 169, + 170, 171, 172, 0, 89, 173, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, + 175, 1547, 0, 0, 176, 0, 0, 0, 0, 177, + 0, 178, 0, 179, 180, 0, 181, 0, 182, 0, + 0, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 507, 1466, 0, 0, 453, 174, 0, 0, 0, 0, - 509, 0, 0, 0, 0, 178, 0, 252, 558, 0, - 0, 0, 0, 0, 0, 453, 0, 0, 0, 1563, - 0, 109, 285, 0, 0, 0, 0, 112, 113, 114, - 0, 1278, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 287, 0, 0, 0, 0, 0, - 0, 0, 0, 143, 144, 145, 0, 0, 0, 0, - 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 155, 156, 157, 0, 0, 0, 0, 0, 158, - 0, 0, 0, 288, 0, 0, 289, 0, 0, 290, - 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, - 48, 49, 50, 51, 52, 0, 0, 0, 0, 56, - 0, 0, 59, 0, 453, 0, 453, 0, 0, 0, - 0, 0, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 0, 0, 1677, 0, 0, 0, 0, 0, - 0, 0, 161, 0, 0, 164, 0, 0, 0, 0, - 165, 166, 167, 168, 169, 0, 0, 88, 416, 417, - 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 172, 451, 0, 453, 430, 174, 0, 0, - 0, 0, 294, 0, 0, 0, 0, 178, 0, 0, - 558, 109, 285, 111, 0, 0, 0, 112, 113, 114, - 0, 0, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 287, 0, 0, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - 150, 0, 0, 0, 151, 152, 153, 0, 0, 154, - 0, 155, 156, 157, 0, 0, 0, 0, 0, 158, - 159, 0, 0, 288, 0, 0, 289, 0, 0, 290, - 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, - 48, 49, 50, 51, 52, 0, 0, 0, 0, 56, - 0, 0, 59, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 0, 0, 1736, 416, 417, - 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 161, 162, 163, 164, 430, 1632, 560, 0, - 165, 166, 167, 168, 169, 170, 0, 88, 171, 0, + 0, 1280, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 704, 430, 431, 0, 1280, 0, 0, + 432, 455, 455, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 1616, 0, 0, 0, + 0, 0, 0, 1722, 110, 287, 0, 0, 0, 455, + 113, 114, 115, 455, 0, 116, 117, 118, 119, 120, + 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, + 131, 132, 133, 134, 135, 136, 137, 138, 289, 0, + 0, 0, 0, 1649, 0, 0, 0, 145, 146, 147, + 0, 0, 0, 0, 152, 0, 0, 0, 0, 0, + 0, 0, 1666, 0, 0, 157, 158, 159, 0, 0, + 0, 0, 0, 160, 0, 0, 0, 290, 0, 0, + 291, 0, 0, 292, 0, 293, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 294, 0, 0, + 0, 0, 0, 0, 48, 49, 50, 51, 52, 0, + 0, 0, 0, 56, 0, 0, 59, 0, 0, 0, + 0, 0, 0, 0, 0, 558, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1280, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 455, 0, 0, 0, 0, + 0, 0, 455, 0, 0, 0, 0, 163, 0, 0, + 166, 0, 0, 0, 0, 167, 168, 169, 170, 171, + 562, 0, 89, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 509, 1468, 455, + 0, 432, 176, 0, 0, 0, 0, 511, 0, 0, + 0, 0, 180, 0, 254, 560, 0, 0, 0, 0, + 455, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 110, 287, 0, 0, 0, 1280, 113, 114, 115, + 0, 0, 116, 117, 118, 119, 120, 121, 122, 123, + 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, + 134, 135, 136, 137, 138, 289, 0, 0, 0, 0, + 0, 0, 0, 0, 145, 146, 147, 0, 0, 0, + 0, 152, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 157, 158, 159, 0, 0, 0, 0, 0, + 160, 0, 0, 0, 290, 0, 0, 291, 0, 0, + 292, 0, 293, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 294, 0, 0, 0, 0, 0, + 0, 48, 49, 50, 51, 52, 0, 0, 0, 455, + 56, 455, 0, 59, 0, 0, 0, 0, 0, 418, + 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, + 563, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 562, 0, 0, + 0, 0, 0, 0, 163, 0, 0, 166, 0, 0, + 0, 0, 167, 168, 169, 170, 171, 826, 0, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 172, 293, 0, 0, 0, 174, 0, 0, - 0, 0, 294, 0, 109, 285, 111, 178, 0, 295, - 112, 113, 114, 0, 0, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 287, 0, 0, - 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, - 147, 148, 149, 150, 0, 0, 0, 151, 152, 153, - 0, 0, 154, 0, 155, 156, 157, 0, 0, 0, - 0, 0, 158, 159, 0, 0, 288, 0, 0, 289, - 0, 0, 290, 0, 291, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, + 455, 0, 0, 0, 174, 453, 0, 0, 0, 176, + 0, 0, 0, 0, 296, 0, 0, 0, 0, 180, + 0, 0, 560, 110, 287, 112, 0, 0, 0, 113, + 114, 115, 0, 0, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 289, 0, 0, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, 151, 152, 0, 0, 0, 153, 154, 155, + 0, 0, 156, 0, 157, 158, 159, 0, 0, 0, + 0, 0, 160, 161, 0, 0, 290, 0, 0, 291, + 0, 0, 292, 0, 293, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 294, 0, 0, 0, 0, 0, 0, 48, 49, 50, 51, 52, 0, 0, - 0, 0, 56, 0, 0, 59, 416, 417, 418, 419, - 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 702, 428, 429, 0, - 0, 0, 0, 430, 0, 161, 162, 163, 164, 0, - 0, 0, 0, 165, 166, 167, 168, 169, 170, 0, - 88, 171, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 172, 293, 0, 0, 0, - 174, 0, 0, 0, 0, 294, 0, 109, 326, 111, - 178, 0, 1493, 112, 113, 114, 0, 0, 115, 116, + 0, 0, 56, 0, 0, 59, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 704, 430, 431, + 0, 0, 0, 0, 432, 0, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 916, 0, 0, 0, 432, 0, 163, 164, 165, 166, + 0, 0, 0, 0, 167, 168, 169, 170, 171, 172, + 0, 89, 173, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 174, 295, 0, 0, + 0, 176, 0, 0, 0, 0, 296, 0, 110, 287, + 112, 180, 0, 297, 113, 114, 115, 0, 0, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, - 0, 560, 0, 137, 138, 139, 140, 141, 142, 143, - 144, 145, 146, 147, 148, 149, 150, 0, 0, 0, - 151, 152, 153, 0, 0, 154, 0, 155, 156, 157, - 0, 109, 326, 111, 0, 158, 159, 112, 113, 114, - 0, 0, 115, 116, 117, 118, 119, 120, 121, 122, - 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, - 133, 134, 135, 136, 0, 0, 0, 137, 138, 139, - 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, - 150, 0, 0, 0, 151, 152, 153, 0, 0, 154, - 0, 155, 156, 157, 0, 0, 0, 0, 0, 158, - 159, 0, 0, 0, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 161, 162, - 163, 164, 430, 0, 648, 0, 165, 166, 167, 168, - 169, 170, 0, 88, 171, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 172, 173, - 0, 0, 0, 174, 0, 0, 0, 0, 294, 0, - 0, 0, 0, 178, 0, 1486, 0, 0, 416, 417, - 418, 419, 420, 421, 422, 423, 424, 425, 426, 702, - 428, 429, 161, 162, 163, 164, 430, 0, 0, 0, - 165, 166, 167, 168, 169, 170, 0, 88, 171, 0, + 137, 138, 289, 0, 0, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, + 0, 0, 153, 154, 155, 0, 0, 156, 0, 157, + 158, 159, 0, 0, 0, 0, 0, 160, 161, 0, + 0, 290, 0, 0, 291, 0, 0, 292, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 172, 173, 0, 0, 0, 174, 0, 0, - 0, 0, 294, 0, 109, 285, 286, 178, 0, 1496, - 112, 113, 114, 0, 0, 115, 116, 117, 118, 119, - 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, - 130, 131, 132, 133, 134, 135, 136, 287, 0, 0, - 0, 0, 0, 0, 0, 0, 143, 144, 145, 0, - 0, 0, 0, 150, 7, 8, 0, 0, 0, 0, - 0, 0, 0, 0, 155, 156, 157, 0, 0, 0, - 0, 0, 158, 0, 0, 0, 288, 0, 0, 289, - 0, 0, 290, 0, 291, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, + 0, 294, 0, 0, 0, 0, 0, 0, 48, 49, + 50, 51, 52, 0, 0, 0, 0, 56, 0, 0, + 59, 0, 0, 0, 0, 0, 0, 0, 0, 418, + 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 163, 164, 165, 166, 0, 0, 0, 0, 167, + 168, 169, 170, 171, 172, 0, 89, 173, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 174, 295, 0, 0, 0, 176, 0, 0, 0, + 0, 296, 0, 110, 328, 112, 180, 0, 1495, 113, + 114, 115, 0, 0, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 0, 1046, 0, + 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, + 149, 150, 151, 152, 0, 0, 0, 153, 154, 155, + 0, 0, 156, 0, 157, 158, 159, 0, 110, 328, + 112, 0, 160, 161, 113, 114, 115, 0, 0, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 0, 0, 0, 139, 140, 141, 142, 143, + 144, 145, 146, 147, 148, 149, 150, 151, 152, 0, + 0, 0, 153, 154, 155, 0, 0, 156, 0, 157, + 158, 159, 0, 0, 0, 0, 0, 160, 161, 0, + 0, 0, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 163, 164, 165, 166, + 432, 0, 650, 0, 167, 168, 169, 170, 171, 172, + 0, 89, 173, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 174, 175, 0, 0, + 0, 176, 0, 0, 0, 0, 296, 0, 0, 0, + 0, 180, 0, 1488, 0, 0, 0, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 163, 164, 165, 166, 432, 1226, 0, 0, 167, + 168, 169, 170, 171, 172, 0, 89, 173, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 174, 175, 0, 0, 0, 176, 0, 0, 0, + 0, 296, 0, 110, 287, 288, 180, 0, 1498, 113, + 114, 115, 0, 0, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 289, 0, 0, + 0, 0, 0, 0, 0, 0, 145, 146, 147, 0, + 0, 0, 0, 152, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 157, 158, 159, 0, 0, 0, + 0, 0, 160, 0, 0, 0, 290, 0, 0, 291, + 0, 0, 292, 0, 293, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 294, 0, 0, 0, 0, 0, 0, 48, 49, 50, 51, 52, 0, 0, - 0, 0, 56, 0, 0, 59, 0, 657, 24, 25, - 658, 27, 28, 659, 30, 660, 32, 0, 33, 0, - 0, 0, 0, 38, 39, 0, 41, 42, 43, 0, - 0, 0, 46, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 161, 0, 0, 164, 0, - 0, 0, 0, 165, 166, 167, 168, 169, 0, 0, - 88, 0, 0, 0, 0, 0, 67, 68, 69, 0, - 0, 0, 0, 0, 0, 172, 293, 0, 0, 0, - 174, 0, 0, 0, 0, 294, 0, 109, 285, 1349, - 178, 0, 295, 112, 113, 114, 0, 0, 115, 116, + 0, 0, 56, 0, 0, 59, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 163, 0, 0, 166, + 0, 0, 0, 0, 167, 168, 169, 170, 171, 0, + 0, 89, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 174, 295, 0, 0, + 432, 176, 811, 0, 0, 0, 296, 756, 110, 287, + 1351, 180, 0, 297, 113, 114, 115, 0, 0, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, - 287, 0, 0, 0, 0, 0, 0, 0, 0, 143, - 144, 145, 0, 0, 1165, 0, 150, 7, 8, 0, - 0, 0, 0, 0, 0, 0, 0, 155, 156, 157, - 0, 0, 0, 0, 0, 158, 0, 0, 0, 288, - 0, 0, 289, 0, 0, 290, 0, 291, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, - 0, 0, 0, 0, 0, 0, 48, 49, 50, 51, - 52, 0, 0, 0, 0, 56, 0, 0, 59, 0, - 657, 24, 25, 658, 27, 28, 659, 30, 660, 32, - 0, 33, 0, 0, 0, 0, 38, 39, 0, 41, - 42, 43, 0, 0, 0, 46, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 161, 0, - 0, 164, 0, 0, 0, 0, 165, 166, 167, 168, - 169, 0, 0, 88, 0, 0, 0, 0, 0, 67, - 68, 69, 0, 0, 0, 0, 0, 0, 172, 293, - 0, 0, 0, 174, 0, 0, 0, 0, 294, 0, - 109, 285, 0, 178, 0, 1350, 112, 113, 114, 0, - 0, 115, 116, 117, 118, 119, 120, 121, 122, 123, - 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, - 134, 135, 136, 287, 0, 0, 0, 0, 0, 0, - 0, 0, 143, 144, 145, 0, 0, 1667, 0, 150, - 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, - 155, 156, 157, 0, 0, 0, 0, 0, 158, 0, - 0, 0, 288, 0, 0, 289, 0, 0, 290, 0, - 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 292, 0, 0, 0, 0, 0, 0, 48, - 49, 50, 51, 52, 0, 0, 0, 0, 56, 0, - 0, 59, 0, 657, 24, 25, 658, 27, 28, 659, - 30, 660, 32, 0, 33, 0, 0, 0, 0, 38, - 39, 0, 41, 42, 43, 0, 0, 0, 46, 824, + 137, 138, 289, 0, 0, 0, 0, 0, 0, 0, + 0, 145, 146, 147, 0, 0, 0, 0, 152, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, + 158, 159, 0, 0, 0, 0, 0, 160, 0, 0, + 0, 290, 0, 0, 291, 0, 0, 292, 0, 293, + 319, 112, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 294, 0, 0, 0, 0, 0, 0, 48, 49, + 50, 51, 52, 0, 0, 0, 0, 56, 0, 0, + 59, 0, 0, 0, 0, 0, 139, 140, 141, 142, + 143, 144, 0, 0, 0, 148, 149, 150, 151, 0, + 0, 0, 0, 153, 154, 155, 0, 0, 156, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 161, + 0, 163, 0, 0, 166, 0, 0, 0, 0, 167, + 168, 169, 170, 171, 0, 0, 89, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 174, 295, 0, 0, 432, 176, 0, 0, 0, + 0, 296, 693, 110, 287, 0, 180, 0, 1352, 113, + 114, 115, 0, 0, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 289, 0, 0, + 0, 0, 0, 164, 165, 0, 145, 146, 147, 0, + 0, 0, 0, 152, 0, 172, 0, 89, 173, 0, + 0, 0, 0, 0, 157, 158, 159, 0, 0, 0, + 0, 0, 160, 0, 0, 0, 290, 0, 0, 291, + 0, 0, 292, 0, 293, 440, 112, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 294, 0, 0, 0, + 0, 0, 0, 48, 49, 50, 51, 52, 0, 0, + 0, 0, 56, 0, 0, 59, 0, 0, 0, 0, + 0, 139, 140, 141, 142, 143, 144, 0, 0, 0, + 148, 149, 150, 151, 0, 0, 0, 0, 153, 154, + 155, 0, 0, 156, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 161, 0, 163, 0, 0, 166, + 0, 0, 0, 0, 167, 168, 169, 170, 171, 0, + 0, 89, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 174, 295, 0, 0, + 432, 176, 0, 0, 0, 0, 296, 756, 110, 287, + 0, 180, 0, 297, 113, 114, 115, 0, 0, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 289, 0, 0, 0, 0, 0, 164, 165, + 0, 145, 146, 147, 0, 0, 0, 0, 152, 0, + 172, 0, 89, 173, 0, 0, 0, 0, 0, 157, + 158, 159, 0, 0, 0, 0, 0, 160, 0, 0, + 0, 290, 0, 0, 291, 0, 0, 292, 0, 293, + 322, 112, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 294, 0, 0, 0, 0, 0, 0, 48, 49, + 50, 51, 52, 0, 0, 0, 0, 56, 0, 0, + 59, 0, 0, 0, 0, 0, 139, 140, 141, 142, + 143, 144, 0, 0, 0, 148, 149, 150, 151, 0, + 0, 0, 0, 153, 154, 155, 0, 0, 156, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 161, + 0, 163, 0, 0, 166, 0, 0, 0, 0, 167, + 168, 169, 170, 171, 0, 0, 89, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 174, 453, 0, 0, 432, 176, 0, 0, 0, + 0, 296, 757, 110, 287, 0, 180, 0, 556, 113, + 114, 115, 0, 0, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 289, 0, 0, + 0, 0, 0, 164, 165, 0, 145, 146, 147, 0, + 0, 0, 0, 152, 0, 172, 0, 0, 173, 0, + 0, 0, 0, 0, 157, 158, 159, 0, 0, 0, + 0, 0, 160, 0, 0, 0, 290, 0, 0, 291, + 0, 0, 292, 112, 293, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 294, 0, 0, 0, + 0, 0, 0, 48, 49, 50, 51, 52, 0, 0, + 0, 0, 56, 0, 0, 59, 0, 0, 139, 140, + 141, 142, 143, 144, 0, 0, 0, 148, 149, 150, + 151, 0, 0, 0, 0, 153, 154, 155, 0, 0, + 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 161, 0, 0, 0, 0, 163, 0, 0, 166, + 0, 0, 0, 0, 167, 168, 169, 170, 171, 0, + 0, 89, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 174, 453, 0, 0, + 432, 176, 0, 0, 0, 0, 296, 823, 110, 287, + 0, 180, 0, 814, 113, 114, 115, 0, 0, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 289, 0, 0, 164, 165, 0, 0, 0, + 0, 145, 146, 147, 0, 0, 0, 172, 152, 0, + 173, 7, 8, 0, 0, 0, 0, 0, 0, 157, + 158, 159, 0, 0, 0, 0, 0, 160, 0, 0, + 0, 290, 0, 0, 291, 0, 0, 292, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 161, 0, 0, 164, 0, 0, 0, 914, 165, - 166, 167, 168, 169, 0, 0, 88, 0, 0, 0, - 0, 0, 67, 68, 69, 0, 0, 0, 0, 0, - 0, 172, 293, 0, 0, 0, 174, 0, 0, 0, - 0, 294, 0, 109, 285, 0, 178, 0, 295, 112, - 113, 114, 0, 0, 115, 116, 117, 118, 119, 120, - 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, - 131, 132, 133, 134, 135, 136, 287, 0, 0, 0, - 0, 0, 0, 0, 0, 143, 144, 145, 0, 0, - 1738, 0, 150, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 155, 156, 157, 0, 0, 0, 0, - 0, 158, 0, 0, 0, 288, 0, 0, 289, 0, - 0, 290, 0, 291, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, - 0, 0, 48, 49, 50, 51, 52, 0, 0, 0, - 0, 56, 0, 0, 59, 0, 416, 417, 418, 419, - 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 1044, - 0, 0, 0, 430, 161, 0, 0, 164, 0, 0, - 0, 0, 165, 166, 167, 168, 169, 0, 0, 88, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 172, 451, 0, 0, 430, 174, - 809, 0, 0, 0, 294, 754, 109, 285, 0, 178, - 0, 554, 112, 113, 114, 0, 0, 115, 116, 117, + 0, 294, 0, 0, 0, 0, 0, 0, 48, 49, + 50, 51, 52, 0, 0, 0, 0, 56, 0, 0, + 59, 0, 0, 0, 0, 659, 24, 25, 660, 27, + 28, 661, 30, 662, 32, 0, 33, 0, 0, 0, + 0, 38, 39, 0, 41, 42, 43, 0, 0, 0, + 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 163, 0, 0, 166, 0, 0, 0, 0, 167, + 168, 169, 170, 171, 0, 0, 89, 0, 0, 0, + 0, 0, 0, 0, 67, 68, 69, 0, 0, 0, + 0, 174, 295, 0, 0, 0, 176, 0, 0, 0, + 0, 296, 0, 110, 287, 0, 180, 0, 1356, 113, + 114, 115, 0, 0, 116, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 289, 0, 0, + 0, 0, 0, 0, 0, 0, 145, 146, 147, 0, + 0, 0, 0, 152, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 157, 158, 159, 0, 0, 0, + 0, 0, 160, 0, 0, 0, 290, 0, 0, 291, + 0, 0, 292, 0, 293, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 294, 0, 0, 0, + 0, 0, 0, 48, 49, 50, 51, 52, 0, 0, + 0, 0, 56, 0, 0, 59, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 0, 0, 0, 0, + 0, 1448, 0, 1449, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 163, 0, 0, 166, + 0, 0, 0, 0, 167, 168, 169, 170, 171, 0, + 0, 89, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 509, 1468, 0, 0, + 432, 176, 0, 0, 0, 0, 511, 858, 110, 328, + 0, 180, 0, 254, 113, 114, 115, 0, 0, 116, + 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, + 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, + 137, 138, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 145, 146, 147, 0, 0, 0, 0, 152, 0, + 0, 0, 0, 0, 0, 0, 0, 110, 328, 157, + 158, 159, 0, 113, 114, 115, 0, 160, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, - 128, 129, 130, 131, 132, 133, 134, 135, 136, 287, - 0, 0, 0, 0, 0, 0, 0, 0, 143, 144, - 145, 0, 0, 0, 0, 150, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 155, 156, 157, 0, - 0, 0, 0, 0, 158, 0, 0, 0, 288, 0, - 0, 289, 0, 0, 290, 0, 291, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, - 0, 0, 0, 0, 0, 48, 49, 50, 51, 52, - 0, 0, 0, 0, 56, 0, 0, 59, 0, 0, - 0, 0, 0, 0, 0, 0, 416, 417, 418, 419, + 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, + 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 145, 146, 147, 0, 0, 0, 0, 152, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 157, 158, + 159, 0, 0, 0, 0, 0, 160, 0, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 1224, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 161, 0, 0, - 164, 0, 0, 0, 0, 165, 166, 167, 168, 169, - 0, 0, 88, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 172, 451, 0, - 0, 430, 174, 0, 0, 0, 0, 294, 691, 109, - 285, 0, 178, 0, 812, 112, 113, 114, 0, 0, - 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 287, 0, 0, 0, 0, 0, 0, 0, - 0, 143, 144, 145, 0, 0, 0, 0, 150, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, - 156, 157, 0, 0, 0, 0, 0, 158, 0, 0, - 0, 288, 0, 0, 289, 0, 0, 290, 0, 291, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 0, 163, 0, 1483, 166, 1484, 0, 0, 0, 167, + 168, 169, 170, 171, 0, 0, 89, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 174, 175, 0, 0, 432, 176, 0, 0, 0, + 0, 296, 1602, 0, 1603, 0, 180, 0, 489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 292, 0, 0, 0, 0, 0, 0, 48, 49, - 50, 51, 52, 0, 0, 0, 0, 56, 0, 0, - 59, 0, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 0, 0, 0, 0, 416, 417, 418, 419, - 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 161, 0, 0, 164, 430, 0, 0, 0, 165, 166, - 167, 168, 169, 911, 0, 88, 416, 417, 418, 419, - 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 172, 293, 0, 0, 430, 174, 0, 0, 0, 0, - 294, 754, 109, 285, 0, 178, 0, 1354, 112, 113, - 114, 0, 0, 115, 116, 117, 118, 119, 120, 121, - 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, - 132, 133, 134, 135, 136, 287, 0, 0, 0, 0, - 0, 0, 0, 0, 143, 144, 145, 0, 0, 0, - 0, 150, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 155, 156, 157, 0, 0, 0, 0, 0, - 158, 0, 0, 0, 288, 0, 0, 289, 0, 0, - 290, 0, 291, 320, 111, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, + 163, 0, 0, 166, 0, 0, 0, 0, 167, 168, + 169, 170, 171, 0, 0, 89, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 509, 510, 0, 0, 432, 176, 0, 0, 0, 0, + 511, 866, 110, 328, 112, 180, 0, 254, 113, 114, + 115, 0, 0, 116, 117, 118, 119, 120, 121, 122, + 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, + 133, 134, 135, 136, 137, 138, 0, 0, 0, 139, + 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, + 150, 151, 152, 0, 0, 0, 153, 154, 155, 0, + 0, 156, 0, 157, 158, 159, 0, 0, 0, 0, + 0, 160, 161, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 0, 0, 0, 0, 0, 0, 0, + 913, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 0, 0, 0, 0, 0, 964, 0, + 0, 0, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 0, 0, 0, 163, 164, 165, 166, 1017, + 0, 0, 0, 167, 168, 169, 170, 171, 172, 0, + 89, 173, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 174, 175, 0, 0, 0, + 176, 110, 287, 0, 0, 296, 0, 113, 114, 115, + 180, 0, 116, 117, 118, 119, 120, 121, 122, 123, + 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, + 134, 135, 136, 137, 138, 289, 0, 0, 0, 0, + 0, 0, 0, 0, 145, 146, 147, 0, 0, 0, + 0, 152, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 157, 158, 159, 0, 0, 0, 0, 0, + 160, 0, 0, 0, 290, 0, 0, 291, 0, 0, + 292, 0, 293, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 294, 0, 0, 0, 0, 0, 0, 48, 49, 50, 51, 52, 0, 0, 0, 0, - 56, 0, 0, 59, 0, 0, 0, 0, 137, 138, - 139, 140, 141, 142, 0, 0, 0, 146, 147, 148, - 149, 0, 0, 0, 0, 151, 152, 153, 0, 0, - 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 159, 0, 161, 0, 0, 164, 0, 0, 0, - 0, 165, 166, 167, 168, 169, 0, 0, 88, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 507, 1466, 0, 0, 430, 174, 0, - 0, 0, 0, 509, 755, 109, 326, 0, 178, 0, - 252, 112, 113, 114, 0, 0, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 0, 0, - 0, 0, 0, 0, 162, 163, 0, 143, 144, 145, - 0, 0, 0, 0, 150, 0, 170, 0, 0, 171, - 0, 0, 0, 0, 0, 155, 156, 157, 109, 326, - 111, 0, 0, 158, 112, 113, 114, 0, 0, 115, - 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, - 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, - 136, 0, 0, 0, 137, 138, 139, 140, 141, 142, - 143, 144, 145, 146, 147, 148, 149, 150, 0, 0, - 0, 151, 152, 153, 0, 0, 154, 0, 155, 156, - 157, 0, 0, 0, 0, 0, 158, 159, 0, 0, - 0, 0, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 161, 0, 0, 164, - 430, 0, 0, 0, 165, 166, 167, 168, 169, 962, - 0, 88, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 507, 508, 0, 0, - 430, 174, 0, 0, 0, 0, 509, 1446, 0, 1447, - 0, 178, 0, 252, 0, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 161, - 162, 163, 164, 430, 0, 701, 0, 165, 166, 167, - 168, 169, 170, 0, 88, 171, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, - 173, 0, 0, 0, 174, 109, 285, 0, 0, 294, - 0, 112, 113, 114, 178, 0, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, - 129, 130, 131, 132, 133, 134, 135, 136, 287, 0, - 0, 0, 0, 0, 0, 0, 0, 143, 144, 145, - 0, 0, 0, 0, 150, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 155, 156, 157, 0, 0, - 0, 0, 0, 158, 0, 0, 0, 288, 0, 0, - 289, 0, 0, 290, 0, 291, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 292, 0, 0, - 0, 0, 0, 0, 48, 49, 50, 51, 52, 0, - 0, 0, 0, 56, 0, 0, 59, 0, 416, 417, + 56, 0, 0, 59, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 0, 0, 0, 0, 0, 0, + 0, 1037, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 163, 0, 0, 166, 0, 0, + 0, 0, 167, 168, 169, 170, 171, 0, 0, 89, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 0, 0, - -4, 1, 0, 1481, -4, 1482, 0, 0, 0, 0, - 0, 0, -4, -4, 0, 0, 161, 0, 0, 164, - 0, 0, 0, 0, 165, 166, 167, 168, 169, 0, - 0, 88, 0, 0, 0, 0, 0, -4, -4, 0, - 0, 0, 0, 0, 0, 0, 172, 451, 0, 0, - 0, 174, 0, -4, -4, -4, 294, 0, 0, -4, - -4, 178, -4, 0, 0, 0, -4, -4, 0, -4, - -4, 0, 0, -4, -4, -4, -4, -4, -4, -4, - -4, -4, -4, -4, -4, 0, -4, -4, -4, -4, - -4, -4, -4, -4, -4, -4, -4, -4, 0, -4, - -4, -4, -4, -4, -4, -4, -4, -4, 0, -4, - -4, -4, -4, -4, -4, -4, -4, 0, 0, 0, - -4, -4, -4, 6, 0, 0, 0, 0, -4, 0, - 0, 7, 8, -4, -4, -4, -4, 0, 0, -4, - 0, -4, 0, -4, -4, -4, -4, -4, -4, -4, - -4, -4, -4, -4, 0, 0, 9, 10, -4, -4, - -4, -4, 0, 0, 0, 0, 0, 0, -4, -4, - 0, 0, 11, 12, 13, 0, 0, 0, 14, 15, - 0, 16, 0, 0, 0, 17, 18, 0, 19, 20, - 0, 0, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 0, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 42, 43, 44, 0, 45, 46, - 47, 48, 49, 50, 51, 52, 53, 0, 54, 55, - 56, 57, 58, 59, 60, 61, 0, 0, 0, 62, - 63, 64, 0, 0, 0, 0, 0, 65, 0, 0, - 7, 8, 66, 67, 68, 69, 111, 0, 70, 0, - 71, 0, 72, 73, 74, 75, 76, 77, 78, 79, - 80, 81, 82, 0, 0, 0, 0, 83, 84, 85, - 86, 0, 0, 0, 0, 0, 0, 87, 88, 0, - 137, 138, 139, 140, 141, 142, 0, 0, 0, 146, - 147, 148, 149, 0, 0, 0, 0, 151, 152, 153, - 0, 0, 154, 657, 24, 25, 658, 27, 28, 659, - 30, 660, 32, 159, 33, 0, 0, 0, 0, 38, - 39, 0, 41, 42, 43, 0, 0, 0, 46, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 1600, 0, 1601, 0, 0, 0, - 0, 0, 67, 68, 69, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, - 0, 0, 1015, 0, 0, 0, 162, 163, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 170, 0, - 0, 171, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 0, 0, 0, 0, 0, 0, 0, 1035, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 0, 0, 0, 0, 0, 0, 0, 1065, 416, 417, + 428, 429, 430, 431, 174, 453, 0, 0, 432, 176, + 110, 328, 0, 0, 296, 867, 113, 114, 115, 180, + 0, 116, 117, 118, 119, 120, 121, 122, 123, 124, + 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, + 135, 136, 137, 138, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 145, 146, 147, 0, 0, 0, 0, + 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 157, 158, 159, 0, 0, 0, 0, 0, 160, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 0, 0, - 0, 0, 0, 0, 0, 1169, 416, 417, 418, 419, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 0, 0, 0, 0, 0, 0, 0, 1067, 418, 419, + 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 0, 0, 0, 0, 0, 1171, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -4, 1, 0, 0, + -4, 0, 0, 0, 0, 0, 0, 0, -4, -4, + 0, 0, 0, 163, 0, 0, 166, 0, 0, 0, + 0, 167, 168, 169, 170, 171, 0, 0, 89, 0, + 0, 0, 0, 0, -4, -4, 0, 0, 0, 0, + 0, 0, 0, 174, 175, 0, 0, 0, 176, 0, + -4, -4, -4, 296, 0, 0, -4, -4, 180, -4, + 0, 0, 0, -4, -4, 0, -4, -4, 0, 0, + -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, + -4, -4, 0, -4, -4, -4, -4, -4, -4, -4, + -4, -4, -4, -4, -4, 0, -4, -4, -4, -4, + -4, -4, -4, -4, -4, 0, -4, -4, -4, -4, + -4, -4, -4, -4, 0, 0, 0, -4, -4, -4, + 6, 0, 0, 0, 0, -4, 0, 0, 7, 8, + -4, -4, -4, -4, 0, 0, -4, 0, -4, 0, + -4, -4, -4, -4, -4, -4, -4, -4, -4, -4, + -4, -4, 0, 0, 9, 10, -4, -4, -4, -4, + 0, 0, 0, 0, 0, 0, -4, -4, 0, 0, + 11, 12, 13, 0, 0, 0, 14, 15, 0, 16, + 0, 0, 0, 17, 18, 0, 19, 20, 0, 0, + 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, + 31, 32, 0, 33, 34, 35, 36, 37, 38, 39, + 40, 41, 42, 43, 44, 0, 45, 46, 47, 48, + 49, 50, 51, 52, 53, 0, 54, 55, 56, 57, + 58, 59, 60, 61, 0, 0, 0, 62, 63, 64, + 0, 0, 0, 0, 0, 65, 0, 0, 0, 0, + 66, 67, 68, 69, 0, 0, 70, 0, 71, 0, + 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, + 82, 83, 0, 0, 0, 0, 84, 85, 86, 87, + 0, 0, 0, 0, 0, 0, 88, 89, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 0, 0, 0, 0, - 0, 0, 0, 1444, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 0, 0, 0, 0, 0, 0, - 0, 1463, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 0, 0, 0, 0, 0, 0, 0, 1518, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 0, 0, 0, 0, 0, 0, 0, 1519, 416, 417, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 0, 0, 0, 0, 0, 1446, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 0, 0, 0, 0, + 0, 0, 0, 1465, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 0, 0, 0, 0, 0, 0, + 0, 1520, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 0, 0, 0, 0, 0, 0, 0, 1521, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 0, 0, - 0, 0, 0, 0, 0, 1520, 416, 417, 418, 419, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 0, 0, 0, 0, 0, 0, 0, 1522, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 0, 0, 0, 0, - 0, 0, 0, 1521, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 0, 0, 0, 0, 0, 0, - 0, 1522, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 0, 0, 0, 0, 0, 0, 0, 1554, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 0, 0, 0, 0, 0, 0, 0, 1616, 416, 417, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 0, 0, 0, 0, 0, 1523, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 0, 0, 0, 0, + 0, 0, 0, 1524, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 0, 0, 0, 0, 0, 0, + 0, 1556, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 0, 0, 0, 0, 0, 0, 0, 1618, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 0, 0, - 0, 0, 0, 0, 0, 1626, 416, 417, 418, 419, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 0, 0, 0, 0, 0, 0, 0, 1628, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 0, 0, 0, 0, - 0, 0, 0, 1627, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 0, 0, 0, 0, 0, 0, - 0, 1655, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 0, 0, 0, 0, 0, 0, 0, 1658, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 0, 0, 0, 0, 0, 0, 0, 1661, 416, 417, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 0, 0, 0, 0, 0, 1629, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 0, 0, 0, 0, + 0, 0, 0, 1657, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 0, 0, 0, 0, 0, 0, + 0, 1660, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 0, 0, 0, 0, 0, 0, 0, 1663, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 0, 0, - 0, 0, 0, 0, 0, 1688, 416, 417, 418, 419, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 0, 0, 0, 0, 0, 0, 0, 1690, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 0, 0, 0, 0, - 0, 0, 0, 1695, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 0, 0, 0, 0, 0, 0, - 0, 1730, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 0, 0, 0, 0, 0, 0, 0, 1732, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 0, 0, 0, 0, 0, 0, 0, 1734, 416, 417, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 0, 0, 0, 0, 0, 1697, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 0, 0, 0, 0, + 0, 0, 0, 1732, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 0, 0, 0, 0, 0, 0, + 0, 1734, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 0, 0, 0, 0, 0, 0, 0, 1736, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 0, 0, - 0, 0, 0, 0, 0, 1752, 416, 417, 418, 419, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 0, 0, 0, 0, 0, 0, 0, 1754, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 0, 0, 0, 0, - 0, 0, 0, 1778, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 0, 0, 0, 0, 0, 0, - 0, 1816, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 0, 0, 0, 0, 0, 0, 0, 1817, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 0, 0, 0, 0, 0, 0, 0, 1821, 416, 417, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 0, 0, 0, 0, 0, 1780, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 0, 0, 0, 0, + 0, 0, 0, 1818, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 0, 0, 0, 0, 0, 0, + 0, 1819, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 0, 0, 0, 0, 0, 0, 0, 1823, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 0, 0, - 0, 0, 0, 0, 0, 1822, 416, 417, 418, 419, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 0, 0, 0, 0, 0, 0, 0, 1824, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 0, 0, 0, 0, - 0, 0, 0, 1823, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 0, 0, 0, 0, 0, 0, - 0, 1824, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 0, 0, 0, 0, 0, 0, 585, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 0, 747, 416, 417, 418, 419, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 0, 0, 0, 0, 0, 1825, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 0, 0, 0, 0, + 0, 0, 0, 1826, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 0, 0, 0, 0, 0, 0, + 587, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 0, 0, 0, 0, 749, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 0, 0, 0, 0, - 0, 0, 1530, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 0, 0, 0, 821, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 856, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, - 864, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 0, 0, 0, 0, 0, 865, 416, 417, 418, - 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 0, 0, 0, - 0, 0, 866, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 0, 0, 0, 877, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 997, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, - 998, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 0, 0, 0, 0, 0, 999, 416, 417, 418, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 0, 0, 0, 0, 1532, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, + 868, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 0, 0, 0, 879, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 0, 0, 0, + 0, 0, 999, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 0, 0, 0, 0, 0, 1000, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 0, 0, 0, - 0, 0, 1030, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 0, 0, 0, 1121, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 1167, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, - 1168, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 0, 0, 0, 0, 0, 1223, 416, 417, 418, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 0, 0, 0, 0, 1001, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, + 1032, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 0, 0, 0, 1123, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 0, 0, 0, + 0, 0, 1169, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 0, 0, 0, 0, 0, 1170, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 0, 0, 0, - 0, 0, 1362, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 0, 0, 0, 1363, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 1364, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, - 1365, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 0, 0, 0, 0, 0, 1402, 416, 417, 418, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 0, 0, 0, 0, 1225, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, + 1364, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 0, 0, 0, 1365, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 0, 0, 0, + 0, 0, 1366, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 0, 0, 0, 0, 0, 1367, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 0, 0, 0, - 0, 0, 1403, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 0, 0, 0, 1410, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 1555, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, - 1556, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 0, 0, 0, 0, 0, 1557, 416, 417, 418, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 0, 0, 0, 0, 1404, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, + 1405, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 0, 0, 0, 1412, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 0, 0, 0, + 0, 0, 1557, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 0, 0, 0, 0, 0, 1558, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 0, 0, 0, - 0, 0, 1558, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 0, 0, 0, 1574, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 1575, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, - 1579, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 0, 0, 0, 0, 0, 1673, 416, 417, 418, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 0, 0, 0, 0, 1559, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, + 1560, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 0, 0, 0, 1576, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 0, 0, 0, + 0, 0, 1577, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 0, 0, 0, 0, 0, 1581, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 0, 0, 0, - 0, 0, 1674, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 0, 0, 0, 1675, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 1676, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, - 1683, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 0, 0, 0, 0, 0, 1686, 416, 417, 418, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 0, 0, 0, 0, 1675, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, + 1676, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 0, 0, 0, 1677, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 0, 0, 0, + 0, 0, 1678, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 0, 0, 0, 0, 0, 1685, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 0, 0, 0, - 0, 0, 1726, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 0, 0, 0, 1743, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 1744, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, - 1745, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 0, 0, 0, 0, 0, 1746, 416, 417, 418, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 0, 0, 0, 0, 1688, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, + 1728, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 0, 0, 0, 1745, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 0, 0, 0, + 0, 0, 1746, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 0, 0, 0, 0, 0, 1747, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 0, 0, 0, - 0, 0, 1789, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 0, 0, 0, 1790, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 0, 0, 0, 1791, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, - 1792, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 411, 0, 412, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 0, 0, 649, 416, 417, 418, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 0, 0, 0, 0, 1748, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, + 1791, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 0, 0, 0, 1792, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 0, 0, 0, + 0, 0, 1793, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 0, 0, 0, 0, 0, 1794, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 0, 0, 826, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 0, 0, 835, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 843, 416, 417, 418, 419, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 413, + 0, 414, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 0, 0, 651, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 828, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 0, 0, 927, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 0, - 0, 1023, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 0, 0, 1024, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 0, 0, 1028, 416, 417, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 837, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 845, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 0, 0, 929, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 0, 0, 1025, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 0, 0, - 1029, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 0, 0, 1031, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 0, 0, 1068, 416, 417, 418, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 0, 0, 1026, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 0, 0, 1030, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 0, 0, 1031, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 0, 0, 1116, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 0, 0, 1359, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 0, 0, 1393, 416, 417, 418, 419, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 0, + 0, 1033, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 0, 0, 1070, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 0, 0, 1118, 418, 419, + 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, + 430, 431, 0, 0, 0, 0, 432, 0, 0, 0, + 1361, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 0, 0, 1395, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 0, 0, 1545, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 703, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 0, 0, 1543, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 705, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 706, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 708, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 710, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 711, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 714, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 715, 416, 417, 418, 419, + 430, 431, 0, 0, 0, 0, 432, 0, 707, 418, + 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 708, + 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 710, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 712, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 713, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 716, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 717, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 811, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 819, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 820, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 809, 416, 417, 418, + 430, 431, 0, 0, 0, 0, 432, 0, 821, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 817, 416, 417, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 827, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 818, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 819, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 825, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 834, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 842, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 926, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 951, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 956, 416, 417, 418, 419, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 836, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 844, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 928, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 953, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 958, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 963, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 966, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 967, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 961, 416, 417, 418, + 430, 431, 0, 0, 0, 0, 432, 0, 973, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 964, 416, 417, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 982, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 965, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 971, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 980, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 981, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 982, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 1014, 416, 417, 418, 419, 420, 421, - 422, 423, 424, 425, 426, 427, 428, 429, 0, 0, - 0, 0, 430, 0, 1016, 416, 417, 418, 419, 420, - 421, 422, 423, 424, 425, 426, 427, 428, 429, 0, - 0, 0, 0, 430, 0, 1017, 416, 417, 418, 419, + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 983, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 984, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 1016, 418, 419, 420, 421, 422, 423, 424, + 425, 426, 427, 428, 429, 430, 431, 0, 0, 0, + 0, 432, 0, 1018, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 0, 0, + 0, 0, 432, 0, 1019, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 0, + 0, 0, 0, 432, 0, 1020, 418, 419, 420, 421, + 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, + 0, 0, 0, 0, 432, 0, 1024, 418, 419, 420, + 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, + 431, 0, 0, 0, 0, 432, 0, 1258, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, - 0, 0, 0, 0, 430, 0, 1018, 416, 417, 418, + 430, 431, 0, 0, 0, 0, 432, 0, 1447, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, - 429, 0, 0, 0, 0, 430, 0, 1022, 416, 417, + 429, 430, 431, 0, 0, 0, 0, 432, 0, 1464, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, - 428, 429, 0, 0, 0, 0, 430, 0, 1256, 416, - 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, - 427, 428, 429, 0, 0, 0, 0, 430, 0, 1445, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 0, 0, 0, 0, 430, 0, - 1462, 416, 417, 418, 419, 420, 421, 422, 423, 424, - 425, 426, 427, 428, 429, 0, 0, 0, 0, 430, - 0, 1485, 416, 417, 418, 419, 420, 421, 422, 423, - 424, 425, 426, 427, 428, 429, 0, 0, 0, 0, - 430, 0, 1682, 416, 417, 418, 419, 420, 421, 422, - 423, 424, 425, 426, 427, 428, 429, 0, 0, 0, - 0, 430, 0, 1750 + 428, 429, 430, 431, 0, 0, 0, 0, 432, 0, + 1487, 418, 419, 420, 421, 422, 423, 424, 425, 426, + 427, 428, 429, 430, 431, 0, 0, 0, 0, 432, + 0, 1684, 418, 419, 420, 421, 422, 423, 424, 425, + 426, 427, 428, 429, 430, 431, 0, 0, 0, 0, + 432, 0, 1752 }; static const yytype_int16 yycheck[] = { - 3, 245, 260, 5, 372, 108, 374, 501, 502, 1352, - 3, 5, 4, 195, 272, 6, 4, 385, 200, 6, - 6, 4, 402, 4, 6, 5, 4, 6, 5, 5, - 190, 191, 4, 6, 414, 4, 4, 4, 198, 4, - 4, 4, 4, 194, 5, 196, 5, 5, 5, 49, - 50, 6, 52, 6, 57, 5, 194, 6, 6, 0, - 4, 1013, 65, 201, 7, 323, 1009, 325, 6, 6, - 6, 6, 4, 13, 6, 139, 79, 184, 185, 6, - 184, 185, 1425, 184, 185, 98, 184, 185, 152, 153, - 184, 185, 194, 200, 194, 202, 109, 201, 3, 201, - 201, 6, 200, 75, 117, 118, 119, 79, 202, 195, - 123, 124, 125, 126, 200, 7, 225, 226, 227, 91, - 194, 230, 231, 232, 194, 194, 4, 184, 185, 184, - 185, 201, 201, 184, 185, 4, 81, 194, 83, 7, - 142, 79, 80, 75, 201, 200, 129, 130, 131, 132, - 201, 81, 57, 7, 127, 6, 148, 266, 267, 6, - 184, 185, 142, 184, 185, 142, 142, 195, 1511, 197, - 151, 280, 281, 201, 79, 178, 200, 169, 202, 200, - 7, 202, 197, 6, 1527, 200, 179, 190, 191, 202, - 127, 127, 127, 184, 185, 198, 182, 184, 185, 201, - 182, 7, 169, 206, 200, 208, 202, 201, 196, 201, - 213, 190, 191, 593, 217, 203, 194, 220, 196, 202, - 198, 224, 225, 226, 227, 203, 194, 230, 231, 232, - 194, 6, 201, 201, 492, 493, 201, 201, 201, 201, - 201, 244, 201, 201, 201, 194, 201, 1190, 248, 249, - 194, 201, 201, 201, 512, 198, 256, 184, 185, 85, - 260, 139, 140, 266, 267, 268, 7, 205, 648, 649, - 139, 140, 200, 178, 202, 184, 185, 280, 281, 171, - 172, 173, 174, 102, 103, 190, 191, 190, 191, 108, - 293, 200, 295, 198, 184, 185, 184, 185, 201, 402, - 196, 206, 198, 171, 172, 173, 174, 203, 184, 185, - 200, 195, 200, 197, 572, 194, 200, 171, 172, 173, - 174, 4, 190, 191, 200, 6, 329, 585, 331, 332, - 198, 78, 184, 185, 81, 336, 190, 191, 184, 185, - 196, 344, 1685, 8, 171, 172, 173, 174, 200, 6, - 329, 190, 191, 75, 200, 78, 78, 194, 81, 81, - 83, 83, 201, 190, 191, 171, 172, 173, 174, 372, - 373, 374, 375, 376, 377, 378, 379, 380, 196, 382, - 383, 384, 385, 386, 190, 191, 194, 390, 391, 392, - 393, 394, 78, 396, 373, 81, 375, 376, 377, 337, - 379, 380, 8, 382, 383, 384, 194, 386, 196, 194, - 413, 390, 391, 392, 393, 203, 184, 185, 194, 102, - 103, 104, 105, 75, 329, 195, 78, 197, 111, 81, - 200, 114, 200, 1776, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, 451, 194, - 388, 196, 193, 198, 834, 835, 201, 395, 203, 102, - 103, 7, 190, 191, 200, 108, 202, 372, 373, 374, - 375, 376, 377, 201, 379, 380, 194, 382, 383, 384, - 385, 386, 194, 486, 487, 390, 391, 392, 393, 394, - 81, 396, 750, 194, 194, 196, 196, 600, 198, 499, - 500, 195, 203, 203, 8, 81, 200, 507, 501, 502, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, 201, 528, 529, 530, 193, 98, - 195, 184, 185, 195, 200, 197, 202, 540, 539, 201, - 109, 479, 480, 481, 482, 648, 649, 200, 117, 118, - 119, 554, 184, 185, 123, 124, 125, 126, 561, 75, - 6, 195, 78, 197, 565, 81, 200, 83, 200, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, 184, 185, 81, 1538, 193, 1540, 592, - 1542, 195, 972, 197, 974, 81, 976, 201, 978, 200, - 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, - 611, 83, 613, 614, 615, 616, 617, 618, 619, 200, - 194, 202, 623, 624, 625, 171, 172, 173, 174, 200, - 78, 202, 633, 634, 635, 540, 637, 184, 185, 184, - 185, 184, 185, 644, 190, 191, 75, 184, 185, 78, - 184, 185, 81, 200, 655, 200, 194, 200, 196, 201, - 904, 1604, 665, 200, 1607, 203, 200, 1610, 195, 201, - 197, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, 688, 81, 690, 791, 193, - 693, 184, 185, 696, 197, 698, 78, 200, 202, 702, - 703, 184, 185, 78, 184, 185, 81, 200, 83, 1089, - 184, 185, 650, 195, 693, 197, 1668, 200, 200, 698, - 200, 78, 98, 726, 4, 1105, 200, 190, 191, 184, - 185, 834, 835, 109, 200, 200, 202, 202, 81, 842, - 843, 117, 118, 119, 747, 200, 8, 123, 124, 125, - 126, 4, 195, 753, 197, 184, 185, 4, 201, 195, - 760, 197, 700, 194, 200, 194, 766, 1710, 186, 187, - 188, 195, 201, 195, 4, 193, 200, 1729, 200, 1731, - 195, 1733, 184, 185, 200, 200, 202, 1739, 693, 792, - 195, 696, 195, 698, 200, 200, 202, 200, 801, 200, - 803, 202, 805, 200, 807, 202, 200, 194, 202, 812, - 6, 7, 815, 1756, 194, 200, 1759, 202, 81, 1762, - 83, 194, 1765, 926, 927, 81, 202, 83, 6, 832, - 1782, 6, 1784, 6, 1786, 838, 1330, 1331, 6, 7, - 843, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, 1096, 7, 196, 1235, 193, 98, 1801, 200, - 1803, 202, 1805, 194, 843, 868, 196, 200, 109, 202, - 873, 874, 875, 876, 194, 194, 117, 118, 119, 200, - 194, 202, 123, 124, 125, 126, 889, 194, 194, 184, - 185, 186, 187, 188, 873, 194, 875, 876, 193, 200, - 200, 202, 202, 194, 907, 908, 909, 910, 194, 194, - 889, 912, 194, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, 196, 1031, 932, - 200, 193, 202, 200, 200, 202, 202, 194, 843, 877, - 202, 201, 943, 944, 6, 945, 949, 950, 200, 952, - 202, 954, 955, 932, 98, 958, 959, 200, 6, 202, - 963, 202, 200, 194, 202, 109, 201, 200, 873, 202, - 875, 876, 194, 117, 118, 119, 200, 4, 202, 123, - 124, 125, 126, 200, 889, 202, 1089, 200, 4, 202, - 6, 200, 200, 202, 202, 194, 201, 997, 998, 999, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, 200, 98, 202, 200, 193, 202, - 200, 203, 202, 1267, 194, 194, 109, 932, 200, 200, - 202, 202, 194, 194, 117, 118, 119, 194, 194, 1533, - 123, 124, 125, 126, 1047, 1048, 1049, 194, 194, 4, - 5, 200, 200, 202, 202, 1058, 194, 200, 202, 202, - 200, 200, 202, 202, 200, 1066, 202, 200, 200, 202, - 202, 201, 1073, 1074, 1075, 1076, 1077, 200, 200, 202, - 202, 194, 1083, 1084, 39, 40, 41, 42, 43, 44, - 200, 194, 202, 48, 49, 50, 51, 12, 13, 201, - 201, 56, 57, 58, 98, 200, 61, 202, 1111, 200, - 200, 202, 202, 201, 200, 109, 202, 72, 200, 202, - 202, 201, 201, 117, 118, 119, 194, 1130, 1496, 123, - 124, 125, 126, 1136, 200, 1238, 202, 194, 194, 1142, - 6, 1144, 1145, 196, 6, 6, 1149, 1150, 6, 1152, - 201, 1154, 201, 1156, 201, 1158, 1159, 1160, 196, 196, - 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, - 196, 86, 196, 1176, 142, 198, 91, 92, 203, 94, - 95, 96, 201, 6, 1122, 100, 6, 6, 1191, 1189, - 6, 201, 1195, 6, 1197, 196, 4, 193, 198, 201, - 155, 156, 7, 202, 7, 98, 1207, 200, 202, 200, - 6, 6, 167, 6, 169, 170, 109, 1218, 7, 134, - 135, 136, 7, 195, 117, 118, 119, 98, 6, 6, - 123, 124, 125, 126, 201, 190, 191, 7, 109, 7, - 6, 6, 1245, 198, 6, 4, 117, 118, 119, 53, - 139, 53, 123, 124, 125, 126, 53, 1360, 1502, 53, - 201, 4, 5, 197, 195, 98, 1245, 6, 6, 195, - 1273, 195, 200, 200, 195, 200, 109, 200, 200, 195, - 1283, 195, 6, 1286, 117, 118, 119, 202, 197, 1547, - 123, 124, 125, 126, 1294, 6, 39, 40, 41, 42, - 43, 44, 4, 4, 1283, 48, 49, 50, 51, 202, - 6, 1249, 6, 56, 57, 58, 6, 6, 61, 1322, - 1323, 1259, 7, 201, 142, 7, 7, 7, 142, 72, - 7, 202, 1332, 7, 1334, 142, 1336, 1330, 1331, 7, - 1245, 7, 4, 6, 195, 200, 195, 1350, 1286, 1352, - 1350, 1354, 200, 1353, 1354, 180, 181, 182, 183, 184, - 185, 186, 187, 188, 195, 200, 1369, 195, 193, 202, - 200, 198, 6, 1376, 7, 7, 202, 1380, 1283, 7, - 202, 1384, 1383, 6, 201, 197, 201, 6, 1326, 177, - 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, 1404, 201, 201, 6, 193, 6, 198, 6, 201, - 6, 1669, 155, 156, 98, 7, 196, 6, 6, 194, - 194, 6, 1425, 7, 167, 109, 169, 170, 201, 182, - 7, 12, 13, 117, 118, 119, 7, 1375, 83, 123, - 124, 125, 126, 7, 7, 7, 1384, 1385, 1386, 7, - 6, 201, 7, 7, 7, 7, 7, 7, 1461, 4, - 4, 194, 4, 1466, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, 6, 6, - 201, 7, 193, 1486, 6, 202, 7, 7, 7, 6, - 1493, 6, 6, 1496, 75, 76, 77, 78, 79, 80, - 81, 82, 83, 84, 6, 86, 81, 6, 1511, 4, - 91, 92, 4, 94, 95, 96, 6, 6, 202, 100, - 6, 6, 4, 6, 1527, 200, 6, 1530, 195, 200, - 195, 195, 7, 194, 12, 13, 195, 1537, 198, 1539, - 1533, 1541, 198, 1546, 201, 6, 6, 6, 1551, 1549, - 6, 6, 1552, 134, 135, 136, 175, 176, 177, 178, + 3, 247, 262, 374, 6, 376, 109, 1354, 4, 4, + 3, 503, 504, 5, 274, 6, 387, 7, 4, 6, + 4, 4, 4, 4, 404, 5, 4, 6, 4, 4, + 79, 5, 5, 82, 4, 6, 416, 4, 6, 5, + 4, 6, 5, 5, 5, 79, 5, 5, 82, 49, + 50, 6, 52, 7, 57, 4, 6, 4, 6, 6, + 186, 187, 65, 1015, 198, 325, 200, 327, 6, 186, + 187, 205, 6, 186, 187, 6, 202, 80, 204, 6, + 1427, 186, 187, 197, 6, 202, 99, 204, 202, 202, + 13, 204, 186, 187, 186, 187, 0, 110, 3, 204, + 196, 6, 196, 186, 187, 118, 119, 120, 1011, 203, + 202, 124, 125, 126, 127, 186, 187, 227, 228, 229, + 203, 196, 232, 233, 234, 103, 104, 105, 106, 76, + 7, 82, 203, 197, 112, 199, 4, 115, 7, 203, + 4, 140, 80, 81, 130, 131, 132, 133, 186, 187, + 6, 143, 57, 193, 194, 154, 155, 128, 268, 269, + 128, 193, 194, 143, 6, 203, 1513, 7, 200, 143, + 143, 153, 282, 283, 150, 80, 197, 180, 128, 7, + 128, 202, 1529, 173, 174, 175, 176, 171, 181, 192, + 193, 204, 183, 197, 196, 171, 183, 200, 202, 196, + 196, 203, 198, 198, 200, 208, 203, 210, 6, 205, + 205, 203, 215, 192, 193, 595, 219, 6, 204, 222, + 203, 196, 203, 226, 227, 228, 229, 203, 203, 232, + 233, 234, 196, 203, 494, 495, 203, 203, 203, 203, + 203, 203, 203, 246, 203, 203, 200, 196, 203, 6, + 250, 251, 186, 187, 514, 186, 187, 196, 258, 186, + 187, 7, 262, 6, 8, 268, 269, 270, 198, 207, + 650, 651, 140, 141, 198, 180, 140, 141, 196, 282, + 283, 193, 194, 196, 186, 187, 196, 192, 193, 1192, + 203, 203, 295, 203, 297, 200, 173, 174, 175, 176, + 202, 404, 196, 208, 173, 174, 175, 176, 193, 194, + 186, 187, 193, 194, 574, 197, 193, 194, 203, 82, + 202, 84, 203, 200, 193, 194, 202, 587, 331, 196, + 333, 334, 4, 173, 174, 175, 176, 338, 6, 7, + 1687, 186, 187, 346, 8, 173, 174, 175, 176, 196, + 196, 198, 331, 193, 194, 6, 7, 202, 205, 186, + 187, 188, 189, 190, 76, 193, 194, 79, 195, 86, + 82, 374, 375, 376, 377, 378, 379, 380, 381, 382, + 196, 384, 385, 386, 387, 388, 196, 203, 198, 392, + 393, 394, 395, 396, 196, 398, 375, 6, 377, 378, + 379, 339, 381, 382, 76, 384, 385, 386, 80, 388, + 186, 187, 415, 392, 393, 394, 395, 188, 189, 190, + 92, 196, 82, 196, 195, 198, 331, 173, 174, 175, + 176, 1778, 205, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, 193, 194, 197, + 453, 195, 390, 202, 202, 204, 836, 837, 199, 397, + 204, 202, 186, 187, 199, 82, 196, 202, 198, 374, + 375, 376, 377, 378, 379, 205, 381, 382, 202, 384, + 385, 386, 387, 388, 6, 488, 489, 392, 393, 394, + 395, 396, 752, 398, 203, 82, 196, 8, 198, 602, + 200, 501, 502, 203, 82, 205, 197, 84, 199, 509, + 503, 504, 203, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, 530, 531, 532, + 99, 195, 76, 197, 196, 79, 186, 187, 82, 542, + 541, 110, 203, 481, 482, 483, 484, 650, 651, 118, + 119, 120, 202, 556, 79, 124, 125, 126, 127, 76, + 563, 202, 79, 204, 203, 82, 567, 84, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - 201, 201, 6, 91, 193, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, 201, - 1593, 1496, 1592, 193, 201, 6, 1596, 75, 76, 77, - 78, 79, 80, 81, 82, 83, 84, 6, 86, 1612, - 201, 6, 6, 91, 92, 5, 94, 95, 96, 4, - 6, 202, 100, 201, 196, 201, 7, 201, 201, 6, - 86, 87, 6, 6, 6, 201, 201, 4, 6, 5, - 201, 6, 138, 6, 6, 1645, 4, 6, 4, 1649, - 7, 200, 6, 6, 6, 6, 134, 135, 136, 6, - 98, 6, 4, 6, 201, 6, 6, 1670, 6, 1672, - 6, 109, 1672, 6, 142, 6, 6, 6, 6, 117, - 118, 119, 1685, 6, 6, 123, 124, 125, 126, 6, - 6, 6, 6, 6, 1632, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, 200, - 6, 6, 6, 193, 6, 98, 172, 173, 174, 175, - 176, 195, 6, 6, 202, 198, 109, 1727, 1728, 6, - 201, 6, 5, 189, 117, 118, 119, 193, 1741, 6, - 123, 124, 125, 126, 79, 6, 1749, 201, 201, 6, - 202, 207, 208, 209, 210, 202, 212, 213, 214, 215, - 201, 217, 218, 219, 202, 6, 201, 7, 224, 201, - 1749, 201, 6, 1776, 6, 202, 137, 6, 6, 6, - 98, 6, 1720, 6, 6, 140, 242, 6, 6, 201, - 1793, 109, 1795, 6, 6, 251, 252, 6, 6, 117, - 118, 119, 6, 201, 260, 123, 124, 125, 126, 201, - 6, 6, 201, 201, 1793, 202, 1795, 6, 98, 202, - 6, 201, 1825, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, 293, 294, 295, - 6, 193, 6, 6, 1749, 6, 1825, 6, 6, 305, - 306, 307, 6, 309, 6, 6, 312, 313, 202, 6, - 316, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, 201, 201, 333, 334, 193, - 201, 6, 201, 6, 202, 6, 6, 6, 1793, 6, - 1795, 347, 348, 201, 350, 351, 352, 353, 354, 355, - 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, - 366, 367, 368, 369, 370, 371, 6, 6, 6, 201, - 1825, 6, 201, 201, 6, 381, 6, 201, 6, 6, - 6, 387, 6, 389, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, 1635, 6, - 6, 6, 193, 6, 410, 1119, 1516, 413, 1517, 447, - 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, - 426, 427, 428, 429, 430, 3, 1129, 433, 434, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, 3, 1529, 451, 477, 193, 1263, -1, - -1, 457, -1, -1, -1, -1, 462, -1, -1, -1, - -1, 467, 468, -1, -1, -1, -1, 473, 474, -1, - -1, -1, 478, 479, 480, 481, 482, 483, 484, 485, - 486, 487, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 504, 505, - 506, 507, 508, 509, -1, -1, -1, 513, 514, 515, - 516, 517, -1, -1, -1, 521, -1, 523, 524, -1, - -1, -1, 528, 529, 530, -1, -1, 533, 534, 535, - 536, 537, -1, -1, -1, 4, 5, 543, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 554, -1, - -1, -1, -1, -1, 560, 561, -1, 563, 564, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 39, 40, 41, 42, 43, 44, -1, 583, -1, 48, - 49, 50, 51, -1, -1, 591, 592, 56, 57, 58, - -1, 597, 61, -1, -1, -1, -1, -1, -1, -1, - 208, -1, -1, 72, -1, 213, -1, -1, -1, 217, - -1, -1, 3, 4, 5, -1, 224, -1, 9, 10, - 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, - 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, - 31, 32, 33, 34, 35, 651, -1, -1, 39, 40, - 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, - 51, 52, -1, -1, -1, 56, 57, 58, -1, -1, - 61, -1, 63, 64, 65, -1, -1, -1, -1, 685, - 71, 72, 688, -1, 690, 691, 155, 156, -1, -1, - -1, -1, -1, 699, -1, -1, 702, 703, 167, -1, - 169, 170, -1, -1, -1, -1, -1, -1, -1, -1, - 716, -1, -1, -1, -1, -1, -1, -1, -1, 725, - -1, -1, -1, -1, -1, -1, 21, 22, -1, -1, + 189, 190, 82, 186, 187, 79, 195, 197, 1540, 199, + 1542, 594, 1544, 203, 974, 197, 976, 199, 978, 202, + 980, 203, 603, 604, 605, 606, 607, 608, 609, 610, + 611, 612, 613, 79, 615, 616, 617, 618, 619, 620, + 621, 202, 197, 204, 625, 626, 627, 202, 186, 187, + 186, 187, 186, 187, 635, 636, 637, 542, 639, 186, + 187, 82, 186, 187, 202, 646, 202, 4, 202, 186, + 187, 202, 196, 204, 4, 202, 657, 103, 104, 203, + 906, 4, 196, 109, 667, 202, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + 186, 187, 186, 187, 195, 103, 104, 690, 4, 692, + 793, 109, 695, 204, 196, 698, 202, 700, 202, 186, + 187, 704, 705, 1606, 186, 187, 1609, 186, 187, 1612, + 196, 1091, 186, 187, 652, 202, 695, 197, 1670, 199, + 202, 700, 202, 202, 99, 728, 196, 1107, 202, 6, + 6, 186, 187, 836, 837, 110, 198, 186, 187, 198, + 196, 844, 845, 118, 119, 120, 749, 202, 196, 124, + 125, 126, 127, 202, 196, 755, 186, 187, 186, 187, + 196, 196, 762, 198, 702, 200, 79, 196, 768, 82, + 205, 84, 202, 79, 202, 197, 82, 199, 84, 1731, + 202, 1733, 197, 1735, 199, 196, 202, 202, 204, 1741, + 695, 794, 197, 698, 199, 700, 99, 202, 196, 202, + 803, 204, 805, 197, 807, 199, 809, 110, 202, 1712, + 197, 814, 199, 197, 817, 118, 119, 120, 202, 7, + 196, 124, 125, 126, 127, 928, 929, 196, 196, 204, + 197, 834, 1784, 6, 1786, 202, 1788, 840, 196, 198, + 1332, 1333, 845, 182, 183, 184, 185, 186, 187, 188, + 189, 190, 1098, 12, 13, 1758, 195, 1237, 1761, 99, + 202, 1764, 204, 82, 1767, 84, 845, 870, 196, 202, + 110, 204, 875, 876, 877, 878, 203, 203, 118, 119, + 120, 202, 6, 204, 124, 125, 126, 127, 891, 76, + 6, 202, 79, 204, 196, 82, 875, 84, 877, 878, + 1803, 204, 1805, 202, 1807, 204, 909, 910, 911, 912, + 196, 196, 891, 914, 202, 196, 204, 76, 77, 78, + 79, 80, 81, 82, 83, 84, 85, 202, 87, 204, + 1033, 934, 203, 92, 93, 196, 95, 96, 97, 196, + 845, 879, 101, 196, 945, 946, 196, 947, 951, 952, + 202, 954, 204, 956, 957, 934, 203, 960, 961, 82, + 4, 84, 965, 202, 204, 204, 202, 202, 204, 204, + 875, 196, 877, 878, 203, 196, 135, 136, 137, 202, + 202, 204, 204, 203, 198, 202, 891, 204, 1091, 202, + 202, 204, 204, 202, 202, 204, 204, 196, 196, 999, + 1000, 1001, 196, 203, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, 202, 202, + 204, 204, 195, 1269, 202, 202, 204, 204, 202, 934, + 204, 4, 202, 6, 204, 202, 202, 204, 204, 202, + 202, 204, 204, 1535, 196, 204, 1049, 1050, 1051, 203, + 4, 5, 203, 202, 6, 204, 202, 1060, 204, 202, + 202, 204, 204, 202, 202, 204, 204, 1068, 202, 202, + 204, 204, 6, 205, 1075, 1076, 1077, 1078, 1079, 196, + 202, 202, 204, 204, 1085, 1086, 40, 41, 42, 43, + 44, 45, 202, 196, 204, 49, 50, 51, 52, 12, + 13, 6, 196, 57, 58, 59, 203, 202, 62, 204, + 1113, 202, 202, 204, 204, 202, 202, 204, 204, 73, + 202, 202, 204, 204, 202, 6, 204, 1498, 203, 1132, + 203, 198, 198, 198, 198, 1138, 6, 1240, 200, 143, + 203, 1144, 6, 1146, 1147, 205, 6, 6, 1151, 1152, + 6, 1154, 203, 1156, 6, 1158, 198, 1160, 1161, 1162, + 4, 195, 200, 76, 77, 78, 79, 80, 81, 82, + 83, 84, 85, 7, 87, 1178, 203, 202, 204, 92, + 93, 202, 95, 96, 97, 7, 1124, 6, 101, 6, + 1193, 1191, 6, 6, 1197, 7, 1199, 7, 197, 7, + 203, 6, 6, 157, 158, 7, 6, 6, 1209, 4, + 140, 54, 54, 54, 54, 169, 203, 171, 172, 1220, + 199, 197, 135, 136, 137, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, 193, + 194, 6, 6, 195, 1247, 202, 200, 197, 197, 202, + 6, 202, 197, 197, 6, 202, 202, 197, 1504, 1362, + 199, 4, 4, 7, 143, 6, 6, 6, 1247, 6, + 143, 7, 1275, 99, 7, 7, 7, 7, 143, 7, + 7, 203, 1285, 4, 110, 1288, 6, 197, 202, 1549, + 197, 204, 118, 119, 120, 6, 1296, 200, 124, 125, + 126, 127, 202, 197, 202, 197, 1285, 202, 204, 6, + 199, 204, 203, 1251, 7, 203, 203, 203, 7, 7, + 200, 1324, 1325, 1261, 6, 203, 6, 6, 6, 12, + 13, 7, 198, 6, 1334, 6, 1336, 6, 1338, 1332, + 1333, 196, 1247, 196, 183, 203, 99, 7, 7, 1352, + 1288, 1354, 1352, 1356, 7, 1355, 1356, 110, 84, 7, + 7, 7, 7, 6, 4, 118, 119, 120, 1371, 7, + 7, 124, 125, 126, 127, 1378, 7, 7, 204, 1382, + 1285, 7, 7, 1386, 1385, 4, 6, 203, 6, 196, + 1328, 7, 6, 76, 77, 78, 79, 80, 81, 82, + 83, 84, 85, 1406, 87, 7, 7, 7, 6, 92, + 93, 1671, 95, 96, 97, 203, 6, 6, 101, 82, + 6, 6, 4, 4, 1427, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, 1377, + 4, 204, 202, 195, 6, 6, 6, 6, 1386, 1387, + 1388, 204, 135, 136, 137, 4, 6, 202, 6, 197, + 1463, 7, 197, 197, 6, 1468, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + 197, 6, 200, 196, 195, 1488, 200, 203, 6, 6, + 6, 203, 1495, 12, 13, 1498, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, 210, 203, 92, + 1513, 195, 215, 203, 6, 6, 219, 203, 203, 6, + 6, 204, 5, 226, 4, 6, 1529, 6, 203, 1532, + 7, 203, 198, 203, 6, 203, 6, 6, 203, 1539, + 4, 1541, 1535, 1543, 6, 1548, 203, 203, 6, 6, + 1553, 1551, 139, 6, 1554, 6, 4, 76, 77, 78, + 79, 80, 81, 82, 83, 84, 85, 202, 87, 6, + 4, 6, 4, 92, 93, 6, 95, 96, 97, 6, + 6, 6, 101, 6, 6, 6, 6, 5, 203, 6, + 6, 143, 1595, 1498, 1594, 6, 6, 6, 1598, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, 1614, 6, 6, 6, 195, 135, 136, 137, 6, + 6, 6, 12, 13, 6, 202, 6, 6, 6, 6, + 197, 6, 200, 7, 87, 88, 6, 6, 203, 6, + 5, 80, 6, 6, 6, 203, 203, 1647, 204, 204, + 203, 1651, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 203, 203, 7, 1672, + 195, 1674, 203, 6, 1674, 138, 6, 204, 6, 6, + 141, 6, 6, 6, 1687, 204, 76, 77, 78, 79, + 80, 81, 82, 83, 84, 85, 1634, 87, 6, 6, + 6, 203, 92, 93, 6, 95, 96, 97, 6, 6, + 6, 101, 415, 203, 203, 203, 6, 6, 203, 6, + 204, 174, 175, 176, 177, 178, 99, 203, 6, 1729, + 1730, 6, 6, 6, 6, 6, 6, 6, 191, 6, + 1743, 6, 195, 6, 204, 135, 136, 137, 1751, 203, + 6, 203, 6, 203, 203, 6, 209, 210, 211, 212, + 6, 214, 215, 216, 217, 6, 219, 220, 221, 6, + 6, 6, 1751, 226, 203, 1778, 6, 6, 6, 203, + 6, 6, 6, 6, 1722, 488, 489, 6, 203, 203, + 203, 244, 1795, 6, 1797, 6, 6, 6, 1121, 6, + 253, 254, 1637, 1518, 12, 13, 1519, 449, 3, 262, + 3, 1131, 479, 1531, 204, 1265, 1795, -1, 1797, -1, + -1, -1, -1, -1, 1827, -1, -1, 530, 531, 532, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 747, -1, -1, -1, -1, -1, -1, 754, 755, - -1, -1, -1, -1, 760, -1, -1, -1, -1, -1, - -1, -1, -1, 154, 155, 156, 157, 773, -1, -1, - 776, 162, 163, 164, 165, 166, 167, -1, 169, 170, - -1, -1, -1, -1, -1, -1, 792, -1, -1, -1, - -1, -1, -1, 184, 185, 801, -1, 803, 189, 805, - -1, 807, -1, 194, -1, 413, 812, -1, 199, 815, - 201, -1, 107, -1, -1, 821, -1, 823, 824, -1, - 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, - 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, - 135, 136, 137, 138, 139, -1, -1, -1, -1, -1, - 856, 146, 147, 148, 149, 98, -1, 152, 864, 865, - 866, -1, 868, 158, 159, -1, -1, -1, -1, 164, - -1, -1, -1, -1, -1, -1, -1, -1, 486, 487, - 886, -1, -1, -1, -1, -1, -1, -1, 894, -1, - -1, 897, -1, -1, -1, -1, 6, -1, -1, -1, - -1, 907, 908, 909, 910, 220, -1, -1, 914, -1, + -1, -1, 295, 296, 297, -1, 1751, -1, 1827, -1, + -1, -1, -1, 556, 307, 308, 309, -1, 311, -1, + -1, 314, 315, -1, -1, 318, -1, -1, 76, 77, + 78, 79, 80, 81, 82, 83, 84, 85, -1, 87, + -1, -1, 335, 336, 92, 93, -1, 95, 96, 97, + 1795, 594, 1797, 101, -1, -1, 349, 350, -1, 352, + 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, + 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, + 373, -1, 1827, -1, -1, -1, -1, 135, 136, 137, + 383, -1, -1, -1, -1, -1, 389, -1, 391, -1, + 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, + 187, 188, 189, 190, -1, -1, -1, -1, 195, 412, + -1, -1, 415, -1, -1, 418, 419, 420, 421, 422, + 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, + -1, -1, 435, 436, -1, -1, -1, 690, -1, 692, + -1, -1, -1, 99, -1, -1, 204, -1, -1, -1, + 453, -1, -1, -1, 110, -1, 459, -1, 6, -1, + -1, 464, 118, 119, 120, -1, 469, 470, 124, 125, + 126, 127, 475, 476, -1, -1, -1, 480, 481, 482, + 483, 484, 485, 486, 487, 488, 489, -1, -1, -1, + -1, -1, -1, -1, 6, -1, 749, -1, -1, -1, + -1, -1, -1, 506, 507, 508, 509, 510, 511, -1, + -1, -1, 515, 516, 517, 518, 519, -1, -1, -1, + 523, -1, 525, 526, -1, -1, -1, 530, 531, 532, + -1, -1, 535, 536, 537, 538, 539, -1, -1, 12, + 13, 794, 545, -1, -1, -1, 99, -1, 204, -1, + 803, -1, 805, 556, 807, -1, 809, 110, -1, 562, + 563, 814, 565, 566, 817, 118, 119, 120, -1, -1, + -1, 124, 125, 126, 127, -1, -1, -1, -1, -1, + -1, -1, 585, -1, -1, -1, -1, -1, -1, -1, + 593, 594, -1, -1, -1, -1, 599, -1, -1, -1, + -1, -1, -1, 76, 77, 78, 79, 80, 81, 82, + 83, 84, 85, -1, 87, -1, -1, 870, -1, 92, + 93, -1, 95, 96, 97, -1, -1, -1, 101, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, + 653, 204, -1, -1, 99, -1, 909, 910, 911, 912, + -1, -1, 135, 136, 137, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, 687, -1, -1, 690, -1, 692, + 693, -1, -1, -1, -1, -1, -1, -1, 701, -1, + 99, 704, 705, -1, -1, -1, -1, -1, -1, -1, + -1, 110, 965, -1, -1, 718, -1, -1, -1, 118, + 119, 120, -1, -1, 727, 124, 125, 126, 127, 21, + 22, 204, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 749, -1, -1, -1, + 195, -1, -1, 756, 757, -1, -1, -1, -1, 762, + -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, + -1, -1, 775, -1, -1, 778, -1, -1, 110, -1, + -1, -1, -1, -1, -1, -1, 118, 119, 120, -1, + -1, 794, 124, 125, 126, 127, -1, -1, -1, -1, + 803, -1, 805, -1, 807, 204, 809, -1, -1, -1, + -1, 814, -1, -1, 817, -1, 108, -1, -1, -1, + 823, -1, 825, 826, -1, 117, 118, 119, 120, 121, + 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, + 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, + -1, -1, -1, -1, -1, 858, 148, 149, 150, 151, + 12, 13, 154, 866, 867, 868, -1, 870, 160, 161, + -1, -1, 204, -1, 166, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 888, -1, -1, -1, -1, + -1, -1, -1, 896, -1, -1, 899, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 909, 910, 911, 912, + 222, -1, -1, 916, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 76, 77, 78, 79, 80, 81, + 82, 83, 84, 85, 246, 87, -1, -1, -1, -1, + 92, 93, -1, 95, 96, 97, 1199, -1, -1, 101, + -1, -1, -1, -1, -1, -1, -1, -1, 270, -1, + -1, -1, 965, -1, 6, -1, -1, -1, -1, -1, + -1, -1, 975, -1, 977, -1, 979, -1, 981, -1, + 99, -1, -1, 135, 136, 137, -1, -1, -1, -1, + -1, 110, -1, -1, -1, 287, -1, -1, -1, 118, + 119, 120, -1, -1, -1, 124, 125, 126, 127, 12, + 13, -1, 304, -1, -1, -1, -1, -1, -1, 99, + -1, 333, 334, -1, -1, -1, 1029, -1, -1, 1032, + 110, 6, -1, 1036, 346, 1038, 1039, 1040, 118, 119, + 120, -1, -1, 1046, 124, 125, 126, 127, -1, -1, + -1, -1, 204, -1, -1, -1, -1, -1, -1, -1, + 1063, -1, 1065, -1, -1, -1, -1, -1, 380, -1, + -1, 1324, 1325, 76, 77, 78, 79, 80, 81, 82, + 83, 84, 85, -1, 87, 204, -1, -1, -1, 92, + 93, -1, 95, 96, 97, -1, 1099, -1, 101, -1, + -1, -1, -1, -1, -1, -1, -1, 210, 1111, 1112, + -1, -1, 215, -1, -1, 407, 219, -1, -1, -1, + 1123, 1124, -1, 226, 204, -1, -1, -1, -1, -1, + -1, -1, 135, 136, 137, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 1168, 1169, 1170, -1, -1, + -1, -1, -1, -1, -1, 1178, -1, 1180, -1, -1, + -1, 12, 13, -1, -1, -1, -1, -1, 1191, -1, + -1, -1, 295, -1, 297, -1, 1199, -1, -1, -1, + -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 6, -1, -1, -1, + 195, -1, 1225, 1226, 1227, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 1488, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 76, 77, 78, 79, 80, + 81, 82, 83, 84, 85, -1, 87, -1, -1, 1262, + 6, 92, 93, -1, 95, 96, 97, -1, -1, -1, + 101, -1, -1, 1276, -1, -1, -1, -1, 1281, 1532, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 528, 529, 530, -1, -1, -1, -1, -1, -1, 244, - 12, 13, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, 554, -1, -1, -1, - 193, -1, -1, 268, -1, -1, -1, 963, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 973, -1, 975, - -1, 977, -1, 979, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 592, -1, -1, -1, -1, -1, - 285, -1, -1, 75, 76, 77, 78, 79, 80, 81, - 82, 83, 84, -1, 86, -1, -1, 302, -1, 91, - 92, -1, 94, 95, 96, -1, 331, 332, 100, -1, - -1, 1027, -1, -1, 1030, -1, -1, -1, 1034, 344, - 1036, 1037, 1038, -1, -1, -1, -1, -1, 1044, -1, + -1, 1294, 1295, -1, -1, 6, -1, -1, 1301, 1302, + 1553, -1, -1, 1306, 135, 136, 137, 99, -1, -1, + -1, 1314, 415, -1, -1, -1, -1, -1, 110, -1, + -1, 1324, 1325, 1326, -1, 1328, 118, 119, 120, -1, + -1, -1, 124, 125, 126, 127, -1, 1340, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 1352, + 453, -1, -1, 1356, -1, 667, 1359, -1, -1, -1, + -1, 1364, 1365, 1366, 1367, -1, -1, -1, -1, -1, + -1, -1, -1, 204, 1377, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 1387, 488, 489, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, 1404, 1405, -1, -1, 195, -1, -1, -1, 1412, + -1, -1, 204, -1, -1, -1, 728, -1, -1, 1672, + -1, 1674, -1, -1, -1, -1, -1, 530, 531, 532, + -1, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, 1448, -1, -1, -1, 195, + -1, -1, -1, 556, -1, -1, -1, -1, -1, -1, + 563, -1, -1, 1466, -1, 1468, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + 1483, -1, 1485, -1, 195, 1488, -1, -1, -1, -1, + 1743, 594, 1495, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 1509, -1, -1, -1, + -1, 1514, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 834, -1, -1, -1, -1, -1, 840, 1532, + -1, -1, -1, -1, -1, -1, 1539, -1, 1541, -1, + 1543, -1, -1, 12, 13, -1, -1, -1, -1, -1, + 1553, -1, -1, -1, 1557, 1558, 1559, 1560, 1561, -1, + -1, -1, -1, -1, 876, -1, -1, -1, -1, -1, + -1, -1, -1, 1576, 1577, -1, -1, -1, 1581, 6, + -1, -1, -1, -1, -1, -1, -1, 690, 1591, 692, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 1602, + -1, 704, 705, -1, -1, -1, -1, 76, 77, 78, + 79, 80, 81, 82, 83, 84, 85, -1, 87, -1, + -1, -1, -1, 92, 93, -1, 95, 96, 97, 1632, + -1, -1, 101, -1, 1637, -1, -1, -1, -1, 951, + 952, 1644, 954, -1, 956, 957, 749, -1, 960, 961, + -1, -1, -1, -1, -1, 1658, -1, -1, 1661, -1, + -1, 1664, -1, -1, -1, 1668, 135, 136, 137, 1672, + -1, 1674, 1675, 1676, 1677, 1678, -1, -1, -1, -1, + -1, -1, 1685, -1, -1, 1688, -1, -1, -1, -1, + -1, 794, -1, -1, -1, -1, -1, -1, -1, -1, + 803, -1, 805, -1, 807, -1, 809, -1, -1, -1, + -1, 814, -1, -1, 817, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 1728, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 204, -1, 1049, 1050, 1051, + 1743, -1, 1745, 1746, 1747, 1748, -1, -1, 1060, -1, + 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, + 187, 188, 189, 190, -1, -1, -1, 870, 195, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 1781, 1782, + -1, -1, -1, -1, -1, -1, -1, -1, 1791, 1792, + 1793, 1794, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 1113, -1, -1, -1, -1, 909, 910, 911, 912, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 134, 135, 136, 1061, -1, 1063, 12, 13, - -1, -1, -1, 378, -1, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - 688, -1, 690, 193, -1, -1, -1, -1, -1, -1, - -1, 1097, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 208, 1109, 1110, -1, -1, 213, -1, -1, - 405, 217, -1, -1, -1, 1121, 1122, -1, 224, -1, - 202, 75, 76, 77, 78, 79, 80, 81, 82, 83, - 84, -1, 86, -1, -1, -1, -1, 91, 92, 747, - 94, 95, 96, -1, -1, -1, 100, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 12, 13, -1, - 1166, 1167, 1168, -1, -1, -1, -1, -1, -1, -1, - 1176, -1, 1178, -1, -1, -1, -1, -1, -1, -1, - 134, 135, 136, 1189, 792, -1, -1, 293, -1, 295, - -1, 1197, -1, 801, -1, 803, -1, 805, -1, 807, - -1, -1, -1, -1, 812, -1, -1, 815, -1, -1, - -1, -1, -1, 6, -1, -1, -1, 1223, 1224, 1225, - 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, - -1, 86, -1, -1, -1, -1, 91, 92, -1, 94, - 95, 96, -1, -1, -1, 100, -1, -1, 202, -1, - -1, -1, -1, -1, 1260, -1, 6, -1, -1, -1, - 868, -1, -1, -1, -1, -1, -1, -1, 1274, -1, - -1, -1, -1, 1279, -1, -1, -1, -1, -1, 134, - 135, 136, -1, -1, -1, -1, 1292, 1293, -1, -1, - -1, -1, 6, 1299, 1300, -1, -1, -1, 1304, 907, - 908, 909, 910, -1, -1, -1, 1312, 413, -1, -1, - -1, -1, -1, -1, -1, -1, 1322, 1323, 1324, -1, - 1326, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 1338, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 1350, 451, -1, 202, 1354, -1, - 665, 1357, -1, -1, -1, 963, 1362, 1363, 1364, 1365, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 1375, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 1385, - 486, 487, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, 1402, 1403, -1, -1, - 193, -1, -1, -1, 1410, -1, -1, -1, -1, -1, - -1, 726, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 528, 529, 530, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - 1446, -1, -1, 193, -1, -1, -1, -1, 554, -1, - -1, -1, -1, -1, -1, 561, -1, -1, 1464, -1, - 1466, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, 1481, -1, 1483, -1, 193, - 1486, -1, -1, -1, -1, -1, 592, 1493, -1, -1, + 1132, -1, -1, -1, -1, -1, 1138, -1, -1, -1, + -1, -1, 1144, -1, 1146, 1147, -1, -1, -1, 1151, + 1152, -1, 1154, -1, 1156, -1, 1158, -1, 1160, 1161, + 1162, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 965, -1, -1, -1, 1178, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 1507, -1, -1, -1, -1, 1512, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 832, -1, -1, - -1, -1, -1, 838, 1530, -1, -1, -1, -1, -1, - -1, 1537, -1, 1539, -1, 1541, -1, -1, -1, 12, - 13, -1, -1, -1, -1, 1551, -1, -1, -1, 1555, - 1556, 1557, 1558, 1559, -1, -1, -1, -1, -1, 874, - -1, -1, -1, -1, -1, -1, -1, -1, 1574, 1575, - -1, -1, -1, 1579, -1, -1, -1, -1, -1, -1, - -1, -1, 688, 1589, 690, -1, -1, -1, -1, 1197, - -1, -1, -1, -1, 1600, -1, 702, 703, -1, -1, - -1, -1, 75, 76, 77, 78, 79, 80, 81, 82, - 83, 84, -1, 86, -1, -1, -1, -1, 91, 92, - -1, 94, 95, 96, 1630, -1, -1, 100, -1, 1635, - -1, -1, -1, -1, 949, 950, 1642, 952, -1, 954, - 955, 747, -1, 958, 959, -1, -1, -1, -1, -1, - 1656, -1, -1, 1659, -1, -1, 1662, -1, -1, -1, - 1666, 134, 135, 136, 1670, -1, 1672, 1673, 1674, 1675, - 1676, -1, -1, -1, -1, -1, -1, 1683, -1, -1, - 1686, -1, -1, -1, 12, 13, 792, -1, -1, -1, - -1, -1, -1, -1, -1, 801, -1, 803, -1, 805, - -1, 807, -1, -1, -1, -1, 812, -1, -1, 815, - -1, -1, -1, -1, 1322, 1323, -1, -1, -1, -1, - 1726, -1, -1, -1, -1, -1, -1, -1, -1, 202, - -1, -1, 1047, 1048, 1049, 1741, -1, 1743, 1744, 1745, - 1746, -1, -1, 1058, -1, -1, -1, 75, 76, 77, - 78, 79, 80, 81, 82, 83, 84, -1, 86, -1, - -1, -1, 868, 91, 92, -1, 94, 95, 96, -1, - -1, -1, 100, 1779, 1780, -1, -1, -1, -1, -1, - -1, -1, -1, 1789, 1790, 1791, 1792, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 1111, -1, -1, -1, - -1, 907, 908, 909, 910, -1, 134, 135, 136, -1, - -1, -1, -1, -1, -1, 1130, -1, -1, -1, -1, - -1, 1136, -1, -1, -1, -1, -1, 1142, -1, 1144, - 1145, -1, -1, -1, 1149, 1150, -1, 1152, -1, 1154, - -1, 1156, -1, 1158, 1159, 1160, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 963, -1, -1, - -1, 1176, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 202, -1, 1191, -1, 1486, -1, - 1195, -1, -1, -1, -1, 3, 4, -1, -1, -1, - -1, 9, 10, 11, -1, -1, 14, 15, 16, 17, - 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, - 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, - -1, -1, 1530, -1, -1, -1, -1, 45, 46, 47, - -1, -1, -1, -1, 52, -1, -1, -1, -1, -1, - -1, -1, -1, 1551, -1, 63, 64, 65, -1, -1, - -1, -1, -1, 71, -1, -1, -1, -1, 1273, -1, - -1, 3, 4, 5, -1, -1, -1, 9, 10, 11, - -1, 1286, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, -1, -1, -1, 39, 40, 41, - 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 52, -1, -1, -1, 56, 57, 58, -1, -1, 61, - -1, 63, 64, 65, -1, -1, -1, -1, -1, 71, - 72, -1, -1, -1, -1, -1, 154, 1352, -1, 157, - -1, -1, -1, -1, 162, 163, 164, 165, 166, -1, - -1, 169, -1, -1, 1369, -1, -1, -1, -1, -1, - -1, 1376, 1670, -1, 1672, 1380, 184, 185, -1, 1384, - -1, 189, -1, -1, -1, -1, 194, -1, -1, -1, - -1, 199, -1, 201, -1, -1, -1, -1, -1, 1404, - -1, 1197, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 148, -1, -1, -1, - 1425, -1, 154, 155, 156, 157, -1, -1, -1, -1, - 162, 163, 164, 165, 166, 167, -1, 169, 170, -1, - -1, -1, -1, 1741, -1, -1, -1, -1, -1, -1, - -1, -1, 184, 185, -1, -1, 1461, 189, -1, -1, - -1, -1, 194, -1, 196, -1, 198, 199, -1, 201, - -1, 203, 3, 4, -1, -1, -1, -1, 9, 10, + -1, 1193, -1, -1, -1, 1197, -1, -1, -1, -1, + -1, -1, 3, 4, 5, -1, -1, -1, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, - 31, 32, 33, 34, 35, -1, 1511, -1, -1, -1, - -1, -1, -1, -1, 45, 46, 47, -1, -1, -1, - -1, 52, 1527, -1, -1, -1, 1322, 1323, -1, -1, - -1, -1, 63, 64, 65, -1, -1, -1, -1, -1, - 71, 1546, -1, -1, -1, -1, -1, -1, -1, 3, - 4, -1, -1, -1, 1350, 9, 10, 11, 1354, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, -1, -1, -1, -1, -1, 1593, -1, - -1, 45, 46, 47, -1, -1, -1, -1, 52, -1, - -1, -1, -1, -1, -1, -1, -1, 1612, -1, 63, - 64, 65, -1, -1, -1, -1, -1, 71, -1, -1, - -1, 75, -1, 154, 78, -1, 157, 81, -1, 83, - -1, 162, 163, 164, 165, 166, -1, -1, 169, -1, - -1, 95, -1, -1, -1, -1, -1, -1, 102, 103, - 104, 105, 106, 184, 185, -1, -1, 111, 189, -1, - 114, -1, -1, 194, -1, -1, -1, -1, 199, -1, - 1466, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 1685, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 1486, -1, -1, -1, -1, -1, -1, 1493, -1, -1, - 154, -1, -1, 157, -1, -1, -1, -1, 162, 163, - 164, 165, 166, 6, -1, 169, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 184, 185, -1, -1, 1530, 189, -1, -1, -1, -1, - 194, -1, -1, -1, -1, 199, -1, 201, 202, -1, - -1, -1, -1, -1, -1, 1551, -1, -1, -1, 6, - -1, 3, 4, -1, -1, -1, -1, 9, 10, 11, - -1, 1776, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, -1, -1, -1, -1, -1, - -1, -1, -1, 45, 46, 47, -1, -1, -1, -1, - 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 63, 64, 65, -1, -1, -1, -1, -1, 71, - -1, -1, -1, 75, -1, -1, 78, -1, -1, 81, - -1, 83, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 95, -1, -1, -1, -1, -1, -1, - 102, 103, 104, 105, 106, -1, -1, -1, -1, 111, - -1, -1, 114, -1, 1670, -1, 1672, -1, -1, -1, - -1, -1, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, -1, -1, 6, -1, -1, -1, -1, -1, - -1, -1, 154, -1, -1, 157, -1, -1, -1, -1, - 162, 163, 164, 165, 166, -1, -1, 169, 175, 176, - 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, 184, 185, -1, 1741, 193, 189, -1, -1, - -1, -1, 194, -1, -1, -1, -1, 199, -1, -1, - 202, 3, 4, 5, -1, -1, -1, 9, 10, 11, - -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, - 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, 36, -1, -1, 39, 40, 41, - 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 52, -1, -1, -1, 56, 57, 58, -1, -1, 61, - -1, 63, 64, 65, -1, -1, -1, -1, -1, 71, - 72, -1, -1, 75, -1, -1, 78, -1, -1, 81, - -1, 83, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 95, -1, -1, -1, -1, -1, -1, - 102, 103, 104, 105, 106, -1, -1, -1, -1, 111, - -1, -1, 114, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, -1, -1, 6, 175, 176, - 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, 154, 155, 156, 157, 193, 7, 8, -1, - 162, 163, 164, 165, 166, 167, -1, 169, 170, -1, + 31, 32, 33, 34, 35, 36, -1, 6, -1, 40, + 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 53, -1, -1, -1, 57, 58, 59, -1, + -1, 62, -1, 64, 65, 66, -1, -1, -1, -1, + -1, 72, 73, 1275, -1, -1, 3, 4, 5, -1, + -1, -1, 9, 10, 11, -1, 1288, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, + 6, -1, -1, 40, 41, 42, 43, 44, 45, 46, + 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, + 57, 58, 59, -1, -1, 62, -1, 64, 65, 66, + -1, -1, 7, 8, -1, 72, 73, -1, -1, -1, + -1, -1, 1354, -1, -1, 156, 157, 158, 159, -1, + -1, -1, -1, 164, 165, 166, 167, 168, 169, 1371, + 171, 172, -1, -1, -1, -1, 1378, -1, -1, -1, + 1382, -1, -1, -1, 1386, 186, 187, -1, -1, -1, + 191, -1, -1, -1, -1, 196, -1, -1, -1, -1, + 201, -1, 203, -1, 1406, -1, 1199, -1, 177, 178, + 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, + 189, 190, -1, 150, -1, 1427, 195, -1, -1, 156, + 157, 158, 159, -1, -1, -1, -1, 164, 165, 166, + 167, 168, 169, -1, 171, 172, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, + 187, 1463, -1, -1, 191, -1, -1, -1, -1, 196, + -1, 198, -1, 200, 201, -1, 203, -1, 205, -1, + -1, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 184, 185, -1, -1, -1, 189, -1, -1, - -1, -1, 194, -1, 3, 4, 5, 199, -1, 201, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, + -1, 1513, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, 1529, -1, -1, + 195, 1324, 1325, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 1548, -1, -1, -1, + -1, -1, -1, 7, 3, 4, -1, -1, -1, 1352, + 9, 10, 11, 1356, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, -1, -1, - 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, - 49, 50, 51, 52, -1, -1, -1, 56, 57, 58, - -1, -1, 61, -1, 63, 64, 65, -1, -1, -1, - -1, -1, 71, 72, -1, -1, 75, -1, -1, 78, - -1, -1, 81, -1, 83, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 95, -1, -1, -1, - -1, -1, -1, 102, 103, 104, 105, 106, -1, -1, - -1, -1, 111, -1, -1, 114, 175, 176, 177, 178, - 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, 154, 155, 156, 157, -1, - -1, -1, -1, 162, 163, 164, 165, 166, 167, -1, - 169, 170, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 184, 185, -1, -1, -1, - 189, -1, -1, -1, -1, 194, -1, 3, 4, 5, - 199, -1, 201, 9, 10, 11, -1, -1, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, - 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, - -1, 8, -1, 39, 40, 41, 42, 43, 44, 45, - 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, - 56, 57, 58, -1, -1, 61, -1, 63, 64, 65, - -1, 3, 4, 5, -1, 71, 72, 9, 10, 11, + 29, 30, 31, 32, 33, 34, 35, 36, 37, -1, + -1, -1, -1, 1595, -1, -1, -1, 46, 47, 48, + -1, -1, -1, -1, 53, -1, -1, -1, -1, -1, + -1, -1, 1614, -1, -1, 64, 65, 66, -1, -1, + -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, + 79, -1, -1, 82, -1, 84, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, + -1, -1, -1, -1, 103, 104, 105, 106, 107, -1, + -1, -1, -1, 112, -1, -1, 115, -1, -1, -1, + -1, -1, -1, -1, -1, 1468, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 1687, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 1488, -1, -1, -1, -1, + -1, -1, 1495, -1, -1, -1, -1, 156, -1, -1, + 159, -1, -1, -1, -1, 164, 165, 166, 167, 168, + 8, -1, 171, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, 186, 187, 1532, + -1, 195, 191, -1, -1, -1, -1, 196, -1, -1, + -1, -1, 201, -1, 203, 204, -1, -1, -1, -1, + 1553, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 3, 4, -1, -1, -1, 1778, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, - 32, 33, 34, 35, -1, -1, -1, 39, 40, 41, - 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 52, -1, -1, -1, 56, 57, 58, -1, -1, 61, - -1, 63, 64, 65, -1, -1, -1, -1, -1, 71, - 72, -1, -1, -1, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, 154, 155, - 156, 157, 193, -1, 195, -1, 162, 163, 164, 165, - 166, 167, -1, 169, 170, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 184, 185, - -1, -1, -1, 189, -1, -1, -1, -1, 194, -1, - -1, -1, -1, 199, -1, 201, -1, -1, 175, 176, - 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, 154, 155, 156, 157, 193, -1, -1, -1, - 162, 163, 164, 165, 166, 167, -1, 169, 170, -1, + 32, 33, 34, 35, 36, 37, -1, -1, -1, -1, + -1, -1, -1, -1, 46, 47, 48, -1, -1, -1, + -1, 53, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 64, 65, 66, -1, -1, -1, -1, -1, + 72, -1, -1, -1, 76, -1, -1, 79, -1, -1, + 82, -1, 84, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, + -1, 103, 104, 105, 106, 107, -1, -1, -1, 1672, + 112, 1674, -1, 115, -1, -1, -1, -1, -1, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 8, -1, -1, + -1, -1, -1, -1, 156, -1, -1, 159, -1, -1, + -1, -1, 164, 165, 166, 167, 168, 8, -1, 171, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 184, 185, -1, -1, -1, 189, -1, -1, - -1, -1, 194, -1, 3, 4, 5, 199, -1, 201, - 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 36, -1, -1, - -1, -1, -1, -1, -1, -1, 45, 46, 47, -1, - -1, -1, -1, 52, 12, 13, -1, -1, -1, -1, - -1, -1, -1, -1, 63, 64, 65, -1, -1, -1, - -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, - -1, -1, 81, -1, 83, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 95, -1, -1, -1, - -1, -1, -1, 102, 103, 104, 105, 106, -1, -1, - -1, -1, 111, -1, -1, 114, -1, 75, 76, 77, - 78, 79, 80, 81, 82, 83, 84, -1, 86, -1, - -1, -1, -1, 91, 92, -1, 94, 95, 96, -1, - -1, -1, 100, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 154, -1, -1, 157, -1, - -1, -1, -1, 162, 163, 164, 165, 166, -1, -1, - 169, -1, -1, -1, -1, -1, 134, 135, 136, -1, - -1, -1, -1, -1, -1, 184, 185, -1, -1, -1, - 189, -1, -1, -1, -1, 194, -1, 3, 4, 5, - 199, -1, 201, 9, 10, 11, -1, -1, 14, 15, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, - 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, - 36, -1, -1, -1, -1, -1, -1, -1, -1, 45, - 46, 47, -1, -1, 202, -1, 52, 12, 13, -1, - -1, -1, -1, -1, -1, -1, -1, 63, 64, 65, - -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, - -1, -1, 78, -1, -1, 81, -1, 83, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, - -1, -1, -1, -1, -1, -1, 102, 103, 104, 105, - 106, -1, -1, -1, -1, 111, -1, -1, 114, -1, - 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, - -1, 86, -1, -1, -1, -1, 91, 92, -1, 94, - 95, 96, -1, -1, -1, 100, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 154, -1, - -1, 157, -1, -1, -1, -1, 162, 163, 164, 165, - 166, -1, -1, 169, -1, -1, -1, -1, -1, 134, - 135, 136, -1, -1, -1, -1, -1, -1, 184, 185, - -1, -1, -1, 189, -1, -1, -1, -1, 194, -1, - 3, 4, -1, 199, -1, 201, 9, 10, 11, -1, - -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, - 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, - 33, 34, 35, 36, -1, -1, -1, -1, -1, -1, - -1, -1, 45, 46, 47, -1, -1, 202, -1, 52, - 12, 13, -1, -1, -1, -1, -1, -1, -1, -1, - 63, 64, 65, -1, -1, -1, -1, -1, 71, -1, - -1, -1, 75, -1, -1, 78, -1, -1, 81, -1, - 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 95, -1, -1, -1, -1, -1, -1, 102, - 103, 104, 105, 106, -1, -1, -1, -1, 111, -1, - -1, 114, -1, 75, 76, 77, 78, 79, 80, 81, - 82, 83, 84, -1, 86, -1, -1, -1, -1, 91, - 92, -1, 94, 95, 96, -1, -1, -1, 100, 8, + 1743, -1, -1, -1, 186, 187, -1, -1, -1, 191, + -1, -1, -1, -1, 196, -1, -1, -1, -1, 201, + -1, -1, 204, 3, 4, 5, -1, -1, -1, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, -1, -1, + 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, + 50, 51, 52, 53, -1, -1, -1, 57, 58, 59, + -1, -1, 62, -1, 64, 65, 66, -1, -1, -1, + -1, -1, 72, 73, -1, -1, 76, -1, -1, 79, + -1, -1, 82, -1, 84, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, + -1, -1, -1, 103, 104, 105, 106, 107, -1, -1, + -1, -1, 112, -1, -1, 115, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + 8, -1, -1, -1, 195, -1, 156, 157, 158, 159, + -1, -1, -1, -1, 164, 165, 166, 167, 168, 169, + -1, 171, 172, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 186, 187, -1, -1, + -1, 191, -1, -1, -1, -1, 196, -1, 3, 4, + 5, 201, -1, 203, 9, 10, 11, -1, -1, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, -1, -1, 40, 41, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, + -1, -1, 57, 58, 59, -1, -1, 62, -1, 64, + 65, 66, -1, -1, -1, -1, -1, 72, 73, -1, + -1, 76, -1, -1, 79, -1, -1, 82, -1, 84, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 96, -1, -1, -1, -1, -1, -1, 103, 104, + 105, 106, 107, -1, -1, -1, -1, 112, -1, -1, + 115, -1, -1, -1, -1, -1, -1, -1, -1, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 154, -1, -1, 157, -1, -1, -1, 8, 162, - 163, 164, 165, 166, -1, -1, 169, -1, -1, -1, - -1, -1, 134, 135, 136, -1, -1, -1, -1, -1, - -1, 184, 185, -1, -1, -1, 189, -1, -1, -1, - -1, 194, -1, 3, 4, -1, 199, -1, 201, 9, + -1, 156, 157, 158, 159, -1, -1, -1, -1, 164, + 165, 166, 167, 168, 169, -1, 171, 172, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 186, 187, -1, -1, -1, 191, -1, -1, -1, + -1, 196, -1, 3, 4, 5, 201, -1, 203, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, - 30, 31, 32, 33, 34, 35, 36, -1, -1, -1, - -1, -1, -1, -1, -1, 45, 46, 47, -1, -1, - 202, -1, 52, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 63, 64, 65, -1, -1, -1, -1, - -1, 71, -1, -1, -1, 75, -1, -1, 78, -1, - -1, 81, -1, 83, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 95, -1, -1, -1, -1, - -1, -1, 102, 103, 104, 105, 106, -1, -1, -1, - -1, 111, -1, -1, 114, -1, 175, 176, 177, 178, - 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, 8, - -1, -1, -1, 193, 154, -1, -1, 157, -1, -1, - -1, -1, 162, 163, 164, 165, 166, -1, -1, 169, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, 184, 185, -1, -1, 193, 189, - 195, -1, -1, -1, 194, 200, 3, 4, -1, 199, - -1, 201, 9, 10, 11, -1, -1, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, - -1, -1, -1, -1, -1, -1, -1, -1, 45, 46, - 47, -1, -1, -1, -1, 52, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 63, 64, 65, -1, - -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, - -1, 78, -1, -1, 81, -1, 83, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 95, -1, - -1, -1, -1, -1, -1, 102, 103, 104, 105, 106, - -1, -1, -1, -1, 111, -1, -1, 114, -1, -1, - -1, -1, -1, -1, -1, -1, 175, 176, 177, 178, - 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, 8, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 154, -1, -1, - 157, -1, -1, -1, -1, 162, 163, 164, 165, 166, - -1, -1, 169, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, 184, 185, -1, - -1, 193, 189, -1, -1, -1, -1, 194, 200, 3, - 4, -1, 199, -1, 201, 9, 10, 11, -1, -1, - 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, - 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, - 34, 35, 36, -1, -1, -1, -1, -1, -1, -1, - -1, 45, 46, 47, -1, -1, -1, -1, 52, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 63, - 64, 65, -1, -1, -1, -1, -1, 71, -1, -1, - -1, 75, -1, -1, 78, -1, -1, 81, -1, 83, + 30, 31, 32, 33, 34, 35, 36, -1, 8, -1, + 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, + 50, 51, 52, 53, -1, -1, -1, 57, 58, 59, + -1, -1, 62, -1, 64, 65, 66, -1, 3, 4, + 5, -1, 72, 73, 9, 10, 11, -1, -1, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, -1, -1, -1, 40, 41, 42, 43, 44, + 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, + -1, -1, 57, 58, 59, -1, -1, 62, -1, 64, + 65, 66, -1, -1, -1, -1, -1, 72, 73, -1, + -1, -1, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 156, 157, 158, 159, + 195, -1, 197, -1, 164, 165, 166, 167, 168, 169, + -1, 171, 172, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 186, 187, -1, -1, + -1, 191, -1, -1, -1, -1, 196, -1, -1, -1, + -1, 201, -1, 203, -1, -1, -1, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, 156, 157, 158, 159, 195, 8, -1, -1, 164, + 165, 166, 167, 168, 169, -1, 171, 172, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 95, -1, -1, -1, -1, -1, -1, 102, 103, - 104, 105, 106, -1, -1, -1, -1, 111, -1, -1, - 114, -1, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, -1, -1, -1, -1, 175, 176, 177, 178, - 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - 154, -1, -1, 157, 193, -1, -1, -1, 162, 163, - 164, 165, 166, 202, -1, 169, 175, 176, 177, 178, + -1, 186, 187, -1, -1, -1, 191, -1, -1, -1, + -1, 196, -1, 3, 4, 5, 201, -1, 203, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, -1, -1, + -1, -1, -1, -1, -1, -1, 46, 47, 48, -1, + -1, -1, -1, 53, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 64, 65, 66, -1, -1, -1, + -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, + -1, -1, 82, -1, 84, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, + -1, -1, -1, 103, 104, 105, 106, 107, -1, -1, + -1, -1, 112, -1, -1, 115, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, 156, -1, -1, 159, + -1, -1, -1, -1, 164, 165, 166, 167, 168, -1, + -1, 171, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 186, 187, -1, -1, + 195, 191, 197, -1, -1, -1, 196, 202, 3, 4, + 5, 201, -1, 203, 9, 10, 11, -1, -1, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, -1, -1, -1, -1, -1, -1, -1, + -1, 46, 47, 48, -1, -1, -1, -1, 53, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, + 65, 66, -1, -1, -1, -1, -1, 72, -1, -1, + -1, 76, -1, -1, 79, -1, -1, 82, -1, 84, + 4, 5, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 96, -1, -1, -1, -1, -1, -1, 103, 104, + 105, 106, 107, -1, -1, -1, -1, 112, -1, -1, + 115, -1, -1, -1, -1, -1, 40, 41, 42, 43, + 44, 45, -1, -1, -1, 49, 50, 51, 52, -1, + -1, -1, -1, 57, 58, 59, -1, -1, 62, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, + -1, 156, -1, -1, 159, -1, -1, -1, -1, 164, + 165, 166, 167, 168, -1, -1, 171, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, 186, 187, -1, -1, 195, 191, -1, -1, -1, + -1, 196, 202, 3, 4, -1, 201, -1, 203, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, -1, -1, + -1, -1, -1, 157, 158, -1, 46, 47, 48, -1, + -1, -1, -1, 53, -1, 169, -1, 171, 172, -1, + -1, -1, -1, -1, 64, 65, 66, -1, -1, -1, + -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, + -1, -1, 82, -1, 84, 4, 5, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, + -1, -1, -1, 103, 104, 105, 106, 107, -1, -1, + -1, -1, 112, -1, -1, 115, -1, -1, -1, -1, + -1, 40, 41, 42, 43, 44, 45, -1, -1, -1, + 49, 50, 51, 52, -1, -1, -1, -1, 57, 58, + 59, -1, -1, 62, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 73, -1, 156, -1, -1, 159, + -1, -1, -1, -1, 164, 165, 166, 167, 168, -1, + -1, 171, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 186, 187, -1, -1, + 195, 191, -1, -1, -1, -1, 196, 202, 3, 4, + -1, 201, -1, 203, 9, 10, 11, -1, -1, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, -1, -1, -1, -1, -1, 157, 158, + -1, 46, 47, 48, -1, -1, -1, -1, 53, -1, + 169, -1, 171, 172, -1, -1, -1, -1, -1, 64, + 65, 66, -1, -1, -1, -1, -1, 72, -1, -1, + -1, 76, -1, -1, 79, -1, -1, 82, -1, 84, + 4, 5, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 96, -1, -1, -1, -1, -1, -1, 103, 104, + 105, 106, 107, -1, -1, -1, -1, 112, -1, -1, + 115, -1, -1, -1, -1, -1, 40, 41, 42, 43, + 44, 45, -1, -1, -1, 49, 50, 51, 52, -1, + -1, -1, -1, 57, 58, 59, -1, -1, 62, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, + -1, 156, -1, -1, 159, -1, -1, -1, -1, 164, + 165, 166, 167, 168, -1, -1, 171, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, 186, 187, -1, -1, 195, 191, -1, -1, -1, + -1, 196, 202, 3, 4, -1, 201, -1, 203, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, -1, -1, + -1, -1, -1, 157, 158, -1, 46, 47, 48, -1, + -1, -1, -1, 53, -1, 169, -1, -1, 172, -1, + -1, -1, -1, -1, 64, 65, 66, -1, -1, -1, + -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, + -1, -1, 82, 5, 84, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, + -1, -1, -1, 103, 104, 105, 106, 107, -1, -1, + -1, -1, 112, -1, -1, 115, -1, -1, 40, 41, + 42, 43, 44, 45, -1, -1, -1, 49, 50, 51, + 52, -1, -1, -1, -1, 57, 58, 59, -1, -1, + 62, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 73, -1, -1, -1, -1, 156, -1, -1, 159, + -1, -1, -1, -1, 164, 165, 166, 167, 168, -1, + -1, 171, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 186, 187, -1, -1, + 195, 191, -1, -1, -1, -1, 196, 202, 3, 4, + -1, 201, -1, 203, 9, 10, 11, -1, -1, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, 37, -1, -1, 157, 158, -1, -1, -1, + -1, 46, 47, 48, -1, -1, -1, 169, 53, -1, + 172, 12, 13, -1, -1, -1, -1, -1, -1, 64, + 65, 66, -1, -1, -1, -1, -1, 72, -1, -1, + -1, 76, -1, -1, 79, -1, -1, 82, -1, 84, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 96, -1, -1, -1, -1, -1, -1, 103, 104, + 105, 106, 107, -1, -1, -1, -1, 112, -1, -1, + 115, -1, -1, -1, -1, 76, 77, 78, 79, 80, + 81, 82, 83, 84, 85, -1, 87, -1, -1, -1, + -1, 92, 93, -1, 95, 96, 97, -1, -1, -1, + 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 156, -1, -1, 159, -1, -1, -1, -1, 164, + 165, 166, 167, 168, -1, -1, 171, -1, -1, -1, + -1, -1, -1, -1, 135, 136, 137, -1, -1, -1, + -1, 186, 187, -1, -1, -1, 191, -1, -1, -1, + -1, 196, -1, 3, 4, -1, 201, -1, 203, 9, + 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 37, -1, -1, + -1, -1, -1, -1, -1, -1, 46, 47, 48, -1, + -1, -1, -1, 53, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 64, 65, 66, -1, -1, -1, + -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, + -1, -1, 82, -1, 84, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, + -1, -1, -1, 103, 104, 105, 106, 107, -1, -1, + -1, -1, 112, -1, -1, 115, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, + -1, 202, -1, 204, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 156, -1, -1, 159, + -1, -1, -1, -1, 164, 165, 166, 167, 168, -1, + -1, 171, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, 186, 187, -1, -1, + 195, 191, -1, -1, -1, -1, 196, 202, 3, 4, + -1, 201, -1, 203, 9, 10, 11, -1, -1, 14, + 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, + 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, + 35, 36, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 46, 47, 48, -1, -1, -1, -1, 53, -1, + -1, -1, -1, -1, -1, -1, -1, 3, 4, 64, + 65, 66, -1, 9, 10, 11, -1, 72, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, + 36, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 46, 47, 48, -1, -1, -1, -1, 53, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 64, 65, + 66, -1, -1, -1, -1, -1, 72, -1, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - 184, 185, -1, -1, 193, 189, -1, -1, -1, -1, - 194, 200, 3, 4, -1, 199, -1, 201, 9, 10, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + -1, 156, -1, 202, 159, 204, -1, -1, -1, 164, + 165, 166, 167, 168, -1, -1, 171, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, 186, 187, -1, -1, 195, 191, -1, -1, -1, + -1, 196, 202, -1, 204, -1, 201, -1, 203, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 156, -1, -1, 159, -1, -1, -1, -1, 164, 165, + 166, 167, 168, -1, -1, 171, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + 186, 187, -1, -1, 195, 191, -1, -1, -1, -1, + 196, 202, 3, 4, 5, 201, -1, 203, 9, 10, 11, -1, -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, - 31, 32, 33, 34, 35, 36, -1, -1, -1, -1, - -1, -1, -1, -1, 45, 46, 47, -1, -1, -1, - -1, 52, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 63, 64, 65, -1, -1, -1, -1, -1, - 71, -1, -1, -1, 75, -1, -1, 78, -1, -1, - 81, -1, 83, 4, 5, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 95, -1, -1, -1, -1, -1, - -1, 102, 103, 104, 105, 106, -1, -1, -1, -1, - 111, -1, -1, 114, -1, -1, -1, -1, 39, 40, - 41, 42, 43, 44, -1, -1, -1, 48, 49, 50, - 51, -1, -1, -1, -1, 56, 57, 58, -1, -1, - 61, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 72, -1, 154, -1, -1, 157, -1, -1, -1, - -1, 162, 163, 164, 165, 166, -1, -1, 169, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, 184, 185, -1, -1, 193, 189, -1, - -1, -1, -1, 194, 200, 3, 4, -1, 199, -1, - 201, 9, 10, 11, -1, -1, 14, 15, 16, 17, - 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, - 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, - -1, -1, -1, -1, 155, 156, -1, 45, 46, 47, - -1, -1, -1, -1, 52, -1, 167, -1, -1, 170, - -1, -1, -1, -1, -1, 63, 64, 65, 3, 4, - 5, -1, -1, 71, 9, 10, 11, -1, -1, 14, - 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, - 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, - 35, -1, -1, -1, 39, 40, 41, 42, 43, 44, - 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, - -1, 56, 57, 58, -1, -1, 61, -1, 63, 64, - 65, -1, -1, -1, -1, -1, 71, 72, -1, -1, - -1, -1, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, 154, -1, -1, 157, - 193, -1, -1, -1, 162, 163, 164, 165, 166, 202, - -1, 169, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, 184, 185, -1, -1, - 193, 189, -1, -1, -1, -1, 194, 200, -1, 202, - -1, 199, -1, 201, -1, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, 154, - 155, 156, 157, 193, -1, 195, -1, 162, 163, 164, - 165, 166, 167, -1, 169, 170, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 184, - 185, -1, -1, -1, 189, 3, 4, -1, -1, 194, - -1, 9, 10, 11, 199, -1, 14, 15, 16, 17, - 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, - 28, 29, 30, 31, 32, 33, 34, 35, 36, -1, - -1, -1, -1, -1, -1, -1, -1, 45, 46, 47, - -1, -1, -1, -1, 52, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 63, 64, 65, -1, -1, - -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, - 78, -1, -1, 81, -1, 83, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 95, -1, -1, - -1, -1, -1, -1, 102, 103, 104, 105, 106, -1, - -1, -1, -1, 111, -1, -1, 114, -1, 175, 176, + 31, 32, 33, 34, 35, 36, -1, -1, -1, 40, + 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 53, -1, -1, -1, 57, 58, 59, -1, + -1, 62, -1, 64, 65, 66, -1, -1, -1, -1, + -1, 72, 73, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, -1, -1, -1, -1, -1, -1, -1, + 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, -1, -1, -1, -1, -1, 204, -1, + -1, -1, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, -1, -1, -1, 156, 157, 158, 159, 204, + -1, -1, -1, 164, 165, 166, 167, 168, 169, -1, + 171, 172, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 186, 187, -1, -1, -1, + 191, 3, 4, -1, -1, 196, -1, 9, 10, 11, + 201, -1, 14, 15, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, -1, -1, -1, -1, + -1, -1, -1, -1, 46, 47, 48, -1, -1, -1, + -1, 53, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 64, 65, 66, -1, -1, -1, -1, -1, + 72, -1, -1, -1, 76, -1, -1, 79, -1, -1, + 82, -1, 84, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, + -1, 103, 104, 105, 106, 107, -1, -1, -1, -1, + 112, -1, -1, 115, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, + -1, 204, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 156, -1, -1, 159, -1, -1, + -1, -1, 164, 165, 166, 167, 168, -1, -1, 171, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, -1, -1, - 0, 1, -1, 200, 4, 202, -1, -1, -1, -1, - -1, -1, 12, 13, -1, -1, 154, -1, -1, 157, - -1, -1, -1, -1, 162, 163, 164, 165, 166, -1, - -1, 169, -1, -1, -1, -1, -1, 37, 38, -1, - -1, -1, -1, -1, -1, -1, 184, 185, -1, -1, - -1, 189, -1, 53, 54, 55, 194, -1, -1, 59, - 60, 199, 62, -1, -1, -1, 66, 67, -1, 69, - 70, -1, -1, 73, 74, 75, 76, 77, 78, 79, - 80, 81, 82, 83, 84, -1, 86, 87, 88, 89, - 90, 91, 92, 93, 94, 95, 96, 97, -1, 99, - 100, 101, 102, 103, 104, 105, 106, 107, -1, 109, - 110, 111, 112, 113, 114, 115, 116, -1, -1, -1, - 120, 121, 122, 4, -1, -1, -1, -1, 128, -1, - -1, 12, 13, 133, 134, 135, 136, -1, -1, 139, - -1, 141, -1, 143, 144, 145, 146, 147, 148, 149, - 150, 151, 152, 153, -1, -1, 37, 38, 158, 159, - 160, 161, -1, -1, -1, -1, -1, -1, 168, 169, - -1, -1, 53, 54, 55, -1, -1, -1, 59, 60, - -1, 62, -1, -1, -1, 66, 67, -1, 69, 70, - -1, -1, 73, 74, 75, 76, 77, 78, 79, 80, - 81, 82, 83, 84, -1, 86, 87, 88, 89, 90, - 91, 92, 93, 94, 95, 96, 97, -1, 99, 100, - 101, 102, 103, 104, 105, 106, 107, -1, 109, 110, - 111, 112, 113, 114, 115, 116, -1, -1, -1, 120, - 121, 122, -1, -1, -1, -1, -1, 128, -1, -1, - 12, 13, 133, 134, 135, 136, 5, -1, 139, -1, - 141, -1, 143, 144, 145, 146, 147, 148, 149, 150, - 151, 152, 153, -1, -1, -1, -1, 158, 159, 160, - 161, -1, -1, -1, -1, -1, -1, 168, 169, -1, - 39, 40, 41, 42, 43, 44, -1, -1, -1, 48, - 49, 50, 51, -1, -1, -1, -1, 56, 57, 58, - -1, -1, 61, 75, 76, 77, 78, 79, 80, 81, - 82, 83, 84, 72, 86, -1, -1, -1, -1, 91, - 92, -1, 94, 95, 96, -1, -1, -1, 100, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, 200, -1, 202, -1, -1, -1, - -1, -1, 134, 135, 136, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, - -1, -1, 202, -1, -1, -1, 155, 156, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 167, -1, - -1, 170, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, -1, -1, -1, -1, -1, -1, -1, 202, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - -1, -1, -1, -1, -1, -1, -1, 202, 175, 176, + 187, 188, 189, 190, 186, 187, -1, -1, 195, 191, + 3, 4, -1, -1, 196, 202, 9, 10, 11, 201, + -1, 14, 15, 16, 17, 18, 19, 20, 21, 22, + 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 46, 47, 48, -1, -1, -1, -1, + 53, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 64, 65, 66, -1, -1, -1, -1, -1, 72, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, -1, -1, - -1, -1, -1, -1, -1, 202, 175, 176, 177, 178, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, + 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + -1, -1, -1, -1, -1, 204, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 0, 1, -1, -1, + 4, -1, -1, -1, -1, -1, -1, -1, 12, 13, + -1, -1, -1, 156, -1, -1, 159, -1, -1, -1, + -1, 164, 165, 166, 167, 168, -1, -1, 171, -1, + -1, -1, -1, -1, 38, 39, -1, -1, -1, -1, + -1, -1, -1, 186, 187, -1, -1, -1, 191, -1, + 54, 55, 56, 196, -1, -1, 60, 61, 201, 63, + -1, -1, -1, 67, 68, -1, 70, 71, -1, -1, + 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, + 84, 85, -1, 87, 88, 89, 90, 91, 92, 93, + 94, 95, 96, 97, 98, -1, 100, 101, 102, 103, + 104, 105, 106, 107, 108, -1, 110, 111, 112, 113, + 114, 115, 116, 117, -1, -1, -1, 121, 122, 123, + 4, -1, -1, -1, -1, 129, -1, -1, 12, 13, + 134, 135, 136, 137, -1, -1, 140, -1, 142, -1, + 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, + 154, 155, -1, -1, 38, 39, 160, 161, 162, 163, + -1, -1, -1, -1, -1, -1, 170, 171, -1, -1, + 54, 55, 56, -1, -1, -1, 60, 61, -1, 63, + -1, -1, -1, 67, 68, -1, 70, 71, -1, -1, + 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, + 84, 85, -1, 87, 88, 89, 90, 91, 92, 93, + 94, 95, 96, 97, 98, -1, 100, 101, 102, 103, + 104, 105, 106, 107, 108, -1, 110, 111, 112, 113, + 114, 115, 116, 117, -1, -1, -1, 121, 122, 123, + -1, -1, -1, -1, -1, 129, -1, -1, -1, -1, + 134, 135, 136, 137, -1, -1, 140, -1, 142, -1, + 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, + 154, 155, -1, -1, -1, -1, 160, 161, 162, 163, + -1, -1, -1, -1, -1, -1, 170, 171, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, -1, -1, -1, -1, - -1, -1, -1, 202, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, -1, -1, -1, -1, -1, -1, - -1, 202, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, -1, -1, -1, -1, -1, -1, -1, 202, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - -1, -1, -1, -1, -1, -1, -1, 202, 175, 176, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, + -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, + -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, -1, -1, - -1, -1, -1, -1, -1, 202, 175, 176, 177, 178, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, -1, -1, -1, -1, - -1, -1, -1, 202, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, -1, -1, -1, -1, -1, -1, - -1, 202, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, -1, -1, -1, -1, -1, -1, -1, 202, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - -1, -1, -1, -1, -1, -1, -1, 202, 175, 176, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, + -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, + -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, -1, -1, - -1, -1, -1, -1, -1, 202, 175, 176, 177, 178, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, -1, -1, -1, -1, - -1, -1, -1, 202, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, -1, -1, -1, -1, -1, -1, - -1, 202, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, -1, -1, -1, -1, -1, -1, -1, 202, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - -1, -1, -1, -1, -1, -1, -1, 202, 175, 176, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, + -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, + -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, -1, -1, - -1, -1, -1, -1, -1, 202, 175, 176, 177, 178, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, -1, -1, -1, -1, - -1, -1, -1, 202, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, -1, -1, -1, -1, -1, -1, - -1, 202, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, -1, -1, -1, -1, -1, -1, -1, 202, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - -1, -1, -1, -1, -1, -1, -1, 202, 175, 176, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, + -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, + -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, -1, -1, - -1, -1, -1, -1, -1, 202, 175, 176, 177, 178, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, -1, -1, -1, -1, - -1, -1, -1, 202, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, -1, -1, -1, -1, -1, -1, - -1, 202, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, -1, -1, -1, -1, -1, -1, -1, 202, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - -1, -1, -1, -1, -1, -1, -1, 202, 175, 176, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, + -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, + -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, -1, -1, - -1, -1, -1, -1, -1, 202, 175, 176, 177, 178, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + -1, -1, -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, -1, -1, -1, -1, - -1, -1, -1, 202, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, -1, -1, -1, -1, -1, -1, - -1, 202, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, -1, -1, -1, -1, -1, -1, 201, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, -1, 201, 175, 176, 177, 178, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + -1, -1, -1, -1, -1, 204, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, + -1, -1, -1, 204, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, + 203, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, -1, -1, -1, -1, 203, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, -1, -1, -1, -1, - -1, -1, 201, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, -1, -1, -1, 200, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, 200, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, - 200, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, -1, -1, -1, -1, -1, 200, 175, 176, 177, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + -1, -1, -1, -1, 203, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, + 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, + -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, -1, -1, -1, - -1, -1, 200, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, -1, -1, -1, 200, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, 200, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, - 200, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, -1, -1, -1, -1, -1, 200, 175, 176, 177, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, + -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, + 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, + -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, -1, -1, -1, - -1, -1, 200, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, -1, -1, -1, 200, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, 200, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, - 200, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, -1, -1, -1, -1, -1, 200, 175, 176, 177, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, + -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, + 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, + -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, -1, -1, -1, - -1, -1, 200, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, -1, -1, -1, 200, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, 200, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, - 200, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, -1, -1, -1, -1, -1, 200, 175, 176, 177, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, + -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, + 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, + -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, -1, -1, -1, - -1, -1, 200, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, -1, -1, -1, 200, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, 200, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, - 200, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, -1, -1, -1, -1, -1, 200, 175, 176, 177, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, + -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, + 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, + -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, -1, -1, -1, - -1, -1, 200, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, -1, -1, -1, 200, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, 200, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, - 200, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, -1, -1, -1, -1, -1, 200, 175, 176, 177, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, + -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, + 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, + -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, -1, -1, -1, - -1, -1, 200, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, -1, -1, -1, 200, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, 200, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, - 200, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, -1, -1, -1, -1, -1, 200, 175, 176, 177, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, + -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, + 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, + -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, -1, -1, -1, - -1, -1, 200, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, -1, -1, -1, 200, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, 200, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, - 200, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, -1, -1, -1, -1, -1, 200, 175, 176, 177, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, + -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, + 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, -1, -1, -1, + -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, -1, -1, -1, -1, -1, 202, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, -1, -1, -1, - -1, -1, 200, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, -1, -1, -1, 200, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, 200, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, - 200, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, 195, -1, 197, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, -1, -1, 197, 175, 176, 177, - 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, -1, -1, 197, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - -1, -1, 197, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, 197, 175, 176, 177, 178, + 188, 189, 190, -1, -1, -1, -1, 195, -1, 197, + -1, 199, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, -1, -1, 199, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, 199, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, -1, -1, 197, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, -1, - -1, 197, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, -1, -1, 197, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, -1, -1, 197, 175, 176, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + 199, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, 199, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, -1, -1, 199, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, -1, -1, 199, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, -1, -1, - 197, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, -1, -1, 197, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, -1, -1, 197, 175, 176, 177, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + -1, -1, 199, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, -1, -1, 199, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, -1, -1, 199, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, -1, -1, 197, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - -1, -1, 197, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, -1, -1, 197, 175, 176, 177, 178, + 188, 189, 190, -1, -1, -1, -1, 195, -1, -1, + -1, 199, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, -1, -1, 199, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, -1, -1, 199, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, -1, -1, 197, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, 195, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - 195, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, 195, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, 195, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, 195, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, 195, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, 195, 175, 176, 177, 178, + 189, 190, -1, -1, -1, -1, 195, -1, -1, -1, + 199, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, -1, -1, 199, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, -1, -1, 199, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, 195, 175, 176, 177, + 189, 190, -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, 195, 175, 176, + 188, 189, 190, -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, 195, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, 195, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - 195, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, 195, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, 195, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, 195, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, 195, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, 195, 175, 176, 177, 178, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, 195, 175, 176, 177, + 189, 190, -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, 195, 175, 176, + 188, 189, 190, -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, 195, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, 195, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - 195, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, 195, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, 195, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, 195, 175, 176, 177, 178, 179, 180, - 181, 182, 183, 184, 185, 186, 187, 188, -1, -1, - -1, -1, 193, -1, 195, 175, 176, 177, 178, 179, - 180, 181, 182, 183, 184, 185, 186, 187, 188, -1, - -1, -1, -1, 193, -1, 195, 175, 176, 177, 178, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - -1, -1, -1, -1, 193, -1, 195, 175, 176, 177, + 189, 190, -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, - 188, -1, -1, -1, -1, 193, -1, 195, 175, 176, + 188, 189, 190, -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, -1, -1, -1, -1, 193, -1, 195, 175, - 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, - 186, 187, 188, -1, -1, -1, -1, 193, -1, 195, - 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, - 185, 186, 187, 188, -1, -1, -1, -1, 193, -1, - 195, 175, 176, 177, 178, 179, 180, 181, 182, 183, - 184, 185, 186, 187, 188, -1, -1, -1, -1, 193, - -1, 195, 175, 176, 177, 178, 179, 180, 181, 182, - 183, 184, 185, 186, 187, 188, -1, -1, -1, -1, - 193, -1, 195, 175, 176, 177, 178, 179, 180, 181, - 182, 183, 184, 185, 186, 187, 188, -1, -1, -1, - -1, 193, -1, 195 -}; - - /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing - symbol of state STATE-NUM. */ -static const yytype_uint16 yystos[] = -{ - 0, 1, 205, 206, 6, 0, 4, 12, 13, 37, - 38, 53, 54, 55, 59, 60, 62, 66, 67, 69, - 70, 73, 74, 75, 76, 77, 78, 79, 80, 81, - 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, - 93, 94, 95, 96, 97, 99, 100, 101, 102, 103, - 104, 105, 106, 107, 109, 110, 111, 112, 113, 114, - 115, 116, 120, 121, 122, 128, 133, 134, 135, 136, - 139, 141, 143, 144, 145, 146, 147, 148, 149, 150, - 151, 152, 153, 158, 159, 160, 161, 168, 169, 207, - 209, 210, 230, 247, 248, 251, 252, 253, 254, 255, - 256, 257, 258, 279, 280, 281, 282, 300, 301, 3, - 4, 5, 9, 10, 11, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, - 29, 30, 31, 32, 33, 34, 35, 39, 40, 41, - 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - 52, 56, 57, 58, 61, 63, 64, 65, 71, 72, - 148, 154, 155, 156, 157, 162, 163, 164, 165, 166, - 167, 170, 184, 185, 189, 194, 196, 198, 199, 201, - 203, 228, 283, 284, 296, 297, 300, 301, 13, 81, - 194, 194, 6, 201, 6, 6, 6, 6, 194, 6, - 6, 196, 196, 194, 196, 228, 228, 194, 201, 194, - 194, 4, 194, 201, 194, 194, 4, 201, 194, 194, - 85, 81, 81, 6, 201, 75, 78, 81, 81, 81, - 78, 81, 83, 83, 75, 78, 81, 83, 78, 81, - 83, 78, 81, 194, 78, 139, 152, 153, 201, 184, - 185, 194, 201, 286, 287, 286, 201, 75, 78, 81, - 201, 286, 4, 75, 79, 91, 81, 83, 81, 78, - 4, 148, 201, 300, 301, 4, 6, 75, 78, 81, - 78, 81, 4, 4, 4, 4, 5, 36, 75, 78, - 81, 83, 95, 185, 194, 201, 248, 258, 283, 289, - 290, 291, 300, 301, 4, 194, 194, 194, 4, 201, - 293, 4, 194, 194, 6, 6, 196, 4, 297, 301, - 4, 297, 5, 201, 5, 201, 4, 283, 283, 196, - 6, 194, 201, 194, 196, 203, 228, 7, 171, 172, - 173, 174, 190, 191, 226, 227, 4, 194, 196, 198, - 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, - 228, 228, 228, 228, 228, 228, 228, 228, 228, 228, - 228, 228, 228, 228, 228, 194, 194, 194, 194, 194, - 194, 228, 228, 228, 228, 194, 228, 228, 228, 7, - 194, 194, 194, 228, 194, 194, 196, 283, 283, 283, - 283, 283, 4, 139, 140, 301, 4, 248, 249, 250, - 201, 195, 197, 201, 229, 6, 175, 176, 177, 178, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, + 184, 185, 186, 187, 188, 189, 190, -1, -1, -1, + -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, + 183, 184, 185, 186, 187, 188, 189, 190, -1, -1, + -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, + 182, 183, 184, 185, 186, 187, 188, 189, 190, -1, + -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, + 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, + -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, + 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, + 190, -1, -1, -1, -1, 195, -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, - 193, 201, 6, 194, 196, 227, 6, 283, 4, 296, - 297, 301, 296, 283, 296, 299, 232, 235, 297, 301, - 283, 185, 283, 291, 292, 283, 283, 194, 283, 292, - 283, 283, 194, 292, 283, 283, 289, 194, 201, 292, - 290, 290, 290, 194, 194, 290, 290, 290, 194, 194, - 194, 194, 194, 194, 194, 194, 201, 201, 283, 4, - 289, 293, 201, 201, 286, 286, 286, 283, 283, 184, - 185, 201, 201, 286, 201, 201, 201, 184, 185, 194, - 250, 286, 201, 194, 201, 194, 194, 194, 290, 290, - 289, 194, 4, 196, 196, 250, 6, 6, 201, 201, - 201, 290, 290, 196, 196, 196, 194, 196, 198, 228, - 196, 5, 142, 201, 5, 142, 5, 142, 5, 142, - 75, 78, 81, 83, 201, 283, 291, 283, 202, 292, - 8, 186, 6, 194, 196, 228, 6, 283, 283, 283, - 198, 283, 201, 142, 283, 283, 283, 6, 6, 6, - 250, 6, 250, 196, 6, 201, 296, 289, 289, 283, - 283, 201, 201, 229, 297, 289, 6, 196, 283, 283, - 4, 283, 283, 283, 283, 283, 283, 283, 283, 283, - 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, - 283, 283, 283, 299, 296, 299, 296, 296, 296, 289, - 296, 296, 283, 296, 296, 296, 299, 296, 283, 297, - 283, 296, 296, 296, 296, 301, 297, 301, 195, 197, - 7, 226, 227, 198, 7, 228, 202, 75, 78, 81, - 83, 247, 283, 292, 7, 226, 283, 283, 283, 283, - 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, - 283, 211, 283, 283, 6, 196, 198, 195, 200, 195, - 200, 200, 195, 200, 197, 200, 231, 197, 231, 200, - 200, 195, 186, 200, 202, 195, 195, 283, 195, 202, - 195, 195, 283, 202, 195, 195, 7, 283, 283, 202, - 6, 6, 6, 283, 283, 7, 7, 276, 276, 283, - 241, 283, 297, 242, 283, 297, 243, 283, 297, 244, - 283, 297, 283, 283, 283, 292, 292, 201, 195, 6, - 201, 250, 250, 200, 200, 200, 286, 286, 249, 249, - 200, 283, 283, 283, 283, 262, 200, 250, 283, 283, - 283, 283, 283, 7, 277, 6, 7, 283, 6, 283, - 283, 202, 292, 292, 292, 6, 6, 283, 283, 283, - 283, 4, 201, 229, 301, 53, 283, 53, 53, 53, - 5, 201, 5, 201, 5, 201, 5, 201, 292, 195, - 202, 283, 201, 283, 291, 201, 229, 195, 195, 195, - 139, 200, 250, 201, 8, 195, 197, 202, 202, 250, - 197, 195, 200, 202, 195, 197, 283, 292, 226, 6, - 6, 283, 195, 197, 227, 229, 229, 229, 229, 229, - 229, 229, 229, 229, 229, 229, 200, 229, 229, 229, - 229, 229, 229, 229, 200, 200, 200, 229, 200, 229, - 229, 195, 195, 200, 200, 200, 200, 200, 229, 229, - 229, 195, 229, 285, 298, 6, 200, 195, 195, 200, - 229, 195, 195, 197, 226, 227, 198, 226, 227, 297, - 283, 6, 4, 4, 201, 294, 229, 201, 201, 201, - 201, 202, 202, 289, 8, 4, 129, 130, 131, 132, - 202, 214, 218, 221, 223, 224, 195, 197, 283, 4, - 6, 182, 208, 292, 6, 292, 283, 6, 296, 6, - 301, 6, 296, 283, 297, 7, 283, 291, 142, 7, - 7, 195, 7, 142, 7, 7, 195, 142, 7, 7, - 283, 195, 202, 201, 195, 195, 283, 289, 4, 275, - 6, 195, 195, 200, 195, 200, 195, 200, 195, 200, - 195, 195, 195, 202, 202, 292, 198, 250, 202, 202, - 286, 283, 283, 202, 202, 283, 286, 200, 200, 200, - 98, 109, 117, 118, 119, 123, 124, 125, 126, 272, - 273, 286, 202, 259, 195, 202, 195, 195, 195, 283, - 6, 283, 195, 197, 197, 202, 202, 202, 197, 197, - 200, 197, 292, 197, 201, 202, 201, 201, 201, 292, - 292, 292, 292, 202, 8, 292, 292, 7, 7, 7, - 198, 283, 202, 283, 283, 7, 198, 202, 201, 289, - 6, 226, 227, 226, 227, 202, 202, 289, 197, 227, - 198, 227, 296, 283, 283, 283, 283, 292, 296, 289, - 296, 296, 297, 237, 239, 283, 296, 283, 6, 4, - 139, 140, 283, 6, 6, 6, 7, 196, 293, 295, - 6, 292, 292, 292, 292, 229, 6, 283, 215, 194, - 194, 201, 225, 6, 227, 227, 197, 182, 296, 195, - 195, 200, 7, 229, 229, 286, 81, 83, 289, 289, - 7, 289, 81, 83, 289, 289, 7, 83, 289, 289, - 6, 7, 7, 292, 7, 7, 98, 274, 6, 7, - 226, 283, 226, 283, 226, 283, 226, 283, 7, 7, - 7, 7, 7, 202, 4, 202, 200, 200, 200, 202, - 202, 286, 286, 286, 4, 6, 201, 6, 194, 6, - 127, 6, 127, 6, 127, 6, 127, 202, 273, 200, - 272, 7, 6, 7, 7, 7, 6, 201, 6, 6, - 6, 81, 283, 6, 6, 283, 198, 202, 283, 283, - 283, 283, 202, 202, 202, 202, 283, 202, 202, 289, - 289, 289, 4, 200, 8, 8, 195, 4, 4, 289, - 202, 283, 6, 283, 6, 229, 6, 6, 4, 6, - 229, 229, 229, 229, 229, 200, 195, 195, 195, 200, - 200, 229, 238, 200, 229, 240, 195, 195, 6, 7, - 226, 227, 198, 7, 6, 293, 283, 200, 202, 202, - 202, 202, 202, 226, 194, 283, 283, 288, 289, 201, - 198, 6, 6, 208, 6, 283, 201, 283, 297, 6, - 6, 6, 201, 201, 91, 246, 246, 289, 6, 201, - 201, 6, 6, 289, 201, 6, 6, 5, 289, 202, - 289, 289, 4, 6, 289, 289, 289, 289, 289, 289, - 289, 289, 201, 201, 7, 6, 7, 283, 283, 283, - 201, 201, 200, 202, 200, 202, 200, 202, 196, 283, - 289, 283, 6, 6, 6, 6, 283, 286, 202, 5, - 201, 289, 201, 201, 201, 289, 292, 201, 6, 197, - 4, 229, 200, 200, 200, 200, 229, 6, 6, 138, - 283, 283, 283, 6, 6, 7, 200, 6, 6, 6, - 226, 227, 296, 297, 4, 4, 151, 297, 283, 6, - 4, 294, 6, 197, 293, 6, 6, 6, 6, 289, - 212, 283, 200, 200, 200, 202, 213, 283, 4, 296, - 200, 289, 297, 283, 283, 286, 6, 6, 6, 283, - 283, 6, 283, 5, 6, 201, 6, 142, 245, 283, - 6, 6, 6, 6, 6, 6, 4, 6, 6, 292, - 292, 283, 283, 297, 202, 195, 200, 202, 249, 249, - 286, 6, 263, 286, 6, 264, 286, 6, 265, 283, - 202, 200, 195, 202, 200, 6, 185, 286, 6, 288, - 286, 286, 6, 202, 283, 6, 283, 283, 283, 283, - 289, 200, 202, 8, 202, 195, 201, 283, 297, 289, - 289, 195, 229, 201, 289, 297, 201, 283, 297, 297, - 6, 6, 7, 6, 198, 6, 195, 200, 283, 283, - 289, 201, 200, 202, 6, 283, 233, 234, 202, 202, - 202, 202, 202, 5, 288, 79, 6, 201, 202, 202, - 201, 6, 6, 201, 283, 202, 202, 200, 201, 200, - 201, 200, 201, 197, 6, 289, 7, 201, 283, 200, - 202, 200, 200, 6, 202, 200, 200, 200, 200, 137, - 283, 283, 292, 6, 6, 202, 6, 236, 283, 299, - 293, 140, 216, 283, 200, 200, 288, 283, 6, 200, - 237, 239, 6, 6, 6, 6, 6, 6, 202, 201, - 288, 102, 103, 108, 278, 102, 103, 278, 292, 249, - 200, 202, 283, 286, 272, 283, 286, 272, 283, 286, - 272, 6, 200, 202, 289, 250, 202, 286, 6, 292, - 286, 283, 283, 283, 283, 283, 202, 202, 202, 6, - 200, 202, 7, 202, 6, 201, 283, 283, 202, 283, - 202, 202, 201, 283, 202, 201, 286, 289, 6, 201, - 286, 6, 202, 202, 283, 202, 200, 202, 202, 200, - 202, 202, 200, 202, 289, 6, 98, 202, 260, 201, - 200, 202, 200, 200, 200, 200, 200, 6, 6, 283, - 297, 213, 195, 200, 6, 201, 200, 283, 202, 6, - 286, 6, 286, 6, 6, 202, 6, 266, 283, 6, - 6, 267, 283, 6, 6, 268, 283, 6, 202, 283, - 272, 250, 292, 6, 286, 292, 283, 283, 283, 283, - 7, 202, 219, 283, 288, 283, 200, 200, 200, 201, - 202, 201, 202, 201, 202, 6, 6, 202, 202, 261, - 202, 200, 202, 200, 200, 200, 200, 297, 6, 201, - 195, 202, 202, 283, 286, 286, 272, 6, 269, 272, - 6, 270, 272, 6, 271, 272, 6, 292, 6, 283, - 283, 283, 283, 217, 296, 222, 201, 6, 202, 200, - 200, 202, 201, 202, 201, 202, 201, 202, 202, 200, - 200, 200, 200, 200, 202, 201, 288, 6, 283, 283, - 6, 272, 6, 272, 6, 272, 6, 283, 283, 283, - 283, 296, 6, 220, 296, 202, 202, 202, 202, 202, - 202, 202, 202, 202, 202, 200, 202, 6, 6, 6, - 6, 6, 6, 296, 6 + 189, 190, -1, -1, -1, -1, 195, -1, 197, 177, + 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, + 188, 189, 190, -1, -1, -1, -1, 195, -1, 197, + 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, + 187, 188, 189, 190, -1, -1, -1, -1, 195, -1, + 197, 177, 178, 179, 180, 181, 182, 183, 184, 185, + 186, 187, 188, 189, 190, -1, -1, -1, -1, 195, + -1, 197, 177, 178, 179, 180, 181, 182, 183, 184, + 185, 186, 187, 188, 189, 190, -1, -1, -1, -1, + 195, -1, 197 }; - /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ -static const yytype_uint16 yyr1[] = +/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing + symbol of state STATE-NUM. */ +static const yytype_uint16 yystos[] = { - 0, 204, 205, 205, 206, 206, 207, 207, 207, 207, - 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, - 207, 207, 208, 208, 209, 209, 209, 209, 209, 209, - 210, 210, 210, 210, 211, 211, 211, 211, 211, 211, - 212, 212, 213, 213, 215, 216, 214, 217, 217, 219, - 218, 220, 220, 222, 221, 223, 223, 225, 224, 226, - 226, 226, 226, 226, 227, 227, 228, 228, 229, 229, - 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, - 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, + 0, 1, 207, 208, 6, 0, 4, 12, 13, 38, + 39, 54, 55, 56, 60, 61, 63, 67, 68, 70, + 71, 74, 75, 76, 77, 78, 79, 80, 81, 82, + 83, 84, 85, 87, 88, 89, 90, 91, 92, 93, + 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, + 105, 106, 107, 108, 110, 111, 112, 113, 114, 115, + 116, 117, 121, 122, 123, 129, 134, 135, 136, 137, + 140, 142, 144, 145, 146, 147, 148, 149, 150, 151, + 152, 153, 154, 155, 160, 161, 162, 163, 170, 171, + 209, 211, 212, 232, 249, 250, 253, 254, 255, 256, + 257, 258, 259, 260, 281, 282, 283, 284, 302, 303, + 3, 4, 5, 9, 10, 11, 14, 15, 16, 17, + 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, + 28, 29, 30, 31, 32, 33, 34, 35, 36, 40, + 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, + 51, 52, 53, 57, 58, 59, 62, 64, 65, 66, + 72, 73, 150, 156, 157, 158, 159, 164, 165, 166, + 167, 168, 169, 172, 186, 187, 191, 196, 198, 200, + 201, 203, 205, 230, 285, 286, 298, 299, 302, 303, + 13, 82, 196, 196, 6, 203, 6, 6, 6, 6, + 196, 6, 6, 198, 198, 196, 198, 230, 230, 196, + 203, 196, 196, 4, 196, 203, 196, 196, 4, 203, + 196, 196, 86, 82, 82, 6, 203, 76, 79, 82, + 82, 82, 79, 82, 84, 84, 76, 79, 82, 84, + 79, 82, 84, 79, 82, 196, 79, 140, 154, 155, + 203, 186, 187, 196, 203, 288, 289, 288, 203, 76, + 79, 82, 203, 288, 4, 76, 80, 92, 82, 84, + 82, 79, 4, 150, 203, 302, 303, 4, 6, 76, + 79, 82, 79, 82, 4, 4, 4, 4, 5, 37, + 76, 79, 82, 84, 96, 187, 196, 203, 250, 260, + 285, 291, 292, 293, 302, 303, 4, 196, 196, 196, + 4, 203, 295, 4, 196, 196, 6, 6, 198, 4, + 299, 303, 4, 299, 5, 203, 5, 203, 4, 285, + 285, 198, 6, 196, 203, 196, 198, 205, 230, 7, + 173, 174, 175, 176, 193, 194, 228, 229, 4, 196, + 198, 200, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, 230, - 230, 230, 230, 230, 230, 230, 230, 231, 231, 232, - 232, 232, 233, 232, 232, 234, 232, 235, 235, 236, - 236, 237, 237, 238, 238, 238, 239, 239, 240, 240, - 240, 240, 241, 241, 241, 242, 242, 242, 243, 243, - 243, 244, 244, 244, 245, 245, 246, 246, 247, 247, - 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, - 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, - 247, 247, 247, 247, 247, 247, 247, 248, 248, 248, - 248, 248, 248, 248, 248, 249, 249, 250, 250, 250, - 250, 250, 250, 251, 251, 251, 251, 251, 251, 251, - 251, 251, 252, 252, 252, 252, 252, 253, 253, 254, - 255, 255, 255, 255, 255, 255, 256, 256, 256, 256, - 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, - 256, 256, 256, 256, 256, 256, 257, 257, 257, 257, - 257, 257, 257, 257, 257, 257, 257, 257, 258, 258, - 258, 259, 258, 260, 258, 261, 258, 262, 258, 258, - 258, 258, 258, 258, 258, 258, 258, 258, 263, 258, - 264, 258, 265, 258, 266, 258, 267, 258, 268, 258, - 269, 258, 270, 258, 271, 258, 272, 272, 273, 273, - 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, - 273, 273, 273, 274, 274, 275, 275, 276, 276, 277, - 277, 278, 278, 279, 279, 279, 279, 279, 279, 279, - 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, - 279, 279, 279, 279, 279, 279, 279, 279, 279, 280, - 280, 280, 281, 281, 281, 282, 282, 282, 282, 283, - 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, - 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, - 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, - 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, - 283, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 285, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, - 284, 284, 284, 284, 284, 284, 286, 286, 286, 286, - 286, 287, 287, 287, 287, 288, 288, 289, 289, 289, - 289, 289, 289, 290, 290, 291, 291, 291, 291, 291, - 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, - 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, - 291, 291, 291, 292, 292, 292, 292, 293, 293, 293, - 293, 294, 294, 295, 295, 296, 296, 296, 296, 297, - 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, - 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, - 298, 297, 299, 299, 300, 300, 301, 301, 301 + 230, 230, 230, 230, 230, 230, 230, 196, 196, 196, + 196, 196, 196, 230, 230, 230, 230, 196, 230, 230, + 230, 7, 196, 196, 196, 230, 196, 196, 198, 285, + 285, 285, 285, 285, 4, 140, 141, 303, 4, 250, + 251, 252, 203, 197, 199, 203, 231, 6, 177, 178, + 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, + 189, 190, 195, 203, 6, 196, 198, 229, 6, 285, + 4, 298, 299, 303, 298, 285, 298, 301, 234, 237, + 299, 303, 285, 187, 285, 293, 294, 285, 285, 196, + 285, 294, 285, 285, 196, 294, 285, 285, 291, 196, + 203, 294, 292, 292, 292, 196, 196, 292, 292, 292, + 196, 196, 196, 196, 196, 196, 196, 196, 203, 203, + 285, 4, 291, 295, 203, 203, 288, 288, 288, 285, + 285, 186, 187, 203, 203, 288, 203, 203, 203, 186, + 187, 196, 252, 288, 203, 196, 203, 196, 196, 196, + 292, 292, 291, 196, 4, 198, 198, 252, 6, 6, + 203, 203, 203, 292, 292, 198, 198, 198, 196, 198, + 200, 230, 198, 5, 143, 203, 5, 143, 5, 143, + 5, 143, 76, 79, 82, 84, 203, 285, 293, 285, + 204, 294, 8, 188, 6, 196, 198, 230, 6, 285, + 285, 285, 200, 285, 203, 143, 285, 285, 285, 6, + 6, 6, 252, 6, 252, 198, 6, 203, 298, 291, + 291, 285, 285, 203, 203, 231, 299, 291, 6, 198, + 285, 285, 4, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 285, 285, 285, 301, 298, 301, 298, 298, + 298, 291, 298, 298, 285, 298, 298, 298, 301, 298, + 285, 299, 285, 298, 298, 298, 298, 303, 299, 303, + 197, 199, 7, 228, 229, 200, 7, 230, 204, 76, + 79, 82, 84, 249, 285, 294, 7, 228, 285, 285, + 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, + 285, 285, 285, 213, 285, 285, 6, 198, 200, 197, + 202, 197, 202, 202, 197, 202, 199, 202, 233, 199, + 233, 202, 202, 197, 188, 202, 204, 197, 197, 285, + 197, 204, 197, 197, 285, 204, 197, 197, 7, 285, + 285, 204, 6, 6, 6, 285, 285, 7, 7, 278, + 278, 285, 243, 285, 299, 244, 285, 299, 245, 285, + 299, 246, 285, 299, 285, 285, 285, 294, 294, 203, + 197, 6, 203, 252, 252, 202, 202, 202, 288, 288, + 251, 251, 202, 285, 285, 285, 285, 264, 202, 252, + 285, 285, 285, 285, 285, 7, 279, 6, 7, 285, + 6, 285, 285, 204, 294, 294, 294, 6, 6, 285, + 285, 285, 285, 4, 203, 231, 303, 54, 285, 54, + 54, 54, 5, 203, 5, 203, 5, 203, 5, 203, + 294, 197, 204, 285, 203, 285, 293, 203, 231, 197, + 197, 197, 140, 202, 252, 203, 8, 197, 199, 204, + 204, 252, 199, 197, 202, 204, 197, 199, 285, 294, + 228, 6, 6, 285, 197, 199, 229, 231, 231, 231, + 231, 231, 231, 231, 231, 231, 231, 231, 202, 231, + 231, 231, 231, 231, 231, 231, 202, 202, 202, 231, + 202, 231, 231, 197, 197, 202, 202, 202, 202, 202, + 231, 231, 231, 197, 231, 287, 300, 6, 202, 197, + 197, 202, 231, 197, 197, 199, 228, 229, 200, 228, + 229, 299, 285, 6, 4, 4, 203, 296, 231, 203, + 203, 203, 203, 204, 204, 291, 8, 4, 130, 131, + 132, 133, 204, 216, 220, 223, 225, 226, 197, 199, + 285, 4, 6, 183, 210, 294, 6, 294, 285, 6, + 298, 6, 303, 6, 298, 285, 299, 7, 285, 293, + 143, 7, 7, 197, 7, 143, 7, 7, 197, 143, + 7, 7, 285, 197, 204, 203, 197, 197, 285, 291, + 4, 277, 6, 197, 197, 202, 197, 202, 197, 202, + 197, 202, 197, 197, 197, 204, 204, 294, 200, 252, + 204, 204, 288, 285, 285, 204, 204, 285, 288, 202, + 202, 202, 99, 110, 118, 119, 120, 124, 125, 126, + 127, 274, 275, 288, 204, 261, 197, 204, 197, 197, + 197, 285, 6, 285, 197, 199, 199, 204, 204, 204, + 199, 199, 202, 199, 294, 199, 203, 204, 203, 203, + 203, 294, 294, 294, 294, 204, 8, 294, 294, 7, + 7, 7, 200, 285, 204, 285, 285, 7, 200, 204, + 203, 291, 6, 228, 229, 228, 229, 204, 204, 291, + 199, 229, 200, 229, 298, 285, 285, 285, 285, 294, + 298, 291, 298, 298, 299, 239, 241, 285, 298, 285, + 6, 4, 140, 141, 285, 6, 6, 6, 7, 198, + 295, 297, 6, 294, 294, 294, 294, 231, 6, 285, + 217, 196, 196, 203, 227, 6, 229, 229, 199, 183, + 298, 197, 197, 202, 7, 231, 231, 288, 82, 84, + 291, 291, 7, 291, 82, 84, 291, 291, 7, 84, + 291, 291, 6, 7, 7, 294, 7, 7, 99, 276, + 6, 7, 228, 285, 228, 285, 228, 285, 228, 285, + 7, 7, 7, 7, 7, 204, 4, 204, 202, 202, + 202, 204, 204, 288, 288, 288, 4, 6, 203, 6, + 196, 6, 128, 6, 128, 6, 128, 6, 128, 204, + 275, 202, 274, 7, 6, 7, 7, 7, 6, 203, + 6, 6, 6, 82, 285, 6, 6, 285, 200, 204, + 285, 285, 285, 285, 204, 204, 204, 204, 285, 204, + 204, 291, 291, 291, 4, 202, 8, 8, 197, 4, + 4, 291, 204, 285, 6, 285, 6, 231, 6, 6, + 4, 6, 231, 231, 231, 231, 231, 202, 197, 197, + 197, 202, 202, 231, 240, 202, 231, 242, 197, 197, + 6, 7, 228, 229, 200, 7, 6, 295, 285, 202, + 204, 204, 204, 204, 204, 228, 196, 285, 285, 290, + 291, 203, 200, 6, 6, 210, 6, 285, 203, 285, + 299, 6, 6, 6, 203, 203, 92, 248, 248, 291, + 6, 203, 203, 6, 6, 291, 203, 6, 6, 5, + 291, 204, 291, 291, 4, 6, 291, 291, 291, 291, + 291, 291, 291, 291, 203, 203, 7, 6, 7, 285, + 285, 285, 203, 203, 202, 204, 202, 204, 202, 204, + 198, 285, 291, 285, 6, 6, 6, 6, 285, 288, + 204, 5, 203, 291, 203, 203, 203, 291, 294, 203, + 6, 199, 4, 231, 202, 202, 202, 202, 231, 6, + 6, 139, 285, 285, 285, 6, 6, 7, 202, 6, + 6, 6, 228, 229, 298, 299, 4, 4, 153, 299, + 285, 6, 4, 296, 6, 199, 295, 6, 6, 6, + 6, 291, 214, 285, 202, 202, 202, 204, 215, 285, + 4, 298, 202, 291, 299, 285, 285, 288, 6, 6, + 6, 285, 285, 6, 285, 5, 6, 203, 6, 143, + 247, 285, 6, 6, 6, 6, 6, 6, 4, 6, + 6, 294, 294, 285, 285, 299, 204, 197, 202, 204, + 251, 251, 288, 6, 265, 288, 6, 266, 288, 6, + 267, 285, 204, 202, 197, 204, 202, 6, 187, 288, + 6, 290, 288, 288, 6, 204, 285, 6, 285, 285, + 285, 285, 291, 202, 204, 8, 204, 197, 203, 285, + 299, 291, 291, 197, 231, 203, 291, 299, 203, 285, + 299, 299, 6, 6, 7, 6, 200, 6, 197, 202, + 285, 285, 291, 203, 202, 204, 6, 285, 235, 236, + 204, 204, 204, 204, 204, 5, 290, 80, 6, 203, + 204, 204, 203, 6, 6, 203, 285, 204, 204, 202, + 203, 202, 203, 202, 203, 199, 6, 291, 7, 203, + 285, 202, 204, 202, 202, 6, 204, 202, 202, 202, + 202, 138, 285, 285, 294, 6, 6, 204, 6, 238, + 285, 301, 295, 141, 218, 285, 202, 202, 290, 285, + 6, 202, 239, 241, 6, 6, 6, 6, 6, 6, + 204, 203, 290, 103, 104, 109, 280, 103, 104, 280, + 294, 251, 202, 204, 285, 288, 274, 285, 288, 274, + 285, 288, 274, 6, 202, 204, 291, 252, 204, 288, + 6, 294, 288, 285, 285, 285, 285, 285, 204, 204, + 204, 6, 202, 204, 7, 204, 6, 203, 285, 285, + 204, 285, 204, 204, 203, 285, 204, 203, 288, 291, + 6, 203, 288, 6, 204, 204, 285, 204, 202, 204, + 204, 202, 204, 204, 202, 204, 291, 6, 99, 204, + 262, 203, 202, 204, 202, 202, 202, 202, 202, 6, + 6, 285, 299, 215, 197, 202, 6, 203, 202, 285, + 204, 6, 288, 6, 288, 6, 6, 204, 6, 268, + 285, 6, 6, 269, 285, 6, 6, 270, 285, 6, + 204, 285, 274, 252, 294, 6, 288, 294, 285, 285, + 285, 285, 7, 204, 221, 285, 290, 285, 202, 202, + 202, 203, 204, 203, 204, 203, 204, 6, 6, 204, + 204, 263, 204, 202, 204, 202, 202, 202, 202, 299, + 6, 203, 197, 204, 204, 285, 288, 288, 274, 6, + 271, 274, 6, 272, 274, 6, 273, 274, 6, 294, + 6, 285, 285, 285, 285, 219, 298, 224, 203, 6, + 204, 202, 202, 204, 203, 204, 203, 204, 203, 204, + 204, 202, 202, 202, 202, 202, 204, 203, 290, 6, + 285, 285, 6, 274, 6, 274, 6, 274, 6, 285, + 285, 285, 285, 298, 6, 222, 298, 204, 204, 204, + 204, 204, 204, 204, 204, 204, 204, 202, 204, 6, + 6, 6, 6, 6, 6, 298, 6 }; - /* YYR2[YYN] -- Number of symbols on the right hand side of rule YYN. */ -static const yytype_uint8 yyr2[] = -{ - 0, 2, 1, 2, 0, 2, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 2, 5, 5, 7, 7, 7, 9, - 6, 6, 6, 8, 0, 2, 2, 2, 2, 2, - 1, 3, 1, 3, 0, 0, 10, 1, 3, 0, - 13, 1, 3, 0, 15, 8, 14, 0, 6, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 5, 5, 7, 7, 4, 6, 6, 7, 7, 7, - 7, 9, 9, 3, 6, 6, 6, 6, 4, 6, - 9, 6, 9, 5, 8, 8, 11, 6, 9, 5, - 7, 9, 9, 11, 7, 9, 9, 0, 1, 0, - 3, 5, 0, 9, 5, 0, 9, 0, 3, 3, - 5, 0, 2, 3, 5, 3, 0, 2, 3, 3, - 3, 5, 1, 1, 3, 1, 1, 3, 1, 1, - 3, 1, 1, 3, 0, 5, 0, 2, 7, 8, - 6, 7, 4, 7, 8, 8, 7, 7, 11, 8, - 8, 8, 8, 9, 3, 4, 10, 7, 7, 8, - 8, 12, 8, 8, 7, 8, 8, 5, 11, 5, - 9, 9, 4, 9, 9, 1, 1, 0, 2, 6, - 6, 6, 6, 8, 10, 14, 16, 12, 8, 8, - 6, 14, 4, 6, 6, 3, 4, 5, 6, 5, - 3, 3, 4, 5, 4, 5, 3, 5, 7, 7, - 3, 7, 3, 2, 2, 2, 2, 2, 15, 2, - 2, 2, 2, 2, 16, 3, 6, 8, 8, 10, - 1, 2, 2, 1, 3, 3, 4, 1, 5, 11, - 13, 0, 7, 0, 13, 0, 15, 0, 6, 8, - 8, 8, 12, 12, 12, 14, 14, 14, 0, 12, - 0, 12, 0, 12, 0, 16, 0, 16, 0, 16, - 0, 18, 0, 18, 0, 18, 1, 2, 5, 7, - 9, 2, 2, 2, 3, 2, 3, 2, 3, 2, - 3, 9, 6, 0, 3, 0, 1, 0, 2, 0, - 2, 0, 2, 7, 6, 8, 5, 3, 7, 5, - 4, 6, 11, 11, 18, 18, 12, 12, 12, 10, - 10, 10, 10, 10, 4, 4, 4, 4, 4, 2, - 3, 6, 1, 1, 1, 2, 5, 7, 10, 1, - 3, 2, 2, 2, 3, 3, 3, 3, 3, 3, - 3, 3, 3, 3, 3, 3, 3, 3, 5, 4, - 4, 4, 4, 4, 4, 4, 4, 4, 4, 6, - 4, 4, 4, 4, 4, 4, 4, 6, 6, 6, - 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 0, 6, 4, 1, 4, 4, 4, 4, 4, - 4, 4, 2, 5, 5, 5, 5, 3, 6, 4, - 7, 6, 6, 6, 6, 4, 1, 2, 2, 3, - 3, 11, 9, 7, 7, 1, 3, 1, 1, 2, - 3, 4, 5, 1, 1, 2, 3, 3, 5, 4, - 2, 2, 2, 2, 3, 3, 3, 3, 5, 5, - 5, 5, 16, 16, 16, 16, 1, 1, 3, 3, - 4, 6, 6, 1, 1, 3, 3, 9, 7, 1, - 5, 3, 6, 1, 3, 1, 1, 3, 6, 1, - 4, 1, 1, 1, 4, 6, 4, 4, 4, 4, - 8, 4, 4, 4, 4, 8, 4, 6, 4, 1, - 0, 6, 1, 3, 5, 5, 1, 1, 4 -}; +#define yyerrok (yyerrstatus = 0) +#define yyclearin (yychar = YYEMPTY) +#define YYEMPTY (-2) +#define YYEOF 0 +#define YYACCEPT goto yyacceptlab +#define YYABORT goto yyabortlab +#define YYERROR goto yyerrorlab -#define yyerrok (yyerrstatus = 0) -#define yyclearin (yychar = YYEMPTY) -#define YYEMPTY (-2) -#define YYEOF 0 -#define YYACCEPT goto yyacceptlab -#define YYABORT goto yyabortlab -#define YYERROR goto yyerrorlab +/* Like YYERROR except do call yyerror. This remains here temporarily + to ease the transition to the new meaning of YYERROR, for GCC. + Once GCC version 2 has supplanted version 1, this can go. */ +#define YYFAIL goto yyerrlab #define YYRECOVERING() (!!yyerrstatus) -#define YYBACKUP(Token, Value) \ -do \ - if (yychar == YYEMPTY) \ - { \ - yychar = (Token); \ - yylval = (Value); \ - YYPOPSTACK (yylen); \ - yystate = *yyssp; \ - goto yybackup; \ - } \ - else \ - { \ +#define YYBACKUP(Token, Value) \ +do \ + if (yychar == YYEMPTY && yylen == 1) \ + { \ + yychar = (Token); \ + yylval = (Value); \ + yytoken = YYTRANSLATE (yychar); \ + YYPOPSTACK (1); \ + goto yybackup; \ + } \ + else \ + { \ yyerror (YY_("syntax error: cannot back up")); \ - YYERROR; \ - } \ -while (0) + YYERROR; \ + } \ +while (YYID (0)) + + +#define YYTERROR 1 +#define YYERRCODE 256 + + +/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. + If N is 0, then set CURRENT to the empty location which ends + the previous symbol: RHS[0] (always defined). */ + +#define YYRHSLOC(Rhs, K) ((Rhs)[K]) +#ifndef YYLLOC_DEFAULT +# define YYLLOC_DEFAULT(Current, Rhs, N) \ + do \ + if (YYID (N)) \ + { \ + (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ + (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ + (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ + (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ + } \ + else \ + { \ + (Current).first_line = (Current).last_line = \ + YYRHSLOC (Rhs, 0).last_line; \ + (Current).first_column = (Current).last_column = \ + YYRHSLOC (Rhs, 0).last_column; \ + } \ + while (YYID (0)) +#endif + + +/* YY_LOCATION_PRINT -- Print the location on the stream. + This macro was not mandated originally: define only if we know + we won't break user code: when these are the locations we know. */ -/* Error token number */ -#define YYTERROR 1 -#define YYERRCODE 256 +#ifndef YY_LOCATION_PRINT +# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL +# define YY_LOCATION_PRINT(File, Loc) \ + fprintf (File, "%d.%d-%d.%d", \ + (Loc).first_line, (Loc).first_column, \ + (Loc).last_line, (Loc).last_column) +# else +# define YY_LOCATION_PRINT(File, Loc) ((void) 0) +# endif +#endif +/* YYLEX -- calling `yylex' with the right arguments. */ + +#ifdef YYLEX_PARAM +# define YYLEX yylex (YYLEX_PARAM) +#else +# define YYLEX yylex () +#endif /* Enable debugging if requested. */ #if YYDEBUG @@ -3700,46 +4283,54 @@ while (0) # define YYFPRINTF fprintf # endif -# define YYDPRINTF(Args) \ -do { \ - if (yydebug) \ - YYFPRINTF Args; \ -} while (0) - -/* This macro is provided for backward compatibility. */ -#ifndef YY_LOCATION_PRINT -# define YY_LOCATION_PRINT(File, Loc) ((void) 0) -#endif +# define YYDPRINTF(Args) \ +do { \ + if (yydebug) \ + YYFPRINTF Args; \ +} while (YYID (0)) +# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ +do { \ + if (yydebug) \ + { \ + YYFPRINTF (stderr, "%s ", Title); \ + yy_symbol_print (stderr, \ + Type, Value); \ + YYFPRINTF (stderr, "\n"); \ + } \ +} while (YYID (0)) -# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ -do { \ - if (yydebug) \ - { \ - YYFPRINTF (stderr, "%s ", Title); \ - yy_symbol_print (stderr, \ - Type, Value); \ - YYFPRINTF (stderr, "\n"); \ - } \ -} while (0) +/*--------------------------------. +| Print this symbol on YYOUTPUT. | +`--------------------------------*/ -/*----------------------------------------. -| Print this symbol's value on YYOUTPUT. | -`----------------------------------------*/ - +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) +#else +static void +yy_symbol_value_print (yyoutput, yytype, yyvaluep) + FILE *yyoutput; + int yytype; + YYSTYPE const * const yyvaluep; +#endif { - FILE *yyo = yyoutput; - YYUSE (yyo); if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); +# else + YYUSE (yyoutput); # endif - YYUSE (yytype); + switch (yytype) + { + default: + break; + } } @@ -3747,11 +4338,22 @@ yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvalue | Print this symbol on YYOUTPUT. | `--------------------------------*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) +#else +static void +yy_symbol_print (yyoutput, yytype, yyvaluep) + FILE *yyoutput; + int yytype; + YYSTYPE const * const yyvaluep; +#endif { - YYFPRINTF (yyoutput, "%s %s (", - yytype < YYNTOKENS ? "token" : "nterm", yytname[yytype]); + if (yytype < YYNTOKENS) + YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); + else + YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep); YYFPRINTF (yyoutput, ")"); @@ -3762,54 +4364,66 @@ yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) | TOP (included). | `------------------------------------------------------------------*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_stack_print (yytype_int16 *bottom, yytype_int16 *top) +#else static void -yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) +yy_stack_print (bottom, top) + yytype_int16 *bottom; + yytype_int16 *top; +#endif { YYFPRINTF (stderr, "Stack now"); - for (; yybottom <= yytop; yybottom++) - { - int yybot = *yybottom; - YYFPRINTF (stderr, " %d", yybot); - } + for (; bottom <= top; ++bottom) + YYFPRINTF (stderr, " %d", *bottom); YYFPRINTF (stderr, "\n"); } -# define YY_STACK_PRINT(Bottom, Top) \ -do { \ - if (yydebug) \ - yy_stack_print ((Bottom), (Top)); \ -} while (0) +# define YY_STACK_PRINT(Bottom, Top) \ +do { \ + if (yydebug) \ + yy_stack_print ((Bottom), (Top)); \ +} while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +static void +yy_reduce_print (YYSTYPE *yyvsp, int yyrule) +#else static void -yy_reduce_print (yytype_int16 *yyssp, YYSTYPE *yyvsp, int yyrule) +yy_reduce_print (yyvsp, yyrule) + YYSTYPE *yyvsp; + int yyrule; +#endif { - unsigned long int yylno = yyrline[yyrule]; int yynrhs = yyr2[yyrule]; int yyi; + unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", - yyrule - 1, yylno); + yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { - YYFPRINTF (stderr, " $%d = ", yyi + 1); - yy_symbol_print (stderr, - yystos[yyssp[yyi + 1 - yynrhs]], - &(yyvsp[(yyi + 1) - (yynrhs)]) - ); - YYFPRINTF (stderr, "\n"); + fprintf (stderr, " $%d = ", yyi + 1); + yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], + &(yyvsp[(yyi + 1) - (yynrhs)]) + ); + fprintf (stderr, "\n"); } } -# define YY_REDUCE_PRINT(Rule) \ -do { \ - if (yydebug) \ - yy_reduce_print (yyssp, yyvsp, Rule); \ -} while (0) +# define YY_REDUCE_PRINT(Rule) \ +do { \ + if (yydebug) \ + yy_reduce_print (yyvsp, Rule); \ +} while (YYID (0)) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ @@ -3823,7 +4437,7 @@ int yydebug; /* YYINITDEPTH -- initial size of the parser's stacks. */ -#ifndef YYINITDEPTH +#ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif @@ -3838,6 +4452,7 @@ int yydebug; # define YYMAXDEPTH 10000 #endif + #if YYERROR_VERBOSE @@ -3846,8 +4461,15 @@ int yydebug; # define yystrlen strlen # else /* Return the length of YYSTR. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) +#else +static YYSIZE_T +yystrlen (yystr) + const char *yystr; +#endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) @@ -3863,8 +4485,16 @@ yystrlen (const char *yystr) # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) +#else +static char * +yystpcpy (yydest, yysrc) + char *yydest; + const char *yysrc; +#endif { char *yyd = yydest; const char *yys = yysrc; @@ -3894,27 +4524,27 @@ yytnamerr (char *yyres, const char *yystr) char const *yyp = yystr; for (;;) - switch (*++yyp) - { - case '\'': - case ',': - goto do_not_strip_quotes; - - case '\\': - if (*++yyp != '\\') - goto do_not_strip_quotes; - /* Fall through. */ - default: - if (yyres) - yyres[yyn] = *yyp; - yyn++; - break; - - case '"': - if (yyres) - yyres[yyn] = '\0'; - return yyn; - } + switch (*++yyp) + { + case '\'': + case ',': + goto do_not_strip_quotes; + + case '\\': + if (*++yyp != '\\') + goto do_not_strip_quotes; + /* Fall through. */ + default: + if (yyres) + yyres[yyn] = *yyp; + yyn++; + break; + + case '"': + if (yyres) + yyres[yyn] = '\0'; + return yyn; + } do_not_strip_quotes: ; } @@ -3925,209 +4555,211 @@ yytnamerr (char *yyres, const char *yystr) } # endif -/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message - about the unexpected token YYTOKEN for the state stack whose top is - YYSSP. - - Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is - not large enough to hold the message. In that case, also set - *YYMSG_ALLOC to the required number of bytes. Return 2 if the - required number of bytes is too large to store. */ -static int -yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, - yytype_int16 *yyssp, int yytoken) +/* Copy into YYRESULT an error message about the unexpected token + YYCHAR while in state YYSTATE. Return the number of bytes copied, + including the terminating null byte. If YYRESULT is null, do not + copy anything; just return the number of bytes that would be + copied. As a special case, return 0 if an ordinary "syntax error" + message will do. Return YYSIZE_MAXIMUM if overflow occurs during + size calculation. */ +static YYSIZE_T +yysyntax_error (char *yyresult, int yystate, int yychar) { - YYSIZE_T yysize0 = yytnamerr (YY_NULLPTR, yytname[yytoken]); - YYSIZE_T yysize = yysize0; - enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; - /* Internationalized format string. */ - const char *yyformat = YY_NULLPTR; - /* Arguments of yyformat. */ - char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; - /* Number of reported tokens (one for the "unexpected", one per - "expected"). */ - int yycount = 0; - - /* There are many possibilities here to consider: - - If this state is a consistent state with a default action, then - the only way this function was invoked is if the default action - is an error action. In that case, don't check for expected - tokens because there are none. - - The only way there can be no lookahead present (in yychar) is if - this state is a consistent state with a default action. Thus, - detecting the absence of a lookahead is sufficient to determine - that there is no unexpected or expected token to report. In that - case, just report a simple "syntax error". - - Don't assume there isn't a lookahead just because this state is a - consistent state with a default action. There might have been a - previous inconsistent state, consistent state with a non-default - action, or user semantic action that manipulated yychar. - - Of course, the expected token list depends on states to have - correct lookahead information, and it depends on the parser not - to perform extra reductions after fetching a lookahead from the - scanner and before detecting a syntax error. Thus, state merging - (from LALR or IELR) and default reductions corrupt the expected - token list. However, the list is correct for canonical LR with - one exception: it will still contain any token that will not be - accepted due to an error action in a later state. - */ - if (yytoken != YYEMPTY) - { - int yyn = yypact[*yyssp]; - yyarg[yycount++] = yytname[yytoken]; - if (!yypact_value_is_default (yyn)) - { - /* Start YYX at -YYN if negative to avoid negative indexes in - YYCHECK. In other words, skip the first -YYN actions for - this state because they are default actions. */ - int yyxbegin = yyn < 0 ? -yyn : 0; - /* Stay within bounds of both yycheck and yytname. */ - int yychecklim = YYLAST - yyn + 1; - int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; - int yyx; - - for (yyx = yyxbegin; yyx < yyxend; ++yyx) - if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR - && !yytable_value_is_error (yytable[yyx + yyn])) - { - if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) - { - yycount = 1; - yysize = yysize0; - break; - } - yyarg[yycount++] = yytname[yyx]; - { - YYSIZE_T yysize1 = yysize + yytnamerr (YY_NULLPTR, yytname[yyx]); - if (! (yysize <= yysize1 - && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) - return 2; - yysize = yysize1; - } - } - } - } - - switch (yycount) - { -# define YYCASE_(N, S) \ - case N: \ - yyformat = S; \ - break - YYCASE_(0, YY_("syntax error")); - YYCASE_(1, YY_("syntax error, unexpected %s")); - YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); - YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); - YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); - YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); -# undef YYCASE_ - } - - { - YYSIZE_T yysize1 = yysize + yystrlen (yyformat); - if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) - return 2; - yysize = yysize1; - } + int yyn = yypact[yystate]; - if (*yymsg_alloc < yysize) + if (! (YYPACT_NINF < yyn && yyn <= YYLAST)) + return 0; + else { - *yymsg_alloc = 2 * yysize; - if (! (yysize <= *yymsg_alloc - && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) - *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; - return 1; - } + int yytype = YYTRANSLATE (yychar); + YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]); + YYSIZE_T yysize = yysize0; + YYSIZE_T yysize1; + int yysize_overflow = 0; + enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; + char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; + int yyx; + +# if 0 + /* This is so xgettext sees the translatable formats that are + constructed on the fly. */ + YY_("syntax error, unexpected %s"); + YY_("syntax error, unexpected %s, expecting %s"); + YY_("syntax error, unexpected %s, expecting %s or %s"); + YY_("syntax error, unexpected %s, expecting %s or %s or %s"); + YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"); +# endif + char *yyfmt; + char const *yyf; + static char const yyunexpected[] = "syntax error, unexpected %s"; + static char const yyexpecting[] = ", expecting %s"; + static char const yyor[] = " or %s"; + char yyformat[sizeof yyunexpected + + sizeof yyexpecting - 1 + + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2) + * (sizeof yyor - 1))]; + char const *yyprefix = yyexpecting; + + /* Start YYX at -YYN if negative to avoid negative indexes in + YYCHECK. */ + int yyxbegin = yyn < 0 ? -yyn : 0; + + /* Stay within bounds of both yycheck and yytname. */ + int yychecklim = YYLAST - yyn + 1; + int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; + int yycount = 1; + + yyarg[0] = yytname[yytype]; + yyfmt = yystpcpy (yyformat, yyunexpected); + + for (yyx = yyxbegin; yyx < yyxend; ++yyx) + if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) + { + if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) + { + yycount = 1; + yysize = yysize0; + yyformat[sizeof yyunexpected - 1] = '\0'; + break; + } + yyarg[yycount++] = yytname[yyx]; + yysize1 = yysize + yytnamerr (0, yytname[yyx]); + yysize_overflow |= (yysize1 < yysize); + yysize = yysize1; + yyfmt = yystpcpy (yyfmt, yyprefix); + yyprefix = yyor; + } - /* Avoid sprintf, as that infringes on the user's name space. - Don't have undefined behavior even if the translation - produced a string with the wrong number of "%s"s. */ - { - char *yyp = *yymsg; - int yyi = 0; - while ((*yyp = *yyformat) != '\0') - if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) - { - yyp += yytnamerr (yyp, yyarg[yyi++]); - yyformat += 2; - } - else - { - yyp++; - yyformat++; - } - } - return 0; + yyf = YY_(yyformat); + yysize1 = yysize + yystrlen (yyf); + yysize_overflow |= (yysize1 < yysize); + yysize = yysize1; + + if (yysize_overflow) + return YYSIZE_MAXIMUM; + + if (yyresult) + { + /* Avoid sprintf, as that infringes on the user's name space. + Don't have undefined behavior even if the translation + produced a string with the wrong number of "%s"s. */ + char *yyp = yyresult; + int yyi = 0; + while ((*yyp = *yyf) != '\0') + { + if (*yyp == '%' && yyf[1] == 's' && yyi < yycount) + { + yyp += yytnamerr (yyp, yyarg[yyi++]); + yyf += 2; + } + else + { + yyp++; + yyf++; + } + } + } + return yysize; + } } #endif /* YYERROR_VERBOSE */ + /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ +/*ARGSUSED*/ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) +#else +static void +yydestruct (yymsg, yytype, yyvaluep) + const char *yymsg; + int yytype; + YYSTYPE *yyvaluep; +#endif { YYUSE (yyvaluep); + if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); - YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN - YYUSE (yytype); - YY_IGNORE_MAYBE_UNINITIALIZED_END + switch (yytype) + { + + default: + break; + } } + + +/* Prevent warnings from -Wmissing-prototypes. */ +#ifdef YYPARSE_PARAM +#if defined __STDC__ || defined __cplusplus +int yyparse (void *YYPARSE_PARAM); +#else +int yyparse (); +#endif +#else /* ! YYPARSE_PARAM */ +#if defined __STDC__ || defined __cplusplus +int yyparse (void); +#else +int yyparse (); +#endif +#endif /* ! YYPARSE_PARAM */ -/* The lookahead symbol. */ +/* The look-ahead symbol. */ int yychar; -/* The semantic value of the lookahead symbol. */ +/* The semantic value of the look-ahead symbol. */ YYSTYPE yylval; + /* Number of syntax errors so far. */ int yynerrs; + /*----------. | yyparse. | `----------*/ +#ifdef YYPARSE_PARAM +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) +int +yyparse (void *YYPARSE_PARAM) +#else +int +yyparse (YYPARSE_PARAM) + void *YYPARSE_PARAM; +#endif +#else /* ! YYPARSE_PARAM */ +#if (defined __STDC__ || defined __C99__FUNC__ \ + || defined __cplusplus || defined _MSC_VER) int yyparse (void) -{ - int yystate; - /* Number of tokens to shift before error messages enabled. */ - int yyerrstatus; - - /* The stacks and their tools: - 'yyss': related to states. - 'yyvs': related to semantic values. - - Refer to the stacks through separate pointers, to allow yyoverflow - to reallocate them elsewhere. */ - - /* The state stack. */ - yytype_int16 yyssa[YYINITDEPTH]; - yytype_int16 *yyss; - yytype_int16 *yyssp; - - /* The semantic value stack. */ - YYSTYPE yyvsa[YYINITDEPTH]; - YYSTYPE *yyvs; - YYSTYPE *yyvsp; - - YYSIZE_T yystacksize; +#else +int +yyparse () +#endif +#endif +{ + + int yystate; int yyn; int yyresult; - /* Lookahead token as an internal (translated) token number. */ + /* Number of tokens to shift before error messages enabled. */ + int yyerrstatus; + /* Look-ahead token as an internal (translated) token number. */ int yytoken = 0; - /* The variables used to return semantic value and location from the - action routines. */ - YYSTYPE yyval; - #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; @@ -4135,22 +4767,54 @@ yyparse (void) YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif + /* Three stacks and their tools: + `yyss': related to states, + `yyvs': related to semantic values, + `yyls': related to locations. + + Refer to the stacks thru separate pointers, to allow yyoverflow + to reallocate them elsewhere. */ + + /* The state stack. */ + yytype_int16 yyssa[YYINITDEPTH]; + yytype_int16 *yyss = yyssa; + yytype_int16 *yyssp; + + /* The semantic value stack. */ + YYSTYPE yyvsa[YYINITDEPTH]; + YYSTYPE *yyvs = yyvsa; + YYSTYPE *yyvsp; + + + #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) + YYSIZE_T yystacksize = YYINITDEPTH; + + /* The variables used to return semantic value and location from the + action routines. */ + YYSTYPE yyval; + + /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; - yyssp = yyss = yyssa; - yyvsp = yyvs = yyvsa; - yystacksize = YYINITDEPTH; - YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; - yychar = YYEMPTY; /* Cause a token to be read. */ + yychar = YYEMPTY; /* Cause a token to be read. */ + + /* Initialize stack pointers. + Waste one element of value and location stack + so that they stay on the same level as the state stack. + The wasted elements are never initialized. */ + + yyssp = yyss; + yyvsp = yyvs; + goto yysetstate; /*------------------------------------------------------------. @@ -4171,23 +4835,25 @@ yyparse (void) #ifdef yyoverflow { - /* Give user a chance to reallocate the stack. Use copies of - these so that the &'s don't force the real ones into - memory. */ - YYSTYPE *yyvs1 = yyvs; - yytype_int16 *yyss1 = yyss; - - /* Each stack pointer address is followed by the size of the - data in use in that stack, in bytes. This used to be a - conditional around just the two extra args, but that might - be undefined if yyoverflow is a macro. */ - yyoverflow (YY_("memory exhausted"), - &yyss1, yysize * sizeof (*yyssp), - &yyvs1, yysize * sizeof (*yyvsp), - &yystacksize); - - yyss = yyss1; - yyvs = yyvs1; + /* Give user a chance to reallocate the stack. Use copies of + these so that the &'s don't force the real ones into + memory. */ + YYSTYPE *yyvs1 = yyvs; + yytype_int16 *yyss1 = yyss; + + + /* Each stack pointer address is followed by the size of the + data in use in that stack, in bytes. This used to be a + conditional around just the two extra args, but that might + be undefined if yyoverflow is a macro. */ + yyoverflow (YY_("memory exhausted"), + &yyss1, yysize * sizeof (*yyssp), + &yyvs1, yysize * sizeof (*yyvsp), + + &yystacksize); + + yyss = yyss1; + yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE @@ -4195,22 +4861,23 @@ yyparse (void) # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) - goto yyexhaustedlab; + goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) - yystacksize = YYMAXDEPTH; + yystacksize = YYMAXDEPTH; { - yytype_int16 *yyss1 = yyss; - union yyalloc *yyptr = - (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); - if (! yyptr) - goto yyexhaustedlab; - YYSTACK_RELOCATE (yyss_alloc, yyss); - YYSTACK_RELOCATE (yyvs_alloc, yyvs); + yytype_int16 *yyss1 = yyss; + union yyalloc *yyptr = + (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); + if (! yyptr) + goto yyexhaustedlab; + YYSTACK_RELOCATE (yyss); + YYSTACK_RELOCATE (yyvs); + # undef YYSTACK_RELOCATE - if (yyss1 != yyssa) - YYSTACK_FREE (yyss1); + if (yyss1 != yyssa) + YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ @@ -4218,18 +4885,16 @@ yyparse (void) yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; + YYDPRINTF ((stderr, "Stack size increased to %lu\n", - (unsigned long int) yystacksize)); + (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) - YYABORT; + YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); - if (yystate == YYFINAL) - YYACCEPT; - goto yybackup; /*-----------. @@ -4238,20 +4903,20 @@ yyparse (void) yybackup: /* Do appropriate processing given the current state. Read a - lookahead token if we need one and don't already have one. */ + look-ahead token if we need one and don't already have one. */ - /* First try to decide what to do without reference to lookahead token. */ + /* First try to decide what to do without reference to look-ahead token. */ yyn = yypact[yystate]; - if (yypact_value_is_default (yyn)) + if (yyn == YYPACT_NINF) goto yydefault; - /* Not known => get a lookahead token if don't already have one. */ + /* Not known => get a look-ahead token if don't already have one. */ - /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ + /* YYCHAR is either YYEMPTY or YYEOF or a valid look-ahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); - yychar = yylex (); + yychar = YYLEX; } if (yychar <= YYEOF) @@ -4273,27 +4938,29 @@ yybackup: yyn = yytable[yyn]; if (yyn <= 0) { - if (yytable_value_is_error (yyn)) - goto yyerrlab; + if (yyn == 0 || yyn == YYTABLE_NINF) + goto yyerrlab; yyn = -yyn; goto yyreduce; } + if (yyn == YYFINAL) + YYACCEPT; + /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; - /* Shift the lookahead token. */ + /* Shift the look-ahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); - /* Discard the shifted token. */ - yychar = YYEMPTY; + /* Discard the shifted token unless it is eof. */ + if (yychar != YYEOF) + yychar = YYEMPTY; yystate = yyn; - YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN *++yyvsp = yylval; - YY_IGNORE_MAYBE_UNINITIALIZED_END goto yynewstate; @@ -4316,7 +4983,7 @@ yyreduce: yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: - '$$ = $1'. + `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison @@ -4330,205 +4997,181 @@ yyreduce: switch (yyn) { case 3: -#line 193 "Gmsh.y" /* yacc.c:1646 */ - { yyerrok; return 1; } -#line 4336 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 197 "Gmsh.y" + { yyerrok; return 1; ;} break; case 6: -#line 204 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4342 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 208 "Gmsh.y" + { return 1; ;} break; case 7: -#line 205 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4348 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 209 "Gmsh.y" + { return 1; ;} break; case 8: -#line 206 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4354 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 210 "Gmsh.y" + { return 1; ;} break; case 9: -#line 207 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4360 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 211 "Gmsh.y" + { return 1; ;} break; case 10: -#line 208 "Gmsh.y" /* yacc.c:1646 */ - { List_Delete((yyvsp[0].l)); return 1; } -#line 4366 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 212 "Gmsh.y" + { List_Delete((yyvsp[(1) - (1)].l)); return 1; ;} break; case 11: -#line 209 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4372 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 213 "Gmsh.y" + { return 1; ;} break; case 12: -#line 210 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4378 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 214 "Gmsh.y" + { return 1; ;} break; case 13: -#line 211 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4384 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 215 "Gmsh.y" + { return 1; ;} break; case 14: -#line 212 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4390 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 216 "Gmsh.y" + { return 1; ;} break; case 15: -#line 213 "Gmsh.y" /* yacc.c:1646 */ - { List_Delete((yyvsp[0].l)); return 1; } -#line 4396 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 217 "Gmsh.y" + { List_Delete((yyvsp[(1) - (1)].l)); return 1; ;} break; case 16: -#line 214 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4402 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 218 "Gmsh.y" + { return 1; ;} break; case 17: -#line 215 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4408 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 219 "Gmsh.y" + { return 1; ;} break; case 18: -#line 216 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4414 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 220 "Gmsh.y" + { return 1; ;} break; case 19: -#line 217 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4420 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 221 "Gmsh.y" + { return 1; ;} break; case 20: -#line 218 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4426 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 222 "Gmsh.y" + { return 1; ;} break; case 21: -#line 219 "Gmsh.y" /* yacc.c:1646 */ - { return 1; } -#line 4432 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 223 "Gmsh.y" + { return 1; ;} break; case 22: -#line 224 "Gmsh.y" /* yacc.c:1646 */ +#line 228 "Gmsh.y" { (yyval.c) = (char*)"w"; - } -#line 4440 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 23: -#line 228 "Gmsh.y" /* yacc.c:1646 */ +#line 232 "Gmsh.y" { (yyval.c) = (char*)"a"; - } -#line 4448 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 24: -#line 235 "Gmsh.y" /* yacc.c:1646 */ +#line 239 "Gmsh.y" { - Msg::Direct((yyvsp[-2].c)); - Free((yyvsp[-2].c)); - } -#line 4457 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Msg::Direct((yyvsp[(3) - (5)].c)); + Free((yyvsp[(3) - (5)].c)); + ;} break; case 25: -#line 240 "Gmsh.y" /* yacc.c:1646 */ +#line 244 "Gmsh.y" { - Msg::Error((yyvsp[-2].c)); - Free((yyvsp[-2].c)); - } -#line 4466 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Msg::Error((yyvsp[(3) - (5)].c)); + Free((yyvsp[(3) - (5)].c)); + ;} break; case 26: -#line 245 "Gmsh.y" /* yacc.c:1646 */ +#line 249 "Gmsh.y" { - std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[-1].c)); - FILE *fp = Fopen(tmp.c_str(), (yyvsp[-2].c)); + std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(6) - (7)].c)); + FILE *fp = Fopen(tmp.c_str(), (yyvsp[(5) - (7)].c)); if(!fp){ yymsg(0, "Unable to open file '%s'", tmp.c_str()); } else{ - fprintf(fp, "%s\n", (yyvsp[-4].c)); + fprintf(fp, "%s\n", (yyvsp[(3) - (7)].c)); fclose(fp); } - Free((yyvsp[-4].c)); - Free((yyvsp[-1].c)); - } -#line 4484 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (7)].c)); + Free((yyvsp[(6) - (7)].c)); + ;} break; case 27: -#line 259 "Gmsh.y" /* yacc.c:1646 */ +#line 263 "Gmsh.y" { char tmpstring[5000]; - int i = PrintListOfDouble((yyvsp[-4].c), (yyvsp[-2].l), tmpstring); + int i = PrintListOfDouble((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].l), tmpstring); if(i < 0) yymsg(0, "Too few arguments in Printf"); else if(i > 0) yymsg(0, "%d extra argument%s in Printf", i, (i > 1) ? "s" : ""); else Msg::Direct(tmpstring); - Free((yyvsp[-4].c)); - List_Delete((yyvsp[-2].l)); - } -#line 4501 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (7)].c)); + List_Delete((yyvsp[(5) - (7)].l)); + ;} break; case 28: -#line 272 "Gmsh.y" /* yacc.c:1646 */ +#line 276 "Gmsh.y" { char tmpstring[5000]; - int i = PrintListOfDouble((yyvsp[-4].c), (yyvsp[-2].l), tmpstring); + int i = PrintListOfDouble((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].l), tmpstring); if(i < 0) yymsg(0, "Too few arguments in Error"); else if(i > 0) yymsg(0, "%d extra argument%s in Error", i, (i > 1) ? "s" : ""); else Msg::Error(tmpstring); - Free((yyvsp[-4].c)); - List_Delete((yyvsp[-2].l)); - } -#line 4518 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (7)].c)); + List_Delete((yyvsp[(5) - (7)].l)); + ;} break; case 29: -#line 285 "Gmsh.y" /* yacc.c:1646 */ +#line 289 "Gmsh.y" { char tmpstring[5000]; - int i = PrintListOfDouble((yyvsp[-6].c), (yyvsp[-4].l), tmpstring); + int i = PrintListOfDouble((yyvsp[(3) - (9)].c), (yyvsp[(5) - (9)].l), tmpstring); if(i < 0) yymsg(0, "Too few arguments in Printf"); else if(i > 0) yymsg(0, "%d extra argument%s in Printf", i, (i > 1) ? "s" : ""); else{ - std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[-1].c)); - FILE *fp = Fopen(tmp.c_str(), (yyvsp[-2].c)); + std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(8) - (9)].c)); + FILE *fp = Fopen(tmp.c_str(), (yyvsp[(7) - (9)].c)); if(!fp){ yymsg(0, "Unable to open file '%s'", tmp.c_str()); } @@ -4537,19 +5180,18 @@ yyreduce: fclose(fp); } } - Free((yyvsp[-6].c)); - Free((yyvsp[-1].c)); - List_Delete((yyvsp[-4].l)); - } -#line 4545 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (9)].c)); + Free((yyvsp[(8) - (9)].c)); + List_Delete((yyvsp[(5) - (9)].l)); + ;} break; case 30: -#line 313 "Gmsh.y" /* yacc.c:1646 */ +#line 317 "Gmsh.y" { #if defined(HAVE_POST) - if(!strcmp((yyvsp[-5].c), "View") && ViewData->finalize()){ - ViewData->setName((yyvsp[-4].c)); + if(!strcmp((yyvsp[(1) - (6)].c), "View") && ViewData->finalize()){ + ViewData->setName((yyvsp[(2) - (6)].c)); ViewData->setFileName(gmsh_yyname); ViewData->setFileIndex(gmsh_yyviewindex++); new PView(ViewData); @@ -4557,51 +5199,48 @@ yyreduce: else delete ViewData; #endif - Free((yyvsp[-5].c)); Free((yyvsp[-4].c)); - } -#line 4563 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (6)].c)); Free((yyvsp[(2) - (6)].c)); + ;} break; case 31: -#line 327 "Gmsh.y" /* yacc.c:1646 */ +#line 331 "Gmsh.y" { #if defined(HAVE_POST) - if(!strcmp((yyvsp[-4].c), "View")){ - int index = (int)(yyvsp[-2].d); + if(!strcmp((yyvsp[(2) - (6)].c), "View")){ + int index = (int)(yyvsp[(4) - (6)].d); if(index >= 0 && index < (int)PView::list.size()) new PView(PView::list[index], false); else yymsg(0, "Unknown view %d", index); } #endif - Free((yyvsp[-4].c)); - } -#line 4580 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (6)].c)); + ;} break; case 32: -#line 340 "Gmsh.y" /* yacc.c:1646 */ +#line 344 "Gmsh.y" { #if defined(HAVE_POST) - if(!strcmp((yyvsp[-4].c), "View")){ - int index = (int)(yyvsp[-2].d); + if(!strcmp((yyvsp[(2) - (6)].c), "View")){ + int index = (int)(yyvsp[(4) - (6)].d); if(index >= 0 && index < (int)PView::list.size()) new PView(PView::list[index], true); else yymsg(0, "Unknown view %d", index); } #endif - Free((yyvsp[-4].c)); - } -#line 4597 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (6)].c)); + ;} break; case 33: -#line 353 "Gmsh.y" /* yacc.c:1646 */ +#line 357 "Gmsh.y" { #if defined(HAVE_POST) - if(!strcmp((yyvsp[-6].c), "View")){ - int index = (int)(yyvsp[-4].d), index2 = (int)(yyvsp[-2].d); + if(!strcmp((yyvsp[(2) - (8)].c), "View")){ + int index = (int)(yyvsp[(4) - (8)].d), index2 = (int)(yyvsp[(6) - (8)].d); if(index >= 0 && index < (int)PView::list.size() && index2 >= 0 && index2 < (int)PView::list.size()){ PView::list[index2]->setOptions(PView::list[index]->getOptions()); @@ -4610,155 +5249,148 @@ yyreduce: yymsg(0, "Unknown view %d or %d", index, index2); } #endif - Free((yyvsp[-6].c)); - } -#line 4616 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (8)].c)); + ;} break; case 34: -#line 371 "Gmsh.y" /* yacc.c:1646 */ +#line 375 "Gmsh.y" { #if defined(HAVE_POST) ViewData = new PViewDataList(); #endif - } -#line 4626 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 40: -#line 385 "Gmsh.y" /* yacc.c:1646 */ - { ViewCoord.push_back((yyvsp[0].d)); } -#line 4632 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 389 "Gmsh.y" + { ViewCoord.push_back((yyvsp[(1) - (1)].d)); ;} break; case 41: -#line 387 "Gmsh.y" /* yacc.c:1646 */ - { ViewCoord.push_back((yyvsp[0].d)); } -#line 4638 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 391 "Gmsh.y" + { ViewCoord.push_back((yyvsp[(3) - (3)].d)); ;} break; case 42: -#line 392 "Gmsh.y" /* yacc.c:1646 */ - { if(ViewValueList) ViewValueList->push_back((yyvsp[0].d)); } -#line 4644 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 396 "Gmsh.y" + { if(ViewValueList) ViewValueList->push_back((yyvsp[(1) - (1)].d)); ;} break; case 43: -#line 394 "Gmsh.y" /* yacc.c:1646 */ - { if(ViewValueList) ViewValueList->push_back((yyvsp[0].d)); } -#line 4650 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 398 "Gmsh.y" + { if(ViewValueList) ViewValueList->push_back((yyvsp[(3) - (3)].d)); ;} break; case 44: -#line 399 "Gmsh.y" /* yacc.c:1646 */ +#line 403 "Gmsh.y" { #if defined(HAVE_POST) - if(!strncmp((yyvsp[0].c), "SP", 2)){ + if(!strncmp((yyvsp[(1) - (1)].c), "SP", 2)){ ViewValueList = &ViewData->SP; ViewNumList = &ViewData->NbSP; } - else if(!strncmp((yyvsp[0].c), "VP", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "VP", 2)){ ViewValueList = &ViewData->VP; ViewNumList = &ViewData->NbVP; } - else if(!strncmp((yyvsp[0].c), "TP", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "TP", 2)){ ViewValueList = &ViewData->TP; ViewNumList = &ViewData->NbTP; } - else if(!strncmp((yyvsp[0].c), "SL", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "SL", 2)){ ViewValueList = &ViewData->SL; ViewNumList = &ViewData->NbSL; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_LIN); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_LIN); } - else if(!strncmp((yyvsp[0].c), "VL", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "VL", 2)){ ViewValueList = &ViewData->VL; ViewNumList = &ViewData->NbVL; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_LIN); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_LIN); } - else if(!strncmp((yyvsp[0].c), "TL", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "TL", 2)){ ViewValueList = &ViewData->TL; ViewNumList = &ViewData->NbTL; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_LIN); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_LIN); } - else if(!strncmp((yyvsp[0].c), "ST", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "ST", 2)){ ViewValueList = &ViewData->ST; ViewNumList = &ViewData->NbST; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_TRI); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TRI); } - else if(!strncmp((yyvsp[0].c), "VT", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "VT", 2)){ ViewValueList = &ViewData->VT; ViewNumList = &ViewData->NbVT; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_TRI); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TRI); } - else if(!strncmp((yyvsp[0].c), "TT", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "TT", 2)){ ViewValueList = &ViewData->TT; ViewNumList = &ViewData->NbTT; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_TRI); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TRI); } - else if(!strncmp((yyvsp[0].c), "SQ", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "SQ", 2)){ ViewValueList = &ViewData->SQ; ViewNumList = &ViewData->NbSQ; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_QUA); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_QUA); } - else if(!strncmp((yyvsp[0].c), "VQ", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "VQ", 2)){ ViewValueList = &ViewData->VQ; ViewNumList = &ViewData->NbVQ; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_QUA); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_QUA); } - else if(!strncmp((yyvsp[0].c), "TQ", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "TQ", 2)){ ViewValueList = &ViewData->TQ; ViewNumList = &ViewData->NbTQ; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_QUA); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_QUA); } - else if(!strncmp((yyvsp[0].c), "SS", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "SS", 2)){ ViewValueList = &ViewData->SS; ViewNumList = &ViewData->NbSS; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_TET); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TET); } - else if(!strncmp((yyvsp[0].c), "VS", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "VS", 2)){ ViewValueList = &ViewData->VS; ViewNumList = &ViewData->NbVS; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_TET); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TET); } - else if(!strncmp((yyvsp[0].c), "TS", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "TS", 2)){ ViewValueList = &ViewData->TS; ViewNumList = &ViewData->NbTS; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_TET); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_TET); } - else if(!strncmp((yyvsp[0].c), "SH", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "SH", 2)){ ViewValueList = &ViewData->SH; ViewNumList = &ViewData->NbSH; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_HEX); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_HEX); } - else if(!strncmp((yyvsp[0].c), "VH", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "VH", 2)){ ViewValueList = &ViewData->VH; ViewNumList = &ViewData->NbVH; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_HEX); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_HEX); } - else if(!strncmp((yyvsp[0].c), "TH", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "TH", 2)){ ViewValueList = &ViewData->TH; ViewNumList = &ViewData->NbTH; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_HEX); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_HEX); } - else if(!strncmp((yyvsp[0].c), "SI", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "SI", 2)){ ViewValueList = &ViewData->SI; ViewNumList = &ViewData->NbSI; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_PRI); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PRI); } - else if(!strncmp((yyvsp[0].c), "VI", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "VI", 2)){ ViewValueList = &ViewData->VI; ViewNumList = &ViewData->NbVI; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_PRI); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PRI); } - else if(!strncmp((yyvsp[0].c), "TI", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "TI", 2)){ ViewValueList = &ViewData->TI; ViewNumList = &ViewData->NbTI; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_PRI); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PRI); } - else if(!strncmp((yyvsp[0].c), "SY", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "SY", 2)){ ViewValueList = &ViewData->SY; ViewNumList = &ViewData->NbSY; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_PYR); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PYR); } - else if(!strncmp((yyvsp[0].c), "VY", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "VY", 2)){ ViewValueList = &ViewData->VY; ViewNumList = &ViewData->NbVY; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_PYR); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PYR); } - else if(!strncmp((yyvsp[0].c), "TY", 2)){ + else if(!strncmp((yyvsp[(1) - (1)].c), "TY", 2)){ ViewValueList = &ViewData->TY; ViewNumList = &ViewData->NbTY; - if(strlen((yyvsp[0].c)) > 2) ViewData->setOrder2(TYPE_PYR); + if(strlen((yyvsp[(1) - (1)].c)) > 2) ViewData->setOrder2(TYPE_PYR); } else{ - yymsg(0, "Unknown element type '%s'", (yyvsp[0].c)); + yymsg(0, "Unknown element type '%s'", (yyvsp[(1) - (1)].c)); ViewValueList = 0; ViewNumList = 0; } #endif ViewCoord.clear(); - Free((yyvsp[0].c)); - } -#line 4758 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (1)].c)); + ;} break; case 45: -#line 503 "Gmsh.y" /* yacc.c:1646 */ +#line 507 "Gmsh.y" { #if defined(HAVE_POST) if(ViewValueList){ @@ -4767,111 +5399,101 @@ yyreduce: ViewValueList->push_back(ViewCoord[3 * j + i]); } #endif - } -#line 4772 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 46: -#line 513 "Gmsh.y" /* yacc.c:1646 */ +#line 517 "Gmsh.y" { #if defined(HAVE_POST) if(ViewValueList) (*ViewNumList)++; #endif - } -#line 4782 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 47: -#line 522 "Gmsh.y" /* yacc.c:1646 */ +#line 526 "Gmsh.y" { #if defined(HAVE_POST) - for(int i = 0; i < (int)strlen((yyvsp[0].c)) + 1; i++) ViewData->T2C.push_back((yyvsp[0].c)[i]); + for(int i = 0; i < (int)strlen((yyvsp[(1) - (1)].c)) + 1; i++) ViewData->T2C.push_back((yyvsp[(1) - (1)].c)[i]); #endif - Free((yyvsp[0].c)); - } -#line 4793 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (1)].c)); + ;} break; case 48: -#line 529 "Gmsh.y" /* yacc.c:1646 */ +#line 533 "Gmsh.y" { #if defined(HAVE_POST) - for(int i = 0; i < (int)strlen((yyvsp[0].c)) + 1; i++) ViewData->T2C.push_back((yyvsp[0].c)[i]); + for(int i = 0; i < (int)strlen((yyvsp[(3) - (3)].c)) + 1; i++) ViewData->T2C.push_back((yyvsp[(3) - (3)].c)[i]); #endif - Free((yyvsp[0].c)); - } -#line 4804 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (3)].c)); + ;} break; case 49: -#line 539 "Gmsh.y" /* yacc.c:1646 */ +#line 543 "Gmsh.y" { #if defined(HAVE_POST) - ViewData->T2D.push_back((yyvsp[-5].d)); - ViewData->T2D.push_back((yyvsp[-3].d)); - ViewData->T2D.push_back((yyvsp[-1].d)); + ViewData->T2D.push_back((yyvsp[(3) - (8)].d)); + ViewData->T2D.push_back((yyvsp[(5) - (8)].d)); + ViewData->T2D.push_back((yyvsp[(7) - (8)].d)); ViewData->T2D.push_back(ViewData->T2C.size()); #endif - } -#line 4817 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 50: -#line 548 "Gmsh.y" /* yacc.c:1646 */ +#line 552 "Gmsh.y" { #if defined(HAVE_POST) ViewData->NbT2++; #endif - } -#line 4827 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 51: -#line 557 "Gmsh.y" /* yacc.c:1646 */ +#line 561 "Gmsh.y" { #if defined(HAVE_POST) - for(int i = 0; i < (int)strlen((yyvsp[0].c)) + 1; i++) ViewData->T3C.push_back((yyvsp[0].c)[i]); + for(int i = 0; i < (int)strlen((yyvsp[(1) - (1)].c)) + 1; i++) ViewData->T3C.push_back((yyvsp[(1) - (1)].c)[i]); #endif - Free((yyvsp[0].c)); - } -#line 4838 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (1)].c)); + ;} break; case 52: -#line 564 "Gmsh.y" /* yacc.c:1646 */ +#line 568 "Gmsh.y" { #if defined(HAVE_POST) - for(int i = 0; i < (int)strlen((yyvsp[0].c)) + 1; i++) ViewData->T3C.push_back((yyvsp[0].c)[i]); + for(int i = 0; i < (int)strlen((yyvsp[(3) - (3)].c)) + 1; i++) ViewData->T3C.push_back((yyvsp[(3) - (3)].c)[i]); #endif - Free((yyvsp[0].c)); - } -#line 4849 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (3)].c)); + ;} break; case 53: -#line 574 "Gmsh.y" /* yacc.c:1646 */ +#line 578 "Gmsh.y" { #if defined(HAVE_POST) - ViewData->T3D.push_back((yyvsp[-7].d)); ViewData->T3D.push_back((yyvsp[-5].d)); - ViewData->T3D.push_back((yyvsp[-3].d)); ViewData->T3D.push_back((yyvsp[-1].d)); + ViewData->T3D.push_back((yyvsp[(3) - (10)].d)); ViewData->T3D.push_back((yyvsp[(5) - (10)].d)); + ViewData->T3D.push_back((yyvsp[(7) - (10)].d)); ViewData->T3D.push_back((yyvsp[(9) - (10)].d)); ViewData->T3D.push_back(ViewData->T3C.size()); #endif - } -#line 4861 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 54: -#line 582 "Gmsh.y" /* yacc.c:1646 */ +#line 586 "Gmsh.y" { #if defined(HAVE_POST) ViewData->NbT3++; #endif - } -#line 4871 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 55: -#line 592 "Gmsh.y" /* yacc.c:1646 */ +#line 596 "Gmsh.y" { #if defined(HAVE_POST) int type = @@ -4883,15 +5505,14 @@ yyreduce: (ViewData->NbSI || ViewData->NbVI) ? TYPE_PRI : (ViewData->NbSH || ViewData->NbVH) ? TYPE_HEX : 0; - ViewData->setInterpolationMatrices(type, ListOfListOfDouble2Matrix((yyvsp[-5].l)), - ListOfListOfDouble2Matrix((yyvsp[-2].l))); + ViewData->setInterpolationMatrices(type, ListOfListOfDouble2Matrix((yyvsp[(3) - (8)].l)), + ListOfListOfDouble2Matrix((yyvsp[(6) - (8)].l))); #endif - } -#line 4891 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 56: -#line 611 "Gmsh.y" /* yacc.c:1646 */ +#line 615 "Gmsh.y" { #if defined(HAVE_POST) int type = @@ -4901,164 +5522,148 @@ yyreduce: (ViewData->NbSS || ViewData->NbVS) ? TYPE_TET : (ViewData->NbSH || ViewData->NbVH) ? TYPE_HEX : 0; - ViewData->setInterpolationMatrices(type, ListOfListOfDouble2Matrix((yyvsp[-11].l)), - ListOfListOfDouble2Matrix((yyvsp[-8].l)), - ListOfListOfDouble2Matrix((yyvsp[-5].l)), - ListOfListOfDouble2Matrix((yyvsp[-2].l))); + ViewData->setInterpolationMatrices(type, ListOfListOfDouble2Matrix((yyvsp[(3) - (14)].l)), + ListOfListOfDouble2Matrix((yyvsp[(6) - (14)].l)), + ListOfListOfDouble2Matrix((yyvsp[(9) - (14)].l)), + ListOfListOfDouble2Matrix((yyvsp[(12) - (14)].l))); #endif - } -#line 4911 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 57: -#line 630 "Gmsh.y" /* yacc.c:1646 */ +#line 634 "Gmsh.y" { #if defined(HAVE_POST) ViewValueList = &ViewData->Time; #endif - } -#line 4921 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 58: -#line 636 "Gmsh.y" /* yacc.c:1646 */ +#line 640 "Gmsh.y" { - } -#line 4928 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 59: -#line 643 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.i) = 0; } -#line 4934 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 647 "Gmsh.y" + { (yyval.i) = 0; ;} break; case 60: -#line 644 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.i) = 1; } -#line 4940 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 648 "Gmsh.y" + { (yyval.i) = 1; ;} break; case 61: -#line 645 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.i) = 2; } -#line 4946 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 649 "Gmsh.y" + { (yyval.i) = 2; ;} break; case 62: -#line 646 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.i) = 3; } -#line 4952 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 650 "Gmsh.y" + { (yyval.i) = 3; ;} break; case 63: -#line 647 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.i) = 4; } -#line 4958 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 651 "Gmsh.y" + { (yyval.i) = 4; ;} break; case 64: -#line 651 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.i) = 1; } -#line 4964 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 655 "Gmsh.y" + { (yyval.i) = 1; ;} break; case 65: -#line 652 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.i) = -1; } -#line 4970 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 656 "Gmsh.y" + { (yyval.i) = -1; ;} break; case 66: -#line 658 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.c) = (char*)"("; } -#line 4976 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 662 "Gmsh.y" + { (yyval.c) = (char*)"("; ;} break; case 67: -#line 658 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.c) = (char*)"["; } -#line 4982 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 662 "Gmsh.y" + { (yyval.c) = (char*)"["; ;} break; case 68: -#line 659 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.c) = (char*)")"; } -#line 4988 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 663 "Gmsh.y" + { (yyval.c) = (char*)")"; ;} break; case 69: -#line 659 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.c) = (char*)"]"; } -#line 4994 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 663 "Gmsh.y" + { (yyval.c) = (char*)"]"; ;} break; case 72: -#line 668 "Gmsh.y" /* yacc.c:1646 */ +#line 672 "Gmsh.y" { - Msg::SetOnelabNumber((yyvsp[-4].c), (yyvsp[-2].d)); - Free((yyvsp[-4].c)); - } -#line 5003 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Msg::SetOnelabNumber((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].d)); + Free((yyvsp[(3) - (7)].c)); + ;} break; case 73: -#line 673 "Gmsh.y" /* yacc.c:1646 */ +#line 677 "Gmsh.y" { - Msg::SetOnelabString((yyvsp[-4].c), (yyvsp[-2].c)); - Free((yyvsp[-4].c)); - Free((yyvsp[-2].c)); - } -#line 5013 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Msg::SetOnelabString((yyvsp[(3) - (7)].c), (yyvsp[(5) - (7)].c)); + Free((yyvsp[(3) - (7)].c)); + Free((yyvsp[(5) - (7)].c)); + ;} break; case 74: -#line 679 "Gmsh.y" /* yacc.c:1646 */ +#line 683 "Gmsh.y" { - if(!gmsh_yysymbols.count((yyvsp[-3].c)) && (yyvsp[-2].i) && List_Nbr((yyvsp[-1].l)) == 1){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-3].c)); + if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c)) && (yyvsp[(2) - (4)].i) && List_Nbr((yyvsp[(3) - (4)].l)) == 1){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (4)].c)); } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-3].c)]); - if(!(yyvsp[-2].i)) s.list = (List_Nbr((yyvsp[-1].l)) != 1); // list if 0 or > 1 elements + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (4)].c)]); + if(!(yyvsp[(2) - (4)].i)) s.list = (List_Nbr((yyvsp[(3) - (4)].l)) != 1); // list if 0 or > 1 elements if(!s.list){ // single expression - if(List_Nbr((yyvsp[-1].l)) != 1){ - yymsg(0, "Cannot assign list to variable '%s'", (yyvsp[-3].c)); + if(List_Nbr((yyvsp[(3) - (4)].l)) != 1){ + yymsg(0, "Cannot assign list to variable '%s'", (yyvsp[(1) - (4)].c)); } else{ double d; - List_Read((yyvsp[-1].l), 0, &d); + List_Read((yyvsp[(3) - (4)].l), 0, &d); if(s.value.empty()){ - if((yyvsp[-2].i)) yymsg(1, "Uninitialized variable '%s'", (yyvsp[-3].c)); + if((yyvsp[(2) - (4)].i)) yymsg(1, "Uninitialized variable '%s'", (yyvsp[(1) - (4)].c)); s.value.resize(1, 0.); } - switch((yyvsp[-2].i)){ + switch((yyvsp[(2) - (4)].i)){ case 0 : s.value[0] = d; break; case 1 : s.value[0] += d; break; case 2 : s.value[0] -= d; break; case 3 : s.value[0] *= d; break; case 4 : if(d) s.value[0] /= d; - else yymsg(0, "Division by zero in '%s /= %g'", (yyvsp[-3].c), d); + else yymsg(0, "Division by zero in '%s /= %g'", (yyvsp[(1) - (4)].c), d); break; } } } else{ // list of expressions - switch((yyvsp[-2].i)){ + switch((yyvsp[(2) - (4)].i)){ case 0: // affect s.value.clear(); // fall-through case 1: // append - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(3) - (4)].l), i, &d); s.value.push_back(d); } break; case 2: // remove - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(3) - (4)].l), i, &d); std::vector<double>::iterator it = std::find(s.value.begin(), s.value.end(), d); if(it != s.value.end()) s.value.erase(it); @@ -5070,30 +5675,29 @@ yyreduce: } } } - Free((yyvsp[-3].c)); - List_Delete((yyvsp[-1].l)); - } -#line 5077 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (4)].c)); + List_Delete((yyvsp[(3) - (4)].l)); + ;} break; case 75: -#line 739 "Gmsh.y" /* yacc.c:1646 */ +#line 743 "Gmsh.y" { - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-5].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (6)].c)]); s.list = true; double d; - switch((yyvsp[-2].i)){ + switch((yyvsp[(4) - (6)].i)){ case 0: // affect s.value.clear(); // fall-through case 1: // append - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ - List_Read((yyvsp[-1].l), i, &d); + for(int i = 0; i < List_Nbr((yyvsp[(5) - (6)].l)); i++){ + List_Read((yyvsp[(5) - (6)].l), i, &d); s.value.push_back(d); } break; case 2: // remove - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ - List_Read((yyvsp[-1].l), i, &d); + for(int i = 0; i < List_Nbr((yyvsp[(5) - (6)].l)); i++){ + List_Read((yyvsp[(5) - (6)].l), i, &d); std::vector<double>::iterator it = std::find(s.value.begin(), s.value.end(), d); if(it != s.value.end()) s.value.erase(it); @@ -5103,30 +5707,29 @@ yyreduce: yymsg(0, "Operators *= and /= not available for lists"); break; } - Free((yyvsp[-5].c)); - List_Delete((yyvsp[-1].l)); - } -#line 5110 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (6)].c)); + List_Delete((yyvsp[(5) - (6)].l)); + ;} break; case 76: -#line 768 "Gmsh.y" /* yacc.c:1646 */ +#line 772 "Gmsh.y" { - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-5].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (6)].c)]); s.list = true; double d; - switch((yyvsp[-2].i)){ + switch((yyvsp[(4) - (6)].i)){ case 0: // affect s.value.clear(); // fall-through case 1: // append - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ - List_Read((yyvsp[-1].l), i, &d); + for(int i = 0; i < List_Nbr((yyvsp[(5) - (6)].l)); i++){ + List_Read((yyvsp[(5) - (6)].l), i, &d); s.value.push_back(d); } break; case 2: // remove - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ - List_Read((yyvsp[-1].l), i, &d); + for(int i = 0; i < List_Nbr((yyvsp[(5) - (6)].l)); i++){ + List_Read((yyvsp[(5) - (6)].l), i, &d); std::vector<double>::iterator it = std::find(s.value.begin(), s.value.end(), d); if(it != s.value.end()) s.value.erase(it); @@ -5136,823 +5739,759 @@ yyreduce: yymsg(0, "Operators *= and /= not available for lists"); break; } - Free((yyvsp[-5].c)); - List_Delete((yyvsp[-1].l)); - } -#line 5143 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (6)].c)); + List_Delete((yyvsp[(5) - (6)].l)); + ;} break; case 77: -#line 797 "Gmsh.y" /* yacc.c:1646 */ +#line 801 "Gmsh.y" { - assignVariable((yyvsp[-6].c), (int)(yyvsp[-4].d), (yyvsp[-2].i), (yyvsp[-1].d)); - Free((yyvsp[-6].c)); - } -#line 5152 "Gmsh.tab.cpp" /* yacc.c:1646 */ + assignVariable((yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(5) - (7)].i), (yyvsp[(6) - (7)].d)); + Free((yyvsp[(1) - (7)].c)); + ;} break; case 78: -#line 802 "Gmsh.y" /* yacc.c:1646 */ +#line 806 "Gmsh.y" { - assignVariable((yyvsp[-6].c), (int)(yyvsp[-4].d), (yyvsp[-2].i), (yyvsp[-1].d)); - Free((yyvsp[-6].c)); - } -#line 5161 "Gmsh.tab.cpp" /* yacc.c:1646 */ + assignVariable((yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(5) - (7)].i), (yyvsp[(6) - (7)].d)); + Free((yyvsp[(1) - (7)].c)); + ;} break; case 79: -#line 807 "Gmsh.y" /* yacc.c:1646 */ +#line 811 "Gmsh.y" { - assignVariable((yyvsp[-6].c), (int)(yyvsp[-4].d), (yyvsp[-2].i), (yyvsp[-1].d)); - Free((yyvsp[-6].c)); - } -#line 5170 "Gmsh.tab.cpp" /* yacc.c:1646 */ + assignVariable((yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(5) - (7)].i), (yyvsp[(6) - (7)].d)); + Free((yyvsp[(1) - (7)].c)); + ;} break; case 80: -#line 812 "Gmsh.y" /* yacc.c:1646 */ +#line 816 "Gmsh.y" { - assignVariable((yyvsp[-6].c), (int)(yyvsp[-4].d), (yyvsp[-2].i), (yyvsp[-1].d)); - Free((yyvsp[-6].c)); - } -#line 5179 "Gmsh.tab.cpp" /* yacc.c:1646 */ + assignVariable((yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(5) - (7)].i), (yyvsp[(6) - (7)].d)); + Free((yyvsp[(1) - (7)].c)); + ;} break; case 81: -#line 817 "Gmsh.y" /* yacc.c:1646 */ +#line 821 "Gmsh.y" { - assignVariables((yyvsp[-8].c), (yyvsp[-5].l), (yyvsp[-2].i), (yyvsp[-1].l)); - Free((yyvsp[-8].c)); - List_Delete((yyvsp[-5].l)); - List_Delete((yyvsp[-1].l)); - } -#line 5190 "Gmsh.tab.cpp" /* yacc.c:1646 */ + assignVariables((yyvsp[(1) - (9)].c), (yyvsp[(4) - (9)].l), (yyvsp[(7) - (9)].i), (yyvsp[(8) - (9)].l)); + Free((yyvsp[(1) - (9)].c)); + List_Delete((yyvsp[(4) - (9)].l)); + List_Delete((yyvsp[(8) - (9)].l)); + ;} break; case 82: -#line 824 "Gmsh.y" /* yacc.c:1646 */ +#line 828 "Gmsh.y" { - assignVariables((yyvsp[-8].c), (yyvsp[-5].l), (yyvsp[-2].i), (yyvsp[-1].l)); - Free((yyvsp[-8].c)); - List_Delete((yyvsp[-5].l)); - List_Delete((yyvsp[-1].l)); - } -#line 5201 "Gmsh.tab.cpp" /* yacc.c:1646 */ + assignVariables((yyvsp[(1) - (9)].c), (yyvsp[(4) - (9)].l), (yyvsp[(7) - (9)].i), (yyvsp[(8) - (9)].l)); + Free((yyvsp[(1) - (9)].c)); + List_Delete((yyvsp[(4) - (9)].l)); + List_Delete((yyvsp[(8) - (9)].l)); + ;} break; case 83: -#line 831 "Gmsh.y" /* yacc.c:1646 */ +#line 835 "Gmsh.y" { - if(!gmsh_yysymbols.count((yyvsp[-2].c))) - yymsg(0, "Unknown variable '%s'", (yyvsp[-2].c)); + if(!gmsh_yysymbols.count((yyvsp[(1) - (3)].c))) + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (3)].c)); else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-2].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (3)].c)]); if(!s.list && s.value.empty()) - yymsg(0, "Uninitialized variable '%s'", (yyvsp[-2].c)); + yymsg(0, "Uninitialized variable '%s'", (yyvsp[(1) - (3)].c)); else if(!s.list) - s.value[0] += (yyvsp[-1].i); + s.value[0] += (yyvsp[(2) - (3)].i); else - yymsg(0, "Variable '%s' is a list", (yyvsp[-2].c)); + yymsg(0, "Variable '%s' is a list", (yyvsp[(1) - (3)].c)); } - Free((yyvsp[-2].c)); - } -#line 5220 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (3)].c)); + ;} break; case 84: -#line 846 "Gmsh.y" /* yacc.c:1646 */ +#line 850 "Gmsh.y" { - incrementVariable((yyvsp[-5].c), (yyvsp[-3].d), (yyvsp[-1].i)); - Free((yyvsp[-5].c)); - } -#line 5229 "Gmsh.tab.cpp" /* yacc.c:1646 */ + incrementVariable((yyvsp[(1) - (6)].c), (yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].i)); + Free((yyvsp[(1) - (6)].c)); + ;} break; case 85: -#line 851 "Gmsh.y" /* yacc.c:1646 */ +#line 855 "Gmsh.y" { - incrementVariable((yyvsp[-5].c), (yyvsp[-3].d), (yyvsp[-1].i)); - Free((yyvsp[-5].c)); - } -#line 5238 "Gmsh.tab.cpp" /* yacc.c:1646 */ + incrementVariable((yyvsp[(1) - (6)].c), (yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].i)); + Free((yyvsp[(1) - (6)].c)); + ;} break; case 86: -#line 856 "Gmsh.y" /* yacc.c:1646 */ +#line 860 "Gmsh.y" { - incrementVariable((yyvsp[-5].c), (yyvsp[-3].d), (yyvsp[-1].i)); - Free((yyvsp[-5].c)); - } -#line 5247 "Gmsh.tab.cpp" /* yacc.c:1646 */ + incrementVariable((yyvsp[(1) - (6)].c), (yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].i)); + Free((yyvsp[(1) - (6)].c)); + ;} break; case 87: -#line 861 "Gmsh.y" /* yacc.c:1646 */ +#line 865 "Gmsh.y" { - incrementVariable((yyvsp[-5].c), (yyvsp[-3].d), (yyvsp[-1].i)); - Free((yyvsp[-5].c)); - } -#line 5256 "Gmsh.tab.cpp" /* yacc.c:1646 */ + incrementVariable((yyvsp[(1) - (6)].c), (yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].i)); + Free((yyvsp[(1) - (6)].c)); + ;} break; case 88: -#line 866 "Gmsh.y" /* yacc.c:1646 */ +#line 870 "Gmsh.y" { - gmsh_yystringsymbols[(yyvsp[-3].c)] = std::string((yyvsp[-1].c)); - Free((yyvsp[-3].c)); - Free((yyvsp[-1].c)); - } -#line 5266 "Gmsh.tab.cpp" /* yacc.c:1646 */ + gmsh_yystringsymbols[(yyvsp[(1) - (4)].c)] = std::string((yyvsp[(3) - (4)].c)); + Free((yyvsp[(1) - (4)].c)); + Free((yyvsp[(3) - (4)].c)); + ;} break; case 89: -#line 875 "Gmsh.y" /* yacc.c:1646 */ +#line 879 "Gmsh.y" { - std::string tmp((yyvsp[-1].c)); - StringOption(GMSH_SET|GMSH_GUI, (yyvsp[-5].c), 0, (yyvsp[-3].c), tmp); - Free((yyvsp[-5].c)); Free((yyvsp[-3].c)); Free((yyvsp[-1].c)); - } -#line 5276 "Gmsh.tab.cpp" /* yacc.c:1646 */ + std::string tmp((yyvsp[(5) - (6)].c)); + StringOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (6)].c), 0, (yyvsp[(3) - (6)].c), tmp); + Free((yyvsp[(1) - (6)].c)); Free((yyvsp[(3) - (6)].c)); Free((yyvsp[(5) - (6)].c)); + ;} break; case 90: -#line 881 "Gmsh.y" /* yacc.c:1646 */ +#line 885 "Gmsh.y" { - std::string tmp((yyvsp[-1].c)); - StringOption(GMSH_SET|GMSH_GUI, (yyvsp[-8].c), (int)(yyvsp[-6].d), (yyvsp[-3].c), tmp); - Free((yyvsp[-8].c)); Free((yyvsp[-3].c)); Free((yyvsp[-1].c)); - } -#line 5286 "Gmsh.tab.cpp" /* yacc.c:1646 */ + std::string tmp((yyvsp[(8) - (9)].c)); + StringOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (9)].c), (int)(yyvsp[(3) - (9)].d), (yyvsp[(6) - (9)].c), tmp); + Free((yyvsp[(1) - (9)].c)); Free((yyvsp[(6) - (9)].c)); Free((yyvsp[(8) - (9)].c)); + ;} break; case 91: -#line 890 "Gmsh.y" /* yacc.c:1646 */ +#line 894 "Gmsh.y" { double d = 0.; - if(NumberOption(GMSH_GET, (yyvsp[-5].c), 0, (yyvsp[-3].c), d)){ - switch((yyvsp[-2].i)){ - case 0 : d = (yyvsp[-1].d); break; - case 1 : d += (yyvsp[-1].d); break; - case 2 : d -= (yyvsp[-1].d); break; - case 3 : d *= (yyvsp[-1].d); break; + if(NumberOption(GMSH_GET, (yyvsp[(1) - (6)].c), 0, (yyvsp[(3) - (6)].c), d)){ + switch((yyvsp[(4) - (6)].i)){ + case 0 : d = (yyvsp[(5) - (6)].d); break; + case 1 : d += (yyvsp[(5) - (6)].d); break; + case 2 : d -= (yyvsp[(5) - (6)].d); break; + case 3 : d *= (yyvsp[(5) - (6)].d); break; case 4 : - if((yyvsp[-1].d)) d /= (yyvsp[-1].d); - else yymsg(0, "Division by zero in '%s.%s /= %g'", (yyvsp[-5].c), (yyvsp[-3].c), (yyvsp[-1].d)); + if((yyvsp[(5) - (6)].d)) d /= (yyvsp[(5) - (6)].d); + else yymsg(0, "Division by zero in '%s.%s /= %g'", (yyvsp[(1) - (6)].c), (yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].d)); break; } - NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[-5].c), 0, (yyvsp[-3].c), d); + NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (6)].c), 0, (yyvsp[(3) - (6)].c), d); } - Free((yyvsp[-5].c)); Free((yyvsp[-3].c)); - } -#line 5308 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (6)].c)); Free((yyvsp[(3) - (6)].c)); + ;} break; case 92: -#line 908 "Gmsh.y" /* yacc.c:1646 */ +#line 912 "Gmsh.y" { double d = 0.; - if(NumberOption(GMSH_GET, (yyvsp[-8].c), (int)(yyvsp[-6].d), (yyvsp[-3].c), d)){ - switch((yyvsp[-2].i)){ - case 0 : d = (yyvsp[-1].d); break; - case 1 : d += (yyvsp[-1].d); break; - case 2 : d -= (yyvsp[-1].d); break; - case 3 : d *= (yyvsp[-1].d); break; + if(NumberOption(GMSH_GET, (yyvsp[(1) - (9)].c), (int)(yyvsp[(3) - (9)].d), (yyvsp[(6) - (9)].c), d)){ + switch((yyvsp[(7) - (9)].i)){ + case 0 : d = (yyvsp[(8) - (9)].d); break; + case 1 : d += (yyvsp[(8) - (9)].d); break; + case 2 : d -= (yyvsp[(8) - (9)].d); break; + case 3 : d *= (yyvsp[(8) - (9)].d); break; case 4 : - if((yyvsp[-1].d)) d /= (yyvsp[-1].d); - else yymsg(0, "Division by zero in '%s[%d].%s /= %g'", (yyvsp[-8].c), (int)(yyvsp[-6].d), (yyvsp[-3].c), (yyvsp[-1].d)); + if((yyvsp[(8) - (9)].d)) d /= (yyvsp[(8) - (9)].d); + else yymsg(0, "Division by zero in '%s[%d].%s /= %g'", (yyvsp[(1) - (9)].c), (int)(yyvsp[(3) - (9)].d), (yyvsp[(6) - (9)].c), (yyvsp[(8) - (9)].d)); break; } - NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[-8].c), (int)(yyvsp[-6].d), (yyvsp[-3].c), d); + NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (9)].c), (int)(yyvsp[(3) - (9)].d), (yyvsp[(6) - (9)].c), d); } - Free((yyvsp[-8].c)); Free((yyvsp[-3].c)); - } -#line 5330 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (9)].c)); Free((yyvsp[(6) - (9)].c)); + ;} break; case 93: -#line 926 "Gmsh.y" /* yacc.c:1646 */ +#line 930 "Gmsh.y" { double d = 0.; - if(NumberOption(GMSH_GET, (yyvsp[-4].c), 0, (yyvsp[-2].c), d)){ - d += (yyvsp[-1].i); - NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[-4].c), 0, (yyvsp[-2].c), d); + if(NumberOption(GMSH_GET, (yyvsp[(1) - (5)].c), 0, (yyvsp[(3) - (5)].c), d)){ + d += (yyvsp[(4) - (5)].i); + NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (5)].c), 0, (yyvsp[(3) - (5)].c), d); } - Free((yyvsp[-4].c)); Free((yyvsp[-2].c)); - } -#line 5343 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (5)].c)); Free((yyvsp[(3) - (5)].c)); + ;} break; case 94: -#line 935 "Gmsh.y" /* yacc.c:1646 */ +#line 939 "Gmsh.y" { double d = 0.; - if(NumberOption(GMSH_GET, (yyvsp[-7].c), (int)(yyvsp[-5].d), (yyvsp[-2].c), d)){ - d += (yyvsp[-1].i); - NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[-7].c), (int)(yyvsp[-5].d), (yyvsp[-2].c), d); + if(NumberOption(GMSH_GET, (yyvsp[(1) - (8)].c), (int)(yyvsp[(3) - (8)].d), (yyvsp[(6) - (8)].c), d)){ + d += (yyvsp[(7) - (8)].i); + NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (8)].c), (int)(yyvsp[(3) - (8)].d), (yyvsp[(6) - (8)].c), d); } - Free((yyvsp[-7].c)); Free((yyvsp[-2].c)); - } -#line 5356 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (8)].c)); Free((yyvsp[(6) - (8)].c)); + ;} break; case 95: -#line 947 "Gmsh.y" /* yacc.c:1646 */ +#line 951 "Gmsh.y" { - ColorOption(GMSH_SET|GMSH_GUI, (yyvsp[-7].c), 0, (yyvsp[-3].c), (yyvsp[-1].u)); - Free((yyvsp[-7].c)); Free((yyvsp[-3].c)); - } -#line 5365 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ColorOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (8)].c), 0, (yyvsp[(5) - (8)].c), (yyvsp[(7) - (8)].u)); + Free((yyvsp[(1) - (8)].c)); Free((yyvsp[(5) - (8)].c)); + ;} break; case 96: -#line 952 "Gmsh.y" /* yacc.c:1646 */ +#line 956 "Gmsh.y" { - ColorOption(GMSH_SET|GMSH_GUI, (yyvsp[-10].c), (int)(yyvsp[-8].d), (yyvsp[-3].c), (yyvsp[-1].u)); - Free((yyvsp[-10].c)); Free((yyvsp[-3].c)); - } -#line 5374 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ColorOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (11)].c), (int)(yyvsp[(3) - (11)].d), (yyvsp[(8) - (11)].c), (yyvsp[(10) - (11)].u)); + Free((yyvsp[(1) - (11)].c)); Free((yyvsp[(8) - (11)].c)); + ;} break; case 97: -#line 960 "Gmsh.y" /* yacc.c:1646 */ +#line 964 "Gmsh.y" { GmshColorTable *ct = GetColorTable(0); if(!ct) yymsg(0, "View[%d] does not exist", 0); else{ - ct->size = List_Nbr((yyvsp[-1].l)); + ct->size = List_Nbr((yyvsp[(5) - (6)].l)); if(ct->size > COLORTABLE_NBMAX_COLOR) yymsg(0, "Too many (%d>%d) colors in View[%d].ColorTable", ct->size, COLORTABLE_NBMAX_COLOR, 0); else - for(int i = 0; i < ct->size; i++) List_Read((yyvsp[-1].l), i, &ct->table[i]); + for(int i = 0; i < ct->size; i++) List_Read((yyvsp[(5) - (6)].l), i, &ct->table[i]); if(ct->size == 1){ ct->size = 2; ct->table[1] = ct->table[0]; } } - Free((yyvsp[-5].c)); - List_Delete((yyvsp[-1].l)); - } -#line 5398 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (6)].c)); + List_Delete((yyvsp[(5) - (6)].l)); + ;} break; case 98: -#line 980 "Gmsh.y" /* yacc.c:1646 */ +#line 984 "Gmsh.y" { - GmshColorTable *ct = GetColorTable((int)(yyvsp[-6].d)); + GmshColorTable *ct = GetColorTable((int)(yyvsp[(3) - (9)].d)); if(!ct) - yymsg(0, "View[%d] does not exist", (int)(yyvsp[-6].d)); + yymsg(0, "View[%d] does not exist", (int)(yyvsp[(3) - (9)].d)); else{ - ct->size = List_Nbr((yyvsp[-1].l)); + ct->size = List_Nbr((yyvsp[(8) - (9)].l)); if(ct->size > COLORTABLE_NBMAX_COLOR) yymsg(0, "Too many (%d>%d) colors in View[%d].ColorTable", - ct->size, COLORTABLE_NBMAX_COLOR, (int)(yyvsp[-6].d)); + ct->size, COLORTABLE_NBMAX_COLOR, (int)(yyvsp[(3) - (9)].d)); else - for(int i = 0; i < ct->size; i++) List_Read((yyvsp[-1].l), i, &ct->table[i]); + for(int i = 0; i < ct->size; i++) List_Read((yyvsp[(8) - (9)].l), i, &ct->table[i]); if(ct->size == 1){ ct->size = 2; ct->table[1] = ct->table[0]; } } - Free((yyvsp[-8].c)); - List_Delete((yyvsp[-1].l)); - } -#line 5422 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (9)].c)); + List_Delete((yyvsp[(8) - (9)].l)); + ;} break; case 99: -#line 1003 "Gmsh.y" /* yacc.c:1646 */ +#line 1007 "Gmsh.y" { #if defined(HAVE_MESH) - if(!strcmp((yyvsp[-4].c),"Background")) - GModel::current()->getFields()->setBackgroundFieldId((int)(yyvsp[-1].d)); - else if(!strcmp((yyvsp[-4].c),"BoundaryLayer")) - GModel::current()->getFields()->setBoundaryLayerFieldId((int)(yyvsp[-1].d)); + if(!strcmp((yyvsp[(1) - (5)].c),"Background")) + GModel::current()->getFields()->setBackgroundFieldId((int)(yyvsp[(4) - (5)].d)); + else if(!strcmp((yyvsp[(1) - (5)].c),"BoundaryLayer")) + GModel::current()->getFields()->setBoundaryLayerFieldId((int)(yyvsp[(4) - (5)].d)); else - yymsg(0, "Unknown command %s Field", (yyvsp[-4].c)); + yymsg(0, "Unknown command %s Field", (yyvsp[(1) - (5)].c)); #endif - } -#line 5437 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 100: -#line 1014 "Gmsh.y" /* yacc.c:1646 */ +#line 1018 "Gmsh.y" { #if defined(HAVE_MESH) - if(!GModel::current()->getFields()->newField((int)(yyvsp[-4].d), (yyvsp[-1].c))) - yymsg(0, "Cannot create field %i of type '%s'", (int)(yyvsp[-4].d), (yyvsp[-1].c)); + if(!GModel::current()->getFields()->newField((int)(yyvsp[(3) - (7)].d), (yyvsp[(6) - (7)].c))) + yymsg(0, "Cannot create field %i of type '%s'", (int)(yyvsp[(3) - (7)].d), (yyvsp[(6) - (7)].c)); #endif - Free((yyvsp[-1].c)); - } -#line 5449 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(6) - (7)].c)); + ;} break; case 101: -#line 1022 "Gmsh.y" /* yacc.c:1646 */ +#line 1026 "Gmsh.y" { #if defined(HAVE_MESH) - Field *field = GModel::current()->getFields()->get((int)(yyvsp[-6].d)); + Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (9)].d)); if(field){ - FieldOption *option = field->options[(yyvsp[-3].c)]; + FieldOption *option = field->options[(yyvsp[(6) - (9)].c)]; if(option){ - try { option->numericalValue((yyvsp[-1].d)); } + try { option->numericalValue((yyvsp[(8) - (9)].d)); } catch(...){ yymsg(0, "Cannot assign a numerical value to option '%s' " - "in field %i of type '%s'", (yyvsp[-3].c), (int)(yyvsp[-6].d), field->getName()); + "in field %i of type '%s'", (yyvsp[(6) - (9)].c), (int)(yyvsp[(3) - (9)].d), field->getName()); } } else yymsg(0, "Unknown option '%s' in field %i of type '%s'", - (yyvsp[-3].c), (int)(yyvsp[-6].d), field->getName()); + (yyvsp[(6) - (9)].c), (int)(yyvsp[(3) - (9)].d), field->getName()); } else - yymsg(0, "No field with id %i", (int)(yyvsp[-6].d)); + yymsg(0, "No field with id %i", (int)(yyvsp[(3) - (9)].d)); #endif - Free((yyvsp[-3].c)); - } -#line 5475 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(6) - (9)].c)); + ;} break; case 102: -#line 1044 "Gmsh.y" /* yacc.c:1646 */ +#line 1048 "Gmsh.y" { #if defined(HAVE_MESH) - Field *field = GModel::current()->getFields()->get((int)(yyvsp[-6].d)); + Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (9)].d)); if(field){ - FieldOption *option = field->options[(yyvsp[-3].c)]; + FieldOption *option = field->options[(yyvsp[(6) - (9)].c)]; if(option){ - try { option->string((yyvsp[-1].c)); } + try { option->string((yyvsp[(8) - (9)].c)); } catch (...){ yymsg(0, "Cannot assign a string value to option '%s' " - "in field %i of type '%s'", (yyvsp[-3].c), (int)(yyvsp[-6].d), field->getName()); + "in field %i of type '%s'", (yyvsp[(6) - (9)].c), (int)(yyvsp[(3) - (9)].d), field->getName()); } } else yymsg(0, "Unknown option '%s' in field %i of type '%s'", - (yyvsp[-3].c), (int)(yyvsp[-6].d), field->getName()); + (yyvsp[(6) - (9)].c), (int)(yyvsp[(3) - (9)].d), field->getName()); } else - yymsg(0, "No field with id %i", (int)(yyvsp[-6].d)); + yymsg(0, "No field with id %i", (int)(yyvsp[(3) - (9)].d)); #endif - Free((yyvsp[-3].c)); - Free((yyvsp[-1].c)); - } -#line 5502 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(6) - (9)].c)); + Free((yyvsp[(8) - (9)].c)); + ;} break; case 103: -#line 1067 "Gmsh.y" /* yacc.c:1646 */ +#line 1071 "Gmsh.y" { #if defined(HAVE_MESH) - Field *field = GModel::current()->getFields()->get((int)(yyvsp[-8].d)); + Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (11)].d)); if(field){ - FieldOption *option = field->options[(yyvsp[-5].c)]; + FieldOption *option = field->options[(yyvsp[(6) - (11)].c)]; if(option){ std::list<int> vl = option->list(); vl.clear(); - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(9) - (11)].l)); i++){ double id; - List_Read((yyvsp[-2].l), i, &id); + List_Read((yyvsp[(9) - (11)].l), i, &id); vl.push_back((int)id); } option->list(vl); } else yymsg(0, "Unknown option '%s' in field %i of type '%s'", - (yyvsp[-5].c), (int)(yyvsp[-8].d), field->getName()); + (yyvsp[(6) - (11)].c), (int)(yyvsp[(3) - (11)].d), field->getName()); } else - yymsg(0, "No field with id %i", (int)(yyvsp[-8].d)); + yymsg(0, "No field with id %i", (int)(yyvsp[(3) - (11)].d)); #endif - Free((yyvsp[-5].c)); - List_Delete((yyvsp[-2].l)); - } -#line 5532 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(6) - (11)].c)); + List_Delete((yyvsp[(9) - (11)].l)); + ;} break; case 104: -#line 1093 "Gmsh.y" /* yacc.c:1646 */ +#line 1097 "Gmsh.y" { #if defined(HAVE_MESH) - Field *field = GModel::current()->getFields()->get((int)(yyvsp[-4].d)); + Field *field = GModel::current()->getFields()->get((int)(yyvsp[(3) - (7)].d)); if(field){ - FieldCallback *callback = field->callbacks[(yyvsp[-1].c)]; + FieldCallback *callback = field->callbacks[(yyvsp[(6) - (7)].c)]; if(callback) { callback->run(); } else yymsg(0, "Unknown callback '%s' in field %i of type '%s'", - (yyvsp[-1].c), (int)(yyvsp[-4].d), field->getName()); + (yyvsp[(6) - (7)].c), (int)(yyvsp[(3) - (7)].d), field->getName()); } else - yymsg(0, "No field with id %i", (int)(yyvsp[-4].d)); + yymsg(0, "No field with id %i", (int)(yyvsp[(3) - (7)].d)); #endif - Free((yyvsp[-1].c)); - } -#line 5554 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(6) - (7)].c)); + ;} break; case 105: -#line 1114 "Gmsh.y" /* yacc.c:1646 */ +#line 1118 "Gmsh.y" { #if defined(HAVE_PLUGINS) try { - PluginManager::instance()->setPluginOption((yyvsp[-6].c), (yyvsp[-3].c), (yyvsp[-1].d)); + PluginManager::instance()->setPluginOption((yyvsp[(3) - (9)].c), (yyvsp[(6) - (9)].c), (yyvsp[(8) - (9)].d)); } catch (...) { - yymsg(0, "Unknown option '%s' or plugin '%s'", (yyvsp[-3].c), (yyvsp[-6].c)); + yymsg(0, "Unknown option '%s' or plugin '%s'", (yyvsp[(6) - (9)].c), (yyvsp[(3) - (9)].c)); } #endif - Free((yyvsp[-6].c)); Free((yyvsp[-3].c)); - } -#line 5570 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (9)].c)); Free((yyvsp[(6) - (9)].c)); + ;} break; case 106: -#line 1126 "Gmsh.y" /* yacc.c:1646 */ +#line 1130 "Gmsh.y" { #if defined(HAVE_PLUGINS) try { - PluginManager::instance()->setPluginOption((yyvsp[-6].c), (yyvsp[-3].c), (yyvsp[-1].c)); + PluginManager::instance()->setPluginOption((yyvsp[(3) - (9)].c), (yyvsp[(6) - (9)].c), (yyvsp[(8) - (9)].c)); } catch (...) { - yymsg(0, "Unknown option '%s' or plugin '%s'", (yyvsp[-3].c), (yyvsp[-6].c)); + yymsg(0, "Unknown option '%s' or plugin '%s'", (yyvsp[(6) - (9)].c), (yyvsp[(3) - (9)].c)); } #endif - Free((yyvsp[-6].c)); Free((yyvsp[-3].c)); Free((yyvsp[-1].c)); - } -#line 5586 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (9)].c)); Free((yyvsp[(6) - (9)].c)); Free((yyvsp[(8) - (9)].c)); + ;} break; case 110: -#line 1144 "Gmsh.y" /* yacc.c:1646 */ +#line 1148 "Gmsh.y" { - std::string key((yyvsp[0].c)); + std::string key((yyvsp[(3) - (3)].c)); std::vector<double> val(1, 0.); if(!gmsh_yysymbols.count(key)){ gmsh_yysymbols[key].value = val; } - Free((yyvsp[0].c)); - } -#line 5599 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (3)].c)); + ;} break; case 111: -#line 1153 "Gmsh.y" /* yacc.c:1646 */ +#line 1157 "Gmsh.y" { - std::string key((yyvsp[-2].c)); - std::vector<double> val(1, (yyvsp[0].d)); + std::string key((yyvsp[(3) - (5)].c)); + std::vector<double> val(1, (yyvsp[(5) - (5)].d)); if(!gmsh_yysymbols.count(key)){ gmsh_yysymbols[key].value = val; } - Free((yyvsp[-2].c)); - } -#line 5612 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (5)].c)); + ;} break; case 112: -#line 1162 "Gmsh.y" /* yacc.c:1646 */ - { floatOptions.clear(); charOptions.clear(); } -#line 5618 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 1166 "Gmsh.y" + { floatOptions.clear(); charOptions.clear(); ;} break; case 113: -#line 1164 "Gmsh.y" /* yacc.c:1646 */ +#line 1168 "Gmsh.y" { - std::string key((yyvsp[-6].c)); + std::string key((yyvsp[(3) - (9)].c)); std::vector<double> val; - for(int i = 0; i < List_Nbr((yyvsp[-3].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(6) - (9)].l)); i++){ double d; - List_Read((yyvsp[-3].l), i, &d); + List_Read((yyvsp[(6) - (9)].l), i, &d); val.push_back(d); } if(!gmsh_yysymbols.count(key)){ Msg::ExchangeOnelabParameter(key, val, floatOptions, charOptions); gmsh_yysymbols[key].value = val; } - Free((yyvsp[-6].c)); - Free((yyvsp[-3].l)); - } -#line 5638 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (9)].c)); + Free((yyvsp[(6) - (9)].l)); + ;} break; case 114: -#line 1180 "Gmsh.y" /* yacc.c:1646 */ +#line 1184 "Gmsh.y" { - std::string key((yyvsp[-2].c)), val((yyvsp[0].c)); + std::string key((yyvsp[(3) - (5)].c)), val((yyvsp[(5) - (5)].c)); if(!gmsh_yystringsymbols.count(key)){ gmsh_yystringsymbols[key] = val; } - Free((yyvsp[-2].c)); - Free((yyvsp[0].c)); - } -#line 5651 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (5)].c)); + Free((yyvsp[(5) - (5)].c)); + ;} break; case 115: -#line 1189 "Gmsh.y" /* yacc.c:1646 */ - { floatOptions.clear(); charOptions.clear(); } -#line 5657 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 1193 "Gmsh.y" + { floatOptions.clear(); charOptions.clear(); ;} break; case 116: -#line 1191 "Gmsh.y" /* yacc.c:1646 */ +#line 1195 "Gmsh.y" { - std::string key((yyvsp[-6].c)), val((yyvsp[-3].c)); + std::string key((yyvsp[(3) - (9)].c)), val((yyvsp[(6) - (9)].c)); if(!gmsh_yysymbols.count(key)){ Msg::ExchangeOnelabParameter(key, val, floatOptions, charOptions); gmsh_yystringsymbols[key] = val; } - Free((yyvsp[-6].c)); - Free((yyvsp[-3].c)); - } -#line 5671 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (9)].c)); + Free((yyvsp[(6) - (9)].c)); + ;} break; case 118: -#line 1205 "Gmsh.y" /* yacc.c:1646 */ +#line 1209 "Gmsh.y" { - std::string name((yyvsp[0].c)); + std::string name((yyvsp[(3) - (3)].c)); Msg::UndefineOnelabParameter(name); - Free((yyvsp[0].c)); - } -#line 5681 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (3)].c)); + ;} break; case 119: -#line 1213 "Gmsh.y" /* yacc.c:1646 */ +#line 1217 "Gmsh.y" { (yyval.l) = List_Create(20,20,sizeof(doubleXstring)); - doubleXstring v = {(yyvsp[-2].d), (yyvsp[0].c)}; + doubleXstring v = {(yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].c)}; List_Add((yyval.l), &v); - } -#line 5691 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 120: -#line 1219 "Gmsh.y" /* yacc.c:1646 */ +#line 1223 "Gmsh.y" { - doubleXstring v = {(yyvsp[-2].d), (yyvsp[0].c)}; + doubleXstring v = {(yyvsp[(3) - (5)].d), (yyvsp[(5) - (5)].c)}; List_Add((yyval.l), &v); - } -#line 5700 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 123: -#line 1231 "Gmsh.y" /* yacc.c:1646 */ +#line 1235 "Gmsh.y" { - std::string key((yyvsp[-1].c)); - for(int i = 0; i < List_Nbr((yyvsp[0].l)); i++){ + std::string key((yyvsp[(2) - (3)].c)); + for(int i = 0; i < List_Nbr((yyvsp[(3) - (3)].l)); i++){ double v; - List_Read((yyvsp[0].l), i, &v); + List_Read((yyvsp[(3) - (3)].l), i, &v); floatOptions[key].push_back(v); } - Free((yyvsp[-1].c)); - List_Delete((yyvsp[0].l)); - } -#line 5715 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (3)].c)); + List_Delete((yyvsp[(3) - (3)].l)); + ;} break; case 124: -#line 1242 "Gmsh.y" /* yacc.c:1646 */ +#line 1246 "Gmsh.y" { - std::string key((yyvsp[-3].c)); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + std::string key((yyvsp[(2) - (5)].c)); + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ doubleXstring v; - List_Read((yyvsp[-1].l), i, &v); + List_Read((yyvsp[(4) - (5)].l), i, &v); floatOptions[key].push_back(v.d); charOptions[key].push_back(v.s); } - Free((yyvsp[-3].c)); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) - Free(((doubleXstring*)List_Pointer((yyvsp[-1].l), i))->s); - List_Delete((yyvsp[-1].l)); - } -#line 5733 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (5)].c)); + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++) + Free(((doubleXstring*)List_Pointer((yyvsp[(4) - (5)].l), i))->s); + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; case 125: -#line 1257 "Gmsh.y" /* yacc.c:1646 */ +#line 1261 "Gmsh.y" { - std::string key((yyvsp[-1].c)); - std::string val((yyvsp[0].c)); + std::string key((yyvsp[(2) - (3)].c)); + std::string val((yyvsp[(3) - (3)].c)); charOptions[key].push_back(val); - Free((yyvsp[-1].c)); - Free((yyvsp[0].c)); - } -#line 5745 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (3)].c)); + Free((yyvsp[(3) - (3)].c)); + ;} break; case 128: -#line 1273 "Gmsh.y" /* yacc.c:1646 */ +#line 1277 "Gmsh.y" { - std::string key((yyvsp[-1].c)); - double val = (yyvsp[0].d); + std::string key((yyvsp[(2) - (3)].c)); + double val = (yyvsp[(3) - (3)].d); floatOptions[key].push_back(val); - Free((yyvsp[-1].c)); - } -#line 5756 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (3)].c)); + ;} break; case 129: -#line 1281 "Gmsh.y" /* yacc.c:1646 */ +#line 1285 "Gmsh.y" { - std::string key((yyvsp[-1].c)); - std::string val((yyvsp[0].c)); + std::string key((yyvsp[(2) - (3)].c)); + std::string val((yyvsp[(3) - (3)].c)); charOptions[key].push_back(val); - Free((yyvsp[-1].c)); - Free((yyvsp[0].c)); - } -#line 5768 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (3)].c)); + Free((yyvsp[(3) - (3)].c)); + ;} break; case 130: -#line 1290 "Gmsh.y" /* yacc.c:1646 */ +#line 1294 "Gmsh.y" { std::string key("Macro"); - std::string val((yyvsp[0].c)); + std::string val((yyvsp[(3) - (3)].c)); charOptions[key].push_back(val); - Free((yyvsp[0].c)); - } -#line 5779 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (3)].c)); + ;} break; case 131: -#line 1298 "Gmsh.y" /* yacc.c:1646 */ +#line 1302 "Gmsh.y" { - std::string key((yyvsp[-3].c)); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + std::string key((yyvsp[(2) - (5)].c)); + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ char *s; - List_Read((yyvsp[-1].l), i, &s); + List_Read((yyvsp[(4) - (5)].l), i, &s); std::string val(s); Free(s); charOptions[key].push_back(val); } - Free((yyvsp[-3].c)); - List_Delete((yyvsp[-1].l)); - } -#line 5796 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (5)].c)); + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; case 132: -#line 1316 "Gmsh.y" /* yacc.c:1646 */ +#line 1320 "Gmsh.y" { - (yyval.i) = (int)(yyvsp[0].d); - } -#line 5804 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.i) = (int)(yyvsp[(1) - (1)].d); + ;} break; case 133: -#line 1320 "Gmsh.y" /* yacc.c:1646 */ +#line 1324 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName - (std::string((yyvsp[0].c)), 0, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); - Free((yyvsp[0].c)); - } -#line 5814 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (std::string((yyvsp[(1) - (1)].c)), 0, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); + Free((yyvsp[(1) - (1)].c)); + ;} break; case 134: -#line 1326 "Gmsh.y" /* yacc.c:1646 */ +#line 1330 "Gmsh.y" { - (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[-2].c)), 0, (yyvsp[0].d)); - Free((yyvsp[-2].c)); - } -#line 5823 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[(1) - (3)].c)), 0, (yyvsp[(3) - (3)].d)); + Free((yyvsp[(1) - (3)].c)); + ;} break; case 135: -#line 1334 "Gmsh.y" /* yacc.c:1646 */ +#line 1338 "Gmsh.y" { - (yyval.i) = (int)(yyvsp[0].d); - } -#line 5831 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.i) = (int)(yyvsp[(1) - (1)].d); + ;} break; case 136: -#line 1338 "Gmsh.y" /* yacc.c:1646 */ +#line 1342 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName - (std::string((yyvsp[0].c)), 1, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); - Free((yyvsp[0].c)); - } -#line 5841 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (std::string((yyvsp[(1) - (1)].c)), 1, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); + Free((yyvsp[(1) - (1)].c)); + ;} break; case 137: -#line 1344 "Gmsh.y" /* yacc.c:1646 */ +#line 1348 "Gmsh.y" { - (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[-2].c)), 1, (yyvsp[0].d)); - Free((yyvsp[-2].c)); - } -#line 5850 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[(1) - (3)].c)), 1, (yyvsp[(3) - (3)].d)); + Free((yyvsp[(1) - (3)].c)); + ;} break; case 138: -#line 1352 "Gmsh.y" /* yacc.c:1646 */ +#line 1356 "Gmsh.y" { - (yyval.i) = (int)(yyvsp[0].d); - } -#line 5858 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.i) = (int)(yyvsp[(1) - (1)].d); + ;} break; case 139: -#line 1356 "Gmsh.y" /* yacc.c:1646 */ +#line 1360 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName - (std::string((yyvsp[0].c)), 2, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); - Free((yyvsp[0].c)); - } -#line 5868 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (std::string((yyvsp[(1) - (1)].c)), 2, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); + Free((yyvsp[(1) - (1)].c)); + ;} break; case 140: -#line 1362 "Gmsh.y" /* yacc.c:1646 */ +#line 1366 "Gmsh.y" { - (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[-2].c)), 2, (yyvsp[0].d)); - Free((yyvsp[-2].c)); - } -#line 5877 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[(1) - (3)].c)), 2, (yyvsp[(3) - (3)].d)); + Free((yyvsp[(1) - (3)].c)); + ;} break; case 141: -#line 1370 "Gmsh.y" /* yacc.c:1646 */ +#line 1374 "Gmsh.y" { - (yyval.i) = (int)(yyvsp[0].d); - } -#line 5885 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.i) = (int)(yyvsp[(1) - (1)].d); + ;} break; case 142: -#line 1374 "Gmsh.y" /* yacc.c:1646 */ +#line 1378 "Gmsh.y" { (yyval.i) = GModel::current()->setPhysicalName - (std::string((yyvsp[0].c)), 3, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); - Free((yyvsp[0].c)); - } -#line 5895 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (std::string((yyvsp[(1) - (1)].c)), 3, ++GModel::current()->getGEOInternals()->MaxPhysicalNum); + Free((yyvsp[(1) - (1)].c)); + ;} break; case 143: -#line 1380 "Gmsh.y" /* yacc.c:1646 */ +#line 1384 "Gmsh.y" { - (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[-2].c)), 3, (yyvsp[0].d)); - Free((yyvsp[-2].c)); - } -#line 5904 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.i) = GModel::current()->setPhysicalName(std::string((yyvsp[(1) - (3)].c)), 3, (yyvsp[(3) - (3)].d)); + Free((yyvsp[(1) - (3)].c)); + ;} break; case 144: -#line 1388 "Gmsh.y" /* yacc.c:1646 */ +#line 1392 "Gmsh.y" { (yyval.l) = 0; - } -#line 5912 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 145: -#line 1392 "Gmsh.y" /* yacc.c:1646 */ +#line 1396 "Gmsh.y" { (yyval.l) = List_Create(1, 1, sizeof(Vertex*)); - Vertex *v = FindPoint((int)(yyvsp[-1].d)); + Vertex *v = FindPoint((int)(yyvsp[(4) - (5)].d)); if(!v) - yymsg(0, "Unknown point %d", (int)(yyvsp[-1].d)); + yymsg(0, "Unknown point %d", (int)(yyvsp[(4) - (5)].d)); else{ List_Add((yyval.l), &v); } - } -#line 5926 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 146: -#line 1404 "Gmsh.y" /* yacc.c:1646 */ +#line 1408 "Gmsh.y" { for(int i = 0; i < 4; i++) (yyval.v)[i] = 0.; - } -#line 5934 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 147: -#line 1408 "Gmsh.y" /* yacc.c:1646 */ +#line 1412 "Gmsh.y" { - for(int i = 0; i < 4; i++) (yyval.v)[i] = (yyvsp[0].v)[i]; - } -#line 5942 "Gmsh.tab.cpp" /* yacc.c:1646 */ + for(int i = 0; i < 4; i++) (yyval.v)[i] = (yyvsp[(2) - (2)].v)[i]; + ;} break; case 148: -#line 1418 "Gmsh.y" /* yacc.c:1646 */ +#line 1422 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(3) - (7)].d); if(FindPoint(num)){ yymsg(0, "Point %d already exists", num); } else{ - double x = CTX::instance()->geom.scalingFactor * (yyvsp[-1].v)[0]; - double y = CTX::instance()->geom.scalingFactor * (yyvsp[-1].v)[1]; - double z = CTX::instance()->geom.scalingFactor * (yyvsp[-1].v)[2]; - double lc = CTX::instance()->geom.scalingFactor * (yyvsp[-1].v)[3]; + double x = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[0]; + double y = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[1]; + double z = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[2]; + double lc = CTX::instance()->geom.scalingFactor * (yyvsp[(6) - (7)].v)[3]; if(lc == 0.) lc = MAX_LC; // no mesh size given at the point Vertex *v; if(!myGmshSurface) @@ -5964,15 +6503,14 @@ yyreduce: } (yyval.s).Type = MSH_POINT; (yyval.s).Num = num; - } -#line 5969 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 149: -#line 1441 "Gmsh.y" /* yacc.c:1646 */ +#line 1445 "Gmsh.y" { - int num = (int)(yyvsp[-4].i); - int op = (yyvsp[-2].i); + int num = (int)(yyvsp[(4) - (8)].i); + int op = (yyvsp[(6) - (8)].i); PhysicalGroup *p = FindPhysicalGroup(num, MSH_PHYSICAL_POINT); if(p && op == 0){ yymsg(0, "Physical point %d already exists", num); @@ -5981,15 +6519,15 @@ yyreduce: yymsg(0, "Physical point %d does not exists", num); } else if(op == 0){ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(7) - (8)].l)); p = Create_PhysicalGroup(num, MSH_PHYSICAL_POINT, temp); List_Delete(temp); List_Add(GModel::current()->getGEOInternals()->PhysicalGroups, &p); } else if(op == 1){ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(7) - (8)].l), i, &d); int j = (int)d; List_Add(p->Entities, &j); } @@ -5997,65 +6535,62 @@ yyreduce: else{ yymsg(0, "Unsupported operation on physical point %d", num); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(7) - (8)].l)); (yyval.s).Type = MSH_PHYSICAL_POINT; (yyval.s).Num = num; - } -#line 6005 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 150: -#line 1473 "Gmsh.y" /* yacc.c:1646 */ +#line 1477 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-3].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (6)].l)); i++){ double d; - List_Read((yyvsp[-3].l), i, &d); + List_Read((yyvsp[(3) - (6)].l), i, &d); Vertex *v = FindPoint((int)d); if(v){ - v->lc = (yyvsp[-1].d); + v->lc = (yyvsp[(5) - (6)].d); } else{ GVertex *gv = GModel::current()->getVertexByTag((int)d); if(gv) - gv->setPrescribedMeshSizeAtVertex((yyvsp[-1].d)); + gv->setPrescribedMeshSizeAtVertex((yyvsp[(5) - (6)].d)); } } - List_Delete((yyvsp[-3].l)); + List_Delete((yyvsp[(3) - (6)].l)); // dummy values (yyval.s).Type = 0; (yyval.s).Num = 0; - } -#line 6029 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 151: -#line 1496 "Gmsh.y" /* yacc.c:1646 */ +#line 1500 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ yymsg(0, "Curve %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(6) - (7)].l)); Curve *c = Create_Curve(num, MSH_SEGM_LINE, 1, temp, NULL, -1, -1, 0., 1.); Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); CreateReversedCurve(c); List_Delete(temp); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(6) - (7)].l)); (yyval.s).Type = MSH_SEGM_LINE; (yyval.s).Num = num; - } -#line 6051 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 152: -#line 1514 "Gmsh.y" /* yacc.c:1646 */ +#line 1518 "Gmsh.y" { - for (int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for (int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double dnum; - List_Read((yyvsp[-1].l), i, &dnum); + List_Read((yyvsp[(3) - (4)].l), i, &dnum); int num = (int) fabs(dnum); Curve *c = FindCurve(num); if (c){ @@ -6071,223 +6606,214 @@ yyreduce: } } } - } -#line 6076 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 153: -#line 1535 "Gmsh.y" /* yacc.c:1646 */ +#line 1539 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ yymsg(0, "Curve %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(6) - (7)].l)); Curve *c = Create_Curve(num, MSH_SEGM_SPLN, 3, temp, NULL, -1, -1, 0., 1.); Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); CreateReversedCurve(c); List_Delete(temp); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(6) - (7)].l)); (yyval.s).Type = MSH_SEGM_SPLN; (yyval.s).Num = num; - } -#line 6098 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 154: -#line 1553 "Gmsh.y" /* yacc.c:1646 */ +#line 1557 "Gmsh.y" { - int num = (int)(yyvsp[-5].d); + int num = (int)(yyvsp[(3) - (8)].d); if(FindCurve(num)){ yymsg(0, "Curve %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-2].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(6) - (8)].l)); Curve *c = Create_Curve(num, MSH_SEGM_CIRC, 2, temp, NULL, -1, -1, 0., 1.); - if((yyvsp[-1].v)[0] || (yyvsp[-1].v)[1] || (yyvsp[-1].v)[2]){ - c->Circle.n[0] = (yyvsp[-1].v)[0]; - c->Circle.n[1] = (yyvsp[-1].v)[1]; - c->Circle.n[2] = (yyvsp[-1].v)[2]; + if((yyvsp[(7) - (8)].v)[0] || (yyvsp[(7) - (8)].v)[1] || (yyvsp[(7) - (8)].v)[2]){ + c->Circle.n[0] = (yyvsp[(7) - (8)].v)[0]; + c->Circle.n[1] = (yyvsp[(7) - (8)].v)[1]; + c->Circle.n[2] = (yyvsp[(7) - (8)].v)[2]; End_Curve(c); } Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); Curve *rc = CreateReversedCurve(c); - if((yyvsp[-1].v)[0] || (yyvsp[-1].v)[1] || (yyvsp[-1].v)[2]){ - rc->Circle.n[0] = (yyvsp[-1].v)[0]; - rc->Circle.n[1] = (yyvsp[-1].v)[1]; - rc->Circle.n[2] = (yyvsp[-1].v)[2]; + if((yyvsp[(7) - (8)].v)[0] || (yyvsp[(7) - (8)].v)[1] || (yyvsp[(7) - (8)].v)[2]){ + rc->Circle.n[0] = (yyvsp[(7) - (8)].v)[0]; + rc->Circle.n[1] = (yyvsp[(7) - (8)].v)[1]; + rc->Circle.n[2] = (yyvsp[(7) - (8)].v)[2]; End_Curve(rc); } List_Delete(temp); } - List_Delete((yyvsp[-2].l)); + List_Delete((yyvsp[(6) - (8)].l)); (yyval.s).Type = MSH_SEGM_CIRC; (yyval.s).Num = num; - } -#line 6132 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 155: -#line 1583 "Gmsh.y" /* yacc.c:1646 */ +#line 1587 "Gmsh.y" { - int num = (int)(yyvsp[-5].d); + int num = (int)(yyvsp[(3) - (8)].d); if(FindCurve(num)){ yymsg(0, "Curve %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-2].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(6) - (8)].l)); Curve *c = Create_Curve(num, MSH_SEGM_ELLI, 2, temp, NULL, -1, -1, 0., 1.); - if((yyvsp[-1].v)[0] || (yyvsp[-1].v)[1] || (yyvsp[-1].v)[2]){ - c->Circle.n[0] = (yyvsp[-1].v)[0]; - c->Circle.n[1] = (yyvsp[-1].v)[1]; - c->Circle.n[2] = (yyvsp[-1].v)[2]; + if((yyvsp[(7) - (8)].v)[0] || (yyvsp[(7) - (8)].v)[1] || (yyvsp[(7) - (8)].v)[2]){ + c->Circle.n[0] = (yyvsp[(7) - (8)].v)[0]; + c->Circle.n[1] = (yyvsp[(7) - (8)].v)[1]; + c->Circle.n[2] = (yyvsp[(7) - (8)].v)[2]; End_Curve(c); } Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); Curve *rc = CreateReversedCurve(c); - if((yyvsp[-1].v)[0] || (yyvsp[-1].v)[1] || (yyvsp[-1].v)[2]){ - rc->Circle.n[0] = (yyvsp[-1].v)[0]; - rc->Circle.n[1] = (yyvsp[-1].v)[1]; - rc->Circle.n[2] = (yyvsp[-1].v)[2]; + if((yyvsp[(7) - (8)].v)[0] || (yyvsp[(7) - (8)].v)[1] || (yyvsp[(7) - (8)].v)[2]){ + rc->Circle.n[0] = (yyvsp[(7) - (8)].v)[0]; + rc->Circle.n[1] = (yyvsp[(7) - (8)].v)[1]; + rc->Circle.n[2] = (yyvsp[(7) - (8)].v)[2]; End_Curve(rc); } List_Delete(temp); } - List_Delete((yyvsp[-2].l)); + List_Delete((yyvsp[(6) - (8)].l)); (yyval.s).Type = MSH_SEGM_ELLI; (yyval.s).Num = num; - } -#line 6166 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 156: -#line 1613 "Gmsh.y" /* yacc.c:1646 */ +#line 1617 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ yymsg(0, "Curve %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(6) - (7)].l)); Curve *c = Create_Curve(num, MSH_SEGM_BSPLN, 2, temp, NULL, -1, -1, 0., 1.); Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); CreateReversedCurve(c); List_Delete(temp); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(6) - (7)].l)); (yyval.s).Type = MSH_SEGM_BSPLN; (yyval.s).Num = num; - } -#line 6188 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 157: -#line 1631 "Gmsh.y" /* yacc.c:1646 */ +#line 1635 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(3) - (7)].d); if(FindCurve(num)){ yymsg(0, "Curve %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(6) - (7)].l)); Curve *c = Create_Curve(num, MSH_SEGM_BEZIER, 2, temp, NULL, -1, -1, 0., 1.); Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); CreateReversedCurve(c); List_Delete(temp); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(6) - (7)].l)); (yyval.s).Type = MSH_SEGM_BEZIER; (yyval.s).Num = num; - } -#line 6210 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 158: -#line 1650 "Gmsh.y" /* yacc.c:1646 */ +#line 1654 "Gmsh.y" { - int num = (int)(yyvsp[-8].d); - if(List_Nbr((yyvsp[-5].l)) + (int)(yyvsp[-1].d) + 1 != List_Nbr((yyvsp[-3].l))){ + int num = (int)(yyvsp[(3) - (11)].d); + if(List_Nbr((yyvsp[(6) - (11)].l)) + (int)(yyvsp[(10) - (11)].d) + 1 != List_Nbr((yyvsp[(8) - (11)].l))){ yymsg(0, "Wrong definition of Nurbs Curve %d: " "got %d knots, need N + D + 1 = %d + %d + 1 = %d", - (int)(yyvsp[-8].d), List_Nbr((yyvsp[-3].l)), List_Nbr((yyvsp[-5].l)), (int)(yyvsp[-1].d), List_Nbr((yyvsp[-5].l)) + (int)(yyvsp[-1].d) + 1); + (int)(yyvsp[(3) - (11)].d), List_Nbr((yyvsp[(8) - (11)].l)), List_Nbr((yyvsp[(6) - (11)].l)), (int)(yyvsp[(10) - (11)].d), List_Nbr((yyvsp[(6) - (11)].l)) + (int)(yyvsp[(10) - (11)].d) + 1); } else{ if(FindCurve(num)){ yymsg(0, "Curve %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-5].l)); - Curve *c = Create_Curve(num, MSH_SEGM_NURBS, (int)(yyvsp[-1].d), temp, (yyvsp[-3].l), + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(6) - (11)].l)); + Curve *c = Create_Curve(num, MSH_SEGM_NURBS, (int)(yyvsp[(10) - (11)].d), temp, (yyvsp[(8) - (11)].l), -1, -1, 0., 1.); Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); CreateReversedCurve(c); List_Delete(temp); } } - List_Delete((yyvsp[-5].l)); - List_Delete((yyvsp[-3].l)); + List_Delete((yyvsp[(6) - (11)].l)); + List_Delete((yyvsp[(8) - (11)].l)); (yyval.s).Type = MSH_SEGM_NURBS; (yyval.s).Num = num; - } -#line 6240 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 159: -#line 1676 "Gmsh.y" /* yacc.c:1646 */ +#line 1680 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(4) - (8)].d); if(FindEdgeLoop(num)){ yymsg(0, "Line loop %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(7) - (8)].l)); sortEdgesInLoop(num, temp); EdgeLoop *l = Create_EdgeLoop(num, temp); Tree_Add(GModel::current()->getGEOInternals()->EdgeLoops, &l); List_Delete(temp); } - List_Delete((yyvsp[-1].l)); - Free((yyvsp[-6].c)); + List_Delete((yyvsp[(7) - (8)].l)); + Free((yyvsp[(2) - (8)].c)); (yyval.s).Type = MSH_SEGM_LOOP; (yyval.s).Num = num; - } -#line 6262 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 160: -#line 1694 "Gmsh.y" /* yacc.c:1646 */ +#line 1698 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(4) - (8)].d); if(FindCurve(num)){ yymsg(0, "Curve %d already exists", num); } else{ Curve *c = Create_Curve(num, MSH_SEGM_COMPOUND, 1, NULL, NULL, -1, -1, 0., 1.); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) - c->compound.push_back((int)*(double*)List_Pointer((yyvsp[-1].l), i)); + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++) + c->compound.push_back((int)*(double*)List_Pointer((yyvsp[(7) - (8)].l), i)); End_Curve(c); Tree_Add(GModel::current()->getGEOInternals()->Curves, &c); CreateReversedCurve(c); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(7) - (8)].l)); (yyval.s).Type = MSH_SEGM_COMPOUND; (yyval.s).Num = num; - } -#line 6284 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 161: -#line 1712 "Gmsh.y" /* yacc.c:1646 */ +#line 1716 "Gmsh.y" { - int num = (int)(yyvsp[-4].i); - int op = (yyvsp[-2].i); + int num = (int)(yyvsp[(4) - (8)].i); + int op = (yyvsp[(6) - (8)].i); PhysicalGroup *p = FindPhysicalGroup(num, MSH_PHYSICAL_LINE); if(p && op == 0){ yymsg(0, "Physical line %d already exists", num); @@ -6296,15 +6822,15 @@ yyreduce: yymsg(0, "Physical line %d does not exists", num); } else if(op == 0){ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(7) - (8)].l)); p = Create_PhysicalGroup(num, MSH_PHYSICAL_LINE, temp); List_Delete(temp); List_Add(GModel::current()->getGEOInternals()->PhysicalGroups, &p); } else if(op == 1){ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(7) - (8)].l), i, &d); int j = (int)d; List_Add(p->Entities, &j); } @@ -6312,45 +6838,43 @@ yyreduce: else{ yymsg(0, "Unsupported operation on physical line %d", num); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(7) - (8)].l)); (yyval.s).Type = MSH_PHYSICAL_LINE; (yyval.s).Num = num; - } -#line 6320 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 162: -#line 1747 "Gmsh.y" /* yacc.c:1646 */ +#line 1751 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(4) - (8)].d); if(FindSurface(num)){ yymsg(0, "Surface %d already exists", num); } else{ Surface *s = Create_Surface(num, MSH_SURF_PLAN); - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(7) - (8)].l)); setSurfaceGeneratrices(s, temp); List_Delete(temp); End_Surface(s); Tree_Add(GModel::current()->getGEOInternals()->Surfaces, &s); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(7) - (8)].l)); (yyval.s).Type = MSH_SURF_PLAN; (yyval.s).Num = num; - } -#line 6342 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 163: -#line 1765 "Gmsh.y" /* yacc.c:1646 */ +#line 1769 "Gmsh.y" { - int num = (int)(yyvsp[-5].d), type = 0; + int num = (int)(yyvsp[(4) - (9)].d), type = 0; if(FindSurface(num)){ yymsg(0, "Surface %d already exists", num); } else{ double d; - List_Read((yyvsp[-2].l), 0, &d); + List_Read((yyvsp[(7) - (9)].l), 0, &d); EdgeLoop *el = FindEdgeLoop((int)fabs(d)); if(!el){ yymsg(0, "Unknown line loop %d", (int)d); @@ -6369,64 +6893,60 @@ yyreduce: type = MSH_SURF_PLAN; } Surface *s = Create_Surface(num, type); - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-2].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(7) - (9)].l)); setSurfaceGeneratrices(s, temp); List_Delete(temp); End_Surface(s); - s->InSphereCenter = (yyvsp[-1].l); + s->InSphereCenter = (yyvsp[(8) - (9)].l); Tree_Add(GModel::current()->getGEOInternals()->Surfaces, &s); } } - List_Delete((yyvsp[-2].l)); + List_Delete((yyvsp[(7) - (9)].l)); (yyval.s).Type = type; (yyval.s).Num = num; - } -#line 6385 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 164: -#line 1804 "Gmsh.y" /* yacc.c:1646 */ +#line 1808 "Gmsh.y" { myGmshSurface = 0; (yyval.s).Type = 0; (yyval.s).Num = 0; - } -#line 6395 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 165: -#line 1810 "Gmsh.y" /* yacc.c:1646 */ +#line 1814 "Gmsh.y" { - myGmshSurface = gmshSurface::getSurface((int)(yyvsp[-1].d)); + myGmshSurface = gmshSurface::getSurface((int)(yyvsp[(3) - (4)].d)); (yyval.s).Type = 0; (yyval.s).Num = 0; - } -#line 6405 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 166: -#line 1816 "Gmsh.y" /* yacc.c:1646 */ +#line 1820 "Gmsh.y" { - int num = (int)(yyvsp[-6].d); - myGmshSurface = gmshParametricSurface::NewParametricSurface(num, (yyvsp[-3].c), (yyvsp[-2].c), (yyvsp[-1].c)); + int num = (int)(yyvsp[(4) - (10)].d); + myGmshSurface = gmshParametricSurface::NewParametricSurface(num, (yyvsp[(7) - (10)].c), (yyvsp[(8) - (10)].c), (yyvsp[(9) - (10)].c)); (yyval.s).Type = 0; (yyval.s).Num = num; - } -#line 6416 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 167: -#line 1823 "Gmsh.y" /* yacc.c:1646 */ +#line 1827 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); - if (List_Nbr((yyvsp[-1].l)) != 2){ + int num = (int)(yyvsp[(3) - (7)].d); + if (List_Nbr((yyvsp[(6) - (7)].l)) != 2){ yymsg(0, "Sphere %d has to be defined using 2 points (center + " - "any point) and not %d", num, List_Nbr((yyvsp[-1].l))); + "any point) and not %d", num, List_Nbr((yyvsp[(6) - (7)].l))); } else{ double p1,p2; - List_Read((yyvsp[-1].l), 0, &p1); - List_Read((yyvsp[-1].l), 1, &p2); + List_Read((yyvsp[(6) - (7)].l), 0, &p1); + List_Read((yyvsp[(6) - (7)].l), 1, &p2); Vertex *v1 = FindPoint((int)p1); Vertex *v2 = FindPoint((int)p2); if(!v1) yymsg(0, "Sphere %d : unknown point %d", num, (int)p1); @@ -6440,22 +6960,21 @@ yyreduce: } (yyval.s).Type = 0; (yyval.s).Num = num; - } -#line 6445 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 168: -#line 1848 "Gmsh.y" /* yacc.c:1646 */ +#line 1852 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); - if (List_Nbr((yyvsp[-1].l)) != 2){ + int num = (int)(yyvsp[(3) - (7)].d); + if (List_Nbr((yyvsp[(6) - (7)].l)) != 2){ yymsg(0, "PolarSphere %d has to be defined using 2 points (center + " - "any point) and not %d", num, List_Nbr((yyvsp[-1].l))); + "any point) and not %d", num, List_Nbr((yyvsp[(6) - (7)].l))); } else{ double p1,p2; - List_Read((yyvsp[-1].l), 0, &p1); - List_Read((yyvsp[-1].l), 1, &p2); + List_Read((yyvsp[(6) - (7)].l), 0, &p1); + List_Read((yyvsp[(6) - (7)].l), 1, &p2); Vertex *v1 = FindPoint((int)p1); Vertex *v2 = FindPoint((int)p2); if(!v1) yymsg(0, "PolarSphere %d : unknown point %d", num, (int)p1); @@ -6469,71 +6988,68 @@ yyreduce: } (yyval.s).Type = 0; (yyval.s).Num = num; - } -#line 6474 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 169: -#line 1873 "Gmsh.y" /* yacc.c:1646 */ +#line 1877 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(4) - (8)].d); if(FindSurfaceLoop(num)){ yymsg(0, "Surface loop %d already exists", num); } else{ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(7) - (8)].l)); SurfaceLoop *l = Create_SurfaceLoop(num, temp); Tree_Add(GModel::current()->getGEOInternals()->SurfaceLoops, &l); List_Delete(temp); } - List_Delete((yyvsp[-1].l)); - Free((yyvsp[-6].c)); + List_Delete((yyvsp[(7) - (8)].l)); + Free((yyvsp[(2) - (8)].c)); (yyval.s).Type = MSH_SURF_LOOP; (yyval.s).Num = num; - } -#line 6495 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 170: -#line 1890 "Gmsh.y" /* yacc.c:1646 */ +#line 1894 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(4) - (8)].d); if(FindSurface(num)){ yymsg(0, "Surface %d already exists", num); } else{ Surface *s = Create_Surface(num, MSH_SURF_COMPOUND); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ - s->compound.push_back((int)*(double*)List_Pointer((yyvsp[-1].l), i)); + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++){ + s->compound.push_back((int)*(double*)List_Pointer((yyvsp[(7) - (8)].l), i)); } // Added by Trevor Strickler setSurfaceGeneratrices(s, (List_T*) 0 ); Tree_Add(GModel::current()->getGEOInternals()->Surfaces, &s); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(7) - (8)].l)); (yyval.s).Type = MSH_SURF_COMPOUND; (yyval.s).Num = num; - } -#line 6518 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 171: -#line 1910 "Gmsh.y" /* yacc.c:1646 */ +#line 1914 "Gmsh.y" { - int num = (int)(yyvsp[-8].d); + int num = (int)(yyvsp[(4) - (12)].d); if(FindSurface(num)){ yymsg(0, "Surface %d already exists", num); } else{ Surface *s = Create_Surface(num, MSH_SURF_COMPOUND); - for(int i = 0; i < List_Nbr((yyvsp[-5].l)); i++) - s->compound.push_back((int)*(double*)List_Pointer((yyvsp[-5].l), i)); - for (int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(7) - (12)].l)); i++) + s->compound.push_back((int)*(double*)List_Pointer((yyvsp[(7) - (12)].l), i)); + for (int i = 0; i < List_Nbr((yyvsp[(10) - (12)].l)); i++){ if(i > 3){ yymsg(0, "Too many boundary specifiers in compound surface"); break; } - List_T *l = *(List_T**)List_Pointer((yyvsp[-2].l), i); + List_T *l = *(List_T**)List_Pointer((yyvsp[(10) - (12)].l), i); for (int j = 0; j < List_Nbr(l); j++){ s->compoundBoundary[i].push_back((int)*(double*)List_Pointer(l, j)); } @@ -6543,22 +7059,21 @@ yyreduce: Tree_Add(GModel::current()->getGEOInternals()->Surfaces, &s); } - List_Delete((yyvsp[-5].l)); - for (int i = 0; i < List_Nbr((yyvsp[-2].l)); i++) - List_Delete(*(List_T**)List_Pointer((yyvsp[-2].l), i)); - List_Delete((yyvsp[-2].l)); - Free((yyvsp[-4].c)); + List_Delete((yyvsp[(7) - (12)].l)); + for (int i = 0; i < List_Nbr((yyvsp[(10) - (12)].l)); i++) + List_Delete(*(List_T**)List_Pointer((yyvsp[(10) - (12)].l), i)); + List_Delete((yyvsp[(10) - (12)].l)); + Free((yyvsp[(8) - (12)].c)); (yyval.s).Type = MSH_SURF_COMPOUND; (yyval.s).Num = num; - } -#line 6555 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 172: -#line 1943 "Gmsh.y" /* yacc.c:1646 */ +#line 1947 "Gmsh.y" { - int num = (int)(yyvsp[-4].i); - int op = (yyvsp[-2].i); + int num = (int)(yyvsp[(4) - (8)].i); + int op = (yyvsp[(6) - (8)].i); PhysicalGroup *p = FindPhysicalGroup(num, MSH_PHYSICAL_SURFACE); if(p && op == 0){ yymsg(0, "Physical surface %d already exists", num); @@ -6567,15 +7082,15 @@ yyreduce: yymsg(0, "Physical surface %d does not exists", num); } else if(op == 0){ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(7) - (8)].l)); p = Create_PhysicalGroup(num, MSH_PHYSICAL_SURFACE, temp); List_Delete(temp); List_Add(GModel::current()->getGEOInternals()->PhysicalGroups, &p); } else if(op == 1){ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(7) - (8)].l), i, &d); int j = (int)d; List_Add(p->Entities, &j); } @@ -6583,81 +7098,77 @@ yyreduce: else{ yymsg(0, "Unsupported operation on physical surface %d", num); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(7) - (8)].l)); (yyval.s).Type = MSH_PHYSICAL_SURFACE; (yyval.s).Num = num; - } -#line 6591 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 173: -#line 1979 "Gmsh.y" /* yacc.c:1646 */ +#line 1983 "Gmsh.y" { yymsg(0, "'Complex Volume' command is deprecated: use 'Volume' instead"); - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(4) - (8)].d); if(FindVolume(num)){ yymsg(0, "Volume %d already exists", num); } else{ Volume *v = Create_Volume(num, MSH_VOLUME); - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(7) - (8)].l)); setVolumeSurfaces(v, temp); List_Delete(temp); Tree_Add(GModel::current()->getGEOInternals()->Volumes, &v); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(7) - (8)].l)); (yyval.s).Type = MSH_VOLUME; (yyval.s).Num = num; - } -#line 6613 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 174: -#line 1997 "Gmsh.y" /* yacc.c:1646 */ +#line 2001 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(3) - (7)].d); if(FindVolume(num)){ yymsg(0, "Volume %d already exists", num); } else{ Volume *v = Create_Volume(num, MSH_VOLUME); - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(6) - (7)].l)); setVolumeSurfaces(v, temp); List_Delete(temp); Tree_Add(GModel::current()->getGEOInternals()->Volumes, &v); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(6) - (7)].l)); (yyval.s).Type = MSH_VOLUME; (yyval.s).Num = num; - } -#line 6634 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 175: -#line 2014 "Gmsh.y" /* yacc.c:1646 */ +#line 2018 "Gmsh.y" { - int num = (int)(yyvsp[-4].d); + int num = (int)(yyvsp[(4) - (8)].d); if(FindVolume(num)){ yymsg(0, "Volume %d already exists", num); } else{ Volume *v = Create_Volume(num, MSH_VOLUME_COMPOUND); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) - v->compound.push_back((int)*(double*)List_Pointer((yyvsp[-1].l), i)); + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++) + v->compound.push_back((int)*(double*)List_Pointer((yyvsp[(7) - (8)].l), i)); Tree_Add(GModel::current()->getGEOInternals()->Volumes, &v); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(7) - (8)].l)); (yyval.s).Type = MSH_VOLUME_COMPOUND; (yyval.s).Num = num; - } -#line 6654 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 176: -#line 2030 "Gmsh.y" /* yacc.c:1646 */ +#line 2034 "Gmsh.y" { - int num = (int)(yyvsp[-4].i); - int op = (yyvsp[-2].i); + int num = (int)(yyvsp[(4) - (8)].i); + int op = (yyvsp[(6) - (8)].i); PhysicalGroup *p = FindPhysicalGroup(num, MSH_PHYSICAL_VOLUME); if(p && op == 0){ yymsg(0, "Physical volume %d already exists", num); @@ -6666,15 +7177,15 @@ yyreduce: yymsg(0, "Physical volume %d does not exists", num); } else if(op == 0){ - List_T *temp = ListOfDouble2ListOfInt((yyvsp[-1].l)); + List_T *temp = ListOfDouble2ListOfInt((yyvsp[(7) - (8)].l)); p = Create_PhysicalGroup(num, MSH_PHYSICAL_VOLUME, temp); List_Delete(temp); List_Add(GModel::current()->getGEOInternals()->PhysicalGroups, &p); } else if(op == 1){ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(7) - (8)].l), i, &d); int j = (int)d; List_Add(p->Entities, &j); } @@ -6682,141 +7193,128 @@ yyreduce: else{ yymsg(0, "Unsupported operation on physical volume %d", num); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(7) - (8)].l)); (yyval.s).Type = MSH_PHYSICAL_VOLUME; (yyval.s).Num = num; - } -#line 6690 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 177: -#line 2067 "Gmsh.y" /* yacc.c:1646 */ +#line 2071 "Gmsh.y" { - TranslateShapes((yyvsp[-3].v)[0], (yyvsp[-3].v)[1], (yyvsp[-3].v)[2], (yyvsp[-1].l)); - (yyval.l) = (yyvsp[-1].l); - } -#line 6699 "Gmsh.tab.cpp" /* yacc.c:1646 */ + TranslateShapes((yyvsp[(2) - (5)].v)[0], (yyvsp[(2) - (5)].v)[1], (yyvsp[(2) - (5)].v)[2], (yyvsp[(4) - (5)].l)); + (yyval.l) = (yyvsp[(4) - (5)].l); + ;} break; case 178: -#line 2072 "Gmsh.y" /* yacc.c:1646 */ +#line 2076 "Gmsh.y" { - RotateShapes((yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].d), (yyvsp[-1].l)); - (yyval.l) = (yyvsp[-1].l); - } -#line 6708 "Gmsh.tab.cpp" /* yacc.c:1646 */ + RotateShapes((yyvsp[(3) - (11)].v)[0], (yyvsp[(3) - (11)].v)[1], (yyvsp[(3) - (11)].v)[2], (yyvsp[(5) - (11)].v)[0], (yyvsp[(5) - (11)].v)[1], (yyvsp[(5) - (11)].v)[2], (yyvsp[(7) - (11)].d), (yyvsp[(10) - (11)].l)); + (yyval.l) = (yyvsp[(10) - (11)].l); + ;} break; case 179: -#line 2077 "Gmsh.y" /* yacc.c:1646 */ +#line 2081 "Gmsh.y" { - SymmetryShapes((yyvsp[-3].v)[0], (yyvsp[-3].v)[1], (yyvsp[-3].v)[2], (yyvsp[-3].v)[3], (yyvsp[-1].l)); - (yyval.l) = (yyvsp[-1].l); - } -#line 6717 "Gmsh.tab.cpp" /* yacc.c:1646 */ + SymmetryShapes((yyvsp[(2) - (5)].v)[0], (yyvsp[(2) - (5)].v)[1], (yyvsp[(2) - (5)].v)[2], (yyvsp[(2) - (5)].v)[3], (yyvsp[(4) - (5)].l)); + (yyval.l) = (yyvsp[(4) - (5)].l); + ;} break; case 180: -#line 2082 "Gmsh.y" /* yacc.c:1646 */ +#line 2086 "Gmsh.y" { - DilatShapes((yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].d), (yyvsp[-4].d), (yyvsp[-4].d), (yyvsp[-1].l)); - (yyval.l) = (yyvsp[-1].l); - } -#line 6726 "Gmsh.tab.cpp" /* yacc.c:1646 */ + DilatShapes((yyvsp[(3) - (9)].v)[0], (yyvsp[(3) - (9)].v)[1], (yyvsp[(3) - (9)].v)[2], (yyvsp[(5) - (9)].d), (yyvsp[(5) - (9)].d), (yyvsp[(5) - (9)].d), (yyvsp[(8) - (9)].l)); + (yyval.l) = (yyvsp[(8) - (9)].l); + ;} break; case 181: -#line 2087 "Gmsh.y" /* yacc.c:1646 */ +#line 2091 "Gmsh.y" { - DilatShapes((yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2], (yyvsp[-1].l)); - (yyval.l) = (yyvsp[-1].l); - } -#line 6735 "Gmsh.tab.cpp" /* yacc.c:1646 */ + DilatShapes((yyvsp[(3) - (9)].v)[0], (yyvsp[(3) - (9)].v)[1], (yyvsp[(3) - (9)].v)[2], (yyvsp[(5) - (9)].v)[0], (yyvsp[(5) - (9)].v)[1], (yyvsp[(5) - (9)].v)[2], (yyvsp[(8) - (9)].l)); + (yyval.l) = (yyvsp[(8) - (9)].l); + ;} break; case 182: -#line 2092 "Gmsh.y" /* yacc.c:1646 */ +#line 2096 "Gmsh.y" { (yyval.l) = List_Create(3, 3, sizeof(Shape)); - if(!strcmp((yyvsp[-3].c), "Duplicata")){ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + if(!strcmp((yyvsp[(1) - (4)].c), "Duplicata")){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; - List_Read((yyvsp[-1].l), i, &TheShape); + List_Read((yyvsp[(3) - (4)].l), i, &TheShape); CopyShape(TheShape.Type, TheShape.Num, &TheShape.Num); List_Add((yyval.l), &TheShape); } } - else if(!strcmp((yyvsp[-3].c), "Boundary")){ - BoundaryShapes((yyvsp[-1].l), (yyval.l), false); + else if(!strcmp((yyvsp[(1) - (4)].c), "Boundary")){ + BoundaryShapes((yyvsp[(3) - (4)].l), (yyval.l), false); } - else if(!strcmp((yyvsp[-3].c), "CombinedBoundary")){ - BoundaryShapes((yyvsp[-1].l), (yyval.l), true); + else if(!strcmp((yyvsp[(1) - (4)].c), "CombinedBoundary")){ + BoundaryShapes((yyvsp[(3) - (4)].l), (yyval.l), true); } else{ - yymsg(0, "Unknown command on multiple shapes: '%s'", (yyvsp[-3].c)); + yymsg(0, "Unknown command on multiple shapes: '%s'", (yyvsp[(1) - (4)].c)); } - Free((yyvsp[-3].c)); - List_Delete((yyvsp[-1].l)); - } -#line 6762 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (4)].c)); + List_Delete((yyvsp[(3) - (4)].l)); + ;} break; case 183: -#line 2115 "Gmsh.y" /* yacc.c:1646 */ +#line 2119 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - IntersectCurvesWithSurface((yyvsp[-5].l), (int)(yyvsp[-1].d), (yyval.l)); - List_Delete((yyvsp[-5].l)); - } -#line 6772 "Gmsh.tab.cpp" /* yacc.c:1646 */ + IntersectCurvesWithSurface((yyvsp[(4) - (9)].l), (int)(yyvsp[(8) - (9)].d), (yyval.l)); + List_Delete((yyvsp[(4) - (9)].l)); + ;} break; case 184: -#line 2121 "Gmsh.y" /* yacc.c:1646 */ +#line 2125 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape*)); - List_T *tmp = ListOfDouble2ListOfInt((yyvsp[-2].l)); - List_Delete((yyvsp[-2].l)); - SplitCurve((int)(yyvsp[-5].d), tmp, (yyval.l)); + List_T *tmp = ListOfDouble2ListOfInt((yyvsp[(7) - (9)].l)); + List_Delete((yyvsp[(7) - (9)].l)); + SplitCurve((int)(yyvsp[(4) - (9)].d), tmp, (yyval.l)); List_Delete(tmp); - } -#line 6784 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 185: -#line 2131 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.l) = (yyvsp[0].l); } -#line 6790 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 2135 "Gmsh.y" + { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; case 186: -#line 2132 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.l) = (yyvsp[0].l); } -#line 6796 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 2136 "Gmsh.y" + { (yyval.l) = (yyvsp[(1) - (1)].l); ;} break; case 187: -#line 2137 "Gmsh.y" /* yacc.c:1646 */ +#line 2141 "Gmsh.y" { (yyval.l) = List_Create(3, 3, sizeof(Shape)); - } -#line 6804 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 188: -#line 2141 "Gmsh.y" /* yacc.c:1646 */ +#line 2145 "Gmsh.y" { - List_Add((yyval.l), &(yyvsp[0].s)); - } -#line 6812 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Add((yyval.l), &(yyvsp[(2) - (2)].s)); + ;} break; case 189: -#line 2145 "Gmsh.y" /* yacc.c:1646 */ +#line 2149 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(4) - (6)].l), i, &d); Shape TheShape; TheShape.Num = (int)d; Vertex *v = FindPoint(std::abs(TheShape.Num)); @@ -6834,16 +7332,15 @@ yyreduce: yymsg(1, "Unknown point %d", TheShape.Num); } } - } -#line 6839 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 190: -#line 2168 "Gmsh.y" /* yacc.c:1646 */ +#line 2172 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(4) - (6)].l), i, &d); Shape TheShape; TheShape.Num = (int)d; Curve *c = FindCurve(std::abs(TheShape.Num)); @@ -6861,16 +7358,15 @@ yyreduce: yymsg(1, "Unknown curve %d", TheShape.Num); } } - } -#line 6866 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 191: -#line 2191 "Gmsh.y" /* yacc.c:1646 */ +#line 2195 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(4) - (6)].l), i, &d); Shape TheShape; TheShape.Num = (int)d; Surface *s = FindSurface(std::abs(TheShape.Num)); @@ -6888,16 +7384,15 @@ yyreduce: yymsg(1, "Unknown surface %d", TheShape.Num); } } - } -#line 6893 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 192: -#line 2214 "Gmsh.y" /* yacc.c:1646 */ +#line 2218 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ double d; - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(4) - (6)].l), i, &d); Shape TheShape; TheShape.Num = (int)d; Volume *v = FindVolume(std::abs(TheShape.Num)); @@ -6915,48 +7410,46 @@ yyreduce: yymsg(1, "Unknown volume %d", TheShape.Num); } } - } -#line 6920 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 193: -#line 2242 "Gmsh.y" /* yacc.c:1646 */ +#line 2246 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) - if(List_Nbr((yyvsp[-1].l)) == 4){ - int t = (int)(yyvsp[-4].d); + if(List_Nbr((yyvsp[(7) - (8)].l)) == 4){ + int t = (int)(yyvsp[(4) - (8)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { double d[4]; for(int i = 0; i < 4; i++) - List_Read((yyvsp[-1].l), i, &d[i]); + List_Read((yyvsp[(7) - (8)].l), i, &d[i]); gLevelset *ls = new gLevelsetPlane(d[0], d[1], d[2], d[3], t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } else - yymsg(0, "Wrong levelset definition (%d)", (yyvsp[-4].d)); + yymsg(0, "Wrong levelset definition (%d)", (yyvsp[(4) - (8)].d)); #endif - } -#line 6945 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 194: -#line 2263 "Gmsh.y" /* yacc.c:1646 */ +#line 2267 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) - int t = (int)(yyvsp[-6].d); + int t = (int)(yyvsp[(4) - (10)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { //Msg::Info("nb = %d \n",List_Nbr($8) ); - fullMatrix<double> centers(List_Nbr((yyvsp[-2].l)),3); - for (int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ - List_T *l = *(List_T**)List_Pointer((yyvsp[-2].l), i); + fullMatrix<double> centers(List_Nbr((yyvsp[(8) - (10)].l)),3); + for (int i = 0; i < List_Nbr((yyvsp[(8) - (10)].l)); i++){ + List_T *l = *(List_T**)List_Pointer((yyvsp[(8) - (10)].l), i); for (int j = 0; j < List_Nbr(l); j++){ //Msg::Info("nb j = %d \n",List_Nbr(l) ); centers(i,j) = (double)(*(double*)List_Pointer(l, j)); @@ -6966,100 +7459,96 @@ yyreduce: LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++) - List_Delete(*(List_T**)List_Pointer((yyvsp[-2].l), i)); - List_Delete((yyvsp[-2].l)); + for(int i = 0; i < List_Nbr((yyvsp[(8) - (10)].l)); i++) + List_Delete(*(List_T**)List_Pointer((yyvsp[(8) - (10)].l), i)); + List_Delete((yyvsp[(8) - (10)].l)); #endif - } -#line 6975 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 195: -#line 2290 "Gmsh.y" /* yacc.c:1646 */ +#line 2294 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) - if(List_Nbr((yyvsp[-2].l)) == 0){ - int t = (int)(yyvsp[-10].d); + if(List_Nbr((yyvsp[(12) - (14)].l)) == 0){ + int t = (int)(yyvsp[(4) - (14)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { - double pt[3] = {(yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2]}; - double n[3] = {(yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2]}; + double pt[3] = {(yyvsp[(8) - (14)].v)[0], (yyvsp[(8) - (14)].v)[1], (yyvsp[(8) - (14)].v)[2]}; + double n[3] = {(yyvsp[(10) - (14)].v)[0], (yyvsp[(10) - (14)].v)[1], (yyvsp[(10) - (14)].v)[2]}; gLevelset *ls = new gLevelsetPlane(pt, n, t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } else - yymsg(0, "Wrong levelset definition (%d)", (yyvsp[-10].d)); + yymsg(0, "Wrong levelset definition (%d)", (yyvsp[(4) - (14)].d)); #endif - } -#line 6999 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 196: -#line 2311 "Gmsh.y" /* yacc.c:1646 */ +#line 2315 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) - if(List_Nbr((yyvsp[-2].l)) == 0){ - int t = (int)(yyvsp[-12].d); + if(List_Nbr((yyvsp[(14) - (16)].l)) == 0){ + int t = (int)(yyvsp[(4) - (16)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { - double pt1[3] = {(yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2]}; - double pt2[3] = {(yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2]}; - double pt3[3] = {(yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2]}; + double pt1[3] = {(yyvsp[(8) - (16)].v)[0], (yyvsp[(8) - (16)].v)[1], (yyvsp[(8) - (16)].v)[2]}; + double pt2[3] = {(yyvsp[(10) - (16)].v)[0], (yyvsp[(10) - (16)].v)[1], (yyvsp[(10) - (16)].v)[2]}; + double pt3[3] = {(yyvsp[(12) - (16)].v)[0], (yyvsp[(12) - (16)].v)[1], (yyvsp[(12) - (16)].v)[2]}; gLevelset *ls = new gLevelsetPlane(pt1, pt2, pt3, t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } else - yymsg(0, "Wrong levelset definition (%d)", (yyvsp[-12].d)); + yymsg(0, "Wrong levelset definition (%d)", (yyvsp[(4) - (16)].d)); #endif - } -#line 7024 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 197: -#line 2332 "Gmsh.y" /* yacc.c:1646 */ +#line 2336 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) - if(List_Nbr((yyvsp[-2].l)) == 1){ - int t = (int)(yyvsp[-8].d); + if(List_Nbr((yyvsp[(10) - (12)].l)) == 1){ + int t = (int)(yyvsp[(4) - (12)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { double d; - List_Read((yyvsp[-2].l), 0, &d); - gLevelset *ls = new gLevelsetSphere((yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2], d, t); + List_Read((yyvsp[(10) - (12)].l), 0, &d); + gLevelset *ls = new gLevelsetSphere((yyvsp[(8) - (12)].v)[0], (yyvsp[(8) - (12)].v)[1], (yyvsp[(8) - (12)].v)[2], d, t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } else - yymsg(0, "Wrong levelset definition (%d)", (yyvsp[-8].d)); + yymsg(0, "Wrong levelset definition (%d)", (yyvsp[(4) - (12)].d)); #endif - } -#line 7048 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 198: -#line 2352 "Gmsh.y" /* yacc.c:1646 */ +#line 2356 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) - if(!strcmp((yyvsp[-6].c), "Union")){ - int t = (int)(yyvsp[-4].d); + if(!strcmp((yyvsp[(2) - (8)].c), "Union")){ + int t = (int)(yyvsp[(4) - (8)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { std::vector<gLevelset *> vl; - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) { - double d; List_Read((yyvsp[-1].l), i, &d); + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++) { + double d; List_Read((yyvsp[(7) - (8)].l), i, &d); LevelSet *pl = FindLevelSet((int)d); if(!pl) yymsg(0, "Levelset Union %d : unknown levelset %d", t, (int)d); else vl.push_back(pl->ls); @@ -7069,15 +7558,15 @@ yyreduce: Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } - else if(!strcmp((yyvsp[-6].c), "Intersection")){ - int t = (int)(yyvsp[-4].d); + else if(!strcmp((yyvsp[(2) - (8)].c), "Intersection")){ + int t = (int)(yyvsp[(4) - (8)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { std::vector<gLevelset *> vl; - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) { - double d; List_Read((yyvsp[-1].l), i, &d); + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++) { + double d; List_Read((yyvsp[(7) - (8)].l), i, &d); LevelSet *pl = FindLevelSet((int)d); if(!pl) yymsg(0, "Levelset Intersection %d : unknown levelset %d", t, (int)d); else vl.push_back(pl->ls); @@ -7087,15 +7576,15 @@ yyreduce: Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } - else if(!strcmp((yyvsp[-6].c), "Cut")){ - int t = (int)(yyvsp[-4].d); + else if(!strcmp((yyvsp[(2) - (8)].c), "Cut")){ + int t = (int)(yyvsp[(4) - (8)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { std::vector<gLevelset *> vl; - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) { - double d; List_Read((yyvsp[-1].l), i, &d); + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++) { + double d; List_Read((yyvsp[(7) - (8)].l), i, &d); LevelSet *pl = FindLevelSet((int)d); if(!pl) yymsg(0, "Levelset Cut %d : unknown levelset %d", t, (int)d); else vl.push_back(pl->ls); @@ -7105,15 +7594,15 @@ yyreduce: Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } - else if(!strcmp((yyvsp[-6].c), "Crack")){ - int t = (int)(yyvsp[-4].d); + else if(!strcmp((yyvsp[(2) - (8)].c), "Crack")){ + int t = (int)(yyvsp[(4) - (8)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { std::vector<gLevelset *> vl; - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) { - double d; List_Read((yyvsp[-1].l), i, &d); + for(int i = 0; i < List_Nbr((yyvsp[(7) - (8)].l)); i++) { + double d; List_Read((yyvsp[(7) - (8)].l), i, &d); LevelSet *pl = FindLevelSet((int)d); if(!pl) yymsg(0, "Levelset Crack %d : unknown levelset %d", t, (int)d); else vl.push_back(pl->ls); @@ -7123,14 +7612,14 @@ yyreduce: Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } - else if(!strcmp((yyvsp[-6].c), "Reverse")){ - int t = (int)(yyvsp[-4].d); + else if(!strcmp((yyvsp[(2) - (8)].c), "Reverse")){ + int t = (int)(yyvsp[(4) - (8)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { double d; - List_Read((yyvsp[-1].l), 0, &d); + List_Read((yyvsp[(7) - (8)].l), 0, &d); LevelSet *pl = FindLevelSet((int)d); gLevelset *ls = NULL; if(!pl) yymsg(0, "Levelset Reverse %d : unknown levelset %d", t, (int)d); @@ -7140,14 +7629,14 @@ yyreduce: } } #if defined(HAVE_POST) - else if(!strcmp((yyvsp[-6].c), "PostView")){ - int t = (int)(yyvsp[-4].d); + else if(!strcmp((yyvsp[(2) - (8)].c), "PostView")){ + int t = (int)(yyvsp[(4) - (8)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { - if(List_Nbr((yyvsp[-1].l)) > 0){ - double d; List_Read((yyvsp[-1].l), 0, &d); + if(List_Nbr((yyvsp[(7) - (8)].l)) > 0){ + double d; List_Read((yyvsp[(7) - (8)].l), 0, &d); gLevelset *ls = new gLevelsetPostView((int)d, t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); @@ -7156,42 +7645,40 @@ yyreduce: } #endif else - yymsg(0, "Wrong levelset definition (%d)", (yyvsp[-4].d)); - Free((yyvsp[-6].c)); + yymsg(0, "Wrong levelset definition (%d)", (yyvsp[(4) - (8)].d)); + Free((yyvsp[(2) - (8)].c)); #endif - } -#line 7164 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 199: -#line 2464 "Gmsh.y" /* yacc.c:1646 */ +#line 2468 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) - if(!strcmp((yyvsp[-6].c), "MathEval")){ - int t = (int)(yyvsp[-4].d); + if(!strcmp((yyvsp[(2) - (8)].c), "MathEval")){ + int t = (int)(yyvsp[(4) - (8)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { - gLevelset *ls = new gLevelsetMathEval((yyvsp[-1].c), t); + gLevelset *ls = new gLevelsetMathEval((yyvsp[(7) - (8)].c), t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } else yymsg(0, "Wrong levelset definition"); - Free((yyvsp[-6].c)); Free((yyvsp[-1].c)); + Free((yyvsp[(2) - (8)].c)); Free((yyvsp[(7) - (8)].c)); #endif - } -#line 7187 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 200: -#line 2483 "Gmsh.y" /* yacc.c:1646 */ +#line 2487 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) - if(!strcmp((yyvsp[-4].c), "CutMesh")){ - int t = (int)(yyvsp[-2].d); + if(!strcmp((yyvsp[(2) - (6)].c), "CutMesh")){ + int t = (int)(yyvsp[(4) - (6)].d); GModel *GM = GModel::current(); if(FindLevelSet(t)){ GM->buildCutGModel(FindLevelSet(t)->ls, true, false); @@ -7200,8 +7687,8 @@ yyreduce: else yymsg(0, "Unknown levelset (%d)", t); } - else if(!strcmp((yyvsp[-4].c), "CutMeshTri")){ - int t = (int)(yyvsp[-2].d); + else if(!strcmp((yyvsp[(2) - (6)].c), "CutMeshTri")){ + int t = (int)(yyvsp[(4) - (6)].d); GModel *GM = GModel::current(); if(FindLevelSet(t)){ GM->buildCutGModel(FindLevelSet(t)->ls, true, true); @@ -7210,8 +7697,8 @@ yyreduce: else yymsg(0, "Unknown levelset (%d)", t); } - else if(!strcmp((yyvsp[-4].c), "SplitMesh")){ - int t = (int)(yyvsp[-2].d); + else if(!strcmp((yyvsp[(2) - (6)].c), "SplitMesh")){ + int t = (int)(yyvsp[(4) - (6)].d); GModel *GM = GModel::current(); if(FindLevelSet(t)){ GM->buildCutGModel(FindLevelSet(t)->ls, false, true); @@ -7222,105 +7709,104 @@ yyreduce: } else yymsg(0, "Wrong levelset definition"); - Free((yyvsp[-4].c)); + Free((yyvsp[(2) - (6)].c)); #endif - } -#line 7229 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 201: -#line 2522 "Gmsh.y" /* yacc.c:1646 */ +#line 2526 "Gmsh.y" { #if defined(HAVE_DINTEGRATION) - if(!strcmp((yyvsp[-12].c), "Cylinder") && List_Nbr((yyvsp[-2].l)) == 1){ - int t = (int)(yyvsp[-10].d); + if(!strcmp((yyvsp[(2) - (14)].c), "Cylinder") && List_Nbr((yyvsp[(12) - (14)].l)) == 1){ + int t = (int)(yyvsp[(4) - (14)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { double d; - List_Read((yyvsp[-2].l), 0, &d); - double pt[3] = {(yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2]}; - double dir[3] = {(yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2]}; + List_Read((yyvsp[(12) - (14)].l), 0, &d); + double pt[3] = {(yyvsp[(8) - (14)].v)[0], (yyvsp[(8) - (14)].v)[1], (yyvsp[(8) - (14)].v)[2]}; + double dir[3] = {(yyvsp[(10) - (14)].v)[0], (yyvsp[(10) - (14)].v)[1], (yyvsp[(10) - (14)].v)[2]}; gLevelset *ls = new gLevelsetGenCylinder(pt, dir, d, t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } - else if(!strcmp((yyvsp[-12].c), "Cone") && List_Nbr((yyvsp[-2].l)) == 1){ - int t = (int)(yyvsp[-10].d); + else if(!strcmp((yyvsp[(2) - (14)].c), "Cone") && List_Nbr((yyvsp[(12) - (14)].l)) == 1){ + int t = (int)(yyvsp[(4) - (14)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { double d; - List_Read((yyvsp[-2].l), 0, &d); - double pt[3] = {(yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2]}; - double dir[3] = {(yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2]}; + List_Read((yyvsp[(12) - (14)].l), 0, &d); + double pt[3] = {(yyvsp[(8) - (14)].v)[0], (yyvsp[(8) - (14)].v)[1], (yyvsp[(8) - (14)].v)[2]}; + double dir[3] = {(yyvsp[(10) - (14)].v)[0], (yyvsp[(10) - (14)].v)[1], (yyvsp[(10) - (14)].v)[2]}; gLevelset *ls = new gLevelsetCone(pt, dir, d, t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } - else if(!strcmp((yyvsp[-12].c), "Cylinder") && List_Nbr((yyvsp[-2].l)) == 2){ - int t = (int)(yyvsp[-10].d); + else if(!strcmp((yyvsp[(2) - (14)].c), "Cylinder") && List_Nbr((yyvsp[(12) - (14)].l)) == 2){ + int t = (int)(yyvsp[(4) - (14)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { double d[2]; for(int i = 0; i < 2; i++) - List_Read((yyvsp[-2].l), i, &d[i]); - double pt[3] = {(yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2]}; - double dir[3] = {(yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2]}; + List_Read((yyvsp[(12) - (14)].l), i, &d[i]); + double pt[3] = {(yyvsp[(8) - (14)].v)[0], (yyvsp[(8) - (14)].v)[1], (yyvsp[(8) - (14)].v)[2]}; + double dir[3] = {(yyvsp[(10) - (14)].v)[0], (yyvsp[(10) - (14)].v)[1], (yyvsp[(10) - (14)].v)[2]}; gLevelset *ls = new gLevelsetCylinder(pt, dir, d[0], d[1], t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } - else if(!strcmp((yyvsp[-12].c), "Cylinder") && List_Nbr((yyvsp[-2].l)) == 3){ - int t = (int)(yyvsp[-10].d); + else if(!strcmp((yyvsp[(2) - (14)].c), "Cylinder") && List_Nbr((yyvsp[(12) - (14)].l)) == 3){ + int t = (int)(yyvsp[(4) - (14)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { double d[3]; for(int i = 0; i < 3; i++) - List_Read((yyvsp[-2].l), i, &d[i]); - double pt[3] = {(yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2]}; - double dir[3] = {(yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2]}; + List_Read((yyvsp[(12) - (14)].l), i, &d[i]); + double pt[3] = {(yyvsp[(8) - (14)].v)[0], (yyvsp[(8) - (14)].v)[1], (yyvsp[(8) - (14)].v)[2]}; + double dir[3] = {(yyvsp[(10) - (14)].v)[0], (yyvsp[(10) - (14)].v)[1], (yyvsp[(10) - (14)].v)[2]}; gLevelset *ls = new gLevelsetCylinder(pt, dir, d[0], d[1], d[2], t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } - else if(!strcmp((yyvsp[-12].c), "Ellipsoid") && List_Nbr((yyvsp[-2].l)) == 3){ - int t = (int)(yyvsp[-10].d); + else if(!strcmp((yyvsp[(2) - (14)].c), "Ellipsoid") && List_Nbr((yyvsp[(12) - (14)].l)) == 3){ + int t = (int)(yyvsp[(4) - (14)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { double d[3]; for(int i = 0; i < 3; i++) - List_Read((yyvsp[-2].l), i, &d[i]); - double pt[3] = {(yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2]}; - double dir[3] = {(yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2]}; + List_Read((yyvsp[(12) - (14)].l), i, &d[i]); + double pt[3] = {(yyvsp[(8) - (14)].v)[0], (yyvsp[(8) - (14)].v)[1], (yyvsp[(8) - (14)].v)[2]}; + double dir[3] = {(yyvsp[(10) - (14)].v)[0], (yyvsp[(10) - (14)].v)[1], (yyvsp[(10) - (14)].v)[2]}; gLevelset *ls = new gLevelsetEllipsoid(pt, dir, d[0], d[1], d[2], t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); Tree_Add(GModel::current()->getGEOInternals()->LevelSets, &l); } } - else if(!strcmp((yyvsp[-12].c), "Quadric") && List_Nbr((yyvsp[-2].l)) == 5){ - int t = (int)(yyvsp[-10].d); + else if(!strcmp((yyvsp[(2) - (14)].c), "Quadric") && List_Nbr((yyvsp[(12) - (14)].l)) == 5){ + int t = (int)(yyvsp[(4) - (14)].d); if(FindLevelSet(t)){ yymsg(0, "Levelset %d already exists", t); } else { double d[5]; for(int i = 0; i < 5; i++) - List_Read((yyvsp[-2].l), i, &d[i]); - double pt[3] = {(yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2]}; - double dir[3] = {(yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2]}; + List_Read((yyvsp[(12) - (14)].l), i, &d[i]); + double pt[3] = {(yyvsp[(8) - (14)].v)[0], (yyvsp[(8) - (14)].v)[1], (yyvsp[(8) - (14)].v)[2]}; + double dir[3] = {(yyvsp[(10) - (14)].v)[0], (yyvsp[(10) - (14)].v)[1], (yyvsp[(10) - (14)].v)[2]}; gLevelset *ls = new gLevelsetGeneralQuadric(pt, dir, d[0], d[1], d[2], d[3], d[4], t); LevelSet *l = Create_LevelSet(ls->getTag(), ls); @@ -7328,219 +7814,204 @@ yyreduce: } } else - yymsg(0, "Wrong levelset definition (%d)", (yyvsp[-10].d)); - Free((yyvsp[-12].c)); + yymsg(0, "Wrong levelset definition (%d)", (yyvsp[(4) - (14)].d)); + Free((yyvsp[(2) - (14)].c)); #endif - } -#line 7336 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 202: -#line 2630 "Gmsh.y" /* yacc.c:1646 */ +#line 2634 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; - List_Read((yyvsp[-1].l), i, &TheShape); + List_Read((yyvsp[(3) - (4)].l), i, &TheShape); DeleteShape(TheShape.Type, TheShape.Num); } - List_Delete((yyvsp[-1].l)); - } -#line 7349 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(3) - (4)].l)); + ;} break; case 203: -#line 2639 "Gmsh.y" /* yacc.c:1646 */ +#line 2643 "Gmsh.y" { #if defined(HAVE_MESH) - GModel::current()->getFields()->deleteField((int)(yyvsp[-2].d)); + GModel::current()->getFields()->deleteField((int)(yyvsp[(4) - (6)].d)); #endif - } -#line 7359 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 204: -#line 2645 "Gmsh.y" /* yacc.c:1646 */ +#line 2649 "Gmsh.y" { #if defined(HAVE_POST) - if(!strcmp((yyvsp[-4].c), "View")){ - int index = (int)(yyvsp[-2].d); + if(!strcmp((yyvsp[(2) - (6)].c), "View")){ + int index = (int)(yyvsp[(4) - (6)].d); if(index >= 0 && index < (int)PView::list.size()) delete PView::list[index]; else yymsg(0, "Unknown view %d", index); } else - yymsg(0, "Unknown command 'Delete %s'", (yyvsp[-4].c)); + yymsg(0, "Unknown command 'Delete %s'", (yyvsp[(2) - (6)].c)); #endif - Free((yyvsp[-4].c)); - } -#line 7378 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (6)].c)); + ;} break; case 205: -#line 2660 "Gmsh.y" /* yacc.c:1646 */ +#line 2664 "Gmsh.y" { - if(!strcmp((yyvsp[-1].c), "Meshes") || !strcmp((yyvsp[-1].c), "All")){ + if(!strcmp((yyvsp[(2) - (3)].c), "Meshes") || !strcmp((yyvsp[(2) - (3)].c), "All")){ ClearProject(); } - else if(!strcmp((yyvsp[-1].c), "Model")){ + else if(!strcmp((yyvsp[(2) - (3)].c), "Model")){ GModel::current()->destroy(true); // destroy, but keep name/filename GModel::current()->getGEOInternals()->destroy(); } - else if(!strcmp((yyvsp[-1].c), "Physicals")){ + else if(!strcmp((yyvsp[(2) - (3)].c), "Physicals")){ GModel::current()->getGEOInternals()->reset_physicals(); GModel::current()->deletePhysicalGroups(); } - else if(!strcmp((yyvsp[-1].c), "Variables")){ + else if(!strcmp((yyvsp[(2) - (3)].c), "Variables")){ gmsh_yysymbols.clear(); } - else if(!strcmp((yyvsp[-1].c), "Options")){ + else if(!strcmp((yyvsp[(2) - (3)].c), "Options")){ ReInitOptions(0); InitOptionsGUI(0); } else{ - if(gmsh_yysymbols.count((yyvsp[-1].c))) - gmsh_yysymbols.erase((yyvsp[-1].c)); + if(gmsh_yysymbols.count((yyvsp[(2) - (3)].c))) + gmsh_yysymbols.erase((yyvsp[(2) - (3)].c)); else - yymsg(0, "Unknown object or expression to delete '%s'", (yyvsp[-1].c)); + yymsg(0, "Unknown object or expression to delete '%s'", (yyvsp[(2) - (3)].c)); } - Free((yyvsp[-1].c)); - } -#line 7410 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (3)].c)); + ;} break; case 206: -#line 2688 "Gmsh.y" /* yacc.c:1646 */ +#line 2692 "Gmsh.y" { #if defined(HAVE_POST) - if(!strcmp((yyvsp[-2].c), "Empty") && !strcmp((yyvsp[-1].c), "Views")){ + if(!strcmp((yyvsp[(2) - (4)].c), "Empty") && !strcmp((yyvsp[(3) - (4)].c), "Views")){ for(int i = PView::list.size() - 1; i >= 0; i--) if(PView::list[i]->getData()->empty()) delete PView::list[i]; } else - yymsg(0, "Unknown command 'Delete %s %s'", (yyvsp[-2].c), (yyvsp[-1].c)); + yymsg(0, "Unknown command 'Delete %s %s'", (yyvsp[(2) - (4)].c), (yyvsp[(3) - (4)].c)); #endif - Free((yyvsp[-2].c)); Free((yyvsp[-1].c)); - } -#line 7426 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (4)].c)); Free((yyvsp[(3) - (4)].c)); + ;} break; case 207: -#line 2705 "Gmsh.y" /* yacc.c:1646 */ +#line 2709 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ Shape TheShape; - List_Read((yyvsp[-1].l), i, &TheShape); - ColorShape(TheShape.Type, TheShape.Num, (yyvsp[-3].u), false); + List_Read((yyvsp[(4) - (5)].l), i, &TheShape); + ColorShape(TheShape.Type, TheShape.Num, (yyvsp[(2) - (5)].u), false); } - List_Delete((yyvsp[-1].l)); - } -#line 7439 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; case 208: -#line 2714 "Gmsh.y" /* yacc.c:1646 */ +#line 2718 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(5) - (6)].l)); i++){ Shape TheShape; - List_Read((yyvsp[-1].l), i, &TheShape); - ColorShape(TheShape.Type, TheShape.Num, (yyvsp[-3].u), true); + List_Read((yyvsp[(5) - (6)].l), i, &TheShape); + ColorShape(TheShape.Type, TheShape.Num, (yyvsp[(3) - (6)].u), true); } - List_Delete((yyvsp[-1].l)); - } -#line 7452 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(5) - (6)].l)); + ;} break; case 209: -#line 2728 "Gmsh.y" /* yacc.c:1646 */ +#line 2732 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ Shape TheShape; - List_Read((yyvsp[-1].l), i, &TheShape); - SetPartition(TheShape.Type, TheShape.Num, (yyvsp[-3].d)); + List_Read((yyvsp[(4) - (5)].l), i, &TheShape); + SetPartition(TheShape.Type, TheShape.Num, (yyvsp[(2) - (5)].d)); } - List_Delete((yyvsp[-1].l)); - } -#line 7465 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; case 210: -#line 2742 "Gmsh.y" /* yacc.c:1646 */ +#line 2746 "Gmsh.y" { for(int i = 0; i < 4; i++) - VisibilityShape((yyvsp[-1].c), i, 1, false); - Free((yyvsp[-1].c)); - } -#line 7475 "Gmsh.tab.cpp" /* yacc.c:1646 */ + VisibilityShape((yyvsp[(2) - (3)].c), i, 1, false); + Free((yyvsp[(2) - (3)].c)); + ;} break; case 211: -#line 2748 "Gmsh.y" /* yacc.c:1646 */ +#line 2752 "Gmsh.y" { for(int i = 0; i < 4; i++) - VisibilityShape((yyvsp[-1].c), i, 0, false); - Free((yyvsp[-1].c)); - } -#line 7485 "Gmsh.tab.cpp" /* yacc.c:1646 */ + VisibilityShape((yyvsp[(2) - (3)].c), i, 0, false); + Free((yyvsp[(2) - (3)].c)); + ;} break; case 212: -#line 2754 "Gmsh.y" /* yacc.c:1646 */ +#line 2758 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; - List_Read((yyvsp[-1].l), i, &TheShape); + List_Read((yyvsp[(3) - (4)].l), i, &TheShape); VisibilityShape(TheShape.Type, TheShape.Num, 1, false); } - List_Delete((yyvsp[-1].l)); - } -#line 7498 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(3) - (4)].l)); + ;} break; case 213: -#line 2763 "Gmsh.y" /* yacc.c:1646 */ +#line 2767 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ Shape TheShape; - List_Read((yyvsp[-1].l), i, &TheShape); + List_Read((yyvsp[(4) - (5)].l), i, &TheShape); VisibilityShape(TheShape.Type, TheShape.Num, 1, true); } - List_Delete((yyvsp[-1].l)); - } -#line 7511 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; case 214: -#line 2772 "Gmsh.y" /* yacc.c:1646 */ +#line 2776 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ Shape TheShape; - List_Read((yyvsp[-1].l), i, &TheShape); + List_Read((yyvsp[(3) - (4)].l), i, &TheShape); VisibilityShape(TheShape.Type, TheShape.Num, 0, false); } - List_Delete((yyvsp[-1].l)); - } -#line 7524 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(3) - (4)].l)); + ;} break; case 215: -#line 2781 "Gmsh.y" /* yacc.c:1646 */ +#line 2785 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ Shape TheShape; - List_Read((yyvsp[-1].l), i, &TheShape); + List_Read((yyvsp[(4) - (5)].l), i, &TheShape); VisibilityShape(TheShape.Type, TheShape.Num, 0, true); } - List_Delete((yyvsp[-1].l)); - } -#line 7537 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; case 216: -#line 2795 "Gmsh.y" /* yacc.c:1646 */ +#line 2799 "Gmsh.y" { - if(!strcmp((yyvsp[-2].c), "Include")){ - std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[-1].c)); + if(!strcmp((yyvsp[(1) - (3)].c), "Include")){ + std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(2) - (3)].c)); Msg::StatusBar(true, "Reading '%s'...", tmp.c_str()); // Warning: we explicitly ask ParseFile not to fclose() the included // file, in order to allow user functions definitions in these files. @@ -7554,289 +8025,271 @@ yyreduce: SetBoundingBox(); Msg::StatusBar(true, "Done reading '%s'", tmp.c_str()); } - else if(!strcmp((yyvsp[-2].c), "Print")){ + else if(!strcmp((yyvsp[(1) - (3)].c), "Print")){ // make sure we have the latest data from GEO_Internals in GModel // (fixes bug where we would have no geometry in the picture if // the print command is in the same file as the geometry) GModel::current()->importGEOInternals(); - std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[-1].c)); + std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(2) - (3)].c)); CreateOutputFile(tmp, CTX::instance()->print.fileFormat); } - else if(!strcmp((yyvsp[-2].c), "Save")){ + else if(!strcmp((yyvsp[(1) - (3)].c), "Save")){ GModel::current()->importGEOInternals(); - std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[-1].c)); + std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(2) - (3)].c)); CreateOutputFile(tmp, CTX::instance()->mesh.fileFormat); } - else if(!strcmp((yyvsp[-2].c), "Merge") || !strcmp((yyvsp[-2].c), "MergeWithBoundingBox")){ + else if(!strcmp((yyvsp[(1) - (3)].c), "Merge") || !strcmp((yyvsp[(1) - (3)].c), "MergeWithBoundingBox")){ // MergeWithBoundingBox is deprecated - std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[-1].c)); + std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(2) - (3)].c)); MergeFile(tmp, true); } - else if(!strcmp((yyvsp[-2].c), "NonBlockingSystemCall")){ - SystemCall((yyvsp[-1].c)); + else if(!strcmp((yyvsp[(1) - (3)].c), "NonBlockingSystemCall")){ + SystemCall((yyvsp[(2) - (3)].c)); } - else if(!strcmp((yyvsp[-2].c), "System") || !strcmp((yyvsp[-2].c), "SystemCall")){ - SystemCall((yyvsp[-1].c), true); + else if(!strcmp((yyvsp[(1) - (3)].c), "System") || !strcmp((yyvsp[(1) - (3)].c), "SystemCall")){ + SystemCall((yyvsp[(2) - (3)].c), true); } - else if(!strcmp((yyvsp[-2].c), "SetName")){ - GModel::current()->setName((yyvsp[-1].c)); + else if(!strcmp((yyvsp[(1) - (3)].c), "SetName")){ + GModel::current()->setName((yyvsp[(2) - (3)].c)); } - else if(!strcmp((yyvsp[-2].c), "CreateDir")){ - std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[-1].c)); + else if(!strcmp((yyvsp[(1) - (3)].c), "CreateDir")){ + std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(2) - (3)].c)); CreateSingleDir(tmp); } - else if(!strcmp((yyvsp[-2].c), "OnelabRun")){ - Msg::RunOnelabClient((yyvsp[-1].c)); + else if(!strcmp((yyvsp[(1) - (3)].c), "OnelabRun")){ + Msg::RunOnelabClient((yyvsp[(2) - (3)].c)); } else{ - yymsg(0, "Unknown command '%s'", (yyvsp[-2].c)); + yymsg(0, "Unknown command '%s'", (yyvsp[(1) - (3)].c)); } - Free((yyvsp[-2].c)); Free((yyvsp[-1].c)); - } -#line 7597 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (3)].c)); Free((yyvsp[(2) - (3)].c)); + ;} break; case 217: -#line 2851 "Gmsh.y" /* yacc.c:1646 */ +#line 2855 "Gmsh.y" { - int n = List_Nbr((yyvsp[-2].l)); + int n = List_Nbr((yyvsp[(3) - (5)].l)); if(n == 1){ - char *s; List_Read((yyvsp[-2].l), 0, &s); + char *s; List_Read((yyvsp[(3) - (5)].l), 0, &s); Msg::RunOnelabClient(s); Free(s); } else if(n == 2){ - char *s, *t; List_Read((yyvsp[-2].l), 0, &s); List_Read((yyvsp[-2].l), 1, &t); + char *s, *t; List_Read((yyvsp[(3) - (5)].l), 0, &s); List_Read((yyvsp[(3) - (5)].l), 1, &t); Msg::RunOnelabClient(s, t); Free(s); Free(t); } else{ yymsg(0, "OnelabRun takes one or two arguments"); } - List_Delete((yyvsp[-2].l)); - } -#line 7619 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(3) - (5)].l)); + ;} break; case 218: -#line 2869 "Gmsh.y" /* yacc.c:1646 */ +#line 2873 "Gmsh.y" { #if defined(HAVE_POST) - if(!strcmp((yyvsp[-6].c), "Save") && !strcmp((yyvsp[-5].c), "View")){ - int index = (int)(yyvsp[-3].d); + if(!strcmp((yyvsp[(1) - (7)].c), "Save") && !strcmp((yyvsp[(2) - (7)].c), "View")){ + int index = (int)(yyvsp[(4) - (7)].d); if(index >= 0 && index < (int)PView::list.size()){ - std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[-1].c)); + std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(6) - (7)].c)); PView::list[index]->write(tmp, CTX::instance()->post.fileFormat); } else yymsg(0, "Unknown view %d", index); } else - yymsg(0, "Unknown command '%s'", (yyvsp[-6].c)); + yymsg(0, "Unknown command '%s'", (yyvsp[(1) - (7)].c)); #endif - Free((yyvsp[-6].c)); Free((yyvsp[-5].c)); Free((yyvsp[-1].c)); - } -#line 7640 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (7)].c)); Free((yyvsp[(2) - (7)].c)); Free((yyvsp[(6) - (7)].c)); + ;} break; case 219: -#line 2886 "Gmsh.y" /* yacc.c:1646 */ +#line 2890 "Gmsh.y" { #if defined(HAVE_POST) && defined(HAVE_MESH) - if(!strcmp((yyvsp[-6].c), "Background") && !strcmp((yyvsp[-5].c), "Mesh") && !strcmp((yyvsp[-4].c), "View")){ - int index = (int)(yyvsp[-2].d); + if(!strcmp((yyvsp[(1) - (7)].c), "Background") && !strcmp((yyvsp[(2) - (7)].c), "Mesh") && !strcmp((yyvsp[(3) - (7)].c), "View")){ + int index = (int)(yyvsp[(5) - (7)].d); if(index >= 0 && index < (int)PView::list.size()) GModel::current()->getFields()->setBackgroundMesh(index); else yymsg(0, "Unknown view %d", index); } else - yymsg(0, "Unknown command '%s'", (yyvsp[-6].c)); + yymsg(0, "Unknown command '%s'", (yyvsp[(1) - (7)].c)); #endif - Free((yyvsp[-6].c)); Free((yyvsp[-5].c)); Free((yyvsp[-4].c)); - } -#line 7659 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (7)].c)); Free((yyvsp[(2) - (7)].c)); Free((yyvsp[(3) - (7)].c)); + ;} break; case 220: -#line 2901 "Gmsh.y" /* yacc.c:1646 */ +#line 2905 "Gmsh.y" { - if(!strcmp((yyvsp[-2].c), "Sleep")){ - SleepInSeconds((yyvsp[-1].d)); + if(!strcmp((yyvsp[(1) - (3)].c), "Sleep")){ + SleepInSeconds((yyvsp[(2) - (3)].d)); } - else if(!strcmp((yyvsp[-2].c), "Remesh")){ + else if(!strcmp((yyvsp[(1) - (3)].c), "Remesh")){ yymsg(0, "Surface remeshing must be reinterfaced"); } - else if(!strcmp((yyvsp[-2].c), "Mesh")){ + else if(!strcmp((yyvsp[(1) - (3)].c), "Mesh")){ int lock = CTX::instance()->lock; CTX::instance()->lock = 0; GModel::current()->importGEOInternals(); - GModel::current()->mesh((int)(yyvsp[-1].d)); + GModel::current()->mesh((int)(yyvsp[(2) - (3)].d)); CTX::instance()->lock = lock; } else - yymsg(0, "Unknown command '%s'", (yyvsp[-2].c)); - Free((yyvsp[-2].c)); - } -#line 7682 "Gmsh.tab.cpp" /* yacc.c:1646 */ + yymsg(0, "Unknown command '%s'", (yyvsp[(1) - (3)].c)); + Free((yyvsp[(1) - (3)].c)); + ;} break; case 221: -#line 2920 "Gmsh.y" /* yacc.c:1646 */ +#line 2924 "Gmsh.y" { #if defined(HAVE_PLUGINS) try { - PluginManager::instance()->action((yyvsp[-4].c), (yyvsp[-1].c), 0); + PluginManager::instance()->action((yyvsp[(3) - (7)].c), (yyvsp[(6) - (7)].c), 0); } catch(...) { - yymsg(0, "Unknown action '%s' or plugin '%s'", (yyvsp[-1].c), (yyvsp[-4].c)); + yymsg(0, "Unknown action '%s' or plugin '%s'", (yyvsp[(6) - (7)].c), (yyvsp[(3) - (7)].c)); } #endif - Free((yyvsp[-4].c)); Free((yyvsp[-1].c)); - } -#line 7698 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (7)].c)); Free((yyvsp[(6) - (7)].c)); + ;} break; case 222: -#line 2932 "Gmsh.y" /* yacc.c:1646 */ +#line 2936 "Gmsh.y" { #if defined(HAVE_POST) - if(!strcmp((yyvsp[-1].c), "ElementsFromAllViews")) + if(!strcmp((yyvsp[(2) - (3)].c), "ElementsFromAllViews")) PView::combine(false, 1, CTX::instance()->post.combineRemoveOrig); - else if(!strcmp((yyvsp[-1].c), "ElementsFromVisibleViews")) + else if(!strcmp((yyvsp[(2) - (3)].c), "ElementsFromVisibleViews")) PView::combine(false, 0, CTX::instance()->post.combineRemoveOrig); - else if(!strcmp((yyvsp[-1].c), "ElementsByViewName")) + else if(!strcmp((yyvsp[(2) - (3)].c), "ElementsByViewName")) PView::combine(false, 2, CTX::instance()->post.combineRemoveOrig); - else if(!strcmp((yyvsp[-1].c), "TimeStepsFromAllViews")) + else if(!strcmp((yyvsp[(2) - (3)].c), "TimeStepsFromAllViews")) PView::combine(true, 1, CTX::instance()->post.combineRemoveOrig); - else if(!strcmp((yyvsp[-1].c), "TimeStepsFromVisibleViews")) + else if(!strcmp((yyvsp[(2) - (3)].c), "TimeStepsFromVisibleViews")) PView::combine(true, 0, CTX::instance()->post.combineRemoveOrig); - else if(!strcmp((yyvsp[-1].c), "TimeStepsByViewName")) + else if(!strcmp((yyvsp[(2) - (3)].c), "TimeStepsByViewName")) PView::combine(true, 2, CTX::instance()->post.combineRemoveOrig); - else if(!strcmp((yyvsp[-1].c), "Views")) + else if(!strcmp((yyvsp[(2) - (3)].c), "Views")) PView::combine(false, 1, CTX::instance()->post.combineRemoveOrig); - else if(!strcmp((yyvsp[-1].c), "TimeSteps")) + else if(!strcmp((yyvsp[(2) - (3)].c), "TimeSteps")) PView::combine(true, 2, CTX::instance()->post.combineRemoveOrig); else yymsg(0, "Unknown 'Combine' command"); #endif - Free((yyvsp[-1].c)); - } -#line 7726 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (3)].c)); + ;} break; case 223: -#line 2956 "Gmsh.y" /* yacc.c:1646 */ +#line 2960 "Gmsh.y" { Msg::Exit(0); - } -#line 7734 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 224: -#line 2960 "Gmsh.y" /* yacc.c:1646 */ +#line 2964 "Gmsh.y" { gmsh_yyerrorstate = 999; // this will be checked when yyparse returns YYABORT; - } -#line 7743 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 225: -#line 2965 "Gmsh.y" /* yacc.c:1646 */ +#line 2969 "Gmsh.y" { // FIXME: this is a hack to force a transfer from the old DB to // the new DB. This will become unnecessary if/when we fill the // GModel directly during parsing. GModel::current()->importGEOInternals(); - } -#line 7754 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 226: -#line 2972 "Gmsh.y" /* yacc.c:1646 */ +#line 2976 "Gmsh.y" { new GModel(); GModel::current(GModel::list.size() - 1); - } -#line 7763 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 227: -#line 2977 "Gmsh.y" /* yacc.c:1646 */ +#line 2981 "Gmsh.y" { CTX::instance()->forcedBBox = 0; GModel::current()->importGEOInternals(); SetBoundingBox(); - } -#line 7773 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 228: -#line 2983 "Gmsh.y" /* yacc.c:1646 */ +#line 2987 "Gmsh.y" { CTX::instance()->forcedBBox = 1; - SetBoundingBox((yyvsp[-12].d), (yyvsp[-10].d), (yyvsp[-8].d), (yyvsp[-6].d), (yyvsp[-4].d), (yyvsp[-2].d)); - } -#line 7782 "Gmsh.tab.cpp" /* yacc.c:1646 */ + SetBoundingBox((yyvsp[(3) - (15)].d), (yyvsp[(5) - (15)].d), (yyvsp[(7) - (15)].d), (yyvsp[(9) - (15)].d), (yyvsp[(11) - (15)].d), (yyvsp[(13) - (15)].d)); + ;} break; case 229: -#line 2988 "Gmsh.y" /* yacc.c:1646 */ +#line 2992 "Gmsh.y" { #if defined(HAVE_OPENGL) drawContext::global()->draw(); #endif - } -#line 7792 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 230: -#line 2994 "Gmsh.y" /* yacc.c:1646 */ +#line 2998 "Gmsh.y" { #if defined(HAVE_OPENGL) CTX::instance()->mesh.changed = ENT_ALL; for(unsigned int index = 0; index < PView::list.size(); index++) PView::list[index]->setChanged(true); #endif - } -#line 7804 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 231: -#line 3002 "Gmsh.y" /* yacc.c:1646 */ +#line 3006 "Gmsh.y" { GModel::current()->createTopologyFromMesh(); - } -#line 7812 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 232: -#line 3006 "Gmsh.y" /* yacc.c:1646 */ +#line 3010 "Gmsh.y" { GModel::current()->createTopologyFromMesh(1); - } -#line 7820 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 233: -#line 3010 "Gmsh.y" /* yacc.c:1646 */ +#line 3014 "Gmsh.y" { GModel::current()->importGEOInternals(); GModel::current()->refineMesh(CTX::instance()->mesh.secondOrderLinear); - } -#line 7829 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 234: -#line 3016 "Gmsh.y" /* yacc.c:1646 */ +#line 3020 "Gmsh.y" { int lock = CTX::instance()->lock; CTX::instance()->lock = 0; std::vector<int> technique; - for(int i = 0; i < List_Nbr((yyvsp[-13].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (16)].l)); i++){ double d; - List_Read((yyvsp[-13].l), i, &d); + List_Read((yyvsp[(3) - (16)].l), i, &d); technique.push_back((int)d); } if(technique.empty()){ @@ -7844,9 +8297,9 @@ yyreduce: } else{ std::vector<simpleFunction<double>*> f; - for(int i = 0; i < List_Nbr((yyvsp[-10].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(6) - (16)].l)); i++){ double d; - List_Read((yyvsp[-10].l), i, &d); + List_Read((yyvsp[(6) - (16)].l), i, &d); LevelSet *l = FindLevelSet((int)d); if(l) f.push_back(l->ls); else yymsg(0, "Unknown Levelset %d", (int)d); @@ -7855,59 +8308,57 @@ yyreduce: yyerror("Number of techniques != number of levelsets"); } else{ - if(List_Nbr((yyvsp[-7].l)) != (int)f.size()){ + if(List_Nbr((yyvsp[(9) - (16)].l)) != (int)f.size()){ yyerror("Number of parameters != number of levelsets"); } else{ std::vector<std::vector<double> > parameters; - parameters.resize(List_Nbr((yyvsp[-7].l))); - for(int i = 0; i < List_Nbr((yyvsp[-7].l)); i++){ - List_T *l = *(List_T**)List_Pointer((yyvsp[-7].l), i); + parameters.resize(List_Nbr((yyvsp[(9) - (16)].l))); + for(int i = 0; i < List_Nbr((yyvsp[(9) - (16)].l)); i++){ + List_T *l = *(List_T**)List_Pointer((yyvsp[(9) - (16)].l), i); for(int j = 0; j < List_Nbr(l); j++){ double d; List_Read(l, j, &d); parameters[i].push_back(d); } } - int niter = (int)(yyvsp[-4].d); - bool meshAll = ((yyvsp[-2].d) == 0) ? false : true; + int niter = (int)(yyvsp[(12) - (16)].d); + bool meshAll = ((yyvsp[(14) - (16)].d) == 0) ? false : true; GModel::current()->importGEOInternals(); GModel::current()->adaptMesh(technique, f, parameters, niter, meshAll); } } } - List_Delete((yyvsp[-13].l)); - List_Delete((yyvsp[-10].l)); - for(int i = 0; i < List_Nbr((yyvsp[-7].l)); i++) - List_Delete(*(List_T**)List_Pointer((yyvsp[-7].l), i)); - List_Delete((yyvsp[-7].l)); + List_Delete((yyvsp[(3) - (16)].l)); + List_Delete((yyvsp[(6) - (16)].l)); + for(int i = 0; i < List_Nbr((yyvsp[(9) - (16)].l)); i++) + List_Delete(*(List_T**)List_Pointer((yyvsp[(9) - (16)].l), i)); + List_Delete((yyvsp[(9) - (16)].l)); CTX::instance()->lock = lock; - } -#line 7887 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 235: -#line 3070 "Gmsh.y" /* yacc.c:1646 */ +#line 3074 "Gmsh.y" { #if defined(HAVE_MESH) - SetOrderN(GModel::current(), (yyvsp[-1].d), CTX::instance()->mesh.secondOrderLinear, + SetOrderN(GModel::current(), (yyvsp[(2) - (3)].d), CTX::instance()->mesh.secondOrderLinear, CTX::instance()->mesh.secondOrderIncomplete, CTX::instance()->mesh.meshOnlyVisible); #endif - } -#line 7899 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 236: -#line 3083 "Gmsh.y" /* yacc.c:1646 */ +#line 3087 "Gmsh.y" { - LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[-3].d); - LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[-1].d); + LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(3) - (6)].d); + LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(5) - (6)].d); LoopControlVariablesTab[ImbricatedLoop][2] = 1.0; LoopControlVariablesNameTab[ImbricatedLoop] = ""; gmshgetpos(gmsh_yyin, &yyposImbricatedLoopsTab[ImbricatedLoop]); yylinenoImbricatedLoopsTab[ImbricatedLoop] = gmsh_yylineno; - if((yyvsp[-3].d) > (yyvsp[-1].d)) + if((yyvsp[(3) - (6)].d) > (yyvsp[(5) - (6)].d)) skip_until("For", "EndFor"); else ImbricatedLoop++; @@ -7915,20 +8366,19 @@ yyreduce: yymsg(0, "Reached maximum number of imbricated loops"); ImbricatedLoop = MAX_RECUR_LOOPS - 1; } - } -#line 7920 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 237: -#line 3100 "Gmsh.y" /* yacc.c:1646 */ +#line 3104 "Gmsh.y" { - LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[-5].d); - LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[-3].d); - LoopControlVariablesTab[ImbricatedLoop][2] = (yyvsp[-1].d); + LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(3) - (8)].d); + LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(5) - (8)].d); + LoopControlVariablesTab[ImbricatedLoop][2] = (yyvsp[(7) - (8)].d); LoopControlVariablesNameTab[ImbricatedLoop] = ""; gmshgetpos(gmsh_yyin, &yyposImbricatedLoopsTab[ImbricatedLoop]); yylinenoImbricatedLoopsTab[ImbricatedLoop] = gmsh_yylineno; - if(((yyvsp[-1].d) > 0. && (yyvsp[-5].d) > (yyvsp[-3].d)) || ((yyvsp[-1].d) < 0. && (yyvsp[-5].d) < (yyvsp[-3].d))) + if(((yyvsp[(7) - (8)].d) > 0. && (yyvsp[(3) - (8)].d) > (yyvsp[(5) - (8)].d)) || ((yyvsp[(7) - (8)].d) < 0. && (yyvsp[(3) - (8)].d) < (yyvsp[(5) - (8)].d))) skip_until("For", "EndFor"); else ImbricatedLoop++; @@ -7936,24 +8386,23 @@ yyreduce: yymsg(0, "Reached maximum number of imbricated loops"); ImbricatedLoop = MAX_RECUR_LOOPS - 1; } - } -#line 7941 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 238: -#line 3117 "Gmsh.y" /* yacc.c:1646 */ +#line 3121 "Gmsh.y" { - LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[-3].d); - LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[-1].d); + LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(5) - (8)].d); + LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(7) - (8)].d); LoopControlVariablesTab[ImbricatedLoop][2] = 1.0; - LoopControlVariablesNameTab[ImbricatedLoop] = (yyvsp[-6].c); - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-6].c)]); + LoopControlVariablesNameTab[ImbricatedLoop] = (yyvsp[(2) - (8)].c); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(2) - (8)].c)]); s.list = false; s.value.resize(1); - s.value[0] = (yyvsp[-3].d); + s.value[0] = (yyvsp[(5) - (8)].d); gmshgetpos(gmsh_yyin, &yyposImbricatedLoopsTab[ImbricatedLoop]); yylinenoImbricatedLoopsTab[ImbricatedLoop] = gmsh_yylineno; - if((yyvsp[-3].d) > (yyvsp[-1].d)) + if((yyvsp[(5) - (8)].d) > (yyvsp[(7) - (8)].d)) skip_until("For", "EndFor"); else ImbricatedLoop++; @@ -7961,25 +8410,24 @@ yyreduce: yymsg(0, "Reached maximum number of imbricated loops"); ImbricatedLoop = MAX_RECUR_LOOPS - 1; } - Free((yyvsp[-6].c)); - } -#line 7967 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (8)].c)); + ;} break; case 239: -#line 3139 "Gmsh.y" /* yacc.c:1646 */ +#line 3143 "Gmsh.y" { - LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[-5].d); - LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[-3].d); - LoopControlVariablesTab[ImbricatedLoop][2] = (yyvsp[-1].d); - LoopControlVariablesNameTab[ImbricatedLoop] = (yyvsp[-8].c); - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-8].c)]); + LoopControlVariablesTab[ImbricatedLoop][0] = (yyvsp[(5) - (10)].d); + LoopControlVariablesTab[ImbricatedLoop][1] = (yyvsp[(7) - (10)].d); + LoopControlVariablesTab[ImbricatedLoop][2] = (yyvsp[(9) - (10)].d); + LoopControlVariablesNameTab[ImbricatedLoop] = (yyvsp[(2) - (10)].c); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(2) - (10)].c)]); s.list = false; s.value.resize(1); - s.value[0] = (yyvsp[-5].d); + s.value[0] = (yyvsp[(5) - (10)].d); gmshgetpos(gmsh_yyin, &yyposImbricatedLoopsTab[ImbricatedLoop]); yylinenoImbricatedLoopsTab[ImbricatedLoop] = gmsh_yylineno; - if(((yyvsp[-1].d) > 0. && (yyvsp[-5].d) > (yyvsp[-3].d)) || ((yyvsp[-1].d) < 0. && (yyvsp[-5].d) < (yyvsp[-3].d))) + if(((yyvsp[(9) - (10)].d) > 0. && (yyvsp[(5) - (10)].d) > (yyvsp[(7) - (10)].d)) || ((yyvsp[(9) - (10)].d) < 0. && (yyvsp[(5) - (10)].d) < (yyvsp[(7) - (10)].d))) skip_until("For", "EndFor"); else ImbricatedLoop++; @@ -7987,13 +8435,12 @@ yyreduce: yymsg(0, "Reached maximum number of imbricated loops"); ImbricatedLoop = MAX_RECUR_LOOPS - 1; } - Free((yyvsp[-8].c)); - } -#line 7993 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (10)].c)); + ;} break; case 240: -#line 3161 "Gmsh.y" /* yacc.c:1646 */ +#line 3165 "Gmsh.y" { if(ImbricatedLoop <= 0){ yymsg(0, "Invalid For/EndFor loop"); @@ -8027,804 +8474,760 @@ yyreduce: else ImbricatedLoop--; } - } -#line 8032 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 241: -#line 3196 "Gmsh.y" /* yacc.c:1646 */ +#line 3200 "Gmsh.y" { if(!FunctionManager::Instance()->createFunction - (std::string((yyvsp[0].c)), gmsh_yyin, gmsh_yyname, gmsh_yylineno)) - yymsg(0, "Redefinition of function %s", (yyvsp[0].c)); + (std::string((yyvsp[(2) - (2)].c)), gmsh_yyin, gmsh_yyname, gmsh_yylineno)) + yymsg(0, "Redefinition of function %s", (yyvsp[(2) - (2)].c)); skip_until(NULL, "Return"); - Free((yyvsp[0].c)); - } -#line 8044 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (2)].c)); + ;} break; case 242: -#line 3204 "Gmsh.y" /* yacc.c:1646 */ +#line 3208 "Gmsh.y" { if(!FunctionManager::Instance()->createFunction - (std::string((yyvsp[0].c)), gmsh_yyin, gmsh_yyname, gmsh_yylineno)) - yymsg(0, "Redefinition of function %s", (yyvsp[0].c)); + (std::string((yyvsp[(2) - (2)].c)), gmsh_yyin, gmsh_yyname, gmsh_yylineno)) + yymsg(0, "Redefinition of function %s", (yyvsp[(2) - (2)].c)); skip_until(NULL, "Return"); - Free((yyvsp[0].c)); - } -#line 8056 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (2)].c)); + ;} break; case 243: -#line 3212 "Gmsh.y" /* yacc.c:1646 */ +#line 3216 "Gmsh.y" { if(!FunctionManager::Instance()->leaveFunction (&gmsh_yyin, gmsh_yyname, gmsh_yylineno)) yymsg(0, "Error while exiting function"); - } -#line 8066 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 244: -#line 3218 "Gmsh.y" /* yacc.c:1646 */ +#line 3222 "Gmsh.y" { if(!FunctionManager::Instance()->enterFunction - (std::string((yyvsp[-1].c)), &gmsh_yyin, gmsh_yyname, gmsh_yylineno)) - yymsg(0, "Unknown function %s", (yyvsp[-1].c)); - Free((yyvsp[-1].c)); - } -#line 8077 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (std::string((yyvsp[(2) - (3)].c)), &gmsh_yyin, gmsh_yyname, gmsh_yylineno)) + yymsg(0, "Unknown function %s", (yyvsp[(2) - (3)].c)); + Free((yyvsp[(2) - (3)].c)); + ;} break; case 245: -#line 3225 "Gmsh.y" /* yacc.c:1646 */ +#line 3229 "Gmsh.y" { if(!FunctionManager::Instance()->enterFunction - (std::string((yyvsp[-1].c)), &gmsh_yyin, gmsh_yyname, gmsh_yylineno)) - yymsg(0, "Unknown function %s", (yyvsp[-1].c)); - Free((yyvsp[-1].c)); - } -#line 8088 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (std::string((yyvsp[(2) - (3)].c)), &gmsh_yyin, gmsh_yyname, gmsh_yylineno)) + yymsg(0, "Unknown function %s", (yyvsp[(2) - (3)].c)); + Free((yyvsp[(2) - (3)].c)); + ;} break; case 246: -#line 3232 "Gmsh.y" /* yacc.c:1646 */ +#line 3236 "Gmsh.y" { - if(!(yyvsp[-1].d)) skip_until("If", "EndIf"); - } -#line 8096 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ImbricatedTest++; + if(ImbricatedTest > MAX_RECUR_TESTS-1){ + yymsg(0, "Reached maximum number of imbricated tests"); + ImbricatedTest = MAX_RECUR_TESTS-1; + } + + if(!(yyvsp[(3) - (4)].d)){ + statusImbricatedTests[ImbricatedTest] = 0; // Will be useful later for ElseIf + int flag_until2 = 0; + skip_until_test("If", "EndIf", "Else", &flag_until2); + if(!flag_until2) + ImbricatedTest--; + } + else{ + statusImbricatedTests[ImbricatedTest] = 1; + } + + ;} break; case 247: -#line 3236 "Gmsh.y" /* yacc.c:1646 */ +#line 3256 "Gmsh.y" { - } -#line 8103 "Gmsh.tab.cpp" /* yacc.c:1646 */ + if (ImbricatedTest > 0 && statusImbricatedTests[ImbricatedTest]){ + skip_until("If", "EndIf"); + ImbricatedTest--; + } + ;} break; case 248: -#line 3245 "Gmsh.y" /* yacc.c:1646 */ +#line 3263 "Gmsh.y" { - (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShapes(TRANSLATE, (yyvsp[-1].l), - (yyvsp[-3].v)[0], (yyvsp[-3].v)[1], (yyvsp[-3].v)[2], 0., 0., 0., 0., 0., 0., 0., - NULL, (yyval.l)); - List_Delete((yyvsp[-1].l)); - } -#line 8115 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ImbricatedTest--; + if (ImbricatedTest < 0) + yymsg(1, "Orphan EndIf"); + ;} break; case 249: -#line 3253 "Gmsh.y" /* yacc.c:1646 */ +#line 3275 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShapes(ROTATE, (yyvsp[-1].l), - 0., 0., 0., (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].d), + ExtrudeShapes(TRANSLATE, (yyvsp[(4) - (5)].l), + (yyvsp[(2) - (5)].v)[0], (yyvsp[(2) - (5)].v)[1], (yyvsp[(2) - (5)].v)[2], 0., 0., 0., 0., 0., 0., 0., NULL, (yyval.l)); - List_Delete((yyvsp[-1].l)); - } -#line 8127 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; case 250: -#line 3261 "Gmsh.y" /* yacc.c:1646 */ +#line 3283 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShapes(TRANSLATE_ROTATE, (yyvsp[-1].l), - (yyvsp[-10].v)[0], (yyvsp[-10].v)[1], (yyvsp[-10].v)[2], (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].d), + ExtrudeShapes(ROTATE, (yyvsp[(10) - (11)].l), + 0., 0., 0., (yyvsp[(3) - (11)].v)[0], (yyvsp[(3) - (11)].v)[1], (yyvsp[(3) - (11)].v)[2], (yyvsp[(5) - (11)].v)[0], (yyvsp[(5) - (11)].v)[1], (yyvsp[(5) - (11)].v)[2], (yyvsp[(7) - (11)].d), NULL, (yyval.l)); - List_Delete((yyvsp[-1].l)); - } -#line 8139 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(10) - (11)].l)); + ;} break; case 251: -#line 3269 "Gmsh.y" /* yacc.c:1646 */ +#line 3291 "Gmsh.y" + { + (yyval.l) = List_Create(2, 1, sizeof(Shape)); + ExtrudeShapes(TRANSLATE_ROTATE, (yyvsp[(12) - (13)].l), + (yyvsp[(3) - (13)].v)[0], (yyvsp[(3) - (13)].v)[1], (yyvsp[(3) - (13)].v)[2], (yyvsp[(5) - (13)].v)[0], (yyvsp[(5) - (13)].v)[1], (yyvsp[(5) - (13)].v)[2], (yyvsp[(7) - (13)].v)[0], (yyvsp[(7) - (13)].v)[1], (yyvsp[(7) - (13)].v)[2], (yyvsp[(9) - (13)].d), + NULL, (yyval.l)); + List_Delete((yyvsp[(12) - (13)].l)); + ;} + break; + + case 252: +#line 3299 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8149 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 252: -#line 3275 "Gmsh.y" /* yacc.c:1646 */ + case 253: +#line 3305 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShapes(TRANSLATE, (yyvsp[-3].l), - (yyvsp[-5].v)[0], (yyvsp[-5].v)[1], (yyvsp[-5].v)[2], 0., 0., 0., 0., 0., 0., 0., + ExtrudeShapes(TRANSLATE, (yyvsp[(4) - (7)].l), + (yyvsp[(2) - (7)].v)[0], (yyvsp[(2) - (7)].v)[1], (yyvsp[(2) - (7)].v)[2], 0., 0., 0., 0., 0., 0., 0., &extr, (yyval.l)); - List_Delete((yyvsp[-3].l)); - } -#line 8161 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (7)].l)); + ;} break; - case 253: -#line 3283 "Gmsh.y" /* yacc.c:1646 */ + case 254: +#line 3313 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8171 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 254: -#line 3289 "Gmsh.y" /* yacc.c:1646 */ + case 255: +#line 3319 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShapes(ROTATE, (yyvsp[-3].l), - 0., 0., 0., (yyvsp[-10].v)[0], (yyvsp[-10].v)[1], (yyvsp[-10].v)[2], (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].d), + ExtrudeShapes(ROTATE, (yyvsp[(10) - (13)].l), + 0., 0., 0., (yyvsp[(3) - (13)].v)[0], (yyvsp[(3) - (13)].v)[1], (yyvsp[(3) - (13)].v)[2], (yyvsp[(5) - (13)].v)[0], (yyvsp[(5) - (13)].v)[1], (yyvsp[(5) - (13)].v)[2], (yyvsp[(7) - (13)].d), &extr, (yyval.l)); - List_Delete((yyvsp[-3].l)); - } -#line 8183 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(10) - (13)].l)); + ;} break; - case 255: -#line 3297 "Gmsh.y" /* yacc.c:1646 */ + case 256: +#line 3327 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8193 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 256: -#line 3303 "Gmsh.y" /* yacc.c:1646 */ + case 257: +#line 3333 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShapes(TRANSLATE_ROTATE, (yyvsp[-3].l), - (yyvsp[-12].v)[0], (yyvsp[-12].v)[1], (yyvsp[-12].v)[2], (yyvsp[-10].v)[0], (yyvsp[-10].v)[1], (yyvsp[-10].v)[2], (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].d), + ExtrudeShapes(TRANSLATE_ROTATE, (yyvsp[(12) - (15)].l), + (yyvsp[(3) - (15)].v)[0], (yyvsp[(3) - (15)].v)[1], (yyvsp[(3) - (15)].v)[2], (yyvsp[(5) - (15)].v)[0], (yyvsp[(5) - (15)].v)[1], (yyvsp[(5) - (15)].v)[2], (yyvsp[(7) - (15)].v)[0], (yyvsp[(7) - (15)].v)[1], (yyvsp[(7) - (15)].v)[2], (yyvsp[(9) - (15)].d), &extr, (yyval.l)); - List_Delete((yyvsp[-3].l)); - } -#line 8205 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(12) - (15)].l)); + ;} break; - case 257: -#line 3311 "Gmsh.y" /* yacc.c:1646 */ + case 258: +#line 3341 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8215 "Gmsh.tab.cpp" /* yacc.c:1646 */ - break; - - case 258: -#line 3317 "Gmsh.y" /* yacc.c:1646 */ - { - (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShapes(BOUNDARY_LAYER, (yyvsp[-3].l), 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., - &extr, (yyval.l)); - List_Delete((yyvsp[-3].l)); - } -#line 8226 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 259: -#line 3325 "Gmsh.y" /* yacc.c:1646 */ +#line 3347 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE, MSH_POINT, (int)(yyvsp[-4].d), - (yyvsp[-2].v)[0], (yyvsp[-2].v)[1], (yyvsp[-2].v)[2], 0., 0., 0., 0., 0., 0., 0., - NULL, (yyval.l)); - } -#line 8237 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ExtrudeShapes(BOUNDARY_LAYER, (yyvsp[(3) - (6)].l), 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., + &extr, (yyval.l)); + List_Delete((yyvsp[(3) - (6)].l)); + ;} break; case 260: -#line 3332 "Gmsh.y" /* yacc.c:1646 */ +#line 3355 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE, MSH_SEGM_LINE, (int)(yyvsp[-4].d), - (yyvsp[-2].v)[0], (yyvsp[-2].v)[1], (yyvsp[-2].v)[2], 0., 0., 0., 0., 0., 0., 0., + ExtrudeShape(TRANSLATE, MSH_POINT, (int)(yyvsp[(4) - (8)].d), + (yyvsp[(6) - (8)].v)[0], (yyvsp[(6) - (8)].v)[1], (yyvsp[(6) - (8)].v)[2], 0., 0., 0., 0., 0., 0., 0., NULL, (yyval.l)); - } -#line 8248 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 261: -#line 3339 "Gmsh.y" /* yacc.c:1646 */ +#line 3362 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE, MSH_SURF_PLAN, (int)(yyvsp[-4].d), - (yyvsp[-2].v)[0], (yyvsp[-2].v)[1], (yyvsp[-2].v)[2], 0., 0., 0., 0., 0., 0., 0., + ExtrudeShape(TRANSLATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (8)].d), + (yyvsp[(6) - (8)].v)[0], (yyvsp[(6) - (8)].v)[1], (yyvsp[(6) - (8)].v)[2], 0., 0., 0., 0., 0., 0., 0., NULL, (yyval.l)); - } -#line 8259 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 262: -#line 3346 "Gmsh.y" /* yacc.c:1646 */ +#line 3369 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(ROTATE, MSH_POINT, (int)(yyvsp[-8].d), - 0., 0., 0., (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2], (yyvsp[-2].d), + ExtrudeShape(TRANSLATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (8)].d), + (yyvsp[(6) - (8)].v)[0], (yyvsp[(6) - (8)].v)[1], (yyvsp[(6) - (8)].v)[2], 0., 0., 0., 0., 0., 0., 0., NULL, (yyval.l)); - } -#line 8270 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 263: -#line 3353 "Gmsh.y" /* yacc.c:1646 */ +#line 3376 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(ROTATE, MSH_SEGM_LINE, (int)(yyvsp[-8].d), - 0., 0., 0., (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2], (yyvsp[-2].d), + ExtrudeShape(ROTATE, MSH_POINT, (int)(yyvsp[(4) - (12)].d), + 0., 0., 0., (yyvsp[(6) - (12)].v)[0], (yyvsp[(6) - (12)].v)[1], (yyvsp[(6) - (12)].v)[2], (yyvsp[(8) - (12)].v)[0], (yyvsp[(8) - (12)].v)[1], (yyvsp[(8) - (12)].v)[2], (yyvsp[(10) - (12)].d), NULL, (yyval.l)); - } -#line 8281 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 264: -#line 3360 "Gmsh.y" /* yacc.c:1646 */ +#line 3383 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(ROTATE, MSH_SURF_PLAN, (int)(yyvsp[-8].d), - 0., 0., 0., (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2], (yyvsp[-2].d), + ExtrudeShape(ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (12)].d), + 0., 0., 0., (yyvsp[(6) - (12)].v)[0], (yyvsp[(6) - (12)].v)[1], (yyvsp[(6) - (12)].v)[2], (yyvsp[(8) - (12)].v)[0], (yyvsp[(8) - (12)].v)[1], (yyvsp[(8) - (12)].v)[2], (yyvsp[(10) - (12)].d), NULL, (yyval.l)); - } -#line 8292 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 265: -#line 3367 "Gmsh.y" /* yacc.c:1646 */ +#line 3390 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE_ROTATE, MSH_POINT, (int)(yyvsp[-10].d), - (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2], (yyvsp[-2].d), + ExtrudeShape(ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (12)].d), + 0., 0., 0., (yyvsp[(6) - (12)].v)[0], (yyvsp[(6) - (12)].v)[1], (yyvsp[(6) - (12)].v)[2], (yyvsp[(8) - (12)].v)[0], (yyvsp[(8) - (12)].v)[1], (yyvsp[(8) - (12)].v)[2], (yyvsp[(10) - (12)].d), NULL, (yyval.l)); - } -#line 8303 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 266: -#line 3374 "Gmsh.y" /* yacc.c:1646 */ +#line 3397 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE_ROTATE, MSH_SEGM_LINE, (int)(yyvsp[-10].d), - (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2], (yyvsp[-2].d), + ExtrudeShape(TRANSLATE_ROTATE, MSH_POINT, (int)(yyvsp[(4) - (14)].d), + (yyvsp[(6) - (14)].v)[0], (yyvsp[(6) - (14)].v)[1], (yyvsp[(6) - (14)].v)[2], (yyvsp[(8) - (14)].v)[0], (yyvsp[(8) - (14)].v)[1], (yyvsp[(8) - (14)].v)[2], (yyvsp[(10) - (14)].v)[0], (yyvsp[(10) - (14)].v)[1], (yyvsp[(10) - (14)].v)[2], (yyvsp[(12) - (14)].d), NULL, (yyval.l)); - } -#line 8314 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 267: -#line 3381 "Gmsh.y" /* yacc.c:1646 */ +#line 3404 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE_ROTATE, MSH_SURF_PLAN, (int)(yyvsp[-10].d), - (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], (yyvsp[-4].v)[0], (yyvsp[-4].v)[1], (yyvsp[-4].v)[2], (yyvsp[-2].d), + ExtrudeShape(TRANSLATE_ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (14)].d), + (yyvsp[(6) - (14)].v)[0], (yyvsp[(6) - (14)].v)[1], (yyvsp[(6) - (14)].v)[2], (yyvsp[(8) - (14)].v)[0], (yyvsp[(8) - (14)].v)[1], (yyvsp[(8) - (14)].v)[2], (yyvsp[(10) - (14)].v)[0], (yyvsp[(10) - (14)].v)[1], (yyvsp[(10) - (14)].v)[2], (yyvsp[(12) - (14)].d), NULL, (yyval.l)); - } -#line 8325 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 268: -#line 3388 "Gmsh.y" /* yacc.c:1646 */ +#line 3411 "Gmsh.y" + { + (yyval.l) = List_Create(2, 1, sizeof(Shape)); + ExtrudeShape(TRANSLATE_ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (14)].d), + (yyvsp[(6) - (14)].v)[0], (yyvsp[(6) - (14)].v)[1], (yyvsp[(6) - (14)].v)[2], (yyvsp[(8) - (14)].v)[0], (yyvsp[(8) - (14)].v)[1], (yyvsp[(8) - (14)].v)[2], (yyvsp[(10) - (14)].v)[0], (yyvsp[(10) - (14)].v)[1], (yyvsp[(10) - (14)].v)[2], (yyvsp[(12) - (14)].d), + NULL, (yyval.l)); + ;} + break; + + case 269: +#line 3418 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8335 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 269: -#line 3394 "Gmsh.y" /* yacc.c:1646 */ + case 270: +#line 3424 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE, MSH_POINT, (int)(yyvsp[-8].d), - (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], 0., 0., 0., 0., 0., 0., 0., + ExtrudeShape(TRANSLATE, MSH_POINT, (int)(yyvsp[(4) - (12)].d), + (yyvsp[(6) - (12)].v)[0], (yyvsp[(6) - (12)].v)[1], (yyvsp[(6) - (12)].v)[2], 0., 0., 0., 0., 0., 0., 0., &extr, (yyval.l)); - } -#line 8346 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 270: -#line 3401 "Gmsh.y" /* yacc.c:1646 */ + case 271: +#line 3431 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8356 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 271: -#line 3407 "Gmsh.y" /* yacc.c:1646 */ + case 272: +#line 3437 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE, MSH_SEGM_LINE, (int)(yyvsp[-8].d), - (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], 0., 0., 0., 0., 0., 0., 0., + ExtrudeShape(TRANSLATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (12)].d), + (yyvsp[(6) - (12)].v)[0], (yyvsp[(6) - (12)].v)[1], (yyvsp[(6) - (12)].v)[2], 0., 0., 0., 0., 0., 0., 0., &extr, (yyval.l)); - } -#line 8367 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 272: -#line 3414 "Gmsh.y" /* yacc.c:1646 */ + case 273: +#line 3444 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8377 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 273: -#line 3420 "Gmsh.y" /* yacc.c:1646 */ + case 274: +#line 3450 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE, MSH_SURF_PLAN, (int)(yyvsp[-8].d), - (yyvsp[-6].v)[0], (yyvsp[-6].v)[1], (yyvsp[-6].v)[2], 0., 0., 0., 0., 0., 0., 0., + ExtrudeShape(TRANSLATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (12)].d), + (yyvsp[(6) - (12)].v)[0], (yyvsp[(6) - (12)].v)[1], (yyvsp[(6) - (12)].v)[2], 0., 0., 0., 0., 0., 0., 0., &extr, (yyval.l)); - } -#line 8388 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 274: -#line 3427 "Gmsh.y" /* yacc.c:1646 */ + case 275: +#line 3457 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8398 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 275: -#line 3433 "Gmsh.y" /* yacc.c:1646 */ + case 276: +#line 3463 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(ROTATE, MSH_POINT, (int)(yyvsp[-12].d), - 0., 0., 0., (yyvsp[-10].v)[0], (yyvsp[-10].v)[1], (yyvsp[-10].v)[2], (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].d), + ExtrudeShape(ROTATE, MSH_POINT, (int)(yyvsp[(4) - (16)].d), + 0., 0., 0., (yyvsp[(6) - (16)].v)[0], (yyvsp[(6) - (16)].v)[1], (yyvsp[(6) - (16)].v)[2], (yyvsp[(8) - (16)].v)[0], (yyvsp[(8) - (16)].v)[1], (yyvsp[(8) - (16)].v)[2], (yyvsp[(10) - (16)].d), &extr, (yyval.l)); - } -#line 8409 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 276: -#line 3440 "Gmsh.y" /* yacc.c:1646 */ + case 277: +#line 3470 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8419 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 277: -#line 3446 "Gmsh.y" /* yacc.c:1646 */ + case 278: +#line 3476 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(ROTATE, MSH_SEGM_LINE, (int)(yyvsp[-12].d), - 0., 0., 0., (yyvsp[-10].v)[0], (yyvsp[-10].v)[1], (yyvsp[-10].v)[2], (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].d), + ExtrudeShape(ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (16)].d), + 0., 0., 0., (yyvsp[(6) - (16)].v)[0], (yyvsp[(6) - (16)].v)[1], (yyvsp[(6) - (16)].v)[2], (yyvsp[(8) - (16)].v)[0], (yyvsp[(8) - (16)].v)[1], (yyvsp[(8) - (16)].v)[2], (yyvsp[(10) - (16)].d), &extr, (yyval.l)); - } -#line 8430 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 278: -#line 3453 "Gmsh.y" /* yacc.c:1646 */ + case 279: +#line 3483 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8440 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 279: -#line 3459 "Gmsh.y" /* yacc.c:1646 */ + case 280: +#line 3489 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(ROTATE, MSH_SURF_PLAN, (int)(yyvsp[-12].d), - 0., 0., 0., (yyvsp[-10].v)[0], (yyvsp[-10].v)[1], (yyvsp[-10].v)[2], (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].d), + ExtrudeShape(ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (16)].d), + 0., 0., 0., (yyvsp[(6) - (16)].v)[0], (yyvsp[(6) - (16)].v)[1], (yyvsp[(6) - (16)].v)[2], (yyvsp[(8) - (16)].v)[0], (yyvsp[(8) - (16)].v)[1], (yyvsp[(8) - (16)].v)[2], (yyvsp[(10) - (16)].d), &extr, (yyval.l)); - } -#line 8451 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 280: -#line 3466 "Gmsh.y" /* yacc.c:1646 */ + case 281: +#line 3496 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8461 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 281: -#line 3472 "Gmsh.y" /* yacc.c:1646 */ + case 282: +#line 3502 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE_ROTATE, MSH_POINT, (int)(yyvsp[-14].d), - (yyvsp[-12].v)[0], (yyvsp[-12].v)[1], (yyvsp[-12].v)[2], (yyvsp[-10].v)[0], (yyvsp[-10].v)[1], (yyvsp[-10].v)[2], (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].d), + ExtrudeShape(TRANSLATE_ROTATE, MSH_POINT, (int)(yyvsp[(4) - (18)].d), + (yyvsp[(6) - (18)].v)[0], (yyvsp[(6) - (18)].v)[1], (yyvsp[(6) - (18)].v)[2], (yyvsp[(8) - (18)].v)[0], (yyvsp[(8) - (18)].v)[1], (yyvsp[(8) - (18)].v)[2], (yyvsp[(10) - (18)].v)[0], (yyvsp[(10) - (18)].v)[1], (yyvsp[(10) - (18)].v)[2], (yyvsp[(12) - (18)].d), &extr, (yyval.l)); - } -#line 8472 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 282: -#line 3479 "Gmsh.y" /* yacc.c:1646 */ + case 283: +#line 3509 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8482 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 283: -#line 3485 "Gmsh.y" /* yacc.c:1646 */ + case 284: +#line 3515 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE_ROTATE, MSH_SEGM_LINE, (int)(yyvsp[-14].d), - (yyvsp[-12].v)[0], (yyvsp[-12].v)[1], (yyvsp[-12].v)[2], (yyvsp[-10].v)[0], (yyvsp[-10].v)[1], (yyvsp[-10].v)[2], (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].d), + ExtrudeShape(TRANSLATE_ROTATE, MSH_SEGM_LINE, (int)(yyvsp[(4) - (18)].d), + (yyvsp[(6) - (18)].v)[0], (yyvsp[(6) - (18)].v)[1], (yyvsp[(6) - (18)].v)[2], (yyvsp[(8) - (18)].v)[0], (yyvsp[(8) - (18)].v)[1], (yyvsp[(8) - (18)].v)[2], (yyvsp[(10) - (18)].v)[0], (yyvsp[(10) - (18)].v)[1], (yyvsp[(10) - (18)].v)[2], (yyvsp[(12) - (18)].d), &extr, (yyval.l)); - } -#line 8493 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 284: -#line 3492 "Gmsh.y" /* yacc.c:1646 */ + case 285: +#line 3522 "Gmsh.y" { extr.mesh.ExtrudeMesh = extr.mesh.Recombine = false; extr.mesh.QuadToTri = NO_QUADTRI; extr.mesh.ScaleLast = false; - } -#line 8503 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 285: -#line 3498 "Gmsh.y" /* yacc.c:1646 */ + case 286: +#line 3528 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(Shape)); - ExtrudeShape(TRANSLATE_ROTATE, MSH_SURF_PLAN, (int)(yyvsp[-14].d), - (yyvsp[-12].v)[0], (yyvsp[-12].v)[1], (yyvsp[-12].v)[2], (yyvsp[-10].v)[0], (yyvsp[-10].v)[1], (yyvsp[-10].v)[2], (yyvsp[-8].v)[0], (yyvsp[-8].v)[1], (yyvsp[-8].v)[2], (yyvsp[-6].d), + ExtrudeShape(TRANSLATE_ROTATE, MSH_SURF_PLAN, (int)(yyvsp[(4) - (18)].d), + (yyvsp[(6) - (18)].v)[0], (yyvsp[(6) - (18)].v)[1], (yyvsp[(6) - (18)].v)[2], (yyvsp[(8) - (18)].v)[0], (yyvsp[(8) - (18)].v)[1], (yyvsp[(8) - (18)].v)[2], (yyvsp[(10) - (18)].v)[0], (yyvsp[(10) - (18)].v)[1], (yyvsp[(10) - (18)].v)[2], (yyvsp[(12) - (18)].d), &extr, (yyval.l)); - } -#line 8514 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 286: -#line 3509 "Gmsh.y" /* yacc.c:1646 */ + case 287: +#line 3539 "Gmsh.y" { - } -#line 8521 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 287: -#line 3512 "Gmsh.y" /* yacc.c:1646 */ + case 288: +#line 3542 "Gmsh.y" { - } -#line 8528 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 288: -#line 3518 "Gmsh.y" /* yacc.c:1646 */ + case 289: +#line 3548 "Gmsh.y" { - int n = (int)fabs((yyvsp[-2].d)); + int n = (int)fabs((yyvsp[(3) - (5)].d)); if(n){ // we accept n==0 to easily disable layers extr.mesh.ExtrudeMesh = true; extr.mesh.NbLayer = 1; extr.mesh.NbElmLayer.clear(); extr.mesh.hLayer.clear(); - extr.mesh.NbElmLayer.push_back((int)fabs((yyvsp[-2].d))); + extr.mesh.NbElmLayer.push_back((int)fabs((yyvsp[(3) - (5)].d))); extr.mesh.hLayer.push_back(1.); } - } -#line 8544 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 289: -#line 3530 "Gmsh.y" /* yacc.c:1646 */ + case 290: +#line 3560 "Gmsh.y" { extr.mesh.ExtrudeMesh = true; - extr.mesh.NbLayer = List_Nbr((yyvsp[-4].l)); - if(List_Nbr((yyvsp[-4].l)) == List_Nbr((yyvsp[-2].l))){ + extr.mesh.NbLayer = List_Nbr((yyvsp[(3) - (7)].l)); + if(List_Nbr((yyvsp[(3) - (7)].l)) == List_Nbr((yyvsp[(5) - (7)].l))){ extr.mesh.NbElmLayer.clear(); extr.mesh.hLayer.clear(); - for(int i = 0; i < List_Nbr((yyvsp[-4].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (7)].l)); i++){ double d; - List_Read((yyvsp[-4].l), i, &d); + List_Read((yyvsp[(3) - (7)].l), i, &d); extr.mesh.NbElmLayer.push_back((d > 0) ? (int)d : 1); - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(5) - (7)].l), i, &d); extr.mesh.hLayer.push_back(d); } } else - yymsg(0, "Wrong layer definition {%d, %d}", List_Nbr((yyvsp[-4].l)), List_Nbr((yyvsp[-2].l))); - List_Delete((yyvsp[-4].l)); - List_Delete((yyvsp[-2].l)); - } -#line 8568 "Gmsh.tab.cpp" /* yacc.c:1646 */ + yymsg(0, "Wrong layer definition {%d, %d}", List_Nbr((yyvsp[(3) - (7)].l)), List_Nbr((yyvsp[(5) - (7)].l))); + List_Delete((yyvsp[(3) - (7)].l)); + List_Delete((yyvsp[(5) - (7)].l)); + ;} break; - case 290: -#line 3550 "Gmsh.y" /* yacc.c:1646 */ + case 291: +#line 3580 "Gmsh.y" { yymsg(0, "Explicit region numbers in layers are deprecated"); extr.mesh.ExtrudeMesh = true; - extr.mesh.NbLayer = List_Nbr((yyvsp[-6].l)); - if(List_Nbr((yyvsp[-6].l)) == List_Nbr((yyvsp[-4].l)) && List_Nbr((yyvsp[-6].l)) == List_Nbr((yyvsp[-2].l))){ + extr.mesh.NbLayer = List_Nbr((yyvsp[(3) - (9)].l)); + if(List_Nbr((yyvsp[(3) - (9)].l)) == List_Nbr((yyvsp[(5) - (9)].l)) && List_Nbr((yyvsp[(3) - (9)].l)) == List_Nbr((yyvsp[(7) - (9)].l))){ extr.mesh.NbElmLayer.clear(); extr.mesh.hLayer.clear(); - for(int i = 0; i < List_Nbr((yyvsp[-6].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (9)].l)); i++){ double d; - List_Read((yyvsp[-6].l), i, &d); + List_Read((yyvsp[(3) - (9)].l), i, &d); extr.mesh.NbElmLayer.push_back((d > 0) ? (int)d : 1); - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(7) - (9)].l), i, &d); extr.mesh.hLayer.push_back(d); } } else - yymsg(0, "Wrong layer definition {%d, %d, %d}", List_Nbr((yyvsp[-6].l)), - List_Nbr((yyvsp[-4].l)), List_Nbr((yyvsp[-2].l))); - List_Delete((yyvsp[-6].l)); - List_Delete((yyvsp[-4].l)); - List_Delete((yyvsp[-2].l)); - } -#line 8595 "Gmsh.tab.cpp" /* yacc.c:1646 */ + yymsg(0, "Wrong layer definition {%d, %d, %d}", List_Nbr((yyvsp[(3) - (9)].l)), + List_Nbr((yyvsp[(5) - (9)].l)), List_Nbr((yyvsp[(7) - (9)].l))); + List_Delete((yyvsp[(3) - (9)].l)); + List_Delete((yyvsp[(5) - (9)].l)); + List_Delete((yyvsp[(7) - (9)].l)); + ;} break; - case 291: -#line 3574 "Gmsh.y" /* yacc.c:1646 */ + case 292: +#line 3604 "Gmsh.y" { extr.mesh.ScaleLast = true; - } -#line 8603 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 292: -#line 3578 "Gmsh.y" /* yacc.c:1646 */ + case 293: +#line 3608 "Gmsh.y" { extr.mesh.Recombine = true; - } -#line 8611 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 293: -#line 3582 "Gmsh.y" /* yacc.c:1646 */ + case 294: +#line 3612 "Gmsh.y" { yymsg(0, "Keyword 'QuadTriSngl' deprecated. Use 'QuadTriNoNewVerts' instead."); - } -#line 8619 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 294: -#line 3586 "Gmsh.y" /* yacc.c:1646 */ + case 295: +#line 3616 "Gmsh.y" { yymsg(0, "Keyword 'QuadTriSngl' deprecated. Use 'QuadTriNoNewVerts' instead."); - } -#line 8627 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 295: -#line 3590 "Gmsh.y" /* yacc.c:1646 */ + case 296: +#line 3620 "Gmsh.y" { yymsg(0, "Method 'QuadTriDbl' deprecated. Use 'QuadTriAddVerts' instead, " "which has no requirement for the number of extrusion layers and meshes " "with body-centered vertices."); - } -#line 8637 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 296: -#line 3596 "Gmsh.y" /* yacc.c:1646 */ + case 297: +#line 3626 "Gmsh.y" { yymsg(0, "Method 'QuadTriDbl' deprecated. Use 'QuadTriAddVerts' instead, " "which has no requirement for the number of extrusion layers and meshes " "with body-centered vertices."); - } -#line 8647 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 297: -#line 3602 "Gmsh.y" /* yacc.c:1646 */ + case 298: +#line 3632 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_ADDVERTS_1; - } -#line 8655 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 298: -#line 3606 "Gmsh.y" /* yacc.c:1646 */ + case 299: +#line 3636 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_ADDVERTS_1_RECOMB; - } -#line 8663 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 299: -#line 3610 "Gmsh.y" /* yacc.c:1646 */ + case 300: +#line 3640 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_NOVERTS_1; - } -#line 8671 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 300: -#line 3614 "Gmsh.y" /* yacc.c:1646 */ + case 301: +#line 3644 "Gmsh.y" { extr.mesh.QuadToTri = QUADTRI_NOVERTS_1_RECOMB; - } -#line 8679 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 301: -#line 3618 "Gmsh.y" /* yacc.c:1646 */ + case 302: +#line 3648 "Gmsh.y" { - int num = (int)(yyvsp[-6].d); + int num = (int)(yyvsp[(3) - (9)].d); if(FindSurface(num)){ yymsg(0, "Surface %d already exists", num); } else{ Surface *s = Create_Surface(num, MSH_SURF_DISCRETE); Tree_Add(GModel::current()->getGEOInternals()->Surfaces, &s); - extr.mesh.Holes[num].first = (yyvsp[-1].d); + extr.mesh.Holes[num].first = (yyvsp[(8) - (9)].d); extr.mesh.Holes[num].second.clear(); - for(int i = 0; i < List_Nbr((yyvsp[-3].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(6) - (9)].l)); i++){ double d; - List_Read((yyvsp[-3].l), i, &d); + List_Read((yyvsp[(6) - (9)].l), i, &d); extr.mesh.Holes[num].second.push_back((int)d); } } - List_Delete((yyvsp[-3].l)); - } -#line 8702 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(6) - (9)].l)); + ;} break; - case 302: -#line 3637 "Gmsh.y" /* yacc.c:1646 */ + case 303: +#line 3667 "Gmsh.y" { - if(!strcmp((yyvsp[-4].c), "Index")) - extr.mesh.BoundaryLayerIndex = (yyvsp[-2].d); - else if(!strcmp((yyvsp[-4].c), "View")) - extr.mesh.ViewIndex = (yyvsp[-2].d); - Free((yyvsp[-4].c)); - } -#line 8714 "Gmsh.tab.cpp" /* yacc.c:1646 */ + if(!strcmp((yyvsp[(2) - (6)].c), "Index")) + extr.mesh.BoundaryLayerIndex = (yyvsp[(4) - (6)].d); + else if(!strcmp((yyvsp[(2) - (6)].c), "View")) + extr.mesh.ViewIndex = (yyvsp[(4) - (6)].d); + Free((yyvsp[(2) - (6)].c)); + ;} break; - case 303: -#line 3649 "Gmsh.y" /* yacc.c:1646 */ + case 304: +#line 3679 "Gmsh.y" { (yyval.v)[0] = (yyval.v)[1] = 1.; - } -#line 8722 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 304: -#line 3653 "Gmsh.y" /* yacc.c:1646 */ + case 305: +#line 3683 "Gmsh.y" { - if(!strcmp((yyvsp[-1].c), "Progression") || !strcmp((yyvsp[-1].c), "Power")) + if(!strcmp((yyvsp[(2) - (3)].c), "Progression") || !strcmp((yyvsp[(2) - (3)].c), "Power")) (yyval.v)[0] = 1.; - else if(!strcmp((yyvsp[-1].c), "Bump")) + else if(!strcmp((yyvsp[(2) - (3)].c), "Bump")) (yyval.v)[0] = 2.; else{ yymsg(0, "Unknown transfinite mesh type"); (yyval.v)[0] = 1.; } - (yyval.v)[1] = (yyvsp[0].d); - Free((yyvsp[-1].c)); - } -#line 8739 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.v)[1] = (yyvsp[(3) - (3)].d); + Free((yyvsp[(2) - (3)].c)); + ;} break; - case 305: -#line 3668 "Gmsh.y" /* yacc.c:1646 */ + case 306: +#line 3698 "Gmsh.y" { (yyval.i) = -1; // left - } -#line 8747 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 306: -#line 3672 "Gmsh.y" /* yacc.c:1646 */ + case 307: +#line 3702 "Gmsh.y" { - if(!strcmp((yyvsp[0].c), "Right")) + if(!strcmp((yyvsp[(1) - (1)].c), "Right")) (yyval.i) = 1; - else if(!strcmp((yyvsp[0].c), "Left")) + else if(!strcmp((yyvsp[(1) - (1)].c), "Left")) (yyval.i) = -1; - else if(!strcmp((yyvsp[0].c), "AlternateRight")) + else if(!strcmp((yyvsp[(1) - (1)].c), "AlternateRight")) (yyval.i) = 2; - else if(!strcmp((yyvsp[0].c), "AlternateLeft")) + else if(!strcmp((yyvsp[(1) - (1)].c), "AlternateLeft")) (yyval.i) = -2; else // "Alternate" -> "Alternate Right" (yyval.i) = 2; - Free((yyvsp[0].c)); - } -#line 8765 "Gmsh.tab.cpp" /* yacc.c:1646 */ - break; - - case 307: -#line 3688 "Gmsh.y" /* yacc.c:1646 */ - { - (yyval.l) = List_Create(1, 1, sizeof(double)); - } -#line 8773 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (1)].c)); + ;} break; case 308: -#line 3692 "Gmsh.y" /* yacc.c:1646 */ +#line 3718 "Gmsh.y" { - (yyval.l) = (yyvsp[0].l); - } -#line 8781 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.l) = List_Create(1, 1, sizeof(double)); + ;} break; case 309: -#line 3697 "Gmsh.y" /* yacc.c:1646 */ +#line 3722 "Gmsh.y" { - (yyval.i) = 45; - } -#line 8789 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.l) = (yyvsp[(2) - (2)].l); + ;} break; case 310: -#line 3701 "Gmsh.y" /* yacc.c:1646 */ +#line 3727 "Gmsh.y" { - (yyval.i) = (int)(yyvsp[0].d); - } -#line 8797 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.i) = 45; + ;} break; case 311: -#line 3707 "Gmsh.y" /* yacc.c:1646 */ +#line 3731 "Gmsh.y" { - (yyval.l) = List_Create(1, 1, sizeof(double)); - } -#line 8805 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.i) = (int)(yyvsp[(2) - (2)].d); + ;} break; case 312: -#line 3711 "Gmsh.y" /* yacc.c:1646 */ +#line 3737 "Gmsh.y" { - (yyval.l) = (yyvsp[0].l); - } -#line 8813 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.l) = List_Create(1, 1, sizeof(double)); + ;} break; case 313: -#line 3718 "Gmsh.y" /* yacc.c:1646 */ +#line 3741 "Gmsh.y" + { + (yyval.l) = (yyvsp[(2) - (2)].l); + ;} + break; + + case 314: +#line 3748 "Gmsh.y" { - int type = (int)(yyvsp[-1].v)[0]; - double coef = fabs((yyvsp[-1].v)[1]); - if(!(yyvsp[-4].l)){ + int type = (int)(yyvsp[(6) - (7)].v)[0]; + double coef = fabs((yyvsp[(6) - (7)].v)[1]); + if(!(yyvsp[(3) - (7)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Curves); if(List_Nbr(tmp)){ for(int i = 0; i < List_Nbr(tmp); i++){ Curve *c; List_Read(tmp, i, &c); c->Method = MESH_TRANSFINITE; - c->nbPointsTransfinite = ((yyvsp[-2].d) > 2) ? (int)(yyvsp[-2].d) : 2; + c->nbPointsTransfinite = ((yyvsp[(5) - (7)].d) > 2) ? (int)(yyvsp[(5) - (7)].d) : 2; c->typeTransfinite = type; c->coeffTransfinite = coef; } @@ -8833,7 +9236,7 @@ yyreduce: for(GModel::eiter it = GModel::current()->firstEdge(); it != GModel::current()->lastEdge(); it++){ (*it)->meshAttributes.method = MESH_TRANSFINITE; - (*it)->meshAttributes.nbPointsTransfinite = ((yyvsp[-2].d) > 2) ? (int)(yyvsp[-2].d) : 2; + (*it)->meshAttributes.nbPointsTransfinite = ((yyvsp[(5) - (7)].d) > 2) ? (int)(yyvsp[(5) - (7)].d) : 2; (*it)->meshAttributes.typeTransfinite = type; (*it)->meshAttributes.coeffTransfinite = coef; } @@ -8841,15 +9244,15 @@ yyreduce: List_Delete(tmp); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-4].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (7)].l)); i++){ double d; - List_Read((yyvsp[-4].l), i, &d); + List_Read((yyvsp[(3) - (7)].l), i, &d); int j = (int)fabs(d); for(int sign = -1; sign <= 1; sign += 2){ Curve *c = FindCurve(sign * j); if(c){ c->Method = MESH_TRANSFINITE; - c->nbPointsTransfinite = ((yyvsp[-2].d) > 2) ? (int)(yyvsp[-2].d) : 2; + c->nbPointsTransfinite = ((yyvsp[(5) - (7)].d) > 2) ? (int)(yyvsp[(5) - (7)].d) : 2; c->typeTransfinite = type * sign(d); c->coeffTransfinite = coef; } @@ -8857,7 +9260,7 @@ yyreduce: GEdge *ge = GModel::current()->getEdgeByTag(sign * j); if(ge){ ge->meshAttributes.method = MESH_TRANSFINITE; - ge->meshAttributes.nbPointsTransfinite = ((yyvsp[-2].d) > 2) ? (int)(yyvsp[-2].d) : 2; + ge->meshAttributes.nbPointsTransfinite = ((yyvsp[(5) - (7)].d) > 2) ? (int)(yyvsp[(5) - (7)].d) : 2; ge->meshAttributes.typeTransfinite = type * sign(d); ge->meshAttributes.coeffTransfinite = coef; } @@ -8866,28 +9269,27 @@ yyreduce: } } } - List_Delete((yyvsp[-4].l)); + List_Delete((yyvsp[(3) - (7)].l)); } - } -#line 8873 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 314: -#line 3774 "Gmsh.y" /* yacc.c:1646 */ + case 315: +#line 3804 "Gmsh.y" { - int k = List_Nbr((yyvsp[-2].l)); + int k = List_Nbr((yyvsp[(4) - (6)].l)); if(k != 0 && k != 3 && k != 4){ yymsg(0, "Wrong definition of Transfinite Surface: 0, 3 or 4 points needed"); } else{ - if(!(yyvsp[-3].l)){ + if(!(yyvsp[(3) - (6)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Surfaces); if(List_Nbr(tmp)){ for(int i = 0; i < List_Nbr(tmp); i++){ Surface *s; List_Read(tmp, i, &s); s->Method = MESH_TRANSFINITE; - s->Recombine_Dir = (yyvsp[-1].i); + s->Recombine_Dir = (yyvsp[(5) - (6)].i); List_Reset(s->TrsfPoints); } } @@ -8895,23 +9297,23 @@ yyreduce: for(GModel::fiter it = GModel::current()->firstFace(); it != GModel::current()->lastFace(); it++){ (*it)->meshAttributes.method = MESH_TRANSFINITE; - (*it)->meshAttributes.transfiniteArrangement = (yyvsp[-1].i); + (*it)->meshAttributes.transfiniteArrangement = (yyvsp[(5) - (6)].i); } } List_Delete(tmp); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-3].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (6)].l)); i++){ double d; - List_Read((yyvsp[-3].l), i, &d); + List_Read((yyvsp[(3) - (6)].l), i, &d); Surface *s = FindSurface((int)d); if(s){ s->Method = MESH_TRANSFINITE; - s->Recombine_Dir = (yyvsp[-1].i); + s->Recombine_Dir = (yyvsp[(5) - (6)].i); List_Reset(s->TrsfPoints); for(int j = 0; j < k; j++){ double p; - List_Read((yyvsp[-2].l), j, &p); + List_Read((yyvsp[(4) - (6)].l), j, &p); Vertex *v = FindPoint((int)fabs(p)); if(v) List_Add(s->TrsfPoints, &v); @@ -8923,10 +9325,10 @@ yyreduce: GFace *gf = GModel::current()->getFaceByTag((int)d); if(gf){ gf->meshAttributes.method = MESH_TRANSFINITE; - gf->meshAttributes.transfiniteArrangement = (yyvsp[-1].i); + gf->meshAttributes.transfiniteArrangement = (yyvsp[(5) - (6)].i); for(int j = 0; j < k; j++){ double p; - List_Read((yyvsp[-2].l), j, &p); + List_Read((yyvsp[(4) - (6)].l), j, &p); GVertex *gv = GModel::current()->getVertexByTag((int)fabs(p)); if(gv) gf->meshAttributes.corners.push_back(gv); @@ -8938,33 +9340,31 @@ yyreduce: yymsg(0, "Unknown surface %d", (int)d); } } - List_Delete((yyvsp[-3].l)); + List_Delete((yyvsp[(3) - (6)].l)); } } - List_Delete((yyvsp[-2].l)); - } -#line 8947 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (6)].l)); + ;} break; - case 315: -#line 3844 "Gmsh.y" /* yacc.c:1646 */ + case 316: +#line 3874 "Gmsh.y" { yymsg(1, "Elliptic Surface is deprecated: use Transfinite instead (with smoothing)"); - List_Delete((yyvsp[-1].l)); - } -#line 8956 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(7) - (8)].l)); + ;} break; - case 316: -#line 3849 "Gmsh.y" /* yacc.c:1646 */ + case 317: +#line 3879 "Gmsh.y" { - int k = List_Nbr((yyvsp[-1].l)); + int k = List_Nbr((yyvsp[(4) - (5)].l)); if(k != 0 && k != 6 && k != 8){ yymsg(0, "Wrong definition of Transfinite Volume: " "%d points instead of 6 or 8", k); } else{ - if(!(yyvsp[-2].l)){ + if(!(yyvsp[(3) - (5)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Volumes); if(List_Nbr(tmp)){ for(int i = 0; i < List_Nbr(tmp); i++){ @@ -8983,16 +9383,16 @@ yyreduce: List_Delete(tmp); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (5)].l)); i++){ double d; - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(3) - (5)].l), i, &d); Volume *v = FindVolume((int)d); if(v){ v->Method = MESH_TRANSFINITE; List_Reset(v->TrsfPoints); for(int i = 0; i < k; i++){ double p; - List_Read((yyvsp[-1].l), i, &p); + List_Read((yyvsp[(4) - (5)].l), i, &p); Vertex *vert = FindPoint((int)fabs(p)); if(vert) List_Add(v->TrsfPoints, &vert); @@ -9006,7 +9406,7 @@ yyreduce: gr->meshAttributes.method = MESH_TRANSFINITE; for(int i = 0; i < k; i++){ double p; - List_Read((yyvsp[-1].l), i, &p); + List_Read((yyvsp[(4) - (5)].l), i, &p); GVertex *gv = GModel::current()->getVertexByTag((int)fabs(p)); if(gv) gr->meshAttributes.corners.push_back(gv); @@ -9018,18 +9418,17 @@ yyreduce: yymsg(0, "Unknown volume %d", (int)d); } } - List_Delete((yyvsp[-2].l)); + List_Delete((yyvsp[(3) - (5)].l)); } } - List_Delete((yyvsp[-1].l)); - } -#line 9027 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; - case 317: -#line 3916 "Gmsh.y" /* yacc.c:1646 */ + case 318: +#line 3946 "Gmsh.y" { - if(!(yyvsp[-1].l)){ + if(!(yyvsp[(2) - (3)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Volumes); if(List_Nbr(tmp)){ for(int i = 0; i < List_Nbr(tmp); i++){ @@ -9046,9 +9445,9 @@ yyreduce: List_Delete(tmp); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(2) - (3)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(2) - (3)].l), i, &d); Volume *v = FindVolume((int)d); if(v) v->QuadTri = TRANSFINITE_QUADTRI_1; @@ -9060,75 +9459,72 @@ yyreduce: yymsg(1, "Unknown volume %d", (int)d); } } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(2) - (3)].l)); } - } -#line 9067 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 318: -#line 3952 "Gmsh.y" /* yacc.c:1646 */ + case 319: +#line 3982 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-3].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (7)].l)); i++){ double d; - List_Read((yyvsp[-3].l), i, &d); - CTX::instance()->mesh.algo2d_per_face[(int)d] = (int)(yyvsp[-1].d); + List_Read((yyvsp[(4) - (7)].l), i, &d); + CTX::instance()->mesh.algo2d_per_face[(int)d] = (int)(yyvsp[(6) - (7)].d); } - } -#line 9079 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 319: -#line 3960 "Gmsh.y" /* yacc.c:1646 */ + case 320: +#line 3990 "Gmsh.y" { - if(!(yyvsp[-2].l)){ + if(!(yyvsp[(3) - (5)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Surfaces); if(List_Nbr(tmp)){ for(int i = 0; i < List_Nbr(tmp); i++){ Surface *s; List_Read(tmp, i, &s); s->Recombine = 1; - s->RecombineAngle = (yyvsp[-1].i); + s->RecombineAngle = (yyvsp[(4) - (5)].i); } } else{ for(GModel::fiter it = GModel::current()->firstFace(); it != GModel::current()->lastFace(); it++){ (*it)->meshAttributes.recombine = 1; - (*it)->meshAttributes.recombineAngle = (yyvsp[-1].i); + (*it)->meshAttributes.recombineAngle = (yyvsp[(4) - (5)].i); } } List_Delete(tmp); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (5)].l)); i++){ double d; - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(3) - (5)].l), i, &d); Surface *s = FindSurface((int)d); if(s){ s->Recombine = 1; - s->RecombineAngle = (yyvsp[-1].i); + s->RecombineAngle = (yyvsp[(4) - (5)].i); } else{ GFace *gf = GModel::current()->getFaceByTag((int)d); if(gf){ gf->meshAttributes.recombine = 1; - gf->meshAttributes.recombineAngle = (yyvsp[-1].i); + gf->meshAttributes.recombineAngle = (yyvsp[(4) - (5)].i); } else yymsg(1, "Unknown surface %d", (int)d); } } - List_Delete((yyvsp[-2].l)); + List_Delete((yyvsp[(3) - (5)].l)); } - } -#line 9126 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 320: -#line 4003 "Gmsh.y" /* yacc.c:1646 */ + case 321: +#line 4033 "Gmsh.y" { - if(!(yyvsp[-1].l)){ + if(!(yyvsp[(3) - (4)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Volumes); if(List_Nbr(tmp)){ for(int i = 0; i < List_Nbr(tmp); i++){ @@ -9146,9 +9542,9 @@ yyreduce: List_Delete(tmp); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(3) - (4)].l), i, &d); Volume *v = FindVolume((int)d); if(v){ v->Recombine3D = 1; @@ -9162,255 +9558,246 @@ yyreduce: yymsg(1, "Unknown volume %d", (int)d); } } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(3) - (4)].l)); } - } -#line 9169 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 321: -#line 4042 "Gmsh.y" /* yacc.c:1646 */ + case 322: +#line 4072 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[-3].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (6)].l)); i++){ double d; - List_Read((yyvsp[-3].l), i, &d); + List_Read((yyvsp[(3) - (6)].l), i, &d); int j = (int)d; Surface *s = FindSurface(j); if(s){ - s->TransfiniteSmoothing = (int)(yyvsp[-1].d); + s->TransfiniteSmoothing = (int)(yyvsp[(5) - (6)].d); } else{ GFace *gf = GModel::current()->getFaceByTag(j); if(gf) - gf->meshAttributes.transfiniteSmoothing = (int)(yyvsp[-1].d); + gf->meshAttributes.transfiniteSmoothing = (int)(yyvsp[(5) - (6)].d); else - yymsg(1, "Unknown surface %d", (int)(yyvsp[-1].d)); + yymsg(1, "Unknown surface %d", (int)(yyvsp[(5) - (6)].d)); } } - List_Delete((yyvsp[-3].l)); - } -#line 9193 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(3) - (6)].l)); + ;} break; - case 322: -#line 4063 "Gmsh.y" /* yacc.c:1646 */ + case 323: +#line 4093 "Gmsh.y" { - if (List_Nbr((yyvsp[-7].l)) != List_Nbr((yyvsp[-3].l))){ + if (List_Nbr((yyvsp[(4) - (11)].l)) != List_Nbr((yyvsp[(8) - (11)].l))){ yymsg(0, "Number of master lines (%d) different from number of " - "slaves (%d) ", List_Nbr((yyvsp[-3].l)), List_Nbr((yyvsp[-7].l))); + "slaves (%d) ", List_Nbr((yyvsp[(8) - (11)].l)), List_Nbr((yyvsp[(4) - (11)].l))); } else{ std::vector<double> transfo; - if(List_Nbr((yyvsp[-1].l)) != 0) { - if (List_Nbr((yyvsp[-1].l)) < 12){ + if(List_Nbr((yyvsp[(10) - (11)].l)) != 0) { + if (List_Nbr((yyvsp[(10) - (11)].l)) < 12){ yymsg(0, "Affine transformation requires at least 12 entries (we have %d)", - List_Nbr((yyvsp[-1].l))); + List_Nbr((yyvsp[(10) - (11)].l))); } else { - transfo.resize(List_Nbr((yyvsp[-1].l))); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) - List_Read((yyvsp[-1].l), i, &transfo[i]); + transfo.resize(List_Nbr((yyvsp[(10) - (11)].l))); + for(int i = 0; i < List_Nbr((yyvsp[(10) - (11)].l)); i++) + List_Read((yyvsp[(10) - (11)].l), i, &transfo[i]); } } - for(int i = 0; i < List_Nbr((yyvsp[-7].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (11)].l)); i++){ double d_master, d_slave; - List_Read((yyvsp[-3].l), i, &d_master); - List_Read((yyvsp[-7].l), i, &d_slave); + List_Read((yyvsp[(8) - (11)].l), i, &d_master); + List_Read((yyvsp[(4) - (11)].l), i, &d_slave); int j_master = (int)d_master; int j_slave = (int)d_slave; addPeriodicEdge(j_slave, j_master, transfo); } } - List_Delete((yyvsp[-7].l)); - List_Delete((yyvsp[-3].l)); - } -#line 9228 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (11)].l)); + List_Delete((yyvsp[(8) - (11)].l)); + ;} break; - case 323: -#line 4095 "Gmsh.y" /* yacc.c:1646 */ + case 324: +#line 4125 "Gmsh.y" { - if (List_Nbr((yyvsp[-7].l)) != List_Nbr((yyvsp[-3].l))){ + if (List_Nbr((yyvsp[(4) - (11)].l)) != List_Nbr((yyvsp[(8) - (11)].l))){ yymsg(0, "Number of master faces (%d) different from number of " - "slaves (%d) ", List_Nbr((yyvsp[-3].l)), List_Nbr((yyvsp[-7].l))); + "slaves (%d) ", List_Nbr((yyvsp[(8) - (11)].l)), List_Nbr((yyvsp[(4) - (11)].l))); } else{ - if (List_Nbr((yyvsp[-1].l)) < 12){ + if (List_Nbr((yyvsp[(10) - (11)].l)) < 12){ // FIXME full automatic case here if List_Nbr($10) == 0) yymsg(0, "Affine transformation requires at least 12 entries"); } else { std::vector<double> transfo(16,0); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) - List_Read((yyvsp[-1].l), i, &transfo[i]); - for(int i = 0; i < List_Nbr((yyvsp[-7].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(10) - (11)].l)); i++) + List_Read((yyvsp[(10) - (11)].l), i, &transfo[i]); + for(int i = 0; i < List_Nbr((yyvsp[(4) - (11)].l)); i++){ double d_master, d_slave; - List_Read((yyvsp[-3].l), i, &d_master); - List_Read((yyvsp[-7].l), i, &d_slave); - addPeriodicFace(d_slave,d_master,transfo); + List_Read((yyvsp[(8) - (11)].l), i, &d_master); + List_Read((yyvsp[(4) - (11)].l), i, &d_slave); + addPeriodicFace(d_slave, d_master, transfo); } } } - List_Delete((yyvsp[-7].l)); - List_Delete((yyvsp[-3].l)); - } -#line 9258 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (11)].l)); + List_Delete((yyvsp[(8) - (11)].l)); + ;} break; - case 324: -#line 4122 "Gmsh.y" /* yacc.c:1646 */ + case 325: +#line 4152 "Gmsh.y" { - if (List_Nbr((yyvsp[-14].l)) != List_Nbr((yyvsp[-10].l))){ + if (List_Nbr((yyvsp[(4) - (18)].l)) != List_Nbr((yyvsp[(8) - (18)].l))){ yymsg(0, "Number of master edges (%d) different from number of " - "slaves (%d) ", List_Nbr((yyvsp[-10].l)), List_Nbr((yyvsp[-14].l))); + "slaves (%d) ", List_Nbr((yyvsp[(8) - (18)].l)), List_Nbr((yyvsp[(4) - (18)].l))); } else{ - SPoint3 axis((yyvsp[-6].v)[0],(yyvsp[-6].v)[1],(yyvsp[-6].v)[2]); - SPoint3 origin((yyvsp[-4].v)[0],(yyvsp[-4].v)[1],(yyvsp[-4].v)[2]); - double angle((yyvsp[-2].d)); + SPoint3 axis((yyvsp[(12) - (18)].v)[0],(yyvsp[(12) - (18)].v)[1],(yyvsp[(12) - (18)].v)[2]); + SPoint3 origin((yyvsp[(14) - (18)].v)[0],(yyvsp[(14) - (18)].v)[1],(yyvsp[(14) - (18)].v)[2]); + double angle((yyvsp[(16) - (18)].d)); SPoint3 translation(0,0,0); std::vector<double> transfo; computeAffineTransformation(origin,axis,angle,translation,transfo); - for(int i = 0; i < List_Nbr((yyvsp[-14].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (18)].l)); i++){ double d_master, d_slave; - List_Read((yyvsp[-10].l), i, &d_master); - List_Read((yyvsp[-14].l), i, &d_slave); + List_Read((yyvsp[(8) - (18)].l), i, &d_master); + List_Read((yyvsp[(4) - (18)].l), i, &d_slave); addPeriodicEdge(d_slave,d_master,transfo); } } - List_Delete((yyvsp[-14].l)); - List_Delete((yyvsp[-10].l)); - } -#line 9287 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (18)].l)); + List_Delete((yyvsp[(8) - (18)].l)); + ;} break; - case 325: -#line 4148 "Gmsh.y" /* yacc.c:1646 */ + case 326: +#line 4178 "Gmsh.y" { - if (List_Nbr((yyvsp[-14].l)) != List_Nbr((yyvsp[-10].l))){ + if (List_Nbr((yyvsp[(4) - (18)].l)) != List_Nbr((yyvsp[(8) - (18)].l))){ yymsg(0, "Number of master faces (%d) different from number of " - "slaves (%d) ", List_Nbr((yyvsp[-10].l)), List_Nbr((yyvsp[-14].l))); + "slaves (%d) ", List_Nbr((yyvsp[(8) - (18)].l)), List_Nbr((yyvsp[(4) - (18)].l))); } else{ - SPoint3 origin((yyvsp[-4].v)[0],(yyvsp[-4].v)[1],(yyvsp[-4].v)[2]); - SPoint3 axis((yyvsp[-6].v)[0],(yyvsp[-6].v)[1],(yyvsp[-6].v)[2]); - double angle((yyvsp[-2].d)); + SPoint3 origin((yyvsp[(14) - (18)].v)[0],(yyvsp[(14) - (18)].v)[1],(yyvsp[(14) - (18)].v)[2]); + SPoint3 axis((yyvsp[(12) - (18)].v)[0],(yyvsp[(12) - (18)].v)[1],(yyvsp[(12) - (18)].v)[2]); + double angle((yyvsp[(16) - (18)].d)); SPoint3 translation(0,0,0); std::vector<double> transfo; computeAffineTransformation(origin,axis,angle,translation,transfo); - for(int i = 0; i < List_Nbr((yyvsp[-14].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (18)].l)); i++){ double d_master, d_slave; - List_Read((yyvsp[-10].l), i, &d_master); - List_Read((yyvsp[-14].l), i, &d_slave); - addPeriodicFace(d_slave,d_master,transfo); + List_Read((yyvsp[(8) - (18)].l), i, &d_master); + List_Read((yyvsp[(4) - (18)].l), i, &d_slave); + addPeriodicFace(d_slave, d_master, transfo); } } - List_Delete((yyvsp[-14].l)); - List_Delete((yyvsp[-10].l)); - } -#line 9316 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (18)].l)); + List_Delete((yyvsp[(8) - (18)].l)); + ;} break; - case 326: -#line 4174 "Gmsh.y" /* yacc.c:1646 */ + case 327: +#line 4204 "Gmsh.y" { - if (List_Nbr((yyvsp[-8].l)) != List_Nbr((yyvsp[-4].l))){ + if (List_Nbr((yyvsp[(4) - (12)].l)) != List_Nbr((yyvsp[(8) - (12)].l))){ yymsg(0, "Number of master edges (%d) different from number of " - "slaves (%d) ", List_Nbr((yyvsp[-4].l)), List_Nbr((yyvsp[-8].l))); + "slaves (%d) ", List_Nbr((yyvsp[(8) - (12)].l)), List_Nbr((yyvsp[(4) - (12)].l))); } else{ SPoint3 origin(0,0,0); SPoint3 axis(0,0,0); double angle(0); - SPoint3 translation((yyvsp[-1].v)[0],(yyvsp[-1].v)[1],(yyvsp[-1].v)[2]); + SPoint3 translation((yyvsp[(11) - (12)].v)[0],(yyvsp[(11) - (12)].v)[1],(yyvsp[(11) - (12)].v)[2]); std::vector<double> transfo; computeAffineTransformation(origin,axis,angle,translation,transfo); - for(int i = 0; i < List_Nbr((yyvsp[-8].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (12)].l)); i++){ double d_master, d_slave; - List_Read((yyvsp[-4].l), i, &d_master); - List_Read((yyvsp[-8].l), i, &d_slave); + List_Read((yyvsp[(8) - (12)].l), i, &d_master); + List_Read((yyvsp[(4) - (12)].l), i, &d_slave); addPeriodicEdge(d_slave,d_master,transfo); } } - List_Delete((yyvsp[-8].l)); - List_Delete((yyvsp[-4].l)); - } -#line 9345 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (12)].l)); + List_Delete((yyvsp[(8) - (12)].l)); + ;} break; - case 327: -#line 4200 "Gmsh.y" /* yacc.c:1646 */ + case 328: +#line 4230 "Gmsh.y" { - if (List_Nbr((yyvsp[-8].l)) != List_Nbr((yyvsp[-4].l))){ + if (List_Nbr((yyvsp[(4) - (12)].l)) != List_Nbr((yyvsp[(8) - (12)].l))){ yymsg(0, "Number of master faces (%d) different from number of " - "slaves (%d) ", List_Nbr((yyvsp[-4].l)), List_Nbr((yyvsp[-8].l))); + "slaves (%d) ", List_Nbr((yyvsp[(8) - (12)].l)), List_Nbr((yyvsp[(4) - (12)].l))); } else{ SPoint3 origin(0,0,0); SPoint3 axis(0,0,0); double angle(0); - SPoint3 translation((yyvsp[-1].v)[0],(yyvsp[-1].v)[1],(yyvsp[-1].v)[2]); + SPoint3 translation((yyvsp[(11) - (12)].v)[0],(yyvsp[(11) - (12)].v)[1],(yyvsp[(11) - (12)].v)[2]); std::vector<double> transfo; computeAffineTransformation(origin,axis,angle,translation,transfo); - for(int i = 0; i < List_Nbr((yyvsp[-8].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (12)].l)); i++){ double d_master, d_slave; - List_Read((yyvsp[-4].l), i, &d_master); - List_Read((yyvsp[-8].l), i, &d_slave); - addPeriodicFace(d_slave,d_master,transfo); + List_Read((yyvsp[(8) - (12)].l), i, &d_master); + List_Read((yyvsp[(4) - (12)].l), i, &d_slave); + addPeriodicFace(d_slave, d_master, transfo); } } - List_Delete((yyvsp[-8].l)); - List_Delete((yyvsp[-4].l)); - } -#line 9374 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (12)].l)); + List_Delete((yyvsp[(8) - (12)].l)); + ;} break; - case 328: -#line 4226 "Gmsh.y" /* yacc.c:1646 */ + case 329: +#line 4256 "Gmsh.y" { - if (List_Nbr((yyvsp[-7].l)) != List_Nbr((yyvsp[-2].l))){ + if (List_Nbr((yyvsp[(5) - (12)].l)) != List_Nbr((yyvsp[(10) - (12)].l))){ yymsg(0, "Number of master surface edges (%d) different from number of " - "slave (%d) edges", List_Nbr((yyvsp[-2].l)), List_Nbr((yyvsp[-7].l))); + "slave (%d) edges", List_Nbr((yyvsp[(10) - (12)].l)), List_Nbr((yyvsp[(5) - (12)].l))); } else{ - int j_master = (int)(yyvsp[-4].d); - int j_slave = (int)(yyvsp[-9].d); + int j_master = (int)(yyvsp[(8) - (12)].d); + int j_slave = (int)(yyvsp[(3) - (12)].d); std::map<int,int> edgeCounterParts; - for (int i = 0; i < List_Nbr((yyvsp[-7].l)); i++){ + for (int i = 0; i < List_Nbr((yyvsp[(5) - (12)].l)); i++){ double ds,dm; - List_Read((yyvsp[-7].l),i,&ds); - List_Read((yyvsp[-2].l),i,&dm); + List_Read((yyvsp[(5) - (12)].l),i,&ds); + List_Read((yyvsp[(10) - (12)].l),i,&dm); edgeCounterParts[(int) ds] = (int) dm; } - addPeriodicFace(j_slave,j_master,edgeCounterParts); + addPeriodicFace(j_slave, j_master, edgeCounterParts); } - List_Delete((yyvsp[-7].l)); - List_Delete((yyvsp[-2].l)); - } -#line 9399 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(5) - (12)].l)); + List_Delete((yyvsp[(10) - (12)].l)); + ;} break; - case 329: -#line 4247 "Gmsh.y" /* yacc.c:1646 */ + case 330: +#line 4277 "Gmsh.y" { - Surface *s = FindSurface((int)(yyvsp[-2].d)); + Surface *s = FindSurface((int)(yyvsp[(8) - (10)].d)); if(s){ - setSurfaceEmbeddedPoints(s, (yyvsp[-7].l)); + setSurfaceEmbeddedPoints(s, (yyvsp[(3) - (10)].l)); } else{ - GFace *gf = GModel::current()->getFaceByTag((int)(yyvsp[-2].d)); + GFace *gf = GModel::current()->getFaceByTag((int)(yyvsp[(8) - (10)].d)); if(gf){ - for(int i = 0; i < List_Nbr((yyvsp[-7].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (10)].l)); i++){ double d; - List_Read((yyvsp[-7].l), i, &d); + List_Read((yyvsp[(3) - (10)].l), i, &d); int iPoint = (int)d; GVertex *gv = GModel::current()->getVertexByTag(iPoint); if(!gv){ // sync model in case the embedded point is a .geo point @@ -9424,25 +9811,24 @@ yyreduce: } } else - yymsg(0, "Unknown surface %d", (int)(yyvsp[-2].d)); + yymsg(0, "Unknown surface %d", (int)(yyvsp[(8) - (10)].d)); } - } -#line 9431 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 330: -#line 4275 "Gmsh.y" /* yacc.c:1646 */ + case 331: +#line 4305 "Gmsh.y" { - Surface *s = FindSurface((int)(yyvsp[-2].d)); + Surface *s = FindSurface((int)(yyvsp[(8) - (10)].d)); if(s){ - setSurfaceEmbeddedCurves(s, (yyvsp[-7].l)); + setSurfaceEmbeddedCurves(s, (yyvsp[(3) - (10)].l)); } else{ - GFace *gf = GModel::current()->getFaceByTag((int)(yyvsp[-2].d)); + GFace *gf = GModel::current()->getFaceByTag((int)(yyvsp[(8) - (10)].d)); if(gf){ - for(int i = 0; i < List_Nbr((yyvsp[-7].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (10)].l)); i++){ double d; - List_Read((yyvsp[-7].l), i, &d); + List_Read((yyvsp[(3) - (10)].l), i, &d); int iCurve = (int)d; GEdge *ge = GModel::current()->getEdgeByTag(iCurve); if(!ge){ // sync model in case the embedded line is a .geo line @@ -9456,41 +9842,38 @@ yyreduce: } } else - yymsg(0, "Unknown surface %d", (int)(yyvsp[-2].d)); + yymsg(0, "Unknown surface %d", (int)(yyvsp[(8) - (10)].d)); } - } -#line 9463 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 331: -#line 4303 "Gmsh.y" /* yacc.c:1646 */ + case 332: +#line 4333 "Gmsh.y" { Msg::Error("Point in Volume not implemented yet"); - } -#line 9471 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 332: -#line 4307 "Gmsh.y" /* yacc.c:1646 */ + case 333: +#line 4337 "Gmsh.y" { Msg::Error("Line in Volume not implemented yet"); - } -#line 9479 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 333: -#line 4311 "Gmsh.y" /* yacc.c:1646 */ + case 334: +#line 4341 "Gmsh.y" { - Volume *v = FindVolume((int)(yyvsp[-2].d)); + Volume *v = FindVolume((int)(yyvsp[(8) - (10)].d)); if(v){ - setVolumeEmbeddedSurfaces(v, (yyvsp[-7].l)); + setVolumeEmbeddedSurfaces(v, (yyvsp[(3) - (10)].l)); } else{ - GRegion *gr = GModel::current()->getRegionByTag((int)(yyvsp[-2].d)); + GRegion *gr = GModel::current()->getRegionByTag((int)(yyvsp[(8) - (10)].d)); if(gr){ - for(int i = 0; i < List_Nbr((yyvsp[-7].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (10)].l)); i++){ double d; - List_Read((yyvsp[-7].l), i, &d); + List_Read((yyvsp[(3) - (10)].l), i, &d); int iSurface = (int)d; GFace *gf = GModel::current()->getFaceByTag(iSurface); if(!gf){ // sync model in case the embedded face is a .geo face @@ -9504,16 +9887,15 @@ yyreduce: } } else - yymsg(0, "Unknown volume %d", (int)(yyvsp[-2].d)); + yymsg(0, "Unknown volume %d", (int)(yyvsp[(8) - (10)].d)); } - } -#line 9511 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 334: -#line 4339 "Gmsh.y" /* yacc.c:1646 */ + case 335: +#line 4369 "Gmsh.y" { - if(!(yyvsp[-1].l)){ + if(!(yyvsp[(3) - (4)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Surfaces); if(List_Nbr(tmp)){ for(int i = 0; i < List_Nbr(tmp); i++){ @@ -9531,9 +9913,9 @@ yyreduce: List_Delete(tmp); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(3) - (4)].l), i, &d); Surface *s = FindSurface((int)d); if(s){ s->ReverseMesh = 1; @@ -9547,16 +9929,15 @@ yyreduce: yymsg(1, "Unknown surface %d", (int)d); } } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(3) - (4)].l)); } - } -#line 9554 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 335: -#line 4378 "Gmsh.y" /* yacc.c:1646 */ + case 336: +#line 4408 "Gmsh.y" { - if(!(yyvsp[-1].l)){ + if(!(yyvsp[(3) - (4)].l)){ List_T *tmp = Tree2List(GModel::current()->getGEOInternals()->Curves); if(List_Nbr(tmp)){ for(int i = 0; i < List_Nbr(tmp); i++){ @@ -9574,9 +9955,9 @@ yyreduce: List_Delete(tmp); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(3) - (4)].l), i, &d); Curve *c = FindCurve((int)d); if(c){ c->ReverseMesh = 1; @@ -9590,24 +9971,23 @@ yyreduce: yymsg(1, "Unknown line %d", (int)d); } } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(3) - (4)].l)); } - } -#line 9597 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 336: -#line 4417 "Gmsh.y" /* yacc.c:1646 */ + case 337: +#line 4447 "Gmsh.y" { - if(!(yyvsp[-1].l)){ + if(!(yyvsp[(3) - (4)].l)){ for(GModel::viter it = GModel::current()->firstVertex(); it != GModel::current()->lastVertex(); it++) (*it)->relocateMeshVertices(); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(3) - (4)].l), i, &d); GVertex *gv = GModel::current()->getVertexByTag((int)d); if(gv){ gv->relocateMeshVertices(); @@ -9615,24 +9995,23 @@ yyreduce: else yymsg(1, "Unknown point %d", (int)d); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(3) - (4)].l)); } - } -#line 9622 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 337: -#line 4438 "Gmsh.y" /* yacc.c:1646 */ + case 338: +#line 4468 "Gmsh.y" { - if(!(yyvsp[-1].l)){ + if(!(yyvsp[(3) - (4)].l)){ for(GModel::eiter it = GModel::current()->firstEdge(); it != GModel::current()->lastEdge(); it++) (*it)->relocateMeshVertices(); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(3) - (4)].l), i, &d); GEdge *ge = GModel::current()->getEdgeByTag((int)d); if(ge){ ge->relocateMeshVertices(); @@ -9640,24 +10019,23 @@ yyreduce: else yymsg(1, "Unknown line %d", (int)d); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(3) - (4)].l)); } - } -#line 9647 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 338: -#line 4459 "Gmsh.y" /* yacc.c:1646 */ + case 339: +#line 4489 "Gmsh.y" { - if(!(yyvsp[-1].l)){ + if(!(yyvsp[(3) - (4)].l)){ for(GModel::fiter it = GModel::current()->firstFace(); it != GModel::current()->lastFace(); it++) (*it)->relocateMeshVertices(); } else{ - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ double d; - List_Read((yyvsp[-1].l), i, &d); + List_Read((yyvsp[(3) - (4)].l), i, &d); GFace *gf = GModel::current()->getFaceByTag((int)d); if(gf){ gf->relocateMeshVertices(); @@ -9665,47 +10043,44 @@ yyreduce: else yymsg(1, "Unknown surface %d", (int)d); } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(3) - (4)].l)); } - } -#line 9672 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 339: -#line 4486 "Gmsh.y" /* yacc.c:1646 */ + case 340: +#line 4516 "Gmsh.y" { ReplaceAllDuplicates(); - } -#line 9680 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 340: -#line 4490 "Gmsh.y" /* yacc.c:1646 */ + case 341: +#line 4520 "Gmsh.y" { - if(!strcmp((yyvsp[-1].c), "Geometry")) + if(!strcmp((yyvsp[(2) - (3)].c), "Geometry")) ReplaceAllDuplicates(); - else if(!strcmp((yyvsp[-1].c), "Mesh")) + else if(!strcmp((yyvsp[(2) - (3)].c), "Mesh")) GModel::current()->removeDuplicateMeshVertices(CTX::instance()->geom.tolerance); else yymsg(0, "Unknown coherence command"); - Free((yyvsp[-1].c)); - } -#line 9694 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (3)].c)); + ;} break; - case 341: -#line 4500 "Gmsh.y" /* yacc.c:1646 */ + case 342: +#line 4530 "Gmsh.y" { - if(List_Nbr((yyvsp[-2].l)) >= 2){ + if(List_Nbr((yyvsp[(4) - (6)].l)) >= 2){ double d; - List_Read((yyvsp[-2].l), 0, &d); + List_Read((yyvsp[(4) - (6)].l), 0, &d); Vertex *target = FindPoint((int)d); if(!target) yymsg(0, "Could not find Point %d", (int)d); else{ double x = target->Pos.X, y = target->Pos.Y, z = target->Pos.Z; - for(int i = 1; i < List_Nbr((yyvsp[-2].l)); i++){ - List_Read((yyvsp[-2].l), i, &d); + for(int i = 1; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ + List_Read((yyvsp[(4) - (6)].l), i, &d); Vertex *source = FindPoint((int)d); if(!source) yymsg(0, "Could not find Point %d", (int)d); if(target && source){ @@ -9722,801 +10097,722 @@ yyreduce: else yymsg(0, "Need at least two points to merge"); ReplaceAllDuplicates(); - List_Delete((yyvsp[-2].l)); - } -#line 9728 "Gmsh.tab.cpp" /* yacc.c:1646 */ - break; - - case 342: -#line 4534 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.c) = (char*)"Homology"; } -#line 9734 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (6)].l)); + ;} break; case 343: -#line 4535 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.c) = (char*)"Cohomology"; } -#line 9740 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4564 "Gmsh.y" + { (yyval.c) = (char*)"Homology"; ;} break; case 344: -#line 4536 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.c) = (char*)"Betti"; } -#line 9746 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4565 "Gmsh.y" + { (yyval.c) = (char*)"Cohomology"; ;} break; case 345: -#line 4541 "Gmsh.y" /* yacc.c:1646 */ +#line 4566 "Gmsh.y" + { (yyval.c) = (char*)"Betti"; ;} + break; + + case 346: +#line 4571 "Gmsh.y" { std::vector<int> domain, subdomain, dim; for(int i = 0; i < 4; i++) dim.push_back(i); - GModel::current()->addHomologyRequest((yyvsp[-1].c), domain, subdomain, dim); - } -#line 9756 "Gmsh.tab.cpp" /* yacc.c:1646 */ + GModel::current()->addHomologyRequest((yyvsp[(1) - (2)].c), domain, subdomain, dim); + ;} break; - case 346: -#line 4547 "Gmsh.y" /* yacc.c:1646 */ + case 347: +#line 4577 "Gmsh.y" { std::vector<int> domain, subdomain, dim; - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (5)].l)); i++){ double d; - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(3) - (5)].l), i, &d); domain.push_back((int)d); } for(int i = 0; i < 4; i++) dim.push_back(i); - GModel::current()->addHomologyRequest((yyvsp[-4].c), domain, subdomain, dim); - List_Delete((yyvsp[-2].l)); - } -#line 9772 "Gmsh.tab.cpp" /* yacc.c:1646 */ + GModel::current()->addHomologyRequest((yyvsp[(1) - (5)].c), domain, subdomain, dim); + List_Delete((yyvsp[(3) - (5)].l)); + ;} break; - case 347: -#line 4559 "Gmsh.y" /* yacc.c:1646 */ + case 348: +#line 4589 "Gmsh.y" { std::vector<int> domain, subdomain, dim; - for(int i = 0; i < List_Nbr((yyvsp[-4].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (7)].l)); i++){ double d; - List_Read((yyvsp[-4].l), i, &d); + List_Read((yyvsp[(3) - (7)].l), i, &d); domain.push_back((int)d); } - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(5) - (7)].l)); i++){ double d; - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(5) - (7)].l), i, &d); subdomain.push_back((int)d); } for(int i = 0; i < 4; i++) dim.push_back(i); - GModel::current()->addHomologyRequest((yyvsp[-6].c), domain, subdomain, dim); - List_Delete((yyvsp[-4].l)); - List_Delete((yyvsp[-2].l)); - } -#line 9794 "Gmsh.tab.cpp" /* yacc.c:1646 */ + GModel::current()->addHomologyRequest((yyvsp[(1) - (7)].c), domain, subdomain, dim); + List_Delete((yyvsp[(3) - (7)].l)); + List_Delete((yyvsp[(5) - (7)].l)); + ;} break; - case 348: -#line 4577 "Gmsh.y" /* yacc.c:1646 */ + case 349: +#line 4607 "Gmsh.y" { std::vector<int> domain, subdomain, dim; - for(int i = 0; i < List_Nbr((yyvsp[-4].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(6) - (10)].l)); i++){ double d; - List_Read((yyvsp[-4].l), i, &d); + List_Read((yyvsp[(6) - (10)].l), i, &d); domain.push_back((int)d); } - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(8) - (10)].l)); i++){ double d; - List_Read((yyvsp[-2].l), i, &d); + List_Read((yyvsp[(8) - (10)].l), i, &d); subdomain.push_back((int)d); } - for(int i = 0; i < List_Nbr((yyvsp[-7].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (10)].l)); i++){ double d; - List_Read((yyvsp[-7].l), i, &d); + List_Read((yyvsp[(3) - (10)].l), i, &d); dim.push_back((int)d); } - GModel::current()->addHomologyRequest((yyvsp[-9].c), domain, subdomain, dim); - List_Delete((yyvsp[-4].l)); - List_Delete((yyvsp[-2].l)); - List_Delete((yyvsp[-7].l)); - } -#line 9821 "Gmsh.tab.cpp" /* yacc.c:1646 */ - break; - - case 349: -#line 4604 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[0].d); } -#line 9827 "Gmsh.tab.cpp" /* yacc.c:1646 */ + GModel::current()->addHomologyRequest((yyvsp[(1) - (10)].c), domain, subdomain, dim); + List_Delete((yyvsp[(6) - (10)].l)); + List_Delete((yyvsp[(8) - (10)].l)); + List_Delete((yyvsp[(3) - (10)].l)); + ;} break; case 350: -#line 4605 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-1].d); } -#line 9833 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4634 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (1)].d); ;} break; case 351: -#line 4606 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = -(yyvsp[0].d); } -#line 9839 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4635 "Gmsh.y" + { (yyval.d) = (yyvsp[(2) - (3)].d); ;} break; case 352: -#line 4607 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[0].d); } -#line 9845 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4636 "Gmsh.y" + { (yyval.d) = -(yyvsp[(2) - (2)].d); ;} break; case 353: -#line 4608 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = !(yyvsp[0].d); } -#line 9851 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4637 "Gmsh.y" + { (yyval.d) = (yyvsp[(2) - (2)].d); ;} break; case 354: -#line 4609 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) - (yyvsp[0].d); } -#line 9857 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4638 "Gmsh.y" + { (yyval.d) = !(yyvsp[(2) - (2)].d); ;} break; case 355: -#line 4610 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) + (yyvsp[0].d); } -#line 9863 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4639 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) - (yyvsp[(3) - (3)].d); ;} break; case 356: -#line 4611 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) * (yyvsp[0].d); } -#line 9869 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4640 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) + (yyvsp[(3) - (3)].d); ;} break; case 357: -#line 4613 "Gmsh.y" /* yacc.c:1646 */ - { - if(!(yyvsp[0].d)) - yymsg(0, "Division by zero in '%g / %g'", (yyvsp[-2].d), (yyvsp[0].d)); - else - (yyval.d) = (yyvsp[-2].d) / (yyvsp[0].d); - } -#line 9880 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4641 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) * (yyvsp[(3) - (3)].d); ;} break; case 358: -#line 4619 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (int)(yyvsp[-2].d) % (int)(yyvsp[0].d); } -#line 9886 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4643 "Gmsh.y" + { + if(!(yyvsp[(3) - (3)].d)) + yymsg(0, "Division by zero in '%g / %g'", (yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].d)); + else + (yyval.d) = (yyvsp[(1) - (3)].d) / (yyvsp[(3) - (3)].d); + ;} break; case 359: -#line 4620 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = pow((yyvsp[-2].d), (yyvsp[0].d)); } -#line 9892 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4649 "Gmsh.y" + { (yyval.d) = (int)(yyvsp[(1) - (3)].d) % (int)(yyvsp[(3) - (3)].d); ;} break; case 360: -#line 4621 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) < (yyvsp[0].d); } -#line 9898 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4650 "Gmsh.y" + { (yyval.d) = pow((yyvsp[(1) - (3)].d), (yyvsp[(3) - (3)].d)); ;} break; case 361: -#line 4622 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) > (yyvsp[0].d); } -#line 9904 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4651 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) < (yyvsp[(3) - (3)].d); ;} break; case 362: -#line 4623 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) <= (yyvsp[0].d); } -#line 9910 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4652 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) > (yyvsp[(3) - (3)].d); ;} break; case 363: -#line 4624 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) >= (yyvsp[0].d); } -#line 9916 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4653 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) <= (yyvsp[(3) - (3)].d); ;} break; case 364: -#line 4625 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) == (yyvsp[0].d); } -#line 9922 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4654 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) >= (yyvsp[(3) - (3)].d); ;} break; case 365: -#line 4626 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) != (yyvsp[0].d); } -#line 9928 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4655 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) == (yyvsp[(3) - (3)].d); ;} break; case 366: -#line 4627 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) && (yyvsp[0].d); } -#line 9934 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4656 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) != (yyvsp[(3) - (3)].d); ;} break; case 367: -#line 4628 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-2].d) || (yyvsp[0].d); } -#line 9940 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4657 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) && (yyvsp[(3) - (3)].d); ;} break; case 368: -#line 4629 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-4].d) ? (yyvsp[-2].d) : (yyvsp[0].d); } -#line 9946 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4658 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (3)].d) || (yyvsp[(3) - (3)].d); ;} break; case 369: -#line 4630 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = exp((yyvsp[-1].d)); } -#line 9952 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4659 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (5)].d) ? (yyvsp[(3) - (5)].d) : (yyvsp[(5) - (5)].d); ;} break; case 370: -#line 4631 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = log((yyvsp[-1].d)); } -#line 9958 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4660 "Gmsh.y" + { (yyval.d) = exp((yyvsp[(3) - (4)].d)); ;} break; case 371: -#line 4632 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = log10((yyvsp[-1].d)); } -#line 9964 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4661 "Gmsh.y" + { (yyval.d) = log((yyvsp[(3) - (4)].d)); ;} break; case 372: -#line 4633 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = sqrt((yyvsp[-1].d)); } -#line 9970 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4662 "Gmsh.y" + { (yyval.d) = log10((yyvsp[(3) - (4)].d)); ;} break; case 373: -#line 4634 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = sin((yyvsp[-1].d)); } -#line 9976 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4663 "Gmsh.y" + { (yyval.d) = sqrt((yyvsp[(3) - (4)].d)); ;} break; case 374: -#line 4635 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = asin((yyvsp[-1].d)); } -#line 9982 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4664 "Gmsh.y" + { (yyval.d) = sin((yyvsp[(3) - (4)].d)); ;} break; case 375: -#line 4636 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = cos((yyvsp[-1].d)); } -#line 9988 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4665 "Gmsh.y" + { (yyval.d) = asin((yyvsp[(3) - (4)].d)); ;} break; case 376: -#line 4637 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = acos((yyvsp[-1].d)); } -#line 9994 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4666 "Gmsh.y" + { (yyval.d) = cos((yyvsp[(3) - (4)].d)); ;} break; case 377: -#line 4638 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = tan((yyvsp[-1].d)); } -#line 10000 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4667 "Gmsh.y" + { (yyval.d) = acos((yyvsp[(3) - (4)].d)); ;} break; case 378: -#line 4639 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = atan((yyvsp[-1].d)); } -#line 10006 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4668 "Gmsh.y" + { (yyval.d) = tan((yyvsp[(3) - (4)].d)); ;} break; case 379: -#line 4640 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = atan2((yyvsp[-3].d), (yyvsp[-1].d));} -#line 10012 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4669 "Gmsh.y" + { (yyval.d) = atan((yyvsp[(3) - (4)].d)); ;} break; case 380: -#line 4641 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = sinh((yyvsp[-1].d)); } -#line 10018 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4670 "Gmsh.y" + { (yyval.d) = atan2((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d));;} break; case 381: -#line 4642 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = cosh((yyvsp[-1].d)); } -#line 10024 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4671 "Gmsh.y" + { (yyval.d) = sinh((yyvsp[(3) - (4)].d)); ;} break; case 382: -#line 4643 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = tanh((yyvsp[-1].d)); } -#line 10030 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4672 "Gmsh.y" + { (yyval.d) = cosh((yyvsp[(3) - (4)].d)); ;} break; case 383: -#line 4644 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = fabs((yyvsp[-1].d)); } -#line 10036 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4673 "Gmsh.y" + { (yyval.d) = tanh((yyvsp[(3) - (4)].d)); ;} break; case 384: -#line 4645 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = floor((yyvsp[-1].d)); } -#line 10042 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4674 "Gmsh.y" + { (yyval.d) = fabs((yyvsp[(3) - (4)].d)); ;} break; case 385: -#line 4646 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = ceil((yyvsp[-1].d)); } -#line 10048 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4675 "Gmsh.y" + { (yyval.d) = floor((yyvsp[(3) - (4)].d)); ;} break; case 386: -#line 4647 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = floor((yyvsp[-1].d) + 0.5); } -#line 10054 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4676 "Gmsh.y" + { (yyval.d) = ceil((yyvsp[(3) - (4)].d)); ;} break; case 387: -#line 4648 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = fmod((yyvsp[-3].d), (yyvsp[-1].d)); } -#line 10060 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4677 "Gmsh.y" + { (yyval.d) = floor((yyvsp[(3) - (4)].d) + 0.5); ;} break; case 388: -#line 4649 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = fmod((yyvsp[-3].d), (yyvsp[-1].d)); } -#line 10066 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4678 "Gmsh.y" + { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; case 389: -#line 4650 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = sqrt((yyvsp[-3].d) * (yyvsp[-3].d) + (yyvsp[-1].d) * (yyvsp[-1].d)); } -#line 10072 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4679 "Gmsh.y" + { (yyval.d) = fmod((yyvsp[(3) - (6)].d), (yyvsp[(5) - (6)].d)); ;} break; case 390: -#line 4651 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[-1].d) * (double)rand() / (double)RAND_MAX; } -#line 10078 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4680 "Gmsh.y" + { (yyval.d) = sqrt((yyvsp[(3) - (6)].d) * (yyvsp[(3) - (6)].d) + (yyvsp[(5) - (6)].d) * (yyvsp[(5) - (6)].d)); ;} break; case 391: -#line 4660 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = (yyvsp[0].d); } -#line 10084 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4681 "Gmsh.y" + { (yyval.d) = (yyvsp[(3) - (4)].d) * (double)rand() / (double)RAND_MAX; ;} break; case 392: -#line 4661 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = 3.141592653589793; } -#line 10090 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4690 "Gmsh.y" + { (yyval.d) = (yyvsp[(1) - (1)].d); ;} break; case 393: -#line 4662 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = Msg::GetCommRank(); } -#line 10096 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4691 "Gmsh.y" + { (yyval.d) = 3.141592653589793; ;} break; case 394: -#line 4663 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = Msg::GetCommSize(); } -#line 10102 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4692 "Gmsh.y" + { (yyval.d) = (double)ImbricatedTest; ;} break; case 395: -#line 4664 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = GetGmshMajorVersion(); } -#line 10108 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4693 "Gmsh.y" + { (yyval.d) = Msg::GetCommRank(); ;} break; case 396: -#line 4665 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = GetGmshMinorVersion(); } -#line 10114 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4694 "Gmsh.y" + { (yyval.d) = Msg::GetCommSize(); ;} break; case 397: -#line 4666 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = GetGmshPatchVersion(); } -#line 10120 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4695 "Gmsh.y" + { (yyval.d) = GetGmshMajorVersion(); ;} break; case 398: -#line 4667 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = Cpu(); } -#line 10126 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4696 "Gmsh.y" + { (yyval.d) = GetGmshMinorVersion(); ;} break; case 399: -#line 4668 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = GetMemoryUsage()/1024./1024.; } -#line 10132 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4697 "Gmsh.y" + { (yyval.d) = GetGmshPatchVersion(); ;} break; case 400: -#line 4669 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.d) = TotalRam(); } -#line 10138 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4698 "Gmsh.y" + { (yyval.d) = Cpu(); ;} break; case 401: -#line 4674 "Gmsh.y" /* yacc.c:1646 */ - { floatOptions.clear(); charOptions.clear(); } -#line 10144 "Gmsh.tab.cpp" /* yacc.c:1646 */ +#line 4699 "Gmsh.y" + { (yyval.d) = GetMemoryUsage()/1024./1024.; ;} break; case 402: -#line 4676 "Gmsh.y" /* yacc.c:1646 */ +#line 4700 "Gmsh.y" + { (yyval.d) = TotalRam(); ;} + break; + + case 403: +#line 4705 "Gmsh.y" + { floatOptions.clear(); charOptions.clear(); ;} + break; + + case 404: +#line 4707 "Gmsh.y" { - std::vector<double> val(1, (yyvsp[-3].d)); + std::vector<double> val(1, (yyvsp[(3) - (6)].d)); Msg::ExchangeOnelabParameter("", val, floatOptions, charOptions); (yyval.d) = val[0]; - } -#line 10154 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 403: -#line 4682 "Gmsh.y" /* yacc.c:1646 */ + case 405: +#line 4713 "Gmsh.y" { - (yyval.d) = Msg::GetOnelabNumber((yyvsp[-1].c)); - Free((yyvsp[-1].c)); - } -#line 10163 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.d) = Msg::GetOnelabNumber((yyvsp[(3) - (4)].c)); + Free((yyvsp[(3) - (4)].c)); + ;} break; - case 404: -#line 4687 "Gmsh.y" /* yacc.c:1646 */ + case 406: +#line 4718 "Gmsh.y" { - if(!gmsh_yysymbols.count((yyvsp[0].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[0].c)); + if(!gmsh_yysymbols.count((yyvsp[(1) - (1)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (1)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[0].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (1)].c)]); if(s.value.empty()){ - yymsg(0, "Uninitialized variable '%s'", (yyvsp[0].c)); + yymsg(0, "Uninitialized variable '%s'", (yyvsp[(1) - (1)].c)); (yyval.d) = 0.; } else (yyval.d) = s.value[0]; } - Free((yyvsp[0].c)); - } -#line 10184 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (1)].c)); + ;} break; - case 405: -#line 4704 "Gmsh.y" /* yacc.c:1646 */ + case 407: +#line 4735 "Gmsh.y" { - int index = (int)(yyvsp[-1].d); - if(!gmsh_yysymbols.count((yyvsp[-3].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-3].c)); + int index = (int)(yyvsp[(3) - (4)].d); + if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (4)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-3].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (4)].c)]); if((int)s.value.size() < index + 1){ - yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[-3].c), index); + yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[(1) - (4)].c), index); (yyval.d) = 0.; } else (yyval.d) = s.value[index]; } - Free((yyvsp[-3].c)); - } -#line 10206 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (4)].c)); + ;} break; - case 406: -#line 4722 "Gmsh.y" /* yacc.c:1646 */ + case 408: +#line 4753 "Gmsh.y" { - int index = (int)(yyvsp[-1].d); - if(!gmsh_yysymbols.count((yyvsp[-3].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-3].c)); + int index = (int)(yyvsp[(3) - (4)].d); + if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (4)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-3].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (4)].c)]); if((int)s.value.size() < index + 1){ - yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[-3].c), index); + yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[(1) - (4)].c), index); (yyval.d) = 0.; } else (yyval.d) = s.value[index]; } - Free((yyvsp[-3].c)); - } -#line 10228 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (4)].c)); + ;} break; - case 407: -#line 4740 "Gmsh.y" /* yacc.c:1646 */ + case 409: +#line 4771 "Gmsh.y" { - int index = (int)(yyvsp[-1].d); - if(!gmsh_yysymbols.count((yyvsp[-3].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-3].c)); + int index = (int)(yyvsp[(3) - (4)].d); + if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (4)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-3].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (4)].c)]); if((int)s.value.size() < index + 1){ - yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[-3].c), index); + yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[(1) - (4)].c), index); (yyval.d) = 0.; } else (yyval.d) = s.value[index]; } - Free((yyvsp[-3].c)); - } -#line 10250 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (4)].c)); + ;} break; - case 408: -#line 4758 "Gmsh.y" /* yacc.c:1646 */ + case 410: +#line 4789 "Gmsh.y" { - int index = (int)(yyvsp[-1].d); - if(!gmsh_yysymbols.count((yyvsp[-3].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-3].c)); + int index = (int)(yyvsp[(3) - (4)].d); + if(!gmsh_yysymbols.count((yyvsp[(1) - (4)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (4)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-3].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (4)].c)]); if((int)s.value.size() < index + 1){ - yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[-3].c), index); + yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[(1) - (4)].c), index); (yyval.d) = 0.; } else (yyval.d) = s.value[index]; } - Free((yyvsp[-3].c)); - } -#line 10272 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (4)].c)); + ;} break; - case 409: -#line 4776 "Gmsh.y" /* yacc.c:1646 */ + case 411: +#line 4807 "Gmsh.y" { - (yyval.d) = gmsh_yysymbols.count((yyvsp[-1].c)); - Free((yyvsp[-1].c)); - } -#line 10281 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.d) = gmsh_yysymbols.count((yyvsp[(3) - (4)].c)); + Free((yyvsp[(3) - (4)].c)); + ;} break; - case 410: -#line 4781 "Gmsh.y" /* yacc.c:1646 */ + case 412: +#line 4812 "Gmsh.y" { - std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[-1].c)); + std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(3) - (4)].c)); (yyval.d) = !StatFile(tmp); - Free((yyvsp[-1].c)); - } -#line 10291 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (4)].c)); + ;} break; - case 411: -#line 4787 "Gmsh.y" /* yacc.c:1646 */ + case 413: +#line 4818 "Gmsh.y" { - if(!gmsh_yysymbols.count((yyvsp[-2].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-2].c)); + if(!gmsh_yysymbols.count((yyvsp[(2) - (4)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(2) - (4)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-2].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(2) - (4)].c)]); (yyval.d) = s.value.size(); } - Free((yyvsp[-2].c)); - } -#line 10307 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(2) - (4)].c)); + ;} break; - case 412: -#line 4799 "Gmsh.y" /* yacc.c:1646 */ + case 414: +#line 4830 "Gmsh.y" { - if(!gmsh_yysymbols.count((yyvsp[-1].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-1].c)); + if(!gmsh_yysymbols.count((yyvsp[(1) - (2)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (2)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-1].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (2)].c)]); if(s.value.empty()){ - yymsg(0, "Uninitialized variable '%s'", (yyvsp[-1].c)); + yymsg(0, "Uninitialized variable '%s'", (yyvsp[(1) - (2)].c)); (yyval.d) = 0.; } else - (yyval.d) = (s.value[0] += (yyvsp[0].i)); + (yyval.d) = (s.value[0] += (yyvsp[(2) - (2)].i)); } - Free((yyvsp[-1].c)); - } -#line 10328 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (2)].c)); + ;} break; - case 413: -#line 4816 "Gmsh.y" /* yacc.c:1646 */ + case 415: +#line 4847 "Gmsh.y" { - int index = (int)(yyvsp[-2].d); - if(!gmsh_yysymbols.count((yyvsp[-4].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-4].c)); + int index = (int)(yyvsp[(3) - (5)].d); + if(!gmsh_yysymbols.count((yyvsp[(1) - (5)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (5)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-4].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (5)].c)]); if((int)s.value.size() < index + 1){ - yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[-4].c), index); + yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[(1) - (5)].c), index); (yyval.d) = 0.; } else - (yyval.d) = (s.value[index] += (yyvsp[0].i)); + (yyval.d) = (s.value[index] += (yyvsp[(5) - (5)].i)); } - Free((yyvsp[-4].c)); - } -#line 10350 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (5)].c)); + ;} break; - case 414: -#line 4834 "Gmsh.y" /* yacc.c:1646 */ + case 416: +#line 4865 "Gmsh.y" { - int index = (int)(yyvsp[-2].d); - if(!gmsh_yysymbols.count((yyvsp[-4].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-4].c)); + int index = (int)(yyvsp[(3) - (5)].d); + if(!gmsh_yysymbols.count((yyvsp[(1) - (5)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (5)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-4].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (5)].c)]); if((int)s.value.size() < index + 1){ - yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[-4].c), index); + yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[(1) - (5)].c), index); (yyval.d) = 0.; } else - (yyval.d) = (s.value[index] += (yyvsp[0].i)); + (yyval.d) = (s.value[index] += (yyvsp[(5) - (5)].i)); } - Free((yyvsp[-4].c)); - } -#line 10372 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (5)].c)); + ;} break; - case 415: -#line 4852 "Gmsh.y" /* yacc.c:1646 */ + case 417: +#line 4883 "Gmsh.y" { - int index = (int)(yyvsp[-2].d); - if(!gmsh_yysymbols.count((yyvsp[-4].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-4].c)); + int index = (int)(yyvsp[(3) - (5)].d); + if(!gmsh_yysymbols.count((yyvsp[(1) - (5)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (5)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-4].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (5)].c)]); if((int)s.value.size() < index + 1){ - yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[-4].c), index); + yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[(1) - (5)].c), index); (yyval.d) = 0.; } else - (yyval.d) = (s.value[index] += (yyvsp[0].i)); + (yyval.d) = (s.value[index] += (yyvsp[(5) - (5)].i)); } - Free((yyvsp[-4].c)); - } -#line 10394 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (5)].c)); + ;} break; - case 416: -#line 4870 "Gmsh.y" /* yacc.c:1646 */ + case 418: +#line 4901 "Gmsh.y" { - int index = (int)(yyvsp[-2].d); - if(!gmsh_yysymbols.count((yyvsp[-4].c))){ - yymsg(0, "Unknown variable '%s'", (yyvsp[-4].c)); + int index = (int)(yyvsp[(3) - (5)].d); + if(!gmsh_yysymbols.count((yyvsp[(1) - (5)].c))){ + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (5)].c)); (yyval.d) = 0.; } else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-4].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (5)].c)]); if((int)s.value.size() < index + 1){ - yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[-4].c), index); + yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[(1) - (5)].c), index); (yyval.d) = 0.; } else - (yyval.d) = (s.value[index] += (yyvsp[0].i)); + (yyval.d) = (s.value[index] += (yyvsp[(5) - (5)].i)); } - Free((yyvsp[-4].c)); - } -#line 10416 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (5)].c)); + ;} break; - case 417: -#line 4891 "Gmsh.y" /* yacc.c:1646 */ + case 419: +#line 4922 "Gmsh.y" { - NumberOption(GMSH_GET, (yyvsp[-2].c), 0, (yyvsp[0].c), (yyval.d)); - Free((yyvsp[-2].c)); Free((yyvsp[0].c)); - } -#line 10425 "Gmsh.tab.cpp" /* yacc.c:1646 */ + NumberOption(GMSH_GET, (yyvsp[(1) - (3)].c), 0, (yyvsp[(3) - (3)].c), (yyval.d)); + Free((yyvsp[(1) - (3)].c)); Free((yyvsp[(3) - (3)].c)); + ;} break; - case 418: -#line 4896 "Gmsh.y" /* yacc.c:1646 */ + case 420: +#line 4927 "Gmsh.y" { - NumberOption(GMSH_GET, (yyvsp[-5].c), (int)(yyvsp[-3].d), (yyvsp[0].c), (yyval.d)); - Free((yyvsp[-5].c)); Free((yyvsp[0].c)); - } -#line 10434 "Gmsh.tab.cpp" /* yacc.c:1646 */ + NumberOption(GMSH_GET, (yyvsp[(1) - (6)].c), (int)(yyvsp[(3) - (6)].d), (yyvsp[(6) - (6)].c), (yyval.d)); + Free((yyvsp[(1) - (6)].c)); Free((yyvsp[(6) - (6)].c)); + ;} break; - case 419: -#line 4901 "Gmsh.y" /* yacc.c:1646 */ + case 421: +#line 4932 "Gmsh.y" { double d = 0.; - if(NumberOption(GMSH_GET, (yyvsp[-3].c), 0, (yyvsp[-1].c), d)){ - d += (yyvsp[0].i); - NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[-3].c), 0, (yyvsp[-1].c), d); + if(NumberOption(GMSH_GET, (yyvsp[(1) - (4)].c), 0, (yyvsp[(3) - (4)].c), d)){ + d += (yyvsp[(4) - (4)].i); + NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (4)].c), 0, (yyvsp[(3) - (4)].c), d); (yyval.d) = d; } - Free((yyvsp[-3].c)); Free((yyvsp[-1].c)); - } -#line 10448 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (4)].c)); Free((yyvsp[(3) - (4)].c)); + ;} break; - case 420: -#line 4911 "Gmsh.y" /* yacc.c:1646 */ + case 422: +#line 4942 "Gmsh.y" { double d = 0.; - if(NumberOption(GMSH_GET, (yyvsp[-6].c), (int)(yyvsp[-4].d), (yyvsp[-1].c), d)){ - d += (yyvsp[0].i); - NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[-6].c), (int)(yyvsp[-4].d), (yyvsp[-1].c), d); + if(NumberOption(GMSH_GET, (yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(6) - (7)].c), d)){ + d += (yyvsp[(7) - (7)].i); + NumberOption(GMSH_SET|GMSH_GUI, (yyvsp[(1) - (7)].c), (int)(yyvsp[(3) - (7)].d), (yyvsp[(6) - (7)].c), d); (yyval.d) = d; } - Free((yyvsp[-6].c)); Free((yyvsp[-1].c)); - } -#line 10462 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (7)].c)); Free((yyvsp[(6) - (7)].c)); + ;} break; - case 421: -#line 4921 "Gmsh.y" /* yacc.c:1646 */ + case 423: +#line 4952 "Gmsh.y" { - (yyval.d) = Msg::GetValue((yyvsp[-3].c), (yyvsp[-1].d)); - Free((yyvsp[-3].c)); - } -#line 10471 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.d) = Msg::GetValue((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].d)); + Free((yyvsp[(3) - (6)].c)); + ;} break; - case 422: -#line 4926 "Gmsh.y" /* yacc.c:1646 */ + case 424: +#line 4957 "Gmsh.y" { int matches = 0; - for(int i = 0; i < List_Nbr((yyvsp[-3].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (6)].l)); i++){ double d; - List_Read((yyvsp[-3].l), i, &d); - matches += List_Search((yyvsp[-1].l), &d, fcmp_double); + List_Read((yyvsp[(3) - (6)].l), i, &d); + matches += List_Search((yyvsp[(5) - (6)].l), &d, fcmp_double); } (yyval.d) = matches; - Free((yyvsp[-3].l)); Free((yyvsp[-1].l)); - } -#line 10486 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (6)].l)); Free((yyvsp[(5) - (6)].l)); + ;} break; - case 423: -#line 4937 "Gmsh.y" /* yacc.c:1646 */ + case 425: +#line 4968 "Gmsh.y" { - std::string s((yyvsp[-3].c)), substr((yyvsp[-1].c)); + std::string s((yyvsp[(3) - (6)].c)), substr((yyvsp[(5) - (6)].c)); if(s.find(substr) != std::string::npos) (yyval.d) = 1.; else (yyval.d) = 0.; - Free((yyvsp[-3].c)); Free((yyvsp[-1].c)); - } -#line 10499 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (6)].c)); Free((yyvsp[(5) - (6)].c)); + ;} break; - case 424: -#line 4946 "Gmsh.y" /* yacc.c:1646 */ + case 426: +#line 4977 "Gmsh.y" { - (yyval.d) = strcmp((yyvsp[-3].c), (yyvsp[-1].c)); - Free((yyvsp[-3].c)); Free((yyvsp[-1].c)); - } -#line 10508 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.d) = strcmp((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].c)); + Free((yyvsp[(3) - (6)].c)); Free((yyvsp[(5) - (6)].c)); + ;} break; - case 425: -#line 4951 "Gmsh.y" /* yacc.c:1646 */ + case 427: +#line 4982 "Gmsh.y" { int align = 0, font = 0, fontsize = CTX::instance()->glFontSize; - if(List_Nbr((yyvsp[-1].l)) % 2){ + if(List_Nbr((yyvsp[(3) - (4)].l)) % 2){ yyerror("Number of text attributes should be even"); } else{ - for(int i = 0 ; i < List_Nbr((yyvsp[-1].l)); i += 2){ - char *s1, *s2; List_Read((yyvsp[-1].l), i, &s1); List_Read((yyvsp[-1].l), i + 1, &s2); + for(int i = 0 ; i < List_Nbr((yyvsp[(3) - (4)].l)); i += 2){ + char *s1, *s2; List_Read((yyvsp[(3) - (4)].l), i, &s1); List_Read((yyvsp[(3) - (4)].l), i + 1, &s2); std::string key(s1), val(s2); Free(s1); Free(s2); #if defined(HAVE_OPENGL) @@ -10529,239 +10825,215 @@ yyreduce: #endif } } - List_Delete((yyvsp[-1].l)); + List_Delete((yyvsp[(3) - (4)].l)); (yyval.d) = (double)((align<<16)|(font<<8)|(fontsize)); - } -#line 10536 "Gmsh.tab.cpp" /* yacc.c:1646 */ - break; - - case 426: -#line 4978 "Gmsh.y" /* yacc.c:1646 */ - { - memcpy((yyval.v), (yyvsp[0].v), 5*sizeof(double)); - } -#line 10544 "Gmsh.tab.cpp" /* yacc.c:1646 */ - break; - - case 427: -#line 4982 "Gmsh.y" /* yacc.c:1646 */ - { - for(int i = 0; i < 5; i++) (yyval.v)[i] = -(yyvsp[0].v)[i]; - } -#line 10552 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; case 428: -#line 4986 "Gmsh.y" /* yacc.c:1646 */ +#line 5009 "Gmsh.y" { - for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[0].v)[i]; - } -#line 10560 "Gmsh.tab.cpp" /* yacc.c:1646 */ + memcpy((yyval.v), (yyvsp[(1) - (1)].v), 5*sizeof(double)); + ;} break; case 429: -#line 4990 "Gmsh.y" /* yacc.c:1646 */ +#line 5013 "Gmsh.y" { - for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[-2].v)[i] - (yyvsp[0].v)[i]; - } -#line 10568 "Gmsh.tab.cpp" /* yacc.c:1646 */ + for(int i = 0; i < 5; i++) (yyval.v)[i] = -(yyvsp[(2) - (2)].v)[i]; + ;} break; case 430: -#line 4994 "Gmsh.y" /* yacc.c:1646 */ +#line 5017 "Gmsh.y" { - for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[-2].v)[i] + (yyvsp[0].v)[i]; - } -#line 10576 "Gmsh.tab.cpp" /* yacc.c:1646 */ + for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(2) - (2)].v)[i]; + ;} break; case 431: -#line 5001 "Gmsh.y" /* yacc.c:1646 */ +#line 5021 "Gmsh.y" { - (yyval.v)[0] = (yyvsp[-9].d); (yyval.v)[1] = (yyvsp[-7].d); (yyval.v)[2] = (yyvsp[-5].d); (yyval.v)[3] = (yyvsp[-3].d); (yyval.v)[4] = (yyvsp[-1].d); - } -#line 10584 "Gmsh.tab.cpp" /* yacc.c:1646 */ + for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(1) - (3)].v)[i] - (yyvsp[(3) - (3)].v)[i]; + ;} break; case 432: -#line 5005 "Gmsh.y" /* yacc.c:1646 */ +#line 5025 "Gmsh.y" { - (yyval.v)[0] = (yyvsp[-7].d); (yyval.v)[1] = (yyvsp[-5].d); (yyval.v)[2] = (yyvsp[-3].d); (yyval.v)[3] = (yyvsp[-1].d); (yyval.v)[4] = 1.0; - } -#line 10592 "Gmsh.tab.cpp" /* yacc.c:1646 */ + for(int i = 0; i < 5; i++) (yyval.v)[i] = (yyvsp[(1) - (3)].v)[i] + (yyvsp[(3) - (3)].v)[i]; + ;} break; case 433: -#line 5009 "Gmsh.y" /* yacc.c:1646 */ +#line 5032 "Gmsh.y" { - (yyval.v)[0] = (yyvsp[-5].d); (yyval.v)[1] = (yyvsp[-3].d); (yyval.v)[2] = (yyvsp[-1].d); (yyval.v)[3] = 0.0; (yyval.v)[4] = 1.0; - } -#line 10600 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.v)[0] = (yyvsp[(2) - (11)].d); (yyval.v)[1] = (yyvsp[(4) - (11)].d); (yyval.v)[2] = (yyvsp[(6) - (11)].d); (yyval.v)[3] = (yyvsp[(8) - (11)].d); (yyval.v)[4] = (yyvsp[(10) - (11)].d); + ;} break; case 434: -#line 5013 "Gmsh.y" /* yacc.c:1646 */ +#line 5036 "Gmsh.y" { - (yyval.v)[0] = (yyvsp[-5].d); (yyval.v)[1] = (yyvsp[-3].d); (yyval.v)[2] = (yyvsp[-1].d); (yyval.v)[3] = 0.0; (yyval.v)[4] = 1.0; - } -#line 10608 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.v)[0] = (yyvsp[(2) - (9)].d); (yyval.v)[1] = (yyvsp[(4) - (9)].d); (yyval.v)[2] = (yyvsp[(6) - (9)].d); (yyval.v)[3] = (yyvsp[(8) - (9)].d); (yyval.v)[4] = 1.0; + ;} break; case 435: -#line 5020 "Gmsh.y" /* yacc.c:1646 */ +#line 5040 "Gmsh.y" { - (yyval.l) = List_Create(2, 1, sizeof(List_T*)); - List_Add((yyval.l), &((yyvsp[0].l))); - } -#line 10617 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.v)[0] = (yyvsp[(2) - (7)].d); (yyval.v)[1] = (yyvsp[(4) - (7)].d); (yyval.v)[2] = (yyvsp[(6) - (7)].d); (yyval.v)[3] = 0.0; (yyval.v)[4] = 1.0; + ;} break; case 436: -#line 5025 "Gmsh.y" /* yacc.c:1646 */ +#line 5044 "Gmsh.y" { - List_Add((yyval.l), &((yyvsp[0].l))); - } -#line 10625 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.v)[0] = (yyvsp[(2) - (7)].d); (yyval.v)[1] = (yyvsp[(4) - (7)].d); (yyval.v)[2] = (yyvsp[(6) - (7)].d); (yyval.v)[3] = 0.0; (yyval.v)[4] = 1.0; + ;} break; case 437: -#line 5032 "Gmsh.y" /* yacc.c:1646 */ +#line 5051 "Gmsh.y" { - (yyval.l) = List_Create(2, 1, sizeof(double)); - List_Add((yyval.l), &((yyvsp[0].d))); - } -#line 10634 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.l) = List_Create(2, 1, sizeof(List_T*)); + List_Add((yyval.l), &((yyvsp[(1) - (1)].l))); + ;} break; case 438: -#line 5037 "Gmsh.y" /* yacc.c:1646 */ +#line 5056 "Gmsh.y" { - (yyval.l) = (yyvsp[0].l); - } -#line 10642 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Add((yyval.l), &((yyvsp[(3) - (3)].l))); + ;} break; case 439: -#line 5041 "Gmsh.y" /* yacc.c:1646 */ +#line 5063 "Gmsh.y" + { + (yyval.l) = List_Create(2, 1, sizeof(double)); + List_Add((yyval.l), &((yyvsp[(1) - (1)].d))); + ;} + break; + + case 440: +#line 5068 "Gmsh.y" + { + (yyval.l) = (yyvsp[(1) - (1)].l); + ;} + break; + + case 441: +#line 5072 "Gmsh.y" { // creates an empty list (yyval.l) = List_Create(2, 1, sizeof(double)); - } -#line 10651 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 440: -#line 5046 "Gmsh.y" /* yacc.c:1646 */ + case 442: +#line 5077 "Gmsh.y" { - (yyval.l) = (yyvsp[-1].l); - } -#line 10659 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.l) = (yyvsp[(2) - (3)].l); + ;} break; - case 441: -#line 5050 "Gmsh.y" /* yacc.c:1646 */ + case 443: +#line 5081 "Gmsh.y" { - (yyval.l) = (yyvsp[-1].l); + (yyval.l) = (yyvsp[(3) - (4)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ double *pd = (double*)List_Pointer((yyval.l), i); (*pd) = - (*pd); } - } -#line 10671 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 442: -#line 5058 "Gmsh.y" /* yacc.c:1646 */ + case 444: +#line 5089 "Gmsh.y" { - (yyval.l) = (yyvsp[-1].l); + (yyval.l) = (yyvsp[(4) - (5)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ double *pd = (double*)List_Pointer((yyval.l), i); - (*pd) *= (yyvsp[-4].d); + (*pd) *= (yyvsp[(1) - (5)].d); } - } -#line 10683 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 443: -#line 5069 "Gmsh.y" /* yacc.c:1646 */ + case 445: +#line 5100 "Gmsh.y" { - (yyval.l) = (yyvsp[0].l); - } -#line 10691 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.l) = (yyvsp[(1) - (1)].l); + ;} break; - case 444: -#line 5073 "Gmsh.y" /* yacc.c:1646 */ + case 446: +#line 5104 "Gmsh.y" { - if(!strcmp((yyvsp[0].c), "*") || !strcmp((yyvsp[0].c), "all")) + if(!strcmp((yyvsp[(1) - (1)].c), "*") || !strcmp((yyvsp[(1) - (1)].c), "all")) (yyval.l) = 0; else{ yyerror("Unknown special string for list replacement"); (yyval.l) = List_Create(2, 1, sizeof(double)); } - } -#line 10704 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 445: -#line 5085 "Gmsh.y" /* yacc.c:1646 */ + case 447: +#line 5116 "Gmsh.y" { - (yyval.l) = (yyvsp[0].l); + (yyval.l) = (yyvsp[(2) - (2)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ double *pd = (double*)List_Pointer((yyval.l), i); (*pd) = - (*pd); } - } -#line 10716 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 446: -#line 5093 "Gmsh.y" /* yacc.c:1646 */ + case 448: +#line 5124 "Gmsh.y" { - (yyval.l) = (yyvsp[0].l); + (yyval.l) = (yyvsp[(3) - (3)].l); for(int i = 0; i < List_Nbr((yyval.l)); i++){ double *pd = (double*)List_Pointer((yyval.l), i); - (*pd) *= (yyvsp[-2].d); + (*pd) *= (yyvsp[(1) - (3)].d); } - } -#line 10728 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 447: -#line 5101 "Gmsh.y" /* yacc.c:1646 */ + case 449: +#line 5132 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); - for(double d = (yyvsp[-2].d); ((yyvsp[-2].d) < (yyvsp[0].d)) ? (d <= (yyvsp[0].d)) : (d >= (yyvsp[0].d)); - ((yyvsp[-2].d) < (yyvsp[0].d)) ? (d += 1.) : (d -= 1.)) + for(double d = (yyvsp[(1) - (3)].d); ((yyvsp[(1) - (3)].d) < (yyvsp[(3) - (3)].d)) ? (d <= (yyvsp[(3) - (3)].d)) : (d >= (yyvsp[(3) - (3)].d)); + ((yyvsp[(1) - (3)].d) < (yyvsp[(3) - (3)].d)) ? (d += 1.) : (d -= 1.)) List_Add((yyval.l), &d); - } -#line 10739 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 448: -#line 5108 "Gmsh.y" /* yacc.c:1646 */ + case 450: +#line 5139 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); - if(!(yyvsp[0].d)){ //|| ($1 < $3 && $5 < 0) || ($1 > $3 && $5 > 0) - yymsg(0, "Wrong increment in '%g:%g:%g'", (yyvsp[-4].d), (yyvsp[-2].d), (yyvsp[0].d)); + if(!(yyvsp[(5) - (5)].d)){ //|| ($1 < $3 && $5 < 0) || ($1 > $3 && $5 > 0) + yymsg(0, "Wrong increment in '%g:%g:%g'", (yyvsp[(1) - (5)].d), (yyvsp[(3) - (5)].d), (yyvsp[(5) - (5)].d)); } else - for(double d = (yyvsp[-4].d); ((yyvsp[0].d) > 0) ? (d <= (yyvsp[-2].d)) : (d >= (yyvsp[-2].d)); d += (yyvsp[0].d)) + for(double d = (yyvsp[(1) - (5)].d); ((yyvsp[(5) - (5)].d) > 0) ? (d <= (yyvsp[(3) - (5)].d)) : (d >= (yyvsp[(3) - (5)].d)); d += (yyvsp[(5) - (5)].d)) List_Add((yyval.l), &d); - } -#line 10753 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 449: -#line 5118 "Gmsh.y" /* yacc.c:1646 */ + case 451: +#line 5149 "Gmsh.y" { // Returns the coordinates of a point and fills a list with it. // This allows to ensure e.g. that relative point positions are // always conserved - Vertex *v = FindPoint((int)(yyvsp[-1].d)); + Vertex *v = FindPoint((int)(yyvsp[(3) - (4)].d)); (yyval.l) = List_Create(3, 1, sizeof(double)); if(!v) { - GVertex *gv = GModel::current()->getVertexByTag((int)(yyvsp[-1].d)); + GVertex *gv = GModel::current()->getVertexByTag((int)(yyvsp[(3) - (4)].d)); if(gv){ double x = gv->x(), y = gv->y(), z = gv->z(); List_Add((yyval.l), &x); @@ -10769,7 +11041,7 @@ yyreduce: List_Add((yyval.l), &z); } else{ - yymsg(0, "Unknown point '%d'", (int)(yyvsp[-1].d)); + yymsg(0, "Unknown point '%d'", (int)(yyvsp[(3) - (4)].d)); double d = 0.0; List_Add((yyval.l), &d); List_Add((yyval.l), &d); @@ -10781,81 +11053,72 @@ yyreduce: List_Add((yyval.l), &v->Pos.Y); List_Add((yyval.l), &v->Pos.Z); } - } -#line 10786 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 450: -#line 5147 "Gmsh.y" /* yacc.c:1646 */ + case 452: +#line 5178 "Gmsh.y" { (yyval.l) = GetAllElementaryEntityNumbers(0); - } -#line 10794 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 451: -#line 5151 "Gmsh.y" /* yacc.c:1646 */ + case 453: +#line 5182 "Gmsh.y" { (yyval.l) = GetAllElementaryEntityNumbers(1); - } -#line 10802 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 452: -#line 5155 "Gmsh.y" /* yacc.c:1646 */ + case 454: +#line 5186 "Gmsh.y" { (yyval.l) = GetAllElementaryEntityNumbers(2); - } -#line 10810 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 453: -#line 5159 "Gmsh.y" /* yacc.c:1646 */ + case 455: +#line 5190 "Gmsh.y" { (yyval.l) = GetAllElementaryEntityNumbers(3); - } -#line 10818 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 454: -#line 5163 "Gmsh.y" /* yacc.c:1646 */ + case 456: +#line 5194 "Gmsh.y" { (yyval.l) = GetAllPhysicalEntityNumbers(0); - } -#line 10826 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 455: -#line 5167 "Gmsh.y" /* yacc.c:1646 */ + case 457: +#line 5198 "Gmsh.y" { (yyval.l) = GetAllPhysicalEntityNumbers(1); - } -#line 10834 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 456: -#line 5171 "Gmsh.y" /* yacc.c:1646 */ + case 458: +#line 5202 "Gmsh.y" { (yyval.l) = GetAllPhysicalEntityNumbers(2); - } -#line 10842 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 457: -#line 5175 "Gmsh.y" /* yacc.c:1646 */ + case 459: +#line 5206 "Gmsh.y" { (yyval.l) = GetAllPhysicalEntityNumbers(3); - } -#line 10850 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 458: -#line 5179 "Gmsh.y" /* yacc.c:1646 */ + case 460: +#line 5210 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ double num; - List_Read((yyvsp[-1].l), i, &num); + List_Read((yyvsp[(4) - (5)].l), i, &num); PhysicalGroup *p = FindPhysicalGroup((int)num, MSH_PHYSICAL_POINT); if(p){ for(int j = 0; j < List_Nbr(p->Entities); j++){ @@ -10877,18 +11140,17 @@ yyreduce: } } } - List_Delete((yyvsp[-1].l)); - } -#line 10883 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; - case 459: -#line 5208 "Gmsh.y" /* yacc.c:1646 */ + case 461: +#line 5239 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ double num; - List_Read((yyvsp[-1].l), i, &num); + List_Read((yyvsp[(4) - (5)].l), i, &num); PhysicalGroup *p = FindPhysicalGroup((int)num, MSH_PHYSICAL_LINE); if(p){ for(int j = 0; j < List_Nbr(p->Entities); j++){ @@ -10910,18 +11172,17 @@ yyreduce: } } } - List_Delete((yyvsp[-1].l)); - } -#line 10916 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; - case 460: -#line 5237 "Gmsh.y" /* yacc.c:1646 */ + case 462: +#line 5268 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ double num; - List_Read((yyvsp[-1].l), i, &num); + List_Read((yyvsp[(4) - (5)].l), i, &num); PhysicalGroup *p = FindPhysicalGroup((int)num, MSH_PHYSICAL_SURFACE); if(p){ for(int j = 0; j < List_Nbr(p->Entities); j++){ @@ -10943,18 +11204,17 @@ yyreduce: } } } - List_Delete((yyvsp[-1].l)); - } -#line 10949 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; - case 461: -#line 5266 "Gmsh.y" /* yacc.c:1646 */ + case 463: +#line 5297 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(4) - (5)].l)); i++){ double num; - List_Read((yyvsp[-1].l), i, &num); + List_Read((yyvsp[(4) - (5)].l), i, &num); PhysicalGroup *p = FindPhysicalGroup((int)num, MSH_PHYSICAL_VOLUME); if(p){ for(int j = 0; j < List_Nbr(p->Entities); j++){ @@ -10976,732 +11236,664 @@ yyreduce: } } } - List_Delete((yyvsp[-1].l)); - } -#line 10982 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(4) - (5)].l)); + ;} break; - case 462: -#line 5296 "Gmsh.y" /* yacc.c:1646 */ + case 464: +#line 5327 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); GModel::current()->importGEOInternals(); - SBoundingBox3d box((yyvsp[-11].d), (yyvsp[-9].d), (yyvsp[-7].d), (yyvsp[-5].d), (yyvsp[-3].d), (yyvsp[-1].d)); + SBoundingBox3d box((yyvsp[(5) - (16)].d), (yyvsp[(7) - (16)].d), (yyvsp[(9) - (16)].d), (yyvsp[(11) - (16)].d), (yyvsp[(13) - (16)].d), (yyvsp[(15) - (16)].d)); std::vector<GEntity*> entities; GModel::current()->getEntitiesInBox(entities, box, 0); for(unsigned int i = 0; i < entities.size(); i++){ double d = entities[i]->tag(); List_Add((yyval.l), &d); } - } -#line 10998 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 463: -#line 5309 "Gmsh.y" /* yacc.c:1646 */ + case 465: +#line 5340 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); GModel::current()->importGEOInternals(); - SBoundingBox3d box((yyvsp[-11].d), (yyvsp[-9].d), (yyvsp[-7].d), (yyvsp[-5].d), (yyvsp[-3].d), (yyvsp[-1].d)); + SBoundingBox3d box((yyvsp[(5) - (16)].d), (yyvsp[(7) - (16)].d), (yyvsp[(9) - (16)].d), (yyvsp[(11) - (16)].d), (yyvsp[(13) - (16)].d), (yyvsp[(15) - (16)].d)); std::vector<GEntity*> entities; GModel::current()->getEntitiesInBox(entities, box, 1); for(unsigned int i = 0; i < entities.size(); i++){ double d = entities[i]->tag(); List_Add((yyval.l), &d); } - } -#line 11014 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 464: -#line 5322 "Gmsh.y" /* yacc.c:1646 */ + case 466: +#line 5353 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); GModel::current()->importGEOInternals(); - SBoundingBox3d box((yyvsp[-11].d), (yyvsp[-9].d), (yyvsp[-7].d), (yyvsp[-5].d), (yyvsp[-3].d), (yyvsp[-1].d)); + SBoundingBox3d box((yyvsp[(5) - (16)].d), (yyvsp[(7) - (16)].d), (yyvsp[(9) - (16)].d), (yyvsp[(11) - (16)].d), (yyvsp[(13) - (16)].d), (yyvsp[(15) - (16)].d)); std::vector<GEntity*> entities; GModel::current()->getEntitiesInBox(entities, box, 2); for(unsigned int i = 0; i < entities.size(); i++){ double d = entities[i]->tag(); List_Add((yyval.l), &d); } - } -#line 11030 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 465: -#line 5335 "Gmsh.y" /* yacc.c:1646 */ + case 467: +#line 5366 "Gmsh.y" { (yyval.l) = List_Create(10, 1, sizeof(double)); GModel::current()->importGEOInternals(); - SBoundingBox3d box((yyvsp[-11].d), (yyvsp[-9].d), (yyvsp[-7].d), (yyvsp[-5].d), (yyvsp[-3].d), (yyvsp[-1].d)); + SBoundingBox3d box((yyvsp[(5) - (16)].d), (yyvsp[(7) - (16)].d), (yyvsp[(9) - (16)].d), (yyvsp[(11) - (16)].d), (yyvsp[(13) - (16)].d), (yyvsp[(15) - (16)].d)); std::vector<GEntity*> entities; GModel::current()->getEntitiesInBox(entities, box, 3); for(unsigned int i = 0; i < entities.size(); i++){ double d = entities[i]->tag(); List_Add((yyval.l), &d); } - } -#line 11046 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 466: -#line 5347 "Gmsh.y" /* yacc.c:1646 */ + case 468: +#line 5378 "Gmsh.y" { - (yyval.l) = List_Create(List_Nbr((yyvsp[0].l)), 1, sizeof(double)); - for(int i = 0; i < List_Nbr((yyvsp[0].l)); i++){ - Shape *s = (Shape*) List_Pointer((yyvsp[0].l), i); + (yyval.l) = List_Create(List_Nbr((yyvsp[(1) - (1)].l)), 1, sizeof(double)); + for(int i = 0; i < List_Nbr((yyvsp[(1) - (1)].l)); i++){ + Shape *s = (Shape*) List_Pointer((yyvsp[(1) - (1)].l), i); double d = s->Num; List_Add((yyval.l), &d); } - List_Delete((yyvsp[0].l)); - } -#line 11060 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(1) - (1)].l)); + ;} break; - case 467: -#line 5357 "Gmsh.y" /* yacc.c:1646 */ + case 469: +#line 5388 "Gmsh.y" { - (yyval.l) = List_Create(List_Nbr((yyvsp[0].l)), 1, sizeof(double)); - for(int i = 0; i < List_Nbr((yyvsp[0].l)); i++){ - Shape *s = (Shape*) List_Pointer((yyvsp[0].l), i); + (yyval.l) = List_Create(List_Nbr((yyvsp[(1) - (1)].l)), 1, sizeof(double)); + for(int i = 0; i < List_Nbr((yyvsp[(1) - (1)].l)); i++){ + Shape *s = (Shape*) List_Pointer((yyvsp[(1) - (1)].l), i); double d = s->Num; List_Add((yyval.l), &d); } - List_Delete((yyvsp[0].l)); - } -#line 11074 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(1) - (1)].l)); + ;} break; - case 468: -#line 5367 "Gmsh.y" /* yacc.c:1646 */ + case 470: +#line 5398 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); - if(!gmsh_yysymbols.count((yyvsp[-2].c))) - yymsg(0, "Unknown variable '%s'", (yyvsp[-2].c)); + if(!gmsh_yysymbols.count((yyvsp[(1) - (3)].c))) + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (3)].c)); else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-2].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (3)].c)]); for(unsigned int i = 0; i < s.value.size(); i++) List_Add((yyval.l), &s.value[i]); } - Free((yyvsp[-2].c)); - } -#line 11090 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (3)].c)); + ;} break; - case 469: -#line 5379 "Gmsh.y" /* yacc.c:1646 */ + case 471: +#line 5410 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); - if(!gmsh_yysymbols.count((yyvsp[-2].c))) - yymsg(0, "Unknown variable '%s'", (yyvsp[-2].c)); + if(!gmsh_yysymbols.count((yyvsp[(1) - (3)].c))) + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (3)].c)); else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-2].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (3)].c)]); for(unsigned int i = 0; i < s.value.size(); i++) List_Add((yyval.l), &s.value[i]); } - Free((yyvsp[-2].c)); - } -#line 11106 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (3)].c)); + ;} break; - case 470: -#line 5392 "Gmsh.y" /* yacc.c:1646 */ + case 472: +#line 5423 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); - if(!gmsh_yysymbols.count((yyvsp[-1].c))) - yymsg(0, "Unknown variable '%s'", (yyvsp[-1].c)); + if(!gmsh_yysymbols.count((yyvsp[(3) - (4)].c))) + yymsg(0, "Unknown variable '%s'", (yyvsp[(3) - (4)].c)); else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-1].c)]); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(3) - (4)].c)]); for(unsigned int i = 0; i < s.value.size(); i++) List_Add((yyval.l), &s.value[i]); } - Free((yyvsp[-1].c)); - } -#line 11122 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (4)].c)); + ;} break; - case 471: -#line 5404 "Gmsh.y" /* yacc.c:1646 */ + case 473: +#line 5435 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); - if(!gmsh_yysymbols.count((yyvsp[-5].c))) - yymsg(0, "Unknown variable '%s'", (yyvsp[-5].c)); + if(!gmsh_yysymbols.count((yyvsp[(1) - (6)].c))) + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (6)].c)); else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-5].c)]); - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ - int index = (int)(*(double*)List_Pointer_Fast((yyvsp[-2].l), i)); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (6)].c)]); + for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ + int index = (int)(*(double*)List_Pointer_Fast((yyvsp[(4) - (6)].l), i)); if((int)s.value.size() < index + 1) - yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[-5].c), index); + yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[(1) - (6)].c), index); else List_Add((yyval.l), &s.value[index]); } } - Free((yyvsp[-5].c)); - List_Delete((yyvsp[-2].l)); - } -#line 11144 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (6)].c)); + List_Delete((yyvsp[(4) - (6)].l)); + ;} break; - case 472: -#line 5422 "Gmsh.y" /* yacc.c:1646 */ + case 474: +#line 5453 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); - if(!gmsh_yysymbols.count((yyvsp[-5].c))) - yymsg(0, "Unknown variable '%s'", (yyvsp[-5].c)); + if(!gmsh_yysymbols.count((yyvsp[(1) - (6)].c))) + yymsg(0, "Unknown variable '%s'", (yyvsp[(1) - (6)].c)); else{ - gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[-5].c)]); - for(int i = 0; i < List_Nbr((yyvsp[-2].l)); i++){ - int index = (int)(*(double*)List_Pointer_Fast((yyvsp[-2].l), i)); + gmsh_yysymbol &s(gmsh_yysymbols[(yyvsp[(1) - (6)].c)]); + for(int i = 0; i < List_Nbr((yyvsp[(4) - (6)].l)); i++){ + int index = (int)(*(double*)List_Pointer_Fast((yyvsp[(4) - (6)].l), i)); if((int)s.value.size() < index + 1) - yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[-5].c), index); + yymsg(0, "Uninitialized variable '%s[%d]'", (yyvsp[(1) - (6)].c), index); else List_Add((yyval.l), &s.value[index]); } } - Free((yyvsp[-5].c)); - List_Delete((yyvsp[-2].l)); - } -#line 11166 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (6)].c)); + List_Delete((yyvsp[(4) - (6)].l)); + ;} break; - case 473: -#line 5443 "Gmsh.y" /* yacc.c:1646 */ + case 475: +#line 5474 "Gmsh.y" { (yyval.l) = List_Create(2, 1, sizeof(double)); - List_Add((yyval.l), &((yyvsp[0].d))); - } -#line 11175 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Add((yyval.l), &((yyvsp[(1) - (1)].d))); + ;} break; - case 474: -#line 5448 "Gmsh.y" /* yacc.c:1646 */ + case 476: +#line 5479 "Gmsh.y" { - (yyval.l) = (yyvsp[0].l); - } -#line 11183 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.l) = (yyvsp[(1) - (1)].l); + ;} break; - case 475: -#line 5452 "Gmsh.y" /* yacc.c:1646 */ + case 477: +#line 5483 "Gmsh.y" { - List_Add((yyval.l), &((yyvsp[0].d))); - } -#line 11191 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Add((yyval.l), &((yyvsp[(3) - (3)].d))); + ;} break; - case 476: -#line 5456 "Gmsh.y" /* yacc.c:1646 */ + case 478: +#line 5487 "Gmsh.y" { - for(int i = 0; i < List_Nbr((yyvsp[0].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (3)].l)); i++){ double d; - List_Read((yyvsp[0].l), i, &d); + List_Read((yyvsp[(3) - (3)].l), i, &d); List_Add((yyval.l), &d); } - List_Delete((yyvsp[0].l)); - } -#line 11204 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(3) - (3)].l)); + ;} break; - case 477: -#line 5468 "Gmsh.y" /* yacc.c:1646 */ + case 479: +#line 5499 "Gmsh.y" { - (yyval.u) = CTX::instance()->packColor((int)(yyvsp[-7].d), (int)(yyvsp[-5].d), (int)(yyvsp[-3].d), (int)(yyvsp[-1].d)); - } -#line 11212 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.u) = CTX::instance()->packColor((int)(yyvsp[(2) - (9)].d), (int)(yyvsp[(4) - (9)].d), (int)(yyvsp[(6) - (9)].d), (int)(yyvsp[(8) - (9)].d)); + ;} break; - case 478: -#line 5472 "Gmsh.y" /* yacc.c:1646 */ + case 480: +#line 5503 "Gmsh.y" { - (yyval.u) = CTX::instance()->packColor((int)(yyvsp[-5].d), (int)(yyvsp[-3].d), (int)(yyvsp[-1].d), 255); - } -#line 11220 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.u) = CTX::instance()->packColor((int)(yyvsp[(2) - (7)].d), (int)(yyvsp[(4) - (7)].d), (int)(yyvsp[(6) - (7)].d), 255); + ;} break; - case 479: -#line 5484 "Gmsh.y" /* yacc.c:1646 */ + case 481: +#line 5515 "Gmsh.y" { int flag; - (yyval.u) = GetColorForString(-1, (yyvsp[0].c), &flag); - if(flag) yymsg(0, "Unknown color '%s'", (yyvsp[0].c)); - Free((yyvsp[0].c)); - } -#line 11231 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.u) = GetColorForString(-1, (yyvsp[(1) - (1)].c), &flag); + if(flag) yymsg(0, "Unknown color '%s'", (yyvsp[(1) - (1)].c)); + Free((yyvsp[(1) - (1)].c)); + ;} break; - case 480: -#line 5491 "Gmsh.y" /* yacc.c:1646 */ + case 482: +#line 5522 "Gmsh.y" { unsigned int val = 0; - ColorOption(GMSH_GET, (yyvsp[-4].c), 0, (yyvsp[0].c), val); + ColorOption(GMSH_GET, (yyvsp[(1) - (5)].c), 0, (yyvsp[(5) - (5)].c), val); (yyval.u) = val; - Free((yyvsp[-4].c)); Free((yyvsp[0].c)); - } -#line 11242 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (5)].c)); Free((yyvsp[(5) - (5)].c)); + ;} break; - case 481: -#line 5501 "Gmsh.y" /* yacc.c:1646 */ + case 483: +#line 5532 "Gmsh.y" { - (yyval.l) = (yyvsp[-1].l); - } -#line 11250 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.l) = (yyvsp[(2) - (3)].l); + ;} break; - case 482: -#line 5505 "Gmsh.y" /* yacc.c:1646 */ + case 484: +#line 5536 "Gmsh.y" { (yyval.l) = List_Create(256, 10, sizeof(unsigned int)); - GmshColorTable *ct = GetColorTable((int)(yyvsp[-3].d)); + GmshColorTable *ct = GetColorTable((int)(yyvsp[(3) - (6)].d)); if(!ct) - yymsg(0, "View[%d] does not exist", (int)(yyvsp[-3].d)); + yymsg(0, "View[%d] does not exist", (int)(yyvsp[(3) - (6)].d)); else{ for(int i = 0; i < ct->size; i++) List_Add((yyval.l), &ct->table[i]); } - Free((yyvsp[-5].c)); - } -#line 11266 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (6)].c)); + ;} break; - case 483: -#line 5520 "Gmsh.y" /* yacc.c:1646 */ + case 485: +#line 5551 "Gmsh.y" { (yyval.l) = List_Create(256, 10, sizeof(unsigned int)); - List_Add((yyval.l), &((yyvsp[0].u))); - } -#line 11275 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Add((yyval.l), &((yyvsp[(1) - (1)].u))); + ;} break; - case 484: -#line 5525 "Gmsh.y" /* yacc.c:1646 */ + case 486: +#line 5556 "Gmsh.y" { - List_Add((yyval.l), &((yyvsp[0].u))); - } -#line 11283 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Add((yyval.l), &((yyvsp[(3) - (3)].u))); + ;} break; - case 485: -#line 5532 "Gmsh.y" /* yacc.c:1646 */ + case 487: +#line 5563 "Gmsh.y" { - (yyval.c) = (yyvsp[0].c); - } -#line 11291 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.c) = (yyvsp[(1) - (1)].c); + ;} break; - case 486: -#line 5536 "Gmsh.y" /* yacc.c:1646 */ + case 488: +#line 5567 "Gmsh.y" { - if(!gmsh_yystringsymbols.count((yyvsp[0].c))){ - yymsg(0, "Unknown string variable '%s'", (yyvsp[0].c)); - (yyval.c) = (yyvsp[0].c); + if(!gmsh_yystringsymbols.count((yyvsp[(1) - (1)].c))){ + yymsg(0, "Unknown string variable '%s'", (yyvsp[(1) - (1)].c)); + (yyval.c) = (yyvsp[(1) - (1)].c); } else{ - std::string val = gmsh_yystringsymbols[(yyvsp[0].c)]; + std::string val = gmsh_yystringsymbols[(yyvsp[(1) - (1)].c)]; (yyval.c) = (char *)Malloc((val.size() + 1) * sizeof(char)); strcpy((yyval.c), val.c_str()); - Free((yyvsp[0].c)); + Free((yyvsp[(1) - (1)].c)); } - } -#line 11308 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 487: -#line 5549 "Gmsh.y" /* yacc.c:1646 */ + case 489: +#line 5580 "Gmsh.y" { std::string out; - StringOption(GMSH_GET, (yyvsp[-2].c), 0, (yyvsp[0].c), out); + StringOption(GMSH_GET, (yyvsp[(1) - (3)].c), 0, (yyvsp[(3) - (3)].c), out); (yyval.c) = (char*)Malloc((out.size() + 1) * sizeof(char)); strcpy((yyval.c), out.c_str()); - Free((yyvsp[-2].c)); Free((yyvsp[0].c)); - } -#line 11320 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (3)].c)); Free((yyvsp[(3) - (3)].c)); + ;} break; - case 488: -#line 5557 "Gmsh.y" /* yacc.c:1646 */ + case 490: +#line 5588 "Gmsh.y" { std::string out; - StringOption(GMSH_GET, (yyvsp[-5].c), (int)(yyvsp[-3].d), (yyvsp[0].c), out); + StringOption(GMSH_GET, (yyvsp[(1) - (6)].c), (int)(yyvsp[(3) - (6)].d), (yyvsp[(6) - (6)].c), out); (yyval.c) = (char*)Malloc((out.size() + 1) * sizeof(char)); strcpy((yyval.c), out.c_str()); - Free((yyvsp[-5].c)); Free((yyvsp[0].c)); - } -#line 11332 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(1) - (6)].c)); Free((yyvsp[(6) - (6)].c)); + ;} break; - case 489: -#line 5568 "Gmsh.y" /* yacc.c:1646 */ + case 491: +#line 5599 "Gmsh.y" { - (yyval.c) = (yyvsp[0].c); - } -#line 11340 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.c) = (yyvsp[(1) - (1)].c); + ;} break; - case 490: -#line 5572 "Gmsh.y" /* yacc.c:1646 */ + case 492: +#line 5603 "Gmsh.y" { - (yyval.c) = (yyvsp[-1].c); - } -#line 11348 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.c) = (yyvsp[(3) - (4)].c); + ;} break; - case 491: -#line 5576 "Gmsh.y" /* yacc.c:1646 */ + case 493: +#line 5607 "Gmsh.y" { (yyval.c) = (char *)Malloc(32 * sizeof(char)); time_t now; time(&now); strcpy((yyval.c), ctime(&now)); (yyval.c)[strlen((yyval.c)) - 1] = '\0'; - } -#line 11360 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 492: -#line 5584 "Gmsh.y" /* yacc.c:1646 */ + case 494: +#line 5615 "Gmsh.y" { std::string exe = Msg::GetExecutableName(); (yyval.c) = (char *)Malloc(exe.size() + 1); strcpy((yyval.c), exe.c_str()); - } -#line 11370 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 493: -#line 5590 "Gmsh.y" /* yacc.c:1646 */ + case 495: +#line 5621 "Gmsh.y" { std::string action = Msg::GetOnelabAction(); (yyval.c) = (char *)Malloc(action.size() + 1); strcpy((yyval.c), action.c_str()); - } -#line 11380 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 494: -#line 5596 "Gmsh.y" /* yacc.c:1646 */ + case 496: +#line 5627 "Gmsh.y" { - const char *env = GetEnvironmentVar((yyvsp[-1].c)); + const char *env = GetEnvironmentVar((yyvsp[(3) - (4)].c)); if(!env) env = ""; (yyval.c) = (char *)Malloc((sizeof(env) + 1) * sizeof(char)); strcpy((yyval.c), env); - Free((yyvsp[-1].c)); - } -#line 11392 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (4)].c)); + ;} break; - case 495: -#line 5604 "Gmsh.y" /* yacc.c:1646 */ + case 497: +#line 5635 "Gmsh.y" { - std::string s = Msg::GetString((yyvsp[-3].c), (yyvsp[-1].c)); + std::string s = Msg::GetString((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].c)); (yyval.c) = (char *)Malloc((s.size() + 1) * sizeof(char)); strcpy((yyval.c), s.c_str()); - Free((yyvsp[-3].c)); - Free((yyvsp[-1].c)); - } -#line 11404 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (6)].c)); + Free((yyvsp[(5) - (6)].c)); + ;} break; - case 496: -#line 5612 "Gmsh.y" /* yacc.c:1646 */ + case 498: +#line 5643 "Gmsh.y" { - std::string s = Msg::GetOnelabString((yyvsp[-1].c)); + std::string s = Msg::GetOnelabString((yyvsp[(3) - (4)].c)); (yyval.c) = (char *)Malloc((s.size() + 1) * sizeof(char)); strcpy((yyval.c), s.c_str()); - Free((yyvsp[-1].c)); - } -#line 11415 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (4)].c)); + ;} break; - case 497: -#line 5619 "Gmsh.y" /* yacc.c:1646 */ + case 499: +#line 5650 "Gmsh.y" { int size = 1; - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) - size += strlen(*(char**)List_Pointer((yyvsp[-1].l), i)) + 1; + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++) + size += strlen(*(char**)List_Pointer((yyvsp[(3) - (4)].l), i)) + 1; (yyval.c) = (char*)Malloc(size * sizeof(char)); (yyval.c)[0] = '\0'; - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ char *s; - List_Read((yyvsp[-1].l), i, &s); + List_Read((yyvsp[(3) - (4)].l), i, &s); strcat((yyval.c), s); Free(s); } - List_Delete((yyvsp[-1].l)); - } -#line 11434 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(3) - (4)].l)); + ;} break; - case 498: -#line 5634 "Gmsh.y" /* yacc.c:1646 */ + case 500: +#line 5665 "Gmsh.y" { - (yyval.c) = (char *)Malloc((strlen((yyvsp[-1].c)) + 1) * sizeof(char)); + (yyval.c) = (char *)Malloc((strlen((yyvsp[(3) - (4)].c)) + 1) * sizeof(char)); int i; - for(i = strlen((yyvsp[-1].c)) - 1; i >= 0; i--){ - if((yyvsp[-1].c)[i] == '.'){ - strncpy((yyval.c), (yyvsp[-1].c), i); + for(i = strlen((yyvsp[(3) - (4)].c)) - 1; i >= 0; i--){ + if((yyvsp[(3) - (4)].c)[i] == '.'){ + strncpy((yyval.c), (yyvsp[(3) - (4)].c), i); (yyval.c)[i]='\0'; break; } } - if(i <= 0) strcpy((yyval.c), (yyvsp[-1].c)); - Free((yyvsp[-1].c)); - } -#line 11452 "Gmsh.tab.cpp" /* yacc.c:1646 */ + if(i <= 0) strcpy((yyval.c), (yyvsp[(3) - (4)].c)); + Free((yyvsp[(3) - (4)].c)); + ;} break; - case 499: -#line 5648 "Gmsh.y" /* yacc.c:1646 */ + case 501: +#line 5679 "Gmsh.y" { - (yyval.c) = (char *)Malloc((strlen((yyvsp[-1].c)) + 1) * sizeof(char)); + (yyval.c) = (char *)Malloc((strlen((yyvsp[(3) - (4)].c)) + 1) * sizeof(char)); int i; - for(i = strlen((yyvsp[-1].c)) - 1; i >= 0; i--){ - if((yyvsp[-1].c)[i] == '/' || (yyvsp[-1].c)[i] == '\\') + for(i = strlen((yyvsp[(3) - (4)].c)) - 1; i >= 0; i--){ + if((yyvsp[(3) - (4)].c)[i] == '/' || (yyvsp[(3) - (4)].c)[i] == '\\') break; } if(i <= 0) - strcpy((yyval.c), (yyvsp[-1].c)); + strcpy((yyval.c), (yyvsp[(3) - (4)].c)); else - strcpy((yyval.c), &(yyvsp[-1].c)[i+1]); - Free((yyvsp[-1].c)); - } -#line 11470 "Gmsh.tab.cpp" /* yacc.c:1646 */ + strcpy((yyval.c), &(yyvsp[(3) - (4)].c)[i+1]); + Free((yyvsp[(3) - (4)].c)); + ;} break; - case 500: -#line 5662 "Gmsh.y" /* yacc.c:1646 */ + case 502: +#line 5693 "Gmsh.y" { - std::string input = (yyvsp[-5].c); - std::string substr_old = (yyvsp[-3].c); - std::string substr_new = (yyvsp[-1].c); + std::string input = (yyvsp[(3) - (8)].c); + std::string substr_old = (yyvsp[(5) - (8)].c); + std::string substr_new = (yyvsp[(7) - (8)].c); std::string ret = ReplaceSubString(substr_old, substr_new, input); (yyval.c) = (char *)Malloc((ret.size() + 1) * sizeof(char)); strcpy((yyval.c), ret.c_str()); - Free((yyvsp[-5].c)); - Free((yyvsp[-3].c)); - Free((yyvsp[-1].c)); - } -#line 11486 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (8)].c)); + Free((yyvsp[(5) - (8)].c)); + Free((yyvsp[(7) - (8)].c)); + ;} break; - case 501: -#line 5674 "Gmsh.y" /* yacc.c:1646 */ + case 503: +#line 5705 "Gmsh.y" { int size = 1; - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++) - size += strlen(*(char**)List_Pointer((yyvsp[-1].l), i)) + 1; + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++) + size += strlen(*(char**)List_Pointer((yyvsp[(3) - (4)].l), i)) + 1; (yyval.c) = (char*)Malloc(size * sizeof(char)); (yyval.c)[0] = '\0'; - for(int i = 0; i < List_Nbr((yyvsp[-1].l)); i++){ + for(int i = 0; i < List_Nbr((yyvsp[(3) - (4)].l)); i++){ char *s; - List_Read((yyvsp[-1].l), i, &s); + List_Read((yyvsp[(3) - (4)].l), i, &s); strcat((yyval.c), s); Free(s); - if(i != List_Nbr((yyvsp[-1].l)) - 1) strcat((yyval.c), "\n"); + if(i != List_Nbr((yyvsp[(3) - (4)].l)) - 1) strcat((yyval.c), "\n"); } - List_Delete((yyvsp[-1].l)); - } -#line 11506 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(3) - (4)].l)); + ;} break; - case 502: -#line 5690 "Gmsh.y" /* yacc.c:1646 */ + case 504: +#line 5721 "Gmsh.y" { int i = 0; - while ((yyvsp[-1].c)[i]) { - (yyvsp[-1].c)[i] = toupper((yyvsp[-1].c)[i]); + while ((yyvsp[(3) - (4)].c)[i]) { + (yyvsp[(3) - (4)].c)[i] = toupper((yyvsp[(3) - (4)].c)[i]); i++; } - (yyval.c) = (yyvsp[-1].c); - } -#line 11519 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.c) = (yyvsp[(3) - (4)].c); + ;} break; - case 503: -#line 5699 "Gmsh.y" /* yacc.c:1646 */ + case 505: +#line 5730 "Gmsh.y" { int i = 0; - while ((yyvsp[-1].c)[i]) { - (yyvsp[-1].c)[i] = tolower((yyvsp[-1].c)[i]); + while ((yyvsp[(3) - (4)].c)[i]) { + (yyvsp[(3) - (4)].c)[i] = tolower((yyvsp[(3) - (4)].c)[i]); i++; } - (yyval.c) = (yyvsp[-1].c); - } -#line 11532 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.c) = (yyvsp[(3) - (4)].c); + ;} break; - case 504: -#line 5708 "Gmsh.y" /* yacc.c:1646 */ + case 506: +#line 5739 "Gmsh.y" { int i = 0; - while ((yyvsp[-1].c)[i]) { - if (i > 0 && (yyvsp[-1].c)[i-1] != '_') - (yyvsp[-1].c)[i] = tolower((yyvsp[-1].c)[i]); + while ((yyvsp[(3) - (4)].c)[i]) { + if (i > 0 && (yyvsp[(3) - (4)].c)[i-1] != '_') + (yyvsp[(3) - (4)].c)[i] = tolower((yyvsp[(3) - (4)].c)[i]); i++; } - (yyval.c) = (yyvsp[-1].c); - } -#line 11546 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.c) = (yyvsp[(3) - (4)].c); + ;} break; - case 505: -#line 5718 "Gmsh.y" /* yacc.c:1646 */ + case 507: +#line 5749 "Gmsh.y" { - if((yyvsp[-5].d)){ - (yyval.c) = (yyvsp[-3].c); - Free((yyvsp[-1].c)); + if((yyvsp[(3) - (8)].d)){ + (yyval.c) = (yyvsp[(5) - (8)].c); + Free((yyvsp[(7) - (8)].c)); } else{ - (yyval.c) = (yyvsp[-1].c); - Free((yyvsp[-3].c)); + (yyval.c) = (yyvsp[(7) - (8)].c); + Free((yyvsp[(5) - (8)].c)); } - } -#line 11561 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 506: -#line 5729 "Gmsh.y" /* yacc.c:1646 */ + case 508: +#line 5760 "Gmsh.y" { - (yyval.c) = (yyvsp[-1].c); - } -#line 11569 "Gmsh.tab.cpp" /* yacc.c:1646 */ + (yyval.c) = (yyvsp[(3) - (4)].c); + ;} break; - case 507: -#line 5733 "Gmsh.y" /* yacc.c:1646 */ + case 509: +#line 5764 "Gmsh.y" { char tmpstring[5000]; - int i = PrintListOfDouble((yyvsp[-3].c), (yyvsp[-1].l), tmpstring); + int i = PrintListOfDouble((yyvsp[(3) - (6)].c), (yyvsp[(5) - (6)].l), tmpstring); if(i < 0){ yymsg(0, "Too few arguments in Sprintf"); - (yyval.c) = (yyvsp[-3].c); + (yyval.c) = (yyvsp[(3) - (6)].c); } else if(i > 0){ yymsg(0, "%d extra argument%s in Sprintf", i, (i > 1) ? "s" : ""); - (yyval.c) = (yyvsp[-3].c); + (yyval.c) = (yyvsp[(3) - (6)].c); } else{ (yyval.c) = (char*)Malloc((strlen(tmpstring) + 1) * sizeof(char)); strcpy((yyval.c), tmpstring); - Free((yyvsp[-3].c)); + Free((yyvsp[(3) - (6)].c)); } - List_Delete((yyvsp[-1].l)); - } -#line 11592 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Delete((yyvsp[(5) - (6)].l)); + ;} break; - case 508: -#line 5752 "Gmsh.y" /* yacc.c:1646 */ + case 510: +#line 5783 "Gmsh.y" { - std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[-1].c)); + std::string tmp = FixRelativePath(gmsh_yyname, (yyvsp[(3) - (4)].c)); (yyval.c) = (char*)Malloc((tmp.size() + 1) * sizeof(char)); strcpy((yyval.c), tmp.c_str()); - Free((yyvsp[-1].c)); - } -#line 11603 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (4)].c)); + ;} break; - case 509: -#line 5759 "Gmsh.y" /* yacc.c:1646 */ + case 511: +#line 5790 "Gmsh.y" { std::string tmp = SplitFileName(GetAbsolutePath(gmsh_yyname))[0]; (yyval.c) = (char*)Malloc((tmp.size() + 1) * sizeof(char)); strcpy((yyval.c), tmp.c_str()); - } -#line 11613 "Gmsh.tab.cpp" /* yacc.c:1646 */ + ;} break; - case 510: -#line 5765 "Gmsh.y" /* yacc.c:1646 */ - { floatOptions.clear(); charOptions.clear(); } -#line 11619 "Gmsh.tab.cpp" /* yacc.c:1646 */ + case 512: +#line 5796 "Gmsh.y" + { floatOptions.clear(); charOptions.clear(); ;} break; - case 511: -#line 5767 "Gmsh.y" /* yacc.c:1646 */ + case 513: +#line 5798 "Gmsh.y" { - std::string val((yyvsp[-3].c)); + std::string val((yyvsp[(3) - (6)].c)); Msg::ExchangeOnelabParameter("", val, floatOptions, charOptions); (yyval.c) = (char*)Malloc((val.size() + 1) * sizeof(char)); strcpy((yyval.c), val.c_str()); - Free((yyvsp[-3].c)); - } -#line 11631 "Gmsh.tab.cpp" /* yacc.c:1646 */ + Free((yyvsp[(3) - (6)].c)); + ;} break; - case 512: -#line 5778 "Gmsh.y" /* yacc.c:1646 */ + case 514: +#line 5809 "Gmsh.y" { (yyval.l) = List_Create(20,20,sizeof(char*)); - List_Add((yyval.l), &((yyvsp[0].c))); - } -#line 11640 "Gmsh.tab.cpp" /* yacc.c:1646 */ + List_Add((yyval.l), &((yyvsp[(1) - (1)].c))); + ;} break; - case 513: -#line 5783 "Gmsh.y" /* yacc.c:1646 */ - { List_Add((yyval.l), &((yyvsp[0].c))); } -#line 11646 "Gmsh.tab.cpp" /* yacc.c:1646 */ + case 515: +#line 5814 "Gmsh.y" + { List_Add((yyval.l), &((yyvsp[(3) - (3)].c))); ;} break; - case 514: -#line 5789 "Gmsh.y" /* yacc.c:1646 */ + case 516: +#line 5820 "Gmsh.y" { char tmpstr[256]; - sprintf(tmpstr, "_%d", (int)(yyvsp[-1].d)); - (yyval.c) = (char *)Malloc((strlen((yyvsp[-4].c))+strlen(tmpstr)+1)*sizeof(char)); - strcpy((yyval.c), (yyvsp[-4].c)); strcat((yyval.c), tmpstr); - Free((yyvsp[-4].c)); - } -#line 11658 "Gmsh.tab.cpp" /* yacc.c:1646 */ + sprintf(tmpstr, "_%d", (int)(yyvsp[(4) - (5)].d)); + (yyval.c) = (char *)Malloc((strlen((yyvsp[(1) - (5)].c))+strlen(tmpstr)+1)*sizeof(char)); + strcpy((yyval.c), (yyvsp[(1) - (5)].c)); strcat((yyval.c), tmpstr); + Free((yyvsp[(1) - (5)].c)); + ;} break; - case 515: -#line 5798 "Gmsh.y" /* yacc.c:1646 */ + case 517: +#line 5829 "Gmsh.y" { char tmpstr[256]; - sprintf(tmpstr, "_%d", (int)(yyvsp[-1].d)); - (yyval.c) = (char *)Malloc((strlen((yyvsp[-4].c))+strlen(tmpstr)+1)*sizeof(char)) ; - strcpy((yyval.c), (yyvsp[-4].c)) ; strcat((yyval.c), tmpstr) ; - Free((yyvsp[-4].c)); - } -#line 11670 "Gmsh.tab.cpp" /* yacc.c:1646 */ + sprintf(tmpstr, "_%d", (int)(yyvsp[(4) - (5)].d)); + (yyval.c) = (char *)Malloc((strlen((yyvsp[(1) - (5)].c))+strlen(tmpstr)+1)*sizeof(char)) ; + strcpy((yyval.c), (yyvsp[(1) - (5)].c)) ; strcat((yyval.c), tmpstr) ; + Free((yyvsp[(1) - (5)].c)); + ;} break; - case 516: -#line 5811 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.c) = (yyvsp[0].c); } -#line 11676 "Gmsh.tab.cpp" /* yacc.c:1646 */ + case 518: +#line 5842 "Gmsh.y" + { (yyval.c) = (yyvsp[(1) - (1)].c); ;} break; - case 517: -#line 5814 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.c) = (yyvsp[0].c); } -#line 11682 "Gmsh.tab.cpp" /* yacc.c:1646 */ + case 519: +#line 5845 "Gmsh.y" + { (yyval.c) = (yyvsp[(1) - (1)].c); ;} break; - case 518: -#line 5818 "Gmsh.y" /* yacc.c:1646 */ - { (yyval.c) = (yyvsp[-1].c); } -#line 11688 "Gmsh.tab.cpp" /* yacc.c:1646 */ + case 520: +#line 5849 "Gmsh.y" + { (yyval.c) = (yyvsp[(3) - (4)].c); ;} break; -#line 11692 "Gmsh.tab.cpp" /* yacc.c:1646 */ +/* Line 1267 of yacc.c. */ +#line 11895 "Gmsh.tab.cpp" default: break; } - /* User semantic actions sometimes alter yychar, and that requires - that yytoken be updated with the new translation. We take the - approach of translating immediately before every use of yytoken. - One alternative is translating here after every semantic action, - but that translation would be missed if the semantic action invokes - YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or - if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an - incorrect destructor might then be invoked immediately. In the - case of YYERROR or YYBACKUP, subsequent parser actions might lead - to an incorrect destructor call or verbose syntax error message - before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); @@ -11710,7 +11902,8 @@ yyreduce: *++yyvsp = yyval; - /* Now 'shift' the result of the reduction. Determine what state + + /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ @@ -11725,14 +11918,10 @@ yyreduce: goto yynewstate; -/*--------------------------------------. -| yyerrlab -- here on detecting error. | -`--------------------------------------*/ +/*------------------------------------. +| yyerrlab -- here on detecting error | +`------------------------------------*/ yyerrlab: - /* Make sure we have latest lookahead translation. See comments at - user semantic actions for why this is necessary. */ - yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); - /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { @@ -11740,36 +11929,37 @@ yyerrlab: #if ! YYERROR_VERBOSE yyerror (YY_("syntax error")); #else -# define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ - yyssp, yytoken) { - char const *yymsgp = YY_("syntax error"); - int yysyntax_error_status; - yysyntax_error_status = YYSYNTAX_ERROR; - if (yysyntax_error_status == 0) - yymsgp = yymsg; - else if (yysyntax_error_status == 1) - { - if (yymsg != yymsgbuf) - YYSTACK_FREE (yymsg); - yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); - if (!yymsg) - { - yymsg = yymsgbuf; - yymsg_alloc = sizeof yymsgbuf; - yysyntax_error_status = 2; - } - else - { - yysyntax_error_status = YYSYNTAX_ERROR; - yymsgp = yymsg; - } - } - yyerror (yymsgp); - if (yysyntax_error_status == 2) - goto yyexhaustedlab; + YYSIZE_T yysize = yysyntax_error (0, yystate, yychar); + if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM) + { + YYSIZE_T yyalloc = 2 * yysize; + if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM)) + yyalloc = YYSTACK_ALLOC_MAXIMUM; + if (yymsg != yymsgbuf) + YYSTACK_FREE (yymsg); + yymsg = (char *) YYSTACK_ALLOC (yyalloc); + if (yymsg) + yymsg_alloc = yyalloc; + else + { + yymsg = yymsgbuf; + yymsg_alloc = sizeof yymsgbuf; + } + } + + if (0 < yysize && yysize <= yymsg_alloc) + { + (void) yysyntax_error (yymsg, yystate, yychar); + yyerror (yymsg); + } + else + { + yyerror (YY_("syntax error")); + if (yysize != 0) + goto yyexhaustedlab; + } } -# undef YYSYNTAX_ERROR #endif } @@ -11777,24 +11967,24 @@ yyerrlab: if (yyerrstatus == 3) { - /* If just tried and failed to reuse lookahead token after an - error, discard it. */ + /* If just tried and failed to reuse look-ahead token after an + error, discard it. */ if (yychar <= YYEOF) - { - /* Return failure if at end of input. */ - if (yychar == YYEOF) - YYABORT; - } + { + /* Return failure if at end of input. */ + if (yychar == YYEOF) + YYABORT; + } else - { - yydestruct ("Error: discarding", - yytoken, &yylval); - yychar = YYEMPTY; - } + { + yydestruct ("Error: discarding", + yytoken, &yylval); + yychar = YYEMPTY; + } } - /* Else will try to reuse lookahead token after shifting the error + /* Else will try to reuse look-ahead token after shifting the error token. */ goto yyerrlab1; @@ -11810,7 +12000,7 @@ yyerrorlab: if (/*CONSTCOND*/ 0) goto yyerrorlab; - /* Do not reclaim the symbols of the rule whose action triggered + /* Do not reclaim the symbols of the rule which action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; @@ -11823,37 +12013,38 @@ yyerrorlab: | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: - yyerrstatus = 3; /* Each real token shifted decrements this. */ + yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; - if (!yypact_value_is_default (yyn)) - { - yyn += YYTERROR; - if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) - { - yyn = yytable[yyn]; - if (0 < yyn) - break; - } - } + if (yyn != YYPACT_NINF) + { + yyn += YYTERROR; + if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) + { + yyn = yytable[yyn]; + if (0 < yyn) + break; + } + } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) - YYABORT; + YYABORT; yydestruct ("Error: popping", - yystos[yystate], yyvsp); + yystos[yystate], yyvsp); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } - YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN + if (yyn == YYFINAL) + YYACCEPT; + *++yyvsp = yylval; - YY_IGNORE_MAYBE_UNINITIALIZED_END /* Shift the error token. */ @@ -11877,7 +12068,7 @@ yyabortlab: yyresult = 1; goto yyreturn; -#if !defined yyoverflow || YYERROR_VERBOSE +#ifndef yyoverflow /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ @@ -11888,22 +12079,17 @@ yyexhaustedlab: #endif yyreturn: - if (yychar != YYEMPTY) - { - /* Make sure we have latest lookahead translation. See comments at - user semantic actions for why this is necessary. */ - yytoken = YYTRANSLATE (yychar); - yydestruct ("Cleanup: discarding lookahead", - yytoken, &yylval); - } - /* Do not reclaim the symbols of the rule whose action triggered + if (yychar != YYEOF && yychar != YYEMPTY) + yydestruct ("Cleanup: discarding lookahead", + yytoken, &yylval); + /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", - yystos[*yyssp], yyvsp); + yystos[*yyssp], yyvsp); YYPOPSTACK (1); } #ifndef yyoverflow @@ -11914,9 +12100,12 @@ yyreturn: if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif - return yyresult; + /* Make sure YYID is used. */ + return YYID (yyresult); } -#line 5821 "Gmsh.y" /* yacc.c:1906 */ + + +#line 5852 "Gmsh.y" void assignVariable(const std::string &name, int index, int assignType, @@ -12148,7 +12337,7 @@ void yymsg(int level, const char *fmt, ...) } } -void addPeriodicFace(int iTarget,int iSource, +void addPeriodicFace(int iTarget, int iSource, const std::vector<double>& affineTransform) { Surface *target = FindSurface(abs(iTarget)); @@ -12165,11 +12354,11 @@ void addPeriodicFace(int iTarget,int iSource, GFace *source = GModel::current()->getFaceByTag(abs(iSource)); if (!target) Msg::Error("Could not find edge %d for periodic copy from %d", iTarget,iSource); - target->setMeshMaster(source,affineTransform); + target->setMeshMaster(source, affineTransform); } } -void addPeriodicFace(int iTarget,int iSource, +void addPeriodicFace(int iTarget, int iSource, const std::map<int,int>& edgeCounterparts) { Surface *target = FindSurface(abs(iTarget)); @@ -12193,7 +12382,7 @@ void addPeriodicFace(int iTarget,int iSource, if (!target || !source) Msg::Error("Could not find surface %d or %d for periodic copy", iTarget,iSource); - target->setMeshMaster(source,edgeCounterparts); + target->setMeshMaster(source, edgeCounterparts); } } @@ -12214,10 +12403,10 @@ void addPeriodicEdge(int iTarget,int iSource, Msg::Error("Could not find surface %d or %d for periodic copy", iTarget,iSource); if (affineTransform.size() >= 12) { - target->setMeshMaster(source,affineTransform); + target->setMeshMaster(source, affineTransform); } else { - target->setMeshMaster(source,iSource*iTarget < 0 ? -1:1); + target->setMeshMaster(source, iSource * iTarget < 0 ? -1 : 1); } } } @@ -12259,3 +12448,4 @@ void computeAffineTransformation(SPoint3& origin, SPoint3& axis, for (int i = 0; i < 4; i++) tfo[12+i] = 0; tfo[15] = 1; } + diff --git a/Parser/Gmsh.tab.hpp b/Parser/Gmsh.tab.hpp index e3cca5037c..b61d40c697 100644 --- a/Parser/Gmsh.tab.hpp +++ b/Parser/Gmsh.tab.hpp @@ -1,13 +1,14 @@ -/* A Bison parser, made by GNU Bison 3.0.4. */ +/* A Bison parser, made by GNU Bison 2.3. */ -/* Bison interface for Yacc-like parsers in C +/* Skeleton interface for Bison's Yacc-like parsers in C - Copyright (C) 1984, 1989-1990, 2000-2015 Free Software Foundation, Inc. + Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + Free Software Foundation, Inc. - This program is free software: you can redistribute it and/or modify + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. + the Free Software Foundation; either version 2, or (at your option) + any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -15,7 +16,9 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. */ + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work @@ -30,212 +33,389 @@ This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ -#ifndef YY_GMSH_YY_GMSH_TAB_HPP_INCLUDED -# define YY_GMSH_YY_GMSH_TAB_HPP_INCLUDED -/* Debug traces. */ -#ifndef YYDEBUG -# define YYDEBUG 0 -#endif -#if YYDEBUG -extern int gmsh_yydebug; -#endif - -/* Token type. */ +/* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE - enum yytokentype - { - tDOUBLE = 258, - tSTRING = 259, - tBIGSTR = 260, - tEND = 261, - tAFFECT = 262, - tDOTS = 263, - tPi = 264, - tMPI_Rank = 265, - tMPI_Size = 266, - tEuclidian = 267, - tCoordinates = 268, - tExp = 269, - tLog = 270, - tLog10 = 271, - tSqrt = 272, - tSin = 273, - tAsin = 274, - tCos = 275, - tAcos = 276, - tTan = 277, - tRand = 278, - tAtan = 279, - tAtan2 = 280, - tSinh = 281, - tCosh = 282, - tTanh = 283, - tFabs = 284, - tFloor = 285, - tCeil = 286, - tRound = 287, - tFmod = 288, - tModulo = 289, - tHypot = 290, - tList = 291, - tPrintf = 292, - tError = 293, - tStr = 294, - tSprintf = 295, - tStrCat = 296, - tStrPrefix = 297, - tStrRelative = 298, - tStrReplace = 299, - tFind = 300, - tStrFind = 301, - tStrCmp = 302, - tStrChoice = 303, - tUpperCase = 304, - tLowerCase = 305, - tLowerCaseIn = 306, - tTextAttributes = 307, - tBoundingBox = 308, - tDraw = 309, - tSetChanged = 310, - tToday = 311, - tFixRelativePath = 312, - tCurrentDirectory = 313, - tSyncModel = 314, - tNewModel = 315, - tOnelabAction = 316, - tOnelabRun = 317, - tCpu = 318, - tMemory = 319, - tTotalMemory = 320, - tCreateTopology = 321, - tCreateTopologyNoHoles = 322, - tDistanceFunction = 323, - tDefineConstant = 324, - tUndefineConstant = 325, - tDefineNumber = 326, - tDefineString = 327, - tSetNumber = 328, - tSetString = 329, - tPoint = 330, - tCircle = 331, - tEllipse = 332, - tLine = 333, - tSphere = 334, - tPolarSphere = 335, - tSurface = 336, - tSpline = 337, - tVolume = 338, - tCharacteristic = 339, - tLength = 340, - tParametric = 341, - tElliptic = 342, - tRefineMesh = 343, - tAdaptMesh = 344, - tRelocateMesh = 345, - tPlane = 346, - tRuled = 347, - tTransfinite = 348, - tComplex = 349, - tPhysical = 350, - tCompound = 351, - tPeriodic = 352, - tUsing = 353, - tPlugin = 354, - tDegenerated = 355, - tRecursive = 356, - tRotate = 357, - tTranslate = 358, - tSymmetry = 359, - tDilate = 360, - tExtrude = 361, - tLevelset = 362, - tAffine = 363, - tRecombine = 364, - tSmoother = 365, - tSplit = 366, - tDelete = 367, - tCoherence = 368, - tIntersect = 369, - tMeshAlgorithm = 370, - tReverse = 371, - tLayers = 372, - tScaleLast = 373, - tHole = 374, - tAlias = 375, - tAliasWithOptions = 376, - tCopyOptions = 377, - tQuadTriAddVerts = 378, - tQuadTriNoNewVerts = 379, - tQuadTriSngl = 380, - tQuadTriDbl = 381, - tRecombLaterals = 382, - tTransfQuadTri = 383, - tText2D = 384, - tText3D = 385, - tInterpolationScheme = 386, - tTime = 387, - tCombine = 388, - tBSpline = 389, - tBezier = 390, - tNurbs = 391, - tNurbsOrder = 392, - tNurbsKnots = 393, - tColor = 394, - tColorTable = 395, - tFor = 396, - tIn = 397, - tEndFor = 398, - tIf = 399, - tEndIf = 400, - tExit = 401, - tAbort = 402, - tField = 403, - tReturn = 404, - tCall = 405, - tMacro = 406, - tShow = 407, - tHide = 408, - tGetValue = 409, - tGetEnv = 410, - tGetString = 411, - tGetNumber = 412, - tHomology = 413, - tCohomology = 414, - tBetti = 415, - tSetOrder = 416, - tExists = 417, - tFileExists = 418, - tGMSH_MAJOR_VERSION = 419, - tGMSH_MINOR_VERSION = 420, - tGMSH_PATCH_VERSION = 421, - tGmshExecutableName = 422, - tSetPartition = 423, - tNameFromString = 424, - tStringFromName = 425, - tAFFECTPLUS = 426, - tAFFECTMINUS = 427, - tAFFECTTIMES = 428, - tAFFECTDIVIDE = 429, - tOR = 430, - tAND = 431, - tEQUAL = 432, - tNOTEQUAL = 433, - tLESSOREQUAL = 434, - tGREATEROREQUAL = 435, - tPLUSPLUS = 436, - tMINUSMINUS = 437, - UNARYPREC = 438 - }; + /* Put the tokens into the symbol table, so that GDB and other debuggers + know about them. */ + enum yytokentype { + tDOUBLE = 258, + tSTRING = 259, + tBIGSTR = 260, + tEND = 261, + tAFFECT = 262, + tDOTS = 263, + tPi = 264, + tMPI_Rank = 265, + tMPI_Size = 266, + tEuclidian = 267, + tCoordinates = 268, + tTestLevel = 269, + tExp = 270, + tLog = 271, + tLog10 = 272, + tSqrt = 273, + tSin = 274, + tAsin = 275, + tCos = 276, + tAcos = 277, + tTan = 278, + tRand = 279, + tAtan = 280, + tAtan2 = 281, + tSinh = 282, + tCosh = 283, + tTanh = 284, + tFabs = 285, + tFloor = 286, + tCeil = 287, + tRound = 288, + tFmod = 289, + tModulo = 290, + tHypot = 291, + tList = 292, + tPrintf = 293, + tError = 294, + tStr = 295, + tSprintf = 296, + tStrCat = 297, + tStrPrefix = 298, + tStrRelative = 299, + tStrReplace = 300, + tFind = 301, + tStrFind = 302, + tStrCmp = 303, + tStrChoice = 304, + tUpperCase = 305, + tLowerCase = 306, + tLowerCaseIn = 307, + tTextAttributes = 308, + tBoundingBox = 309, + tDraw = 310, + tSetChanged = 311, + tToday = 312, + tFixRelativePath = 313, + tCurrentDirectory = 314, + tSyncModel = 315, + tNewModel = 316, + tOnelabAction = 317, + tOnelabRun = 318, + tCpu = 319, + tMemory = 320, + tTotalMemory = 321, + tCreateTopology = 322, + tCreateTopologyNoHoles = 323, + tDistanceFunction = 324, + tDefineConstant = 325, + tUndefineConstant = 326, + tDefineNumber = 327, + tDefineString = 328, + tSetNumber = 329, + tSetString = 330, + tPoint = 331, + tCircle = 332, + tEllipse = 333, + tLine = 334, + tSphere = 335, + tPolarSphere = 336, + tSurface = 337, + tSpline = 338, + tVolume = 339, + tCharacteristic = 340, + tLength = 341, + tParametric = 342, + tElliptic = 343, + tRefineMesh = 344, + tAdaptMesh = 345, + tRelocateMesh = 346, + tPlane = 347, + tRuled = 348, + tTransfinite = 349, + tComplex = 350, + tPhysical = 351, + tCompound = 352, + tPeriodic = 353, + tUsing = 354, + tPlugin = 355, + tDegenerated = 356, + tRecursive = 357, + tRotate = 358, + tTranslate = 359, + tSymmetry = 360, + tDilate = 361, + tExtrude = 362, + tLevelset = 363, + tAffine = 364, + tRecombine = 365, + tSmoother = 366, + tSplit = 367, + tDelete = 368, + tCoherence = 369, + tIntersect = 370, + tMeshAlgorithm = 371, + tReverse = 372, + tLayers = 373, + tScaleLast = 374, + tHole = 375, + tAlias = 376, + tAliasWithOptions = 377, + tCopyOptions = 378, + tQuadTriAddVerts = 379, + tQuadTriNoNewVerts = 380, + tQuadTriSngl = 381, + tQuadTriDbl = 382, + tRecombLaterals = 383, + tTransfQuadTri = 384, + tText2D = 385, + tText3D = 386, + tInterpolationScheme = 387, + tTime = 388, + tCombine = 389, + tBSpline = 390, + tBezier = 391, + tNurbs = 392, + tNurbsOrder = 393, + tNurbsKnots = 394, + tColor = 395, + tColorTable = 396, + tFor = 397, + tIn = 398, + tEndFor = 399, + tIf = 400, + tElse = 401, + tEndIf = 402, + tExit = 403, + tAbort = 404, + tField = 405, + tReturn = 406, + tCall = 407, + tMacro = 408, + tShow = 409, + tHide = 410, + tGetValue = 411, + tGetEnv = 412, + tGetString = 413, + tGetNumber = 414, + tHomology = 415, + tCohomology = 416, + tBetti = 417, + tSetOrder = 418, + tExists = 419, + tFileExists = 420, + tGMSH_MAJOR_VERSION = 421, + tGMSH_MINOR_VERSION = 422, + tGMSH_PATCH_VERSION = 423, + tGmshExecutableName = 424, + tSetPartition = 425, + tNameFromString = 426, + tStringFromName = 427, + tAFFECTDIVIDE = 428, + tAFFECTTIMES = 429, + tAFFECTMINUS = 430, + tAFFECTPLUS = 431, + tOR = 432, + tAND = 433, + tNOTEQUAL = 434, + tEQUAL = 435, + tGREATEROREQUAL = 436, + tLESSOREQUAL = 437, + UNARYPREC = 438, + tMINUSMINUS = 439, + tPLUSPLUS = 440 + }; #endif +/* Tokens. */ +#define tDOUBLE 258 +#define tSTRING 259 +#define tBIGSTR 260 +#define tEND 261 +#define tAFFECT 262 +#define tDOTS 263 +#define tPi 264 +#define tMPI_Rank 265 +#define tMPI_Size 266 +#define tEuclidian 267 +#define tCoordinates 268 +#define tTestLevel 269 +#define tExp 270 +#define tLog 271 +#define tLog10 272 +#define tSqrt 273 +#define tSin 274 +#define tAsin 275 +#define tCos 276 +#define tAcos 277 +#define tTan 278 +#define tRand 279 +#define tAtan 280 +#define tAtan2 281 +#define tSinh 282 +#define tCosh 283 +#define tTanh 284 +#define tFabs 285 +#define tFloor 286 +#define tCeil 287 +#define tRound 288 +#define tFmod 289 +#define tModulo 290 +#define tHypot 291 +#define tList 292 +#define tPrintf 293 +#define tError 294 +#define tStr 295 +#define tSprintf 296 +#define tStrCat 297 +#define tStrPrefix 298 +#define tStrRelative 299 +#define tStrReplace 300 +#define tFind 301 +#define tStrFind 302 +#define tStrCmp 303 +#define tStrChoice 304 +#define tUpperCase 305 +#define tLowerCase 306 +#define tLowerCaseIn 307 +#define tTextAttributes 308 +#define tBoundingBox 309 +#define tDraw 310 +#define tSetChanged 311 +#define tToday 312 +#define tFixRelativePath 313 +#define tCurrentDirectory 314 +#define tSyncModel 315 +#define tNewModel 316 +#define tOnelabAction 317 +#define tOnelabRun 318 +#define tCpu 319 +#define tMemory 320 +#define tTotalMemory 321 +#define tCreateTopology 322 +#define tCreateTopologyNoHoles 323 +#define tDistanceFunction 324 +#define tDefineConstant 325 +#define tUndefineConstant 326 +#define tDefineNumber 327 +#define tDefineString 328 +#define tSetNumber 329 +#define tSetString 330 +#define tPoint 331 +#define tCircle 332 +#define tEllipse 333 +#define tLine 334 +#define tSphere 335 +#define tPolarSphere 336 +#define tSurface 337 +#define tSpline 338 +#define tVolume 339 +#define tCharacteristic 340 +#define tLength 341 +#define tParametric 342 +#define tElliptic 343 +#define tRefineMesh 344 +#define tAdaptMesh 345 +#define tRelocateMesh 346 +#define tPlane 347 +#define tRuled 348 +#define tTransfinite 349 +#define tComplex 350 +#define tPhysical 351 +#define tCompound 352 +#define tPeriodic 353 +#define tUsing 354 +#define tPlugin 355 +#define tDegenerated 356 +#define tRecursive 357 +#define tRotate 358 +#define tTranslate 359 +#define tSymmetry 360 +#define tDilate 361 +#define tExtrude 362 +#define tLevelset 363 +#define tAffine 364 +#define tRecombine 365 +#define tSmoother 366 +#define tSplit 367 +#define tDelete 368 +#define tCoherence 369 +#define tIntersect 370 +#define tMeshAlgorithm 371 +#define tReverse 372 +#define tLayers 373 +#define tScaleLast 374 +#define tHole 375 +#define tAlias 376 +#define tAliasWithOptions 377 +#define tCopyOptions 378 +#define tQuadTriAddVerts 379 +#define tQuadTriNoNewVerts 380 +#define tQuadTriSngl 381 +#define tQuadTriDbl 382 +#define tRecombLaterals 383 +#define tTransfQuadTri 384 +#define tText2D 385 +#define tText3D 386 +#define tInterpolationScheme 387 +#define tTime 388 +#define tCombine 389 +#define tBSpline 390 +#define tBezier 391 +#define tNurbs 392 +#define tNurbsOrder 393 +#define tNurbsKnots 394 +#define tColor 395 +#define tColorTable 396 +#define tFor 397 +#define tIn 398 +#define tEndFor 399 +#define tIf 400 +#define tElse 401 +#define tEndIf 402 +#define tExit 403 +#define tAbort 404 +#define tField 405 +#define tReturn 406 +#define tCall 407 +#define tMacro 408 +#define tShow 409 +#define tHide 410 +#define tGetValue 411 +#define tGetEnv 412 +#define tGetString 413 +#define tGetNumber 414 +#define tHomology 415 +#define tCohomology 416 +#define tBetti 417 +#define tSetOrder 418 +#define tExists 419 +#define tFileExists 420 +#define tGMSH_MAJOR_VERSION 421 +#define tGMSH_MINOR_VERSION 422 +#define tGMSH_PATCH_VERSION 423 +#define tGmshExecutableName 424 +#define tSetPartition 425 +#define tNameFromString 426 +#define tStringFromName 427 +#define tAFFECTDIVIDE 428 +#define tAFFECTTIMES 429 +#define tAFFECTMINUS 430 +#define tAFFECTPLUS 431 +#define tOR 432 +#define tAND 433 +#define tNOTEQUAL 434 +#define tEQUAL 435 +#define tGREATEROREQUAL 436 +#define tLESSOREQUAL 437 +#define UNARYPREC 438 +#define tMINUSMINUS 439 +#define tPLUSPLUS 440 + -/* Value type. */ -#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED -union YYSTYPE -{ -#line 105 "Gmsh.y" /* yacc.c:1909 */ +#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED +typedef union YYSTYPE +#line 109 "Gmsh.y" +{ char *c; int i; unsigned int u; @@ -243,18 +423,14 @@ union YYSTYPE double v[5]; Shape s; List_T *l; - -#line 248 "Gmsh.tab.hpp" /* yacc.c:1909 */ -}; - -typedef union YYSTYPE YYSTYPE; -# define YYSTYPE_IS_TRIVIAL 1 +} +/* Line 1529 of yacc.c. */ +#line 429 "Gmsh.tab.hpp" + YYSTYPE; +# define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 +# define YYSTYPE_IS_TRIVIAL 1 #endif - extern YYSTYPE gmsh_yylval; -int gmsh_yyparse (void); - -#endif /* !YY_GMSH_YY_GMSH_TAB_HPP_INCLUDED */ diff --git a/Parser/Gmsh.y b/Parser/Gmsh.y index dbe414e9bd..e6ecc84583 100644 --- a/Parser/Gmsh.y +++ b/Parser/Gmsh.y @@ -69,8 +69,10 @@ static std::vector<double> *ViewValueList = 0; static int *ViewNumList = 0; static ExtrudeParams extr; static gmshSurface *myGmshSurface = 0; +#define MAX_RECUR_TESTS 100 +static int statusImbricatedTests[MAX_RECUR_TESTS]; #define MAX_RECUR_LOOPS 100 -static int ImbricatedLoop = 0; +static int ImbricatedLoop = 0, ImbricatedTest = 0; static gmshfpos_t yyposImbricatedLoopsTab[MAX_RECUR_LOOPS]; static int yylinenoImbricatedLoopsTab[MAX_RECUR_LOOPS]; static double LoopControlVariablesTab[MAX_RECUR_LOOPS][3]; @@ -80,7 +82,9 @@ static std::map<std::string, std::vector<std::string> > charOptions; void yyerror(const char *s); void yymsg(int level, const char *fmt, ...); +bool is_alpha(const int c); void skip_until(const char *skip, const char *until); +void skip_until_test(const char *skip, const char *until, const char *until2, int *flag_until2); void assignVariable(const std::string &name, int index, int assignType, double value); void assignVariables(const std::string &name, List_T *indices, int assignType, @@ -115,7 +119,7 @@ struct doubleXstring{ %token <d> tDOUBLE %token <c> tSTRING tBIGSTR -%token tEND tAFFECT tDOTS tPi tMPI_Rank tMPI_Size tEuclidian tCoordinates +%token tEND tAFFECT tDOTS tPi tMPI_Rank tMPI_Size tEuclidian tCoordinates tTestLevel %token tExp tLog tLog10 tSqrt tSin tAsin tCos tAcos tTan tRand %token tAtan tAtan2 tSinh tCosh tTanh tFabs tFloor tCeil tRound %token tFmod tModulo tHypot tList @@ -142,7 +146,7 @@ struct doubleXstring{ %token tRecombLaterals tTransfQuadTri %token tText2D tText3D tInterpolationScheme tTime tCombine %token tBSpline tBezier tNurbs tNurbsOrder tNurbsKnots -%token tColor tColorTable tFor tIn tEndFor tIf tEndIf tExit tAbort +%token tColor tColorTable tFor tIn tEndFor tIf tElse tEndIf tExit tAbort %token tField tReturn tCall tMacro tShow tHide tGetValue tGetEnv tGetString tGetNumber %token tHomology tCohomology tBetti tSetOrder tExists tFileExists %token tGMSH_MAJOR_VERSION tGMSH_MINOR_VERSION tGMSH_PATCH_VERSION @@ -3230,10 +3234,36 @@ Loop : } | tIf '(' FExpr ')' { - if(!$3) skip_until("If", "EndIf"); + ImbricatedTest++; + if(ImbricatedTest > MAX_RECUR_TESTS-1){ + yymsg(0, "Reached maximum number of imbricated tests"); + ImbricatedTest = MAX_RECUR_TESTS-1; + } + + if(!$3){ + statusImbricatedTests[ImbricatedTest] = 0; // Will be useful later for ElseIf + int flag_until2 = 0; + skip_until_test("If", "EndIf", "Else", &flag_until2); + if(!flag_until2) + ImbricatedTest--; + } + else{ + statusImbricatedTests[ImbricatedTest] = 1; + } + + } + | tElse + { + if (ImbricatedTest > 0 && statusImbricatedTests[ImbricatedTest]){ + skip_until("If", "EndIf"); + ImbricatedTest--; + } } | tEndIf { + ImbricatedTest--; + if (ImbricatedTest < 0) + yymsg(1, "Orphan EndIf"); } ; @@ -4659,6 +4689,7 @@ FExpr_Single : tDOUBLE { $$ = $1; } | tPi { $$ = 3.141592653589793; } + | tTestLevel { $$ = (double)ImbricatedTest; } | tMPI_Rank { $$ = Msg::GetCommRank(); } | tMPI_Size { $$ = Msg::GetCommSize(); } | tGMSH_MAJOR_VERSION { $$ = GetGmshMajorVersion(); } diff --git a/Parser/Gmsh.yy.cpp b/Parser/Gmsh.yy.cpp index 1efca14f9b..e567c9e2eb 100644 --- a/Parser/Gmsh.yy.cpp +++ b/Parser/Gmsh.yy.cpp @@ -28,7 +28,7 @@ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 -#define YY_FLEX_SUBMINOR_VERSION 37 +#define YY_FLEX_SUBMINOR_VERSION 35 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif @@ -66,6 +66,7 @@ typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; +typedef uint64_t flex_uint64_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; @@ -73,6 +74,7 @@ typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; +#endif /* ! C99 */ /* Limits of integral types. */ #ifndef INT8_MIN @@ -103,8 +105,6 @@ typedef unsigned int flex_uint32_t; #define UINT32_MAX (4294967295U) #endif -#endif /* ! C99 */ - #endif /* ! FLEXINT_H */ #ifdef __cplusplus @@ -375,13 +375,13 @@ static void yy_fatal_error (yyconst char msg[] ); */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ - gmsh_yyleng = (size_t) (yy_cp - yy_bp); \ + gmsh_yyleng = (yy_size_t) (yy_cp - yy_bp); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; -#define YY_NUM_RULES 206 -#define YY_END_OF_BUFFER 207 +#define YY_NUM_RULES 208 +#define YY_END_OF_BUFFER 209 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info @@ -389,123 +389,124 @@ struct yy_trans_info flex_int32_t yy_verify; flex_int32_t yy_nxt; }; -static yyconst flex_int16_t yy_accept[1048] = +static yyconst flex_int16_t yy_accept[1057] = { 0, - 0, 0, 207, 205, 1, 1, 205, 5, 205, 6, - 205, 205, 205, 205, 205, 200, 21, 2, 205, 16, - 205, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 205, 28, 24, 19, 25, 17, - 26, 18, 0, 202, 3, 4, 20, 201, 200, 0, - 29, 27, 30, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - - 204, 204, 204, 204, 110, 109, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 135, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 183, 184, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 23, 22, 0, 201, 0, 0, - 203, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 55, 66, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 77, 204, 204, - - 204, 204, 204, 204, 204, 204, 95, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 117, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 164, 204, 204, 204, - 204, 204, 170, 204, 204, 204, 204, 191, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 0, 202, 0, - 0, 201, 204, 32, 204, 204, 204, 204, 204, 204, - 38, 40, 204, 204, 204, 204, 63, 204, 48, 204, - - 204, 204, 204, 204, 204, 204, 204, 204, 54, 204, - 204, 204, 204, 204, 204, 75, 204, 204, 204, 204, - 204, 204, 86, 204, 88, 204, 204, 90, 204, 204, - 94, 204, 204, 204, 204, 204, 204, 204, 105, 106, - 204, 204, 204, 204, 204, 204, 204, 204, 115, 116, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 152, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 180, 165, 204, - 204, 204, 204, 163, 204, 204, 204, 204, 204, 204, - - 204, 204, 186, 190, 204, 204, 204, 204, 204, 204, - 204, 204, 10, 15, 9, 8, 204, 12, 14, 0, - 201, 31, 204, 204, 36, 204, 204, 204, 42, 204, - 44, 204, 204, 204, 204, 204, 204, 204, 58, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 83, 85, 204, 204, 204, 89, 204, 204, - 93, 204, 204, 204, 204, 204, 204, 204, 204, 108, - 204, 204, 113, 204, 204, 204, 118, 204, 204, 204, - 121, 204, 204, 204, 204, 204, 129, 204, 132, 204, - 204, 204, 136, 204, 137, 204, 204, 204, 204, 204, - - 204, 204, 204, 204, 204, 150, 151, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 168, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 192, - 204, 204, 204, 204, 198, 204, 11, 204, 13, 204, - 34, 204, 35, 39, 41, 204, 45, 204, 204, 204, - 49, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 72, 74, 204, 204, 82, 204, 87, - 204, 204, 204, 204, 204, 204, 97, 204, 204, 204, - 204, 204, 204, 204, 119, 114, 204, 204, 204, 204, - 126, 204, 123, 204, 204, 204, 204, 204, 204, 141, - - 204, 140, 204, 204, 204, 204, 204, 155, 204, 149, - 204, 204, 204, 204, 204, 204, 204, 166, 167, 204, - 173, 204, 178, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 199, 7, 204, - 204, 43, 46, 204, 204, 204, 204, 204, 204, 53, - 57, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 79, 204, 204, 204, 80, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 156, 204, 204, - - 204, 204, 204, 204, 204, 172, 204, 177, 204, 204, - 204, 204, 169, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 60, 204, 204, 204, 204, 204, 204, 204, 204, 78, - 81, 204, 204, 204, 96, 204, 204, 204, 204, 204, - 100, 204, 107, 204, 204, 120, 204, 124, 125, 204, - 204, 128, 204, 204, 204, 133, 134, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, - 159, 204, 204, 158, 204, 204, 204, 204, 204, 181, - 204, 204, 204, 204, 204, 204, 204, 204, 33, 204, - - 204, 204, 204, 51, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 84, 204, 204, 204, 204, 204, - 99, 98, 204, 204, 111, 196, 204, 204, 204, 131, - 204, 204, 204, 204, 204, 204, 204, 146, 148, 204, - 204, 204, 204, 160, 204, 161, 179, 175, 204, 204, - 204, 182, 204, 204, 204, 204, 189, 204, 195, 204, - 204, 62, 204, 52, 59, 204, 204, 204, 68, 204, - 204, 204, 204, 91, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 138, 204, 204, 144, 204, 204, - 204, 153, 204, 204, 76, 204, 204, 174, 204, 204, - - 204, 204, 204, 204, 204, 47, 204, 61, 50, 204, - 204, 204, 204, 204, 73, 204, 204, 204, 204, 204, - 204, 197, 204, 204, 204, 139, 204, 204, 145, 204, - 204, 204, 204, 176, 204, 204, 193, 204, 187, 204, - 204, 204, 204, 204, 204, 70, 71, 204, 204, 204, - 204, 204, 204, 204, 204, 130, 204, 204, 204, 154, - 204, 162, 204, 204, 204, 204, 204, 204, 204, 204, - 204, 204, 204, 204, 204, 204, 204, 122, 204, 204, - 204, 204, 204, 204, 204, 188, 204, 204, 56, 64, - 204, 69, 204, 204, 204, 204, 204, 204, 127, 204, - - 204, 147, 157, 171, 185, 204, 204, 204, 204, 92, - 204, 204, 204, 204, 204, 142, 204, 204, 37, 204, - 67, 204, 204, 204, 204, 204, 204, 194, 204, 204, - 204, 204, 204, 204, 143, 204, 101, 102, 103, 104, - 204, 204, 204, 204, 112, 65, 0 + 0, 0, 209, 207, 1, 1, 207, 5, 207, 6, + 207, 207, 207, 207, 207, 202, 21, 2, 207, 16, + 207, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 207, 28, 24, 19, 25, 17, + 26, 18, 0, 204, 3, 4, 20, 203, 202, 0, + 29, 27, 30, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + + 206, 206, 206, 206, 111, 110, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 136, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 184, 185, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 23, 22, 0, 203, 0, 0, + 205, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 55, 66, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 77, 206, + + 206, 206, 206, 206, 206, 206, 206, 96, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 118, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 165, 206, 206, + 206, 206, 206, 171, 206, 206, 206, 206, 193, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 0, + 204, 0, 0, 203, 206, 32, 206, 206, 206, 206, + 206, 206, 38, 40, 206, 206, 206, 206, 63, 206, + + 48, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 54, 206, 206, 206, 206, 206, 206, 75, 206, 80, + 206, 206, 206, 206, 206, 87, 206, 89, 206, 206, + 91, 206, 206, 95, 206, 206, 206, 206, 206, 206, + 206, 106, 107, 206, 206, 206, 206, 206, 206, 206, + 206, 116, 117, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 153, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 181, 166, 206, 206, 206, 206, 164, 206, 206, 206, + + 206, 206, 206, 206, 206, 188, 192, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 10, 15, 9, 8, + 206, 12, 14, 0, 203, 31, 206, 206, 36, 206, + 206, 206, 42, 206, 44, 206, 206, 206, 206, 206, + 206, 206, 58, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 84, 86, 206, 206, + 206, 90, 206, 206, 94, 206, 206, 206, 206, 206, + 206, 206, 206, 109, 206, 206, 114, 206, 206, 206, + 119, 206, 206, 206, 122, 206, 206, 206, 206, 206, + 130, 206, 133, 206, 206, 206, 137, 206, 138, 206, + + 206, 206, 206, 206, 206, 206, 206, 206, 206, 151, + 152, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 169, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 194, 206, 206, 206, 206, 200, + 206, 11, 206, 13, 206, 34, 206, 35, 39, 41, + 206, 45, 206, 206, 206, 49, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 72, 74, + 206, 206, 83, 206, 88, 206, 206, 206, 206, 206, + 206, 98, 206, 206, 206, 206, 206, 206, 206, 120, + 115, 206, 206, 206, 206, 127, 206, 124, 206, 206, + + 206, 206, 206, 206, 142, 206, 141, 206, 206, 206, + 206, 206, 156, 206, 150, 206, 206, 206, 206, 206, + 206, 206, 167, 168, 206, 174, 206, 179, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 201, 7, 206, 206, 43, 46, 206, + 206, 206, 206, 206, 206, 53, 57, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 79, 206, 206, 206, + 81, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + + 206, 206, 206, 157, 206, 206, 206, 206, 206, 206, + 206, 173, 206, 178, 206, 206, 206, 206, 170, 206, + 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 60, 206, 206, + 206, 206, 206, 206, 206, 206, 78, 82, 206, 206, + 206, 97, 206, 206, 206, 206, 206, 101, 206, 108, + 206, 206, 121, 206, 125, 126, 206, 206, 129, 206, + 206, 206, 134, 135, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 206, 160, 206, 206, + 159, 206, 206, 206, 206, 206, 182, 206, 206, 206, + + 206, 206, 206, 206, 206, 206, 33, 206, 206, 206, + 206, 51, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 85, 206, 206, 206, 206, 206, 100, 99, + 206, 206, 112, 198, 206, 206, 206, 132, 206, 206, + 206, 206, 206, 206, 206, 147, 149, 206, 206, 206, + 206, 161, 206, 162, 180, 176, 206, 206, 206, 183, + 186, 206, 206, 206, 206, 191, 206, 197, 206, 206, + 62, 206, 52, 59, 206, 206, 206, 68, 206, 206, + 206, 206, 92, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 139, 206, 206, 145, 206, 206, 206, + + 154, 206, 206, 76, 206, 206, 175, 206, 206, 206, + 206, 206, 206, 206, 47, 206, 61, 50, 206, 206, + 206, 206, 206, 73, 206, 206, 206, 206, 206, 206, + 199, 206, 206, 206, 140, 206, 206, 146, 206, 206, + 206, 206, 177, 206, 206, 195, 206, 189, 206, 206, + 206, 206, 206, 206, 70, 71, 206, 206, 206, 206, + 206, 206, 206, 206, 131, 206, 206, 206, 155, 206, + 163, 206, 206, 206, 206, 206, 206, 206, 206, 206, + 206, 206, 206, 206, 206, 206, 123, 206, 206, 206, + 206, 206, 206, 206, 190, 206, 206, 56, 64, 206, + + 69, 206, 206, 206, 206, 206, 206, 128, 206, 206, + 148, 158, 172, 187, 206, 206, 206, 206, 93, 206, + 206, 206, 206, 206, 143, 206, 206, 37, 206, 67, + 206, 206, 206, 206, 206, 206, 196, 206, 206, 206, + 206, 206, 206, 144, 206, 102, 103, 104, 105, 206, + 206, 206, 206, 113, 65, 0 } ; static yyconst flex_int32_t yy_ec[256] = @@ -552,245 +553,247 @@ static yyconst flex_int32_t yy_meta[74] = 2, 2, 1 } ; -static yyconst flex_int16_t yy_base[1049] = +static yyconst flex_int16_t yy_base[1058] = { 0, - 0, 0, 1180, 1181, 1181, 1181, 1158, 1181, 1172, 1181, - 1156, 65, 66, 64, 76, 78, 1181, 1181, 1155, 1154, - 1153, 49, 49, 56, 69, 64, 79, 84, 83, 96, - 0, 1113, 99, 110, 105, 81, 118, 1105, 116, 134, - 172, 142, 1110, 1118, 1096, 1181, 1181, 1181, 1181, 1181, - 1181, 1181, 1157, 195, 1181, 1181, 1181, 200, 215, 240, - 1181, 1181, 1181, 0, 1106, 1105, 1117, 1111, 1107, 1112, - 1105, 1112, 1097, 37, 1091, 84, 1101, 1108, 1091, 179, - 1087, 1101, 1088, 127, 1093, 1102, 1091, 1097, 1083, 1096, - 103, 1096, 206, 1083, 1082, 1078, 1081, 1099, 1073, 1073, - - 1086, 24, 1074, 1093, 0, 1068, 1072, 1061, 107, 134, - 109, 1100, 1080, 133, 1078, 1069, 1058, 1062, 1073, 1073, - 1059, 1058, 1050, 0, 158, 163, 1064, 1071, 1058, 193, - 196, 1059, 1068, 1049, 1053, 1053, 1051, 210, 1047, 1046, - 1045, 210, 0, 0, 1073, 1047, 1036, 194, 1057, 1053, - 1041, 1046, 1043, 1031, 1181, 1181, 268, 273, 282, 288, - 293, 1035, 1033, 1035, 1040, 1047, 286, 1034, 1033, 1034, - 1025, 1034, 1029, 1030, 1028, 1028, 1021, 1034, 100, 1022, - 67, 1018, 1010, 1025, 0, 1031, 1014, 1021, 1024, 1023, - 1026, 1004, 1016, 244, 1010, 1012, 214, 0, 1005, 1003, - - 1009, 1014, 1014, 1024, 1002, 1011, 0, 1011, 1030, 285, - 1004, 1006, 1005, 995, 994, 1027, 1001, 986, 999, 996, - 997, 996, 981, 1032, 993, 997, 979, 981, 986, 973, - 987, 1003, 988, 978, 983, 986, 977, 967, 971, 976, - 969, 980, 967, 975, 974, 252, 968, 962, 955, 969, - 972, 959, 966, 959, 295, 947, 960, 953, 961, 956, - 955, 944, 309, 956, 949, 957, 979, 950, 938, 955, - 954, 941, 948, 947, 938, 930, 288, 301, 344, 353, - 358, 363, 930, 0, 929, 934, 928, 931, 935, 942, - 0, 974, 932, 931, 934, 934, 0, 917, 0, 935, - - 924, 917, 921, 915, 922, 281, 926, 939, 0, 909, - 922, 913, 912, 905, 904, 0, 907, 907, 914, 902, - 909, 898, 0, 896, 0, 911, 934, 0, 908, 895, - 0, 892, 910, 896, 888, 888, 905, 925, 0, 0, - 893, 884, 909, 884, 882, 882, 879, 886, 0, 0, - 930, 878, 253, 880, 876, 916, 880, 909, 875, 870, - 886, 869, 873, 870, 874, 877, 872, 861, 862, 859, - 282, 0, 865, 859, 862, 871, 856, 855, 852, 866, - 865, 863, 859, 846, 848, 863, 844, 0, 0, 843, - 844, 285, 847, 0, 333, 850, 841, 852, 843, 854, - - 849, 865, 0, 0, 876, 827, 839, 831, 842, 830, - 839, 833, 0, 0, 833, 0, 838, 831, 0, 369, - 380, 0, 853, 835, 841, 820, 824, 823, 0, 822, - 0, 817, 824, 821, 828, 825, 824, 814, 832, 813, - 820, 804, 814, 807, 816, 807, 814, 813, 812, 811, - 257, 798, 0, 0, 810, 795, 808, 0, 788, 799, - 0, 800, 305, 787, 795, 789, 794, 781, 789, 0, - 811, 783, 0, 782, 791, 780, 0, 819, 795, 786, - 0, 770, 782, 778, 774, 786, 0, 787, 0, 783, - 783, 783, 0, 772, 0, 790, 777, 765, 779, 762, - - 774, 777, 764, 758, 770, 0, 0, 787, 772, 760, - 767, 753, 752, 760, 762, 761, 0, 746, 745, 749, - 747, 748, 755, 133, 752, 755, 738, 742, 736, 0, - 766, 165, 744, 774, 0, 746, 0, 743, 0, 744, - 0, 739, 0, 0, 779, 741, 0, 732, 733, 724, - 0, 729, 730, 739, 734, 715, 724, 723, 716, 739, - 714, 362, 715, 0, 0, 183, 722, 0, 721, 0, - 724, 719, 726, 712, 368, 749, 0, 722, 714, 702, - 716, 713, 729, 713, 0, 0, 712, 715, 702, 689, - 0, 706, 0, 698, 706, 366, 691, 700, 707, 0, - - 692, 0, 697, 356, 696, 716, 684, 0, 697, 0, - 700, 687, 697, 693, 678, 687, 690, 0, 0, 688, - 0, 684, 0, 688, 685, 689, 678, 707, 682, 669, - 681, 665, 678, 361, 681, 668, 679, 0, 0, 661, - 659, 0, 0, 670, 683, 670, 671, 659, 670, 0, - 0, 667, 669, 660, 654, 688, 652, 645, 645, 662, - 0, 644, 658, 659, 0, 641, 639, 644, 671, 666, - 659, 648, 639, 646, 647, 625, 661, 644, 627, 627, - 634, 638, 628, 629, 629, 636, 618, 620, 633, 624, - 30, 379, 48, 46, 58, 196, 219, 0, 208, 276, - - 283, 280, 298, 295, 300, 0, 351, 0, 348, 341, - 360, 345, 0, 339, 359, 349, 357, 351, 359, 355, - 370, 358, 370, 371, 404, 368, 367, 380, 379, 376, - 0, 369, 375, 375, 382, 380, 382, 378, 377, 0, - 0, 385, 380, 391, 0, 411, 412, 425, 387, 398, - 0, 386, 0, 431, 389, 0, 404, 0, 0, 393, - 417, 0, 393, 400, 405, 0, 0, 410, 412, 415, - 404, 406, 401, 416, 417, 405, 436, 406, 421, 410, - 0, 409, 422, 0, 425, 408, 423, 430, 420, 0, - 424, 427, 423, 437, 430, 435, 463, 437, 0, 453, - - 430, 433, 437, 0, 423, 443, 444, 437, 437, 435, - 435, 452, 446, 451, 0, 439, 437, 466, 467, 478, - 0, 0, 443, 468, 0, 480, 456, 447, 458, 0, - 465, 452, 466, 460, 483, 466, 469, 0, 0, 467, - 471, 490, 474, 0, 470, 0, 0, 0, 459, 476, - 470, 0, 481, 467, 481, 467, 0, 473, 0, 473, - 466, 0, 472, 0, 0, 473, 474, 482, 489, 476, - 492, 485, 495, 0, 495, 501, 502, 503, 503, 521, - 493, 488, 491, 495, 0, 505, 514, 0, 507, 502, - 497, 0, 497, 515, 0, 503, 513, 0, 530, 500, - - 497, 527, 518, 511, 506, 0, 507, 0, 0, 513, - 525, 528, 513, 524, 0, 541, 536, 537, 539, 535, - 548, 0, 531, 531, 528, 0, 537, 521, 0, 543, - 537, 523, 535, 0, 548, 531, 0, 534, 0, 534, - 544, 545, 548, 537, 544, 0, 0, 557, 579, 580, - 581, 551, 574, 552, 552, 0, 549, 570, 557, 0, - 564, 0, 558, 566, 563, 554, 560, 572, 552, 563, - 559, 560, 587, 588, 589, 578, 584, 0, 578, 567, - 582, 570, 572, 585, 574, 0, 592, 581, 0, 606, - 579, 0, 589, 604, 605, 606, 612, 608, 0, 585, - - 587, 0, 0, 0, 0, 592, 588, 593, 584, 0, - 625, 626, 627, 611, 635, 0, 595, 596, 0, 633, - 0, 627, 628, 629, 608, 638, 604, 0, 609, 635, - 636, 637, 622, 648, 0, 618, 0, 0, 0, 0, - 642, 626, 652, 615, 0, 0, 1181, 679 + 0, 0, 1189, 1190, 1190, 1190, 1167, 1190, 1181, 1190, + 1165, 65, 66, 64, 76, 78, 1190, 1190, 1164, 1163, + 1162, 49, 49, 56, 69, 64, 79, 84, 83, 96, + 0, 1122, 99, 110, 105, 81, 118, 1114, 116, 134, + 172, 142, 1119, 1127, 1105, 1190, 1190, 1190, 1190, 1190, + 1190, 1190, 1166, 195, 1190, 1190, 1190, 200, 215, 240, + 1190, 1190, 1190, 0, 1115, 1114, 1126, 1120, 1116, 1121, + 1114, 1121, 1106, 37, 1100, 84, 1110, 1117, 1100, 179, + 1096, 1110, 1097, 127, 1102, 1111, 94, 1107, 1093, 1106, + 202, 1106, 211, 1093, 1092, 1088, 1091, 1109, 1083, 1083, + + 1096, 24, 1084, 1103, 0, 1078, 1082, 1071, 101, 134, + 109, 1110, 1090, 133, 1088, 1079, 1068, 1072, 1083, 1083, + 1069, 1068, 1060, 0, 158, 109, 1074, 1081, 1068, 193, + 152, 1069, 1078, 1059, 1063, 1063, 1061, 215, 1057, 1056, + 1055, 206, 0, 0, 1083, 1057, 207, 194, 1068, 1064, + 1052, 1057, 1054, 1042, 1190, 1190, 273, 278, 287, 293, + 298, 1046, 1044, 1046, 1051, 1058, 291, 1045, 1044, 1045, + 1036, 1045, 1040, 1041, 1039, 1039, 1032, 1045, 187, 1033, + 67, 1029, 1021, 1036, 0, 1042, 1025, 1032, 1035, 1034, + 1037, 1015, 1027, 1030, 247, 1020, 1022, 219, 0, 1015, + + 1013, 1019, 1024, 1024, 1034, 1012, 1021, 0, 1021, 1040, + 290, 1014, 1016, 1015, 1005, 1004, 1037, 1011, 996, 1009, + 1006, 1007, 1006, 991, 1042, 1003, 1007, 989, 991, 996, + 983, 997, 1013, 998, 988, 993, 996, 987, 977, 981, + 986, 979, 990, 977, 985, 984, 213, 978, 972, 965, + 979, 982, 969, 976, 969, 299, 957, 970, 963, 971, + 966, 965, 954, 313, 966, 959, 967, 989, 960, 948, + 947, 964, 963, 950, 957, 956, 947, 939, 292, 305, + 348, 357, 362, 367, 939, 0, 938, 943, 937, 940, + 944, 951, 0, 983, 941, 940, 943, 943, 0, 926, + + 0, 944, 933, 926, 930, 924, 931, 267, 935, 948, + 0, 918, 931, 922, 921, 914, 913, 0, 916, 0, + 916, 923, 911, 918, 907, 0, 905, 0, 920, 943, + 0, 917, 904, 0, 901, 919, 905, 897, 897, 914, + 934, 0, 0, 902, 893, 918, 893, 891, 891, 888, + 895, 0, 0, 939, 887, 258, 889, 885, 925, 889, + 918, 884, 879, 895, 878, 882, 879, 883, 886, 881, + 870, 871, 868, 281, 0, 874, 868, 871, 880, 865, + 864, 861, 875, 874, 872, 868, 855, 857, 872, 853, + 0, 0, 852, 853, 283, 856, 0, 300, 859, 850, + + 861, 852, 863, 858, 874, 0, 0, 874, 884, 835, + 847, 839, 850, 838, 847, 841, 0, 0, 841, 0, + 846, 839, 0, 372, 377, 0, 861, 843, 849, 828, + 832, 831, 0, 830, 0, 825, 832, 829, 836, 833, + 832, 822, 840, 821, 828, 812, 822, 815, 824, 815, + 822, 821, 820, 819, 330, 806, 0, 0, 818, 803, + 816, 0, 796, 807, 0, 808, 362, 795, 803, 797, + 802, 789, 797, 0, 819, 791, 0, 790, 799, 788, + 0, 827, 803, 794, 0, 778, 790, 786, 782, 794, + 0, 795, 0, 791, 791, 791, 0, 780, 0, 798, + + 785, 773, 787, 770, 782, 785, 772, 766, 778, 0, + 0, 795, 780, 768, 775, 761, 760, 768, 770, 769, + 0, 754, 753, 757, 755, 756, 763, 133, 760, 763, + 746, 750, 758, 743, 0, 773, 286, 751, 781, 0, + 753, 0, 750, 0, 751, 0, 746, 0, 0, 786, + 748, 0, 739, 740, 731, 0, 736, 737, 746, 741, + 722, 731, 730, 723, 746, 721, 373, 722, 0, 0, + 347, 729, 0, 728, 0, 731, 726, 733, 719, 379, + 756, 0, 729, 721, 709, 723, 720, 736, 720, 0, + 0, 719, 722, 709, 696, 0, 713, 0, 705, 713, + + 306, 698, 707, 714, 0, 699, 0, 704, 367, 703, + 723, 691, 0, 704, 0, 707, 694, 704, 700, 685, + 694, 697, 0, 0, 695, 0, 691, 0, 695, 692, + 696, 685, 714, 689, 676, 688, 670, 671, 684, 365, + 687, 674, 685, 0, 0, 667, 665, 0, 0, 676, + 689, 676, 677, 665, 676, 0, 0, 673, 675, 666, + 660, 694, 658, 651, 651, 668, 0, 650, 664, 665, + 0, 647, 645, 650, 677, 672, 665, 654, 645, 652, + 653, 631, 667, 650, 633, 633, 640, 644, 634, 635, + 635, 642, 624, 21, 46, 48, 71, 390, 127, 161, + + 155, 183, 210, 0, 211, 273, 300, 294, 312, 345, + 342, 0, 357, 0, 352, 345, 364, 351, 0, 346, + 366, 367, 356, 363, 357, 367, 363, 378, 367, 378, + 379, 411, 375, 373, 387, 386, 384, 0, 377, 383, + 383, 390, 387, 389, 385, 385, 0, 0, 392, 387, + 398, 0, 419, 420, 433, 395, 406, 0, 394, 0, + 439, 397, 0, 412, 0, 0, 401, 425, 0, 401, + 408, 413, 0, 0, 418, 420, 423, 412, 414, 409, + 424, 425, 413, 444, 414, 429, 418, 0, 417, 430, + 0, 433, 416, 431, 438, 428, 0, 432, 433, 436, + + 432, 446, 439, 444, 472, 446, 0, 462, 439, 442, + 446, 0, 432, 452, 453, 446, 446, 444, 444, 461, + 455, 460, 0, 448, 446, 475, 476, 487, 0, 0, + 452, 477, 0, 489, 465, 456, 467, 0, 474, 461, + 475, 469, 492, 475, 478, 0, 0, 476, 480, 499, + 483, 0, 479, 0, 0, 0, 468, 485, 479, 0, + 0, 490, 476, 490, 476, 0, 482, 0, 482, 475, + 0, 481, 0, 0, 482, 483, 491, 498, 485, 501, + 494, 504, 0, 504, 510, 511, 512, 512, 530, 502, + 497, 500, 504, 0, 514, 523, 0, 516, 511, 506, + + 0, 506, 524, 0, 512, 522, 0, 539, 509, 506, + 536, 527, 520, 515, 0, 516, 0, 0, 522, 534, + 537, 522, 533, 0, 550, 545, 546, 548, 544, 557, + 0, 540, 540, 537, 0, 546, 530, 0, 552, 546, + 532, 544, 0, 557, 540, 0, 543, 0, 543, 553, + 554, 557, 546, 553, 0, 0, 566, 588, 589, 590, + 560, 583, 561, 561, 0, 558, 579, 566, 0, 573, + 0, 567, 575, 572, 563, 569, 581, 561, 572, 568, + 569, 596, 597, 598, 587, 593, 0, 587, 576, 591, + 579, 581, 594, 583, 0, 601, 590, 0, 615, 588, + + 0, 598, 613, 614, 615, 621, 617, 0, 594, 596, + 0, 0, 0, 0, 601, 597, 602, 593, 0, 634, + 635, 636, 620, 644, 0, 604, 605, 0, 642, 0, + 636, 637, 638, 617, 647, 613, 0, 618, 644, 645, + 646, 631, 657, 0, 627, 0, 0, 0, 0, 651, + 635, 661, 624, 0, 0, 1190, 688 } ; -static yyconst flex_int16_t yy_def[1049] = +static yyconst flex_int16_t yy_def[1058] = { 0, - 1047, 1, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1047, 1047, 1047, - 1047, 1047, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1047, - 1047, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, 1048, - 1048, 1048, 1048, 1048, 1048, 1048, 0, 1047 + 1056, 1, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1056, + 1056, 1056, 1056, 1056, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1056, 1056, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, + 1057, 1057, 1057, 1057, 1057, 0, 1056 } ; -static yyconst flex_int16_t yy_nxt[1255] = +static yyconst flex_int16_t yy_nxt[1264] = { 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 16, 16, 16, 16, 17, 18, 19, @@ -800,48 +803,48 @@ static yyconst flex_int16_t yy_nxt[1255] = 31, 31, 31, 31, 31, 31, 31, 31, 31, 44, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 45, 49, 53, 51, 54, 54, 54, 54, - 54, 213, 214, 55, 768, 50, 52, 56, 58, 73, + 54, 214, 215, 55, 772, 50, 52, 56, 58, 73, 59, 59, 59, 59, 59, 773, 57, 65, 66, 67, 74, 68, 171, 76, 60, 774, 69, 77, 172, 75, - 78, 79, 70, 71, 72, 305, 80, 81, 98, 82, - 84, 87, 83, 88, 85, 775, 92, 89, 306, 60, + 78, 79, 70, 71, 72, 307, 80, 81, 98, 82, + 84, 87, 83, 88, 85, 775, 92, 89, 308, 60, 90, 104, 86, 91, 93, 99, 94, 95, 101, 96, 119, 174, 100, 102, 120, 97, 108, 112, 105, 175, - 109, 302, 116, 103, 110, 106, 117, 113, 197, 111, - 303, 114, 224, 129, 198, 121, 220, 130, 199, 122, - 115, 118, 123, 124, 221, 125, 131, 225, 126, 188, + 109, 193, 116, 103, 110, 106, 117, 113, 194, 111, + 221, 114, 225, 129, 242, 121, 243, 130, 222, 122, + 115, 118, 123, 124, 780, 125, 131, 226, 126, 188, 189, 127, 132, 133, 190, 134, 143, 144, 135, 136, - 626, 228, 137, 222, 627, 138, 139, 229, 223, 140, - - 141, 150, 145, 151, 142, 239, 152, 54, 54, 54, - 54, 54, 158, 158, 158, 158, 158, 634, 241, 146, - 242, 157, 635, 147, 240, 58, 159, 59, 59, 59, - 59, 59, 148, 179, 661, 149, 180, 181, 662, 182, - 183, 60, 246, 184, 270, 247, 157, 776, 160, 160, - 248, 159, 161, 161, 161, 161, 161, 201, 249, 271, - 250, 251, 252, 202, 259, 203, 60, 260, 265, 266, - 777, 318, 778, 261, 319, 204, 278, 278, 322, 323, - 279, 279, 279, 279, 279, 158, 158, 158, 158, 158, - 281, 281, 479, 480, 282, 282, 282, 282, 282, 280, - - 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, - 288, 334, 373, 279, 279, 279, 279, 279, 374, 383, - 335, 566, 567, 498, 280, 336, 289, 290, 337, 779, - 384, 385, 386, 395, 780, 387, 396, 413, 441, 575, - 414, 442, 576, 781, 516, 415, 397, 498, 398, 416, - 517, 417, 418, 782, 783, 419, 279, 279, 279, 279, - 279, 420, 420, 784, 399, 421, 421, 421, 421, 421, - 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, - 519, 421, 421, 421, 421, 421, 657, 520, 686, 693, - 669, 521, 421, 421, 421, 421, 421, 658, 670, 718, - - 785, 769, 659, 786, 770, 687, 787, 788, 789, 790, - 791, 694, 792, 693, 771, 793, 719, 794, 795, 772, - 796, 797, 798, 718, 799, 800, 769, 801, 802, 770, - 803, 804, 805, 806, 807, 808, 809, 810, 771, 811, - 812, 813, 814, 772, 815, 816, 817, 818, 819, 820, - 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, + 631, 229, 137, 223, 632, 138, 139, 230, 224, 140, + + 141, 150, 145, 151, 142, 240, 152, 54, 54, 54, + 54, 54, 158, 158, 158, 158, 158, 252, 253, 146, + 781, 157, 782, 147, 241, 58, 159, 59, 59, 59, + 59, 59, 148, 179, 783, 149, 180, 181, 304, 182, + 183, 60, 247, 184, 272, 248, 157, 305, 160, 160, + 249, 159, 161, 161, 161, 161, 161, 198, 250, 273, + 251, 784, 202, 199, 266, 267, 60, 200, 203, 260, + 204, 270, 261, 376, 321, 785, 271, 322, 262, 377, + 205, 280, 280, 325, 326, 281, 281, 281, 281, 281, + 158, 158, 158, 158, 158, 283, 283, 483, 484, 284, + + 284, 284, 284, 284, 282, 161, 161, 161, 161, 161, + 161, 161, 161, 161, 161, 290, 337, 281, 281, 281, + 281, 281, 502, 386, 445, 338, 786, 446, 692, 282, + 339, 291, 292, 340, 387, 388, 389, 398, 640, 390, + 399, 417, 520, 641, 418, 693, 502, 523, 521, 419, + 400, 787, 401, 420, 524, 421, 422, 788, 525, 423, + 281, 281, 281, 281, 281, 424, 424, 789, 402, 425, + 425, 425, 425, 425, 284, 284, 284, 284, 284, 284, + 284, 284, 284, 284, 425, 425, 425, 425, 425, 425, + 425, 425, 425, 425, 571, 572, 580, 663, 667, 581, + + 699, 675, 668, 725, 790, 791, 792, 793, 664, 676, + 794, 795, 776, 665, 796, 777, 797, 798, 799, 800, + 726, 801, 700, 802, 699, 778, 803, 725, 804, 805, + 779, 806, 807, 808, 809, 810, 811, 776, 812, 813, + 777, 814, 815, 816, 817, 818, 819, 820, 821, 778, + 822, 823, 824, 825, 779, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, @@ -851,88 +854,89 @@ static yyconst flex_int16_t yy_nxt[1255] = 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, - 911, 912, 889, 913, 914, 915, 916, 917, 918, 919, - 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, + 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, + 921, 898, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, - 950, 927, 951, 952, 953, 954, 955, 956, 957, 958, - 959, 960, 938, 961, 962, 963, 964, 965, 966, 967, + 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, + 936, 960, 961, 962, 963, 964, 965, 966, 967, 968, - 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, + 969, 947, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, - 998, 999, 1000, 1001, 1002, 1003, 1004, 981, 1005, 1006, - 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, + 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, + 1008, 1009, 1010, 1011, 1012, 1013, 990, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, - 64, 767, 766, 765, 764, 763, 762, 761, 760, 759, - 758, 757, 756, 755, 754, 753, 752, 751, 750, 749, - - 748, 747, 746, 745, 744, 743, 742, 741, 740, 739, - 738, 737, 736, 735, 734, 733, 732, 731, 730, 729, - 728, 727, 726, 725, 724, 723, 722, 721, 720, 717, - 716, 715, 714, 713, 712, 711, 710, 709, 708, 707, - 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, - 696, 695, 692, 691, 690, 689, 688, 685, 684, 683, - 682, 681, 680, 679, 678, 677, 676, 675, 674, 673, - 672, 671, 668, 667, 666, 665, 664, 663, 660, 656, - 655, 654, 653, 652, 651, 650, 649, 648, 647, 646, - 645, 644, 643, 642, 641, 640, 639, 638, 637, 636, - - 633, 632, 631, 630, 629, 628, 625, 624, 623, 622, - 621, 620, 619, 618, 617, 616, 615, 614, 613, 612, - 611, 610, 609, 608, 607, 606, 605, 604, 603, 602, - 601, 600, 599, 598, 597, 596, 595, 594, 593, 592, - 591, 590, 589, 588, 587, 586, 585, 584, 583, 582, - 581, 580, 579, 578, 577, 574, 573, 572, 571, 570, - 569, 568, 565, 564, 563, 562, 561, 560, 559, 558, - 557, 556, 555, 554, 553, 552, 551, 550, 549, 548, - 547, 546, 545, 544, 543, 542, 541, 540, 539, 538, - 537, 536, 535, 534, 533, 532, 531, 530, 529, 528, - - 527, 526, 525, 524, 523, 522, 518, 515, 514, 513, - 512, 511, 510, 509, 508, 507, 506, 505, 504, 503, - 502, 501, 500, 499, 497, 496, 495, 494, 493, 492, - 491, 490, 489, 488, 487, 486, 485, 484, 483, 482, - 481, 478, 477, 476, 475, 474, 473, 472, 471, 470, - 469, 468, 467, 466, 465, 464, 463, 462, 461, 460, - 459, 458, 457, 456, 455, 454, 453, 452, 451, 450, - 449, 448, 447, 446, 445, 444, 443, 440, 439, 438, - 437, 436, 435, 434, 433, 432, 431, 430, 429, 428, - 427, 426, 425, 424, 423, 422, 412, 411, 410, 409, - - 408, 407, 406, 405, 404, 403, 402, 401, 400, 394, - 393, 392, 391, 390, 389, 388, 382, 381, 380, 379, - 378, 377, 376, 375, 372, 371, 370, 369, 368, 367, - 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, - 356, 355, 354, 353, 352, 351, 350, 349, 348, 347, - 346, 345, 344, 343, 342, 341, 340, 339, 338, 333, - 332, 331, 330, 329, 328, 327, 326, 325, 324, 321, - 320, 317, 316, 315, 314, 313, 312, 311, 310, 309, - 308, 307, 304, 301, 300, 299, 298, 297, 296, 295, - 294, 293, 292, 291, 287, 286, 285, 284, 283, 277, - - 276, 275, 274, 273, 272, 269, 268, 267, 264, 263, - 262, 258, 257, 256, 255, 254, 253, 245, 244, 243, - 238, 237, 236, 235, 234, 233, 232, 231, 230, 227, - 226, 219, 218, 217, 216, 215, 212, 211, 210, 209, - 208, 207, 206, 205, 200, 196, 195, 194, 193, 192, - 191, 187, 186, 185, 178, 177, 176, 173, 170, 169, - 168, 167, 166, 165, 164, 163, 162, 156, 155, 154, - 153, 128, 107, 63, 62, 61, 48, 47, 46, 1047, - 3, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047 + 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 64, + 771, 770, 769, 768, 767, 766, 765, 764, 763, 762, + + 761, 760, 759, 758, 757, 756, 755, 754, 753, 752, + 751, 750, 749, 748, 747, 746, 745, 744, 743, 742, + 741, 740, 739, 738, 737, 736, 735, 734, 733, 732, + 731, 730, 729, 728, 727, 724, 723, 722, 721, 720, + 719, 718, 717, 716, 715, 714, 713, 712, 711, 710, + 709, 708, 707, 706, 705, 704, 703, 702, 701, 698, + 697, 696, 695, 694, 691, 690, 689, 688, 687, 686, + 685, 684, 683, 682, 681, 680, 679, 678, 677, 674, + 673, 672, 671, 670, 669, 666, 662, 661, 660, 659, + 658, 657, 656, 655, 654, 653, 652, 651, 650, 649, + + 648, 647, 646, 645, 644, 643, 642, 639, 638, 637, + 636, 635, 634, 633, 630, 629, 628, 627, 626, 625, + 624, 623, 622, 621, 620, 619, 618, 617, 616, 615, + 614, 613, 612, 611, 610, 609, 608, 607, 606, 605, + 604, 603, 602, 601, 600, 599, 598, 597, 596, 595, + 594, 593, 592, 591, 590, 589, 588, 587, 586, 585, + 584, 583, 582, 579, 578, 577, 576, 575, 574, 573, + 570, 569, 568, 567, 566, 565, 564, 563, 562, 561, + 560, 559, 558, 557, 556, 555, 554, 553, 552, 551, + 550, 549, 548, 547, 546, 545, 544, 543, 542, 541, + + 540, 539, 538, 537, 536, 535, 534, 533, 532, 531, + 530, 529, 528, 527, 526, 522, 519, 518, 517, 516, + 515, 514, 513, 512, 511, 510, 509, 508, 507, 506, + 505, 504, 503, 501, 500, 499, 498, 497, 496, 495, + 494, 493, 492, 491, 490, 489, 488, 487, 486, 485, + 482, 481, 480, 479, 478, 477, 476, 475, 474, 473, + 472, 471, 470, 469, 468, 467, 466, 465, 464, 463, + 462, 461, 460, 459, 458, 457, 456, 455, 454, 453, + 452, 451, 450, 449, 448, 447, 444, 443, 442, 441, + 440, 439, 438, 437, 436, 435, 434, 433, 432, 431, + + 430, 429, 428, 427, 426, 416, 415, 414, 413, 412, + 411, 410, 409, 408, 407, 406, 405, 404, 403, 397, + 396, 395, 394, 393, 392, 391, 385, 384, 383, 382, + 381, 380, 379, 378, 375, 374, 373, 372, 371, 370, + 369, 368, 367, 366, 365, 364, 363, 362, 361, 360, + 359, 358, 357, 356, 355, 354, 353, 352, 351, 350, + 349, 348, 347, 346, 345, 344, 343, 342, 341, 336, + 335, 334, 333, 332, 331, 330, 329, 328, 327, 324, + 323, 320, 319, 318, 317, 316, 315, 314, 313, 312, + 311, 310, 309, 306, 303, 302, 301, 300, 299, 298, + + 297, 296, 295, 294, 293, 289, 288, 287, 286, 285, + 279, 278, 277, 276, 275, 274, 269, 268, 265, 264, + 263, 259, 258, 257, 256, 255, 254, 246, 245, 244, + 239, 238, 237, 236, 235, 234, 233, 232, 231, 228, + 227, 220, 219, 218, 217, 216, 213, 212, 211, 210, + 209, 208, 207, 206, 201, 197, 196, 195, 192, 191, + 187, 186, 185, 178, 177, 176, 173, 170, 169, 168, + 167, 166, 165, 164, 163, 162, 156, 155, 154, 153, + 128, 107, 63, 62, 61, 48, 47, 46, 1056, 3, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056 } ; -static yyconst flex_int16_t yy_chk[1255] = +static yyconst flex_int16_t yy_chk[1264] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -942,136 +946,137 @@ static yyconst flex_int16_t yy_chk[1255] = 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 12, 14, 13, 14, 14, 14, 14, - 14, 102, 102, 15, 691, 12, 13, 15, 16, 23, - 16, 16, 16, 16, 16, 693, 15, 22, 22, 22, + 14, 102, 102, 15, 694, 12, 13, 15, 16, 23, + 16, 16, 16, 16, 16, 695, 15, 22, 22, 22, - 23, 22, 74, 24, 16, 694, 22, 24, 74, 23, + 23, 22, 74, 24, 16, 696, 22, 24, 74, 23, 24, 24, 22, 22, 22, 181, 24, 24, 28, 24, - 25, 26, 24, 26, 25, 695, 27, 26, 181, 16, + 25, 26, 24, 26, 25, 697, 27, 26, 181, 16, 26, 30, 25, 26, 27, 28, 27, 27, 29, 27, 36, 76, 28, 29, 36, 27, 33, 34, 30, 76, - 33, 179, 35, 29, 33, 30, 35, 34, 91, 33, - 179, 34, 111, 39, 91, 37, 109, 39, 91, 37, - 34, 35, 37, 37, 109, 37, 39, 111, 37, 84, + 33, 87, 35, 29, 33, 30, 35, 34, 87, 33, + 109, 34, 111, 39, 126, 37, 126, 39, 109, 37, + 34, 35, 37, 37, 699, 37, 39, 111, 37, 84, 84, 37, 39, 40, 84, 40, 41, 41, 40, 40, - 524, 114, 40, 110, 524, 40, 40, 114, 110, 40, + 528, 114, 40, 110, 528, 40, 40, 114, 110, 40, 40, 42, 41, 42, 40, 125, 42, 54, 54, 54, - 54, 54, 58, 58, 58, 58, 58, 532, 126, 41, - 126, 54, 532, 41, 125, 59, 58, 59, 59, 59, - 59, 59, 41, 80, 566, 41, 80, 80, 566, 80, - 80, 59, 130, 80, 148, 130, 54, 696, 60, 60, - 130, 58, 60, 60, 60, 60, 60, 93, 130, 148, - 130, 131, 131, 93, 138, 93, 59, 138, 142, 142, - 697, 194, 699, 138, 194, 93, 157, 157, 197, 197, - 157, 157, 157, 157, 157, 158, 158, 158, 158, 158, - 159, 159, 353, 353, 159, 159, 159, 159, 159, 158, - - 160, 160, 160, 160, 160, 161, 161, 161, 161, 161, - 167, 210, 246, 278, 278, 278, 278, 278, 246, 255, - 210, 451, 451, 371, 158, 210, 167, 167, 210, 700, - 255, 255, 255, 263, 701, 255, 263, 277, 306, 463, - 277, 306, 463, 702, 392, 277, 263, 371, 263, 277, - 392, 277, 277, 703, 704, 277, 279, 279, 279, 279, - 279, 280, 280, 705, 263, 280, 280, 280, 280, 280, - 281, 281, 281, 281, 281, 282, 282, 282, 282, 282, - 395, 420, 420, 420, 420, 420, 562, 395, 596, 604, - 575, 395, 421, 421, 421, 421, 421, 562, 575, 634, - - 707, 692, 562, 709, 692, 596, 710, 711, 712, 714, - 715, 604, 716, 604, 692, 717, 634, 718, 719, 692, - 720, 721, 722, 634, 723, 724, 692, 725, 726, 692, - 727, 728, 729, 730, 732, 733, 734, 735, 692, 736, - 737, 738, 739, 692, 742, 743, 744, 746, 747, 748, - 749, 750, 752, 754, 755, 757, 760, 761, 763, 764, - 765, 768, 769, 770, 771, 772, 773, 774, 775, 776, - 777, 778, 779, 780, 782, 783, 785, 786, 787, 788, - 789, 791, 792, 793, 794, 795, 796, 797, 798, 800, - 801, 802, 803, 805, 806, 807, 808, 809, 810, 811, - - 812, 813, 814, 816, 817, 818, 819, 820, 823, 824, - 826, 827, 828, 829, 831, 832, 833, 834, 835, 836, - 837, 840, 841, 842, 843, 845, 849, 850, 851, 853, - 854, 855, 856, 858, 860, 861, 863, 866, 867, 868, - 869, 870, 835, 871, 872, 873, 875, 876, 877, 878, - 879, 880, 881, 882, 883, 884, 886, 887, 889, 890, - 891, 893, 894, 896, 897, 899, 900, 901, 902, 903, - 904, 905, 907, 910, 911, 912, 913, 914, 916, 917, - 918, 887, 919, 920, 921, 923, 924, 925, 927, 928, - 930, 931, 902, 932, 933, 935, 936, 938, 940, 941, - - 942, 943, 944, 945, 948, 949, 950, 951, 952, 953, - 954, 955, 957, 958, 959, 961, 963, 964, 965, 966, - 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, - 977, 979, 980, 981, 982, 983, 984, 958, 985, 987, - 988, 990, 991, 993, 994, 995, 996, 997, 998, 1000, - 1001, 1006, 1007, 1008, 1009, 1011, 1012, 1013, 1014, 1015, - 1017, 1018, 1020, 1022, 1023, 1024, 1025, 1026, 1027, 1029, - 1030, 1031, 1032, 1033, 1034, 1036, 1041, 1042, 1043, 1044, - 1048, 690, 689, 688, 687, 686, 685, 684, 683, 682, - 681, 680, 679, 678, 677, 676, 675, 674, 673, 672, - - 671, 670, 669, 668, 667, 666, 664, 663, 662, 660, - 659, 658, 657, 656, 655, 654, 653, 652, 649, 648, - 647, 646, 645, 644, 641, 640, 637, 636, 635, 633, - 632, 631, 630, 629, 628, 627, 626, 625, 624, 622, - 620, 617, 616, 615, 614, 613, 612, 611, 609, 607, - 606, 605, 603, 601, 599, 598, 597, 595, 594, 592, - 590, 589, 588, 587, 584, 583, 582, 581, 580, 579, - 578, 576, 574, 573, 572, 571, 569, 567, 563, 561, - 560, 559, 558, 557, 556, 555, 554, 553, 552, 550, - 549, 548, 546, 545, 542, 540, 538, 536, 534, 533, - - 531, 529, 528, 527, 526, 525, 523, 522, 521, 520, - 519, 518, 516, 515, 514, 513, 512, 511, 510, 509, - 508, 505, 504, 503, 502, 501, 500, 499, 498, 497, - 496, 494, 492, 491, 490, 488, 486, 485, 484, 483, - 482, 480, 479, 478, 476, 475, 474, 472, 471, 469, - 468, 467, 466, 465, 464, 462, 460, 459, 457, 456, - 455, 452, 450, 449, 448, 447, 446, 445, 444, 443, - 442, 441, 440, 439, 438, 437, 436, 435, 434, 433, - 432, 430, 428, 427, 426, 425, 424, 423, 418, 417, - 415, 412, 411, 410, 409, 408, 407, 406, 405, 402, - - 401, 400, 399, 398, 397, 396, 393, 391, 390, 387, - 386, 385, 384, 383, 382, 381, 380, 379, 378, 377, - 376, 375, 374, 373, 370, 369, 368, 367, 366, 365, - 364, 363, 362, 361, 360, 359, 358, 357, 356, 355, - 354, 352, 351, 348, 347, 346, 345, 344, 343, 342, - 341, 338, 337, 336, 335, 334, 333, 332, 330, 329, - 327, 326, 324, 322, 321, 320, 319, 318, 317, 315, - 314, 313, 312, 311, 310, 308, 307, 305, 304, 303, - 302, 301, 300, 298, 296, 295, 294, 293, 292, 290, - 289, 288, 287, 286, 285, 283, 276, 275, 274, 273, - - 272, 271, 270, 269, 268, 267, 266, 265, 264, 262, - 261, 260, 259, 258, 257, 256, 254, 253, 252, 251, - 250, 249, 248, 247, 245, 244, 243, 242, 241, 240, - 239, 238, 237, 236, 235, 234, 233, 232, 231, 230, - 229, 228, 227, 226, 225, 224, 223, 222, 221, 220, - 219, 218, 217, 216, 215, 214, 213, 212, 211, 209, - 208, 206, 205, 204, 203, 202, 201, 200, 199, 196, - 195, 193, 192, 191, 190, 189, 188, 187, 186, 184, - 183, 182, 180, 178, 177, 176, 175, 174, 173, 172, - 171, 170, 169, 168, 166, 165, 164, 163, 162, 154, - - 153, 152, 151, 150, 149, 147, 146, 145, 141, 140, + 54, 54, 58, 58, 58, 58, 58, 131, 131, 41, + 700, 54, 701, 41, 125, 59, 58, 59, 59, 59, + 59, 59, 41, 80, 702, 41, 80, 80, 179, 80, + 80, 59, 130, 80, 148, 130, 54, 179, 60, 60, + 130, 58, 60, 60, 60, 60, 60, 91, 130, 148, + 130, 703, 93, 91, 142, 142, 59, 91, 93, 138, + 93, 147, 138, 247, 195, 705, 147, 195, 138, 247, + 93, 157, 157, 198, 198, 157, 157, 157, 157, 157, + 158, 158, 158, 158, 158, 159, 159, 356, 356, 159, + + 159, 159, 159, 159, 158, 160, 160, 160, 160, 160, + 161, 161, 161, 161, 161, 167, 211, 280, 280, 280, + 280, 280, 374, 256, 308, 211, 706, 308, 601, 158, + 211, 167, 167, 211, 256, 256, 256, 264, 537, 256, + 264, 279, 395, 537, 279, 601, 374, 398, 395, 279, + 264, 707, 264, 279, 398, 279, 279, 708, 398, 279, + 281, 281, 281, 281, 281, 282, 282, 709, 264, 282, + 282, 282, 282, 282, 283, 283, 283, 283, 283, 284, + 284, 284, 284, 284, 424, 424, 424, 424, 424, 425, + 425, 425, 425, 425, 455, 455, 467, 567, 571, 467, + + 609, 580, 571, 640, 710, 711, 713, 715, 567, 580, + 716, 717, 698, 567, 718, 698, 720, 721, 722, 723, + 640, 724, 609, 725, 609, 698, 726, 640, 727, 728, + 698, 729, 730, 731, 732, 733, 734, 698, 735, 736, + 698, 737, 739, 740, 741, 742, 743, 744, 745, 698, + 746, 749, 750, 751, 698, 753, 754, 755, 756, 757, + 759, 761, 762, 764, 767, 768, 770, 771, 772, 775, + 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, + 786, 787, 789, 790, 792, 793, 794, 795, 796, 798, + 799, 800, 801, 802, 803, 804, 805, 806, 808, 809, + + 810, 811, 813, 814, 815, 816, 817, 818, 819, 820, + 821, 822, 824, 825, 826, 827, 828, 831, 832, 834, + 835, 836, 837, 839, 840, 841, 842, 843, 844, 845, + 848, 849, 850, 851, 853, 857, 858, 859, 862, 863, + 864, 865, 867, 869, 870, 872, 875, 876, 877, 878, + 879, 843, 880, 881, 882, 884, 885, 886, 887, 888, + 889, 890, 891, 892, 893, 895, 896, 898, 899, 900, + 902, 903, 905, 906, 908, 909, 910, 911, 912, 913, + 914, 916, 919, 920, 921, 922, 923, 925, 926, 927, + 896, 928, 929, 930, 932, 933, 934, 936, 937, 939, + + 940, 911, 941, 942, 944, 945, 947, 949, 950, 951, + 952, 953, 954, 957, 958, 959, 960, 961, 962, 963, + 964, 966, 967, 968, 970, 972, 973, 974, 975, 976, + 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, + 988, 989, 990, 991, 992, 993, 967, 994, 996, 997, + 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1009, 1010, + 1015, 1016, 1017, 1018, 1020, 1021, 1022, 1023, 1024, 1026, + 1027, 1029, 1031, 1032, 1033, 1034, 1035, 1036, 1038, 1039, + 1040, 1041, 1042, 1043, 1045, 1050, 1051, 1052, 1053, 1057, + 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, + + 683, 682, 681, 680, 679, 678, 677, 676, 675, 674, + 673, 672, 670, 669, 668, 666, 665, 664, 663, 662, + 661, 660, 659, 658, 655, 654, 653, 652, 651, 650, + 647, 646, 643, 642, 641, 639, 638, 637, 636, 635, + 634, 633, 632, 631, 630, 629, 627, 625, 622, 621, + 620, 619, 618, 617, 616, 614, 612, 611, 610, 608, + 606, 604, 603, 602, 600, 599, 597, 595, 594, 593, + 592, 589, 588, 587, 586, 585, 584, 583, 581, 579, + 578, 577, 576, 574, 572, 568, 566, 565, 564, 563, + 562, 561, 560, 559, 558, 557, 555, 554, 553, 551, + + 550, 547, 545, 543, 541, 539, 538, 536, 534, 533, + 532, 531, 530, 529, 527, 526, 525, 524, 523, 522, + 520, 519, 518, 517, 516, 515, 514, 513, 512, 509, + 508, 507, 506, 505, 504, 503, 502, 501, 500, 498, + 496, 495, 494, 492, 490, 489, 488, 487, 486, 484, + 483, 482, 480, 479, 478, 476, 475, 473, 472, 471, + 470, 469, 468, 466, 464, 463, 461, 460, 459, 456, + 454, 453, 452, 451, 450, 449, 448, 447, 446, 445, + 444, 443, 442, 441, 440, 439, 438, 437, 436, 434, + 432, 431, 430, 429, 428, 427, 422, 421, 419, 416, + + 415, 414, 413, 412, 411, 410, 409, 408, 405, 404, + 403, 402, 401, 400, 399, 396, 394, 393, 390, 389, + 388, 387, 386, 385, 384, 383, 382, 381, 380, 379, + 378, 377, 376, 373, 372, 371, 370, 369, 368, 367, + 366, 365, 364, 363, 362, 361, 360, 359, 358, 357, + 355, 354, 351, 350, 349, 348, 347, 346, 345, 344, + 341, 340, 339, 338, 337, 336, 335, 333, 332, 330, + 329, 327, 325, 324, 323, 322, 321, 319, 317, 316, + 315, 314, 313, 312, 310, 309, 307, 306, 305, 304, + 303, 302, 300, 298, 297, 296, 295, 294, 292, 291, + + 290, 289, 288, 287, 285, 278, 277, 276, 275, 274, + 273, 272, 271, 270, 269, 268, 267, 266, 265, 263, + 262, 261, 260, 259, 258, 257, 255, 254, 253, 252, + 251, 250, 249, 248, 246, 245, 244, 243, 242, 241, + 240, 239, 238, 237, 236, 235, 234, 233, 232, 231, + 230, 229, 228, 227, 226, 225, 224, 223, 222, 221, + 220, 219, 218, 217, 216, 215, 214, 213, 212, 210, + 209, 207, 206, 205, 204, 203, 202, 201, 200, 197, + 196, 194, 193, 192, 191, 190, 189, 188, 187, 186, + 184, 183, 182, 180, 178, 177, 176, 175, 174, 173, + + 172, 171, 170, 169, 168, 166, 165, 164, 163, 162, + 154, 153, 152, 151, 150, 149, 146, 145, 141, 140, 139, 137, 136, 135, 134, 133, 132, 129, 128, 127, 123, 122, 121, 120, 119, 118, 117, 116, 115, 113, 112, 108, 107, 106, 104, 103, 101, 100, 99, 98, - 97, 96, 95, 94, 92, 90, 89, 88, 87, 86, - 85, 83, 82, 81, 79, 78, 77, 75, 73, 72, - 71, 70, 69, 68, 67, 66, 65, 53, 45, 44, - 43, 38, 32, 21, 20, 19, 11, 9, 7, 3, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1047, - 1047, 1047, 1047, 1047 + 97, 96, 95, 94, 92, 90, 89, 88, 86, 85, + 83, 82, 81, 79, 78, 77, 75, 73, 72, 71, + 70, 69, 68, 67, 66, 65, 53, 45, 44, 43, + 38, 32, 21, 20, 19, 11, 9, 7, 3, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, + 1056, 1056, 1056 } ; static yy_state_type yy_last_accepting_state; @@ -1151,7 +1156,7 @@ void skipline(void); #define YY_NO_UNISTD_H #endif -#line 1155 "Gmsh.yy.cpp" +#line 1160 "Gmsh.yy.cpp" #define INITIAL 0 @@ -1240,7 +1245,7 @@ static int input (void ); /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ -#define ECHO do { if (fwrite( gmsh_yytext, gmsh_yyleng, 1, gmsh_yyout )) {} } while (0) +#define ECHO fwrite( gmsh_yytext, gmsh_yyleng, 1, gmsh_yyout ) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, @@ -1251,7 +1256,7 @@ static int input (void ); if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ - size_t n; \ + yy_size_t n; \ for ( n = 0; n < max_size && \ (c = getc( gmsh_yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ @@ -1336,7 +1341,7 @@ YY_DECL #line 72 "Gmsh.l" -#line 1340 "Gmsh.yy.cpp" +#line 1345 "Gmsh.yy.cpp" if ( !(yy_init) ) { @@ -1389,13 +1394,13 @@ yy_match: while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1048 ) + if ( yy_current_state >= 1057 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } - while ( yy_base[yy_current_state] != 1181 ); + while ( yy_base[yy_current_state] != 1190 ); yy_find_action: yy_act = yy_accept[yy_current_state]; @@ -1818,630 +1823,640 @@ return tEllipse; case 80: YY_RULE_SETUP #line 158 "Gmsh.l" -return tExtrude; +return tElse; YY_BREAK case 81: YY_RULE_SETUP #line 159 "Gmsh.l" -return tElliptic; +return tExtrude; YY_BREAK case 82: YY_RULE_SETUP #line 160 "Gmsh.l" -return tEndFor; +return tElliptic; YY_BREAK case 83: YY_RULE_SETUP #line 161 "Gmsh.l" -return tEndIf; +return tEndFor; YY_BREAK case 84: YY_RULE_SETUP #line 162 "Gmsh.l" -return tEuclidian; +return tEndIf; YY_BREAK case 85: YY_RULE_SETUP #line 163 "Gmsh.l" -return tError; +return tEuclidian; YY_BREAK case 86: YY_RULE_SETUP #line 164 "Gmsh.l" -return tExit; +return tError; YY_BREAK case 87: YY_RULE_SETUP #line 165 "Gmsh.l" -return tExists; +return tExit; YY_BREAK case 88: YY_RULE_SETUP -#line 167 "Gmsh.l" -return tFabs; +#line 166 "Gmsh.l" +return tExists; YY_BREAK case 89: YY_RULE_SETUP #line 168 "Gmsh.l" -return tField; +return tFabs; YY_BREAK case 90: YY_RULE_SETUP #line 169 "Gmsh.l" -return tFind; +return tField; YY_BREAK case 91: YY_RULE_SETUP #line 170 "Gmsh.l" -return tFileExists; +return tFind; YY_BREAK case 92: YY_RULE_SETUP #line 171 "Gmsh.l" -return tFixRelativePath; +return tFileExists; YY_BREAK case 93: YY_RULE_SETUP #line 172 "Gmsh.l" -return tFloor; +return tFixRelativePath; YY_BREAK case 94: YY_RULE_SETUP #line 173 "Gmsh.l" -return tFmod; +return tFloor; YY_BREAK case 95: YY_RULE_SETUP #line 174 "Gmsh.l" -return tFor; +return tFmod; YY_BREAK case 96: YY_RULE_SETUP #line 175 "Gmsh.l" -return tMacro; +return tFor; YY_BREAK case 97: YY_RULE_SETUP -#line 177 "Gmsh.l" -return tGetEnv; +#line 176 "Gmsh.l" +return tMacro; YY_BREAK case 98: YY_RULE_SETUP #line 178 "Gmsh.l" -return tGetString; +return tGetEnv; YY_BREAK case 99: YY_RULE_SETUP #line 179 "Gmsh.l" -return tGetNumber; +return tGetString; YY_BREAK case 100: YY_RULE_SETUP #line 180 "Gmsh.l" -return tGetValue; +return tGetNumber; YY_BREAK case 101: YY_RULE_SETUP #line 181 "Gmsh.l" -return tGMSH_MAJOR_VERSION; +return tGetValue; YY_BREAK case 102: YY_RULE_SETUP #line 182 "Gmsh.l" -return tGMSH_MINOR_VERSION; +return tGMSH_MAJOR_VERSION; YY_BREAK case 103: YY_RULE_SETUP #line 183 "Gmsh.l" -return tGMSH_PATCH_VERSION; +return tGMSH_MINOR_VERSION; YY_BREAK case 104: YY_RULE_SETUP #line 184 "Gmsh.l" -return tGmshExecutableName; +return tGMSH_PATCH_VERSION; YY_BREAK case 105: YY_RULE_SETUP -#line 186 "Gmsh.l" -return tHide; +#line 185 "Gmsh.l" +return tGmshExecutableName; YY_BREAK case 106: YY_RULE_SETUP #line 187 "Gmsh.l" -return tHole; +return tHide; YY_BREAK case 107: YY_RULE_SETUP #line 188 "Gmsh.l" -return tHomology; +return tHole; YY_BREAK case 108: YY_RULE_SETUP #line 189 "Gmsh.l" -return tHypot; +return tHomology; YY_BREAK case 109: YY_RULE_SETUP -#line 191 "Gmsh.l" -return tIn; +#line 190 "Gmsh.l" +return tHypot; YY_BREAK case 110: YY_RULE_SETUP #line 192 "Gmsh.l" -return tIf; +return tIn; YY_BREAK case 111: YY_RULE_SETUP #line 193 "Gmsh.l" -return tIntersect; +return tIf; YY_BREAK case 112: YY_RULE_SETUP #line 194 "Gmsh.l" -return tInterpolationScheme; +return tIntersect; YY_BREAK case 113: YY_RULE_SETUP -#line 196 "Gmsh.l" -return tNurbsKnots; +#line 195 "Gmsh.l" +return tInterpolationScheme; YY_BREAK case 114: YY_RULE_SETUP -#line 198 "Gmsh.l" -return tLength; +#line 197 "Gmsh.l" +return tNurbsKnots; YY_BREAK case 115: YY_RULE_SETUP #line 199 "Gmsh.l" -return tLine; +return tLength; YY_BREAK case 116: YY_RULE_SETUP #line 200 "Gmsh.l" -return tList; +return tLine; YY_BREAK case 117: YY_RULE_SETUP #line 201 "Gmsh.l" -return tLog; +return tList; YY_BREAK case 118: YY_RULE_SETUP #line 202 "Gmsh.l" -return tLog10; +return tLog; YY_BREAK case 119: YY_RULE_SETUP #line 203 "Gmsh.l" -return tLayers; +return tLog10; YY_BREAK case 120: YY_RULE_SETUP #line 204 "Gmsh.l" -return tLevelset; +return tLayers; YY_BREAK case 121: YY_RULE_SETUP -#line 206 "Gmsh.l" -return tMacro; +#line 205 "Gmsh.l" +return tLevelset; YY_BREAK case 122: YY_RULE_SETUP #line 207 "Gmsh.l" -return tMeshAlgorithm; +return tMacro; YY_BREAK case 123: YY_RULE_SETUP #line 208 "Gmsh.l" -return tModulo; +return tMeshAlgorithm; YY_BREAK case 124: YY_RULE_SETUP #line 209 "Gmsh.l" -return tMPI_Rank; +return tModulo; YY_BREAK case 125: YY_RULE_SETUP #line 210 "Gmsh.l" -return tMPI_Size; +return tMPI_Rank; YY_BREAK case 126: YY_RULE_SETUP #line 211 "Gmsh.l" -return tMemory; +return tMPI_Size; YY_BREAK case 127: YY_RULE_SETUP -#line 213 "Gmsh.l" -return tNameFromString; +#line 212 "Gmsh.l" +return tMemory; YY_BREAK case 128: YY_RULE_SETUP #line 214 "Gmsh.l" -return tNewModel; +return tNameFromString; YY_BREAK case 129: YY_RULE_SETUP #line 215 "Gmsh.l" -return tNurbs; +return tNewModel; YY_BREAK case 130: YY_RULE_SETUP -#line 217 "Gmsh.l" -return tOnelabAction; +#line 216 "Gmsh.l" +return tNurbs; YY_BREAK case 131: YY_RULE_SETUP #line 218 "Gmsh.l" -return tOnelabRun; +return tOnelabAction; YY_BREAK case 132: YY_RULE_SETUP #line 219 "Gmsh.l" -return tNurbsOrder; +return tOnelabRun; YY_BREAK case 133: YY_RULE_SETUP -#line 221 "Gmsh.l" -return tPeriodic; +#line 220 "Gmsh.l" +return tNurbsOrder; YY_BREAK case 134: YY_RULE_SETUP #line 222 "Gmsh.l" -return tPhysical; +return tPeriodic; YY_BREAK case 135: YY_RULE_SETUP #line 223 "Gmsh.l" -return tPi; +return tPhysical; YY_BREAK case 136: YY_RULE_SETUP #line 224 "Gmsh.l" -return tPlane; +return tPi; YY_BREAK case 137: YY_RULE_SETUP #line 225 "Gmsh.l" -return tPoint; +return tPlane; YY_BREAK case 138: YY_RULE_SETUP #line 226 "Gmsh.l" -return tParametric; +return tPoint; YY_BREAK case 139: YY_RULE_SETUP #line 227 "Gmsh.l" -return tPolarSphere; +return tParametric; YY_BREAK case 140: YY_RULE_SETUP #line 228 "Gmsh.l" -return tPrintf; +return tPolarSphere; YY_BREAK case 141: YY_RULE_SETUP #line 229 "Gmsh.l" -return tPlugin; +return tPrintf; YY_BREAK case 142: YY_RULE_SETUP -#line 231 "Gmsh.l" -return tQuadTriAddVerts; +#line 230 "Gmsh.l" +return tPlugin; YY_BREAK case 143: YY_RULE_SETUP #line 232 "Gmsh.l" -return tQuadTriNoNewVerts; +return tQuadTriAddVerts; YY_BREAK case 144: YY_RULE_SETUP -#line 234 "Gmsh.l" -return tQuadTriDbl; +#line 233 "Gmsh.l" +return tQuadTriNoNewVerts; YY_BREAK case 145: YY_RULE_SETUP #line 235 "Gmsh.l" -return tQuadTriSngl; +return tQuadTriDbl; YY_BREAK case 146: YY_RULE_SETUP -#line 237 "Gmsh.l" -return tRecombine; +#line 236 "Gmsh.l" +return tQuadTriSngl; YY_BREAK case 147: YY_RULE_SETUP #line 238 "Gmsh.l" -return tRecombLaterals; +return tRecombine; YY_BREAK case 148: YY_RULE_SETUP #line 239 "Gmsh.l" -return tRecursive; +return tRecombLaterals; YY_BREAK case 149: YY_RULE_SETUP #line 240 "Gmsh.l" -return tRotate; +return tRecursive; YY_BREAK case 150: YY_RULE_SETUP #line 241 "Gmsh.l" -return tRound; +return tRotate; YY_BREAK case 151: YY_RULE_SETUP #line 242 "Gmsh.l" -return tRuled; +return tRound; YY_BREAK case 152: YY_RULE_SETUP #line 243 "Gmsh.l" -return tRand; +return tRuled; YY_BREAK case 153: YY_RULE_SETUP #line 244 "Gmsh.l" -return tRefineMesh; +return tRand; YY_BREAK case 154: YY_RULE_SETUP #line 245 "Gmsh.l" -return tRelocateMesh; +return tRefineMesh; YY_BREAK case 155: YY_RULE_SETUP #line 246 "Gmsh.l" -return tReturn; +return tRelocateMesh; YY_BREAK case 156: YY_RULE_SETUP #line 247 "Gmsh.l" -return tReverse; +return tReturn; YY_BREAK case 157: YY_RULE_SETUP -#line 249 "Gmsh.l" -return tScaleLast; +#line 248 "Gmsh.l" +return tReverse; YY_BREAK case 158: YY_RULE_SETUP #line 250 "Gmsh.l" -return tSmoother; +return tScaleLast; YY_BREAK case 159: YY_RULE_SETUP #line 251 "Gmsh.l" -return tSetOrder; +return tSmoother; YY_BREAK case 160: YY_RULE_SETUP #line 252 "Gmsh.l" -return tSetNumber; +return tSetOrder; YY_BREAK case 161: YY_RULE_SETUP #line 253 "Gmsh.l" -return tSetString; +return tSetNumber; YY_BREAK case 162: YY_RULE_SETUP #line 254 "Gmsh.l" -return tSetPartition; +return tSetString; YY_BREAK case 163: YY_RULE_SETUP #line 255 "Gmsh.l" -return tSqrt; +return tSetPartition; YY_BREAK case 164: YY_RULE_SETUP #line 256 "Gmsh.l" -return tSin; +return tSqrt; YY_BREAK case 165: YY_RULE_SETUP #line 257 "Gmsh.l" -return tSinh; +return tSin; YY_BREAK case 166: YY_RULE_SETUP #line 258 "Gmsh.l" -return tSphere; +return tSinh; YY_BREAK case 167: YY_RULE_SETUP #line 259 "Gmsh.l" -return tSpline; +return tSphere; YY_BREAK case 168: YY_RULE_SETUP #line 260 "Gmsh.l" -return tSplit; +return tSpline; YY_BREAK case 169: YY_RULE_SETUP #line 261 "Gmsh.l" -return tSurface; +return tSplit; YY_BREAK case 170: YY_RULE_SETUP #line 262 "Gmsh.l" -return tStr; +return tSurface; YY_BREAK case 171: YY_RULE_SETUP #line 263 "Gmsh.l" -return tStringFromName; +return tStr; YY_BREAK case 172: YY_RULE_SETUP #line 264 "Gmsh.l" -return tSprintf; +return tStringFromName; YY_BREAK case 173: YY_RULE_SETUP #line 265 "Gmsh.l" -return tStrCat; +return tSprintf; YY_BREAK case 174: YY_RULE_SETUP #line 266 "Gmsh.l" -return tStrReplace; +return tStrCat; YY_BREAK case 175: YY_RULE_SETUP #line 267 "Gmsh.l" -return tStrPrefix; +return tStrReplace; YY_BREAK case 176: YY_RULE_SETUP #line 268 "Gmsh.l" -return tStrRelative; +return tStrPrefix; YY_BREAK case 177: YY_RULE_SETUP #line 269 "Gmsh.l" -return tStrFind; +return tStrRelative; YY_BREAK case 178: YY_RULE_SETUP #line 270 "Gmsh.l" -return tStrCmp; +return tStrFind; YY_BREAK case 179: YY_RULE_SETUP #line 271 "Gmsh.l" -return tStrChoice; +return tStrCmp; YY_BREAK case 180: YY_RULE_SETUP #line 272 "Gmsh.l" -return tShow; +return tStrChoice; YY_BREAK case 181: YY_RULE_SETUP #line 273 "Gmsh.l" -return tSymmetry; +return tShow; YY_BREAK case 182: YY_RULE_SETUP #line 274 "Gmsh.l" -return tSyncModel; +return tSymmetry; YY_BREAK case 183: YY_RULE_SETUP -#line 276 "Gmsh.l" -return tText2D; +#line 275 "Gmsh.l" +return tSyncModel; YY_BREAK case 184: YY_RULE_SETUP #line 277 "Gmsh.l" -return tText3D; +return tText2D; YY_BREAK case 185: YY_RULE_SETUP #line 278 "Gmsh.l" -return tTextAttributes; +return tText3D; YY_BREAK case 186: YY_RULE_SETUP #line 279 "Gmsh.l" -return tTime; +return tTestLevel; YY_BREAK case 187: YY_RULE_SETUP #line 280 "Gmsh.l" -return tTransfinite; +return tTextAttributes; YY_BREAK case 188: YY_RULE_SETUP #line 281 "Gmsh.l" -return tTransfQuadTri; +return tTime; YY_BREAK case 189: YY_RULE_SETUP #line 282 "Gmsh.l" -return tTranslate; +return tTransfinite; YY_BREAK case 190: YY_RULE_SETUP #line 283 "Gmsh.l" -return tTanh; +return tTransfQuadTri; YY_BREAK case 191: YY_RULE_SETUP #line 284 "Gmsh.l" -return tTan; +return tTranslate; YY_BREAK case 192: YY_RULE_SETUP #line 285 "Gmsh.l" -return tToday; +return tTanh; YY_BREAK case 193: YY_RULE_SETUP #line 286 "Gmsh.l" -return tTotalMemory; +return tTan; YY_BREAK case 194: YY_RULE_SETUP -#line 288 "Gmsh.l" -return tUndefineConstant; +#line 287 "Gmsh.l" +return tToday; YY_BREAK case 195: YY_RULE_SETUP -#line 289 "Gmsh.l" -return tUpperCase; +#line 288 "Gmsh.l" +return tTotalMemory; YY_BREAK case 196: YY_RULE_SETUP #line 290 "Gmsh.l" -return tLowerCase; +return tUndefineConstant; YY_BREAK case 197: YY_RULE_SETUP #line 291 "Gmsh.l" -return tLowerCaseIn; +return tUpperCase; YY_BREAK case 198: YY_RULE_SETUP #line 292 "Gmsh.l" -return tUsing; +return tLowerCase; YY_BREAK case 199: YY_RULE_SETUP -#line 294 "Gmsh.l" -return tVolume; +#line 293 "Gmsh.l" +return tLowerCaseIn; YY_BREAK case 200: -#line 297 "Gmsh.l" +YY_RULE_SETUP +#line 294 "Gmsh.l" +return tUsing; + YY_BREAK case 201: -#line 298 "Gmsh.l" +YY_RULE_SETUP +#line 296 "Gmsh.l" +return tVolume; + YY_BREAK case 202: #line 299 "Gmsh.l" case 203: +#line 300 "Gmsh.l" +case 204: +#line 301 "Gmsh.l" +case 205: YY_RULE_SETUP -#line 299 "Gmsh.l" +#line 301 "Gmsh.l" { gmsh_yylval.d = atof((char *)gmsh_yytext); return tDOUBLE; } YY_BREAK -case 204: +case 206: YY_RULE_SETUP -#line 301 "Gmsh.l" +#line 303 "Gmsh.l" { gmsh_yylval.c = strsave((char*)gmsh_yytext); return tSTRING; } YY_BREAK -case 205: +case 207: YY_RULE_SETUP -#line 303 "Gmsh.l" +#line 305 "Gmsh.l" return gmsh_yytext[0]; YY_BREAK -case 206: +case 208: YY_RULE_SETUP -#line 305 "Gmsh.l" +#line 307 "Gmsh.l" ECHO; YY_BREAK -#line 2445 "Gmsh.yy.cpp" +#line 2460 "Gmsh.yy.cpp" case YY_STATE_EOF(INITIAL): yyterminate(); @@ -2634,7 +2649,7 @@ static int yy_get_next_buffer (void) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ - YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; + YY_BUFFER_STATE b = YY_CURRENT_BUFFER; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); @@ -2733,7 +2748,7 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1048 ) + if ( yy_current_state >= 1057 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; @@ -2761,13 +2776,13 @@ static int yy_get_next_buffer (void) while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; - if ( yy_current_state >= 1048 ) + if ( yy_current_state >= 1057 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; - yy_is_jam = (yy_current_state == 1047); + yy_is_jam = (yy_current_state == 1056); - return yy_is_jam ? 0 : yy_current_state; + return yy_is_jam ? 0 : yy_current_state; } static void yyunput (int c, register char * yy_bp ) @@ -2855,7 +2870,7 @@ static int yy_get_next_buffer (void) case EOB_ACT_END_OF_FILE: { if ( gmsh_yywrap( ) ) - return EOF; + return 0; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; @@ -2991,6 +3006,10 @@ static void gmsh_yy_load_buffer_state (void) gmsh_yyfree((void *) b ); } +#ifndef __cplusplus +extern int isatty (int ); +#endif /* __cplusplus */ + /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a gmsh_yyrestart() or at EOF. @@ -3195,8 +3214,8 @@ YY_BUFFER_STATE gmsh_yy_scan_string (yyconst char * yystr ) /** Setup the input buffer state to scan the given bytes. The next call to gmsh_yylex() will * scan from a @e copy of @a bytes. - * @param yybytes the byte buffer to scan - * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. + * @param bytes the byte buffer to scan + * @param len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ @@ -3204,8 +3223,7 @@ YY_BUFFER_STATE gmsh_yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes { YY_BUFFER_STATE b; char *buf; - yy_size_t n; - int i; + yy_size_t n, i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; @@ -3435,7 +3453,7 @@ void gmsh_yyfree (void * ptr ) #define YYTABLES_NAME "yytables" -#line 305 "Gmsh.l" +#line 307 "Gmsh.l" @@ -3498,20 +3516,89 @@ void skipline() } } +bool is_alpha(const int c) +{ + return (c>='a' && c<='z') || (c>='A' && c<='Z') || c=='_'; +} + void skip_until(const char *skip, const char *until) { - int i, nb_skip; + int i, nb_skip = 0; int l, l_skip, l_until; char chars[256]; + int c_next, c_next_skip, c_next_until, c_previous = 0; - nb_skip = 0; + l_skip = (skip)? strlen(skip) : 0; + l_until = strlen(until); - if(skip) - l_skip = strlen(skip); - else - l_skip = 0; + while(1){ + while (1){ + chars[0] = yyinput(); + if(gmsheof(gmsh_yyin)){ + Msg::Error("Unexpected end of file"); + return; + } + if(chars[0] == '/'){ + c_next = yyinput(); + if (c_next == '*') skipcomments(); + else if(c_next == '/') skipline(); + else unput(c_next); + } + if(!c_previous || !is_alpha(c_previous)){ + if(chars[0] == until[0]) break; + if(skip && chars[0] == skip[0]) break; + } + c_previous = chars[0]; + } + + l = std::max(l_skip,l_until); + if(l >= (int)sizeof(chars)){ + Msg::Error("Search pattern too long in skip_until"); + return; + } + for(i=1; i<l; i++){ + chars[i] = yyinput(); + if(gmsheof(gmsh_yyin)){ + l = i; + break; + } + } + + c_next = yyinput(); unput(c_next); + c_next_skip = (l_skip<l)? chars[l_skip] : c_next; + c_next_until = (l_until<l)? chars[l_until] : c_next; + + if(!strncmp(chars,until,l_until) && !is_alpha(c_next_until)){ + if(!nb_skip){ + return; + } + else{ + nb_skip--; + } + } + else if(skip && !strncmp(chars,skip,l_skip) && !is_alpha(c_next_skip)){ + nb_skip++; + } + else{ + for(i=1;i<l-1;i++){ + unput(chars[l-i]); + } + } + + } +} + +void skip_until_test(const char *skip, const char *until, const char *until2, int *flag_until2) +{ + int i, nb_skip = 0; + int l, l_skip, l_until, l_until2; + char chars[256]; + int c_next, c_next_skip, c_next_until, c_next_until2, c_previous = 0; + + l_skip = (skip)? strlen(skip) : 0; l_until = strlen(until); + l_until2 = (until2)? strlen(until2) : 0; while(1){ while (1){ @@ -3520,11 +3607,22 @@ void skip_until(const char *skip, const char *until) Msg::Error("Unexpected end of file"); return; } - if(chars[0] == until[0]) break; - if(skip && chars[0] == skip[0]) break; + if(chars[0] == '/'){ + c_next = yyinput(); + if (c_next == '*') skipcomments(); + else if(c_next == '/') skipline(); + else unput(c_next); + } + if(!c_previous || !is_alpha(c_previous)){ + if(chars[0] == until[0]) break; + if(skip && chars[0] == skip[0]) break; + if(until2 && chars[0] == until2[0]) break; + } + c_previous = chars[0]; } l = std::max(l_skip,l_until); + l = std::max(l,l_until2); if(l >= (int)sizeof(chars)){ Msg::Error("Search pattern too long in skip_until"); return; @@ -3537,7 +3635,18 @@ void skip_until(const char *skip, const char *until) } } - if(!strncmp(chars,until,l_until)){ + c_next = yyinput(); unput(c_next); + c_next_skip = (l_skip<l)? chars[l_skip] : c_next; + c_next_until = (l_until<l)? chars[l_until] : c_next; + c_next_until2 = (l_until2<l)? chars[l_until2] : c_next; + + if(!strncmp(chars,until2,l_until2) && !is_alpha(c_next_until2)){ + if(!nb_skip){ + *flag_until2 = 1; + return; + } + } + else if(!strncmp(chars,until,l_until) && !is_alpha(c_next_until)){ if(!nb_skip){ return; } @@ -3545,7 +3654,7 @@ void skip_until(const char *skip, const char *until) nb_skip--; } } - else if(skip && !strncmp(chars,skip,l_skip)){ + else if(skip && !strncmp(chars,skip,l_skip) && !is_alpha(c_next_skip)){ nb_skip++; } else{ -- GitLab