/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 41 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile #undef __GNUC_MINOR__ #include #include #include "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.h" #include "TypeData.h" #include "LinkageSpec.h" using namespace std; extern DeclarationNode * parseTree; extern LinkageSpec::Spec linkage; extern TypedefTable typedefTable; stack< LinkageSpec::Spec > linkageStack; void appendStr( string *to, string *from ) { // "abc" "def" "ghi" => "abcdefghi", remove new text from quotes and insert before last quote in old string. to->insert( to->length() - 1, from->substr( 1, from->length() - 2 ) ); } // appendStr /* Line 268 of yacc.c */ #line 100 "Parser/parser.cc" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { TYPEDEF = 258, AUTO = 259, EXTERN = 260, REGISTER = 261, STATIC = 262, INLINE = 263, FORTRAN = 264, CONST = 265, VOLATILE = 266, RESTRICT = 267, FORALL = 268, LVALUE = 269, VOID = 270, CHAR = 271, SHORT = 272, INT = 273, LONG = 274, FLOAT = 275, DOUBLE = 276, SIGNED = 277, UNSIGNED = 278, ZERO_T = 279, ONE_T = 280, VALIST = 281, BOOL = 282, COMPLEX = 283, IMAGINARY = 284, TYPEOF = 285, LABEL = 286, ENUM = 287, STRUCT = 288, UNION = 289, OTYPE = 290, FTYPE = 291, DTYPE = 292, TTYPE = 293, TRAIT = 294, SIZEOF = 295, OFFSETOF = 296, ATTRIBUTE = 297, EXTENSION = 298, IF = 299, ELSE = 300, SWITCH = 301, CASE = 302, DEFAULT = 303, DO = 304, WHILE = 305, FOR = 306, BREAK = 307, CONTINUE = 308, GOTO = 309, RETURN = 310, CHOOSE = 311, DISABLE = 312, ENABLE = 313, FALLTHRU = 314, TRY = 315, CATCH = 316, CATCHRESUME = 317, FINALLY = 318, THROW = 319, THROWRESUME = 320, AT = 321, ASM = 322, ALIGNAS = 323, ALIGNOF = 324, ATOMIC = 325, GENERIC = 326, NORETURN = 327, STATICASSERT = 328, THREADLOCAL = 329, IDENTIFIER = 330, QUOTED_IDENTIFIER = 331, TYPEDEFname = 332, TYPEGENname = 333, ATTR_IDENTIFIER = 334, ATTR_TYPEDEFname = 335, ATTR_TYPEGENname = 336, INTEGERconstant = 337, CHARACTERconstant = 338, STRINGliteral = 339, REALDECIMALconstant = 340, REALFRACTIONconstant = 341, FLOATINGconstant = 342, ZERO = 343, ONE = 344, ARROW = 345, ICR = 346, DECR = 347, LS = 348, RS = 349, LE = 350, GE = 351, EQ = 352, NE = 353, ANDAND = 354, OROR = 355, ELLIPSIS = 356, MULTassign = 357, DIVassign = 358, MODassign = 359, PLUSassign = 360, MINUSassign = 361, LSassign = 362, RSassign = 363, ANDassign = 364, ERassign = 365, ORassign = 366, ATassign = 367, THEN = 368 }; #endif /* Tokens. */ #define TYPEDEF 258 #define AUTO 259 #define EXTERN 260 #define REGISTER 261 #define STATIC 262 #define INLINE 263 #define FORTRAN 264 #define CONST 265 #define VOLATILE 266 #define RESTRICT 267 #define FORALL 268 #define LVALUE 269 #define VOID 270 #define CHAR 271 #define SHORT 272 #define INT 273 #define LONG 274 #define FLOAT 275 #define DOUBLE 276 #define SIGNED 277 #define UNSIGNED 278 #define ZERO_T 279 #define ONE_T 280 #define VALIST 281 #define BOOL 282 #define COMPLEX 283 #define IMAGINARY 284 #define TYPEOF 285 #define LABEL 286 #define ENUM 287 #define STRUCT 288 #define UNION 289 #define OTYPE 290 #define FTYPE 291 #define DTYPE 292 #define TTYPE 293 #define TRAIT 294 #define SIZEOF 295 #define OFFSETOF 296 #define ATTRIBUTE 297 #define EXTENSION 298 #define IF 299 #define ELSE 300 #define SWITCH 301 #define CASE 302 #define DEFAULT 303 #define DO 304 #define WHILE 305 #define FOR 306 #define BREAK 307 #define CONTINUE 308 #define GOTO 309 #define RETURN 310 #define CHOOSE 311 #define DISABLE 312 #define ENABLE 313 #define FALLTHRU 314 #define TRY 315 #define CATCH 316 #define CATCHRESUME 317 #define FINALLY 318 #define THROW 319 #define THROWRESUME 320 #define AT 321 #define ASM 322 #define ALIGNAS 323 #define ALIGNOF 324 #define ATOMIC 325 #define GENERIC 326 #define NORETURN 327 #define STATICASSERT 328 #define THREADLOCAL 329 #define IDENTIFIER 330 #define QUOTED_IDENTIFIER 331 #define TYPEDEFname 332 #define TYPEGENname 333 #define ATTR_IDENTIFIER 334 #define ATTR_TYPEDEFname 335 #define ATTR_TYPEGENname 336 #define INTEGERconstant 337 #define CHARACTERconstant 338 #define STRINGliteral 339 #define REALDECIMALconstant 340 #define REALFRACTIONconstant 341 #define FLOATINGconstant 342 #define ZERO 343 #define ONE 344 #define ARROW 345 #define ICR 346 #define DECR 347 #define LS 348 #define RS 349 #define LE 350 #define GE 351 #define EQ 352 #define NE 353 #define ANDAND 354 #define OROR 355 #define ELLIPSIS 356 #define MULTassign 357 #define DIVassign 358 #define MODassign 359 #define PLUSassign 360 #define MINUSassign 361 #define LSassign 362 #define RSassign 363 #define ANDassign 364 #define ERassign 365 #define ORassign 366 #define ATassign 367 #define THEN 368 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 119 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantExpr *constant; ForCtl *fctl; LabelNode *label; InitializerNode *in; OperKinds op; std::string *str; bool flag; /* Line 293 of yacc.c */ #line 381 "Parser/parser.cc" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 #endif /* Copy the second part of user declarations. */ /* Line 343 of yacc.c */ #line 393 "Parser/parser.cc" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (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 && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* 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 (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* 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 #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 251 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 10498 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 138 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 243 /* YYNRULES -- Number of rules. */ #define YYNRULES 758 /* YYNRULES -- Number of states. */ #define YYNSTATES 1546 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 368 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 126, 2, 2, 2, 129, 123, 2, 114, 115, 122, 124, 121, 125, 118, 128, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 135, 137, 130, 136, 131, 134, 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, 116, 2, 117, 132, 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, 119, 133, 120, 127, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 40, 42, 44, 46, 50, 54, 56, 63, 68, 72, 80, 83, 87, 95, 98, 101, 109, 114, 116, 120, 121, 123, 125, 129, 131, 134, 141, 145, 153, 157, 165, 168, 171, 174, 175, 178, 180, 182, 184, 187, 190, 193, 196, 199, 202, 207, 210, 215, 222, 224, 229, 234, 236, 238, 240, 242, 244, 246, 248, 253, 255, 259, 263, 267, 269, 273, 277, 279, 283, 287, 289, 293, 297, 301, 305, 307, 311, 315, 317, 321, 323, 327, 329, 333, 335, 339, 341, 345, 347, 353, 358, 360, 362, 366, 367, 369, 371, 373, 375, 377, 379, 381, 383, 385, 387, 389, 391, 393, 400, 408, 410, 414, 416, 420, 421, 423, 425, 427, 429, 431, 433, 435, 437, 439, 446, 451, 454, 462, 464, 468, 470, 473, 475, 478, 480, 483, 486, 492, 500, 506, 516, 522, 532, 534, 538, 540, 542, 546, 550, 553, 555, 558, 561, 562, 564, 567, 571, 572, 574, 577, 581, 585, 590, 591, 593, 595, 598, 604, 612, 619, 626, 631, 635, 640, 643, 647, 650, 654, 658, 662, 666, 672, 676, 680, 685, 687, 693, 700, 706, 713, 723, 734, 744, 755, 758, 760, 763, 766, 769, 771, 778, 787, 798, 811, 826, 827, 829, 830, 832, 834, 838, 843, 851, 852, 854, 858, 860, 864, 866, 868, 870, 874, 876, 878, 880, 884, 885, 887, 891, 896, 898, 902, 904, 906, 910, 914, 918, 922, 926, 929, 933, 940, 944, 948, 953, 955, 958, 961, 965, 971, 979, 987, 993, 1003, 1006, 1009, 1015, 1019, 1025, 1030, 1034, 1039, 1044, 1052, 1056, 1060, 1064, 1068, 1073, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1097, 1099, 1101, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1119, 1125, 1127, 1130, 1134, 1136, 1139, 1141, 1143, 1145, 1147, 1149, 1151, 1153, 1155, 1157, 1159, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1183, 1185, 1187, 1190, 1193, 1197, 1201, 1203, 1207, 1209, 1212, 1215, 1218, 1223, 1228, 1233, 1238, 1240, 1243, 1246, 1250, 1252, 1255, 1258, 1260, 1263, 1266, 1270, 1272, 1275, 1278, 1280, 1282, 1287, 1290, 1291, 1298, 1306, 1309, 1312, 1315, 1316, 1319, 1322, 1326, 1329, 1333, 1335, 1338, 1342, 1345, 1348, 1353, 1354, 1356, 1359, 1362, 1364, 1365, 1367, 1370, 1373, 1379, 1382, 1383, 1391, 1394, 1399, 1400, 1403, 1404, 1406, 1408, 1410, 1416, 1422, 1428, 1430, 1436, 1442, 1452, 1454, 1460, 1461, 1463, 1465, 1471, 1473, 1475, 1481, 1487, 1489, 1493, 1497, 1502, 1504, 1506, 1508, 1510, 1513, 1515, 1519, 1523, 1525, 1528, 1530, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1559, 1561, 1563, 1565, 1568, 1569, 1572, 1575, 1577, 1582, 1583, 1585, 1588, 1592, 1597, 1600, 1603, 1605, 1608, 1611, 1617, 1623, 1631, 1638, 1640, 1643, 1646, 1650, 1652, 1655, 1658, 1663, 1666, 1671, 1672, 1677, 1680, 1682, 1684, 1686, 1688, 1689, 1692, 1698, 1704, 1718, 1720, 1722, 1726, 1730, 1733, 1737, 1741, 1744, 1749, 1751, 1758, 1768, 1769, 1781, 1783, 1787, 1791, 1795, 1797, 1799, 1805, 1808, 1814, 1815, 1817, 1819, 1823, 1824, 1826, 1828, 1830, 1832, 1833, 1840, 1843, 1845, 1848, 1853, 1856, 1860, 1864, 1868, 1873, 1879, 1885, 1891, 1898, 1900, 1902, 1904, 1908, 1909, 1915, 1916, 1918, 1920, 1923, 1930, 1932, 1936, 1937, 1939, 1944, 1946, 1948, 1950, 1952, 1955, 1957, 1960, 1963, 1965, 1969, 1972, 1976, 1980, 1983, 1988, 1993, 1997, 2006, 2010, 2013, 2015, 2018, 2025, 2034, 2038, 2041, 2045, 2049, 2054, 2059, 2063, 2065, 2067, 2069, 2074, 2081, 2085, 2088, 2092, 2096, 2101, 2106, 2110, 2113, 2115, 2118, 2121, 2123, 2127, 2130, 2134, 2138, 2141, 2146, 2151, 2155, 2162, 2171, 2175, 2178, 2180, 2183, 2186, 2189, 2193, 2197, 2200, 2205, 2210, 2214, 2221, 2230, 2234, 2237, 2239, 2242, 2245, 2247, 2249, 2252, 2256, 2260, 2263, 2268, 2275, 2284, 2286, 2289, 2292, 2294, 2297, 2300, 2304, 2308, 2310, 2315, 2320, 2324, 2330, 2339, 2343, 2346, 2350, 2352, 2358, 2364, 2371, 2378, 2380, 2383, 2386, 2388, 2391, 2394, 2398, 2402, 2404, 2409, 2414, 2418, 2424, 2433, 2437, 2439, 2442, 2444, 2447, 2454, 2460, 2467, 2475, 2483, 2485, 2488, 2491, 2493, 2496, 2499, 2503, 2507, 2509, 2514, 2519, 2523, 2532, 2536, 2538, 2540, 2543, 2545, 2547, 2550, 2554, 2557, 2561, 2564, 2568, 2572, 2575, 2580, 2584, 2587, 2591, 2594, 2599, 2603, 2606, 2613, 2620, 2627, 2635, 2637, 2640, 2642, 2644, 2646, 2649, 2653, 2656, 2660, 2663, 2667, 2671, 2676, 2679, 2683, 2688, 2691, 2697, 2704, 2711, 2712, 2714, 2715 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 309, 0, -1, -1, -1, 82, -1, 85, -1, 86, -1, 87, -1, 83, -1, 75, -1, 79, -1, 145, -1, 75, -1, 79, -1, 75, -1, 145, -1, 88, -1, 89, -1, 147, -1, 84, -1, 147, 84, -1, 75, -1, 145, -1, 175, -1, 114, 177, 115, -1, 114, 181, 115, -1, 148, -1, 149, 116, 139, 172, 140, 117, -1, 149, 114, 150, 115, -1, 149, 118, 144, -1, 149, 118, 116, 139, 152, 140, 117, -1, 149, 86, -1, 149, 90, 144, -1, 149, 90, 116, 139, 152, 140, 117, -1, 149, 91, -1, 149, 92, -1, 114, 282, 115, 119, 286, 379, 120, -1, 149, 119, 150, 120, -1, 151, -1, 150, 121, 151, -1, -1, 172, -1, 153, -1, 152, 121, 153, -1, 154, -1, 85, 153, -1, 85, 116, 139, 152, 140, 117, -1, 154, 118, 153, -1, 154, 118, 116, 139, 152, 140, 117, -1, 154, 90, 153, -1, 154, 90, 116, 139, 152, 140, 117, -1, 82, 155, -1, 87, 155, -1, 144, 155, -1, -1, 155, 86, -1, 149, -1, 141, -1, 146, -1, 43, 159, -1, 157, 159, -1, 158, 159, -1, 91, 156, -1, 92, 156, -1, 40, 156, -1, 40, 114, 282, 115, -1, 69, 156, -1, 69, 114, 282, 115, -1, 41, 114, 282, 121, 144, 115, -1, 79, -1, 79, 114, 151, 115, -1, 79, 114, 283, 115, -1, 122, -1, 123, -1, 124, -1, 125, -1, 126, -1, 127, -1, 156, -1, 114, 282, 115, 159, -1, 159, -1, 160, 122, 159, -1, 160, 128, 159, -1, 160, 129, 159, -1, 160, -1, 161, 124, 160, -1, 161, 125, 160, -1, 161, -1, 162, 93, 161, -1, 162, 94, 161, -1, 162, -1, 163, 130, 162, -1, 163, 131, 162, -1, 163, 95, 162, -1, 163, 96, 162, -1, 163, -1, 164, 97, 163, -1, 164, 98, 163, -1, 164, -1, 165, 123, 164, -1, 165, -1, 166, 132, 165, -1, 166, -1, 167, 133, 166, -1, 167, -1, 168, 99, 167, -1, 168, -1, 169, 100, 168, -1, 169, -1, 169, 134, 177, 135, 170, -1, 169, 134, 135, 170, -1, 170, -1, 170, -1, 156, 174, 172, -1, -1, 172, -1, 136, -1, 112, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 107, -1, 108, -1, 109, -1, 110, -1, 111, -1, 116, 139, 121, 176, 140, 117, -1, 116, 139, 172, 121, 176, 140, 117, -1, 173, -1, 176, 121, 173, -1, 172, -1, 177, 121, 172, -1, -1, 177, -1, 180, -1, 181, -1, 185, -1, 186, -1, 198, -1, 200, -1, 201, -1, 206, -1, 132, 149, 119, 150, 120, 137, -1, 279, 135, 319, 179, -1, 119, 120, -1, 119, 139, 139, 217, 182, 140, 120, -1, 183, -1, 182, 139, 183, -1, 220, -1, 43, 220, -1, 315, -1, 179, 140, -1, 179, -1, 184, 179, -1, 178, 137, -1, 44, 114, 177, 115, 179, -1, 44, 114, 177, 115, 179, 45, 179, -1, 46, 114, 177, 115, 191, -1, 46, 114, 177, 115, 119, 139, 213, 192, 120, -1, 56, 114, 177, 115, 191, -1, 56, 114, 177, 115, 119, 139, 213, 194, 120, -1, 171, -1, 171, 101, 171, -1, 317, -1, 187, -1, 188, 121, 187, -1, 47, 188, 135, -1, 48, 135, -1, 189, -1, 190, 189, -1, 190, 179, -1, -1, 193, -1, 190, 184, -1, 193, 190, 184, -1, -1, 195, -1, 190, 197, -1, 190, 184, 196, -1, 195, 190, 197, -1, 195, 190, 184, 196, -1, -1, 197, -1, 59, -1, 59, 137, -1, 50, 114, 177, 115, 179, -1, 49, 179, 50, 114, 177, 115, 137, -1, 51, 114, 139, 199, 115, 179, -1, 178, 140, 137, 178, 137, 178, -1, 220, 178, 137, 178, -1, 54, 279, 137, -1, 54, 122, 177, 137, -1, 53, 137, -1, 53, 279, 137, -1, 52, 137, -1, 52, 279, 137, -1, 55, 178, 137, -1, 64, 173, 137, -1, 65, 173, 137, -1, 65, 173, 66, 172, 137, -1, 60, 181, 202, -1, 60, 181, 204, -1, 60, 181, 202, 204, -1, 203, -1, 61, 114, 101, 115, 181, -1, 203, 61, 114, 101, 115, 181, -1, 62, 114, 101, 115, 181, -1, 203, 62, 114, 101, 115, 181, -1, 61, 114, 139, 139, 205, 140, 115, 181, 140, -1, 203, 61, 114, 139, 139, 205, 140, 115, 181, 140, -1, 62, 114, 139, 139, 205, 140, 115, 181, 140, -1, 203, 62, 114, 139, 139, 205, 140, 115, 181, 140, -1, 63, 181, -1, 233, -1, 233, 316, -1, 233, 364, -1, 373, 144, -1, 373, -1, 67, 207, 114, 146, 115, 137, -1, 67, 207, 114, 146, 135, 208, 115, 137, -1, 67, 207, 114, 146, 135, 208, 135, 208, 115, 137, -1, 67, 207, 114, 146, 135, 208, 135, 208, 135, 211, 115, 137, -1, 67, 207, 54, 114, 146, 135, 135, 208, 135, 211, 135, 212, 115, 137, -1, -1, 11, -1, -1, 209, -1, 210, -1, 209, 121, 210, -1, 146, 114, 171, 115, -1, 116, 171, 117, 146, 114, 171, 115, -1, -1, 146, -1, 211, 121, 146, -1, 144, -1, 212, 121, 144, -1, 140, -1, 214, -1, 220, -1, 214, 139, 220, -1, 140, -1, 216, -1, 230, -1, 216, 139, 230, -1, -1, 218, -1, 31, 219, 137, -1, 218, 31, 219, 137, -1, 281, -1, 219, 121, 281, -1, 221, -1, 230, -1, 222, 140, 137, -1, 227, 140, 137, -1, 224, 140, 137, -1, 300, 140, 137, -1, 303, 140, 137, -1, 223, 284, -1, 239, 223, 284, -1, 222, 140, 121, 139, 279, 284, -1, 374, 279, 318, -1, 377, 279, 318, -1, 235, 377, 279, 318, -1, 225, -1, 235, 225, -1, 239, 225, -1, 239, 235, 225, -1, 224, 140, 121, 139, 279, -1, 377, 279, 114, 139, 267, 140, 115, -1, 226, 279, 114, 139, 267, 140, 115, -1, 116, 139, 269, 140, 117, -1, 116, 139, 269, 140, 121, 139, 270, 140, 117, -1, 3, 223, -1, 3, 225, -1, 227, 140, 121, 139, 144, -1, 3, 233, 316, -1, 228, 140, 121, 139, 316, -1, 235, 3, 233, 316, -1, 233, 3, 316, -1, 233, 3, 235, 316, -1, 3, 144, 136, 172, -1, 229, 140, 121, 139, 144, 136, 172, -1, 231, 140, 137, -1, 228, 140, 137, -1, 229, 140, 137, -1, 247, 140, 137, -1, 232, 316, 318, 284, -1, 231, 121, 319, 316, 318, 284, -1, 243, -1, 247, -1, 249, -1, 290, -1, 244, -1, 248, -1, 250, -1, 291, -1, -1, 235, -1, 236, -1, 235, 236, -1, 237, -1, 321, -1, 10, -1, 12, -1, 11, -1, 14, -1, 70, -1, -1, 13, 114, 238, 293, 115, -1, 240, -1, 235, 240, -1, 239, 235, 240, -1, 241, -1, 240, 241, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 72, -1, 74, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 27, -1, 28, -1, 29, -1, 26, -1, 24, -1, 25, -1, 244, -1, 239, 244, -1, 243, 241, -1, 243, 241, 235, -1, 243, 241, 244, -1, 245, -1, 234, 246, 234, -1, 242, -1, 235, 242, -1, 245, 236, -1, 245, 242, -1, 30, 114, 283, 115, -1, 30, 114, 177, 115, -1, 81, 114, 283, 115, -1, 81, 114, 177, 115, -1, 248, -1, 239, 248, -1, 247, 241, -1, 247, 241, 235, -1, 251, -1, 235, 251, -1, 248, 236, -1, 250, -1, 239, 250, -1, 249, 241, -1, 249, 241, 235, -1, 77, -1, 235, 77, -1, 250, 236, -1, 252, -1, 263, -1, 254, 119, 255, 120, -1, 254, 281, -1, -1, 254, 281, 253, 119, 255, 120, -1, 254, 114, 299, 115, 119, 255, 120, -1, 254, 292, -1, 33, 319, -1, 34, 319, -1, -1, 255, 256, -1, 257, 137, -1, 43, 257, 137, -1, 258, 137, -1, 43, 258, 137, -1, 373, -1, 373, 281, -1, 257, 121, 281, -1, 257, 121, -1, 233, 259, -1, 258, 121, 319, 259, -1, -1, 261, -1, 325, 260, -1, 338, 260, -1, 364, -1, -1, 261, -1, 135, 171, -1, 32, 319, -1, 262, 119, 265, 379, 120, -1, 262, 281, -1, -1, 262, 281, 264, 119, 265, 379, 120, -1, 281, 266, -1, 265, 121, 281, 266, -1, -1, 136, 171, -1, -1, 268, -1, 270, -1, 269, -1, 269, 140, 121, 139, 270, -1, 270, 140, 121, 139, 101, -1, 269, 140, 121, 139, 101, -1, 274, -1, 270, 140, 121, 139, 274, -1, 269, 140, 121, 139, 274, -1, 269, 140, 121, 139, 270, 140, 121, 139, 274, -1, 275, -1, 270, 140, 121, 139, 275, -1, -1, 272, -1, 273, -1, 273, 140, 121, 139, 101, -1, 277, -1, 276, -1, 273, 140, 121, 139, 277, -1, 273, 140, 121, 139, 276, -1, 276, -1, 369, 279, 380, -1, 377, 279, 380, -1, 235, 377, 279, 380, -1, 225, -1, 277, -1, 369, -1, 377, -1, 235, 377, -1, 378, -1, 232, 343, 380, -1, 232, 347, 380, -1, 232, -1, 232, 358, -1, 144, -1, 278, 121, 144, -1, 142, -1, 77, -1, 78, -1, 143, -1, 77, -1, 78, -1, 144, -1, 77, -1, 78, -1, 373, -1, 233, -1, 233, 364, -1, 373, -1, 378, -1, 233, -1, 233, 352, -1, -1, 136, 285, -1, 112, 285, -1, 172, -1, 119, 286, 379, 120, -1, -1, 285, -1, 287, 285, -1, 286, 121, 285, -1, 286, 121, 287, 285, -1, 288, 135, -1, 281, 135, -1, 289, -1, 288, 289, -1, 118, 281, -1, 116, 139, 172, 140, 117, -1, 116, 139, 317, 140, 117, -1, 116, 139, 171, 101, 171, 140, 117, -1, 118, 116, 139, 152, 140, 117, -1, 291, -1, 239, 291, -1, 290, 241, -1, 290, 241, 235, -1, 292, -1, 235, 292, -1, 291, 236, -1, 78, 114, 299, 115, -1, 294, 380, -1, 293, 121, 294, 380, -1, -1, 296, 281, 295, 297, -1, 233, 343, -1, 35, -1, 37, -1, 36, -1, 38, -1, -1, 297, 298, -1, 133, 281, 114, 299, 115, -1, 133, 119, 139, 305, 120, -1, 133, 114, 139, 293, 140, 115, 119, 139, 305, 120, 114, 299, 115, -1, 283, -1, 172, -1, 299, 121, 283, -1, 299, 121, 172, -1, 35, 301, -1, 240, 35, 301, -1, 300, 121, 301, -1, 302, 297, -1, 302, 297, 136, 283, -1, 281, -1, 280, 114, 139, 293, 140, 115, -1, 39, 281, 114, 139, 293, 140, 115, 119, 120, -1, -1, 39, 281, 114, 139, 293, 140, 115, 119, 304, 305, 120, -1, 306, -1, 305, 139, 306, -1, 307, 140, 137, -1, 308, 140, 137, -1, 223, -1, 225, -1, 307, 140, 121, 139, 279, -1, 233, 316, -1, 308, 140, 121, 139, 316, -1, -1, 310, -1, 312, -1, 310, 139, 312, -1, -1, 310, -1, 220, -1, 314, -1, 206, -1, -1, 5, 84, 313, 119, 311, 120, -1, 43, 312, -1, 315, -1, 330, 181, -1, 334, 139, 215, 181, -1, 224, 181, -1, 232, 330, 181, -1, 235, 330, 181, -1, 239, 330, 181, -1, 239, 235, 330, 181, -1, 232, 334, 139, 215, 181, -1, 235, 334, 139, 215, 181, -1, 239, 334, 139, 215, 181, -1, 239, 235, 334, 139, 215, 181, -1, 325, -1, 338, -1, 330, -1, 171, 127, 171, -1, -1, 67, 114, 146, 115, 319, -1, -1, 320, -1, 321, -1, 320, 321, -1, 42, 114, 114, 322, 115, 115, -1, 323, -1, 322, 121, 323, -1, -1, 324, -1, 324, 114, 150, 115, -1, 75, -1, 77, -1, 78, -1, 10, -1, 326, 319, -1, 327, -1, 328, 319, -1, 329, 319, -1, 142, -1, 114, 326, 115, -1, 157, 325, -1, 157, 235, 325, -1, 114, 327, 115, -1, 326, 356, -1, 114, 327, 115, 356, -1, 114, 328, 115, 357, -1, 114, 328, 115, -1, 114, 327, 115, 114, 139, 271, 140, 115, -1, 114, 329, 115, -1, 331, 319, -1, 332, -1, 333, 319, -1, 326, 114, 139, 271, 140, 115, -1, 114, 332, 115, 114, 139, 271, 140, 115, -1, 114, 331, 115, -1, 157, 330, -1, 157, 235, 330, -1, 114, 332, 115, -1, 114, 332, 115, 356, -1, 114, 333, 115, 357, -1, 114, 333, 115, -1, 335, -1, 336, -1, 337, -1, 326, 114, 278, 115, -1, 114, 336, 115, 114, 278, 115, -1, 114, 335, 115, -1, 157, 334, -1, 157, 235, 334, -1, 114, 336, 115, -1, 114, 336, 115, 356, -1, 114, 337, 115, 357, -1, 114, 337, 115, -1, 339, 319, -1, 340, -1, 341, 319, -1, 342, 319, -1, 348, -1, 114, 339, 115, -1, 157, 338, -1, 157, 235, 338, -1, 114, 340, 115, -1, 339, 356, -1, 114, 340, 115, 356, -1, 114, 341, 115, 357, -1, 114, 341, 115, -1, 339, 114, 139, 271, 140, 115, -1, 114, 340, 115, 114, 139, 271, 140, 115, -1, 114, 342, 115, -1, 326, 319, -1, 344, -1, 345, 319, -1, 346, 319, -1, 157, 343, -1, 157, 235, 343, -1, 114, 344, 115, -1, 326, 362, -1, 114, 344, 115, 356, -1, 114, 345, 115, 357, -1, 114, 345, 115, -1, 326, 114, 139, 271, 140, 115, -1, 114, 344, 115, 114, 139, 271, 140, 115, -1, 114, 346, 115, -1, 348, 319, -1, 349, -1, 350, 319, -1, 351, 319, -1, 77, -1, 78, -1, 157, 347, -1, 157, 235, 347, -1, 114, 349, 115, -1, 348, 362, -1, 114, 349, 115, 362, -1, 348, 114, 139, 271, 140, 115, -1, 114, 349, 115, 114, 139, 271, 140, 115, -1, 353, -1, 354, 319, -1, 355, 319, -1, 157, -1, 157, 235, -1, 157, 352, -1, 157, 235, 352, -1, 114, 353, 115, -1, 356, -1, 114, 353, 115, 356, -1, 114, 354, 115, 357, -1, 114, 354, 115, -1, 114, 139, 271, 140, 115, -1, 114, 353, 115, 114, 139, 271, 140, 115, -1, 114, 355, 115, -1, 116, 117, -1, 116, 117, 357, -1, 357, -1, 116, 139, 172, 140, 117, -1, 116, 139, 122, 140, 117, -1, 357, 116, 139, 172, 140, 117, -1, 357, 116, 139, 122, 140, 117, -1, 359, -1, 360, 319, -1, 361, 319, -1, 157, -1, 157, 235, -1, 157, 358, -1, 157, 235, 358, -1, 114, 359, 115, -1, 362, -1, 114, 359, 115, 362, -1, 114, 360, 115, 357, -1, 114, 360, 115, -1, 114, 139, 271, 140, 115, -1, 114, 359, 115, 114, 139, 271, 140, 115, -1, 114, 361, 115, -1, 363, -1, 363, 357, -1, 357, -1, 116, 117, -1, 116, 139, 235, 122, 140, 117, -1, 116, 139, 235, 140, 117, -1, 116, 139, 235, 172, 140, 117, -1, 116, 139, 7, 234, 172, 140, 117, -1, 116, 139, 235, 7, 172, 140, 117, -1, 365, -1, 366, 319, -1, 367, 319, -1, 157, -1, 157, 235, -1, 157, 364, -1, 157, 235, 364, -1, 114, 365, 115, -1, 356, -1, 114, 365, 115, 356, -1, 114, 366, 115, 357, -1, 114, 366, 115, -1, 114, 365, 115, 114, 139, 271, 140, 115, -1, 114, 367, 115, -1, 369, -1, 377, -1, 235, 377, -1, 370, -1, 371, -1, 157, 233, -1, 235, 157, 233, -1, 157, 378, -1, 235, 157, 378, -1, 157, 368, -1, 235, 157, 368, -1, 116, 117, 233, -1, 372, 233, -1, 116, 117, 357, 233, -1, 372, 357, 233, -1, 357, 233, -1, 116, 117, 370, -1, 372, 370, -1, 116, 117, 357, 370, -1, 372, 357, 370, -1, 357, 370, -1, 116, 139, 235, 122, 140, 117, -1, 116, 139, 235, 172, 140, 117, -1, 116, 139, 239, 172, 140, 117, -1, 116, 139, 239, 235, 172, 140, 117, -1, 377, -1, 235, 377, -1, 374, -1, 375, -1, 376, -1, 157, 233, -1, 235, 157, 233, -1, 157, 378, -1, 235, 157, 378, -1, 157, 373, -1, 235, 157, 373, -1, 116, 117, 233, -1, 116, 117, 357, 233, -1, 357, 233, -1, 116, 117, 375, -1, 116, 117, 357, 375, -1, 357, 375, -1, 116, 139, 270, 140, 117, -1, 377, 114, 139, 267, 140, 115, -1, 226, 114, 139, 267, 140, 115, -1, -1, 121, -1, -1, 136, 172, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 305, 305, 309, 316, 317, 318, 319, 320, 324, 325, 326, 330, 331, 335, 336, 340, 341, 345, 349, 350, 361, 363, 365, 366, 368, 373, 374, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 407, 408, 414, 415, 419, 420, 424, 425, 427, 429, 431, 433, 435, 440, 442, 444, 456, 457, 465, 468, 470, 472, 477, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 517, 518, 524, 525, 526, 527, 531, 532, 539, 540, 542, 544, 549, 550, 552, 557, 558, 560, 565, 566, 568, 570, 572, 577, 578, 580, 585, 586, 591, 592, 597, 598, 603, 604, 609, 610, 615, 616, 619, 626, 631, 632, 640, 641, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 666, 668, 673, 674, 679, 680, 686, 687, 693, 694, 695, 696, 697, 698, 699, 700, 701, 711, 718, 720, 730, 731, 736, 738, 744, 746, 750, 751, 756, 761, 764, 766, 768, 778, 780, 791, 792, 794, 798, 800, 804, 805, 810, 811, 815, 820, 821, 825, 827, 833, 834, 838, 840, 842, 844, 850, 851, 855, 857, 862, 864, 866, 871, 873, 878, 880, 884, 887, 891, 894, 898, 900, 902, 904, 909, 911, 913, 918, 920, 922, 924, 926, 931, 933, 935, 937, 942, 954, 955, 960, 962, 967, 971, 973, 975, 977, 979, 985, 986, 992, 993, 997, 998, 1003, 1005, 1011, 1012, 1014, 1020, 1025, 1035, 1037, 1041, 1042, 1047, 1049, 1053, 1054, 1058, 1060, 1064, 1065, 1069, 1070, 1074, 1075, 1090, 1091, 1092, 1093, 1094, 1098, 1103, 1110, 1120, 1125, 1130, 1138, 1143, 1148, 1153, 1158, 1188, 1193, 1200, 1202, 1209, 1214, 1219, 1230, 1235, 1240, 1245, 1250, 1259, 1264, 1272, 1273, 1274, 1275, 1281, 1286, 1294, 1295, 1296, 1297, 1301, 1302, 1303, 1304, 1309, 1310, 1319, 1320, 1325, 1326, 1330, 1332, 1334, 1336, 1338, 1341, 1340, 1352, 1353, 1355, 1365, 1366, 1371, 1373, 1375, 1377, 1379, 1382, 1384, 1387, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1426, 1427, 1429, 1431, 1433, 1438, 1439, 1445, 1446, 1448, 1450, 1455, 1457, 1459, 1461, 1466, 1467, 1469, 1471, 1476, 1477, 1479, 1484, 1485, 1487, 1489, 1494, 1496, 1498, 1503, 1504, 1508, 1510, 1516, 1515, 1519, 1521, 1526, 1528, 1534, 1535, 1540, 1541, 1543, 1544, 1553, 1554, 1556, 1558, 1563, 1565, 1571, 1572, 1574, 1577, 1580, 1585, 1586, 1591, 1596, 1600, 1602, 1608, 1607, 1614, 1616, 1622, 1623, 1631, 1632, 1636, 1637, 1638, 1640, 1642, 1649, 1650, 1652, 1654, 1659, 1660, 1666, 1667, 1671, 1672, 1677, 1678, 1679, 1681, 1689, 1690, 1692, 1695, 1697, 1701, 1702, 1703, 1705, 1707, 1711, 1716, 1724, 1725, 1734, 1736, 1741, 1742, 1743, 1747, 1748, 1749, 1753, 1754, 1755, 1759, 1760, 1761, 1766, 1767, 1768, 1769, 1775, 1776, 1778, 1783, 1784, 1789, 1790, 1791, 1792, 1793, 1808, 1809, 1814, 1815, 1821, 1823, 1826, 1828, 1830, 1853, 1854, 1856, 1858, 1863, 1864, 1866, 1871, 1876, 1877, 1883, 1882, 1886, 1890, 1892, 1894, 1896, 1902, 1903, 1908, 1913, 1915, 1920, 1922, 1923, 1925, 1930, 1932, 1934, 1939, 1941, 1946, 1951, 1959, 1965, 1964, 1978, 1979, 1984, 1985, 1989, 1994, 1999, 2007, 2012, 2023, 2024, 2029, 2030, 2036, 2037, 2041, 2042, 2043, 2046, 2045, 2056, 2065, 2071, 2077, 2086, 2092, 2098, 2104, 2110, 2118, 2124, 2132, 2138, 2147, 2148, 2149, 2153, 2159, 2160, 2166, 2167, 2171, 2172, 2177, 2182, 2183, 2189, 2190, 2192, 2197, 2198, 2199, 2200, 2235, 2237, 2238, 2240, 2245, 2250, 2255, 2257, 2259, 2264, 2266, 2268, 2270, 2275, 2277, 2286, 2288, 2289, 2294, 2296, 2298, 2303, 2305, 2307, 2312, 2314, 2316, 2325, 2326, 2327, 2331, 2333, 2335, 2340, 2342, 2344, 2349, 2351, 2353, 2368, 2370, 2371, 2373, 2378, 2379, 2384, 2386, 2388, 2393, 2395, 2397, 2399, 2404, 2406, 2408, 2418, 2420, 2421, 2423, 2428, 2430, 2432, 2437, 2439, 2441, 2443, 2448, 2450, 2452, 2483, 2485, 2486, 2488, 2493, 2498, 2506, 2508, 2510, 2515, 2517, 2522, 2524, 2538, 2539, 2541, 2546, 2548, 2550, 2552, 2554, 2559, 2560, 2562, 2564, 2569, 2571, 2573, 2579, 2581, 2583, 2587, 2589, 2591, 2593, 2607, 2608, 2610, 2615, 2617, 2619, 2621, 2623, 2628, 2629, 2631, 2633, 2638, 2640, 2642, 2648, 2649, 2651, 2660, 2663, 2665, 2668, 2670, 2672, 2685, 2686, 2688, 2693, 2695, 2697, 2699, 2701, 2706, 2707, 2709, 2711, 2716, 2718, 2726, 2727, 2728, 2733, 2734, 2738, 2740, 2742, 2744, 2746, 2748, 2755, 2757, 2759, 2761, 2763, 2766, 2768, 2770, 2772, 2774, 2779, 2781, 2783, 2788, 2814, 2815, 2817, 2821, 2822, 2826, 2828, 2830, 2832, 2834, 2836, 2843, 2845, 2847, 2849, 2851, 2853, 2858, 2865, 2867, 2885, 2887, 2892, 2893 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER", "STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL", "LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "ZERO_T", "ONE_T", "VALIST", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "OTYPE", "FTYPE", "DTYPE", "TTYPE", "TRAIT", "SIZEOF", "OFFSETOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "DISABLE", "ENABLE", "FALLTHRU", "TRY", "CATCH", "CATCHRESUME", "FINALLY", "THROW", "THROWRESUME", "AT", "ASM", "ALIGNAS", "ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT", "THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "CHARACTERconstant", "STRINGliteral", "REALDECIMALconstant", "REALFRACTIONconstant", "FLOATINGconstant", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE", "GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign", "DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign", "RSassign", "ANDassign", "ERassign", "ORassign", "ATassign", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "'*'", "'&'", "'+'", "'-'", "'!'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "':'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "field_name", "fraction_constants", "unary_expression", "ptrref_operator", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "assignment_operator", "tuple", "tuple_expression_list", "comma_expression", "comma_expression_opt", "statement", "labeled_statement", "compound_statement", "block_item_list", "block_item", "statement_list", "expression_statement", "selection_statement", "case_value", "case_value_list", "case_label", "case_label_list", "case_clause", "switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt", "choose_clause_list", "fall_through_opt", "fall_through", "iteration_statement", "for_control_expression", "jump_statement", "exception_statement", "handler_list", "handler_clause", "finally_clause", "exception_declaration", "asm_statement", "asm_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "$@2", "aggregate_key", "field_declaration_list", "field_declaration", "new_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name", "$@3", "enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt", "new_parameter_type_list", "new_parameter_list", "new_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "new_parameter_declaration", "new_abstract_parameter_declaration", "parameter_declaration", "abstract_parameter_declaration", "identifier_list", "identifier_or_type_name", "no_01_identifier_or_type_name", "no_attr_identifier_or_type_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "typegen_name", "type_parameter_list", "type_parameter", "$@4", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "trait_specifier", "$@5", "trait_declaration_list", "trait_declaration", "new_trait_declaring_list", "trait_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@6", "external_function_definition", "function_definition", "declarator", "subrange", "asm_name_opt", "attribute_list_opt", "attribute_list", "attribute", "attribute_name_list", "attribute_name", "attr_name", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "old_function_declarator", "old_function_no_ptr", "old_function_ptr", "old_function_array", "variable_type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 40, 41, 91, 93, 46, 123, 125, 44, 42, 38, 43, 45, 33, 126, 47, 37, 60, 62, 94, 124, 63, 58, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 138, 139, 140, 141, 141, 141, 141, 141, 142, 142, 142, 143, 143, 144, 144, 145, 145, 146, 147, 147, 148, 148, 148, 148, 148, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 150, 150, 151, 151, 152, 152, 153, 153, 153, 153, 153, 153, 153, 154, 154, 154, 155, 155, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 157, 157, 158, 158, 158, 158, 159, 159, 160, 160, 160, 160, 161, 161, 161, 162, 162, 162, 163, 163, 163, 163, 163, 164, 164, 164, 165, 165, 166, 166, 167, 167, 168, 168, 169, 169, 170, 170, 170, 171, 172, 172, 173, 173, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 175, 175, 176, 176, 177, 177, 178, 178, 179, 179, 179, 179, 179, 179, 179, 179, 179, 180, 181, 181, 182, 182, 183, 183, 183, 183, 184, 184, 185, 186, 186, 186, 186, 186, 186, 187, 187, 187, 188, 188, 189, 189, 190, 190, 191, 192, 192, 193, 193, 194, 194, 195, 195, 195, 195, 196, 196, 197, 197, 198, 198, 198, 199, 199, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 201, 201, 201, 202, 202, 202, 202, 202, 203, 203, 203, 203, 204, 205, 205, 205, 205, 205, 206, 206, 206, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 211, 212, 212, 213, 213, 214, 214, 215, 215, 216, 216, 217, 217, 218, 218, 219, 219, 220, 220, 221, 221, 221, 221, 221, 222, 222, 222, 223, 223, 223, 224, 224, 224, 224, 224, 225, 225, 226, 226, 227, 227, 227, 228, 228, 228, 228, 228, 229, 229, 230, 230, 230, 230, 231, 231, 232, 232, 232, 232, 233, 233, 233, 233, 234, 234, 235, 235, 236, 236, 237, 237, 237, 237, 237, 238, 237, 239, 239, 239, 240, 240, 241, 241, 241, 241, 241, 241, 241, 241, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 242, 243, 243, 243, 243, 243, 244, 244, 245, 245, 245, 245, 246, 246, 246, 246, 247, 247, 247, 247, 248, 248, 248, 249, 249, 249, 249, 250, 250, 250, 251, 251, 252, 252, 253, 252, 252, 252, 254, 254, 255, 255, 256, 256, 256, 256, 257, 257, 257, 257, 258, 258, 259, 259, 259, 259, 259, 260, 260, 261, 262, 263, 263, 264, 263, 265, 265, 266, 266, 267, 267, 268, 268, 268, 268, 268, 269, 269, 269, 269, 270, 270, 271, 271, 272, 272, 273, 273, 273, 273, 274, 274, 274, 274, 274, 275, 275, 275, 275, 275, 276, 276, 277, 277, 278, 278, 279, 279, 279, 280, 280, 280, 281, 281, 281, 282, 282, 282, 283, 283, 283, 283, 284, 284, 284, 285, 285, 286, 286, 286, 286, 286, 287, 287, 288, 288, 289, 289, 289, 289, 289, 290, 290, 290, 290, 291, 291, 291, 292, 293, 293, 295, 294, 294, 296, 296, 296, 296, 297, 297, 298, 298, 298, 299, 299, 299, 299, 300, 300, 300, 301, 301, 302, 302, 303, 304, 303, 305, 305, 306, 306, 307, 307, 307, 308, 308, 309, 309, 310, 310, 311, 311, 312, 312, 312, 313, 312, 312, 314, 314, 314, 315, 315, 315, 315, 315, 315, 315, 315, 315, 316, 316, 316, 317, 318, 318, 319, 319, 320, 320, 321, 322, 322, 323, 323, 323, 324, 324, 324, 324, 325, 325, 325, 325, 326, 326, 327, 327, 327, 328, 328, 328, 328, 329, 329, 330, 330, 330, 331, 331, 331, 332, 332, 332, 333, 333, 333, 334, 334, 334, 335, 335, 335, 336, 336, 336, 337, 337, 337, 338, 338, 338, 338, 339, 339, 340, 340, 340, 341, 341, 341, 341, 342, 342, 342, 343, 343, 343, 343, 344, 344, 344, 345, 345, 345, 345, 346, 346, 346, 347, 347, 347, 347, 348, 348, 349, 349, 349, 350, 350, 351, 351, 352, 352, 352, 353, 353, 353, 353, 353, 354, 354, 354, 354, 355, 355, 355, 356, 356, 356, 357, 357, 357, 357, 358, 358, 358, 359, 359, 359, 359, 359, 360, 360, 360, 360, 361, 361, 361, 362, 362, 362, 363, 363, 363, 363, 363, 363, 364, 364, 364, 365, 365, 365, 365, 365, 366, 366, 366, 366, 367, 367, 368, 368, 368, 369, 369, 370, 370, 370, 370, 370, 370, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 372, 372, 372, 372, 373, 373, 373, 374, 374, 375, 375, 375, 375, 375, 375, 376, 376, 376, 376, 376, 376, 377, 378, 378, 379, 379, 380, 380 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 3, 1, 6, 4, 3, 7, 2, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 1, 3, 1, 2, 6, 3, 7, 3, 7, 2, 2, 2, 0, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2, 4, 2, 4, 6, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 1, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 5, 4, 1, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 7, 1, 3, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 3, 3, 3, 3, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 0, 6, 7, 2, 2, 2, 0, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 2, 0, 7, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 2, 1, 4, 0, 1, 2, 3, 4, 2, 2, 1, 2, 2, 5, 5, 7, 6, 1, 2, 2, 3, 1, 2, 2, 4, 2, 4, 0, 4, 2, 1, 1, 1, 1, 0, 2, 5, 5, 13, 1, 1, 3, 3, 2, 3, 3, 2, 4, 1, 6, 9, 0, 11, 1, 3, 3, 3, 1, 1, 5, 2, 5, 0, 1, 1, 3, 0, 1, 1, 1, 1, 0, 6, 2, 1, 2, 4, 2, 3, 3, 3, 4, 5, 5, 5, 6, 1, 1, 1, 3, 0, 5, 0, 1, 1, 2, 6, 1, 3, 0, 1, 4, 1, 1, 1, 1, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 8, 3, 2, 1, 2, 6, 8, 3, 2, 3, 3, 4, 4, 3, 1, 1, 1, 4, 6, 3, 2, 3, 3, 4, 4, 3, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 1, 1, 2, 3, 3, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 2, 3, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 2, 6, 5, 6, 7, 7, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 8, 3, 1, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 2, 3, 2, 4, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 3, 4, 2, 3, 4, 2, 5, 6, 6, 0, 1, 0, 2 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 298, 298, 318, 316, 319, 317, 320, 321, 304, 306, 305, 0, 307, 332, 324, 329, 327, 328, 326, 325, 330, 331, 337, 338, 336, 333, 334, 335, 554, 554, 554, 0, 0, 0, 298, 225, 308, 322, 323, 9, 365, 0, 10, 16, 17, 0, 2, 72, 73, 572, 11, 298, 532, 530, 252, 3, 460, 3, 265, 0, 3, 3, 3, 253, 3, 0, 0, 0, 299, 300, 302, 298, 311, 314, 346, 290, 339, 344, 291, 354, 292, 361, 358, 368, 0, 0, 369, 293, 479, 483, 3, 3, 0, 2, 526, 531, 536, 303, 0, 0, 554, 584, 554, 2, 595, 596, 597, 298, 0, 738, 739, 0, 14, 0, 15, 298, 274, 275, 0, 299, 294, 295, 296, 297, 533, 309, 398, 555, 556, 376, 377, 14, 451, 452, 13, 447, 450, 0, 510, 505, 496, 451, 452, 0, 0, 535, 226, 0, 298, 0, 0, 0, 0, 0, 0, 0, 0, 298, 298, 0, 740, 299, 589, 601, 744, 737, 735, 742, 0, 0, 0, 259, 2, 0, 539, 445, 446, 444, 0, 0, 0, 0, 554, 0, 641, 642, 0, 0, 552, 548, 554, 569, 554, 554, 550, 2, 549, 554, 608, 554, 554, 611, 0, 0, 0, 298, 298, 316, 366, 2, 298, 266, 301, 312, 347, 359, 484, 0, 2, 0, 460, 267, 299, 340, 355, 362, 480, 0, 2, 0, 315, 341, 348, 349, 0, 356, 360, 363, 367, 452, 298, 378, 371, 375, 0, 400, 481, 485, 0, 0, 0, 1, 298, 2, 537, 583, 585, 298, 2, 748, 299, 751, 552, 552, 0, 299, 0, 0, 277, 554, 550, 2, 298, 0, 0, 298, 557, 2, 508, 2, 561, 0, 0, 0, 0, 0, 0, 21, 69, 4, 8, 19, 5, 6, 7, 0, 0, 298, 2, 74, 75, 76, 77, 57, 22, 58, 18, 26, 56, 78, 298, 0, 80, 84, 87, 90, 95, 98, 100, 102, 104, 106, 108, 112, 502, 23, 458, 501, 0, 456, 457, 0, 573, 588, 591, 594, 600, 603, 606, 2, 746, 298, 749, 2, 72, 298, 3, 432, 0, 440, 299, 298, 311, 339, 291, 354, 361, 3, 3, 414, 418, 428, 433, 479, 298, 434, 713, 714, 298, 435, 437, 2, 590, 602, 736, 2, 2, 254, 2, 465, 0, 463, 462, 461, 146, 2, 2, 256, 2, 2, 255, 2, 285, 2, 286, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574, 613, 0, 460, 2, 568, 577, 667, 570, 571, 540, 298, 2, 607, 616, 609, 610, 0, 280, 298, 298, 345, 299, 0, 299, 298, 741, 745, 743, 541, 298, 552, 260, 268, 313, 0, 2, 542, 298, 506, 342, 343, 287, 357, 364, 0, 298, 0, 755, 405, 0, 482, 507, 257, 258, 527, 298, 442, 0, 298, 242, 0, 2, 244, 0, 299, 0, 262, 2, 263, 282, 0, 0, 2, 298, 552, 298, 492, 494, 493, 495, 0, 0, 757, 0, 298, 0, 298, 497, 298, 567, 564, 565, 566, 0, 559, 562, 0, 0, 298, 64, 298, 78, 59, 298, 66, 298, 298, 62, 63, 2, 132, 0, 0, 454, 0, 453, 735, 298, 20, 31, 0, 34, 35, 40, 2, 0, 40, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 117, 116, 0, 60, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 653, 459, 650, 554, 554, 658, 486, 298, 2, 592, 593, 0, 604, 605, 0, 747, 750, 298, 298, 0, 715, 299, 719, 710, 711, 717, 0, 2, 2, 675, 554, 757, 624, 554, 554, 757, 554, 638, 554, 554, 689, 441, 672, 554, 554, 680, 687, 298, 436, 299, 0, 0, 298, 725, 299, 730, 757, 722, 298, 727, 757, 298, 298, 0, 0, 21, 2, 0, 22, 0, 466, 755, 0, 0, 472, 246, 0, 298, 0, 0, 0, 552, 576, 580, 582, 612, 615, 619, 622, 575, 614, 0, 288, 665, 0, 298, 281, 0, 0, 0, 0, 279, 2, 0, 264, 543, 298, 0, 0, 298, 2, 370, 390, 379, 0, 0, 384, 378, 756, 0, 0, 403, 0, 299, 3, 421, 3, 425, 424, 598, 0, 538, 298, 72, 3, 298, 440, 299, 3, 434, 435, 2, 0, 0, 0, 491, 310, 298, 0, 487, 489, 3, 2, 2, 0, 509, 3, 0, 561, 40, 0, 0, 227, 0, 0, 0, 0, 41, 0, 0, 298, 24, 0, 25, 0, 699, 704, 455, 696, 554, 554, 0, 114, 3, 2, 32, 0, 38, 0, 2, 29, 0, 113, 81, 82, 83, 85, 86, 88, 89, 93, 94, 91, 92, 96, 97, 99, 101, 103, 105, 107, 0, 0, 298, 0, 0, 0, 654, 655, 651, 652, 504, 503, 298, 0, 721, 298, 726, 299, 298, 669, 712, 668, 2, 298, 0, 0, 0, 0, 0, 0, 0, 0, 690, 0, 676, 627, 643, 677, 2, 623, 630, 438, 625, 626, 439, 2, 637, 646, 639, 640, 673, 674, 688, 716, 720, 718, 757, 272, 2, 752, 2, 429, 724, 729, 430, 3, 408, 3, 3, 3, 460, 0, 0, 2, 474, 471, 756, 0, 467, 2, 470, 473, 0, 298, 247, 269, 3, 276, 278, 0, 460, 2, 578, 579, 2, 617, 618, 0, 666, 544, 3, 351, 350, 353, 352, 298, 545, 0, 546, 378, 0, 0, 298, 0, 0, 699, 388, 391, 395, 554, 395, 394, 387, 380, 554, 382, 385, 298, 405, 399, 111, 406, 755, 0, 0, 443, 245, 0, 0, 3, 2, 675, 436, 0, 534, 0, 757, 758, 496, 0, 298, 298, 298, 0, 558, 560, 0, 0, 220, 0, 0, 0, 228, 229, 65, 0, 67, 70, 71, 0, 133, 0, 0, 0, 700, 701, 697, 698, 465, 79, 115, 130, 3, 114, 0, 28, 40, 3, 0, 37, 110, 0, 3, 657, 661, 664, 656, 3, 599, 723, 728, 2, 72, 298, 3, 3, 299, 0, 3, 629, 633, 636, 645, 679, 683, 686, 298, 3, 628, 644, 678, 298, 298, 431, 298, 298, 0, 0, 0, 0, 261, 111, 0, 3, 3, 0, 468, 0, 464, 0, 0, 250, 298, 0, 0, 134, 0, 0, 0, 0, 0, 134, 0, 0, 114, 114, 21, 365, 446, 69, 0, 22, 135, 0, 3, 136, 137, 2, 148, 138, 139, 140, 141, 142, 143, 150, 0, 152, 0, 0, 0, 289, 298, 298, 554, 0, 547, 298, 381, 383, 0, 397, 700, 392, 396, 393, 386, 390, 373, 404, 0, 586, 2, 671, 670, 0, 676, 2, 488, 490, 511, 3, 519, 520, 0, 2, 515, 3, 3, 0, 0, 563, 227, 0, 0, 0, 227, 0, 0, 703, 707, 709, 702, 755, 114, 0, 3, 54, 0, 54, 54, 3, 42, 44, 39, 0, 3, 109, 0, 2, 659, 660, 0, 298, 0, 0, 0, 3, 645, 0, 2, 631, 632, 2, 647, 2, 681, 682, 0, 0, 72, 0, 3, 3, 3, 3, 416, 415, 419, 754, 2, 2, 753, 0, 0, 0, 0, 3, 469, 3, 0, 248, 151, 3, 299, 298, 0, 0, 0, 0, 2, 196, 0, 194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 153, 298, 0, 554, 0, 271, 283, 3, 3, 553, 620, 374, 389, 402, 298, 270, 298, 0, 522, 499, 298, 0, 0, 498, 513, 0, 0, 0, 221, 0, 230, 68, 2, 705, 706, 0, 131, 128, 0, 51, 2, 45, 52, 53, 0, 0, 0, 0, 27, 0, 662, 298, 587, 731, 732, 733, 0, 684, 298, 298, 298, 3, 3, 0, 692, 0, 0, 0, 0, 298, 298, 3, 551, 475, 476, 0, 251, 299, 0, 0, 0, 0, 298, 197, 195, 0, 192, 198, 0, 0, 0, 0, 202, 205, 203, 199, 0, 200, 40, 149, 147, 134, 249, 0, 0, 423, 427, 426, 0, 516, 2, 517, 2, 518, 512, 298, 233, 0, 231, 0, 233, 298, 36, 129, 55, 0, 43, 33, 2, 49, 2, 47, 30, 3, 734, 3, 3, 3, 0, 0, 691, 693, 634, 648, 273, 2, 413, 3, 412, 0, 478, 134, 0, 0, 134, 3, 0, 134, 193, 0, 2, 2, 214, 204, 0, 0, 0, 0, 145, 581, 621, 2, 0, 0, 2, 234, 0, 0, 222, 0, 3, 3, 0, 0, 0, 0, 0, 0, 694, 695, 298, 0, 477, 157, 0, 0, 2, 170, 134, 159, 0, 187, 0, 134, 0, 2, 161, 0, 2, 0, 2, 2, 2, 201, 37, 298, 521, 523, 514, 0, 0, 0, 0, 0, 0, 3, 3, 663, 635, 649, 685, 417, 134, 163, 166, 0, 165, 169, 3, 172, 171, 0, 134, 189, 134, 3, 0, 298, 0, 298, 0, 2, 0, 2, 144, 2, 235, 236, 0, 232, 223, 708, 46, 0, 0, 158, 0, 0, 168, 238, 173, 2, 240, 188, 0, 191, 177, 206, 3, 215, 219, 208, 3, 0, 298, 0, 298, 0, 0, 0, 50, 48, 164, 167, 134, 0, 174, 298, 134, 134, 0, 178, 0, 0, 699, 216, 217, 218, 0, 207, 3, 209, 3, 298, 224, 237, 154, 175, 160, 134, 241, 190, 185, 183, 179, 162, 134, 0, 700, 0, 0, 0, 0, 155, 176, 186, 180, 184, 183, 181, 3, 3, 0, 0, 500, 182, 210, 212, 3, 3, 211, 213 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 803, 466, 303, 49, 135, 136, 304, 305, 306, 307, 308, 755, 756, 1121, 1122, 1123, 1233, 309, 380, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 1012, 517, 961, 546, 325, 962, 1042, 1043, 1510, 1045, 1046, 1047, 1048, 1511, 1049, 1050, 1428, 1429, 1391, 1392, 1393, 1489, 1490, 1494, 1495, 1530, 1531, 1051, 1350, 1052, 1053, 1286, 1287, 1288, 1472, 1054, 147, 941, 942, 943, 1370, 1452, 1464, 1465, 467, 468, 863, 864, 1020, 53, 54, 55, 56, 57, 347, 159, 60, 61, 62, 63, 64, 349, 66, 67, 265, 69, 70, 275, 351, 352, 73, 74, 75, 120, 77, 205, 354, 121, 80, 122, 82, 83, 453, 84, 452, 682, 683, 684, 896, 1073, 897, 85, 86, 456, 454, 690, 845, 846, 357, 358, 693, 694, 695, 359, 360, 361, 362, 464, 1056, 137, 138, 521, 327, 171, 639, 640, 641, 642, 643, 87, 123, 89, 488, 489, 928, 490, 278, 494, 328, 90, 139, 140, 91, 1309, 1095, 1096, 1097, 1098, 92, 93, 711, 94, 274, 95, 96, 188, 1014, 673, 411, 127, 97, 500, 501, 502, 189, 269, 191, 192, 193, 270, 100, 101, 102, 103, 104, 105, 106, 196, 197, 198, 199, 200, 815, 601, 602, 603, 604, 201, 606, 607, 608, 570, 571, 572, 573, 745, 107, 610, 611, 612, 613, 614, 615, 955, 747, 748, 749, 591, 365, 366, 367, 368, 329, 165, 109, 110, 111, 370, 688, 718 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1328 static const yytype_int16 yypact[] = { 7094, 5192, -1328, 47, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 41, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 209, 209, 209, 1263, 1027, 118, 7336, 312, -1328, -1328, -1328, -1328, -1328, 248, -1328, -1328, -1328, 1020, 187, -1328, -1328, -1328, -1328, 8977, -1328, -1328, -1328, -1328, 126, 266, -1328, 1653, -1328, -1328, -1328, -1328, 285, 1985, 410, 77, 7457, -1328, -1328, 8977, 983, -1328, -1328, 602, 416, 4937, 741, 1118, 602, 1546, -1328, -1328, 1203, 473, -1328, 602, 1860, -1328, 325, -1328, 471, 476, -1328, -1328, -1328, -1328, 367, 266, 209, -1328, 209, -1328, -1328, -1328, -1328, 7962, 1653, -1328, -1328, 1653, -1328, 375, -1328, 8082, -1328, -1328, 2291, 9246, -1328, 847, 847, 847, -1328, -1328, -1328, 209, -1328, -1328, -1328, 408, 426, 461, -1328, -1328, -1328, 472, -1328, -1328, -1328, -1328, -1328, 508, 512, -1328, -1328, 103, 8623, 1598, 500, 443, 518, 536, 544, 548, 556, 9286, 6718, 568, -1328, 9017, -1328, -1328, -1328, -1328, 575, -1328, 190, 3423, 3423, -1328, 577, 294, -1328, -1328, -1328, -1328, 578, 352, 387, 393, 209, 564, -1328, -1328, 1985, 3980, 641, -1328, 84, -1328, 209, 209, 266, -1328, -1328, 214, -1328, 209, 209, -1328, 4262, 597, 616, 847, 6752, -1328, -1328, -1328, 8977, -1328, -1328, 602, -1328, -1328, -1328, 266, -1328, 1653, 126, -1328, 7808, -1328, 847, 847, 847, 266, -1328, 1263, -1328, 6380, -1328, -1328, 600, 847, -1328, 847, -1328, 248, 8623, -1328, 625, -1328, 1027, 697, 847, -1328, 1263, 667, 675, -1328, 7336, 663, -1328, -1328, -1328, 3551, -1328, -1328, 8539, -1328, 641, 128, 5841, 9246, 2291, 4262, -1328, 236, -1328, -1328, 8082, 1653, 700, 10420, -1328, -1328, 221, -1328, 493, 710, 742, 6026, 753, 5841, 9865, -1328, 766, -1328, -1328, -1328, -1328, -1328, -1328, 9924, 9924, 8387, 187, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 808, -1328, 2340, 2114, 8623, 5841, -1328, 633, 22, 547, 447, 693, 771, 758, 785, 800, 32, -1328, -1328, -1328, 572, -1328, 268, -1328, -1328, 1598, -1328, -1328, 329, 827, -1328, 417, 827, -1328, -1328, 7962, -1328, 807, 834, 8741, -1328, -1328, 1437, 2015, 8168, 6752, 602, -1328, 602, 847, 847, -1328, -1328, -1328, -1328, -1328, -1328, 847, 7962, 1653, -1328, -1328, 9286, 1675, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 4621, 5841, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 2291, -1328, 818, 832, 839, 851, 857, 865, 870, 881, 3980, -1328, -1328, 888, 126, 903, -1328, -1328, 889, -1328, -1328, -1328, 3551, -1328, -1328, -1328, -1328, -1328, 4262, -1328, 8623, 8623, -1328, 847, 2291, 6876, 8243, -1328, -1328, -1328, -1328, 3551, 128, -1328, -1328, 602, 266, -1328, -1328, 3551, -1328, 6628, -1328, -1328, 847, 847, 552, 5831, 902, 906, 897, 905, 847, -1328, -1328, -1328, -1328, 9444, -1328, 569, 10160, -1328, 266, 913, -1328, 2291, 10200, 9983, -1328, -1328, -1328, -1328, 896, 4262, -1328, 8243, 641, 7215, -1328, -1328, -1328, -1328, 1315, 613, 907, 1027, 10420, 1475, 8082, -1328, 10420, -1328, -1328, -1328, -1328, 654, -1328, 931, 742, 246, 8387, -1328, 9319, -1328, -1328, 8387, -1328, 8505, 8387, -1328, -1328, 187, -1328, 666, 933, 695, 936, -1328, -1328, 6470, -1328, -1328, 345, -1328, -1328, 5841, -1328, 431, 5841, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 5841, -1328, -1328, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 5841, 4496, 572, 830, -1328, -1328, 209, 209, -1328, -1328, 8623, -1328, -1328, 889, 663, -1328, 889, 10042, -1328, -1328, 9286, 6470, 929, -1328, 9246, -1328, -1328, 575, -1328, 937, 947, 939, 3082, 257, 907, -1328, 209, 209, 907, 260, -1328, 209, 209, 889, -1328, -1328, 209, 209, -1328, 827, 9404, 1653, 10351, 176, 238, 9404, -1328, 8539, -1328, 907, -1328, 7962, -1328, 8, 5680, 5680, 1653, 5204, 927, -1328, 546, 943, 945, -1328, 950, 3423, 381, -1328, 1033, 1653, 5680, 663, 2291, 663, 641, 477, 827, -1328, -1328, 604, 827, -1328, -1328, -1328, 742, -1328, 827, 266, 9444, -1328, 678, 967, 680, 968, -1328, 807, 266, -1328, -1328, 3551, 266, 965, 9319, 187, -1328, 1893, -1328, 436, 439, 1027, -1328, 1027, 966, 5841, -1328, 1027, 10351, -1328, -1328, 972, -1328, -1328, -1328, 663, -1328, 10276, 834, -1328, 5680, 707, 8168, -1328, -1328, 575, 973, 976, 1315, 1837, -1328, -1328, 10420, 5841, -1328, -1328, 979, -1328, -1328, 993, -1328, 979, 982, 493, 5841, 977, 974, 26, 1002, 998, 1007, 1008, -1328, 1011, 1012, 6470, -1328, 5841, -1328, 695, 1078, -1328, -1328, -1328, 209, 209, 5376, 5841, 1015, -1328, -1328, 718, -1328, 5841, -1328, -1328, 733, -1328, -1328, -1328, -1328, 633, 633, 22, 22, 547, 547, 547, 547, 447, 447, 693, 771, 758, 785, 800, 5841, 106, 9444, 1023, 1035, 1036, 830, -1328, -1328, -1328, -1328, -1328, 9444, 730, -1328, 7962, -1328, 6842, 8859, -1328, -1328, -1328, 947, 9444, 952, 1039, 1040, 1041, 1042, 1044, 1046, 1047, -1328, 4747, 3082, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 889, -1328, -1328, -1328, 907, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 1053, 1054, -1328, 126, 1015, 5204, -1328, -1328, -1328, 4621, 1051, -1328, -1328, -1328, -1328, 1027, 6163, 1143, -1328, -1328, -1328, -1328, 1049, 126, -1328, -1328, 889, -1328, -1328, 889, 1060, 889, -1328, -1328, -1328, -1328, -1328, -1328, 6718, -1328, 266, -1328, -1328, 444, 451, 6718, 2036, 5841, 3709, -1328, -1328, 1045, 40, 1045, -1328, 1027, -1328, 209, -1328, -1328, 9131, 897, -1328, -1328, -1328, 906, 1061, 1056, -1328, -1328, 1069, 1072, -1328, 707, 1770, -1328, 275, -1328, 1837, 907, -1328, -1328, 1076, 10420, 8082, 8623, 1081, -1328, -1328, 734, 1058, -1328, 5841, 1084, 279, 1082, -1328, 1080, 663, 1080, -1328, -1328, 1080, -1328, 1087, 1089, 1091, 1078, -1328, -1328, -1328, 4621, -1328, -1328, -1328, 1088, 5841, 919, -1328, 5841, -1328, 919, -1328, -1328, 5841, -1328, 611, 827, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 834, 8741, -1328, -1328, 6966, 1093, -1328, 640, 827, -1328, 652, 657, 827, -1328, 847, 4999, -1328, -1328, -1328, 9444, 9444, -1328, 8243, 8243, 1096, 1094, 1095, 1099, -1328, 347, 89, 1015, -1328, 919, -1328, 3423, -1328, 5841, 464, -1328, 6346, 1103, 1105, 9806, 1107, 1112, 627, 759, 1566, 5841, 1115, 266, 5841, 5841, 1092, 1104, 248, 228, 302, 1108, 1123, 1097, -1328, -1328, -1328, 1128, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 1119, -1328, 1027, 1138, 5841, -1328, 9444, 9444, 209, 1140, -1328, 9171, -1328, -1328, 806, -1328, 3709, -1328, -1328, -1328, -1328, 1893, -1328, -1328, 1136, -1328, -1328, -1328, -1328, 1144, 1770, -1328, -1328, 1127, -1328, 979, -1328, -1328, 2291, 1145, -1328, -1328, -1328, 749, 1149, -1328, 26, 1146, 5841, 1132, 26, 26, 1157, 672, 827, -1328, -1328, 950, 5841, 1159, 1088, -1328, 1148, -1328, -1328, 1158, -1328, 81, -1328, 1166, 1158, -1328, 1169, -1328, -1328, 889, 1171, 6594, 1173, 1184, 1185, -1328, -1328, 1189, -1328, -1328, 889, -1328, -1328, -1328, -1328, 889, 5841, 5841, 834, 1188, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 5841, 5841, 1190, 1194, 1158, -1328, -1328, 1027, -1328, -1328, -1328, 7733, 8082, 5841, 5841, 1274, 5841, -1328, -1328, 1191, -1328, 1192, 5841, 1199, 1206, 5841, 1013, 1207, 37, 2395, -1328, -1328, 6163, 1211, 209, 482, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 9622, -1328, 8243, 1231, -1328, -1328, 8082, 492, 506, -1328, 1227, 1219, 742, 1242, -1328, 293, -1328, -1328, -1328, -1328, 889, 1238, -1328, -1328, 1243, 1273, -1328, -1328, 1273, 1273, 919, 1245, 1200, 1221, -1328, 1247, -1328, 9444, -1328, -1328, -1328, -1328, 1251, -1328, 9444, 9444, 9444, -1328, -1328, 1252, -1328, 1254, 1257, 1259, 446, 7928, 8048, -1328, -1328, -1328, -1328, 1258, -1328, 8318, 754, 762, 1267, 767, 3351, -1328, -1328, 507, -1328, -1328, 782, 1269, 1270, 266, 1323, 868, -1328, -1328, 5841, -1328, 5841, -1328, -1328, 9806, -1328, 1272, 1280, -1328, -1328, -1328, 1277, -1328, -1328, -1328, -1328, -1328, -1328, 8082, 742, 1284, -1328, 1264, 742, 9444, -1328, -1328, -1328, 919, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 1285, 1288, -1328, -1328, -1328, -1328, -1328, -1328, -1328, 1292, -1328, 1294, -1328, 9806, 292, 5841, 9806, -1328, 1297, 5841, -1328, 298, 1308, 1314, -1328, -1328, 1302, 1303, 1282, 817, -1328, -1328, -1328, -1328, 1653, 2291, 1300, -1328, 139, 5841, -1328, 792, -1328, 1158, 919, 919, 1310, 1312, 1313, 1317, -1328, -1328, 8243, 1309, -1328, 1388, 5841, 1299, -1328, -1328, 9716, -1328, 793, -1328, 1298, 9806, 1304, -1328, -1328, 1325, -1328, 1327, -1328, 1342, 1344, -1328, 1316, 8082, -1328, -1328, -1328, 742, 663, 1334, 1318, 1337, 1343, 1158, 1158, -1328, -1328, -1328, -1328, -1328, 9806, 149, -1328, 165, -1328, -1328, 7578, -1328, -1328, 1322, 5841, -1328, 5841, 7578, 266, 9319, 266, 9319, 1351, -1328, 1352, -1328, -1328, 1348, -1328, -1328, 794, -1328, -1328, -1328, -1328, 1347, 1355, -1328, 5841, 5841, -1328, -1328, 893, 117, -1328, -1328, 1338, -1328, 893, -1328, -1328, 2215, 663, -1328, -1328, 266, 9319, 266, 9319, 1362, 1341, 663, -1328, -1328, -1328, -1328, 9716, 1365, 893, 7657, 5841, 9626, 1366, 893, 1367, 2215, 3729, -1328, -1328, -1328, 1372, -1328, -1328, -1328, -1328, 8623, -1328, -1328, -1328, 9488, -1328, 9716, -1328, -1328, 1353, 5938, -1328, -1328, 9626, 266, 3729, 266, 1376, 1377, 795, -1328, 9488, -1328, -1328, -1328, 5938, -1328, -1328, -1328, 266, 266, -1328, -1328, -1328, -1328, -1328, -1328, -1328, -1328 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1328, 4218, 2910, -1328, 2669, -1328, 454, 0, -147, -1328, -1328, 463, -522, -472, -935, -1037, -1328, -158, 4217, 1113, -1328, 115, 430, 459, 419, 456, 932, 938, 935, 940, 941, -1328, -236, -629, 5014, -930, -1328, -1328, 543, -135, -872, -345, -1328, 1349, -1328, 324, -967, -1328, -1328, 49, -1328, -1273, -818, 170, -1328, -1328, -1328, -1328, -5, -1312, -1328, -1328, -1328, -1328, -1328, -1328, 244, -1175, 35, -1328, -502, -1328, 424, 219, -1328, 95, -1328, -308, -1328, -1328, -1328, 479, -837, -1328, -1328, 4, -995, 175, 1139, -1328, -1328, -1328, -119, -1328, 57, 315, -193, 1470, 3860, -1328, -1328, 63, 160, 685, 1861, -1328, 1798, -1328, -1328, 18, 1913, -1328, 2277, 2037, -1328, -1328, -1328, -545, -1328, 862, 867, 458, 646, -93, -1328, -1328, -1328, 856, 647, -449, -1328, -478, -351, -615, -1328, -1328, -928, -975, -3, 985, 981, 776, -1328, 107, 366, -24, -195, -132, 609, 706, -1328, 926, -1328, 2605, 1917, -447, 855, -1328, -1328, 645, -1328, -234, -1328, -136, -1328, -1328, -1328, -1230, 360, -1328, -1328, -1328, 1098, -1328, 12, -1328, -1328, -835, -110, -1327, -138, 2640, -1328, 3073, -1328, 848, -1328, -166, 72, -183, -179, -176, 2, -41, -36, -32, 62, 10, 19, 21, -98, -172, -171, -170, -167, -307, -494, -481, -476, -551, -310, -510, -1328, -1328, -515, 1010, 1014, 1017, 1772, 4826, -557, -496, -482, -480, -543, -1328, -503, -723, -721, -720, -573, -287, -290, -1328, -1328, 226, 457, -9, -1328, 3666, -27, -611, -257 }; /* 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 YYTABLE_NINF, syntax error. */ #define YYTABLE_NINF -530 static const yytype_int16 yytable[] = { 50, 114, 99, 398, 151, 116, 451, 399, 268, 152, 400, 760, 427, 153, 401, 402, 403, 746, 78, 404, 951, 406, 952, 953, 167, 438, 1055, 1173, 1057, 857, 1158, 114, 114, 1126, 50, 52, 99, 382, 383, 605, 735, 817, 600, 834, 720, 50, 145, 816, 725, 880, 409, 50, 78, 162, 787, 154, 820, 65, 592, 50, 911, 1430, 827, 71, 155, 50, 156, 194, 50, 52, 217, 50, 98, 227, 624, 220, 1156, 1157, 628, 1368, 1167, 1235, 33, 398, 114, 114, 808, 399, 167, 407, 400, 65, 424, 445, 401, 402, 403, 71, 261, 404, 809, 406, 805, 1290, 1190, 1191, 98, 203, 50, 663, 291, 50, 458, 163, 810, 806, 811, 150, 50, 1434, 807, 330, 474, 98, 473, 475, 33, 195, 672, 707, 218, 124, 566, 228, 1430, 504, 676, 190, 469, 143, 98, 907, 939, 98, 717, 151, 552, 553, 342, 50, 152, 162, 847, 847, 153, 125, 410, 281, 204, 1187, 72, 50, 518, 372, -239, -239, 567, 972, 847, 407, 951, 1240, 952, 953, 1291, 58, 117, 977, 901, 1449, 714, 1518, 849, 434, 1230, 1172, 50, 50, 988, 162, 1163, 242, 245, 708, 72, 408, 154, 866, 253, 1241, 410, 1320, 50, 1323, 1325, 155, 936, 156, 1533, 58, 50, 163, 162, 330, 661, 1434, 1164, 282, 805, 50, 1434, 98, 50, 373, 441, 151, 847, 741, 213, 114, 152, 806, 144, 98, 153, 1158, 807, -239, 169, 658, 1434, 971, 474, 211, 114, 434, 221, 1434, 114, 163, 1460, 33, 50, 114, 99, 919, 33, 1000, 397, 190, 1413, 820, 170, 999, 461, 1071, 50, 50, 1476, 162, 78, 976, 163, 50, 1414, 78, 1164, 164, 33, 848, 848, 1173, 98, 167, 442, 650, 1461, 52, 605, 1158, 666, 668, 987, 837, 98, 848, 796, 838, 469, 33, 1462, 1080, 33, 1504, 157, 1506, 809, 659, 805, 65, 1103, 376, 658, 665, 470, 71, 118, 469, 594, 670, 810, 806, 811, 146, 98, 469, 807, 377, 418, 592, 410, 50, 585, 372, 592, 1156, 1157, 843, 477, 1388, 1389, 164, 512, 821, 1067, 1388, 1389, 824, 50, 50, 479, 455, 410, 848, 492, 839, 729, 493, 1055, 840, 1057, 730, 148, -10, 817, 50, 160, 887, 841, 50, 518, 818, 844, 597, 825, 518, 597, 287, 518, 637, 659, 731, 440, 575, 1375, 172, 1153, 1154, 707, 576, 43, 44, 839, 373, 1105, 50, 1087, 439, 330, 330, 509, 667, 669, 98, 1349, 50, 182, 372, 1313, 1158, 834, 1390, 72, 202, 1106, 386, 513, 1399, 378, -294, 112, 599, 259, 50, 809, 547, 548, 58, 1314, 50, 160, 387, 781, 43, 44, 78, 433, 1173, 810, 1351, 811, 1419, 1420, 577, 1173, 410, 248, 1201, 1202, 1144, 1146, 1112, 708, 910, 78, 113, 1425, 108, 108, 696, 547, 753, 78, 326, -112, 114, 330, 373, -112, 724, 50, 251, 340, 389, 470, 1221, -525, 190, 50, 1398, 372, 253, 50, 1091, 99, 330, 638, 50, 737, 390, 114, 108, 114, 470, 1124, 547, 1173, 859, 433, 636, 78, 470, 1229, 496, 605, 980, 112, 998, 391, 858, 213, 264, 870, 877, 393, 898, 860, 52, 1044, 43, 44, 429, -12, 522, 392, 432, 1517, 114, 108, 1000, 394, 580, 114, 410, 1265, 1266, 164, 705, 868, 65, -448, 707, 556, 557, 970, 71, 1528, 758, 112, 330, 141, 142, 791, 1532, 98, 326, 469, 902, 333, 599, 904, 43, 44, 1338, 1468, 902, 1469, 1339, 497, 1112, 498, 499, 904, 903, 901, -449, 905, 558, 559, 1003, 114, 1068, 916, 900, 940, 1170, 277, 432, 1069, 835, 487, 871, 244, 410, 594, 1466, 50, 719, 50, 723, 1219, 1171, 1466, 1170, 1223, 708, 2, 207, 4, 5, 6, 7, 520, 1304, 253, 332, 1011, 50, 998, 1296, 1515, 112, 279, 141, 142, 160, 280, 1306, 741, 1305, 1327, 213, 50, 334, 43, 44, 114, 1329, 1330, 1331, 554, 555, 72, 1307, 1352, 50, 1488, 114, 50, 114, 798, 335, 1493, 1155, 1514, 1010, 584, 58, 910, 336, 589, 696, 853, 337, 762, 763, 764, 677, 804, 1088, 599, 338, 1513, 576, 37, 1061, 38, 1520, 685, 622, 1178, 50, 371, 626, 698, 114, 568, 114, 410, 375, 699, 114, 388, 78, 47, 48, 592, 384, 1099, 114, 1374, 396, 39, 910, 175, 176, 42, 463, 408, 108, 398, 425, 50, 50, 399, 43, 44, 400, 874, 78, 410, 401, 402, 403, 1016, 1129, 404, 410, 715, 406, 426, 522, 470, 522, 716, 1127, 522, 448, 112, 522, 326, 326, 1415, 854, -372, 2, 207, 4, 5, 6, 7, 43, 44, 899, 1140, 549, 410, 230, 470, 1427, 231, 550, 551, 235, 1181, 237, 1143, 681, 597, 726, 1361, 1145, 246, 597, 951, 727, 952, 953, 440, 696, 118, 740, 707, 1011, 804, 599, 1226, 741, 410, 696, 560, 561, 906, 881, 908, 883, 705, 407, 455, 741, 696, 741, 50, 1148, 459, 1074, 487, 1074, 326, 743, 487, 410, 460, 37, 50, 38, -401, 47, 48, 482, 520, 920, 520, 597, 503, 520, 291, 326, 520, 47, 48, 1486, 1427, 965, 39, 178, 175, 176, 42, 966, 8, 9, 10, 11, 12, 978, 708, 43, 44, 1101, 1044, 699, 213, 969, 966, 966, 637, 8, 9, 10, 11, 12, 114, 1041, 1217, 959, 213, 507, 910, 1345, 576, 732, 33, 733, 804, 741, 734, 1346, -3, 738, 512, 78, 1348, 741, 262, 1168, 599, 263, 741, 33, 563, 326, 525, 50, 562, 50, 1183, 1353, 230, 565, 36, 794, 114, 741, 685, 330, 658, 1416, 1435, 1482, 1538, 898, 1341, 1413, 741, 1483, 576, 36, 564, 113, 65, 332, 410, 708, 586, 50, 71, 910, 910, 1358, 1359, 833, 253, 332, 410, 1092, 589, 1408, 966, 108, 1388, 1389, 842, 339, 568, 114, 410, 651, 798, 705, 1362, -3, 47, 48, 652, 940, 835, 213, 637, 940, 940, 1236, 1237, 638, 114, 1070, 653, 899, 114, 1021, 1500, 418, 654, 410, 659, 769, 770, 771, 772, 900, 655, 754, 765, 766, 1212, 656, 759, 2, 207, 4, 5, 6, 7, 681, 112, 437, 657, 599, 696, 696, 1387, 1117, 660, 1395, 1118, 258, 1119, 43, 44, 1076, 479, 332, 410, 767, 768, 114, 773, 774, 229, 1112, 662, 686, 39, 72, 691, 1041, 42, 687, 50, 50, 50, 487, -243, 689, 463, 43, 44, 230, 58, 235, 78, 1272, 1273, 717, 1275, 728, 799, 1433, 742, 481, 1279, 750, 1437, 1282, 801, 37, 812, 38, 114, 696, 696, 802, -14, 597, 862, 638, 818, 332, 597, 47, 48, 856, 50, 1311, 1283, 1284, 1285, 50, -15, 470, 855, 1459, 882, 884, 889, 1175, 909, -422, 8, 9, 10, 11, 12, -529, 50, 39, 924, 934, 547, 42, 716, 867, 112, 869, 141, 142, 1093, 932, 43, 44, 979, 938, 937, 51, 115, 43, 44, 944, 114, 945, 33, -295, 946, 947, 178, 230, 948, 949, 8, 9, 10, 11, 12, 685, 45, 910, 963, 509, 973, 59, 59, 625, 47, 48, 899, 629, 440, 51, 36, 899, 974, 975, 910, 915, 989, 990, 991, 992, 149, 993, 33, 994, 995, 1369, 51, 1021, 1527, 1369, -410, -409, 114, 1018, 1527, 59, 1058, 1064, 1081, 1082, 187, 220, 894, 210, 72, 1527, 51, 1060, 1083, 1527, 36, 1084, 705, 1090, 743, 1102, 410, 1041, 1100, 58, 1104, 958, 47, 48, 1109, 1107, 1110, 1300, 1111, 59, 1138, 1114, 59, 1159, 1394, 78, 1162, 1160, 1161, 1176, 1092, 1177, 115, 1179, 681, 112, 910, 910, 1180, -9, 115, 1188, 1117, 267, 272, 1118, 1193, 1119, 43, 44, 114, -445, 114, 114, 696, -11, 741, 487, 1094, 326, -3, 696, 696, 696, 65, 1199, 1197, 1204, 1207, 1411, 71, 1209, 492, 310, 149, 1220, 1234, 1213, 1450, 705, 1218, 1222, 115, 345, 1225, 1526, 210, 112, 1231, 1270, 112, 1238, 141, 239, 1117, 1242, 1244, 1118, 1246, 1119, 43, 44, 1247, 43, 44, 685, 78, 1041, 112, 348, 833, 187, 187, 1248, 1249, 1117, 1251, 1258, 1118, 1267, 1119, 43, 44, 1268, 696, 1092, 398, 267, 1322, 240, 399, 114, 108, 400, 241, 51, 1274, 401, 402, 403, 1277, 1278, 404, 1294, 406, 470, 213, 210, 1280, 1324, 131, 1175, 132, 133, 134, 1281, 1289, 1041, 1302, 1308, 1041, 211, 221, 43, 44, 310, 1310, 72, 658, 1312, 1316, 1318, 1317, 59, 1321, 1499, 1326, 51, 50, 50, 1328, 1334, 58, 1335, 1336, 272, 1337, 1344, 114, 114, 272, 267, 267, 1347, 681, 1354, 1355, 115, 1285, 1363, 108, 1093, 39, 59, 1041, 836, 42, 1364, 1365, 1041, 1371, 1108, 407, 1372, 1382, 43, 44, 1383, 174, -411, 850, 1401, 310, 1386, 1397, 1092, 114, 1403, 1405, 1406, 1120, 1407, 1412, 865, 1120, 310, 659, 1421, 1041, 1422, 1423, 712, 1339, 440, 1424, 1426, 1431, 1436, 72, 47, 48, 569, 1440, 1438, 1442, 1444, 149, 1446, 439, 697, 254, 1453, 78, 58, 1455, 1448, 115, 1454, 151, 78, 345, 1467, 1456, 152, 598, 616, 1484, 153, 1477, 1479, 1481, 1120, 68, 119, 1485, 50, 114, 1492, 1507, 621, 1508, 108, 330, 621, 1521, 114, 1093, 1512, 1519, 1523, 1041, 470, 1529, 1536, 1537, 1041, 775, 1175, 470, 50, 50, 777, 162, 776, 1175, 1192, 68, 778, 1116, 779, 267, 78, 1487, 1041, 39, 1041, 175, 176, 42, 1041, 187, 1293, 1041, 161, 50, 1400, 372, 43, 44, 1539, 1041, 1094, 1357, 1224, 1041, 1373, 1470, 1206, 267, 1198, 310, 310, 890, 222, 267, 416, 621, 891, 1075, 912, 470, -296, 112, 371, 141, 142, 1175, 1079, 8, 9, 10, 11, 12, 793, 1017, 43, 44, 115, 435, 1113, 861, 477, 348, 926, 1120, 1089, 1303, 935, 443, 260, 783, 0, 710, 0, 784, 267, 1093, 785, 0, 0, 33, 721, 0, 267, 72, 621, 722, 51, 0, 0, 0, 72, 713, 0, 0, 0, 0, 0, 115, 58, 8, 9, 10, 11, 12, 0, 58, 0, 36, 0, 310, 331, 115, 59, 0, 310, 1094, 310, 310, 260, 350, 0, 0, 0, 108, 744, 0, 0, 0, 345, 0, 0, 33, 39, 0, 175, 176, 42, 519, 0, 0, 697, 0, 72, 108, 0, 43, 44, 0, 405, 0, 0, 0, 0, 0, 348, 0, 0, 58, 1474, 36, 1474, 0, 108, 423, 39, 0, 428, 430, 42, 0, 0, 161, 569, 569, 0, 0, 0, 43, 44, 1185, 310, 0, 0, 1120, 0, 1120, 1120, 0, 0, 0, 621, 345, 446, 0, 616, 1474, 449, 1474, 450, 0, 598, 0, 598, 45, 0, 0, 0, 457, 0, 0, 0, 47, 48, 68, 0, 1094, 0, 348, 471, 39, 621, 175, 176, 42, 108, 621, 0, 616, 478, 0, 0, 621, 43, 44, 621, 621, 430, 0, 0, 0, 0, 39, 0, 175, 176, 42, 0, 1473, 0, 1473, 621, 0, 267, 0, 43, 44, 0, 108, 697, 0, 348, 348, 0, 0, 1120, 0, 0, 0, 697, 0, 0, 8, 9, 10, 11, 12, 348, 0, 0, 697, 375, 674, 115, 0, 1473, 895, 1473, 0, 0, 76, 0, 0, 0, 0, 0, 1182, 1184, 1186, 0, 0, 0, 0, 260, 33, 0, 0, 590, 700, 621, 921, 616, 0, 618, 326, 0, 0, 713, 713, 0, 0, 0, 1120, 1120, 76, 0, 623, 0, 0, 0, 623, 0, 36, 0, 0, 348, 0, 0, 0, 8, 9, 10, 11, 12, 345, 0, 519, 0, 744, 744, 0, 519, 0, 0, 519, -297, 0, 0, 108, 0, 1451, 223, 8, 9, 10, 11, 12, 0, 0, 0, 0, 33, 0, 0, 0, 0, 920, 0, 597, 471, 0, 108, 0, 0, 47, 48, 0, 0, 108, 0, 0, 569, 0, 350, 33, 0, 0, 0, 471, 36, 621, 0, 983, 0, 39, 79, 471, 598, 42, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 598, 1501, 214, 36, 0, 692, 0, 0, 430, 0, 1509, 233, 0, 0, 0, 0, 0, 0, 0, 0, 79, 108, 0, 706, 712, 68, 0, 0, 0, 353, 0, 0, 47, 48, 430, 412, 0, 0, 430, 0, 0, 39, 420, 184, 185, 42, 0, 0, 0, 310, 0, 0, 0, 214, 43, 44, 0, 224, 216, 697, 697, 0, 0, 0, 0, 0, 0, 350, 0, 0, 0, 345, 0, 0, 243, 59, 0, 0, 345, 895, 893, 895, 410, 0, 0, 879, 0, 0, 47, 48, 0, 0, 0, 115, 886, 214, 0, 348, 888, 0, 0, 894, 447, 0, 0, 0, 921, 921, 0, 216, 0, 713, 786, 0, 412, 0, 0, 115, 310, 0, 697, 697, 0, 76, 0, 0, 0, 0, 76, 623, 797, 0, 0, 39, 0, 184, 185, 42, 0, 0, 744, 814, 0, 59, 355, 0, 43, 44, 0, 0, 0, 216, 0, 0, 0, 0, 214, 0, 0, 590, 0, 0, 0, 39, 590, 184, 185, 42, 0, 345, 623, 574, 186, 350, 350, 0, 43, 44, 215, 578, 47, 48, 581, 0, 39, 0, 184, 185, 42, 350, 621, 621, 0, 0, 214, 0, 0, 43, 44, 214, 0, 0, 596, 0, 597, 0, 0, 692, 310, 0, 47, 48, 216, 0, 0, 1410, 348, 348, 471, 0, 0, 0, 223, 893, 0, 410, 0, 0, 0, 215, 0, 47, 48, 0, 59, 0, 0, 0, 79, 0, 0, 0, 412, 79, 471, 0, 420, 350, 0, 0, 216, 0, 0, 115, 0, 216, 925, 0, 895, 430, 0, 0, 0, 895, 0, 0, 1301, 0, 0, 0, 0, 215, 921, 0, 0, 0, 0, 0, 0, 0, 267, 0, 706, 0, 214, 0, 0, 954, 76, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 0, 0, 353, 697, 0, 0, 0, 76, 0, 1066, 697, 697, 697, 0, 0, 76, 0, 0, 0, 345, 0, 0, 412, 545, 0, 692, 0, 0, 0, 0, 0, 0, 215, 353, 0, 692, 0, 224, 623, 0, 216, 986, 0, 0, 0, 0, 692, 0, 0, 0, 81, 353, 0, 76, 0, 0, 997, 0, 0, 0, 272, 115, 0, 39, 214, 184, 185, 42, 0, 0, 215, 0, 0, 697, 0, 215, 43, 44, 0, 0, 214, 310, 0, 0, 81, 0, 59, 59, 0, 0, 0, 0, 0, 0, 0, 353, 621, 0, 0, 0, 115, 0, 1497, 79, 410, 214, 68, 59, 0, 0, 47, 48, 0, 574, 574, 0, 0, 355, 0, 0, 216, 225, 79, 0, 0, 0, 59, 0, 797, 0, 79, 0, 0, 0, 0, 706, 0, 0, 1072, 39, 0, 184, 185, 42, 0, 0, 0, 0, 355, 621, 621, 0, 43, 44, 0, 1189, 0, 272, 353, 0, 215, 216, 310, 0, 1086, 0, 355, 0, 79, 0, 0, 0, 0, 430, 119, 348, 348, 0, 266, 0, 0, 0, 0, 59, 0, 0, 47, 48, 59, 0, 0, 0, 0, 0, 0, 115, 872, 0, 0, 526, 875, 353, 353, 527, 528, 529, 0, 0, 356, 0, 355, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 59, 0, 0, 214, 0, 590, 530, 0, 531, 0, 532, 533, 0, 0, 353, 0, 0, 0, 428, 215, 0, 0, 0, 692, 692, 76, 350, 350, 0, 0, 0, 214, 267, 526, 0, 0, 214, 527, 528, 529, 0, 0, 0, 0, 1174, 0, 0, 0, 0, 621, 0, 76, 355, 0, 353, 0, 0, 0, 0, 216, 215, 530, 0, 531, 0, 532, 1292, 0, 0, 0, 0, 0, 0, 0, 115, 348, 0, 0, 0, 0, 0, 81, 0, 0, 692, 692, 81, 216, 0, 353, 0, 0, 216, 0, 0, 355, 355, 115, 0, 0, 59, 0, 0, 0, 115, 214, 115, 0, 115, 0, 574, 355, 0, 0, 0, 0, 0, 0, 0, 214, 0, 0, 0, 59, 0, 0, 0, 0, 0, 355, 59, 0, 353, 0, 0, 0, 0, 0, 1498, 0, 79, 0, 353, 115, 0, 115, 0, 0, 223, 0, 0, 0, 0, 353, 0, 706, 115, 88, 0, 0, 0, 216, 1498, 1498, 0, 0, 79, 0, 0, 355, 0, 0, 310, 0, 0, 216, 0, 0, 0, 215, 225, 0, 59, 0, 0, 0, 1356, 1498, 0, 0, 0, 88, 0, 0, 0, 0, 0, 1271, 0, 0, 0, 0, 0, 0, 355, 0, 0, 215, 0, 0, 214, 0, 215, 76, 0, 0, 0, 68, 0, 0, 126, 129, 130, 412, 0, 0, 0, 0, 226, 0, 692, 0, 706, 0, 0, 353, 119, 0, 0, 0, 0, 0, 353, 0, 0, 0, 81, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 356, 0, 0, 224, 0, 81, 216, 692, 355, 0, 0, 0, 0, 81, 692, 692, 692, 0, 0, 0, 177, 215, 0, 0, 0, 350, 350, 0, 0, 0, 0, 356, 255, 0, 256, 215, 0, 1130, 1174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 81, 0, 1141, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 177, 0, 119, 177, 0, 0, 0, 0, 692, 0, 0, 0, 1471, 0, 1475, 0, 0, 0, 0, 0, 0, 355, 353, 353, 356, 353, 353, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 0, 395, 0, 0, 0, 1503, 0, 1505, 0, 0, 0, 414, 415, 215, 0, 0, 419, 0, 421, 422, 0, 412, 0, 0, 0, 0, 214, 0, 0, 0, 0, 0, 0, 350, 0, 0, 88, 0, 0, 353, 353, 88, 0, 356, 0, 0, 0, 0, 0, 1534, 0, 1535, 0, 0, 0, 0, 0, 0, 119, 0, 1227, 0, 0, 0, 1542, 1543, 0, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1174, 216, 0, 0, 0, 356, 356, 1174, 0, 0, 0, 0, 355, 355, 0, 355, 355, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 79, 0, 0, 0, 0, 0, 356, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, 226, 0, 0, 0, 0, 1174, 0, 0, 0, 168, 0, 173, 1522, 0, 179, 180, 181, 223, 183, 355, 355, 0, 81, 0, 0, 356, 0, 0, 0, 0, 0, 0, 234, 0, 0, 0, 0, 76, 0, 0, 0, 0, 0, 0, 249, 250, 0, 0, 0, 0, 353, 0, 353, 0, 0, 0, 0, 0, 0, 0, 356, 177, 0, 0, 0, 0, 88, 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 214, 363, 0, 177, 0, 0, 88, 0, 353, 0, 0, 355, 0, 0, 88, 353, 353, 353, 0, 0, 0, 0, 0, 0, 356, 0, 353, 353, 0, 0, 0, 0, 363, 0, 356, 0, 0, 0, 0, 76, 225, 0, 0, 0, 0, 356, 0, 0, 0, 0, 363, 0, 88, 224, 0, 0, 216, 8, 9, 10, 11, 12, 0, 0, 0, 0, 128, 128, 128, 0, 0, 0, 0, 79, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 355, 0, 355, 33, 0, 0, 0, 0, 363, 0, 0, 214, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 39, 355, 184, 185, 42, 356, 0, 0, 355, 355, 355, 0, 356, 43, 44, 0, 128, 0, 128, 355, 355, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 216, 79, 0, 0, 363, 0, 0, 0, 596, 0, 597, 0, 276, 0, 0, 0, 47, 48, 0, 0, 0, 0, 0, 215, 788, 789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 76, 0, 0, 0, 0, 363, 363, 76, 0, 819, 0, 0, 822, 823, 0, 826, 0, 828, 829, 0, 0, 363, 830, 831, 588, 128, 595, 0, 0, 0, 0, 0, 0, 128, 0, 128, 128, 619, 620, 363, 128, 0, 128, 128, 0, 0, 0, 0, 356, 356, 88, 356, 356, 0, 0, 0, 177, 0, 0, 76, 0, 0, 0, 0, 0, 0, 0, 355, 0, 81, 0, 177, 0, 0, 0, 0, 88, 0, 215, 363, 0, 0, 0, 0, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 356, 0, 128, 0, 363, 79, 0, 0, 0, 0, 0, 0, 79, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 31, 363, 956, 957, 32, 283, 284, 33, 285, 0, 0, 363, 0, 0, 0, 0, 0, 226, 79, 0, 0, 0, 363, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 36, 0, 37, 0, 38, 287, 0, 40, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 284, 297, 285, 298, 88, 0, 0, 0, 81, 47, 48, 299, 300, 301, 302, 0, 0, 0, 0, 0, 0, 356, 0, 356, -134, 0, 363, 0, 286, 0, 0, 0, 0, 363, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 356, 356, 356, 177, 0, 0, 0, 0, 297, 0, 378, 356, 356, 379, 0, 1077, 47, 48, 299, 300, 301, 302, 0, 0, 81, 465, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 356, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 913, 0, 914, 363, 363, 0, 363, 363, 0, 917, 918, 0, 0, 0, 923, 0, 0, 0, 36, 0, 37, 0, 38, 0, 88, 40, 41, 929, 0, 0, 0, 0, 933, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 595, 0, 0, 0, 0, 363, 363, 0, -3, 0, 128, 0, 0, 128, 128, 0, 128, 0, 128, 128, 0, 0, 0, 128, 128, 0, 0, 0, 0, 0, 0, 0, 177, 0, 0, 177, 177, 177, 0, 0, 0, 0, 1203, 0, 0, 0, 0, 81, 0, 0, 0, 0, 0, 0, 81, 166, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 0, 0, 0, 363, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 1006, 0, 1007, 1008, 1009, 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 33, 0, 0, 0, 0, 1059, 0, 0, 36, 226, 166, 0, 0, 39, 273, 184, 185, 42, 0, 1065, 0, 0, 0, 0, 0, 0, 43, 44, 36, 88, 0, 0, 0, 39, 0, 184, 185, 42, 0, 0, 0, 0, 363, 166, 363, 0, 43, 44, 0, 0, 128, 128, 893, 369, 410, 0, 374, 0, 1085, 0, 47, 48, 0, 0, 0, 0, 1295, 0, 0, 0, 0, 0, 1497, 0, 410, 0, 0, 0, 0, 363, 47, 48, 0, 0, 0, 0, 363, 363, 363, 0, 0, 0, 0, 177, 0, 0, 0, 363, 363, 0, 0, 1115, 0, 0, 0, 166, 1125, 0, 0, 0, 88, 1128, 0, 0, 0, 0, 1132, 219, 0, 0, 0, 1134, 0, 1135, 1136, 0, 0, 1139, 0, 0, 0, 0, 0, 0, 0, 166, 1151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 1165, 1166, 0, 0, 0, 212, 0, 0, 374, 0, 0, 0, 0, 0, 232, 166, 236, 0, 238, 0, 0, 0, 0, 0, 0, 247, 0, 0, 0, 0, 0, 1194, 0, 0, 1196, 0, 0, 0, 0, 0, 523, 177, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 166, 128, 0, 212, 0, 236, 238, 247, 0, 0, 0, 0, 0, 363, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 1211, 0, 0, 0, 0, 0, 1215, 1216, 0, 0, 593, 0, 0, 177, 0, 617, 177, 0, 0, 0, 212, 33, 0, 0, 0, 1232, 0, 0, 0, 0, 1239, 0, 0, 0, 177, 1243, 88, 0, 0, 0, 0, 0, 0, 88, 0, 0, 1250, 0, 0, 36, 0, 0, 0, 0, 39, 0, 184, 185, 42, 1257, 177, 1259, 1260, 1261, 1262, 177, 0, 43, 44, 0, 0, 0, 0, 0, 0, 0, 1269, 0, 1165, 0, 0, 212, 173, 236, 238, 247, 0, 0, 0, 0, 166, 166, 0, 186, 177, 88, 369, 0, 0, 0, 0, 47, 48, 0, 0, 0, 0, 0, 0, 0, 1297, 1298, 0, 0, 0, 0, 0, 523, 0, 212, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 0, 166, 0, 0, 177, 0, 0, 1332, 1333, 0, 0, 0, 0, 523, 0, 523, 0, 1343, 523, 0, 166, 523, 177, 0, 177, 0, 0, 0, 177, 0, 0, 177, 369, 212, 0, 0, 0, 0, 0, 177, 0, 0, 0, 177, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 236, 238, 0, 0, 0, 0, 0, 0, 247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1378, 0, 1379, 1380, 1381, 166, 0, 0, 0, 0, 0, 0, 0, 0, 1385, 0, 369, 0, 0, 800, 0, 0, 1396, 0, 0, 0, 0, 158, 212, 0, 0, 0, 0, 128, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 593, 212, 1417, 1418, 0, 593, 212, 0, 212, 0, 0, 0, 0, 0, 369, 369, 0, 0, 0, 0, 0, 0, 33, 0, 212, 0, 0, 212, 212, 252, 369, 0, 0, 0, 0, 212, 0, 0, 0, 257, 0, 0, 0, 0, 0, 0, 0, 1457, 1458, 212, 36, 0, 0, 0, 0, 39, 212, 184, 185, 42, 1463, 0, 523, 0, 0, 0, 0, 1463, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 0, 922, 0, 0, 0, 266, 0, 0, 0, 0, 0, 1496, 0, 47, 48, 1502, 0, 0, 0, 385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 709, 0, 0, 0, 0, 0, 0, 0, 417, 1524, 0, 1525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431, 0, 0, 0, 0, 0, 0, 0, 0, 436, 0, 0, 0, 0, 0, 0, 0, 1540, 1541, 444, 0, 0, 0, 212, 0, 1544, 1545, 0, 0, 0, 0, 0, 0, 0, 0, 0, 617, 0, 0, 0, 0, 0, 0, 0, 462, 0, 0, 0, 0, 472, 0, 212, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 480, 0, 0, 0, 0, 0, 491, 0, 495, 0, 0, 506, 0, 508, 511, 0, 0, 0, 0, 0, 0, 0, 0, 514, 515, 0, 0, 524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508, 508, 0, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 212, 0, 0, 0, 0, 583, 709, 0, 0, 587, 508, 0, 0, 286, 212, 0, 0, 0, 0, 287, 0, 523, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 630, 0, 0, 0, 631, 632, 0, 633, 508, 166, 0, 0, 0, 0, 644, 645, 0, 646, 647, 0, 648, 297, 649, 378, 0, 0, 0, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 0, 0, 583, 0, 0, 780, 0, 0, 0, 0, 664, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 593, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 675, 283, 284, 0, 285, 0, 0, 0, 0, 0, 369, 369, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 701, 0, 0, 0, 286, 0, 704, 0, 0, 0, 634, 462, 141, 142, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 523, 739, 297, 0, 635, 0, 636, 379, 0, 0, 47, 48, 299, 300, 301, 302, 757, 0, 0, 0, 0, 996, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 0, 212, 782, 283, 284, 33, 285, 0, 0, 0, 0, 792, 0, 0, 0, 709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 813, 286, 36, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 219, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 852, 0, 0, 0, 212, 0, 0, 0, 297, 0, 378, 0, 0, 0, 0, 0, 344, 48, 299, 300, 301, 302, 0, 709, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 885, 0, 0, 0, 0, 0, 0, 0, 892, 0, 0, 0, 0, 0, 0, 0, 0, 508, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252, 369, 369, 0, 212, 0, 0, 0, 0, 219, 0, 930, 931, 0, 0, 0, 0, 0, 212, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 508, 0, 0, 0, 964, 0, 0, 0, 0, 968, 0, 0, 33, 0, 0, 0, 341, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508, 0, 0, 0, 0, 0, 0, 0, 0, 1149, 36, 0, 8, 9, 10, 11, 12, 0, 0, 413, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 1001, 0, 0, 283, 284, 33, 285, 1002, 0, 0, 0, 0, 0, 0, 369, 0, 0, 0, 0, 0, 1004, 0, 1005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 36, 0, 1015, 0, 0, 287, 0, 0, 1019, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 1062, 295, 296, 1063, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 523, 0, 523, 0, 508, 0, 297, 0, 378, 0, 0, 0, 0, 0, 1150, 48, 299, 300, 301, 302, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 523, 0, 523, 0, 0, 0, 0, 0, 413, 0, 0, 0, 508, 0, 0, 0, 413, 579, 324, 413, 582, 0, 0, 0, 0, 0, 0, 364, 346, 166, 0, 609, 0, 0, 0, 0, 0, 0, 0, 381, 381, 0, 0, 0, 508, 0, 0, 0, 0, 0, 627, 0, 0, 0, 0, 1133, 508, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 413, 28, 29, 30, 413, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 508, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 324, 0, 0, 364, 0, 0, 0, 0, 36, 0, 0, 1195, 0, 112, 0, 40, 41, 0, 0, 286, 0, 0, 0, 0, 476, 287, 43, 44, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 1208, 0, 0, 413, 0, 1210, 364, 0, 46, 0, 0, 0, 0, 1214, 47, 48, 0, 0, 297, 0, 378, 508, 0, 0, 0, 751, 47, 48, 299, 300, 301, 302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 1245, 0, 0, 364, 0, 0, 0, 0, 0, 0, 0, 1252, 0, 0, 1253, 0, 1254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1263, 1264, 508, 508, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 381, 413, 413, 0, 0, 1276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 795, 364, 0, 0, 283, 284, 0, 285, 0, 0, 609, 0, 609, 609, 0, 0, 0, 0, 0, 609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 832, 364, 0, 1315, 286, 0, 364, 0, 0, 0, 287, 1319, 0, 0, 288, 364, 364, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 364, 0, 0, 0, 0, 413, 873, 0, 0, 413, 876, 0, 0, 0, 703, 0, 878, 0, 297, 0, 378, 0, 0, 958, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1366, 0, 1367, 0, 736, 0, 0, 0, 364, 609, 0, 0, 0, 0, 0, 0, 752, 0, 1376, 0, 1377, 0, 736, 0, 0, 736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1384, 0, 0, 761, 0, 0, 0, 0, 364, 0, 0, 0, 413, 413, 0, 1402, 1404, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1409, 0, 0, 1214, 0, 508, 0, 790, 0, 0, 0, 0, 0, 0, 346, 0, 0, 0, 752, 0, 0, 0, 508, 0, 0, 1432, 0, 0, 0, 413, 0, 0, 0, 0, 1439, 0, 0, 1441, 0, 1443, 1445, 1447, 0, 0, 0, 609, 0, 609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 609, 0, 0, 0, 0, 0, 0, 851, 0, 0, 0, 0, 0, 0, 0, 381, 0, 0, 0, 0, 0, 0, 0, 1478, 0, 1480, 0, 1214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508, 508, 0, 0, 0, 0, 1491, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 364, 28, 29, 30, 0, 0, 0, 364, 413, 0, 413, 33, 0, 0, 413, 0, 0, 0, 0, 0, 927, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 736, 0, 0, 0, 609, 609, 0, 0, 36, 0, 37, 752, 38, 950, 0, 40, 41, 0, 0, 0, 0, 0, 0, 960, 0, 0, 0, 0, 0, 967, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -407, 671, 0, 0, 413, 1131, 0, 47, 48, 0, 0, 0, 0, 0, 364, 0, 984, 985, 0, 0, 413, 1142, 0, 609, 609, 1147, 0, 0, 0, 0, 0, 0, 346, 0, 0, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 1013, 0, 0, 0, 381, 0, 0, 33, 678, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 413, 346, 0, 36, 0, 413, 0, 0, 346, 0, 40, 41, 286, 0, 609, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 413, 1228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324, 679, 0, 0, 0, 680, 0, 47, 48, 297, 0, 378, 0, 364, 0, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 0, 381, 0, 0, 0, 0, 960, 283, 284, 736, 285, 1023, 0, 1024, 0, 0, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 0, 0, 1516, 1033, 0, 1137, 0, 1034, 1035, 0, 35, 0, 286, 0, 0, 0, 1152, 0, 1036, 0, 175, 176, 1039, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 381, 0, 1169, 0, 0, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 960, 960, 0, 0, 297, 0, 378, 0, 0, 172, 0, 0, 47, 48, 299, 300, 301, 302, 283, 284, 0, 285, 1040, 0, 0, 0, 1200, -134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 364, 0, 0, 0, 0, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 960, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505, 0, 378, 0, 0, 0, 0, 851, 47, 48, 299, 300, 301, 302, 0, 0, 0, 0, 0, 0, 0, 0, 1255, 1256, 0, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 31, 0, 0, 0, 32, 283, 284, 33, 1022, 1023, 0, 1024, 364, 0, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 0, 0, 0, 1033, 0, 0, 0, 1034, 1035, 0, 35, 0, 286, 36, 0, 37, 0, 38, 1036, 0, 1037, 1038, 1039, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 298, 0, 0, 172, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 0, 0, 1040, 0, 0, 0, 413, -134, 0, 0, 0, 1360, 0, 736, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 31, 0, 0, 0, 32, 283, 284, 33, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -298, 0, 0, 0, 0, 286, 36, 0, 37, 0, 38, 287, 33, 40, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, -298, 298, 0, 0, 0, 0, 0, 47, 48, 299, 300, 301, 302, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 283, 284, 33, 285, 0, 0, 0, 0, 0, 0, 0, 324, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 36, 0, 37, 0, 38, 287, 0, 40, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 343, 0, 0, 0, 0, 751, 344, 48, 299, 300, 301, 302, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 283, 284, 33, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -299, 0, 0, 0, 0, 286, 36, 0, 37, 0, 38, 287, 33, 40, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, -299, 343, 0, 0, 0, 0, 751, 47, 48, 299, 300, 301, 302, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 283, 284, 33, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 286, 36, 0, 37, 0, 38, 287, 33, 40, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 40, 41, 0, 297, 0, 343, 0, 0, 0, 0, 0, 344, 48, 299, 300, 301, 302, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 283, 284, 33, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 286, 36, 0, 37, 0, 38, 287, 33, 208, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 208, 41, 0, 297, 0, 981, 0, 0, 0, 0, 0, 982, 48, 299, 300, 301, 302, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 283, 284, 33, 285, 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, 286, 36, 0, 37, 0, 38, 287, 0, 208, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 378, 0, 0, 0, 0, 0, 47, 48, 299, 300, 301, 302, -524, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 31, 0, 0, 0, 32, 0, 0, 33, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 36, 0, 37, 0, 38, 39, 0, 40, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 46, 0, 0, 0, 0, 0, 47, 48, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 31, 0, 0, 0, 32, 0, 0, 33, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 36, 0, 37, 0, 38, 39, 0, 40, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 46, 0, 0, 0, -528, 0, 47, 48, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 31, 0, 0, 0, 32, 0, 0, 33, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 36, 0, 37, 0, 38, 39, 0, 40, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 46, 0, 0, 0, 0, 0, 47, 48, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 33, 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, 36, 0, 37, 0, 38, 39, 0, 208, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 209, 0, 0, 0, 0, 0, 47, 48, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -298, 0, 28, 29, 30, 31, 0, 0, 0, 32, 0, 0, 33, 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, 36, 0, 37, 0, 38, 0, 0, 40, 41, 0, 0, -298, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 31, 0, 46, 0, 32, 0, 0, 33, 47, 48, 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, 36, 0, 37, 0, 38, 0, 0, 40, 41, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 46, 0, 33, 0, 0, 0, 47, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 37, 0, 38, 0, 0, 208, 41, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 209, 33, 0, 0, 0, 0, 47, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 37, 0, 38, 39, 0, 208, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 209, 0, 0, 0, 0, 0, 47, 48, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 33, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 36, 0, 37, 0, 38, 0, 33, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1340, 0, 0, 36, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 671, 0, 0, 0, 0, 0, 47, 48, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 258, 0, 28, 29, 30, 0, 47, 48, 0, 0, 0, 0, 33, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 36, 0, 37, 0, 38, 0, 33, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1342, 0, 0, 36, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 671, 0, 0, 0, 0, 0, 47, 48, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 46, 0, 28, 29, 30, 0, 47, 48, 0, 0, 0, 0, 33, 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, 36, 0, 37, 0, 38, 0, 0, 208, 41, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 271, 33, 0, 0, 0, 0, 47, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 37, 0, 38, 0, 0, 40, 41, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 671, 33, 0, 0, 0, 0, 47, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 37, 0, 38, 0, 0, 208, 41, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 283, 284, 33, 285, 0, 0, 0, 209, 0, 0, 0, 0, 0, 47, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 36, 0, 0, 0, 0, 287, 0, 40, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 516, 0, 0, 172, 0, 0, 47, 48, 299, 300, 301, 302, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 283, 284, 33, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 286, 36, 0, 0, 0, 0, 287, 33, 40, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 208, 41, 0, 297, -40, 298, 0, 0, 0, 0, 0, 47, 48, 299, 300, 301, 302, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 47, 48, 283, 284, 33, 285, 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, 286, 36, 0, 0, 0, 0, 287, 0, 40, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 298, 0, 0, 0, 0, 0, 47, 48, 299, 300, 301, 302, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 283, 284, 33, 285, 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, 286, 36, 0, 0, 0, 0, 287, 0, 40, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 343, 0, 0, 0, 0, 0, 47, 48, 299, 300, 301, 302, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 283, 284, 33, 285, 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, 286, 36, 0, 0, 0, 0, 287, 0, 40, 41, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 378, 0, 0, 0, 0, 0, 47, 48, 299, 300, 301, 302, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 36, 0, 28, 29, 30, 39, 0, 40, 41, 42, 0, 0, 33, 0, 0, 0, 0, 0, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 45, 39, 46, 208, 41, 42, 0, 0, 47, 48, 0, 0, 0, 0, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 271, 0, 0, 0, 0, 0, 47, 48, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 33, 678, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 36, 0, 28, 29, 30, 0, 0, 40, 41, 0, 0, 0, 33, 678, 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, 36, 0, 0, 0, 0, 0, 679, 40, 41, 0, 1078, 0, 47, 48, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 679, 33, 0, 0, 1205, 0, 47, 48, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 36, 0, 28, 29, 30, 0, 0, 208, 41, 0, 0, 0, 33, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 36, 0, 0, 0, 0, 33, 271, 40, 41, 0, 0, 0, 47, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 339, 0, 0, 0, 0, 0, 47, 48, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 679, 28, 29, 30, 0, 0, 47, 48, 0, 0, 0, 33, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 36, 0, 28, 29, 30, 0, 0, 40, 41, 0, 0, 0, 33, 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, 36, 0, 37, 0, 38, 0, 671, 40, 41, 0, 0, 0, 47, 48, 283, 284, 0, 285, 1023, 0, 1024, 0, 0, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 0, 0, 0, 1033, 0, 0, 0, 1034, 1035, 0, 35, 0, 286, 0, -420, 0, 0, 0, 1036, 0, 175, 176, 1039, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 378, 0, 0, 172, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 0, 0, 1040, 0, 0, 0, 0, -134, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 33, 0, 283, 284, 0, 285, 1023, 0, 1024, 1388, 1389, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 0, 0, 1516, 1033, 0, 0, 0, 1034, 1035, 36, 35, 37, 286, 38, 0, 0, 40, 41, 1036, 0, 175, 176, 1039, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 1299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 378, 0, 0, 172, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 283, 284, 1040, 285, 1023, 0, 1024, 1388, 1389, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 0, 0, 0, 1033, 0, 0, 0, 1034, 1035, 0, 35, 0, 286, 0, 0, 0, 0, 0, 1036, 0, 175, 176, 1039, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 378, 0, 0, 172, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 283, 284, 1040, 285, 1023, 0, 1024, 0, 0, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 0, 0, 0, 1033, 0, 0, 0, 1034, 1035, 0, 35, 0, 286, 0, 0, 0, 0, 0, 1036, 0, 175, 176, 1039, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 378, 0, 0, 172, 0, 0, 47, 48, 299, 300, 301, 302, 286, 0, 0, 0, 1040, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510, 0, 378, 0, 0, 0, 0, 0, 47, 48, 299, 300, 301, 302, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 513, 0, 378, 0, 0, 0, 0, 0, 47, 48, 299, 300, 301, 302, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 378, 0, 0, 0, 0, 0, 702, 48, 299, 300, 301, 302, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 378, 0, 0, 0, 0, 0, 344, 48, 299, 300, 301, 302, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 33, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 36, 0, 28, 29, 30, 112, 0, 40, 41, 0, 0, 0, 33, 0, 0, 0, 0, 0, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 37, 0, 38, 0, 0, 208, 41, 465, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 33, 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, 36, 0, 37, 0, 38, 0, 0, 40, 41, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 33, 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, 36, 0, 37, 0, 38, 0, 0, 208, 41, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 0, 28, 29, 30, 483, 484, 485, 486, 0, 0, 0, 33, 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, 36, 0, 0, 0, 0, 0, 0, 40, 41 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1328)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 0, 186, 45, 1, 240, 186, 118, 45, 186, 533, 205, 45, 186, 186, 186, 520, 0, 186, 743, 187, 743, 743, 51, 220, 863, 1022, 863, 640, 1005, 31, 32, 968, 34, 0, 34, 169, 170, 349, 512, 598, 349, 616, 491, 45, 34, 598, 495, 664, 188, 51, 34, 51, 569, 45, 599, 0, 345, 59, 689, 1388, 605, 0, 45, 65, 45, 65, 68, 34, 68, 71, 0, 71, 364, 71, 1004, 1005, 368, 1309, 1015, 1118, 42, 266, 84, 85, 596, 266, 115, 187, 266, 34, 202, 229, 266, 266, 266, 34, 107, 266, 596, 267, 596, 66, 1034, 1035, 34, 30, 108, 417, 84, 111, 248, 51, 596, 596, 596, 45, 118, 1392, 596, 148, 114, 51, 262, 263, 42, 65, 436, 480, 68, 84, 100, 71, 1461, 282, 444, 65, 257, 32, 68, 686, 116, 71, 136, 186, 124, 125, 157, 149, 186, 149, 630, 631, 186, 114, 116, 54, 81, 1031, 0, 161, 297, 161, 47, 48, 134, 782, 646, 267, 893, 90, 893, 893, 137, 0, 1, 792, 681, 1409, 487, 1493, 631, 210, 1114, 1022, 186, 187, 803, 187, 101, 84, 85, 480, 34, 67, 186, 646, 114, 118, 116, 1238, 202, 1240, 1241, 186, 728, 186, 1520, 34, 210, 149, 210, 240, 409, 1488, 127, 114, 712, 219, 1493, 149, 222, 161, 222, 266, 704, 121, 68, 229, 266, 712, 114, 161, 266, 1210, 712, 120, 112, 405, 1513, 135, 114, 68, 244, 272, 71, 1520, 248, 187, 101, 42, 252, 253, 252, 704, 42, 814, 186, 187, 121, 804, 136, 814, 252, 894, 266, 267, 1443, 267, 252, 786, 210, 273, 135, 257, 127, 51, 42, 630, 631, 1276, 210, 310, 222, 395, 121, 252, 598, 1264, 425, 426, 802, 117, 222, 646, 586, 121, 417, 42, 135, 912, 42, 1478, 117, 1480, 802, 405, 802, 252, 939, 121, 478, 423, 257, 252, 1, 436, 345, 429, 802, 802, 802, 11, 252, 444, 802, 137, 114, 616, 116, 331, 341, 331, 621, 1263, 1264, 627, 266, 47, 48, 115, 114, 600, 889, 47, 48, 604, 348, 349, 114, 244, 116, 704, 133, 117, 503, 136, 1195, 121, 1195, 115, 114, 135, 921, 365, 51, 675, 625, 369, 505, 114, 629, 116, 114, 510, 116, 75, 513, 379, 478, 135, 222, 115, 1319, 119, 1001, 1002, 739, 121, 88, 89, 117, 331, 115, 395, 121, 222, 425, 426, 285, 425, 426, 331, 1276, 405, 121, 405, 115, 1384, 983, 119, 252, 3, 135, 121, 114, 119, 116, 3, 75, 349, 107, 423, 920, 310, 311, 252, 135, 429, 115, 137, 567, 88, 89, 417, 210, 1432, 920, 1276, 920, 1376, 1377, 114, 1439, 116, 121, 1062, 1063, 992, 993, 954, 739, 689, 436, 1, 1384, 0, 1, 462, 345, 116, 444, 148, 117, 465, 493, 405, 121, 493, 470, 0, 157, 121, 417, 1104, 0, 405, 478, 1351, 478, 114, 482, 930, 482, 512, 379, 487, 512, 137, 490, 34, 492, 436, 966, 380, 1491, 116, 272, 118, 482, 444, 1113, 10, 814, 795, 75, 814, 121, 641, 350, 136, 650, 660, 121, 681, 135, 482, 863, 88, 89, 206, 114, 297, 137, 210, 1493, 527, 71, 1086, 137, 114, 532, 116, 1163, 1164, 310, 480, 648, 482, 114, 892, 95, 96, 780, 482, 1513, 116, 75, 576, 77, 78, 576, 1520, 482, 240, 675, 121, 115, 487, 121, 88, 89, 117, 1436, 121, 1438, 121, 75, 1072, 77, 78, 121, 137, 1077, 114, 137, 130, 131, 836, 580, 137, 701, 681, 731, 121, 114, 272, 137, 616, 275, 114, 119, 116, 621, 1432, 596, 490, 598, 492, 1102, 137, 1439, 121, 1106, 892, 4, 5, 6, 7, 8, 9, 297, 121, 114, 115, 852, 617, 925, 137, 1492, 75, 114, 77, 78, 310, 114, 121, 121, 137, 1245, 471, 632, 115, 88, 89, 636, 1252, 1253, 1254, 93, 94, 482, 137, 137, 645, 1464, 647, 648, 649, 587, 115, 1470, 1004, 1491, 850, 341, 482, 894, 115, 345, 664, 116, 115, 549, 550, 551, 115, 596, 926, 598, 115, 1490, 121, 72, 870, 74, 1495, 452, 364, 1025, 681, 114, 368, 115, 685, 114, 687, 116, 114, 121, 691, 114, 675, 122, 123, 983, 120, 932, 699, 1315, 137, 75, 939, 77, 78, 79, 253, 67, 252, 893, 114, 712, 713, 893, 88, 89, 893, 114, 701, 116, 893, 893, 893, 856, 114, 893, 116, 115, 895, 114, 505, 675, 507, 121, 971, 510, 137, 75, 513, 425, 426, 1371, 636, 119, 4, 5, 6, 7, 8, 9, 88, 89, 681, 114, 122, 116, 72, 701, 1388, 75, 128, 129, 78, 137, 80, 114, 452, 116, 115, 1292, 114, 87, 116, 1497, 121, 1497, 1497, 618, 782, 465, 115, 1133, 1019, 712, 713, 114, 121, 116, 792, 97, 98, 685, 115, 687, 115, 739, 895, 691, 121, 803, 121, 802, 996, 137, 898, 491, 900, 493, 114, 495, 116, 137, 72, 814, 74, 119, 122, 123, 119, 505, 114, 507, 116, 114, 510, 84, 512, 513, 122, 123, 1460, 1461, 115, 75, 59, 77, 78, 79, 121, 10, 11, 12, 13, 14, 115, 1133, 88, 89, 115, 1195, 121, 692, 120, 121, 121, 856, 10, 11, 12, 13, 14, 862, 863, 115, 750, 706, 114, 1104, 115, 121, 505, 42, 507, 802, 121, 510, 115, 137, 513, 114, 863, 115, 121, 108, 1017, 814, 111, 121, 42, 132, 576, 84, 893, 123, 895, 137, 115, 213, 99, 70, 586, 902, 121, 678, 932, 1072, 115, 115, 115, 115, 1077, 1263, 121, 121, 121, 121, 70, 133, 465, 863, 115, 116, 1210, 117, 925, 863, 1163, 1164, 61, 62, 616, 114, 115, 116, 931, 621, 120, 121, 482, 47, 48, 627, 116, 114, 945, 116, 115, 885, 892, 1295, 117, 122, 123, 115, 1102, 983, 797, 958, 1106, 1107, 1119, 1120, 856, 964, 893, 115, 895, 968, 862, 1473, 114, 115, 116, 1072, 556, 557, 558, 559, 1077, 115, 527, 552, 553, 1094, 115, 532, 4, 5, 6, 7, 8, 9, 678, 75, 219, 115, 925, 1001, 1002, 1345, 82, 114, 1348, 85, 116, 87, 88, 89, 902, 114, 115, 116, 554, 555, 1015, 560, 561, 35, 1522, 117, 119, 75, 863, 119, 1025, 79, 121, 1028, 1029, 1030, 716, 119, 136, 580, 88, 89, 352, 863, 354, 1022, 1176, 1177, 136, 1179, 114, 117, 1392, 115, 273, 1185, 115, 1397, 1188, 117, 72, 117, 74, 1058, 1062, 1063, 114, 135, 116, 31, 958, 114, 115, 116, 122, 123, 121, 1072, 1220, 61, 62, 63, 1077, 135, 1022, 135, 1426, 115, 115, 119, 1022, 120, 115, 10, 11, 12, 13, 14, 120, 1094, 75, 120, 115, 983, 79, 121, 647, 75, 649, 77, 78, 931, 114, 88, 89, 795, 137, 135, 0, 1, 88, 89, 115, 1118, 121, 42, 3, 115, 115, 348, 440, 115, 115, 10, 11, 12, 13, 14, 907, 114, 1371, 121, 1022, 115, 0, 1, 365, 122, 123, 1072, 369, 986, 34, 70, 1077, 115, 115, 1388, 699, 115, 115, 115, 115, 45, 115, 42, 115, 115, 1310, 51, 1058, 1511, 1314, 115, 115, 1170, 120, 1517, 34, 31, 115, 115, 121, 65, 1175, 135, 68, 1022, 1528, 71, 136, 117, 1532, 70, 117, 1133, 115, 114, 135, 116, 1195, 115, 1022, 114, 119, 122, 123, 115, 121, 115, 1208, 115, 68, 115, 121, 71, 115, 1347, 1195, 115, 121, 121, 114, 1214, 114, 107, 114, 907, 75, 1460, 1461, 114, 135, 115, 114, 82, 118, 119, 85, 137, 87, 88, 89, 1238, 135, 1240, 1241, 1245, 135, 121, 930, 931, 932, 120, 1252, 1253, 1254, 1195, 115, 135, 115, 120, 1367, 1195, 115, 133, 148, 149, 117, 116, 120, 1413, 1210, 119, 137, 157, 158, 115, 1507, 161, 75, 117, 1170, 75, 121, 77, 78, 82, 117, 115, 85, 115, 87, 88, 89, 117, 88, 89, 1067, 1276, 1295, 75, 158, 983, 186, 187, 117, 117, 82, 115, 117, 85, 117, 87, 88, 89, 117, 1315, 1309, 1497, 202, 116, 114, 1497, 1319, 863, 1497, 119, 210, 50, 1497, 1497, 1497, 137, 137, 1497, 120, 1498, 1276, 1174, 222, 137, 116, 75, 1276, 77, 78, 79, 137, 137, 1345, 115, 120, 1348, 1174, 1175, 88, 89, 240, 135, 1195, 1522, 115, 120, 86, 117, 222, 117, 1473, 117, 252, 1366, 1367, 117, 117, 1195, 117, 115, 260, 115, 117, 1376, 1377, 265, 266, 267, 114, 1067, 114, 114, 272, 63, 115, 931, 1214, 75, 252, 1392, 617, 79, 115, 119, 1397, 114, 945, 1498, 137, 117, 88, 89, 117, 57, 115, 632, 101, 297, 117, 115, 1409, 1414, 101, 114, 114, 964, 137, 120, 645, 968, 310, 1522, 115, 1426, 115, 115, 114, 121, 1271, 115, 45, 135, 137, 1276, 122, 123, 326, 115, 137, 115, 101, 331, 101, 1271, 462, 99, 115, 1432, 1276, 115, 137, 341, 137, 1497, 1439, 345, 137, 117, 1497, 349, 350, 117, 1497, 115, 115, 120, 1015, 0, 1, 117, 1473, 1474, 137, 114, 364, 137, 1022, 1507, 368, 115, 1483, 1309, 120, 120, 115, 1488, 1432, 137, 115, 115, 1493, 562, 1432, 1439, 1497, 1498, 564, 1498, 563, 1439, 1040, 34, 565, 963, 566, 395, 1491, 1461, 1511, 75, 1513, 77, 78, 79, 1517, 405, 1195, 1520, 51, 1522, 1353, 1522, 88, 89, 1532, 1528, 1214, 1286, 1107, 1532, 1314, 1439, 1077, 423, 1058, 425, 426, 678, 71, 429, 194, 431, 678, 900, 691, 1491, 3, 75, 114, 77, 78, 1491, 908, 10, 11, 12, 13, 14, 580, 856, 88, 89, 452, 217, 958, 642, 1497, 431, 716, 1118, 928, 1214, 727, 227, 107, 568, -1, 482, -1, 568, 470, 1409, 568, -1, -1, 42, 114, -1, 478, 1432, 480, 119, 482, -1, -1, -1, 1439, 487, -1, -1, -1, -1, -1, 493, 1432, 10, 11, 12, 13, 14, -1, 1439, -1, 70, -1, 505, 149, 507, 482, -1, 510, 1309, 512, 513, 157, 158, -1, -1, -1, 1175, 520, -1, -1, -1, 524, -1, -1, 42, 75, -1, 77, 78, 79, 297, -1, -1, 664, -1, 1491, 1195, -1, 88, 89, -1, 187, -1, -1, -1, -1, -1, 524, -1, -1, 1491, 1441, 70, 1443, -1, 1214, 202, 75, -1, 205, 206, 79, -1, -1, 210, 568, 569, -1, -1, -1, 88, 89, 122, 576, -1, -1, 1238, -1, 1240, 1241, -1, -1, -1, 586, 587, 231, -1, 590, 1478, 235, 1480, 237, -1, 596, -1, 598, 114, -1, -1, -1, 246, -1, -1, -1, 122, 123, 252, -1, 1409, -1, 587, 257, 75, 616, 77, 78, 79, 1276, 621, -1, 623, 267, -1, -1, 627, 88, 89, 630, 631, 275, -1, -1, -1, -1, 75, -1, 77, 78, 79, -1, 1441, -1, 1443, 646, -1, 648, -1, 88, 89, -1, 1309, 782, -1, 630, 631, -1, -1, 1319, -1, -1, -1, 792, -1, -1, 10, 11, 12, 13, 14, 646, -1, -1, 803, 114, 441, 678, -1, 1478, 681, 1480, -1, -1, 0, -1, -1, -1, -1, -1, 1028, 1029, 1030, -1, -1, -1, -1, 341, 42, -1, -1, 345, 467, 704, 705, 706, -1, 351, 1507, -1, -1, 712, 713, -1, -1, -1, 1376, 1377, 34, -1, 364, -1, -1, -1, 368, -1, 70, -1, -1, 704, -1, -1, -1, 10, 11, 12, 13, 14, 739, -1, 505, -1, 743, 744, -1, 510, -1, -1, 513, 3, -1, -1, 1409, -1, 1414, 71, 10, 11, 12, 13, 14, -1, -1, -1, -1, 42, -1, -1, -1, -1, 114, -1, 116, 417, -1, 1432, -1, -1, 122, 123, -1, -1, 1439, -1, -1, 786, -1, 431, 42, -1, -1, -1, 436, 70, 795, -1, 797, -1, 75, 0, 444, 802, 79, -1, -1, -1, -1, -1, -1, -1, -1, 88, 89, 814, 1474, 68, 70, -1, 462, -1, -1, 465, -1, 1483, 77, -1, -1, -1, -1, -1, -1, -1, -1, 34, 1491, -1, 480, 114, 482, -1, -1, -1, 158, -1, -1, 122, 123, 491, 190, -1, -1, 495, -1, -1, 75, 197, 77, 78, 79, -1, -1, -1, 863, -1, -1, -1, 119, 88, 89, -1, 71, 68, 1001, 1002, -1, -1, -1, -1, -1, -1, 524, -1, -1, -1, 885, -1, -1, 84, 863, -1, -1, 892, 893, 114, 895, 116, -1, -1, 663, -1, -1, 122, 123, -1, -1, -1, 907, 672, 161, -1, 885, 676, -1, -1, 135, 231, -1, -1, -1, 920, 921, -1, 119, -1, 925, 569, -1, 269, -1, -1, 931, 932, -1, 1062, 1063, -1, 252, -1, -1, -1, -1, 257, 586, 587, -1, -1, 75, -1, 77, 78, 79, -1, -1, 954, 598, -1, 931, 158, -1, 88, 89, -1, -1, -1, 161, -1, -1, -1, -1, 222, -1, -1, 616, -1, -1, -1, 75, 621, 77, 78, 79, -1, 983, 627, 326, 114, 630, 631, -1, 88, 89, 68, 334, 122, 123, 337, -1, 75, -1, 77, 78, 79, 646, 1004, 1005, -1, -1, 260, -1, -1, 88, 89, 265, -1, -1, 114, -1, 116, -1, -1, 664, 1022, -1, 122, 123, 222, -1, -1, 1366, 1004, 1005, 675, -1, -1, -1, 351, 114, -1, 116, -1, -1, -1, 119, -1, 122, 123, -1, 1022, -1, -1, -1, 252, -1, -1, -1, 397, 257, 701, -1, 401, 704, -1, -1, 260, -1, -1, 1067, -1, 265, 713, -1, 1072, 716, -1, -1, -1, 1077, -1, -1, 1208, -1, -1, -1, -1, 161, 1086, -1, -1, -1, -1, -1, -1, -1, 1094, -1, 739, -1, 350, -1, -1, 744, 417, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, -1, -1, 431, 1245, -1, -1, -1, 436, -1, 887, 1252, 1253, 1254, -1, -1, 444, -1, -1, -1, 1133, -1, -1, 477, 136, -1, 782, -1, -1, -1, -1, -1, -1, 222, 462, -1, 792, -1, 351, 795, -1, 350, 798, -1, -1, -1, -1, 803, -1, -1, -1, 0, 480, -1, 482, -1, -1, 813, -1, -1, -1, 1174, 1175, -1, 75, 430, 77, 78, 79, -1, -1, 260, -1, -1, 1315, -1, 265, 88, 89, -1, -1, 446, 1195, -1, -1, 34, -1, 1174, 1175, -1, -1, -1, -1, -1, -1, -1, 524, 1210, -1, -1, -1, 1214, -1, 114, 417, 116, 471, 863, 1195, -1, -1, 122, 123, -1, 568, 569, -1, -1, 431, -1, -1, 430, 71, 436, -1, -1, -1, 1214, -1, 885, -1, 444, -1, -1, -1, -1, 892, -1, -1, 895, 75, -1, 77, 78, 79, -1, -1, -1, -1, 462, 1263, 1264, -1, 88, 89, -1, 1033, -1, 1271, 587, -1, 350, 471, 1276, -1, 921, -1, 480, -1, 482, -1, -1, -1, -1, 930, 931, 1263, 1264, -1, 114, -1, -1, -1, -1, 1271, -1, -1, 122, 123, 1276, -1, -1, -1, -1, -1, -1, 1309, 651, -1, -1, 86, 655, 630, 631, 90, 91, 92, -1, -1, 158, -1, 524, -1, -1, -1, -1, -1, -1, 646, -1, -1, -1, 1309, -1, -1, 590, -1, 983, 114, -1, 116, -1, 118, 119, -1, -1, 664, -1, -1, -1, 996, 430, -1, -1, -1, 1001, 1002, 675, 1004, 1005, -1, -1, -1, 618, 1367, 86, -1, -1, 623, 90, 91, 92, -1, -1, -1, -1, 1022, -1, -1, -1, -1, 1384, -1, 701, 587, -1, 704, -1, -1, -1, -1, 590, 471, 114, -1, 116, -1, 118, 119, -1, -1, -1, -1, -1, -1, -1, 1409, 1384, -1, -1, -1, -1, -1, 252, -1, -1, 1062, 1063, 257, 618, -1, 739, -1, -1, 623, -1, -1, 630, 631, 1432, -1, -1, 1409, -1, -1, -1, 1439, 692, 1441, -1, 1443, -1, 786, 646, -1, -1, -1, -1, -1, -1, -1, 706, -1, -1, -1, 1432, -1, -1, -1, -1, -1, 664, 1439, -1, 782, -1, -1, -1, -1, -1, 1473, -1, 675, -1, 792, 1478, -1, 1480, -1, -1, 798, -1, -1, -1, -1, 803, -1, 1133, 1491, 0, -1, -1, -1, 692, 1497, 1498, -1, -1, 701, -1, -1, 704, -1, -1, 1507, -1, -1, 706, -1, -1, -1, 590, 351, -1, 1491, -1, -1, -1, 1285, 1522, -1, -1, -1, 34, -1, -1, -1, -1, -1, 1175, -1, -1, -1, -1, -1, -1, 739, -1, -1, 618, -1, -1, 797, -1, 623, 863, -1, -1, -1, 1195, -1, -1, 28, 29, 30, 899, -1, -1, -1, -1, 71, -1, 1208, -1, 1210, -1, -1, 885, 1214, -1, -1, -1, -1, -1, 892, -1, -1, -1, 417, 782, -1, -1, -1, -1, -1, -1, -1, -1, -1, 792, -1, -1, 431, -1, -1, 798, -1, 436, 797, 1245, 803, -1, -1, -1, -1, 444, 1252, 1253, 1254, -1, -1, -1, 59, 692, -1, -1, -1, 1263, 1264, -1, -1, -1, -1, 462, 100, -1, 102, 706, -1, 973, 1276, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 480, -1, 482, -1, 989, -1, 158, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 863, 108, -1, 1309, 111, -1, -1, -1, -1, 1315, -1, -1, -1, 1440, -1, 1442, -1, -1, -1, -1, -1, -1, 885, 1001, 1002, 524, 1004, 1005, -1, 892, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1022, -1, 182, -1, -1, -1, 1477, -1, 1479, -1, -1, -1, 192, 193, 797, -1, -1, 197, -1, 199, 200, -1, 1070, -1, -1, -1, -1, 986, -1, -1, -1, -1, -1, -1, 1384, -1, -1, 252, -1, -1, 1062, 1063, 257, -1, 587, -1, -1, -1, -1, -1, 1521, -1, 1523, -1, -1, -1, -1, -1, -1, 1409, -1, 1109, -1, -1, -1, 1536, 1537, -1, 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1432, 986, -1, -1, -1, 630, 631, 1439, -1, -1, -1, -1, 1001, 1002, -1, 1004, 1005, -1, -1, -1, -1, 646, -1, -1, -1, -1, -1, -1, -1, 1133, -1, -1, -1, 1022, -1, -1, -1, -1, -1, 664, 273, -1, -1, -1, -1, -1, -1, -1, -1, -1, 675, -1, -1, -1, 351, -1, -1, -1, -1, 1491, -1, -1, -1, 55, -1, 57, 1498, -1, 60, 61, 62, 1175, 64, 1062, 1063, -1, 701, -1, -1, 704, -1, -1, -1, -1, -1, -1, 78, -1, -1, -1, -1, 1195, -1, -1, -1, -1, -1, -1, 90, 91, -1, -1, -1, -1, 1208, -1, 1210, -1, -1, -1, -1, -1, -1, -1, 739, 348, -1, -1, -1, -1, 417, 986, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 365, 1174, 431, -1, 369, -1, -1, 436, -1, 1245, -1, -1, 1133, -1, -1, 444, 1252, 1253, 1254, -1, -1, -1, -1, -1, -1, 782, -1, 1263, 1264, -1, -1, -1, -1, 462, -1, 792, -1, -1, -1, -1, 1276, 798, -1, -1, -1, -1, 803, -1, -1, -1, -1, 480, -1, 482, 1175, -1, -1, 1174, 10, 11, 12, 13, 14, -1, -1, -1, -1, 28, 29, 30, -1, -1, -1, -1, 1195, -1, -1, -1, -1, 1315, -1, -1, -1, -1, -1, -1, -1, 1208, -1, 1210, 42, -1, -1, -1, -1, 524, -1, -1, 1271, -1, -1, -1, -1, -1, -1, -1, 863, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, 75, 1245, 77, 78, 79, 885, -1, -1, 1252, 1253, 1254, -1, 892, 88, 89, -1, 100, -1, 102, 1263, 1264, -1, -1, -1, -1, 1384, -1, -1, -1, -1, -1, 1271, 1276, -1, -1, 587, -1, -1, -1, 114, -1, 116, -1, 127, -1, -1, -1, 122, 123, -1, -1, -1, -1, -1, 1174, 572, 573, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1315, -1, 1432, -1, -1, -1, -1, 630, 631, 1439, -1, 599, -1, -1, 602, 603, -1, 605, -1, 607, 608, -1, -1, 646, 612, 613, 344, 182, 346, -1, -1, -1, -1, -1, -1, 190, -1, 192, 193, 357, 358, 664, 197, -1, 199, 200, -1, -1, -1, -1, 1001, 1002, 675, 1004, 1005, -1, -1, -1, 617, -1, -1, 1491, -1, -1, -1, -1, -1, -1, -1, 1384, -1, 1022, -1, 632, -1, -1, -1, -1, 701, -1, 1271, 704, -1, -1, -1, -1, 645, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1062, 1063, -1, 269, -1, 739, 1432, -1, -1, -1, -1, -1, -1, 1439, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 35, 782, 748, 749, 39, 40, 41, 42, 43, -1, -1, 792, -1, -1, -1, -1, -1, 798, 1491, -1, -1, -1, 803, -1, 1133, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, 70, -1, 72, -1, 74, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, 1175, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 40, 41, 114, 43, 116, 863, -1, -1, -1, 1195, 122, 123, 124, 125, 126, 127, -1, -1, -1, -1, -1, -1, 1208, -1, 1210, 137, -1, 885, -1, 69, -1, -1, -1, -1, 892, 75, -1, -1, -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, 1245, -1, -1, -1, -1, -1, -1, 1252, 1253, 1254, 863, -1, -1, -1, -1, 114, -1, 116, 1263, 1264, 119, -1, 904, 122, 123, 124, 125, 126, 127, -1, -1, 1276, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, 1315, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, 693, -1, 695, 1001, 1002, -1, 1004, 1005, -1, 702, 703, -1, -1, -1, 707, -1, -1, -1, 70, -1, 72, -1, 74, -1, 1022, 77, 78, 720, -1, -1, -1, -1, 725, -1, -1, -1, -1, -1, -1, -1, -1, -1, 572, 573, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1384, 752, -1, -1, -1, -1, 1062, 1063, -1, 119, -1, 599, -1, -1, 602, 603, -1, 605, -1, 607, 608, -1, -1, -1, 612, 613, -1, -1, -1, -1, -1, -1, -1, 1025, -1, -1, 1028, 1029, 1030, -1, -1, -1, -1, 1064, -1, -1, -1, -1, 1432, -1, -1, -1, -1, -1, -1, 1439, 51, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, -1, 1133, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, 845, -1, 847, 848, 849, -1, -1, -1, -1, -1, -1, -1, -1, 1491, -1, -1, 42, -1, -1, -1, -1, 866, -1, -1, 70, 1175, 115, -1, -1, 75, 119, 77, 78, 79, -1, 880, -1, -1, -1, -1, -1, -1, 88, 89, 70, 1195, -1, -1, -1, 75, -1, 77, 78, 79, -1, -1, -1, -1, 1208, 148, 1210, -1, 88, 89, -1, -1, 748, 749, 114, 158, 116, -1, 161, -1, 919, -1, 122, 123, -1, -1, -1, -1, 1197, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, 1245, 122, 123, -1, -1, -1, -1, 1252, 1253, 1254, -1, -1, -1, -1, 1195, -1, -1, -1, 1263, 1264, -1, -1, 962, -1, -1, -1, 210, 967, -1, -1, -1, 1276, 972, -1, -1, -1, -1, 977, 222, -1, -1, -1, 982, -1, 984, 985, -1, -1, 988, -1, -1, -1, -1, -1, -1, -1, 240, 997, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1315, -1, -1, 1013, 1014, -1, -1, -1, 68, -1, -1, 265, -1, -1, -1, -1, -1, 77, 272, 79, -1, 81, -1, -1, -1, -1, -1, -1, 88, -1, -1, -1, -1, -1, 1044, -1, -1, 1047, -1, -1, -1, -1, -1, 297, 1295, -1, -1, -1, -1, -1, -1, -1, 899, -1, -1, -1, 310, 904, -1, 119, -1, 121, 122, 123, -1, -1, -1, -1, -1, 1384, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, 1091, -1, -1, -1, -1, -1, 1097, 1098, -1, -1, 345, -1, -1, 1345, -1, 350, 1348, -1, -1, -1, 161, 42, -1, -1, -1, 1116, -1, -1, -1, -1, 1121, -1, -1, -1, 1366, 1126, 1432, -1, -1, -1, -1, -1, -1, 1439, -1, -1, 1137, -1, -1, 70, -1, -1, -1, -1, 75, -1, 77, 78, 79, 1150, 1392, 1152, 1153, 1154, 1155, 1397, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, 1167, -1, 1169, -1, -1, 222, 1173, 224, 225, 226, -1, -1, -1, -1, 425, 426, -1, 114, 1426, 1491, 431, -1, -1, -1, -1, 122, 123, -1, -1, -1, -1, -1, -1, -1, 1201, 1202, -1, -1, -1, -1, -1, 452, -1, 260, -1, -1, -1, -1, 265, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1064, -1, -1, -1, -1, -1, -1, -1, -1, 480, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1488, -1, 493, -1, -1, 1493, -1, -1, 1255, 1256, -1, -1, -1, -1, 505, -1, 507, -1, 1265, 510, -1, 512, 513, 1511, -1, 1513, -1, -1, -1, 1517, -1, -1, 1520, 524, 331, -1, -1, -1, -1, -1, 1528, -1, -1, -1, 1532, -1, -1, -1, -1, -1, -1, -1, -1, 350, -1, -1, -1, -1, 355, 356, -1, -1, -1, -1, -1, -1, 363, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1327, -1, 1329, 1330, 1331, 576, -1, -1, -1, -1, -1, -1, -1, -1, 1341, -1, 587, -1, -1, 590, -1, -1, 1349, -1, -1, -1, -1, 46, 405, -1, -1, -1, -1, 1197, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 616, 423, 1374, 1375, -1, 621, 428, -1, 430, -1, -1, -1, -1, -1, 630, 631, -1, -1, -1, -1, -1, -1, 42, -1, 446, -1, -1, 449, 450, 93, 646, -1, -1, -1, -1, 457, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 1419, 1420, 471, 70, -1, -1, -1, -1, 75, 478, 77, 78, 79, 1432, -1, 678, -1, -1, -1, -1, 1439, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 704, -1, 706, -1, -1, -1, 114, -1, -1, -1, -1, -1, 1472, -1, 122, 123, 1476, -1, -1, -1, 172, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 739, -1, -1, -1, -1, -1, -1, -1, 195, 1504, -1, 1506, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 209, -1, -1, -1, -1, -1, -1, -1, -1, 218, -1, -1, -1, -1, -1, -1, -1, 1534, 1535, 228, -1, -1, -1, 590, -1, 1542, 1543, -1, -1, -1, -1, -1, -1, -1, -1, -1, 797, -1, -1, -1, -1, -1, -1, -1, 253, -1, -1, -1, -1, 258, -1, 618, -1, -1, -1, -1, 623, -1, -1, -1, -1, -1, 271, -1, -1, -1, -1, -1, 277, -1, 279, -1, -1, 283, -1, 285, 286, -1, -1, -1, -1, -1, -1, -1, -1, 295, 296, -1, -1, 298, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 310, 311, -1, -1, -1, -1, -1, -1, -1, 40, 41, -1, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 885, 692, -1, -1, -1, -1, 339, 892, -1, -1, 343, 345, -1, -1, 69, 706, -1, -1, -1, -1, 75, -1, 907, -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, 371, -1, -1, -1, 375, 376, -1, 378, 380, 932, -1, -1, -1, -1, 385, 386, -1, 388, 389, -1, 391, 114, 393, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, -1, -1, -1, -1, 410, -1, -1, 135, -1, -1, -1, -1, 418, -1, -1, -1, -1, -1, -1, -1, -1, -1, 786, -1, -1, 983, -1, -1, -1, -1, -1, -1, -1, 797, -1, -1, 442, 40, 41, -1, 43, -1, -1, -1, -1, -1, 1004, 1005, -1, -1, 814, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 468, -1, -1, -1, 69, -1, 474, -1, -1, -1, 75, 479, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1067, 516, 114, -1, 116, -1, 118, 119, -1, -1, 122, 123, 124, 125, 126, 127, 531, -1, -1, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, -1, 925, 568, 40, 41, 42, 43, -1, -1, -1, -1, 577, -1, -1, -1, 1133, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 954, 597, 69, 70, -1, -1, -1, -1, 75, -1, -1, -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, 1174, -1, -1, -1, -1, -1, 986, -1, -1, -1, -1, -1, -1, 635, -1, -1, -1, 997, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, -1, 1210, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 671, -1, -1, -1, -1, -1, -1, -1, 679, -1, -1, -1, -1, -1, -1, -1, -1, 689, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 710, 1263, 1264, -1, 1072, -1, -1, -1, -1, 1271, -1, 721, 722, -1, -1, -1, -1, -1, 1086, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 750, -1, -1, -1, 753, -1, -1, -1, -1, 758, -1, -1, 42, -1, -1, -1, 157, 158, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 780, -1, -1, -1, -1, -1, -1, -1, -1, 7, 70, -1, 10, 11, 12, 13, 14, -1, -1, 190, -1, -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1174, -1, 818, -1, -1, 40, 41, 42, 43, 825, -1, -1, -1, -1, -1, -1, 1384, -1, -1, -1, -1, -1, 838, -1, 840, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, 70, -1, 853, -1, -1, 75, -1, -1, 859, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, 871, 91, 92, 874, -1, -1, 269, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1441, -1, 1443, -1, 894, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, -1, -1, -1, -1, 1271, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1478, -1, 1480, -1, -1, -1, -1, -1, 326, -1, -1, -1, 939, -1, -1, -1, 334, 335, 148, 337, 338, -1, -1, -1, -1, -1, -1, 345, 158, 1507, -1, 349, -1, -1, -1, -1, -1, -1, -1, 169, 170, -1, -1, -1, 971, -1, -1, -1, -1, -1, 368, -1, -1, -1, -1, 981, 983, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, 397, 32, 33, 34, 401, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, 1022, -1, -1, -1, -1, 40, 41, -1, 43, -1, -1, -1, -1, -1, -1, 240, -1, -1, 431, -1, -1, -1, -1, 70, -1, -1, 1047, -1, 75, -1, 77, 78, -1, -1, 69, -1, -1, -1, -1, 264, 75, 88, 89, -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, 1082, -1, -1, 477, -1, 1087, 480, -1, 116, -1, -1, -1, -1, 1095, 122, 123, -1, -1, 114, -1, 116, 1104, -1, -1, -1, 121, 122, 123, 124, 125, 126, 127, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 520, 1129, -1, -1, 524, -1, -1, -1, -1, -1, -1, -1, 1140, -1, -1, 1143, -1, 1145, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1160, 1161, 1163, 1164, 1522, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 379, 568, 569, -1, -1, 1180, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 586, 587, -1, -1, 40, 41, -1, 43, -1, -1, 596, -1, 598, 599, -1, -1, -1, -1, -1, 605, -1, -1, -1, -1, -1, -1, -1, -1, -1, 615, 616, -1, 1226, 69, -1, 621, -1, -1, -1, 75, 1234, -1, -1, 79, 630, 631, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, 646, -1, -1, -1, -1, 651, 652, -1, -1, 655, 656, -1, -1, -1, 472, -1, 662, -1, 114, -1, 116, -1, -1, 119, -1, -1, 122, 123, 124, 125, 126, 127, -1, -1, -1, 681, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1304, -1, 1306, -1, 512, -1, -1, -1, 704, 705, -1, -1, -1, -1, -1, -1, 524, -1, 1322, -1, 1324, -1, 530, -1, -1, 533, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1339, -1, -1, 546, -1, -1, -1, -1, 739, -1, -1, -1, 743, 744, -1, 1354, 1355, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1365, -1, -1, 1368, -1, 1371, -1, 576, -1, -1, -1, -1, -1, -1, 583, -1, -1, -1, 587, -1, -1, -1, 1388, -1, -1, 1390, -1, -1, -1, 786, -1, -1, -1, -1, 1399, -1, -1, 1402, -1, 1404, 1405, 1406, -1, -1, -1, 802, -1, 804, -1, -1, -1, -1, -1, -1, -1, -1, -1, 814, -1, -1, -1, -1, -1, -1, 633, -1, -1, -1, -1, -1, -1, -1, 641, -1, -1, -1, -1, -1, -1, -1, 1445, -1, 1447, -1, 1449, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1460, 1461, -1, -1, -1, -1, 1465, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, 885, 32, 33, 34, -1, -1, -1, 892, 893, -1, 895, 42, -1, -1, 899, -1, -1, -1, -1, -1, 717, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 728, -1, -1, -1, 920, 921, -1, -1, 70, -1, 72, 739, 74, 741, -1, 77, 78, -1, -1, -1, -1, -1, -1, 751, -1, -1, -1, -1, -1, 757, -1, -1, -1, -1, -1, -1, -1, -1, 954, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, 116, -1, -1, 973, 974, -1, 122, 123, -1, -1, -1, -1, -1, 983, -1, 797, 798, -1, -1, 989, 990, -1, 992, 993, 994, -1, -1, -1, -1, -1, -1, 813, -1, -1, 1004, 1005, -1, -1, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 852, -1, -1, -1, 856, -1, -1, 42, 43, -1, -1, -1, -1, -1, -1, 40, 41, -1, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1070, -1, 1072, 885, -1, 70, -1, 1077, -1, -1, 892, -1, 77, 78, 69, -1, 1086, -1, -1, -1, 75, -1, -1, -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, 1109, 1110, -1, -1, -1, -1, -1, -1, -1, -1, -1, 932, 116, -1, -1, -1, 120, -1, 122, 123, 114, -1, 116, -1, 1133, -1, -1, -1, 122, 123, 124, 125, 126, 127, -1, -1, -1, 958, -1, -1, -1, -1, 963, 40, 41, 966, 43, 44, -1, 46, -1, -1, 49, 50, 51, 52, 53, 54, 55, 56, -1, -1, 59, 60, -1, 986, -1, 64, 65, -1, 67, -1, 69, -1, -1, -1, 997, -1, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, 1017, -1, 1019, -1, -1, 1210, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1034, 1035, -1, -1, 114, -1, 116, -1, -1, 119, -1, -1, 122, 123, 124, 125, 126, 127, 40, 41, -1, 43, 132, -1, -1, -1, 1060, 137, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1263, 1264, -1, -1, -1, -1, 69, -1, -1, -1, -1, -1, 75, -1, -1, -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1114, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, 1133, 122, 123, 124, 125, 126, 127, -1, -1, -1, -1, -1, -1, -1, -1, 1148, 1149, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 35, -1, -1, -1, 39, 40, 41, 42, 43, 44, -1, 46, 1384, -1, 49, 50, 51, 52, 53, 54, 55, 56, -1, -1, -1, 60, -1, -1, -1, 64, 65, -1, 67, -1, 69, 70, -1, 72, -1, 74, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, 119, -1, -1, 122, 123, 124, 125, 126, 127, -1, -1, -1, -1, 132, -1, -1, -1, 1473, 137, -1, -1, -1, 1290, -1, 1292, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1497, 1498, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1522, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 35, -1, -1, -1, 39, 40, 41, 42, 43, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, -1, -1, -1, -1, 69, 70, -1, 72, -1, 74, 75, 42, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, 81, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 40, 41, 42, 43, -1, -1, -1, -1, -1, -1, -1, 1507, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, 70, -1, 72, -1, 74, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 127, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 40, 41, 42, 43, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, -1, -1, -1, -1, 69, 70, -1, 72, -1, 74, 75, 42, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, 81, 116, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 127, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 40, 41, 42, 43, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 69, 70, -1, 72, -1, 74, 75, 42, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, -1, -1, 77, 78, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 40, 41, 42, 43, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 69, 70, -1, 72, -1, 74, 75, 42, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, -1, -1, 77, 78, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 40, 41, 42, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, 70, -1, 72, -1, 74, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 0, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 35, -1, -1, -1, 39, -1, -1, 42, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, 70, -1, 72, -1, 74, 75, -1, 77, 78, 79, -1, -1, -1, -1, -1, -1, -1, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 35, -1, -1, -1, 39, -1, -1, 42, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, 70, -1, 72, -1, 74, 75, -1, 77, 78, 79, -1, -1, -1, -1, -1, -1, -1, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, 120, -1, 122, 123, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 35, -1, -1, -1, 39, -1, -1, 42, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, 70, -1, 72, -1, 74, 75, -1, 77, 78, 79, -1, -1, -1, -1, -1, -1, -1, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, 75, -1, 77, 78, 79, -1, -1, -1, -1, -1, -1, -1, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, -1, 32, 33, 34, 35, -1, -1, -1, 39, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, -1, -1, 77, 78, -1, -1, 81, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 35, -1, 116, -1, 39, -1, -1, 42, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, -1, -1, 77, 78, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 116, -1, 42, -1, -1, -1, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, -1, -1, 77, 78, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, 116, 42, -1, -1, -1, -1, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, 75, -1, 77, 78, 79, -1, -1, -1, -1, -1, -1, -1, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, -1, 42, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, 70, -1, 72, -1, 74, -1, 42, 77, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, 70, -1, -1, -1, -1, -1, -1, 77, 78, -1, -1, -1, 116, -1, -1, -1, -1, -1, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 116, -1, 32, 33, 34, -1, 122, 123, -1, -1, -1, -1, 42, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, 70, -1, 72, -1, 74, -1, 42, 77, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, 70, -1, -1, -1, -1, -1, -1, 77, 78, -1, -1, -1, 116, -1, -1, -1, -1, -1, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 116, -1, 32, 33, 34, -1, 122, 123, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, -1, -1, 77, 78, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, 116, 42, -1, -1, -1, -1, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, -1, -1, 77, 78, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, 116, 42, -1, -1, -1, -1, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, -1, -1, 77, 78, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 40, 41, 42, 43, -1, -1, -1, 116, -1, -1, -1, -1, -1, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, 70, -1, -1, -1, -1, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, 119, -1, -1, 122, 123, 124, 125, 126, 127, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 40, 41, 42, 43, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 69, 70, -1, -1, -1, -1, 75, 42, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, -1, -1, 77, 78, -1, 114, 115, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, 122, 123, 40, 41, 42, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, 70, -1, -1, -1, -1, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 40, 41, 42, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, 70, -1, -1, -1, -1, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 40, 41, 42, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, 70, -1, -1, -1, -1, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 70, -1, 32, 33, 34, 75, -1, 77, 78, 79, -1, -1, 42, -1, -1, -1, -1, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, 114, 75, 116, 77, 78, 79, -1, -1, 122, 123, -1, -1, -1, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, -1, 42, 43, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 70, -1, 32, 33, 34, -1, -1, 77, 78, -1, -1, -1, 42, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, -1, 116, 77, 78, -1, 120, -1, 122, 123, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, 116, 42, -1, -1, 120, -1, 122, 123, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 70, -1, 32, 33, 34, -1, -1, 77, 78, -1, -1, -1, 42, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, 70, -1, -1, -1, -1, 42, 116, 77, 78, -1, -1, -1, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, -1, -1, 77, 78, -1, -1, -1, -1, 116, -1, -1, -1, -1, -1, 122, 123, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, 116, 32, 33, 34, -1, -1, 122, 123, -1, -1, -1, 42, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 70, -1, 32, 33, 34, -1, -1, 77, 78, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, -1, 116, 77, 78, -1, -1, -1, 122, 123, 40, 41, -1, 43, 44, -1, 46, -1, -1, 49, 50, 51, 52, 53, 54, 55, 56, -1, -1, -1, 60, -1, -1, -1, 64, 65, -1, 67, -1, 69, -1, 115, -1, -1, -1, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, 119, -1, -1, 122, 123, 124, 125, 126, 127, -1, -1, -1, -1, 132, -1, -1, -1, -1, 137, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, -1, 42, -1, 40, 41, -1, 43, 44, -1, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, -1, -1, 59, 60, -1, -1, -1, 64, 65, 70, 67, 72, 69, 74, -1, -1, 77, 78, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, 119, -1, -1, 122, 123, 124, 125, 126, 127, -1, -1, 40, 41, 132, 43, 44, -1, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, -1, -1, -1, 60, -1, -1, -1, 64, 65, -1, 67, -1, 69, -1, -1, -1, -1, -1, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, 119, -1, -1, 122, 123, 124, 125, 126, 127, -1, -1, 40, 41, 132, 43, 44, -1, 46, -1, -1, 49, 50, 51, 52, 53, 54, 55, 56, -1, -1, -1, 60, -1, -1, -1, 64, 65, -1, 67, -1, 69, -1, -1, -1, -1, -1, 75, -1, 77, 78, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, 40, 41, -1, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, 119, -1, -1, 122, 123, 124, 125, 126, 127, 69, -1, -1, -1, 132, -1, 75, -1, -1, -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, 40, 41, -1, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 69, -1, -1, -1, -1, -1, 75, -1, -1, -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, 40, 41, -1, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 69, -1, -1, -1, -1, -1, 75, -1, -1, -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, 40, 41, -1, 43, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 69, -1, -1, -1, -1, -1, 75, -1, -1, -1, 79, -1, -1, 82, 83, 84, 85, 86, 87, 88, 89, -1, 91, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 114, -1, 116, -1, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, -1, 42, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 70, -1, 32, 33, 34, 75, -1, 77, 78, -1, -1, -1, 42, -1, -1, -1, -1, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, -1, -1, 77, 78, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, -1, -1, 77, 78, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, 72, -1, 74, -1, -1, 77, 78, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, -1, 32, 33, 34, 35, 36, 37, 38, -1, -1, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 70, -1, -1, -1, -1, -1, -1, 77, 78 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 35, 39, 42, 43, 67, 70, 72, 74, 75, 77, 78, 79, 88, 89, 114, 116, 122, 123, 142, 145, 157, 206, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 242, 243, 244, 245, 247, 248, 249, 250, 251, 252, 254, 262, 263, 290, 291, 292, 300, 303, 309, 310, 312, 314, 315, 321, 326, 330, 331, 332, 333, 334, 335, 336, 337, 357, 374, 375, 376, 377, 75, 144, 145, 157, 223, 225, 233, 235, 244, 248, 250, 291, 84, 114, 319, 320, 321, 319, 319, 75, 77, 78, 79, 143, 144, 280, 281, 301, 302, 77, 78, 281, 114, 312, 11, 207, 114, 157, 326, 331, 332, 333, 335, 336, 337, 117, 139, 226, 233, 235, 330, 334, 373, 374, 377, 378, 140, 112, 136, 284, 119, 140, 181, 77, 78, 142, 279, 140, 140, 140, 121, 140, 77, 78, 114, 157, 316, 325, 326, 327, 328, 329, 330, 334, 338, 339, 340, 341, 342, 348, 3, 30, 81, 246, 3, 5, 77, 116, 157, 225, 236, 240, 242, 251, 292, 330, 334, 377, 223, 225, 235, 244, 248, 250, 291, 330, 334, 35, 241, 241, 236, 242, 140, 241, 236, 241, 236, 78, 114, 119, 281, 292, 119, 281, 241, 236, 121, 140, 140, 0, 139, 114, 181, 319, 319, 139, 116, 233, 235, 375, 279, 279, 136, 235, 114, 157, 316, 326, 330, 116, 157, 377, 313, 238, 321, 114, 297, 114, 114, 54, 114, 40, 41, 43, 69, 75, 79, 82, 83, 84, 85, 86, 87, 91, 92, 114, 116, 124, 125, 126, 127, 141, 145, 146, 147, 148, 149, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 172, 175, 233, 283, 299, 373, 378, 235, 115, 115, 115, 115, 115, 115, 115, 116, 233, 357, 375, 116, 122, 157, 172, 225, 226, 232, 235, 239, 240, 244, 247, 248, 250, 269, 270, 274, 275, 276, 277, 291, 357, 369, 370, 371, 372, 377, 378, 114, 330, 334, 377, 114, 121, 137, 116, 119, 157, 172, 285, 285, 120, 139, 121, 137, 114, 121, 137, 121, 137, 121, 137, 319, 137, 326, 327, 328, 329, 339, 340, 341, 342, 235, 325, 338, 67, 318, 116, 319, 356, 357, 319, 319, 181, 139, 114, 319, 356, 319, 319, 235, 316, 114, 114, 234, 235, 233, 235, 139, 233, 373, 378, 181, 139, 279, 284, 225, 240, 330, 334, 181, 139, 301, 235, 244, 137, 235, 235, 299, 255, 253, 265, 281, 264, 235, 301, 137, 137, 312, 139, 144, 278, 3, 140, 215, 216, 230, 232, 235, 139, 318, 114, 318, 172, 326, 235, 114, 139, 279, 119, 35, 36, 37, 38, 233, 293, 294, 296, 139, 133, 136, 298, 139, 10, 75, 77, 78, 322, 323, 324, 114, 146, 114, 156, 114, 156, 159, 114, 156, 114, 114, 156, 156, 116, 172, 177, 181, 233, 282, 373, 377, 139, 84, 86, 90, 91, 92, 114, 116, 118, 119, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 136, 174, 159, 159, 122, 128, 129, 124, 125, 93, 94, 95, 96, 130, 131, 97, 98, 123, 132, 133, 99, 100, 134, 114, 157, 352, 353, 354, 355, 356, 115, 121, 114, 356, 357, 114, 356, 357, 139, 233, 375, 117, 139, 140, 233, 235, 368, 369, 377, 378, 140, 114, 116, 157, 326, 343, 344, 345, 346, 347, 348, 349, 350, 351, 357, 358, 359, 360, 361, 362, 363, 157, 377, 235, 140, 140, 157, 233, 235, 370, 279, 233, 357, 370, 279, 139, 139, 139, 139, 75, 116, 118, 145, 281, 285, 286, 287, 288, 289, 139, 139, 139, 139, 139, 139, 316, 115, 115, 115, 115, 115, 115, 115, 325, 338, 114, 284, 117, 215, 139, 316, 177, 283, 177, 283, 316, 116, 215, 318, 181, 139, 215, 115, 43, 116, 120, 233, 256, 257, 258, 373, 119, 121, 379, 136, 266, 119, 235, 271, 272, 273, 276, 277, 115, 121, 181, 139, 122, 172, 139, 232, 235, 270, 369, 377, 310, 311, 114, 157, 343, 115, 121, 136, 380, 281, 293, 114, 119, 281, 283, 293, 115, 121, 114, 146, 115, 135, 282, 282, 282, 151, 172, 283, 282, 139, 115, 121, 115, 114, 157, 356, 364, 365, 366, 367, 115, 121, 172, 116, 144, 150, 151, 139, 116, 144, 150, 172, 159, 159, 159, 160, 160, 161, 161, 162, 162, 162, 162, 163, 163, 164, 165, 166, 167, 168, 135, 177, 139, 353, 354, 355, 235, 352, 319, 319, 172, 283, 139, 278, 233, 357, 370, 235, 239, 117, 377, 117, 114, 139, 326, 344, 345, 346, 349, 359, 360, 361, 117, 139, 235, 343, 347, 358, 114, 319, 362, 380, 319, 319, 380, 114, 319, 362, 319, 319, 319, 319, 357, 233, 368, 378, 279, 117, 121, 117, 121, 380, 233, 370, 380, 267, 268, 269, 270, 267, 279, 172, 139, 116, 281, 135, 121, 379, 285, 116, 135, 289, 31, 217, 218, 279, 267, 144, 316, 144, 318, 114, 356, 357, 114, 356, 357, 146, 357, 181, 271, 115, 115, 115, 115, 139, 181, 215, 181, 119, 257, 258, 139, 114, 135, 157, 259, 261, 325, 326, 338, 364, 121, 137, 121, 137, 281, 255, 281, 120, 170, 171, 265, 140, 140, 144, 230, 140, 140, 267, 114, 157, 377, 140, 120, 235, 294, 172, 295, 140, 139, 139, 114, 140, 115, 323, 150, 135, 137, 116, 146, 208, 209, 210, 115, 121, 115, 115, 115, 115, 172, 365, 366, 367, 235, 364, 319, 319, 119, 159, 172, 173, 176, 121, 139, 115, 121, 172, 139, 120, 170, 135, 271, 115, 115, 115, 352, 271, 115, 233, 370, 116, 122, 157, 172, 172, 235, 349, 271, 115, 115, 115, 115, 115, 115, 115, 7, 235, 343, 347, 358, 139, 139, 380, 139, 139, 140, 140, 140, 140, 284, 170, 171, 172, 317, 139, 285, 287, 120, 139, 219, 281, 43, 44, 46, 49, 50, 51, 52, 53, 54, 55, 56, 60, 64, 65, 75, 77, 78, 79, 132, 145, 177, 178, 179, 180, 181, 182, 183, 185, 186, 198, 200, 201, 206, 220, 279, 315, 31, 140, 136, 284, 139, 139, 115, 140, 181, 255, 137, 137, 326, 171, 235, 260, 261, 260, 281, 319, 120, 266, 379, 115, 121, 117, 117, 140, 235, 121, 380, 297, 115, 293, 223, 225, 233, 305, 306, 307, 308, 299, 115, 115, 135, 171, 114, 115, 135, 121, 144, 115, 115, 115, 364, 286, 121, 140, 176, 82, 85, 87, 144, 152, 153, 154, 151, 140, 152, 170, 140, 114, 356, 357, 140, 139, 140, 140, 140, 172, 115, 140, 114, 356, 357, 114, 362, 114, 362, 357, 234, 7, 122, 140, 172, 271, 271, 270, 274, 274, 275, 115, 121, 121, 115, 101, 127, 140, 140, 152, 285, 172, 121, 137, 220, 224, 235, 239, 114, 114, 179, 114, 114, 137, 279, 137, 279, 122, 279, 178, 114, 181, 173, 173, 149, 137, 140, 139, 140, 135, 219, 115, 172, 271, 271, 319, 115, 120, 259, 120, 139, 115, 139, 140, 316, 120, 139, 140, 140, 115, 119, 208, 117, 171, 137, 208, 210, 115, 114, 356, 357, 379, 173, 117, 140, 155, 116, 153, 155, 155, 121, 140, 90, 118, 117, 140, 115, 139, 115, 117, 117, 117, 140, 115, 139, 139, 139, 172, 172, 140, 117, 140, 140, 140, 140, 139, 139, 171, 171, 117, 117, 140, 281, 235, 177, 177, 50, 177, 139, 137, 137, 177, 137, 137, 177, 61, 62, 63, 202, 203, 204, 137, 66, 137, 119, 183, 120, 319, 137, 140, 140, 101, 276, 277, 115, 306, 121, 137, 121, 137, 120, 304, 135, 146, 115, 115, 135, 139, 120, 117, 86, 139, 153, 117, 116, 153, 116, 153, 117, 271, 117, 271, 271, 271, 140, 140, 117, 117, 115, 115, 117, 121, 101, 270, 101, 140, 117, 115, 115, 114, 115, 178, 199, 220, 137, 115, 114, 114, 181, 204, 61, 62, 172, 150, 179, 115, 115, 119, 139, 139, 305, 146, 211, 114, 137, 211, 271, 152, 139, 139, 140, 140, 140, 140, 117, 117, 139, 140, 117, 179, 47, 48, 119, 189, 190, 191, 177, 179, 140, 115, 178, 119, 191, 101, 139, 101, 139, 114, 114, 137, 120, 139, 279, 316, 120, 121, 135, 171, 115, 140, 140, 152, 152, 115, 115, 115, 115, 274, 45, 171, 187, 188, 317, 135, 139, 179, 189, 115, 137, 179, 137, 139, 115, 139, 115, 139, 101, 139, 101, 139, 137, 305, 146, 144, 212, 115, 137, 115, 117, 140, 140, 179, 101, 121, 135, 140, 213, 214, 220, 137, 178, 178, 213, 181, 205, 233, 373, 181, 205, 115, 139, 115, 139, 120, 115, 121, 117, 117, 171, 187, 190, 192, 193, 139, 137, 190, 194, 195, 140, 114, 157, 316, 364, 144, 140, 181, 205, 181, 205, 114, 137, 144, 179, 184, 120, 190, 220, 178, 59, 184, 197, 120, 190, 115, 235, 115, 140, 140, 299, 179, 184, 137, 196, 197, 184, 197, 181, 181, 115, 115, 115, 196, 140, 140, 181, 181, 140, 140 }; #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. However, YYFAIL appears to be in use. Nevertheless, it is formally deprecated in Bison 2.4.2's NEWS entry, where a plan to phase it out is discussed. */ #define YYFAIL goto yyerrlab #if defined YYFAIL /* This is here to suppress warnings from the GCC cpp's -Wunused-macros. Normally we don't worry about that warning, but some users do, and we want to make it easy for users to remove YYFAIL uses, which will produce warnings from Bison 2.5. */ #endif #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (1); \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #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 # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (YYID (0)) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value); \ YYFPRINTF (stderr, "\n"); \ } \ } while (YYID (0)) /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_value_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # else YYUSE (yyoutput); # endif switch (yytype) { default: break; } } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { 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, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else static void yy_stack_print (yybottom, yytop) yytype_int16 *yybottom; yytype_int16 *yytop; #endif { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_reduce_print (YYSTYPE *yyvsp, int yyrule) #else static void yy_reduce_print (yyvsp, yyrule) YYSTYPE *yyvsp; int yyrule; #endif { int yynrhs = yyr2[yyrule]; int yyi; unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) ); YYFPRINTF (stderr, "\n"); } } # 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. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) #else static YYSIZE_T yystrlen (yystr) const char *yystr; #endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) #else static char * yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; #endif { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *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) { YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = 0; /* 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: - Assume YYFAIL is not used. It's too flawed to consider. See for details. YYERROR is fine as it does not invoke this function. - 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]; yysize1 = yysize + yytnamerr (0, 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_ } yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* 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; } #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); 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. */ int yychar; /* The semantic value of the lookahead 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) #else int yyparse () #endif #endif { 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 thru 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; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken; /* 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]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yytoken = 0; yyss = yyssa; yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: /* Line 1806 of yacc.c */ #line 305 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 309 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 316 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantInteger( *(yyvsp[(1) - (1)].tok) ) ); } break; case 5: /* Line 1806 of yacc.c */ #line 317 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 6: /* Line 1806 of yacc.c */ #line 318 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 7: /* Line 1806 of yacc.c */ #line 319 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 8: /* Line 1806 of yacc.c */ #line 320 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantChar( *(yyvsp[(1) - (1)].tok) ) ); } break; case 18: /* Line 1806 of yacc.c */ #line 345 "parser.yy" { (yyval.constant) = build_constantStr( *(yyvsp[(1) - (1)].str) ); } break; case 19: /* Line 1806 of yacc.c */ #line 349 "parser.yy" { (yyval.str) = (yyvsp[(1) - (1)].tok); } break; case 20: /* Line 1806 of yacc.c */ #line 351 "parser.yy" { appendStr( (yyvsp[(1) - (2)].str), (yyvsp[(2) - (2)].tok) ); // append 2nd juxtaposed string to 1st delete (yyvsp[(2) - (2)].tok); // allocated by lexer (yyval.str) = (yyvsp[(1) - (2)].str); // conversion from tok to str } break; case 21: /* Line 1806 of yacc.c */ #line 362 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 22: /* Line 1806 of yacc.c */ #line 364 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantZeroOne( *(yyvsp[(1) - (1)].tok) ) ); } break; case 24: /* Line 1806 of yacc.c */ #line 367 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 25: /* Line 1806 of yacc.c */ #line 369 "parser.yy" { (yyval.en) = new ExpressionNode( build_valexpr( (yyvsp[(2) - (3)].sn) ) ); } break; case 27: /* Line 1806 of yacc.c */ #line 379 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Index, (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ) ); } break; case 28: /* Line 1806 of yacc.c */ #line 381 "parser.yy" { (yyval.en) = new ExpressionNode( build_func( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ) ); } break; case 29: /* Line 1806 of yacc.c */ #line 383 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 30: /* Line 1806 of yacc.c */ #line 385 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 31: /* Line 1806 of yacc.c */ #line 387 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (2)].en), build_field_name_REALFRACTIONconstant( *(yyvsp[(2) - (2)].tok) ) ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 389 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 33: /* Line 1806 of yacc.c */ #line 391 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 34: /* Line 1806 of yacc.c */ #line 393 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::IncrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 35: /* Line 1806 of yacc.c */ #line 395 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::DecrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 36: /* Line 1806 of yacc.c */ #line 397 "parser.yy" { (yyval.en) = new ExpressionNode( build_compoundLiteral( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ) ); } break; case 37: /* Line 1806 of yacc.c */ #line 399 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined - use location of '{'? (yyval.en) = new ExpressionNode( new ConstructorExpr( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_last( (yyvsp[(3) - (4)].en) ) ) ) ); } break; case 39: /* Line 1806 of yacc.c */ #line 409 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 40: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = nullptr; } break; case 43: /* Line 1806 of yacc.c */ #line 420 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 45: /* Line 1806 of yacc.c */ #line 426 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( new ExpressionNode( build_field_name_REALDECIMALconstant( *(yyvsp[(1) - (2)].tok) ) ), maybeMoveBuild( (yyvsp[(2) - (2)].en) ) ) ); } break; case 46: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( new ExpressionNode( build_field_name_REALDECIMALconstant( *(yyvsp[(1) - (6)].tok) ) ), build_tuple( (yyvsp[(4) - (6)].en) ) ) ); } break; case 47: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), maybeMoveBuild( (yyvsp[(3) - (3)].en) ) ) ); } break; case 48: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 49: /* Line 1806 of yacc.c */ #line 434 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), maybeMoveBuild( (yyvsp[(3) - (3)].en) ) ) ); } break; case 50: /* Line 1806 of yacc.c */ #line 436 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 51: /* Line 1806 of yacc.c */ #line 441 "parser.yy" { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_constantInteger( *(yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } break; case 52: /* Line 1806 of yacc.c */ #line 443 "parser.yy" { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_field_name_FLOATINGconstant( *(yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } break; case 53: /* Line 1806 of yacc.c */ #line 445 "parser.yy" { if( (*(yyvsp[(1) - (2)].tok)) == "0" || (*(yyvsp[(1) - (2)].tok)) == "1" ) { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_constantZeroOne( *(yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } else { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_varref( (yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } } break; case 54: /* Line 1806 of yacc.c */ #line 456 "parser.yy" { (yyval.en) = nullptr; } break; case 55: /* Line 1806 of yacc.c */ #line 458 "parser.yy" { Expression * constant = build_field_name_REALFRACTIONconstant( *(yyvsp[(2) - (2)].tok) ); (yyval.en) = (yyvsp[(1) - (2)].en) != nullptr ? new ExpressionNode( build_fieldSel( (yyvsp[(1) - (2)].en), constant ) ) : new ExpressionNode( constant ); } break; case 57: /* Line 1806 of yacc.c */ #line 469 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 58: /* Line 1806 of yacc.c */ #line 471 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 59: /* Line 1806 of yacc.c */ #line 473 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 60: /* Line 1806 of yacc.c */ #line 478 "parser.yy" { switch ( (yyvsp[(1) - (2)].op) ) { case OperKinds::AddressOf: (yyval.en) = new ExpressionNode( build_addressOf( (yyvsp[(2) - (2)].en) ) ); break; case OperKinds::PointTo: (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); break; default: assert( false ); } } break; case 61: /* Line 1806 of yacc.c */ #line 491 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); } break; case 62: /* Line 1806 of yacc.c */ #line 493 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Incr, (yyvsp[(2) - (2)].en) ) ); } break; case 63: /* Line 1806 of yacc.c */ #line 495 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Decr, (yyvsp[(2) - (2)].en) ) ); } break; case 64: /* Line 1806 of yacc.c */ #line 497 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 65: /* Line 1806 of yacc.c */ #line 499 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 66: /* Line 1806 of yacc.c */ #line 501 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 67: /* Line 1806 of yacc.c */ #line 503 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 68: /* Line 1806 of yacc.c */ #line 505 "parser.yy" { (yyval.en) = new ExpressionNode( build_offsetOf( (yyvsp[(3) - (6)].decl), build_varref( (yyvsp[(5) - (6)].tok) ) ) ); } break; case 69: /* Line 1806 of yacc.c */ #line 507 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (1)].tok) ), nullptr ) ); } break; case 70: /* Line 1806 of yacc.c */ #line 509 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ) ); } break; case 71: /* Line 1806 of yacc.c */ #line 511 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrtype( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].decl) ) ); } break; case 72: /* Line 1806 of yacc.c */ #line 517 "parser.yy" { (yyval.op) = OperKinds::PointTo; } break; case 73: /* Line 1806 of yacc.c */ #line 518 "parser.yy" { (yyval.op) = OperKinds::AddressOf; } break; case 74: /* Line 1806 of yacc.c */ #line 524 "parser.yy" { (yyval.op) = OperKinds::UnPlus; } break; case 75: /* Line 1806 of yacc.c */ #line 525 "parser.yy" { (yyval.op) = OperKinds::UnMinus; } break; case 76: /* Line 1806 of yacc.c */ #line 526 "parser.yy" { (yyval.op) = OperKinds::Neg; } break; case 77: /* Line 1806 of yacc.c */ #line 527 "parser.yy" { (yyval.op) = OperKinds::BitNeg; } break; case 79: /* Line 1806 of yacc.c */ #line 533 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 81: /* Line 1806 of yacc.c */ #line 541 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mul, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 82: /* Line 1806 of yacc.c */ #line 543 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Div, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 83: /* Line 1806 of yacc.c */ #line 545 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mod, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 85: /* Line 1806 of yacc.c */ #line 551 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Plus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 86: /* Line 1806 of yacc.c */ #line 553 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Minus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 88: /* Line 1806 of yacc.c */ #line 559 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 89: /* Line 1806 of yacc.c */ #line 561 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::RShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 91: /* Line 1806 of yacc.c */ #line 567 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 92: /* Line 1806 of yacc.c */ #line 569 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 93: /* Line 1806 of yacc.c */ #line 571 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 94: /* Line 1806 of yacc.c */ #line 573 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 96: /* Line 1806 of yacc.c */ #line 579 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Eq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 97: /* Line 1806 of yacc.c */ #line 581 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Neq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 99: /* Line 1806 of yacc.c */ #line 587 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitAnd, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 101: /* Line 1806 of yacc.c */ #line 593 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Xor, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 103: /* Line 1806 of yacc.c */ #line 599 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitOr, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 105: /* Line 1806 of yacc.c */ #line 605 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), true ) ); } break; case 107: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), false ) ); } break; case 109: /* Line 1806 of yacc.c */ #line 617 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 110: /* Line 1806 of yacc.c */ #line 620 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (4)].en), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ) ); } break; case 113: /* Line 1806 of yacc.c */ #line 633 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_ptr( (yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 114: /* Line 1806 of yacc.c */ #line 640 "parser.yy" { (yyval.en) = nullptr; } break; case 116: /* Line 1806 of yacc.c */ #line 645 "parser.yy" { (yyval.op) = OperKinds::Assign; } break; case 117: /* Line 1806 of yacc.c */ #line 646 "parser.yy" { (yyval.op) = OperKinds::AtAssn; } break; case 118: /* Line 1806 of yacc.c */ #line 647 "parser.yy" { (yyval.op) = OperKinds::MulAssn; } break; case 119: /* Line 1806 of yacc.c */ #line 648 "parser.yy" { (yyval.op) = OperKinds::DivAssn; } break; case 120: /* Line 1806 of yacc.c */ #line 649 "parser.yy" { (yyval.op) = OperKinds::ModAssn; } break; case 121: /* Line 1806 of yacc.c */ #line 650 "parser.yy" { (yyval.op) = OperKinds::PlusAssn; } break; case 122: /* Line 1806 of yacc.c */ #line 651 "parser.yy" { (yyval.op) = OperKinds::MinusAssn; } break; case 123: /* Line 1806 of yacc.c */ #line 652 "parser.yy" { (yyval.op) = OperKinds::LSAssn; } break; case 124: /* Line 1806 of yacc.c */ #line 653 "parser.yy" { (yyval.op) = OperKinds::RSAssn; } break; case 125: /* Line 1806 of yacc.c */ #line 654 "parser.yy" { (yyval.op) = OperKinds::AndAssn; } break; case 126: /* Line 1806 of yacc.c */ #line 655 "parser.yy" { (yyval.op) = OperKinds::ERAssn; } break; case 127: /* Line 1806 of yacc.c */ #line 656 "parser.yy" { (yyval.op) = OperKinds::OrAssn; } break; case 128: /* Line 1806 of yacc.c */ #line 667 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(new ExpressionNode( nullptr ) )->set_last( (yyvsp[(4) - (6)].en) ) ) ); } break; case 129: /* Line 1806 of yacc.c */ #line 669 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_last( (yyvsp[(5) - (7)].en) ) ) ); } break; case 131: /* Line 1806 of yacc.c */ #line 675 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 133: /* Line 1806 of yacc.c */ #line 681 "parser.yy" { (yyval.en) = new ExpressionNode( build_comma( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 134: /* Line 1806 of yacc.c */ #line 686 "parser.yy" { (yyval.en) = nullptr; } break; case 138: /* Line 1806 of yacc.c */ #line 695 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 144: /* Line 1806 of yacc.c */ #line 702 "parser.yy" { Token fn; fn.str = new string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( build_expr( new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(2) - (6)].en) )->set_last( (yyvsp[(4) - (6)].en) ) ) ) ) ); } break; case 145: /* Line 1806 of yacc.c */ #line 712 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 146: /* Line 1806 of yacc.c */ #line 719 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (StatementNode *)0 ) ); } break; case 147: /* Line 1806 of yacc.c */ #line 726 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (yyvsp[(5) - (7)].sn) ) ); } break; case 149: /* Line 1806 of yacc.c */ #line 732 "parser.yy" { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 150: /* Line 1806 of yacc.c */ #line 737 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 151: /* Line 1806 of yacc.c */ #line 739 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 152: /* Line 1806 of yacc.c */ #line 745 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 155: /* Line 1806 of yacc.c */ #line 752 "parser.yy" { if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } } break; case 156: /* Line 1806 of yacc.c */ #line 757 "parser.yy" { (yyval.sn) = new StatementNode( build_expr( (yyvsp[(1) - (2)].en) ) ); } break; case 157: /* Line 1806 of yacc.c */ #line 763 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn), nullptr ) ); } break; case 158: /* Line 1806 of yacc.c */ #line 765 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].sn), (yyvsp[(7) - (7)].sn) ) ); } break; case 159: /* Line 1806 of yacc.c */ #line 767 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 160: /* Line 1806 of yacc.c */ #line 769 "parser.yy" { StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); // The semantics of the declaration list is changed to include associated initialization, which is performed // *before* the transfer to the appropriate case clause by hoisting the declarations into a compound // statement around the switch. Statements after the initial declaration list can never be executed, and // therefore, are removed from the grammar even though C allows it. The change also applies to choose // statement. (yyval.sn) = (yyvsp[(7) - (9)].decl) ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 161: /* Line 1806 of yacc.c */ #line 779 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 162: /* Line 1806 of yacc.c */ #line 781 "parser.yy" { StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); (yyval.sn) = (yyvsp[(7) - (9)].decl) ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 163: /* Line 1806 of yacc.c */ #line 791 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 164: /* Line 1806 of yacc.c */ #line 793 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 166: /* Line 1806 of yacc.c */ #line 798 "parser.yy" { (yyval.sn) = new StatementNode( build_case( (yyvsp[(1) - (1)].en) ) ); } break; case 167: /* Line 1806 of yacc.c */ #line 800 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_last( new StatementNode( build_case( (yyvsp[(3) - (3)].en) ) ) ) ); } break; case 168: /* Line 1806 of yacc.c */ #line 804 "parser.yy" { (yyval.sn) = (yyvsp[(2) - (3)].sn); } break; case 169: /* Line 1806 of yacc.c */ #line 805 "parser.yy" { (yyval.sn) = new StatementNode( build_default() ); } break; case 171: /* Line 1806 of yacc.c */ #line 811 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) )); } break; case 172: /* Line 1806 of yacc.c */ #line 815 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 173: /* Line 1806 of yacc.c */ #line 820 "parser.yy" { (yyval.sn) = nullptr; } break; case 175: /* Line 1806 of yacc.c */ #line 826 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 176: /* Line 1806 of yacc.c */ #line 828 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(3) - (3)].sn) ) ) ) ) ); } break; case 177: /* Line 1806 of yacc.c */ #line 833 "parser.yy" { (yyval.sn) = nullptr; } break; case 179: /* Line 1806 of yacc.c */ #line 839 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 180: /* Line 1806 of yacc.c */ #line 841 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(2) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 181: /* Line 1806 of yacc.c */ #line 843 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 182: /* Line 1806 of yacc.c */ #line 845 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_last( (yyvsp[(2) - (4)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(3) - (4)].sn)->set_last( (yyvsp[(4) - (4)].sn) ) ) ) ) ) ); } break; case 183: /* Line 1806 of yacc.c */ #line 850 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 185: /* Line 1806 of yacc.c */ #line 856 "parser.yy" { (yyval.sn) = nullptr; } break; case 186: /* Line 1806 of yacc.c */ #line 858 "parser.yy" { (yyval.sn) = nullptr; } break; case 187: /* Line 1806 of yacc.c */ #line 863 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 188: /* Line 1806 of yacc.c */ #line 865 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn), true ) ); } break; case 189: /* Line 1806 of yacc.c */ #line 867 "parser.yy" { (yyval.sn) = new StatementNode( build_for( (yyvsp[(4) - (6)].fctl), (yyvsp[(6) - (6)].sn) ) ); } break; case 190: /* Line 1806 of yacc.c */ #line 872 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 191: /* Line 1806 of yacc.c */ #line 874 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 192: /* Line 1806 of yacc.c */ #line 879 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Goto ) ); } break; case 193: /* Line 1806 of yacc.c */ #line 883 "parser.yy" { (yyval.sn) = new StatementNode( build_computedgoto( (yyvsp[(3) - (4)].en) ) ); } break; case 194: /* Line 1806 of yacc.c */ #line 886 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Continue ) ); } break; case 195: /* Line 1806 of yacc.c */ #line 890 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Continue ) ); } break; case 196: /* Line 1806 of yacc.c */ #line 893 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 197: /* Line 1806 of yacc.c */ #line 897 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Break ) ); } break; case 198: /* Line 1806 of yacc.c */ #line 899 "parser.yy" { (yyval.sn) = new StatementNode( build_return( (yyvsp[(2) - (3)].en) ) ); } break; case 199: /* Line 1806 of yacc.c */ #line 901 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 200: /* Line 1806 of yacc.c */ #line 903 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 201: /* Line 1806 of yacc.c */ #line 905 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (5)].en) ) ); } break; case 202: /* Line 1806 of yacc.c */ #line 910 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), (yyvsp[(3) - (3)].sn), 0 ) ); } break; case 203: /* Line 1806 of yacc.c */ #line 912 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), 0, (yyvsp[(3) - (3)].sn) ) ); } break; case 204: /* Line 1806 of yacc.c */ #line 914 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (4)].sn), (yyvsp[(3) - (4)].sn), (yyvsp[(4) - (4)].sn) ) ); } break; case 206: /* Line 1806 of yacc.c */ #line 921 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 923 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 208: /* Line 1806 of yacc.c */ #line 925 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 209: /* Line 1806 of yacc.c */ #line 927 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 210: /* Line 1806 of yacc.c */ #line 932 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 211: /* Line 1806 of yacc.c */ #line 934 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); } break; case 212: /* Line 1806 of yacc.c */ #line 936 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 213: /* Line 1806 of yacc.c */ #line 938 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); } break; case 214: /* Line 1806 of yacc.c */ #line 943 "parser.yy" { (yyval.sn) = new StatementNode( build_finally( (yyvsp[(2) - (2)].sn) ) ); } break; case 216: /* Line 1806 of yacc.c */ #line 956 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 217: /* Line 1806 of yacc.c */ #line 961 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 218: /* Line 1806 of yacc.c */ #line 963 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 220: /* Line 1806 of yacc.c */ #line 972 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ) ); } break; case 221: /* Line 1806 of yacc.c */ #line 974 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ) ); } break; case 222: /* Line 1806 of yacc.c */ #line 976 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ) ); } break; case 223: /* Line 1806 of yacc.c */ #line 978 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].en) ) ); } break; case 224: /* Line 1806 of yacc.c */ #line 980 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].en), (yyvsp[(12) - (14)].label) ) ); } break; case 225: /* Line 1806 of yacc.c */ #line 985 "parser.yy" { (yyval.flag) = false; } break; case 226: /* Line 1806 of yacc.c */ #line 987 "parser.yy" { (yyval.flag) = true; } break; case 227: /* Line 1806 of yacc.c */ #line 992 "parser.yy" { (yyval.en) = nullptr; } break; case 230: /* Line 1806 of yacc.c */ #line 999 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 231: /* Line 1806 of yacc.c */ #line 1004 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ) ); } break; case 232: /* Line 1806 of yacc.c */ #line 1006 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ) ); } break; case 233: /* Line 1806 of yacc.c */ #line 1011 "parser.yy" { (yyval.en) = nullptr; } break; case 234: /* Line 1806 of yacc.c */ #line 1013 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 235: /* Line 1806 of yacc.c */ #line 1016 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( (yyvsp[(3) - (3)].constant) ) ); } break; case 236: /* Line 1806 of yacc.c */ #line 1021 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->labels.push_back( *(yyvsp[(1) - (1)].tok) ); delete (yyvsp[(1) - (1)].tok); // allocated by lexer } break; case 237: /* Line 1806 of yacc.c */ #line 1026 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->labels.push_back( *(yyvsp[(3) - (3)].tok) ); delete (yyvsp[(3) - (3)].tok); // allocated by lexer } break; case 238: /* Line 1806 of yacc.c */ #line 1036 "parser.yy" { (yyval.decl) = nullptr; } break; case 241: /* Line 1806 of yacc.c */ #line 1043 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 242: /* Line 1806 of yacc.c */ #line 1048 "parser.yy" { (yyval.decl) = nullptr; } break; case 245: /* Line 1806 of yacc.c */ #line 1055 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 250: /* Line 1806 of yacc.c */ #line 1069 "parser.yy" {} break; case 251: /* Line 1806 of yacc.c */ #line 1070 "parser.yy" {} break; case 259: /* Line 1806 of yacc.c */ #line 1099 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1106 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 261: /* Line 1806 of yacc.c */ #line 1111 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (6)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneType( (yyvsp[(5) - (6)].tok) )->addInitializer( (yyvsp[(6) - (6)].in) ) ); } break; case 262: /* Line 1806 of yacc.c */ #line 1121 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) )->addAsmName( (yyvsp[(3) - (3)].constant) ); } break; case 263: /* Line 1806 of yacc.c */ #line 1126 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) )->addAsmName( (yyvsp[(3) - (3)].constant) ); } break; case 264: /* Line 1806 of yacc.c */ #line 1131 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(3) - (4)].tok) ); (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addName( (yyvsp[(3) - (4)].tok) )->addAsmName( (yyvsp[(4) - (4)].constant) ); } break; case 265: /* Line 1806 of yacc.c */ #line 1139 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 266: /* Line 1806 of yacc.c */ #line 1144 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 267: /* Line 1806 of yacc.c */ #line 1149 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 268: /* Line 1806 of yacc.c */ #line 1154 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 269: /* Line 1806 of yacc.c */ #line 1159 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 270: /* Line 1806 of yacc.c */ #line 1190 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 271: /* Line 1806 of yacc.c */ #line 1194 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 272: /* Line 1806 of yacc.c */ #line 1201 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 273: /* Line 1806 of yacc.c */ #line 1205 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 274: /* Line 1806 of yacc.c */ #line 1210 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 275: /* Line 1806 of yacc.c */ #line 1215 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 276: /* Line 1806 of yacc.c */ #line 1220 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::TD ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 277: /* Line 1806 of yacc.c */ #line 1231 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 278: /* Line 1806 of yacc.c */ #line 1236 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) )->addTypedef() ); } break; case 279: /* Line 1806 of yacc.c */ #line 1241 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(4) - (4)].decl)->addType( (yyvsp[(3) - (4)].decl) )->addQualifiers( (yyvsp[(1) - (4)].decl) )->addTypedef(); } break; case 280: /* Line 1806 of yacc.c */ #line 1246 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 281: /* Line 1806 of yacc.c */ #line 1251 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(4) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addTypedef()->addType( (yyvsp[(1) - (4)].decl) ); } break; case 282: /* Line 1806 of yacc.c */ #line 1260 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 283: /* Line 1806 of yacc.c */ #line 1265 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 288: /* Line 1806 of yacc.c */ #line 1282 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addAsmName( (yyvsp[(3) - (4)].constant) )->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 289: /* Line 1806 of yacc.c */ #line 1287 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneBaseType( (yyvsp[(4) - (6)].decl)->addAsmName( (yyvsp[(5) - (6)].constant) )->addInitializer( (yyvsp[(6) - (6)].in) ) ) ); } break; case 298: /* Line 1806 of yacc.c */ #line 1309 "parser.yy" { (yyval.decl) = nullptr; } break; case 301: /* Line 1806 of yacc.c */ #line 1321 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 304: /* Line 1806 of yacc.c */ #line 1331 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 305: /* Line 1806 of yacc.c */ #line 1333 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 306: /* Line 1806 of yacc.c */ #line 1335 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 307: /* Line 1806 of yacc.c */ #line 1337 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 308: /* Line 1806 of yacc.c */ #line 1339 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 309: /* Line 1806 of yacc.c */ #line 1341 "parser.yy" { typedefTable.enterScope(); } break; case 310: /* Line 1806 of yacc.c */ #line 1345 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 312: /* Line 1806 of yacc.c */ #line 1354 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 313: /* Line 1806 of yacc.c */ #line 1356 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 315: /* Line 1806 of yacc.c */ #line 1367 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 316: /* Line 1806 of yacc.c */ #line 1372 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 317: /* Line 1806 of yacc.c */ #line 1374 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 318: /* Line 1806 of yacc.c */ #line 1376 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 319: /* Line 1806 of yacc.c */ #line 1378 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 320: /* Line 1806 of yacc.c */ #line 1381 "parser.yy" { (yyval.decl) = new DeclarationNode; (yyval.decl)->isInline = true; } break; case 321: /* Line 1806 of yacc.c */ #line 1383 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 322: /* Line 1806 of yacc.c */ #line 1386 "parser.yy" { (yyval.decl) = new DeclarationNode; (yyval.decl)->isNoreturn = true; } break; case 323: /* Line 1806 of yacc.c */ #line 1388 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 324: /* Line 1806 of yacc.c */ #line 1393 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 325: /* Line 1806 of yacc.c */ #line 1395 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 326: /* Line 1806 of yacc.c */ #line 1397 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 327: /* Line 1806 of yacc.c */ #line 1399 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 328: /* Line 1806 of yacc.c */ #line 1401 "parser.yy" { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Long ); } break; case 329: /* Line 1806 of yacc.c */ #line 1403 "parser.yy" { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Short ); } break; case 330: /* Line 1806 of yacc.c */ #line 1405 "parser.yy" { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Signed ); } break; case 331: /* Line 1806 of yacc.c */ #line 1407 "parser.yy" { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Unsigned ); } break; case 332: /* Line 1806 of yacc.c */ #line 1409 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 333: /* Line 1806 of yacc.c */ #line 1411 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 334: /* Line 1806 of yacc.c */ #line 1413 "parser.yy" { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Complex ); } break; case 335: /* Line 1806 of yacc.c */ #line 1415 "parser.yy" { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Imaginary ); } break; case 336: /* Line 1806 of yacc.c */ #line 1417 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 337: /* Line 1806 of yacc.c */ #line 1419 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Zero ); } break; case 338: /* Line 1806 of yacc.c */ #line 1421 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::One ); } break; case 340: /* Line 1806 of yacc.c */ #line 1428 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1430 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1432 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1434 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1440 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1447 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1449 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1451 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1456 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 351: /* Line 1806 of yacc.c */ #line 1458 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1460 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1462 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1468 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1470 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1472 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1478 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1480 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1486 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1488 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 364: /* Line 1806 of yacc.c */ #line 1490 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 365: /* Line 1806 of yacc.c */ #line 1495 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 366: /* Line 1806 of yacc.c */ #line 1497 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 367: /* Line 1806 of yacc.c */ #line 1499 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 370: /* Line 1806 of yacc.c */ #line 1509 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), nullptr, nullptr, (yyvsp[(3) - (4)].decl), true ); } break; case 371: /* Line 1806 of yacc.c */ #line 1511 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), nullptr, nullptr, false ); } break; case 372: /* Line 1806 of yacc.c */ #line 1516 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 373: /* Line 1806 of yacc.c */ #line 1518 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), nullptr, (yyvsp[(5) - (6)].decl), true ); } break; case 374: /* Line 1806 of yacc.c */ #line 1520 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), nullptr, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl), false ); } break; case 375: /* Line 1806 of yacc.c */ #line 1522 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 376: /* Line 1806 of yacc.c */ #line 1527 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 377: /* Line 1806 of yacc.c */ #line 1529 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 378: /* Line 1806 of yacc.c */ #line 1534 "parser.yy" { (yyval.decl) = nullptr; } break; case 379: /* Line 1806 of yacc.c */ #line 1536 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 381: /* Line 1806 of yacc.c */ #line 1542 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->set_extension( true ); } break; case 383: /* Line 1806 of yacc.c */ #line 1545 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (3)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 385: /* Line 1806 of yacc.c */ #line 1555 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 386: /* Line 1806 of yacc.c */ #line 1557 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 387: /* Line 1806 of yacc.c */ #line 1559 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 388: /* Line 1806 of yacc.c */ #line 1564 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 389: /* Line 1806 of yacc.c */ #line 1566 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 390: /* Line 1806 of yacc.c */ #line 1571 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 391: /* Line 1806 of yacc.c */ #line 1573 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 392: /* Line 1806 of yacc.c */ #line 1576 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 393: /* Line 1806 of yacc.c */ #line 1579 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1585 "parser.yy" { (yyval.en) = nullptr; } break; case 396: /* Line 1806 of yacc.c */ #line 1587 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 397: /* Line 1806 of yacc.c */ #line 1592 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 399: /* Line 1806 of yacc.c */ #line 1601 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( nullptr, (yyvsp[(3) - (5)].decl) ); } break; case 400: /* Line 1806 of yacc.c */ #line 1603 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 401: /* Line 1806 of yacc.c */ #line 1608 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 402: /* Line 1806 of yacc.c */ #line 1610 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 403: /* Line 1806 of yacc.c */ #line 1615 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 404: /* Line 1806 of yacc.c */ #line 1617 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 405: /* Line 1806 of yacc.c */ #line 1622 "parser.yy" { (yyval.en) = nullptr; } break; case 406: /* Line 1806 of yacc.c */ #line 1624 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 407: /* Line 1806 of yacc.c */ #line 1631 "parser.yy" { (yyval.decl) = nullptr; } break; case 411: /* Line 1806 of yacc.c */ #line 1639 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1641 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 413: /* Line 1806 of yacc.c */ #line 1643 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 415: /* Line 1806 of yacc.c */ #line 1651 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 416: /* Line 1806 of yacc.c */ #line 1653 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 417: /* Line 1806 of yacc.c */ #line 1655 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 419: /* Line 1806 of yacc.c */ #line 1661 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 420: /* Line 1806 of yacc.c */ #line 1666 "parser.yy" { (yyval.decl) = nullptr; } break; case 423: /* Line 1806 of yacc.c */ #line 1673 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 426: /* Line 1806 of yacc.c */ #line 1680 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 427: /* Line 1806 of yacc.c */ #line 1682 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 429: /* Line 1806 of yacc.c */ #line 1691 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 430: /* Line 1806 of yacc.c */ #line 1694 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 431: /* Line 1806 of yacc.c */ #line 1696 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 436: /* Line 1806 of yacc.c */ #line 1706 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 438: /* Line 1806 of yacc.c */ #line 1712 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].en) ? new InitializerNode( (yyvsp[(3) - (3)].en) ) : nullptr ); } break; case 439: /* Line 1806 of yacc.c */ #line 1717 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].en) ? new InitializerNode( (yyvsp[(3) - (3)].en) ) : nullptr ); } break; case 441: /* Line 1806 of yacc.c */ #line 1726 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 442: /* Line 1806 of yacc.c */ #line 1735 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 443: /* Line 1806 of yacc.c */ #line 1737 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 455: /* Line 1806 of yacc.c */ #line 1762 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 459: /* Line 1806 of yacc.c */ #line 1770 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1775 "parser.yy" { (yyval.in) = nullptr; } break; case 461: /* Line 1806 of yacc.c */ #line 1777 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 462: /* Line 1806 of yacc.c */ #line 1779 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 463: /* Line 1806 of yacc.c */ #line 1783 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 464: /* Line 1806 of yacc.c */ #line 1784 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 465: /* Line 1806 of yacc.c */ #line 1789 "parser.yy" { (yyval.in) = nullptr; } break; case 467: /* Line 1806 of yacc.c */ #line 1791 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 468: /* Line 1806 of yacc.c */ #line 1792 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_last( (yyvsp[(3) - (3)].in) ) ); } break; case 469: /* Line 1806 of yacc.c */ #line 1794 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_last( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 471: /* Line 1806 of yacc.c */ #line 1810 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (2)].tok) ) ); } break; case 473: /* Line 1806 of yacc.c */ #line 1816 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_last( (yyvsp[(2) - (2)].en) ) ); } break; case 474: /* Line 1806 of yacc.c */ #line 1822 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(2) - (2)].tok) ) ); } break; case 475: /* Line 1806 of yacc.c */ #line 1825 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 476: /* Line 1806 of yacc.c */ #line 1827 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 477: /* Line 1806 of yacc.c */ #line 1829 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1831 "parser.yy" { (yyval.en) = (yyvsp[(4) - (6)].en); } break; case 480: /* Line 1806 of yacc.c */ #line 1855 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1857 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1859 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 484: /* Line 1806 of yacc.c */ #line 1865 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 485: /* Line 1806 of yacc.c */ #line 1867 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 486: /* Line 1806 of yacc.c */ #line 1872 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 488: /* Line 1806 of yacc.c */ #line 1878 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 489: /* Line 1806 of yacc.c */ #line 1883 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 490: /* Line 1806 of yacc.c */ #line 1885 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 492: /* Line 1806 of yacc.c */ #line 1891 "parser.yy" { (yyval.tclass) = DeclarationNode::Otype; } break; case 493: /* Line 1806 of yacc.c */ #line 1893 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 494: /* Line 1806 of yacc.c */ #line 1895 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 495: /* Line 1806 of yacc.c */ #line 1897 "parser.yy" { (yyval.tclass) = DeclarationNode::Ttype; } break; case 496: /* Line 1806 of yacc.c */ #line 1902 "parser.yy" { (yyval.decl) = nullptr; } break; case 497: /* Line 1806 of yacc.c */ #line 1904 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 498: /* Line 1806 of yacc.c */ #line 1909 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 499: /* Line 1806 of yacc.c */ #line 1914 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 500: /* Line 1806 of yacc.c */ #line 1916 "parser.yy" { (yyval.decl) = nullptr; } break; case 501: /* Line 1806 of yacc.c */ #line 1921 "parser.yy" { (yyval.en) = new ExpressionNode( build_typevalue( (yyvsp[(1) - (1)].decl) ) ); } break; case 503: /* Line 1806 of yacc.c */ #line 1924 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( build_typevalue( (yyvsp[(3) - (3)].decl) ) ) ) ); } break; case 504: /* Line 1806 of yacc.c */ #line 1926 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 505: /* Line 1806 of yacc.c */ #line 1931 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 506: /* Line 1806 of yacc.c */ #line 1933 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 507: /* Line 1806 of yacc.c */ #line 1935 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 508: /* Line 1806 of yacc.c */ #line 1940 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 509: /* Line 1806 of yacc.c */ #line 1942 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 510: /* Line 1806 of yacc.c */ #line 1947 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 511: /* Line 1806 of yacc.c */ #line 1952 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 512: /* Line 1806 of yacc.c */ #line 1960 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 513: /* Line 1806 of yacc.c */ #line 1965 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 514: /* Line 1806 of yacc.c */ #line 1970 "parser.yy" { typedefTable.leaveTrait(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 516: /* Line 1806 of yacc.c */ #line 1980 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 519: /* Line 1806 of yacc.c */ #line 1990 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 520: /* Line 1806 of yacc.c */ #line 1995 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 521: /* Line 1806 of yacc.c */ #line 2000 "parser.yy" { typedefTable.addToEnclosingScope2( *(yyvsp[(5) - (5)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 522: /* Line 1806 of yacc.c */ #line 2008 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 523: /* Line 1806 of yacc.c */ #line 2013 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 524: /* Line 1806 of yacc.c */ #line 2023 "parser.yy" {} break; case 525: /* Line 1806 of yacc.c */ #line 2025 "parser.yy" { parseTree = parseTree ? parseTree->appendList( (yyvsp[(1) - (1)].decl) ) : (yyvsp[(1) - (1)].decl); } break; case 527: /* Line 1806 of yacc.c */ #line 2031 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 528: /* Line 1806 of yacc.c */ #line 2036 "parser.yy" { (yyval.decl) = nullptr; } break; case 532: /* Line 1806 of yacc.c */ #line 2044 "parser.yy" {} break; case 533: /* Line 1806 of yacc.c */ #line 2046 "parser.yy" { linkageStack.push( linkage ); // handle nested extern "C"/"Cforall" linkage = LinkageSpec::linkageCheck( (yyvsp[(2) - (2)].tok) ); } break; case 534: /* Line 1806 of yacc.c */ #line 2051 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 535: /* Line 1806 of yacc.c */ #line 2057 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 537: /* Line 1806 of yacc.c */ #line 2072 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 538: /* Line 1806 of yacc.c */ #line 2078 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (4)].decl)->addOldDeclList( (yyvsp[(3) - (4)].decl) )->addFunctionBody( (yyvsp[(4) - (4)].sn) ); } break; case 539: /* Line 1806 of yacc.c */ #line 2087 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 540: /* Line 1806 of yacc.c */ #line 2093 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 541: /* Line 1806 of yacc.c */ #line 2099 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 542: /* Line 1806 of yacc.c */ #line 2105 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 543: /* Line 1806 of yacc.c */ #line 2111 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(3) - (4)].decl)->addFunctionBody( (yyvsp[(4) - (4)].sn) )->addQualifiers( (yyvsp[(2) - (4)].decl) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 544: /* Line 1806 of yacc.c */ #line 2119 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addType( (yyvsp[(1) - (5)].decl) ); } break; case 545: /* Line 1806 of yacc.c */ #line 2125 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 546: /* Line 1806 of yacc.c */ #line 2133 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 547: /* Line 1806 of yacc.c */ #line 2139 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(3) - (6)].decl)->addOldDeclList( (yyvsp[(5) - (6)].decl) )->addFunctionBody( (yyvsp[(6) - (6)].sn) )->addQualifiers( (yyvsp[(2) - (6)].decl) )->addQualifiers( (yyvsp[(1) - (6)].decl) ); } break; case 551: /* Line 1806 of yacc.c */ #line 2154 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 552: /* Line 1806 of yacc.c */ #line 2159 "parser.yy" { (yyval.constant) = nullptr; } break; case 553: /* Line 1806 of yacc.c */ #line 2161 "parser.yy" { (yyval.constant) = (yyvsp[(3) - (5)].constant); } break; case 554: /* Line 1806 of yacc.c */ #line 2166 "parser.yy" { (yyval.decl) = nullptr; } break; case 557: /* Line 1806 of yacc.c */ #line 2173 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 558: /* Line 1806 of yacc.c */ #line 2178 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (6)].decl); } break; case 560: /* Line 1806 of yacc.c */ #line 2184 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 561: /* Line 1806 of yacc.c */ #line 2189 "parser.yy" { (yyval.decl) = nullptr; } break; case 562: /* Line 1806 of yacc.c */ #line 2191 "parser.yy" { (yyval.decl) = DeclarationNode::newAttribute( (yyvsp[(1) - (1)].tok) ); } break; case 563: /* Line 1806 of yacc.c */ #line 2193 "parser.yy" { (yyval.decl) = DeclarationNode::newAttribute( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2201 "parser.yy" { (yyval.tok) = Token{ new string( "__const__" ) }; } break; case 568: /* Line 1806 of yacc.c */ #line 2236 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2239 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2241 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2246 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2251 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 574: /* Line 1806 of yacc.c */ #line 2256 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2258 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2260 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 577: /* Line 1806 of yacc.c */ #line 2265 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 578: /* Line 1806 of yacc.c */ #line 2267 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2269 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 580: /* Line 1806 of yacc.c */ #line 2271 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 581: /* Line 1806 of yacc.c */ #line 2276 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2278 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 583: /* Line 1806 of yacc.c */ #line 2287 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2290 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 586: /* Line 1806 of yacc.c */ #line 2295 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 587: /* Line 1806 of yacc.c */ #line 2297 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 588: /* Line 1806 of yacc.c */ #line 2299 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 589: /* Line 1806 of yacc.c */ #line 2304 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2306 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 591: /* Line 1806 of yacc.c */ #line 2308 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 592: /* Line 1806 of yacc.c */ #line 2313 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 593: /* Line 1806 of yacc.c */ #line 2315 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2317 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 598: /* Line 1806 of yacc.c */ #line 2332 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 599: /* Line 1806 of yacc.c */ #line 2334 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2336 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 601: /* Line 1806 of yacc.c */ #line 2341 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 602: /* Line 1806 of yacc.c */ #line 2343 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 603: /* Line 1806 of yacc.c */ #line 2345 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 604: /* Line 1806 of yacc.c */ #line 2350 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2352 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2354 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 607: /* Line 1806 of yacc.c */ #line 2369 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2372 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2374 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2380 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 613: /* Line 1806 of yacc.c */ #line 2385 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 614: /* Line 1806 of yacc.c */ #line 2387 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 615: /* Line 1806 of yacc.c */ #line 2389 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 616: /* Line 1806 of yacc.c */ #line 2394 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2396 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2398 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 619: /* Line 1806 of yacc.c */ #line 2400 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 620: /* Line 1806 of yacc.c */ #line 2405 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2407 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2409 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 623: /* Line 1806 of yacc.c */ #line 2419 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 625: /* Line 1806 of yacc.c */ #line 2422 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2424 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2429 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2431 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 629: /* Line 1806 of yacc.c */ #line 2433 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 630: /* Line 1806 of yacc.c */ #line 2438 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2440 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2442 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2444 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 634: /* Line 1806 of yacc.c */ #line 2449 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2451 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2453 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 637: /* Line 1806 of yacc.c */ #line 2484 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2487 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2489 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 641: /* Line 1806 of yacc.c */ #line 2494 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2499 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2507 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2509 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 645: /* Line 1806 of yacc.c */ #line 2511 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 646: /* Line 1806 of yacc.c */ #line 2516 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2518 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2523 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 649: /* Line 1806 of yacc.c */ #line 2525 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2540 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2542 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 653: /* Line 1806 of yacc.c */ #line 2547 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 654: /* Line 1806 of yacc.c */ #line 2549 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 655: /* Line 1806 of yacc.c */ #line 2551 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 656: /* Line 1806 of yacc.c */ #line 2553 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 657: /* Line 1806 of yacc.c */ #line 2555 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 659: /* Line 1806 of yacc.c */ #line 2561 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 660: /* Line 1806 of yacc.c */ #line 2563 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 661: /* Line 1806 of yacc.c */ #line 2565 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 662: /* Line 1806 of yacc.c */ #line 2570 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); } break; case 663: /* Line 1806 of yacc.c */ #line 2572 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 664: /* Line 1806 of yacc.c */ #line 2574 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 665: /* Line 1806 of yacc.c */ #line 2580 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 666: /* Line 1806 of yacc.c */ #line 2582 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2588 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 669: /* Line 1806 of yacc.c */ #line 2590 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 670: /* Line 1806 of yacc.c */ #line 2592 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 671: /* Line 1806 of yacc.c */ #line 2594 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2609 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2611 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 675: /* Line 1806 of yacc.c */ #line 2616 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 676: /* Line 1806 of yacc.c */ #line 2618 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 677: /* Line 1806 of yacc.c */ #line 2620 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 678: /* Line 1806 of yacc.c */ #line 2622 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 679: /* Line 1806 of yacc.c */ #line 2624 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 681: /* Line 1806 of yacc.c */ #line 2630 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 682: /* Line 1806 of yacc.c */ #line 2632 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 683: /* Line 1806 of yacc.c */ #line 2634 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 684: /* Line 1806 of yacc.c */ #line 2639 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); } break; case 685: /* Line 1806 of yacc.c */ #line 2641 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 686: /* Line 1806 of yacc.c */ #line 2643 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 688: /* Line 1806 of yacc.c */ #line 2650 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 690: /* Line 1806 of yacc.c */ #line 2661 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 691: /* Line 1806 of yacc.c */ #line 2664 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 692: /* Line 1806 of yacc.c */ #line 2666 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 693: /* Line 1806 of yacc.c */ #line 2669 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 694: /* Line 1806 of yacc.c */ #line 2671 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 695: /* Line 1806 of yacc.c */ #line 2673 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 697: /* Line 1806 of yacc.c */ #line 2687 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2689 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2694 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 700: /* Line 1806 of yacc.c */ #line 2696 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 701: /* Line 1806 of yacc.c */ #line 2698 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 702: /* Line 1806 of yacc.c */ #line 2700 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 703: /* Line 1806 of yacc.c */ #line 2702 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 705: /* Line 1806 of yacc.c */ #line 2708 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 706: /* Line 1806 of yacc.c */ #line 2710 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 707: /* Line 1806 of yacc.c */ #line 2712 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 708: /* Line 1806 of yacc.c */ #line 2717 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 709: /* Line 1806 of yacc.c */ #line 2719 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 712: /* Line 1806 of yacc.c */ #line 2729 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2739 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2741 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2743 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2745 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2747 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2749 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2756 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2758 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2760 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2762 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2764 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 726: /* Line 1806 of yacc.c */ #line 2767 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 727: /* Line 1806 of yacc.c */ #line 2769 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 728: /* Line 1806 of yacc.c */ #line 2771 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 729: /* Line 1806 of yacc.c */ #line 2773 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 730: /* Line 1806 of yacc.c */ #line 2775 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 731: /* Line 1806 of yacc.c */ #line 2780 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 732: /* Line 1806 of yacc.c */ #line 2782 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 733: /* Line 1806 of yacc.c */ #line 2787 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 734: /* Line 1806 of yacc.c */ #line 2789 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 736: /* Line 1806 of yacc.c */ #line 2816 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2827 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2829 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2831 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2833 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2835 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2837 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 746: /* Line 1806 of yacc.c */ #line 2844 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 747: /* Line 1806 of yacc.c */ #line 2846 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 748: /* Line 1806 of yacc.c */ #line 2848 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 749: /* Line 1806 of yacc.c */ #line 2850 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 750: /* Line 1806 of yacc.c */ #line 2852 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 751: /* Line 1806 of yacc.c */ #line 2854 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 752: /* Line 1806 of yacc.c */ #line 2859 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 753: /* Line 1806 of yacc.c */ #line 2866 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); } break; case 754: /* Line 1806 of yacc.c */ #line 2868 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); } break; case 757: /* Line 1806 of yacc.c */ #line 2892 "parser.yy" { (yyval.en) = nullptr; } break; case 758: /* Line 1806 of yacc.c */ #line 2894 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9183 "Parser/parser.cc" 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); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*------------------------------------. | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: /* 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) { ++yynerrs; #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; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule which action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: 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; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } *++yyvsp = yylval; /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined(yyoverflow) || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #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 which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif /* Make sure YYID is used. */ return YYID (yyresult); } /* Line 2067 of yacc.c */ #line 2897 "parser.yy" // ----end of grammar---- extern char *yytext; void yyerror( const char * ) { cout << "Error "; if ( yyfilename ) { cout << "in file " << yyfilename << " "; } // if cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << endl; } // Local Variables: // // mode: c++ // // tab-width: 4 // // compile-command: "make install" // // End: //