/* 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 42 "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, TRAIT = 293, SIZEOF = 294, OFFSETOF = 295, ATTRIBUTE = 296, EXTENSION = 297, IF = 298, ELSE = 299, SWITCH = 300, CASE = 301, DEFAULT = 302, DO = 303, WHILE = 304, FOR = 305, BREAK = 306, CONTINUE = 307, GOTO = 308, RETURN = 309, CHOOSE = 310, DISABLE = 311, ENABLE = 312, FALLTHRU = 313, TRY = 314, CATCH = 315, CATCHRESUME = 316, FINALLY = 317, THROW = 318, THROWRESUME = 319, AT = 320, ASM = 321, ALIGNAS = 322, ALIGNOF = 323, ATOMIC = 324, GENERIC = 325, NORETURN = 326, STATICASSERT = 327, THREADLOCAL = 328, IDENTIFIER = 329, QUOTED_IDENTIFIER = 330, TYPEDEFname = 331, TYPEGENname = 332, ATTR_IDENTIFIER = 333, ATTR_TYPEDEFname = 334, ATTR_TYPEGENname = 335, INTEGERconstant = 336, CHARACTERconstant = 337, STRINGliteral = 338, REALDECIMALconstant = 339, REALFRACTIONconstant = 340, FLOATINGconstant = 341, ZERO = 342, ONE = 343, ARROW = 344, ICR = 345, DECR = 346, LS = 347, RS = 348, LE = 349, GE = 350, EQ = 351, NE = 352, ANDAND = 353, OROR = 354, ELLIPSIS = 355, MULTassign = 356, DIVassign = 357, MODassign = 358, PLUSassign = 359, MINUSassign = 360, LSassign = 361, RSassign = 362, ANDassign = 363, ERassign = 364, ORassign = 365, ATassign = 366, THEN = 367 }; #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 TRAIT 293 #define SIZEOF 294 #define OFFSETOF 295 #define ATTRIBUTE 296 #define EXTENSION 297 #define IF 298 #define ELSE 299 #define SWITCH 300 #define CASE 301 #define DEFAULT 302 #define DO 303 #define WHILE 304 #define FOR 305 #define BREAK 306 #define CONTINUE 307 #define GOTO 308 #define RETURN 309 #define CHOOSE 310 #define DISABLE 311 #define ENABLE 312 #define FALLTHRU 313 #define TRY 314 #define CATCH 315 #define CATCHRESUME 316 #define FINALLY 317 #define THROW 318 #define THROWRESUME 319 #define AT 320 #define ASM 321 #define ALIGNAS 322 #define ALIGNOF 323 #define ATOMIC 324 #define GENERIC 325 #define NORETURN 326 #define STATICASSERT 327 #define THREADLOCAL 328 #define IDENTIFIER 329 #define QUOTED_IDENTIFIER 330 #define TYPEDEFname 331 #define TYPEGENname 332 #define ATTR_IDENTIFIER 333 #define ATTR_TYPEDEFname 334 #define ATTR_TYPEGENname 335 #define INTEGERconstant 336 #define CHARACTERconstant 337 #define STRINGliteral 338 #define REALDECIMALconstant 339 #define REALFRACTIONconstant 340 #define FLOATINGconstant 341 #define ZERO 342 #define ONE 343 #define ARROW 344 #define ICR 345 #define DECR 346 #define LS 347 #define RS 348 #define LE 349 #define GE 350 #define EQ 351 #define NE 352 #define ANDAND 353 #define OROR 354 #define ELLIPSIS 355 #define MULTassign 356 #define DIVassign 357 #define MODassign 358 #define PLUSassign 359 #define MINUSassign 360 #define LSassign 361 #define RSassign 362 #define ANDassign 363 #define ERassign 364 #define ORassign 365 #define ATassign 366 #define THEN 367 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 120 "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 379 "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 391 "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 10624 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 137 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 243 /* YYNRULES -- Number of rules. */ #define YYNRULES 757 /* YYNRULES -- Number of states. */ #define YYNSTATES 1540 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 367 #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, 125, 2, 2, 2, 128, 122, 2, 113, 114, 121, 123, 120, 124, 117, 127, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 134, 136, 129, 135, 130, 133, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 115, 2, 116, 131, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 118, 132, 119, 126, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 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 }; #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, 1687, 1690, 1696, 1702, 1716, 1718, 1720, 1724, 1728, 1731, 1735, 1739, 1742, 1747, 1749, 1756, 1766, 1767, 1779, 1781, 1785, 1789, 1793, 1795, 1797, 1803, 1806, 1812, 1813, 1815, 1817, 1821, 1822, 1824, 1826, 1828, 1830, 1831, 1838, 1841, 1843, 1846, 1851, 1854, 1858, 1862, 1866, 1871, 1877, 1883, 1889, 1896, 1898, 1900, 1902, 1906, 1907, 1913, 1914, 1916, 1918, 1921, 1928, 1930, 1934, 1935, 1937, 1942, 1944, 1946, 1948, 1950, 1953, 1955, 1958, 1961, 1963, 1967, 1970, 1974, 1978, 1981, 1986, 1991, 1995, 2004, 2008, 2011, 2013, 2016, 2023, 2032, 2036, 2039, 2043, 2047, 2052, 2057, 2061, 2063, 2065, 2067, 2072, 2079, 2083, 2086, 2090, 2094, 2099, 2104, 2108, 2111, 2113, 2116, 2119, 2121, 2125, 2128, 2132, 2136, 2139, 2144, 2149, 2153, 2160, 2169, 2173, 2176, 2178, 2181, 2184, 2187, 2191, 2195, 2198, 2203, 2208, 2212, 2219, 2228, 2232, 2235, 2237, 2240, 2243, 2245, 2247, 2250, 2254, 2258, 2261, 2266, 2273, 2282, 2284, 2287, 2290, 2292, 2295, 2298, 2302, 2306, 2308, 2313, 2318, 2322, 2328, 2337, 2341, 2344, 2348, 2350, 2356, 2362, 2369, 2376, 2378, 2381, 2384, 2386, 2389, 2392, 2396, 2400, 2402, 2407, 2412, 2416, 2422, 2431, 2435, 2437, 2440, 2442, 2445, 2452, 2458, 2465, 2473, 2481, 2483, 2486, 2489, 2491, 2494, 2497, 2501, 2505, 2507, 2512, 2517, 2521, 2530, 2534, 2536, 2538, 2541, 2543, 2545, 2548, 2552, 2555, 2559, 2562, 2566, 2570, 2573, 2578, 2582, 2585, 2589, 2592, 2597, 2601, 2604, 2611, 2618, 2625, 2633, 2635, 2638, 2640, 2642, 2644, 2647, 2651, 2654, 2658, 2661, 2665, 2669, 2674, 2677, 2681, 2686, 2689, 2695, 2702, 2709, 2710, 2712, 2713 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 308, 0, -1, -1, -1, 81, -1, 84, -1, 85, -1, 86, -1, 82, -1, 74, -1, 78, -1, 144, -1, 74, -1, 78, -1, 74, -1, 144, -1, 87, -1, 88, -1, 146, -1, 83, -1, 146, 83, -1, 74, -1, 144, -1, 174, -1, 113, 176, 114, -1, 113, 180, 114, -1, 147, -1, 148, 115, 138, 171, 139, 116, -1, 148, 113, 149, 114, -1, 148, 117, 143, -1, 148, 117, 115, 138, 151, 139, 116, -1, 148, 85, -1, 148, 89, 143, -1, 148, 89, 115, 138, 151, 139, 116, -1, 148, 90, -1, 148, 91, -1, 113, 281, 114, 118, 285, 378, 119, -1, 148, 118, 149, 119, -1, 150, -1, 149, 120, 150, -1, -1, 171, -1, 152, -1, 151, 120, 152, -1, 153, -1, 84, 152, -1, 84, 115, 138, 151, 139, 116, -1, 153, 117, 152, -1, 153, 117, 115, 138, 151, 139, 116, -1, 153, 89, 152, -1, 153, 89, 115, 138, 151, 139, 116, -1, 81, 154, -1, 86, 154, -1, 143, 154, -1, -1, 154, 85, -1, 148, -1, 140, -1, 145, -1, 42, 158, -1, 156, 158, -1, 157, 158, -1, 90, 155, -1, 91, 155, -1, 39, 155, -1, 39, 113, 281, 114, -1, 68, 155, -1, 68, 113, 281, 114, -1, 40, 113, 281, 120, 143, 114, -1, 78, -1, 78, 113, 150, 114, -1, 78, 113, 282, 114, -1, 121, -1, 122, -1, 123, -1, 124, -1, 125, -1, 126, -1, 155, -1, 113, 281, 114, 158, -1, 158, -1, 159, 121, 158, -1, 159, 127, 158, -1, 159, 128, 158, -1, 159, -1, 160, 123, 159, -1, 160, 124, 159, -1, 160, -1, 161, 92, 160, -1, 161, 93, 160, -1, 161, -1, 162, 129, 161, -1, 162, 130, 161, -1, 162, 94, 161, -1, 162, 95, 161, -1, 162, -1, 163, 96, 162, -1, 163, 97, 162, -1, 163, -1, 164, 122, 163, -1, 164, -1, 165, 131, 164, -1, 165, -1, 166, 132, 165, -1, 166, -1, 167, 98, 166, -1, 167, -1, 168, 99, 167, -1, 168, -1, 168, 133, 176, 134, 169, -1, 168, 133, 134, 169, -1, 169, -1, 169, -1, 155, 173, 171, -1, -1, 171, -1, 135, -1, 111, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 107, -1, 108, -1, 109, -1, 110, -1, 115, 138, 120, 175, 139, 116, -1, 115, 138, 171, 120, 175, 139, 116, -1, 172, -1, 175, 120, 172, -1, 171, -1, 176, 120, 171, -1, -1, 176, -1, 179, -1, 180, -1, 184, -1, 185, -1, 197, -1, 199, -1, 200, -1, 205, -1, 131, 148, 118, 149, 119, 136, -1, 74, 134, 318, 178, -1, 118, 119, -1, 118, 138, 138, 216, 181, 139, 119, -1, 182, -1, 181, 138, 182, -1, 219, -1, 42, 219, -1, 314, -1, 178, 139, -1, 178, -1, 183, 178, -1, 177, 136, -1, 43, 113, 176, 114, 178, -1, 43, 113, 176, 114, 178, 44, 178, -1, 45, 113, 176, 114, 190, -1, 45, 113, 176, 114, 118, 138, 212, 191, 119, -1, 55, 113, 176, 114, 190, -1, 55, 113, 176, 114, 118, 138, 212, 193, 119, -1, 170, -1, 170, 100, 170, -1, 316, -1, 186, -1, 187, 120, 186, -1, 46, 187, 134, -1, 47, 134, -1, 188, -1, 189, 188, -1, 189, 178, -1, -1, 192, -1, 189, 183, -1, 192, 189, 183, -1, -1, 194, -1, 189, 196, -1, 189, 183, 195, -1, 194, 189, 196, -1, 194, 189, 183, 195, -1, -1, 196, -1, 58, -1, 58, 136, -1, 49, 113, 176, 114, 178, -1, 48, 178, 49, 113, 176, 114, 136, -1, 50, 113, 138, 198, 114, 178, -1, 177, 139, 136, 177, 136, 177, -1, 219, 177, 136, 177, -1, 53, 74, 136, -1, 53, 121, 176, 136, -1, 52, 136, -1, 52, 74, 136, -1, 51, 136, -1, 51, 74, 136, -1, 54, 177, 136, -1, 63, 172, 136, -1, 64, 172, 136, -1, 64, 172, 65, 171, 136, -1, 59, 180, 201, -1, 59, 180, 203, -1, 59, 180, 201, 203, -1, 202, -1, 60, 113, 100, 114, 180, -1, 202, 60, 113, 100, 114, 180, -1, 61, 113, 100, 114, 180, -1, 202, 61, 113, 100, 114, 180, -1, 60, 113, 138, 138, 204, 139, 114, 180, 139, -1, 202, 60, 113, 138, 138, 204, 139, 114, 180, 139, -1, 61, 113, 138, 138, 204, 139, 114, 180, 139, -1, 202, 61, 113, 138, 138, 204, 139, 114, 180, 139, -1, 62, 180, -1, 232, -1, 232, 315, -1, 232, 363, -1, 372, 143, -1, 372, -1, 66, 206, 113, 145, 114, 136, -1, 66, 206, 113, 145, 134, 207, 114, 136, -1, 66, 206, 113, 145, 134, 207, 134, 207, 114, 136, -1, 66, 206, 113, 145, 134, 207, 134, 207, 134, 210, 114, 136, -1, 66, 206, 53, 113, 145, 134, 134, 207, 134, 210, 134, 211, 114, 136, -1, -1, 11, -1, -1, 208, -1, 209, -1, 208, 120, 209, -1, 145, 113, 170, 114, -1, 115, 170, 116, 145, 113, 170, 114, -1, -1, 145, -1, 210, 120, 145, -1, 143, -1, 211, 120, 143, -1, 139, -1, 213, -1, 219, -1, 213, 138, 219, -1, 139, -1, 215, -1, 229, -1, 215, 138, 229, -1, -1, 217, -1, 31, 218, 136, -1, 217, 31, 218, 136, -1, 280, -1, 218, 120, 280, -1, 220, -1, 229, -1, 221, 139, 136, -1, 226, 139, 136, -1, 223, 139, 136, -1, 299, 139, 136, -1, 302, 139, 136, -1, 222, 283, -1, 238, 222, 283, -1, 221, 139, 120, 138, 278, 283, -1, 373, 278, 317, -1, 376, 278, 317, -1, 234, 376, 278, 317, -1, 224, -1, 234, 224, -1, 238, 224, -1, 238, 234, 224, -1, 223, 139, 120, 138, 278, -1, 376, 278, 113, 138, 266, 139, 114, -1, 225, 278, 113, 138, 266, 139, 114, -1, 115, 138, 268, 139, 116, -1, 115, 138, 268, 139, 120, 138, 269, 139, 116, -1, 3, 222, -1, 3, 224, -1, 226, 139, 120, 138, 143, -1, 3, 232, 315, -1, 227, 139, 120, 138, 315, -1, 234, 3, 232, 315, -1, 232, 3, 315, -1, 232, 3, 234, 315, -1, 3, 143, 135, 171, -1, 228, 139, 120, 138, 143, 135, 171, -1, 230, 139, 136, -1, 227, 139, 136, -1, 228, 139, 136, -1, 246, 139, 136, -1, 231, 315, 317, 283, -1, 230, 120, 318, 315, 317, 283, -1, 242, -1, 246, -1, 248, -1, 289, -1, 243, -1, 247, -1, 249, -1, 290, -1, -1, 234, -1, 235, -1, 234, 235, -1, 236, -1, 320, -1, 10, -1, 12, -1, 11, -1, 14, -1, 69, -1, -1, 13, 113, 237, 292, 114, -1, 239, -1, 234, 239, -1, 238, 234, 239, -1, 240, -1, 239, 240, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 71, -1, 73, -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, 243, -1, 238, 243, -1, 242, 240, -1, 242, 240, 234, -1, 242, 240, 243, -1, 244, -1, 233, 245, 233, -1, 241, -1, 234, 241, -1, 244, 235, -1, 244, 241, -1, 30, 113, 282, 114, -1, 30, 113, 176, 114, -1, 80, 113, 282, 114, -1, 80, 113, 176, 114, -1, 247, -1, 238, 247, -1, 246, 240, -1, 246, 240, 234, -1, 250, -1, 234, 250, -1, 247, 235, -1, 249, -1, 238, 249, -1, 248, 240, -1, 248, 240, 234, -1, 76, -1, 234, 76, -1, 249, 235, -1, 251, -1, 262, -1, 253, 118, 254, 119, -1, 253, 280, -1, -1, 253, 280, 252, 118, 254, 119, -1, 253, 113, 298, 114, 118, 254, 119, -1, 253, 291, -1, 33, 318, -1, 34, 318, -1, -1, 254, 255, -1, 256, 136, -1, 42, 256, 136, -1, 257, 136, -1, 42, 257, 136, -1, 372, -1, 372, 280, -1, 256, 120, 280, -1, 256, 120, -1, 232, 258, -1, 257, 120, 318, 258, -1, -1, 260, -1, 324, 259, -1, 337, 259, -1, 363, -1, -1, 260, -1, 134, 170, -1, 32, 318, -1, 261, 118, 264, 378, 119, -1, 261, 280, -1, -1, 261, 280, 263, 118, 264, 378, 119, -1, 280, 265, -1, 264, 120, 280, 265, -1, -1, 135, 170, -1, -1, 267, -1, 269, -1, 268, -1, 268, 139, 120, 138, 269, -1, 269, 139, 120, 138, 100, -1, 268, 139, 120, 138, 100, -1, 273, -1, 269, 139, 120, 138, 273, -1, 268, 139, 120, 138, 273, -1, 268, 139, 120, 138, 269, 139, 120, 138, 273, -1, 274, -1, 269, 139, 120, 138, 274, -1, -1, 271, -1, 272, -1, 272, 139, 120, 138, 100, -1, 276, -1, 275, -1, 272, 139, 120, 138, 276, -1, 272, 139, 120, 138, 275, -1, 275, -1, 368, 278, 379, -1, 376, 278, 379, -1, 234, 376, 278, 379, -1, 224, -1, 276, -1, 368, -1, 376, -1, 234, 376, -1, 377, -1, 231, 342, 379, -1, 231, 346, 379, -1, 231, -1, 231, 357, -1, 143, -1, 277, 120, 143, -1, 141, -1, 76, -1, 77, -1, 142, -1, 76, -1, 77, -1, 143, -1, 76, -1, 77, -1, 372, -1, 232, -1, 232, 363, -1, 372, -1, 377, -1, 232, -1, 232, 351, -1, -1, 135, 284, -1, 111, 284, -1, 171, -1, 118, 285, 378, 119, -1, -1, 284, -1, 286, 284, -1, 285, 120, 284, -1, 285, 120, 286, 284, -1, 287, 134, -1, 280, 134, -1, 288, -1, 287, 288, -1, 117, 280, -1, 115, 138, 171, 139, 116, -1, 115, 138, 316, 139, 116, -1, 115, 138, 170, 100, 170, 139, 116, -1, 117, 115, 138, 151, 139, 116, -1, 290, -1, 238, 290, -1, 289, 240, -1, 289, 240, 234, -1, 291, -1, 234, 291, -1, 290, 235, -1, 77, 113, 298, 114, -1, 293, 379, -1, 292, 120, 293, 379, -1, -1, 295, 280, 294, 296, -1, 232, 342, -1, 35, -1, 37, -1, 36, -1, -1, 296, 297, -1, 132, 280, 113, 298, 114, -1, 132, 118, 138, 304, 119, -1, 132, 113, 138, 292, 139, 114, 118, 138, 304, 119, 113, 298, 114, -1, 282, -1, 171, -1, 298, 120, 282, -1, 298, 120, 171, -1, 35, 300, -1, 239, 35, 300, -1, 299, 120, 300, -1, 301, 296, -1, 301, 296, 135, 282, -1, 280, -1, 279, 113, 138, 292, 139, 114, -1, 38, 280, 113, 138, 292, 139, 114, 118, 119, -1, -1, 38, 280, 113, 138, 292, 139, 114, 118, 303, 304, 119, -1, 305, -1, 304, 138, 305, -1, 306, 139, 136, -1, 307, 139, 136, -1, 222, -1, 224, -1, 306, 139, 120, 138, 278, -1, 232, 315, -1, 307, 139, 120, 138, 315, -1, -1, 309, -1, 311, -1, 309, 138, 311, -1, -1, 309, -1, 219, -1, 313, -1, 205, -1, -1, 5, 83, 312, 118, 310, 119, -1, 42, 311, -1, 314, -1, 329, 180, -1, 333, 138, 214, 180, -1, 223, 180, -1, 231, 329, 180, -1, 234, 329, 180, -1, 238, 329, 180, -1, 238, 234, 329, 180, -1, 231, 333, 138, 214, 180, -1, 234, 333, 138, 214, 180, -1, 238, 333, 138, 214, 180, -1, 238, 234, 333, 138, 214, 180, -1, 324, -1, 337, -1, 329, -1, 170, 126, 170, -1, -1, 66, 113, 145, 114, 318, -1, -1, 319, -1, 320, -1, 319, 320, -1, 41, 113, 113, 321, 114, 114, -1, 322, -1, 321, 120, 322, -1, -1, 323, -1, 323, 113, 177, 114, -1, 278, -1, 240, -1, 241, -1, 235, -1, 325, 318, -1, 326, -1, 327, 318, -1, 328, 318, -1, 141, -1, 113, 325, 114, -1, 156, 324, -1, 156, 234, 324, -1, 113, 326, 114, -1, 325, 355, -1, 113, 326, 114, 355, -1, 113, 327, 114, 356, -1, 113, 327, 114, -1, 113, 326, 114, 113, 138, 270, 139, 114, -1, 113, 328, 114, -1, 330, 318, -1, 331, -1, 332, 318, -1, 325, 113, 138, 270, 139, 114, -1, 113, 331, 114, 113, 138, 270, 139, 114, -1, 113, 330, 114, -1, 156, 329, -1, 156, 234, 329, -1, 113, 331, 114, -1, 113, 331, 114, 355, -1, 113, 332, 114, 356, -1, 113, 332, 114, -1, 334, -1, 335, -1, 336, -1, 325, 113, 277, 114, -1, 113, 335, 114, 113, 277, 114, -1, 113, 334, 114, -1, 156, 333, -1, 156, 234, 333, -1, 113, 335, 114, -1, 113, 335, 114, 355, -1, 113, 336, 114, 356, -1, 113, 336, 114, -1, 338, 318, -1, 339, -1, 340, 318, -1, 341, 318, -1, 347, -1, 113, 338, 114, -1, 156, 337, -1, 156, 234, 337, -1, 113, 339, 114, -1, 338, 355, -1, 113, 339, 114, 355, -1, 113, 340, 114, 356, -1, 113, 340, 114, -1, 338, 113, 138, 270, 139, 114, -1, 113, 339, 114, 113, 138, 270, 139, 114, -1, 113, 341, 114, -1, 325, 318, -1, 343, -1, 344, 318, -1, 345, 318, -1, 156, 342, -1, 156, 234, 342, -1, 113, 343, 114, -1, 325, 361, -1, 113, 343, 114, 355, -1, 113, 344, 114, 356, -1, 113, 344, 114, -1, 325, 113, 138, 270, 139, 114, -1, 113, 343, 114, 113, 138, 270, 139, 114, -1, 113, 345, 114, -1, 347, 318, -1, 348, -1, 349, 318, -1, 350, 318, -1, 76, -1, 77, -1, 156, 346, -1, 156, 234, 346, -1, 113, 348, 114, -1, 347, 361, -1, 113, 348, 114, 361, -1, 347, 113, 138, 270, 139, 114, -1, 113, 348, 114, 113, 138, 270, 139, 114, -1, 352, -1, 353, 318, -1, 354, 318, -1, 156, -1, 156, 234, -1, 156, 351, -1, 156, 234, 351, -1, 113, 352, 114, -1, 355, -1, 113, 352, 114, 355, -1, 113, 353, 114, 356, -1, 113, 353, 114, -1, 113, 138, 270, 139, 114, -1, 113, 352, 114, 113, 138, 270, 139, 114, -1, 113, 354, 114, -1, 115, 116, -1, 115, 116, 356, -1, 356, -1, 115, 138, 171, 139, 116, -1, 115, 138, 121, 139, 116, -1, 356, 115, 138, 171, 139, 116, -1, 356, 115, 138, 121, 139, 116, -1, 358, -1, 359, 318, -1, 360, 318, -1, 156, -1, 156, 234, -1, 156, 357, -1, 156, 234, 357, -1, 113, 358, 114, -1, 361, -1, 113, 358, 114, 361, -1, 113, 359, 114, 356, -1, 113, 359, 114, -1, 113, 138, 270, 139, 114, -1, 113, 358, 114, 113, 138, 270, 139, 114, -1, 113, 360, 114, -1, 362, -1, 362, 356, -1, 356, -1, 115, 116, -1, 115, 138, 234, 121, 139, 116, -1, 115, 138, 234, 139, 116, -1, 115, 138, 234, 171, 139, 116, -1, 115, 138, 7, 233, 171, 139, 116, -1, 115, 138, 234, 7, 171, 139, 116, -1, 364, -1, 365, 318, -1, 366, 318, -1, 156, -1, 156, 234, -1, 156, 363, -1, 156, 234, 363, -1, 113, 364, 114, -1, 355, -1, 113, 364, 114, 355, -1, 113, 365, 114, 356, -1, 113, 365, 114, -1, 113, 364, 114, 113, 138, 270, 139, 114, -1, 113, 366, 114, -1, 368, -1, 376, -1, 234, 376, -1, 369, -1, 370, -1, 156, 232, -1, 234, 156, 232, -1, 156, 377, -1, 234, 156, 377, -1, 156, 367, -1, 234, 156, 367, -1, 115, 116, 232, -1, 371, 232, -1, 115, 116, 356, 232, -1, 371, 356, 232, -1, 356, 232, -1, 115, 116, 369, -1, 371, 369, -1, 115, 116, 356, 369, -1, 371, 356, 369, -1, 356, 369, -1, 115, 138, 234, 121, 139, 116, -1, 115, 138, 234, 171, 139, 116, -1, 115, 138, 238, 171, 139, 116, -1, 115, 138, 238, 234, 171, 139, 116, -1, 376, -1, 234, 376, -1, 373, -1, 374, -1, 375, -1, 156, 232, -1, 234, 156, 232, -1, 156, 377, -1, 234, 156, 377, -1, 156, 372, -1, 234, 156, 372, -1, 115, 116, 232, -1, 115, 116, 356, 232, -1, 356, 232, -1, 115, 116, 374, -1, 115, 116, 356, 374, -1, 356, 374, -1, 115, 138, 269, 139, 116, -1, 376, 113, 138, 266, 139, 114, -1, 225, 113, 138, 266, 139, 114, -1, -1, 120, -1, -1, 135, 171, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 306, 306, 310, 317, 318, 319, 320, 321, 325, 326, 327, 331, 332, 336, 337, 341, 342, 346, 350, 351, 362, 364, 366, 367, 369, 374, 375, 381, 383, 385, 387, 389, 391, 393, 395, 397, 399, 408, 409, 415, 416, 420, 421, 425, 426, 428, 430, 432, 434, 436, 441, 443, 445, 457, 458, 466, 469, 471, 473, 478, 491, 493, 495, 497, 499, 501, 503, 505, 507, 509, 511, 518, 519, 525, 526, 527, 528, 532, 533, 540, 541, 543, 545, 550, 551, 553, 558, 559, 561, 566, 567, 569, 571, 573, 578, 579, 581, 586, 587, 592, 593, 598, 599, 604, 605, 610, 611, 616, 617, 620, 627, 632, 633, 641, 642, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 667, 669, 674, 675, 680, 681, 687, 688, 694, 695, 696, 697, 698, 699, 700, 701, 702, 712, 719, 721, 731, 732, 737, 739, 745, 747, 751, 752, 757, 762, 765, 767, 769, 779, 781, 792, 793, 795, 799, 801, 805, 806, 811, 812, 816, 821, 822, 826, 828, 834, 835, 839, 841, 843, 845, 851, 852, 856, 858, 863, 865, 867, 872, 874, 879, 881, 885, 888, 892, 895, 899, 901, 903, 905, 910, 912, 914, 919, 921, 923, 925, 927, 932, 934, 936, 938, 943, 955, 956, 961, 963, 968, 972, 974, 976, 978, 980, 986, 987, 993, 994, 998, 999, 1004, 1006, 1012, 1013, 1015, 1021, 1026, 1036, 1038, 1042, 1043, 1048, 1050, 1054, 1055, 1059, 1061, 1065, 1066, 1070, 1071, 1075, 1076, 1091, 1092, 1093, 1094, 1095, 1099, 1104, 1111, 1121, 1126, 1131, 1139, 1144, 1149, 1154, 1159, 1189, 1194, 1201, 1203, 1210, 1215, 1220, 1231, 1236, 1241, 1246, 1251, 1260, 1265, 1273, 1274, 1275, 1276, 1282, 1287, 1295, 1296, 1297, 1298, 1302, 1303, 1304, 1305, 1310, 1311, 1320, 1321, 1326, 1327, 1332, 1334, 1336, 1338, 1340, 1343, 1342, 1354, 1355, 1357, 1367, 1368, 1373, 1375, 1377, 1379, 1381, 1384, 1386, 1389, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1428, 1429, 1431, 1433, 1435, 1440, 1441, 1447, 1448, 1450, 1452, 1457, 1459, 1461, 1463, 1468, 1469, 1471, 1473, 1478, 1479, 1481, 1486, 1487, 1489, 1491, 1496, 1498, 1500, 1505, 1506, 1510, 1512, 1518, 1517, 1521, 1523, 1528, 1530, 1536, 1537, 1542, 1543, 1545, 1546, 1555, 1556, 1558, 1560, 1565, 1567, 1573, 1574, 1576, 1579, 1582, 1587, 1588, 1593, 1598, 1602, 1604, 1610, 1609, 1616, 1618, 1624, 1625, 1633, 1634, 1638, 1639, 1640, 1642, 1644, 1651, 1652, 1654, 1656, 1661, 1662, 1668, 1669, 1673, 1674, 1679, 1680, 1681, 1683, 1691, 1692, 1694, 1697, 1699, 1703, 1704, 1705, 1707, 1709, 1713, 1718, 1726, 1727, 1736, 1738, 1743, 1744, 1745, 1749, 1750, 1751, 1755, 1756, 1757, 1761, 1762, 1763, 1768, 1769, 1770, 1771, 1777, 1778, 1780, 1785, 1786, 1791, 1792, 1793, 1794, 1795, 1810, 1811, 1816, 1817, 1823, 1825, 1828, 1830, 1832, 1855, 1856, 1858, 1860, 1865, 1866, 1868, 1873, 1878, 1879, 1885, 1884, 1888, 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, 2183, 2184, 2187, 2189, 2190, 2194, 2195, 2196, 2197, 2231, 2233, 2234, 2236, 2241, 2246, 2251, 2253, 2255, 2260, 2262, 2264, 2266, 2271, 2273, 2282, 2284, 2285, 2290, 2292, 2294, 2299, 2301, 2303, 2308, 2310, 2312, 2321, 2322, 2323, 2327, 2329, 2331, 2336, 2338, 2340, 2345, 2347, 2349, 2364, 2366, 2367, 2369, 2374, 2375, 2380, 2382, 2384, 2389, 2391, 2393, 2395, 2400, 2402, 2404, 2414, 2416, 2417, 2419, 2424, 2426, 2428, 2433, 2435, 2437, 2439, 2444, 2446, 2448, 2479, 2481, 2482, 2484, 2489, 2494, 2502, 2504, 2506, 2511, 2513, 2518, 2520, 2534, 2535, 2537, 2542, 2544, 2546, 2548, 2550, 2555, 2556, 2558, 2560, 2565, 2567, 2569, 2575, 2577, 2579, 2583, 2585, 2587, 2589, 2603, 2604, 2606, 2611, 2613, 2615, 2617, 2619, 2624, 2625, 2627, 2629, 2634, 2636, 2638, 2644, 2645, 2647, 2656, 2659, 2661, 2664, 2666, 2668, 2681, 2682, 2684, 2689, 2691, 2693, 2695, 2697, 2702, 2703, 2705, 2707, 2712, 2714, 2722, 2723, 2724, 2729, 2730, 2734, 2736, 2738, 2740, 2742, 2744, 2751, 2753, 2755, 2757, 2759, 2762, 2764, 2766, 2768, 2770, 2775, 2777, 2779, 2784, 2810, 2811, 2813, 2817, 2818, 2822, 2824, 2826, 2828, 2830, 2832, 2839, 2841, 2843, 2845, 2847, 2849, 2854, 2861, 2863, 2881, 2883, 2888, 2889 }; #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", "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_parameter_list", "attrib", "any_word", "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, 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, 137, 138, 139, 140, 140, 140, 140, 140, 141, 141, 141, 142, 142, 143, 143, 144, 144, 145, 146, 146, 147, 147, 147, 147, 147, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 149, 149, 150, 150, 151, 151, 152, 152, 152, 152, 152, 152, 152, 153, 153, 153, 154, 154, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 156, 156, 157, 157, 157, 157, 158, 158, 159, 159, 159, 159, 160, 160, 160, 161, 161, 161, 162, 162, 162, 162, 162, 163, 163, 163, 164, 164, 165, 165, 166, 166, 167, 167, 168, 168, 169, 169, 169, 170, 171, 171, 172, 172, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 174, 174, 175, 175, 176, 176, 177, 177, 178, 178, 178, 178, 178, 178, 178, 178, 178, 179, 180, 180, 181, 181, 182, 182, 182, 182, 183, 183, 184, 185, 185, 185, 185, 185, 185, 186, 186, 186, 187, 187, 188, 188, 189, 189, 190, 191, 191, 192, 192, 193, 193, 194, 194, 194, 194, 195, 195, 196, 196, 197, 197, 197, 198, 198, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 200, 200, 200, 201, 201, 201, 201, 201, 202, 202, 202, 202, 203, 204, 204, 204, 204, 204, 205, 205, 205, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 210, 211, 211, 212, 212, 213, 213, 214, 214, 215, 215, 216, 216, 217, 217, 218, 218, 219, 219, 220, 220, 220, 220, 220, 221, 221, 221, 222, 222, 222, 223, 223, 223, 223, 223, 224, 224, 225, 225, 226, 226, 226, 227, 227, 227, 227, 227, 228, 228, 229, 229, 229, 229, 230, 230, 231, 231, 231, 231, 232, 232, 232, 232, 233, 233, 234, 234, 235, 235, 236, 236, 236, 236, 236, 237, 236, 238, 238, 238, 239, 239, 240, 240, 240, 240, 240, 240, 240, 240, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 241, 242, 242, 242, 242, 242, 243, 243, 244, 244, 244, 244, 245, 245, 245, 245, 246, 246, 246, 246, 247, 247, 247, 248, 248, 248, 248, 249, 249, 249, 250, 250, 251, 251, 252, 251, 251, 251, 253, 253, 254, 254, 255, 255, 255, 255, 256, 256, 256, 256, 257, 257, 258, 258, 258, 258, 258, 259, 259, 260, 261, 262, 262, 263, 262, 264, 264, 265, 265, 266, 266, 267, 267, 267, 267, 267, 268, 268, 268, 268, 269, 269, 270, 270, 271, 271, 272, 272, 272, 272, 273, 273, 273, 273, 273, 274, 274, 274, 274, 274, 275, 275, 276, 276, 277, 277, 278, 278, 278, 279, 279, 279, 280, 280, 280, 281, 281, 281, 282, 282, 282, 282, 283, 283, 283, 284, 284, 285, 285, 285, 285, 285, 286, 286, 287, 287, 288, 288, 288, 288, 288, 289, 289, 289, 289, 290, 290, 290, 291, 292, 292, 294, 293, 293, 295, 295, 295, 296, 296, 297, 297, 297, 298, 298, 298, 298, 299, 299, 299, 300, 300, 301, 301, 302, 303, 302, 304, 304, 305, 305, 306, 306, 306, 307, 307, 308, 308, 309, 309, 310, 310, 311, 311, 311, 312, 311, 311, 313, 313, 313, 314, 314, 314, 314, 314, 314, 314, 314, 314, 315, 315, 315, 316, 317, 317, 318, 318, 319, 319, 320, 321, 321, 322, 322, 322, 323, 323, 323, 323, 324, 324, 324, 324, 325, 325, 326, 326, 326, 327, 327, 327, 327, 328, 328, 329, 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, 337, 338, 338, 339, 339, 339, 340, 340, 340, 340, 341, 341, 341, 342, 342, 342, 342, 343, 343, 343, 344, 344, 344, 344, 345, 345, 345, 346, 346, 346, 346, 347, 347, 348, 348, 348, 349, 349, 350, 350, 351, 351, 351, 352, 352, 352, 352, 352, 353, 353, 353, 353, 354, 354, 354, 355, 355, 355, 356, 356, 356, 356, 357, 357, 357, 358, 358, 358, 358, 358, 359, 359, 359, 359, 360, 360, 360, 361, 361, 361, 362, 362, 362, 362, 362, 362, 363, 363, 363, 364, 364, 364, 364, 364, 365, 365, 365, 365, 366, 366, 367, 367, 367, 368, 368, 369, 369, 369, 369, 369, 369, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 371, 371, 371, 371, 372, 372, 372, 373, 373, 374, 374, 374, 374, 374, 374, 375, 375, 375, 375, 375, 375, 376, 377, 377, 378, 378, 379, 379 }; /* 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, 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, 553, 553, 553, 0, 0, 0, 298, 225, 308, 322, 323, 9, 365, 0, 10, 16, 17, 0, 2, 72, 73, 571, 11, 298, 531, 529, 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, 525, 530, 535, 303, 0, 0, 553, 583, 553, 2, 594, 595, 596, 298, 0, 737, 738, 0, 14, 0, 15, 298, 274, 275, 0, 299, 294, 295, 296, 297, 532, 309, 398, 554, 555, 376, 377, 14, 451, 452, 13, 447, 450, 0, 509, 504, 495, 451, 452, 0, 0, 534, 226, 0, 298, 0, 0, 0, 0, 0, 0, 0, 0, 298, 298, 0, 739, 299, 588, 600, 743, 736, 734, 741, 0, 0, 0, 259, 2, 0, 538, 445, 446, 444, 0, 0, 0, 0, 553, 0, 640, 641, 0, 0, 551, 547, 553, 568, 553, 553, 549, 2, 548, 553, 607, 553, 553, 610, 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, 536, 582, 584, 298, 2, 747, 299, 750, 551, 551, 0, 299, 0, 0, 277, 553, 549, 2, 298, 0, 0, 298, 556, 2, 507, 2, 560, 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, 501, 23, 458, 500, 0, 456, 457, 0, 572, 587, 590, 593, 599, 602, 605, 2, 745, 298, 748, 2, 72, 298, 3, 432, 0, 440, 299, 298, 311, 339, 291, 354, 361, 3, 3, 414, 418, 428, 433, 479, 298, 434, 712, 713, 298, 435, 437, 2, 589, 601, 735, 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, 573, 612, 0, 460, 2, 567, 576, 666, 569, 570, 539, 298, 2, 606, 615, 608, 609, 0, 280, 298, 298, 345, 299, 0, 299, 298, 740, 744, 742, 540, 298, 551, 260, 268, 313, 0, 2, 541, 298, 505, 342, 343, 287, 357, 364, 0, 298, 0, 754, 405, 0, 482, 506, 257, 258, 526, 298, 442, 0, 298, 242, 0, 2, 244, 0, 299, 0, 262, 2, 263, 282, 0, 0, 2, 298, 551, 298, 492, 494, 493, 0, 0, 756, 0, 298, 0, 298, 496, 298, 566, 564, 565, 563, 0, 558, 561, 0, 0, 298, 64, 298, 78, 59, 298, 66, 298, 298, 62, 63, 2, 132, 0, 0, 454, 0, 453, 734, 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, 652, 459, 649, 553, 553, 657, 486, 298, 2, 591, 592, 0, 603, 604, 0, 746, 749, 298, 298, 0, 714, 299, 718, 709, 710, 716, 0, 2, 2, 674, 553, 756, 623, 553, 553, 756, 553, 637, 553, 553, 688, 441, 671, 553, 553, 679, 686, 298, 436, 299, 0, 0, 298, 724, 299, 729, 756, 721, 298, 726, 756, 298, 298, 0, 0, 21, 2, 0, 22, 0, 466, 754, 0, 0, 472, 246, 0, 298, 0, 0, 0, 551, 575, 579, 581, 611, 614, 618, 621, 574, 613, 0, 288, 664, 0, 298, 281, 0, 0, 0, 0, 279, 2, 0, 264, 542, 298, 0, 0, 298, 2, 370, 390, 379, 0, 0, 384, 378, 755, 0, 0, 403, 0, 299, 3, 421, 3, 425, 424, 597, 0, 537, 298, 72, 3, 298, 440, 299, 3, 434, 435, 2, 0, 0, 0, 491, 310, 298, 0, 487, 489, 3, 2, 2, 0, 508, 3, 0, 560, 134, 0, 0, 227, 0, 0, 0, 0, 41, 0, 0, 298, 24, 0, 25, 0, 698, 703, 455, 695, 553, 553, 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, 653, 654, 650, 651, 503, 502, 298, 0, 720, 298, 725, 299, 298, 668, 711, 667, 2, 298, 0, 0, 0, 0, 0, 0, 0, 0, 689, 0, 675, 626, 642, 676, 2, 622, 629, 438, 624, 625, 439, 2, 636, 645, 638, 639, 672, 673, 687, 715, 719, 717, 756, 272, 2, 751, 2, 429, 723, 728, 430, 3, 408, 3, 3, 3, 460, 0, 0, 2, 474, 471, 755, 0, 467, 2, 470, 473, 0, 298, 247, 269, 3, 276, 278, 0, 460, 2, 577, 578, 2, 616, 617, 0, 665, 543, 3, 351, 350, 353, 352, 298, 544, 0, 545, 378, 0, 0, 298, 0, 0, 698, 388, 391, 395, 553, 395, 394, 387, 380, 553, 382, 385, 298, 405, 399, 111, 406, 754, 0, 0, 443, 245, 0, 0, 3, 2, 674, 436, 0, 533, 0, 756, 757, 495, 0, 298, 298, 298, 0, 557, 559, 135, 0, 0, 220, 0, 0, 0, 228, 229, 65, 0, 67, 70, 71, 0, 133, 0, 0, 0, 699, 700, 696, 697, 465, 79, 115, 130, 3, 114, 0, 28, 40, 3, 0, 37, 110, 0, 3, 656, 660, 663, 655, 3, 598, 722, 727, 2, 72, 298, 3, 3, 299, 0, 3, 628, 632, 635, 644, 678, 682, 685, 298, 3, 627, 643, 677, 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, 0, 0, 3, 136, 137, 2, 148, 138, 139, 140, 141, 142, 143, 150, 152, 0, 0, 0, 289, 298, 298, 553, 0, 546, 298, 381, 383, 0, 397, 699, 392, 396, 393, 386, 390, 373, 404, 0, 585, 2, 670, 669, 0, 675, 2, 488, 490, 510, 3, 518, 519, 0, 2, 514, 3, 3, 0, 0, 562, 227, 0, 0, 0, 227, 0, 0, 702, 706, 708, 701, 754, 114, 0, 3, 54, 0, 54, 54, 3, 42, 44, 39, 0, 3, 109, 0, 2, 658, 659, 0, 298, 0, 0, 0, 3, 644, 0, 2, 630, 631, 2, 646, 2, 680, 681, 0, 0, 72, 0, 3, 3, 3, 3, 416, 415, 419, 753, 2, 2, 752, 0, 0, 0, 0, 3, 469, 3, 0, 248, 151, 3, 299, 298, 0, 0, 0, 0, 2, 0, 196, 0, 194, 0, 0, 0, 0, 0, 0, 0, 553, 0, 156, 153, 298, 0, 0, 271, 283, 3, 3, 552, 619, 374, 389, 402, 298, 270, 298, 0, 521, 498, 298, 0, 0, 497, 512, 0, 0, 0, 221, 0, 230, 68, 2, 704, 705, 0, 131, 128, 0, 51, 2, 45, 52, 53, 0, 0, 0, 0, 27, 0, 661, 298, 586, 730, 731, 732, 0, 683, 298, 298, 298, 3, 3, 0, 691, 0, 0, 0, 0, 298, 298, 3, 550, 475, 476, 0, 251, 299, 0, 0, 0, 0, 298, 197, 195, 192, 0, 198, 0, 0, 0, 0, 202, 205, 203, 199, 0, 200, 134, 40, 149, 147, 249, 0, 0, 423, 427, 426, 0, 515, 2, 516, 2, 517, 511, 298, 233, 0, 231, 0, 233, 298, 36, 129, 55, 0, 43, 33, 2, 49, 2, 47, 30, 3, 733, 3, 3, 3, 0, 0, 690, 692, 633, 647, 273, 2, 413, 3, 412, 0, 478, 134, 0, 0, 134, 3, 0, 134, 193, 0, 2, 2, 214, 204, 0, 0, 0, 145, 0, 580, 620, 2, 0, 0, 2, 234, 0, 0, 222, 0, 3, 3, 0, 0, 0, 0, 0, 0, 693, 694, 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, 520, 522, 513, 0, 0, 0, 0, 0, 0, 3, 3, 662, 634, 648, 684, 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, 707, 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, 698, 216, 217, 218, 0, 207, 3, 209, 3, 298, 224, 237, 154, 175, 160, 134, 241, 190, 185, 183, 179, 162, 134, 0, 699, 0, 0, 0, 0, 155, 176, 186, 180, 184, 183, 181, 3, 3, 0, 0, 499, 182, 210, 212, 3, 3, 211, 213 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 802, 466, 303, 49, 135, 136, 304, 305, 306, 307, 308, 754, 755, 1115, 1116, 1117, 1227, 309, 380, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 1012, 516, 961, 545, 325, 962, 935, 1038, 1504, 1040, 1041, 1042, 1043, 1505, 1044, 1045, 1422, 1423, 1385, 1386, 1387, 1483, 1484, 1488, 1489, 1524, 1525, 1046, 1344, 1047, 1048, 1280, 1281, 1282, 1466, 1049, 147, 941, 942, 943, 1364, 1446, 1458, 1459, 467, 468, 862, 863, 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, 681, 682, 683, 895, 1067, 896, 85, 86, 456, 454, 689, 844, 845, 357, 358, 692, 693, 694, 359, 360, 361, 362, 464, 178, 137, 138, 520, 327, 171, 638, 639, 640, 641, 642, 87, 123, 89, 487, 488, 927, 489, 278, 493, 328, 90, 139, 140, 91, 1303, 1089, 1090, 1091, 1092, 92, 93, 710, 94, 274, 95, 96, 188, 1014, 672, 411, 127, 97, 499, 500, 501, 189, 269, 191, 192, 193, 270, 100, 101, 102, 103, 104, 105, 106, 196, 197, 198, 199, 200, 814, 600, 601, 602, 603, 201, 605, 606, 607, 569, 570, 571, 572, 744, 107, 609, 610, 611, 612, 613, 614, 955, 746, 747, 748, 590, 365, 366, 367, 368, 329, 165, 109, 110, 111, 370, 687, 717 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1267 static const yytype_int16 yypact[] = { 5235, 8510, -1267, -14, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -27, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 84, 84, 84, 1541, 905, 123, 6677, 163, -1267, -1267, -1267, -1267, -1267, 157, -1267, -1267, -1267, 1043, 81, -1267, -1267, -1267, -1267, 4048, -1267, -1267, -1267, -1267, 225, 198, -1267, 1956, -1267, -1267, -1267, -1267, 217, 1716, 371, 37, 6797, -1267, -1267, 4048, 829, -1267, -1267, 1101, 380, 3172, 661, 839, 1101, 977, -1267, -1267, 1289, 340, -1267, 1101, 1140, -1267, 273, -1267, 439, 447, -1267, -1267, -1267, -1267, 337, 198, 84, -1267, 84, -1267, -1267, -1267, -1267, 7269, 1956, -1267, -1267, 1956, -1267, 325, -1267, 7582, -1267, -1267, 2178, 8744, -1267, 675, 675, 675, -1267, -1267, -1267, 84, -1267, -1267, -1267, 360, 395, 436, -1267, -1267, -1267, 466, -1267, -1267, -1267, -1267, -1267, 503, 515, -1267, -1267, 272, 8119, 1675, 307, 370, 377, 524, 565, 568, 580, 8828, 6307, 594, -1267, 4677, -1267, -1267, -1267, -1267, 613, -1267, 271, 9583, 9583, -1267, 610, 339, -1267, -1267, -1267, -1267, 618, 379, 421, 468, 84, 603, -1267, -1267, 1716, 2591, 687, -1267, 90, -1267, 84, 84, 198, -1267, -1267, 91, -1267, 84, 84, -1267, 2973, 652, 657, 675, 6831, -1267, -1267, -1267, 4048, -1267, -1267, 1101, -1267, -1267, -1267, 198, -1267, 1956, 225, -1267, 7235, -1267, 675, 675, 675, 198, -1267, 1541, -1267, 3826, -1267, -1267, 642, 675, -1267, 675, -1267, 157, 8119, -1267, 665, -1267, 905, 685, 675, -1267, 1541, 689, 710, -1267, 6677, 291, -1267, -1267, -1267, 8477, -1267, -1267, 4354, -1267, 687, 8, 9760, 8744, 2178, 2973, -1267, 101, -1267, -1267, 7582, 1956, 740, 10515, -1267, -1267, 378, -1267, 10178, 730, 705, 9819, 773, 9760, 9878, -1267, 794, -1267, -1267, -1267, -1267, -1267, -1267, 9937, 9937, 7885, 81, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 834, -1267, 1184, 2546, 8119, 9760, -1267, 525, 415, 844, 338, 853, 823, 831, 841, 886, 56, -1267, -1267, -1267, 518, -1267, 528, -1267, -1267, 1675, -1267, -1267, 456, 900, -1267, 490, 900, -1267, -1267, 7269, -1267, 940, 946, 8236, -1267, -1267, 536, 1525, 7667, 6831, 1101, -1267, 1101, 675, 675, -1267, -1267, -1267, -1267, -1267, -1267, 675, 7269, 1956, -1267, -1267, 8828, 1786, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 9524, 9760, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 2178, -1267, 446, 945, 961, 968, 800, 973, 976, 981, 2591, -1267, -1267, 939, 225, 982, -1267, -1267, 987, -1267, -1267, -1267, 8477, -1267, -1267, -1267, -1267, -1267, 2973, -1267, 8119, 8119, -1267, 675, 2178, 10547, 7742, -1267, -1267, -1267, -1267, 8477, 8, -1267, -1267, 1101, 198, -1267, -1267, 8477, -1267, 5404, -1267, -1267, 675, 675, 579, 8594, 994, 993, 983, 998, 675, -1267, -1267, -1267, -1267, 9019, -1267, 616, 10212, -1267, 198, 1004, -1267, 2178, 10298, 9996, -1267, -1267, -1267, -1267, 843, 2973, -1267, 7742, 687, 5806, -1267, -1267, -1267, 1900, 626, 990, 905, 10515, 1647, 7582, -1267, 10515, -1267, -1267, -1267, -1267, 627, -1267, 1013, 705, 154, 7885, -1267, 8860, -1267, -1267, 7885, -1267, 8002, 7885, -1267, -1267, 81, -1267, 640, 1015, 658, 1021, -1267, -1267, 6061, -1267, -1267, 315, -1267, -1267, 9760, -1267, 368, 9760, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 9760, -1267, -1267, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 9760, 3432, 518, 1212, -1267, -1267, 84, 84, -1267, -1267, 8119, -1267, -1267, 987, 291, -1267, 987, 10055, -1267, -1267, 8828, 6061, 1020, -1267, 8744, -1267, -1267, 613, -1267, 1023, 1793, 1025, 1950, 136, 990, -1267, 84, 84, 990, 407, -1267, 84, 84, 987, -1267, -1267, 84, 84, -1267, 900, 8944, 1956, 10447, 356, 541, 8944, -1267, 4354, -1267, 990, -1267, 7269, -1267, 126, 7354, 7354, 1956, 9642, 1003, -1267, 789, 1008, 1010, -1267, 1026, 9583, 449, -1267, 1114, 1956, 7354, 291, 2178, 291, 687, 707, 900, -1267, -1267, 766, 900, -1267, -1267, -1267, 705, -1267, 900, 198, 9019, -1267, 643, 1041, 647, 1045, -1267, 940, 198, -1267, -1267, 8477, 198, 1042, 8860, 81, -1267, 1307, -1267, 471, 481, 905, -1267, 905, 1047, 9760, -1267, 905, 10447, -1267, -1267, 1056, -1267, -1267, -1267, 291, -1267, 10373, 946, -1267, 7354, 694, 7667, -1267, -1267, 613, 1052, 1057, 1900, 2267, -1267, -1267, 10515, 9760, -1267, -1267, 1055, -1267, -1267, 1048, -1267, 1055, 1063, 10178, 9760, 1046, 1051, 117, 1065, 1062, 1070, 1074, -1267, 1081, 1082, 6061, -1267, 9760, -1267, 658, 1520, -1267, -1267, -1267, 84, 84, 9701, 9760, 1077, -1267, -1267, 679, -1267, 9760, -1267, -1267, 821, -1267, -1267, -1267, -1267, 525, 525, 415, 415, 844, 844, 844, 844, 338, 338, 853, 823, 831, 841, 886, 9760, 397, 9019, 1085, 1086, 1087, 1212, -1267, -1267, -1267, -1267, -1267, 9019, 691, -1267, 7269, -1267, 6430, 8353, -1267, -1267, -1267, 1793, 9019, 856, 1089, 1091, 1092, 1093, 1096, 1098, 1104, -1267, 3291, 1950, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 987, -1267, -1267, -1267, 990, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 1105, 1106, -1267, 225, 1077, 9642, -1267, -1267, -1267, 9524, 1108, -1267, -1267, -1267, -1267, 905, 5524, 1197, -1267, -1267, -1267, -1267, 1095, 225, -1267, -1267, 987, -1267, -1267, 987, 1117, 987, -1267, -1267, -1267, -1267, -1267, -1267, 6307, -1267, 198, -1267, -1267, 505, 507, 6307, 1549, 9760, 2098, -1267, -1267, 1099, 38, 1099, -1267, 905, -1267, 84, -1267, -1267, 8627, 983, -1267, -1267, -1267, 993, 1120, 1115, -1267, -1267, 1122, 1123, -1267, 694, 1698, -1267, 576, -1267, 2267, 990, -1267, -1267, 1126, 10515, 7582, 8119, 1129, -1267, -1267, 1125, 1135, 1118, -1267, 9760, 1141, 190, 1136, -1267, 1142, 291, 1142, -1267, -1267, 1142, -1267, 1147, 1152, 1154, 1520, -1267, -1267, -1267, 9524, -1267, -1267, -1267, 1163, 9760, 986, -1267, 9760, -1267, 986, -1267, -1267, 9760, -1267, 894, 900, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 946, 8236, -1267, -1267, 6553, 1171, -1267, 898, 900, -1267, 920, 936, 900, -1267, 675, 7112, -1267, -1267, -1267, 9019, 9019, -1267, 7742, 7742, 1172, 1167, 1168, 1175, -1267, 670, 111, 1077, -1267, 986, -1267, 9583, -1267, 9760, 540, -1267, 5932, 1180, 1181, 9465, 1182, 1185, -8, 40, 86, 9760, 1191, 198, 9760, 9760, 1177, 585, 1169, -1267, -1267, -1267, 1187, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 905, 1195, 9760, -1267, 9019, 9019, 84, 1201, -1267, 8711, -1267, -1267, 862, -1267, 2098, -1267, -1267, -1267, -1267, 1307, -1267, -1267, 1198, -1267, -1267, -1267, -1267, 1202, 1698, -1267, -1267, 1196, -1267, 1055, -1267, -1267, 2178, 1210, -1267, -1267, -1267, 704, 1217, -1267, 117, 1214, 9760, 1200, 117, 117, 1224, 950, 900, -1267, -1267, 1026, 9760, 1230, 1163, -1267, 943, -1267, -1267, 1220, -1267, 78, -1267, 1231, 1220, -1267, 1234, -1267, -1267, 987, 1236, 6184, 1235, 1239, 1241, -1267, -1267, 1238, -1267, -1267, 987, -1267, -1267, -1267, -1267, 987, 9760, 9760, 946, 1243, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 9760, 9760, 1244, 1248, 1220, -1267, -1267, 905, -1267, -1267, -1267, 7070, 7582, 9760, 9760, 1318, 9760, -1267, 1233, -1267, 1246, -1267, 1250, 9760, 1254, 9760, 938, 1255, 47, 84, 1805, -1267, -1267, 5524, 1256, 554, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 9281, -1267, 7742, 1260, -1267, -1267, 7582, 555, 561, -1267, 1273, 1262, 705, 1283, -1267, 256, -1267, -1267, -1267, -1267, 987, 1282, -1267, -1267, 1288, 1321, -1267, -1267, 1321, 1321, 986, 1292, 1699, 1866, -1267, 1295, -1267, 9019, -1267, -1267, -1267, -1267, 1298, -1267, 9019, 9019, 9019, -1267, -1267, 1300, -1267, 1301, 1310, 1311, 725, 7429, 7548, -1267, -1267, -1267, -1267, 1305, -1267, 7817, 709, 755, 1317, 758, 5667, -1267, -1267, -1267, 582, -1267, 768, 1319, 1323, 198, 1369, 935, -1267, -1267, 9760, -1267, 9465, 9760, -1267, -1267, -1267, 1320, 1326, -1267, -1267, -1267, 1324, -1267, -1267, -1267, -1267, -1267, -1267, 7582, 705, 1330, -1267, 1313, 705, 9019, -1267, -1267, -1267, 986, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 1337, 1340, -1267, -1267, -1267, -1267, -1267, -1267, -1267, 1343, -1267, 1342, -1267, 9465, 276, 9760, 9465, -1267, 1346, 9760, -1267, 281, 1361, 1363, -1267, -1267, 1355, 1356, 1339, -1267, 901, -1267, -1267, -1267, 1956, 2178, 1347, -1267, 401, 9760, -1267, 783, -1267, 1220, 986, 986, 1362, 1364, 1365, 1367, -1267, -1267, 7742, 1357, -1267, 1438, 9760, 1352, -1267, -1267, 9375, -1267, 791, -1267, 1360, 9465, 1368, -1267, -1267, 1386, -1267, 1389, -1267, 1407, 1409, -1267, 1376, 7582, -1267, -1267, -1267, 705, 291, 1403, 1382, 1405, 1404, 1220, 1220, -1267, -1267, -1267, -1267, -1267, 9465, 240, -1267, 474, -1267, -1267, 6917, -1267, -1267, 1385, 9760, -1267, 9760, 6917, 198, 8860, 198, 8860, 1410, -1267, 1411, -1267, -1267, 1408, -1267, -1267, 802, -1267, -1267, -1267, -1267, 1422, 1423, -1267, 9760, 9760, -1267, -1267, 979, 59, -1267, -1267, 1390, -1267, 979, -1267, -1267, 2042, 291, -1267, -1267, 198, 8860, 198, 8860, 1427, 1412, 291, -1267, -1267, -1267, -1267, 9375, 1425, 979, 6995, 9760, 9285, 1426, 979, 1435, 2042, 2360, -1267, -1267, -1267, 1436, -1267, -1267, -1267, -1267, 8119, -1267, -1267, -1267, 9148, -1267, 9375, -1267, -1267, 1416, 9058, -1267, -1267, 9285, 198, 2360, 198, 1441, 1445, 814, -1267, 9148, -1267, -1267, -1267, 9058, -1267, -1267, -1267, 198, 198, -1267, -1267, -1267, -1267, -1267, -1267, -1267, -1267 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1267, 4051, 2784, -1267, 133, -1267, 1353, 867, -240, -1267, -1267, 504, -528, -489, -834, -1001, -1267, -77, 4776, 0, -1267, 793, 489, 531, 722, 534, 999, 1001, 1005, 1007, 1002, -1267, 711, -584, 4023, -739, -1267, -1267, 606, -227, -674, -263, -1267, 335, -1267, 382, -963, -1267, -1267, 119, -1267, -732, -1049, 228, -1267, -1267, -1267, -1267, 54, -1266, -1267, -1267, -1267, -1267, -1267, -1267, 302, -1050, 23, -1267, -171, -1267, 482, 277, -1267, 153, -1267, -355, -1267, -1267, -1267, 538, -612, -1267, -1267, 9, -990, 219, 2319, -1267, -1267, -1267, -124, -1267, 110, 36, -188, 1213, 3869, -1267, -1267, 12, 61, 970, 1623, -1267, 1495, -1267, -1267, 21, 1827, -1267, 2153, 1937, -1267, -1267, -1267, -641, -1267, 911, 914, 521, 695, -93, -1267, -1267, -1267, 906, 690, -521, -1267, -507, -417, -420, -1267, -1267, -914, -941, -147, -54, 1019, 19, -1267, 2311, 381, -366, -185, -122, 649, 745, -1267, 964, -1267, 2435, 1823, -463, 895, -1267, -1267, 693, -1267, -225, -1267, 103, -1267, -1267, -1267, -1263, 408, -1267, -1267, -1267, 1139, -1267, 42, -1267, -1267, -832, -94, -1230, -162, 2364, -1267, 3117, -1267, 908, -1267, -103, 120, -184, -183, -178, 7, -40, -39, -36, 1505, 4, 32, 71, 92, -173, -172, -170, -168, -306, -510, -503, -496, -559, -313, -498, -1267, -1267, -514, 1064, 1072, 1076, 1925, 4399, -524, -566, -556, -543, -548, -1267, -508, -723, -722, -717, -582, -166, -229, -1267, -1267, 283, 102, 6, -1267, 3380, 108, -611, -462 }; /* 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 -529 static const yytype_int16 yytable[] = { 51, 115, 398, 399, 759, 151, 152, 99, 400, 153, 116, 745, 71, 401, 402, 451, 403, 427, 404, 951, 952, 78, 734, 52, 268, 953, 409, 719, 856, 808, 1051, 724, 1167, 833, 51, 438, 604, 118, 815, 809, 1362, 99, 503, 599, 906, 149, 71, 382, 383, 154, 819, 51, 810, 936, 786, 78, 826, 52, 162, 666, 668, 72, 662, 706, 1152, 187, 1175, 203, 210, 124, 517, 51, 194, 816, 408, 217, 145, 155, 227, 33, 220, 671, 398, 399, 406, 804, 125, 160, 400, 675, 1150, 1151, 805, 401, 402, 72, 403, 807, 404, 806, 473, 475, 108, 108, 910, -239, -239, 115, 424, 848, 65, 1229, 1284, 261, 1177, 115, 156, 204, 267, 272, 98, 474, 846, 846, 865, 33, 723, 262, 1176, 213, 263, 33, 33, 469, 1120, 623, 108, 820, 846, 627, 1443, 823, 33, 259, 65, 736, 151, 152, 310, 149, 153, 160, 1424, 410, 98, 565, 162, 115, 345, 167, 1179, 210, 840, 342, 406, 150, 843, 1234, 372, 951, 952, 98, 900, 108, 146, 953, 1178, 33, -239, 591, 713, 1161, 918, 1285, 326, 190, 187, 187, 98, 566, 154, 98, 177, 340, 162, 1235, 846, 157, 665, 667, 291, 804, 267, 253, 418, 410, 410, 1180, 805, 790, 51, 1157, 847, 847, 479, 806, 410, 162, 155, 58, 117, 1512, 210, 167, 660, 1424, 151, 152, 847, 441, 153, 1314, 939, 1317, 1319, 808, 144, 1158, 437, 474, 310, 177, 429, 879, 177, 809, 432, 1061, 1527, 817, 1050, 596, 51, 58, 999, 819, 330, 156, 810, 99, 272, 716, 728, 1152, 71, 272, 267, 267, 729, 98, 148, 976, 115, 78, 162, 52, 326, 517, 78, 407, 1167, 98, 517, 440, 604, 517, 847, 211, 730, 1000, 221, 804, 481, 469, 461, 1184, 1185, 310, 805, 498, 1074, 649, 657, 987, 1099, 806, 397, 190, 432, 1065, 310, 486, 469, 72, 707, 695, 172, 1152, 434, 886, 469, 706, 1382, 1383, 1100, 281, 568, 1382, 1383, 664, 98, 149, 445, 519, 164, 669, 169, 182, 372, 780, 1454, 115, 98, 1150, 1151, 345, 160, 584, 330, 597, 615, 458, 177, 808, 108, 1097, 795, 1181, 1051, 407, 170, 972, 65, 809, 620, 112, 1158, 470, 620, 1224, 1307, 977, 98, 1003, 202, 657, 810, 583, 43, 44, 434, 588, 988, -294, 624, 282, 477, 1470, 628, 112, 1308, 376, 174, 248, 1384, 267, 816, 842, 164, 1393, 621, 833, 43, 44, 625, 187, 177, 377, 696, 1482, 1166, 213, 372, 177, 112, 1487, 141, 142, 167, 876, 253, 332, 1498, 267, 1500, 310, 310, 43, 44, 267, 752, 620, 555, 556, 254, 1507, 1167, 1152, 78, 251, 1514, 439, 112, 1167, 1138, 1140, 1106, -524, 33, 591, 253, 98, 115, 593, 591, 43, 44, 78, 244, 386, 264, 326, 326, 1082, 1419, 78, 1085, 557, 558, 598, 267, 58, 836, -12, 706, 387, 837, 1118, 267, 1369, 620, 177, 51, 757, 333, 372, 712, 869, 680, 99, 940, 334, 115, 433, 71, 1167, 1223, 658, 177, 389, 604, 118, 177, 78, 310, 52, 115, 998, -448, 310, 491, 310, 310, 492, 1215, 390, 695, 740, 857, 743, 824, 1407, 596, 345, 1511, 190, 486, 470, 326, 416, 486, 971, 213, 330, 330, 1408, 1413, 1414, 551, 552, 519, 391, 519, 72, 1522, 519, 470, 326, 519, -449, 469, 1526, 435, 867, 470, 433, 1000, 392, 1106, 253, 332, 410, 443, 900, 858, 980, 635, 568, 568, 576, 658, 410, 707, 1259, 1260, 310, 915, 897, 1050, 277, 521, 1147, 1148, 859, 108, 620, 345, 1149, 393, 615, 704, 901, 65, 164, 1455, 597, 1343, 597, 797, 1039, 330, 903, 98, 579, 394, 410, 598, 902, 1456, 696, 39, 326, 175, 176, 42, 620, 279, 904, 998, 330, 620, 793, 615, 43, 44, 901, 620, 903, 280, 620, 620, 567, 518, 410, 695, 835, 1195, 1196, 335, 47, 48, 1062, 574, 1063, 695, 620, 548, 267, 575, 371, 849, 832, 549, 550, 1428, 695, 588, 838, 1345, 287, 1164, 839, 841, 864, 1010, 2, 207, 4, 5, 6, 7, 1392, 43, 44, 1164, 1298, 1165, 115, 440, 336, 894, 1300, 337, 330, 1055, 8, 9, 10, 11, 12, 1290, 1299, 838, 676, 338, 78, 1081, 1301, 512, 575, 378, 58, 740, 620, 920, 615, 1093, 371, 398, 399, 706, 712, 712, 680, 400, 803, 33, 598, 1346, 401, 402, 78, 403, 834, 404, 707, 375, 696, 593, 384, 697, 388, 37, 1016, 38, 684, 698, 696, 345, 396, 714, 725, 743, 743, 36, 498, 715, 726, 696, 177, 1428, 486, 213, 408, 739, 1428, 1462, 880, 1463, 1356, 740, 882, 1172, 740, 177, 425, 213, 740, 951, 952, 426, 742, 899, 410, 953, 1428, 673, 177, 448, 47, 48, 1409, 1428, -372, 470, 568, -112, 521, 291, 521, -112, 406, 521, 965, 620, 521, 983, -3, 1421, 966, 898, 597, 699, -401, 1068, 978, 1068, 919, 1142, 596, 470, 698, 1509, 597, 1460, 47, 48, 591, 1211, 1321, 870, 1460, 410, 1339, 575, 459, 1323, 1324, 1325, 740, 979, 803, 598, 2, 207, 4, 5, 6, 7, 518, 1335, 1332, -295, 502, 518, 1333, 460, 518, 704, 8, 9, 10, 11, 12, 695, 695, 940, 213, 482, 177, 940, 940, 310, 112, 229, 141, 142, 50, 114, 1340, 1480, 1421, 1342, 1508, 71, 740, 43, 44, 740, 873, 33, 410, 1347, 78, 345, 731, 506, 732, 740, 1368, 733, 345, 894, 737, 894, 1162, 797, 1410, 114, 114, 37, 50, 38, 1407, 852, 1429, 115, 511, 36, 695, 695, 740, 50, 418, 653, 410, 1476, 524, 50, 920, 920, 803, 1477, 72, 712, 1213, 50, 1039, 1532, 1217, 115, 310, 50, 598, 575, 50, 553, 554, 50, 1086, 969, 966, 680, 1266, 1267, 561, 1269, 696, 696, 559, 560, 114, 114, 1274, 743, 1276, 479, 332, 410, 1494, 684, 707, 562, 657, 108, 486, 1088, 326, 897, 817, 332, 596, 65, 563, 1305, 50, 332, 410, 50, 112, -296, 141, 142, 345, 564, 50, 407, 8, 9, 10, 11, 12, 43, 44, 1206, 1352, 1353, 878, 1277, 1278, 1279, 704, 696, 696, 620, 620, 885, 1123, 1106, 410, 887, 1134, 1064, 410, 898, 339, 50, 112, 33, 832, 1402, 966, 310, 1355, 1111, 1382, 1383, 1112, 50, 1113, 43, 44, 108, 1137, 1169, 596, 1230, 1231, 707, 330, 764, 765, 230, 78, 598, 231, 36, 440, 235, 1139, 237, 596, 659, 50, 50, 1294, 585, 246, 1228, 650, 112, 115, -3, 1220, 1363, 410, 894, 1111, 1363, 50, 1112, 894, 1113, 43, 44, 651, 1381, 50, 508, 1389, 920, 58, 652, 72, 766, 767, 50, 654, 267, 50, 655, 834, 695, 772, 773, 656, 114, 680, 661, 695, 695, 695, 258, 546, 547, 2, 207, 4, 5, 6, 7, 114, 685, 686, 1388, 114, 690, 39, 688, 50, 114, 42, -243, 1427, 108, 716, 727, 345, 1431, 741, 43, 44, 470, 50, 50, 749, 798, -14, 546, 800, 50, 811, -15, -297, 854, 861, 855, 50, 1295, 1087, 8, 9, 10, 11, 12, 881, 45, 1453, 658, 883, 888, 931, 695, 899, 47, 48, 908, 1444, 272, 115, -422, -528, 37, 546, 38, 715, 923, 933, 220, 944, 937, 33, 945, 230, 946, 696, 898, 938, 947, 684, 310, 898, 696, 696, 696, 948, 949, 963, 50, 973, 974, 975, 71, 989, 620, 990, 991, 992, 115, 36, 993, 78, 994, 68, 119, 50, 50, 1086, 995, -410, -409, 1060, 8, 9, 10, 11, 12, 1018, 1052, 213, 1054, 1058, 50, 893, 1075, 1076, 50, 704, 1077, 1078, 1084, 58, 1521, 1094, 1088, 740, 636, 68, 1521, 1095, 496, 72, 1096, 33, 1098, 696, 1101, 620, 620, 1521, 958, 1103, 50, 1521, 161, 272, 1104, 1405, 1105, 525, 310, 108, 50, 526, 527, 528, 1520, 768, 769, 770, 771, 36, 1169, 1108, 222, 1132, 1153, 1154, 1155, 1156, 50, 78, 108, 1170, 1171, 1173, 50, 529, 1174, 530, 65, 531, 532, 115, 1182, 1188, -3, 398, 399, 1193, 108, 1186, 1086, 400, 704, 1198, 1203, 1201, 401, 402, 260, 403, 230, 404, 235, 567, 440, 410, 491, 1207, 1214, 72, 114, 47, 48, 1212, 1216, 50, 1219, 1088, 1232, 761, 762, 763, 684, 50, 1225, 1236, 1238, 50, 1240, 1241, 1245, 50, 113, 1242, 114, 1243, 114, 1252, 1261, 267, 331, 112, 1262, 141, 239, 1268, 1183, 1271, 260, 350, 108, 1493, 1296, 1289, 43, 44, 620, 1404, 470, 39, 1272, 184, 185, 42, 1273, 211, 221, 406, 1275, 1283, 1302, 114, 43, 44, 1304, 1306, 114, 909, 405, 1310, 240, 115, 1311, 108, 1312, 241, 1315, 58, 230, 1320, 1086, 657, 1322, 423, 1328, 1329, 428, 430, 892, 1338, 410, 161, 1330, 1331, 115, 1087, 47, 48, 1341, 1279, 1348, 115, 1357, 115, 1349, 115, 1169, 1088, 1358, 893, 1359, 1365, 446, 1169, 114, 78, 449, 1366, 450, 151, 152, 1376, 78, 153, 1377, -411, 1380, 457, 1391, 1395, 50, 1397, 50, 68, 1406, 1492, 1399, 1400, 471, 1467, 115, 1467, 115, 1401, 1415, 1333, 1416, 1417, 478, 1418, 1420, 50, 439, 115, 1425, 72, 430, 58, 970, 1492, 1492, 177, 72, 76, 1430, 1169, 50, 162, 1434, 310, 114, 1436, 1432, 108, 78, 1438, 1467, 1440, 1467, 50, 1442, 114, 50, 114, 1492, 1447, 1448, 1449, 1450, 1461, 1087, 372, 1471, 1473, 1486, 1475, 108, 76, 8, 9, 10, 11, 12, 108, 470, 326, 1478, 1479, 1501, 1187, 959, 470, 1506, 1513, 72, 50, 1502, 1515, 1517, 114, 1523, 114, 260, 1530, 163, 114, 589, 1531, 774, 33, 1011, 775, 617, 114, 223, 778, 776, 1110, 195, 777, 1288, 218, 1481, 1394, 228, 622, 50, 50, 1533, 622, 1351, 1218, 407, 1367, 1464, 108, 889, 36, 1192, 890, 1200, 50, 1069, 470, 911, 1073, 792, 39, 1017, 184, 185, 42, 909, 860, 463, 1107, 658, 330, 925, 477, 43, 44, 1350, 131, 1297, 132, 133, 134, 1083, 709, 1087, 39, 0, 184, 185, 42, 43, 44, 471, 782, 0, 742, 934, 410, 43, 44, 595, 783, 596, 47, 48, 784, 350, 58, 47, 48, 0, 471, 909, 0, 58, 353, 163, 0, 0, 471, 0, 0, 0, 0, 892, 0, 410, 0, 373, 0, 50, 0, 47, 48, 0, 0, 0, 691, 0, 0, 430, 0, 50, 0, 1121, 0, 0, 8, 9, 10, 11, 12, 0, 214, 163, 705, 0, 68, 496, 0, 0, 0, 233, 0, 0, 430, 58, 0, 0, 430, 8, 9, 10, 11, 12, 0, 0, 163, 33, 0, 1468, 0, 1468, 112, 636, 141, 142, 0, 447, 442, 114, 0, 1011, 0, 0, 0, 43, 44, 350, 0, 0, 33, 0, 0, 214, 0, 36, 0, 0, 76, 0, 39, 0, 0, 76, 42, 0, 1468, 0, 1468, 0, 50, 720, 50, 43, 44, 0, 721, 0, 36, 114, 1465, 0, 1469, 0, 112, 0, 0, 546, 0, 0, 0, 1111, 785, 0, 1112, 214, 1113, 43, 44, 45, 0, 39, 50, 184, 185, 42, 0, 47, 48, 622, 796, 0, 0, 0, 43, 44, 0, 1497, 0, 1499, 909, 813, 919, 114, 596, 1316, 508, 0, 0, 113, 47, 48, 0, 0, 0, 0, 636, 0, 79, 589, 186, 0, 114, 0, 589, 0, 114, 373, 47, 48, 622, 0, 0, 350, 350, 0, 214, 223, 0, 0, 0, 1528, 0, 1529, 0, 0, 0, 0, 0, 350, 0, 39, 79, 175, 176, 42, 1536, 1537, 39, 909, 909, 0, 42, 0, 43, 44, 0, 691, 0, 0, 753, 43, 44, 114, 214, 758, 0, 0, 471, 214, 0, 525, 216, 0, 0, 526, 527, 528, 0, 224, 375, 0, 0, 0, 497, 0, 0, 801, 243, 596, 0, 373, 0, 76, 471, 47, 48, 350, 0, 529, 114, 530, 0, 531, 1287, 0, 924, 353, 0, 430, 0, 0, 76, 463, 50, 0, 0, 0, 0, 50, 76, 112, 0, 216, 0, 0, 0, 0, 1111, 0, 0, 1112, 705, 1113, 43, 44, 50, 954, 353, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 214, 39, 353, 0, 76, 42, 114, 0, 1318, 0, 0, 216, 355, 0, 43, 44, 0, 0, 33, 0, 0, 691, 0, 0, 0, 0, 866, 0, 868, 0, 0, 691, 215, 0, 622, 0, 0, 986, 0, 0, 711, 0, 691, 0, 0, 353, 36, 0, 47, 48, 0, 39, 997, 184, 185, 42, 0, 39, 114, 175, 176, 42, 0, 0, 43, 44, 0, 0, 0, 0, 43, 44, 216, 0, 0, 0, 0, 0, 914, 0, 214, 0, 0, 215, 0, 0, 0, 0, 0, 0, 595, 0, 596, 0, 0, 0, 214, 0, 47, 48, 0, 0, 68, 909, 0, 0, 79, 0, 353, 0, 216, 79, 0, 0, 0, 216, 0, 0, 0, 0, 909, 214, 0, 0, 796, 215, 114, 0, 114, 114, 0, 705, 0, 0, 1066, 8, 9, 10, 11, 12, 0, 0, 412, 39, 0, 184, 185, 42, 0, 420, 0, 353, 353, 0, 0, 0, 43, 44, 0, 0, 1080, 0, 0, 0, 0, 0, 33, 353, 0, 430, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, 1491, 0, 410, 353, 215, 0, 0, 0, 47, 48, 909, 909, 36, 0, 76, 0, 0, 39, 216, 184, 185, 42, 0, 224, 0, 114, 0, 0, 0, 0, 43, 44, 81, 0, 0, 0, 0, 0, 0, 412, 76, 589, 215, 353, 0, 0, 0, 215, 0, 0, 0, 0, 0, 0, 428, 0, 892, 214, 410, 691, 691, 0, 350, 350, 47, 48, 0, 0, 0, 225, 0, 0, 50, 50, 0, 0, 0, 0, 353, 0, 1168, 0, 114, 114, 0, 214, 0, 0, 0, 79, 214, 0, 0, 0, 0, 0, 573, 39, 216, 184, 185, 42, 0, 355, 577, 0, 0, 580, 79, 0, 43, 44, 0, 0, 691, 691, 79, 0, 0, 0, 114, 353, 8, 9, 10, 11, 12, 0, 0, 0, 0, 353, 215, 0, 355, 0, 266, 223, 0, 216, 0, 0, 353, 1102, 47, 48, 0, 0, 0, 0, 0, 0, 355, 33, 79, 0, 356, 0, 0, 214, 0, 0, 1114, 0, 59, 59, 1114, 412, 0, 0, 0, 420, 0, 214, 0, 0, 0, 0, 0, 50, 114, 36, 0, 0, 0, 705, 39, 0, 143, 114, 42, 0, 0, 0, 497, 355, 0, 0, 59, 43, 44, 0, 76, 50, 50, 0, 0, 0, 0, 0, 0, 0, 215, 1114, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 353, 711, 0, 1265, 50, 0, 0, 353, 59, 47, 48, 59, 0, 126, 129, 130, 242, 245, 0, 0, 0, 0, 33, 412, 68, 0, 81, 0, 0, 215, 0, 81, 0, 216, 355, 0, 691, 0, 705, 0, 214, 0, 119, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 39, 88, 184, 185, 42, 0, 216, 0, 0, 0, 0, 216, 0, 43, 44, 0, 0, 0, 691, 0, 0, 0, 355, 355, 0, 691, 691, 691, 0, 0, 255, 1114, 256, 0, 0, 88, 350, 350, 355, 1491, 0, 410, 0, 348, 0, 0, 0, 47, 48, 1168, 0, 0, 0, 0, 0, 0, 355, 0, 573, 573, 0, 0, 353, 353, 0, 353, 353, 79, 0, 0, 225, 0, 226, 0, 0, 0, 0, 0, 0, 0, 216, 0, 119, 76, 0, 0, 0, 0, 691, 0, 0, 0, 215, 79, 216, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 0, 0, 0, 0, 395, 0, 0, 0, 0, 353, 353, 0, 215, 455, 414, 415, 0, 215, 0, 419, 0, 421, 422, 355, 0, 0, 0, 0, 81, 59, 0, 0, 0, 871, 0, 0, 0, 874, 0, 0, 0, 0, 356, 1114, 0, 1114, 1114, 81, 0, 350, 0, 363, 0, 0, 0, 81, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 355, 214, 0, 0, 0, 0, 0, 356, 119, 0, 355, 216, 0, 0, 353, 0, 224, 0, 0, 0, 215, 355, 0, 0, 33, 356, 0, 81, 0, 0, 0, 1168, 0, 0, 215, 0, 0, 0, 1168, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 0, 0, 36, 0, 0, 0, 223, 39, 1114, 184, 185, 42, 0, 0, 0, 0, 0, 0, 356, 0, 43, 44, 0, 544, 0, 0, 0, 76, 0, 88, 0, 79, 637, 0, 88, 0, 0, 0, 0, 353, 1168, 353, 0, 0, 0, 0, 186, 1516, 0, 0, 0, 0, 573, 355, 47, 48, 0, 0, 0, 0, 355, 0, 0, 0, 0, 1114, 1114, 0, 0, 0, 0, 0, 0, 0, 0, 215, 353, 0, 0, 0, 0, 356, 0, 353, 353, 353, 0, 0, 0, 0, 0, 0, 348, 0, 353, 353, 0, 0, 0, 0, 0, 0, 0, 1445, 0, 0, 0, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 356, 0, 0, 226, 0, 0, 0, 0, 214, 0, 0, 0, 0, 0, 0, 356, 0, 718, 59, 722, 0, 353, 0, 0, 0, 0, 216, 0, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 1495, 0, 412, 0, 0, 0, 81, 355, 355, 1503, 355, 355, 0, 0, 0, 0, 0, 0, 168, 0, 173, 348, 0, 179, 180, 181, 0, 183, 79, 0, 0, 88, 81, 0, 0, 356, 0, 0, 0, 0, 0, 234, 0, 0, 0, 363, 0, 0, 0, 0, 88, 0, 353, 249, 250, 0, 0, 0, 88, 0, 0, 0, 355, 355, 0, 0, 0, 214, 0, 0, 356, 0, 0, 0, 0, 0, 363, 1124, 0, 0, 0, 0, 0, 0, 348, 0, 0, 0, 0, 0, 0, 0, 0, 1135, 363, 0, 88, 0, 0, 0, 76, 0, 215, 0, 0, 0, 0, 76, 0, 0, 0, 0, 0, 356, 787, 788, 0, 0, 0, 0, 0, 0, 0, 356, 0, 853, 0, 348, 348, 225, 0, 0, 0, 355, 356, 0, 0, 363, 0, 0, 0, 818, 0, 348, 821, 822, 0, 825, 0, 827, 828, 0, 0, 0, 829, 830, 0, 0, 0, 76, 0, 0, 8, 9, 10, 11, 12, 0, 412, 0, 216, 0, 0, 0, 905, 224, 907, 0, 0, 0, 455, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 81, 0, 79, 0, 0, 0, 363, 348, 0, 0, 0, 0, 0, 1221, 355, 0, 355, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 36, 0, 356, 0, 0, 39, 0, 184, 185, 42, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 0, 0, 363, 363, 355, 0, 0, 0, 0, 0, 0, 355, 355, 355, 0, 0, 0, 0, 363, 0, 0, 0, 355, 355, 266, 0, 216, 0, 0, 0, 0, 0, 47, 48, 0, 79, 363, 0, 0, 0, 0, 0, 0, 215, 0, 0, 0, 88, 0, 956, 957, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 587, 0, 594, 0, 0, 0, 0, 88, 355, 0, 363, 0, 0, 618, 619, 0, 0, 128, 128, 128, 0, 0, 0, 0, 0, 0, 356, 356, 0, 356, 356, 0, 0, 0, 0, 0, 0, 0, 637, 0, 0, 0, 0, 0, 1021, 363, 0, 81, 0, 0, 0, 0, 0, 59, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 215, 348, 0, 355, 0, 0, 0, 356, 356, 0, 1070, 33, 0, 0, 363, 128, 0, 128, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 226, 0, 0, 0, 0, 363, 0, 0, 0, 36, 0, 0, 276, 0, 0, 0, 0, 59, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 1071, 0, 637, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 996, 128, 0, 8, 9, 10, 11, 12, 0, 128, 0, 128, 128, 0, 79, 0, 128, 0, 128, 128, 0, 363, 0, 0, 225, 348, 348, 0, 363, 0, 0, 0, 283, 284, 33, 285, 0, 0, 0, 0, 0, 0, 0, 59, 0, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 356, 0, 286, 36, 0, 0, 1021, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 128, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 356, 356, 356, 0, 0, 297, 0, 378, 0, 0, 0, 356, 356, 344, 48, 299, 300, 301, 302, 0, 0, 0, 0, 1197, 81, 0, 0, 0, 0, 0, 0, 0, 166, 0, 0, 0, 0, 363, 363, 0, 363, 363, 0, 0, 0, 0, 0, 0, 0, 219, 0, 0, 0, 0, 0, 0, 0, 0, 88, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 1264, 912, 0, 913, 0, 0, 0, 0, 0, 0, 916, 917, 59, 59, 0, 922, 363, 363, 0, 0, 166, 0, 0, 0, 273, 286, 0, 0, 928, 0, 0, 287, 0, 932, 59, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 59, 166, 0, 0, 356, 0, 0, 0, 594, 0, 0, 369, 0, 0, 374, 0, 0, 0, 297, 0, 378, 0, 0, 1286, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 0, 363, 0, 0, 0, 779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348, 348, 0, 81, 0, 0, 0, 0, 59, 0, 81, 0, 0, 59, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 0, 226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 0, 59, 0, 0, 88, 0, 0, 1006, 0, 1007, 1008, 1009, 0, 0, 0, 0, 363, 81, 363, 0, 0, 0, 0, 0, 374, 0, 0, 0, 1053, 0, 0, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 522, 0, 0, 0, 363, 363, 363, 0, 0, 0, 0, 128, 128, 166, 0, 363, 363, 0, 0, 0, 348, 0, 0, 0, 0, 1079, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 128, 128, 0, 128, 59, 128, 128, 592, 0, 0, 128, 128, 616, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 59, 1109, 0, 0, 0, 0, 1119, 59, 0, 0, 0, 1122, 0, 0, 0, 0, 1126, 0, 0, 0, 0, 1128, 0, 1129, 1130, 0, 0, 1133, 0, 0, 0, 0, 0, 0, 0, 0, 1145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1159, 1160, 0, 0, 0, 0, 0, 59, 166, 166, 0, 0, 0, 0, 369, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1189, 0, 0, 1191, 0, 0, 0, 0, 0, 522, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -298, 0, 0, 0, 708, 88, 0, 0, 128, 128, 0, 33, 88, 1205, 0, 0, 166, 0, 0, 1209, 1210, 0, 0, 0, 0, 0, 0, 0, 522, 0, 522, 0, 0, 522, 0, 166, 522, 0, 1226, 36, 0, 0, 0, 1233, 0, 0, 0, 369, 1237, 0, -298, 0, 0, 0, 0, 0, 0, 0, 0, 1244, 0, 0, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 1251, 0, 1253, 1254, 1255, 1256, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 1263, 232, 1159, 236, 0, 238, 173, 0, 0, 0, 166, 0, 247, 0, 0, 0, 0, 0, 0, 0, 0, 369, 0, 0, 799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1291, 1292, 0, 0, 0, 0, 0, 0, 0, 212, 0, 236, 238, 247, 0, 0, 592, 0, 0, 0, 0, 592, 0, 0, 0, 0, 0, 0, 0, 0, 369, 369, 0, 0, 0, 0, 128, 0, 0, 0, 0, 128, 0, 0, 0, 0, 369, 0, 0, 0, 0, 212, 0, 0, 1326, 1327, 0, 0, 0, 0, 0, 0, 0, 0, 1337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 522, 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, 369, 0, 921, 0, 0, 0, 33, 0, 212, 0, 236, 238, 247, 0, 158, 0, 0, 0, 0, 0, 0, 0, 1372, 0, 1373, 1374, 1375, 0, 0, 0, 0, 0, 0, 0, 36, 708, 1379, 0, 0, 39, 0, 40, 41, 42, 1390, 0, 212, 0, 0, 0, 0, 212, 43, 44, 0, 0, 0, 0, 0, 0, 0, 252, 0, 0, 0, 0, 495, 0, 0, 1411, 1412, 257, 0, 0, 0, 0, 0, 0, 45, 0, 46, 0, 0, 0, 0, 0, 47, 48, 324, 0, 0, 0, 128, 616, 0, 0, 0, 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 381, 381, 0, 0, 0, 1451, 1452, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1457, 0, 0, 0, 0, 0, 0, 1457, 0, 212, 0, 0, 0, 385, 236, 238, 0, 0, 0, 0, 0, 0, 247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417, 0, 0, 0, 1490, 0, 0, 0, 1496, 0, 0, 0, 0, 0, 431, 0, 0, 324, 369, 0, 0, 0, 0, 436, 0, 708, 0, 0, 212, 0, 0, 0, 0, 444, 0, 0, 1518, 0, 1519, 0, 522, 476, 0, 0, 0, 0, 212, 0, 0, 0, 0, 212, 0, 212, 0, 0, 0, 128, 462, 0, 0, 0, 0, 472, 0, 166, 1534, 1535, 0, 212, 0, 0, 212, 212, 1538, 1539, 480, 0, 0, 0, 212, 0, 490, 0, 494, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 212, 0, 523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 592, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 369, 369, 28, 29, 30, 0, 582, 0, 0, 0, 586, 33, 0, 0, 0, 0, 0, 0, 381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 629, 36, 0, 0, 630, 631, 0, 632, 208, 41, 0, 0, 0, 0, 643, 644, 0, 645, 646, 522, 647, 0, 648, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 582, 0, 0, 0, 0, 0, 0, 0, 663, 0, 0, 0, 0, 0, 47, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 212, 0, 674, 0, 702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 700, 0, 0, 0, 0, 0, 703, 0, 0, 0, 0, 462, 0, 0, 0, 735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 751, 0, 219, 0, 0, 0, 735, 0, 0, 735, 341, 364, 0, 0, 212, 0, 0, 0, 0, 0, 738, 0, 760, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 756, 0, 0, 708, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 495, 413, 0, 789, 0, 0, 0, 0, 0, 0, 346, 0, 0, 0, 751, 0, 0, 0, 0, 0, 0, 0, 0, 781, 0, 0, 0, 0, 0, 0, 0, 0, 791, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 369, 0, 0, 0, 0, 0, 0, 219, 0, 812, 0, 0, 0, 0, 0, 0, 212, 850, 0, 0, 0, 0, 0, 0, 0, 381, 0, 212, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 851, 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, 33, 0, 0, 884, 0, 0, 0, 413, 0, 0, 0, 891, 0, 0, 0, 413, 578, 0, 413, 581, 0, 926, 0, 0, 0, 0, 364, 0, 36, 0, 608, 0, 0, 39, 0, 208, 41, 42, 0, 0, 369, 0, 252, 751, 0, 950, 43, 44, 0, 626, 0, 0, 0, 929, 930, 960, 0, 0, 0, 0, 0, 967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 0, 271, 212, 0, 0, 413, 0, 47, 48, 413, 0, 0, 964, 0, 0, 0, 0, 968, 0, 0, 0, 0, 0, 0, 522, 0, 522, 0, 984, 985, 0, 0, 212, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 522, 0, 522, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 1001, 0, 0, 0, 0, 0, 1013, 1002, 413, 0, 381, 364, 0, 166, 0, 0, 0, 0, 0, 0, 1004, 0, 1005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1015, 0, 0, 0, 346, 0, 1019, 0, 0, 0, 0, 346, 0, 0, 0, 413, 0, 0, 1056, 364, 0, 1057, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 324, 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, 381, 0, 0, 794, 364, 960, 0, 0, 735, 0, 0, 0, 0, 608, 0, 608, 608, 0, 0, 0, 0, 0, 608, 0, 0, 0, 0, 0, 1131, 0, 0, 0, 831, 364, 0, 0, 0, 0, 364, 1146, 0, 0, 0, 0, 0, 0, 0, 364, 364, 0, 0, 1127, 0, 0, 0, 0, 212, 0, 0, 381, 0, 1163, 0, 364, 0, 0, 0, 0, 413, 872, 0, 0, 413, 875, 0, 0, 960, 960, 505, 877, 507, 510, 0, 0, 0, 0, 0, 0, 0, 0, 513, 514, 0, 0, 0, 0, 1194, 0, 413, 0, 0, 0, 0, 0, 0, 507, 507, 0, 0, 0, 0, 0, 1190, 0, 0, 0, 0, 0, 0, 0, 0, 364, 608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 507, 0, 0, 0, 0, 0, 1202, 0, 0, 0, 960, 1204, 0, 212, 0, 0, 364, 0, 0, 1208, 413, 413, 0, 0, 0, 0, 0, 0, 0, 850, 0, 0, 0, 0, 0, 507, 0, 0, 0, 0, 0, 0, 0, 0, 1249, 1250, 0, 0, 0, 0, 0, 0, 0, 1239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 1246, 0, 0, 1247, 0, 1248, 0, 0, 0, 0, 0, 0, 0, 0, 0, 608, 0, 608, 0, 0, 1257, 1258, 0, 0, 0, 0, 0, 608, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1270, 0, 0, 0, 0, 0, 0, 0, 0, 0, -523, 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, 1309, 0, 32, 0, 0, 33, 34, 0, 1313, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 364, 413, 0, 413, 0, 0, 0, 413, 0, 0, 0, 35, 0, 0, 36, 0, 37, 1354, 38, 39, 735, 40, 41, 42, 0, 0, 0, 0, 608, 608, 0, 0, 43, 44, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 507, 0, 0, 0, 0, 0, 0, 45, 1360, 46, 1361, 0, 413, 0, 0, 47, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1370, 0, 1371, 0, 0, 413, 1125, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 1378, 212, 0, 0, 413, 1136, 0, 608, 608, 1141, 0, 0, 0, 0, 0, 1396, 1398, 0, 0, 364, 364, 0, 0, 0, 0, 0, 1403, 0, 0, 1208, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -299, 1426, 0, 0, 0, 0, 0, 0, 0, 0, 1433, 33, 0, 1435, 0, 1437, 1439, 1441, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 507, 413, 0, 0, 0, 0, 413, 0, 0, 36, 0, 0, 0, 0, 0, 608, 0, 0, 0, 0, -299, 0, 0, 0, 0, 0, 1472, 0, 1474, 0, 1208, 0, 0, 0, 0, 0, 0, 0, 413, 1222, 0, 0, 0, 0, 0, 0, 1485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324, 507, 364, 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, 507, 28, 29, 30, 31, 0, 0, 32, 283, 284, 33, 1022, 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, 36, 0, 37, 0, 38, 1036, 0, 40, 41, 288, 364, 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, 1037, 364, 364, 0, 0, -134, 0, 0, 0, 0, 0, 0, 0, 0, 507, 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, 32, 283, 284, 33, 285, 0, 0, 0, 0, 0, 507, 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, 40, 41, 288, 0, 507, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 297, 0, 298, 0, 0, 0, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 0, 0, 507, 0, 0, 0, 0, -134, 0, 0, 0, 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, 32, 0, 0, 33, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 35, 0, 507, 36, 0, 37, 0, 38, 39, 0, 40, 41, 42, 0, 0, 0, 0, 0, 413, 413, 0, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 45, 0, 46, 0, 0, 0, -527, 0, 47, 48, 0, 0, 0, 0, 507, 507, 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, 32, 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, 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, 0, 0, 0, 0, 0, 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, 0, 0, 28, 29, 30, 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, 40, 41, 288, 0, 507, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 0, 507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 0, 343, 0, 0, 0, 0, 750, 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, 283, 284, 33, 285, 0, 0, 0, 507, 507, 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, 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, 750, 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, 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, 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, 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, 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, 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, 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, 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, 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, 33, 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, 36, 0, 37, 0, 38, 39, 33, 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, 36, 0, 0, 0, 0, 0, 0, 40, 41, 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, 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, 32, 0, 0, 33, 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, 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, 33, 0, 0, 0, 0, 47, 48, 0, 1143, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 37, 0, 38, 0, 0, 208, 41, 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, 209, 287, 0, 0, 0, 288, 47, 48, 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, 1144, 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, 0, 33, 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, 36, 0, 37, 0, 38, 39, 33, 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, 36, 0, 0, 0, 0, 0, 0, 40, 41, 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, 258, 0, 28, 29, 30, 0, 47, 48, 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, 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, 0, 0, 28, 29, 30, 0, 0, 0, 0, -407, 670, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 670, 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, 33, 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, 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, 1336, 0, 0, 36, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 670, 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, 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, 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, 0, 0, 28, 29, 30, 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, 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, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 670, 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, 283, 284, 33, 285, 0, 0, 0, 0, 209, 0, 0, 0, 0, 0, 47, 48, 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, 515, 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, 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, -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, 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, 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, 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, 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, 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, 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, 33, 0, 40, 41, 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, 112, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, -3, 0, 43, 44, 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, 46, 28, 29, 30, 0, 0, 47, 48, 0, 0, 33, 677, 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, 0, 0, 0, 33, 677, 40, 41, 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, 0, 0, 0, 0, 678, 0, 0, 0, 679, 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, 678, 28, 29, 30, 1072, 0, 47, 48, 0, 0, 33, 677, 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, 0, 0, 0, 33, 0, 40, 41, 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, 208, 41, 0, 0, 0, 0, 678, 0, 0, 0, 1199, 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, 271, 28, 29, 30, 0, 0, 47, 48, 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, 33, 0, 0, 40, 41, 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, 0, 0, 0, 0, 0, 339, 0, 0, 0, 0, 0, 47, 48, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 0, 678, 28, 29, 30, 0, 0, 47, 48, 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, 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, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 670, 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, 283, 284, 0, 285, 1023, 0, 1024, 0, 0, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 0, 0, 1510, 1033, 0, 0, 0, 1034, 1035, 0, 35, 0, 286, 0, 0, 0, 0, 0, 1036, -420, 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, 172, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 283, 284, 1037, 285, 1023, 0, 1024, -134, 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, 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, 172, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 0, 0, 1037, 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, 33, 0, 283, 284, 0, 285, 1023, 0, 1024, 1382, 1383, 1025, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 0, 0, 1510, 1033, 0, 0, 0, 1034, 1035, 36, 35, 37, 286, 38, 0, 0, 40, 41, 1036, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 293, 294, 43, 44, 0, 295, 296, 0, 0, 0, 0, 1293, 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, 1037, 285, 1023, 0, 1024, 1382, 1383, 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, 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, 172, 0, 0, 47, 48, 299, 300, 301, 302, 0, 0, 283, 284, 1037, 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, 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, 172, 0, 0, 47, 48, 299, 300, 301, 302, 286, 0, 0, 0, 1037, 0, 633, 0, 141, 142, 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, 634, 0, 635, 379, 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, 379, 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, 750, 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, 958, 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, 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, 504, 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, 509, 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, 512, 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, 701, 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, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 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, 36, 0, 37, 0, 38, 39, 33, 175, 176, 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, 36, 0, 0, 0, 0, 112, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 44, 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, 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, 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, 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, 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, 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, 33, 0, 0, 40, 41, 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, 208, 41 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1267)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 186, 186, 532, 45, 45, 0, 186, 45, 1, 519, 0, 186, 186, 240, 186, 205, 186, 742, 742, 0, 511, 0, 118, 742, 188, 490, 639, 595, 862, 494, 1022, 615, 34, 220, 349, 1, 597, 595, 1303, 34, 282, 349, 685, 45, 34, 169, 170, 45, 598, 51, 595, 727, 568, 34, 604, 34, 51, 425, 426, 0, 417, 480, 1005, 65, 74, 30, 68, 83, 297, 71, 65, 597, 66, 68, 34, 45, 71, 41, 71, 436, 266, 266, 187, 595, 113, 51, 266, 444, 1004, 1005, 595, 266, 266, 34, 266, 595, 266, 595, 262, 263, 0, 1, 688, 46, 47, 107, 202, 630, 0, 1112, 65, 107, 74, 115, 45, 80, 118, 119, 0, 113, 629, 630, 645, 41, 492, 108, 136, 68, 111, 41, 41, 257, 968, 364, 34, 599, 645, 368, 1403, 603, 41, 107, 34, 511, 186, 186, 148, 149, 186, 115, 1382, 115, 34, 99, 149, 157, 158, 51, 74, 161, 624, 157, 267, 45, 628, 89, 161, 892, 892, 51, 680, 71, 11, 892, 136, 41, 119, 345, 486, 1015, 703, 136, 148, 65, 186, 187, 68, 133, 186, 71, 59, 157, 187, 117, 703, 116, 425, 426, 83, 711, 202, 113, 113, 115, 115, 121, 711, 575, 210, 100, 629, 630, 113, 711, 115, 210, 186, 0, 1, 1487, 222, 115, 409, 1455, 266, 266, 645, 222, 266, 1232, 115, 1234, 1235, 801, 113, 126, 219, 113, 240, 108, 206, 663, 111, 801, 210, 888, 1514, 113, 862, 115, 252, 34, 813, 803, 148, 186, 801, 252, 260, 135, 502, 1204, 252, 265, 266, 267, 114, 149, 113, 785, 272, 252, 267, 252, 240, 504, 257, 187, 1270, 161, 509, 222, 597, 512, 703, 68, 134, 813, 71, 801, 273, 417, 252, 1034, 1035, 297, 801, 280, 911, 395, 405, 801, 114, 801, 186, 187, 272, 893, 310, 275, 436, 252, 480, 462, 118, 1258, 210, 674, 444, 738, 46, 47, 134, 53, 326, 46, 47, 423, 210, 331, 229, 297, 51, 429, 111, 120, 331, 566, 100, 341, 222, 1257, 1258, 345, 310, 341, 240, 349, 350, 248, 219, 919, 252, 939, 585, 1031, 1190, 267, 135, 781, 252, 919, 364, 74, 126, 257, 368, 1108, 114, 791, 252, 835, 3, 478, 919, 341, 87, 88, 272, 345, 802, 3, 365, 113, 266, 1437, 369, 74, 134, 120, 57, 120, 118, 395, 920, 626, 115, 118, 364, 983, 87, 88, 368, 405, 273, 136, 462, 1458, 1022, 350, 405, 280, 74, 1464, 76, 77, 310, 659, 113, 114, 1472, 423, 1474, 425, 426, 87, 88, 429, 115, 431, 94, 95, 99, 1484, 1426, 1378, 417, 0, 1489, 222, 74, 1433, 992, 993, 954, 0, 41, 615, 113, 331, 452, 345, 620, 87, 88, 436, 118, 120, 135, 425, 426, 925, 1378, 444, 929, 129, 130, 349, 470, 252, 116, 113, 891, 136, 120, 966, 478, 1313, 480, 348, 482, 115, 114, 478, 486, 649, 452, 482, 730, 114, 492, 210, 482, 1485, 1107, 405, 365, 120, 813, 465, 369, 482, 504, 482, 506, 813, 113, 509, 132, 511, 512, 135, 1098, 136, 663, 120, 640, 519, 113, 120, 115, 523, 1487, 405, 490, 417, 492, 194, 494, 134, 471, 425, 426, 134, 1370, 1371, 123, 124, 504, 120, 506, 482, 1507, 509, 436, 511, 512, 113, 674, 1514, 217, 647, 444, 272, 1080, 136, 1066, 113, 114, 115, 227, 1071, 115, 794, 117, 567, 568, 113, 478, 115, 738, 1157, 1158, 575, 700, 680, 1190, 113, 297, 1001, 1002, 134, 482, 585, 586, 1004, 120, 589, 480, 120, 482, 310, 120, 595, 1270, 597, 586, 862, 492, 120, 482, 113, 136, 115, 486, 136, 134, 663, 74, 575, 76, 77, 78, 615, 113, 136, 924, 511, 620, 585, 622, 87, 88, 120, 626, 120, 113, 629, 630, 113, 297, 115, 781, 616, 1056, 1057, 114, 121, 122, 136, 114, 136, 791, 645, 121, 647, 120, 113, 631, 615, 127, 128, 1386, 802, 620, 116, 1270, 74, 120, 120, 626, 644, 849, 4, 5, 6, 7, 8, 9, 1345, 87, 88, 120, 120, 136, 677, 617, 114, 680, 120, 114, 575, 869, 10, 11, 12, 13, 14, 136, 136, 116, 114, 114, 674, 120, 136, 113, 120, 115, 482, 120, 703, 704, 705, 931, 113, 892, 892, 1127, 711, 712, 677, 892, 595, 41, 597, 136, 892, 892, 700, 892, 615, 892, 891, 113, 781, 620, 119, 114, 113, 71, 855, 73, 452, 120, 791, 738, 136, 114, 114, 742, 743, 69, 726, 120, 120, 802, 616, 1482, 715, 691, 66, 114, 1487, 1430, 114, 1432, 1287, 120, 114, 1025, 120, 631, 113, 705, 120, 1491, 1491, 113, 113, 680, 115, 1491, 1507, 441, 644, 136, 121, 122, 1365, 1514, 118, 674, 785, 116, 504, 83, 506, 120, 894, 509, 114, 794, 512, 796, 136, 1382, 120, 680, 801, 467, 118, 897, 114, 899, 113, 996, 115, 700, 120, 1486, 813, 1426, 121, 122, 983, 114, 1239, 113, 1433, 115, 114, 120, 136, 1246, 1247, 1248, 120, 794, 711, 712, 4, 5, 6, 7, 8, 9, 504, 1257, 116, 3, 113, 509, 120, 136, 512, 738, 10, 11, 12, 13, 14, 1001, 1002, 1096, 796, 118, 726, 1100, 1101, 862, 74, 35, 76, 77, 0, 1, 114, 1454, 1455, 114, 1485, 862, 120, 87, 88, 120, 113, 41, 115, 114, 862, 884, 504, 113, 506, 120, 1309, 509, 891, 892, 512, 894, 1017, 884, 114, 31, 32, 71, 34, 73, 120, 115, 114, 906, 113, 69, 1056, 1057, 120, 45, 113, 114, 115, 114, 83, 51, 919, 920, 801, 120, 862, 924, 1096, 59, 1190, 114, 1100, 930, 931, 65, 813, 120, 68, 92, 93, 71, 930, 119, 120, 906, 1170, 1171, 122, 1173, 1001, 1002, 96, 97, 84, 85, 1180, 954, 1182, 113, 114, 115, 1467, 677, 1127, 131, 1066, 862, 929, 930, 931, 1071, 113, 114, 115, 862, 132, 1214, 108, 114, 115, 111, 74, 3, 76, 77, 983, 98, 118, 894, 10, 11, 12, 13, 14, 87, 88, 1088, 60, 61, 662, 60, 61, 62, 891, 1056, 1057, 1004, 1005, 671, 113, 1516, 115, 675, 113, 892, 115, 894, 115, 149, 74, 41, 983, 119, 120, 1022, 1286, 81, 46, 47, 84, 161, 86, 87, 88, 930, 113, 1022, 115, 1113, 1114, 1204, 931, 551, 552, 72, 1022, 924, 75, 69, 986, 78, 113, 80, 115, 113, 186, 187, 1202, 116, 87, 115, 114, 74, 1061, 116, 113, 1304, 115, 1066, 81, 1308, 202, 84, 1071, 86, 87, 88, 114, 1339, 210, 285, 1342, 1080, 862, 114, 1022, 553, 554, 219, 114, 1088, 222, 114, 983, 1239, 559, 560, 114, 229, 1061, 116, 1246, 1247, 1248, 115, 310, 311, 4, 5, 6, 7, 8, 9, 244, 118, 120, 1341, 248, 118, 74, 135, 252, 253, 78, 118, 1386, 1022, 135, 113, 1127, 1391, 114, 87, 88, 1022, 266, 267, 114, 116, 134, 345, 116, 273, 116, 134, 3, 134, 31, 120, 280, 1202, 930, 10, 11, 12, 13, 14, 114, 113, 1420, 1066, 114, 118, 113, 1309, 1071, 121, 122, 119, 1407, 1168, 1169, 114, 119, 71, 380, 73, 120, 119, 114, 1169, 114, 134, 41, 120, 213, 114, 1239, 1066, 136, 114, 906, 1190, 1071, 1246, 1247, 1248, 114, 114, 120, 331, 114, 114, 114, 1190, 114, 1204, 114, 114, 114, 1208, 69, 114, 1190, 114, 0, 1, 348, 349, 1208, 114, 114, 114, 886, 10, 11, 12, 13, 14, 119, 31, 1168, 135, 114, 365, 134, 114, 120, 369, 1127, 116, 116, 114, 1022, 1505, 114, 1208, 120, 379, 34, 1511, 114, 280, 1190, 134, 41, 113, 1309, 120, 1257, 1258, 1522, 118, 114, 395, 1526, 51, 1265, 114, 1361, 114, 85, 1270, 1169, 405, 89, 90, 91, 1501, 555, 556, 557, 558, 69, 1270, 120, 71, 114, 114, 120, 120, 114, 423, 1270, 1190, 113, 113, 113, 429, 113, 113, 115, 1190, 117, 118, 1303, 113, 136, 119, 1491, 1491, 114, 1208, 134, 1303, 1491, 1204, 114, 114, 119, 1491, 1491, 107, 1491, 352, 1491, 354, 113, 1265, 115, 132, 119, 116, 1270, 465, 121, 122, 118, 136, 470, 114, 1303, 120, 548, 549, 550, 1061, 478, 116, 116, 114, 482, 114, 116, 114, 486, 1, 116, 489, 116, 491, 116, 116, 1361, 149, 74, 116, 76, 77, 49, 1033, 136, 157, 158, 1270, 1467, 114, 119, 87, 88, 1378, 1360, 1270, 74, 136, 76, 77, 78, 136, 1168, 1169, 1492, 136, 136, 119, 526, 87, 88, 134, 114, 531, 688, 187, 119, 113, 1403, 116, 1303, 85, 118, 116, 1190, 440, 116, 1403, 1516, 116, 202, 116, 116, 205, 206, 113, 116, 115, 210, 114, 114, 1426, 1208, 121, 122, 113, 62, 113, 1433, 114, 1435, 113, 1437, 1426, 1403, 114, 134, 118, 113, 231, 1433, 579, 1426, 235, 136, 237, 1491, 1491, 116, 1433, 1491, 116, 114, 116, 246, 114, 100, 595, 100, 597, 252, 119, 1467, 113, 113, 257, 1435, 1472, 1437, 1474, 136, 114, 120, 114, 114, 267, 114, 44, 616, 1265, 1485, 134, 1426, 275, 1270, 779, 1491, 1492, 1360, 1433, 0, 136, 1485, 631, 1492, 114, 1501, 635, 114, 136, 1403, 1485, 100, 1472, 100, 1474, 644, 136, 646, 647, 648, 1516, 114, 136, 114, 116, 136, 1303, 1516, 114, 114, 136, 119, 1426, 34, 10, 11, 12, 13, 14, 1433, 1426, 1501, 116, 116, 113, 1037, 749, 1433, 119, 119, 1485, 680, 136, 114, 114, 684, 136, 686, 341, 114, 51, 690, 345, 114, 561, 41, 851, 562, 351, 698, 71, 565, 563, 963, 65, 564, 1190, 68, 1455, 1347, 71, 364, 711, 712, 1526, 368, 1280, 1101, 1492, 1308, 1433, 1485, 677, 69, 1052, 677, 1071, 726, 899, 1485, 690, 907, 579, 74, 855, 76, 77, 78, 893, 641, 253, 958, 1516, 1501, 715, 1491, 87, 88, 1279, 74, 1208, 76, 77, 78, 927, 482, 1403, 74, -1, 76, 77, 78, 87, 88, 417, 567, -1, 113, 726, 115, 87, 88, 113, 567, 115, 121, 122, 567, 431, 1426, 121, 122, -1, 436, 939, -1, 1433, 158, 149, -1, -1, 444, -1, -1, -1, -1, 113, -1, 115, -1, 161, -1, 801, -1, 121, 122, -1, -1, -1, 462, -1, -1, 465, -1, 813, -1, 971, -1, -1, 10, 11, 12, 13, 14, -1, 68, 187, 480, -1, 482, 726, -1, -1, -1, 77, -1, -1, 490, 1485, -1, -1, 494, 10, 11, 12, 13, 14, -1, -1, 210, 41, -1, 1435, -1, 1437, 74, 855, 76, 77, -1, 231, 222, 861, -1, 1019, -1, -1, -1, 87, 88, 523, -1, -1, 41, -1, -1, 119, -1, 69, -1, -1, 252, -1, 74, -1, -1, 257, 78, -1, 1472, -1, 1474, -1, 892, 113, 894, 87, 88, -1, 118, -1, 69, 901, 1434, -1, 1436, -1, 74, -1, -1, 983, -1, -1, -1, 81, 568, -1, 84, 161, 86, 87, 88, 113, -1, 74, 924, 76, 77, 78, -1, 121, 122, 585, 586, -1, -1, -1, 87, 88, -1, 1471, -1, 1473, 1098, 597, 113, 945, 115, 115, 1022, -1, -1, 465, 121, 122, -1, -1, -1, -1, 958, -1, 0, 615, 113, -1, 964, -1, 620, -1, 968, 331, 121, 122, 626, -1, -1, 629, 630, -1, 222, 351, -1, -1, -1, 1515, -1, 1517, -1, -1, -1, -1, -1, 645, -1, 74, 34, 76, 77, 78, 1530, 1531, 74, 1157, 1158, -1, 78, -1, 87, 88, -1, 663, -1, -1, 526, 87, 88, 1015, 260, 531, -1, -1, 674, 265, -1, 85, 68, -1, -1, 89, 90, 91, -1, 71, 113, -1, -1, -1, 280, -1, -1, 113, 84, 115, -1, 405, -1, 417, 700, 121, 122, 703, -1, 113, 1052, 115, -1, 117, 118, -1, 712, 431, -1, 715, -1, -1, 436, 579, 1066, -1, -1, -1, -1, 1071, 444, 74, -1, 119, -1, -1, -1, -1, 81, -1, -1, 84, 738, 86, 87, 88, 1088, 743, 462, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, 350, 74, 480, -1, 482, 78, 1112, -1, 115, -1, -1, 161, 158, -1, 87, 88, -1, -1, 41, -1, -1, 781, -1, -1, -1, -1, 646, -1, 648, -1, -1, 791, 68, -1, 794, -1, -1, 797, -1, -1, 113, -1, 802, -1, -1, 523, 69, -1, 121, 122, -1, 74, 812, 76, 77, 78, -1, 74, 1164, 76, 77, 78, -1, -1, 87, 88, -1, -1, -1, -1, 87, 88, 222, -1, -1, -1, -1, -1, 698, -1, 430, -1, -1, 119, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, 446, -1, 121, 122, -1, -1, 862, 1365, -1, -1, 252, -1, 586, -1, 260, 257, -1, -1, -1, 265, -1, -1, -1, -1, 1382, 471, -1, -1, 884, 161, 1232, -1, 1234, 1235, -1, 891, -1, -1, 894, 10, 11, 12, 13, 14, -1, -1, 190, 74, -1, 76, 77, 78, -1, 197, -1, 629, 630, -1, -1, -1, 87, 88, -1, -1, 920, -1, -1, -1, -1, -1, 41, 645, -1, 929, 930, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, -1, 113, -1, 115, 663, 222, -1, -1, -1, 121, 122, 1454, 1455, 69, -1, 674, -1, -1, 74, 350, 76, 77, 78, -1, 351, -1, 1313, -1, -1, -1, -1, 87, 88, 34, -1, -1, -1, -1, -1, -1, 269, 700, 983, 260, 703, -1, -1, -1, 265, -1, -1, -1, -1, -1, -1, 996, -1, 113, 589, 115, 1001, 1002, -1, 1004, 1005, 121, 122, -1, -1, -1, 71, -1, -1, 1360, 1361, -1, -1, -1, -1, 738, -1, 1022, -1, 1370, 1371, -1, 617, -1, -1, -1, 417, 622, -1, -1, -1, -1, -1, 326, 74, 430, 76, 77, 78, -1, 431, 334, -1, -1, 337, 436, -1, 87, 88, -1, -1, 1056, 1057, 444, -1, -1, -1, 1408, 781, 10, 11, 12, 13, 14, -1, -1, -1, -1, 791, 350, -1, 462, -1, 113, 797, -1, 471, -1, -1, 802, 945, 121, 122, -1, -1, -1, -1, -1, -1, 480, 41, 482, -1, 158, -1, -1, 691, -1, -1, 964, -1, 0, 1, 968, 397, -1, -1, -1, 401, -1, 705, -1, -1, -1, -1, -1, 1467, 1468, 69, -1, -1, -1, 1127, 74, -1, 32, 1477, 78, -1, -1, -1, 726, 523, -1, -1, 34, 87, 88, -1, 862, 1491, 1492, -1, -1, -1, -1, -1, -1, -1, 430, 1015, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 884, 113, -1, 1169, 1516, -1, -1, 891, 68, 121, 122, 71, -1, 28, 29, 30, 84, 85, -1, -1, -1, -1, 41, 477, 1190, -1, 252, -1, -1, 471, -1, 257, -1, 589, 586, -1, 1202, -1, 1204, -1, 796, -1, 1208, -1, -1, -1, -1, -1, -1, -1, 69, -1, -1, -1, -1, 74, 0, 76, 77, 78, -1, 617, -1, -1, -1, -1, 622, -1, 87, 88, -1, -1, -1, 1239, -1, -1, -1, 629, 630, -1, 1246, 1247, 1248, -1, -1, 100, 1112, 102, -1, -1, 34, 1257, 1258, 645, 113, -1, 115, -1, 158, -1, -1, -1, 121, 122, 1270, -1, -1, -1, -1, -1, -1, 663, -1, 567, 568, -1, -1, 1001, 1002, -1, 1004, 1005, 674, -1, -1, 351, -1, 71, -1, -1, -1, -1, -1, -1, -1, 691, -1, 1303, 1022, -1, -1, -1, -1, 1309, -1, -1, -1, 589, 700, 705, -1, 703, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 222, -1, -1, -1, -1, 182, -1, -1, -1, -1, 1056, 1057, -1, 617, 244, 192, 193, -1, 622, -1, 197, -1, 199, 200, 738, -1, -1, -1, -1, 417, 252, -1, -1, -1, 650, -1, -1, -1, 654, -1, -1, -1, -1, 431, 1232, -1, 1234, 1235, 436, -1, 1378, -1, 158, -1, -1, -1, 444, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, 781, 986, -1, -1, -1, -1, -1, 462, 1403, -1, 791, 796, -1, -1, 1127, -1, 797, -1, -1, -1, 691, 802, -1, -1, 41, 480, -1, 482, -1, -1, -1, 1426, -1, -1, 705, -1, -1, -1, 1433, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, -1, -1, 69, -1, -1, -1, 1169, 74, 1313, 76, 77, 78, -1, -1, -1, -1, -1, -1, 523, -1, 87, 88, -1, 135, -1, -1, -1, 1190, -1, 252, -1, 862, 379, -1, 257, -1, -1, -1, -1, 1202, 1485, 1204, -1, -1, -1, -1, 113, 1492, -1, -1, -1, -1, 785, 884, 121, 122, -1, -1, -1, -1, 891, -1, -1, -1, -1, 1370, 1371, -1, -1, -1, -1, -1, -1, -1, -1, 796, 1239, -1, -1, -1, -1, 586, -1, 1246, 1247, 1248, -1, -1, -1, -1, -1, -1, 431, -1, 1257, 1258, -1, -1, -1, -1, -1, -1, -1, 1408, -1, -1, -1, 1270, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 629, 630, -1, -1, 351, -1, -1, -1, -1, 1168, -1, -1, -1, -1, -1, -1, 645, -1, 489, 482, 491, -1, 1309, -1, -1, -1, -1, 986, -1, -1, -1, -1, -1, -1, 663, -1, -1, -1, -1, 1468, -1, 898, -1, -1, -1, 674, 1001, 1002, 1477, 1004, 1005, -1, -1, -1, -1, -1, -1, 55, -1, 57, 523, -1, 60, 61, 62, -1, 64, 1022, -1, -1, 417, 700, -1, -1, 703, -1, -1, -1, -1, -1, 78, -1, -1, -1, 431, -1, -1, -1, -1, 436, -1, 1378, 90, 91, -1, -1, -1, 444, -1, -1, -1, 1056, 1057, -1, -1, -1, 1265, -1, -1, 738, -1, -1, -1, -1, -1, 462, 973, -1, -1, -1, -1, -1, -1, 586, -1, -1, -1, -1, -1, -1, -1, -1, 989, 480, -1, 482, -1, -1, -1, 1426, -1, 986, -1, -1, -1, -1, 1433, -1, -1, -1, -1, -1, 781, 571, 572, -1, -1, -1, -1, -1, -1, -1, 791, -1, 635, -1, 629, 630, 797, -1, -1, -1, 1127, 802, -1, -1, 523, -1, -1, -1, 598, -1, 645, 601, 602, -1, 604, -1, 606, 607, -1, -1, -1, 611, 612, -1, -1, -1, 1485, -1, -1, 10, 11, 12, 13, 14, -1, 1064, -1, 1168, -1, -1, -1, 684, 1169, 686, -1, -1, -1, 690, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 41, 862, -1, 1190, -1, -1, -1, 586, 703, -1, -1, -1, -1, -1, 1103, 1202, -1, 1204, -1, -1, -1, -1, -1, 884, -1, -1, -1, -1, 69, -1, 891, -1, -1, 74, -1, 76, 77, 78, -1, -1, -1, -1, -1, -1, -1, -1, 87, 88, -1, -1, 629, 630, 1239, -1, -1, -1, -1, -1, -1, 1246, 1247, 1248, -1, -1, -1, -1, 645, -1, -1, -1, 1257, 1258, 113, -1, 1265, -1, -1, -1, -1, -1, 121, 122, -1, 1270, 663, -1, -1, -1, -1, -1, -1, 1168, -1, -1, -1, 674, -1, 747, 748, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 344, -1, 346, -1, -1, -1, -1, 700, 1309, -1, 703, -1, -1, 357, 358, -1, -1, 28, 29, 30, -1, -1, -1, -1, -1, -1, 1001, 1002, -1, 1004, 1005, -1, -1, -1, -1, -1, -1, -1, 855, -1, -1, -1, -1, -1, 861, 738, -1, 1022, -1, -1, -1, -1, -1, 862, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1265, 884, -1, 1378, -1, -1, -1, 1056, 1057, -1, 901, 41, -1, -1, 781, 100, -1, 102, -1, -1, -1, -1, -1, -1, 791, -1, -1, -1, -1, -1, 797, -1, -1, -1, -1, 802, -1, -1, -1, 69, -1, -1, 127, -1, -1, -1, -1, 930, -1, -1, -1, 1426, -1, -1, -1, -1, -1, -1, 1433, -1, -1, -1, -1, -1, -1, 903, -1, 958, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1127, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 862, 7, 182, -1, 10, 11, 12, 13, 14, -1, 190, -1, 192, 193, -1, 1485, -1, 197, -1, 199, 200, -1, 884, -1, -1, 1169, 1004, 1005, -1, 891, -1, -1, -1, 39, 40, 41, 42, -1, -1, -1, -1, -1, -1, -1, 1022, -1, 1190, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1202, -1, 1204, -1, 68, 69, -1, -1, 1052, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, 269, -1, -1, -1, -1, -1, 1239, -1, -1, -1, -1, -1, -1, 1246, 1247, 1248, -1, -1, 113, -1, 115, -1, -1, -1, 1257, 1258, 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, 1058, 1270, -1, -1, -1, -1, -1, -1, -1, 51, -1, -1, -1, -1, 1001, 1002, -1, 1004, 1005, -1, -1, -1, -1, -1, -1, -1, 68, -1, -1, -1, -1, -1, -1, -1, -1, 1022, -1, -1, -1, -1, 1309, -1, -1, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, 1164, 692, -1, 694, -1, -1, -1, -1, -1, -1, 701, 702, 1168, 1169, -1, 706, 1056, 1057, -1, -1, 115, -1, -1, -1, 119, 68, -1, -1, 719, -1, -1, 74, -1, 724, 1190, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, 1208, 148, -1, -1, 1378, -1, -1, -1, 751, -1, -1, 158, -1, -1, 161, -1, -1, -1, 113, -1, 115, -1, -1, 1186, -1, -1, 121, 122, 123, 124, 125, 126, -1, -1, -1, 1127, -1, -1, -1, 134, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1257, 1258, -1, 1426, -1, -1, -1, -1, 1265, -1, 1433, -1, -1, 1270, 210, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 222, -1, 1169, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 240, -1, 1303, -1, -1, 1190, -1, -1, 844, -1, 846, 847, 848, -1, -1, -1, -1, 1202, 1485, 1204, -1, -1, -1, -1, -1, 265, -1, -1, -1, 865, -1, -1, 272, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 879, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1239, -1, -1, 297, -1, -1, -1, 1246, 1247, 1248, -1, -1, -1, -1, 571, 572, 310, -1, 1257, 1258, -1, -1, -1, 1378, -1, -1, -1, -1, 918, -1, -1, 1270, -1, -1, -1, -1, -1, -1, -1, -1, -1, 598, -1, -1, 601, 602, -1, 604, 1403, 606, 607, 345, -1, -1, 611, 612, 350, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1309, 1426, 962, -1, -1, -1, -1, 967, 1433, -1, -1, -1, 972, -1, -1, -1, -1, 977, -1, -1, -1, -1, 982, -1, 984, 985, -1, -1, 988, -1, -1, -1, -1, -1, -1, -1, -1, 997, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1013, 1014, -1, -1, -1, -1, -1, 1485, 425, 426, -1, -1, -1, -1, 431, -1, 1378, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1039, -1, -1, 1042, -1, -1, -1, -1, -1, 452, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, -1, -1, -1, 480, 1426, -1, -1, 747, 748, -1, 41, 1433, 1085, -1, -1, 492, -1, -1, 1091, 1092, -1, -1, -1, -1, -1, -1, -1, 504, -1, 506, -1, -1, 509, -1, 511, 512, -1, 1110, 69, -1, -1, -1, 1115, -1, -1, -1, 523, 1120, -1, 80, -1, -1, -1, -1, -1, -1, -1, -1, 1131, -1, -1, -1, -1, 1485, -1, -1, -1, -1, -1, -1, -1, 1144, -1, 1146, 1147, 1148, 1149, -1, -1, -1, 68, -1, -1, -1, -1, -1, -1, -1, 1161, 77, 1163, 79, -1, 81, 1167, -1, -1, -1, 575, -1, 88, -1, -1, -1, -1, -1, -1, -1, -1, 586, -1, -1, 589, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1195, 1196, -1, -1, -1, -1, -1, -1, -1, 119, -1, 121, 122, 123, -1, -1, 615, -1, -1, -1, -1, 620, -1, -1, -1, -1, -1, -1, -1, -1, 629, 630, -1, -1, -1, -1, 898, -1, -1, -1, -1, 903, -1, -1, -1, -1, 645, -1, -1, -1, -1, 161, -1, -1, 1249, 1250, -1, -1, -1, -1, -1, -1, -1, -1, 1259, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 677, 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, 703, -1, 705, -1, -1, -1, 41, -1, 222, -1, 224, 225, 226, -1, 46, -1, -1, -1, -1, -1, -1, -1, 1321, -1, 1323, 1324, 1325, -1, -1, -1, -1, -1, -1, -1, 69, 738, 1335, -1, -1, 74, -1, 76, 77, 78, 1343, -1, 260, -1, -1, -1, -1, 265, 87, 88, -1, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, 280, -1, -1, 1368, 1369, 103, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 148, -1, -1, -1, 1058, 796, -1, -1, -1, -1, 158, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 169, 170, -1, -1, -1, 1413, 1414, -1, 331, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1426, -1, -1, -1, -1, -1, -1, 1433, -1, 350, -1, -1, -1, 172, 355, 356, -1, -1, -1, -1, -1, -1, 363, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 195, -1, -1, -1, 1466, -1, -1, -1, 1470, -1, -1, -1, -1, -1, 209, -1, -1, 240, 884, -1, -1, -1, -1, 218, -1, 891, -1, -1, 405, -1, -1, -1, -1, 228, -1, -1, 1498, -1, 1500, -1, 906, 264, -1, -1, -1, -1, 423, -1, -1, -1, -1, 428, -1, 430, -1, -1, -1, 1186, 253, -1, -1, -1, -1, 258, -1, 931, 1528, 1529, -1, 446, -1, -1, 449, 450, 1536, 1537, 271, -1, -1, -1, 457, -1, 277, -1, 279, -1, -1, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, 478, -1, 298, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 983, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 1004, 1005, 32, 33, 34, -1, 339, -1, -1, -1, 343, 41, -1, -1, -1, -1, -1, -1, 379, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 371, 69, -1, -1, 375, 376, -1, 378, 76, 77, -1, -1, -1, -1, 385, 386, -1, 388, 389, 1061, 391, -1, 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 589, -1, -1, 410, -1, -1, -1, -1, -1, -1, -1, 418, -1, -1, -1, -1, -1, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, 617, -1, -1, -1, -1, 622, -1, 442, -1, 472, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1127, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 468, -1, -1, -1, -1, -1, 474, -1, -1, -1, -1, 479, -1, -1, -1, 511, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 523, -1, 1168, -1, -1, -1, 529, -1, -1, 532, 157, 158, -1, -1, 691, -1, -1, -1, -1, -1, 515, -1, 545, -1, -1, -1, -1, -1, 705, -1, -1, -1, -1, -1, -1, 530, -1, -1, 1204, -1, -1, -1, -1, 190, -1, -1, -1, -1, -1, 726, 197, -1, 575, -1, -1, -1, -1, -1, -1, 582, -1, -1, -1, 586, -1, -1, -1, -1, -1, -1, -1, -1, 567, -1, -1, -1, -1, -1, -1, -1, -1, 576, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1257, 1258, -1, -1, -1, -1, -1, -1, 1265, -1, 596, -1, -1, -1, -1, -1, -1, 785, 632, -1, -1, -1, -1, -1, -1, -1, 640, -1, 796, -1, -1, 269, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 813, -1, -1, 634, -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, 41, -1, -1, 670, -1, -1, -1, 326, -1, -1, -1, 678, -1, -1, -1, 334, 335, -1, 337, 338, -1, 716, -1, -1, -1, -1, 345, -1, 69, -1, 349, -1, -1, 74, -1, 76, 77, 78, -1, -1, 1378, -1, 709, 738, -1, 740, 87, 88, -1, 368, -1, -1, -1, 720, 721, 750, -1, -1, -1, -1, -1, 756, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, 924, -1, -1, 397, -1, 121, 122, 401, -1, -1, 752, -1, -1, -1, -1, 757, -1, -1, -1, -1, -1, -1, 1435, -1, 1437, -1, 796, 797, -1, -1, 954, -1, -1, -1, -1, -1, -1, 431, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1472, -1, 1474, 986, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 997, -1, 817, -1, -1, -1, -1, -1, 851, 824, 477, -1, 855, 480, -1, 1501, -1, -1, -1, -1, -1, -1, 837, -1, 839, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 852, -1, -1, -1, 884, -1, 858, -1, -1, -1, -1, 891, -1, -1, -1, 519, -1, -1, 870, 523, -1, 873, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1066, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1080, -1, -1, -1, -1, 931, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 567, 568, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 958, -1, -1, 585, 586, 963, -1, -1, 966, -1, -1, -1, -1, 595, -1, 597, 598, -1, -1, -1, -1, -1, 604, -1, -1, -1, -1, -1, 986, -1, -1, -1, 614, 615, -1, -1, -1, -1, 620, 997, -1, -1, -1, -1, -1, -1, -1, 629, 630, -1, -1, 981, -1, -1, -1, -1, 1168, -1, -1, 1017, -1, 1019, -1, 645, -1, -1, -1, -1, 650, 651, -1, -1, 654, 655, -1, -1, 1034, 1035, 283, 661, 285, 286, -1, -1, -1, -1, -1, -1, -1, -1, 295, 296, -1, -1, -1, -1, 1054, -1, 680, -1, -1, -1, -1, -1, -1, 310, 311, -1, -1, -1, -1, -1, 1042, -1, -1, -1, -1, -1, -1, -1, -1, 703, 704, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 345, -1, -1, -1, -1, -1, 1076, -1, -1, -1, 1108, 1081, -1, 1265, -1, -1, 738, -1, -1, 1089, 742, 743, -1, -1, -1, -1, -1, -1, -1, 1127, -1, -1, -1, -1, -1, 380, -1, -1, -1, -1, -1, -1, -1, -1, 1142, 1143, -1, -1, -1, -1, -1, -1, -1, 1123, -1, -1, -1, -1, -1, -1, -1, -1, -1, 785, 1134, -1, -1, 1137, -1, 1139, -1, -1, -1, -1, -1, -1, -1, -1, -1, 801, -1, 803, -1, -1, 1154, 1155, -1, -1, -1, -1, -1, 813, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1174, -1, -1, -1, -1, -1, -1, -1, -1, -1, 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, 1220, -1, 38, -1, -1, 41, 42, -1, 1228, -1, -1, -1, 884, -1, -1, -1, -1, -1, -1, 891, 892, -1, 894, -1, -1, -1, 898, -1, -1, -1, 66, -1, -1, 69, -1, 71, 1284, 73, 74, 1287, 76, 77, 78, -1, -1, -1, -1, 919, 920, -1, -1, 87, 88, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, -1, -1, -1, -1, -1, -1, 113, 1298, 115, 1300, -1, 954, -1, -1, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1316, -1, 1318, -1, -1, 973, 974, -1, -1, -1, -1, -1, -1, -1, -1, 983, -1, 1333, 1516, -1, -1, 989, 990, -1, 992, 993, 994, -1, -1, -1, -1, -1, 1348, 1349, -1, -1, 1004, 1005, -1, -1, -1, -1, -1, 1359, -1, -1, 1362, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 1384, -1, -1, -1, -1, -1, -1, -1, -1, 1393, 41, -1, 1396, -1, 1398, 1399, 1400, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1064, 688, 1066, -1, -1, -1, -1, 1071, -1, -1, 69, -1, -1, -1, -1, -1, 1080, -1, -1, -1, -1, 80, -1, -1, -1, -1, -1, 1439, -1, 1441, -1, 1443, -1, -1, -1, -1, -1, -1, -1, 1103, 1104, -1, -1, -1, -1, -1, -1, 1459, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1501, 749, 1127, 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, 779, 32, 33, 34, 35, -1, -1, 38, 39, 40, 41, 42, 43, -1, 45, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, -1, -1, -1, 59, -1, -1, -1, 63, 64, -1, 66, -1, 68, 69, -1, 71, -1, 73, 74, -1, 76, 77, 78, 1204, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, 118, -1, -1, 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, 1257, 1258, -1, -1, 136, -1, -1, -1, -1, -1, -1, -1, -1, 893, 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, 38, 39, 40, 41, 42, -1, -1, -1, -1, -1, 939, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, 69, -1, 71, -1, 73, 74, -1, 76, 77, 78, -1, 971, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, 983, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1378, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, 1022, -1, -1, -1, -1, 136, -1, -1, -1, -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, 38, -1, -1, 41, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1467, -1, -1, -1, -1, -1, 66, -1, 1098, 69, -1, 71, -1, 73, 74, -1, 76, 77, 78, -1, -1, -1, -1, -1, 1491, 1492, -1, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1516, -1, -1, -1, 113, -1, 115, -1, -1, -1, 119, -1, 121, 122, -1, -1, -1, -1, 1157, 1158, 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, 38, 39, 40, 41, 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, 68, 69, -1, 71, -1, 73, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, -1, -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, -1, -1, 32, 33, 34, -1, -1, -1, -1, 39, 40, 41, 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, 68, 69, -1, 71, -1, 73, 74, -1, 76, 77, 78, -1, 1365, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, 1382, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, 120, 121, 122, 123, 124, 125, 126, 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, 39, 40, 41, 42, -1, -1, -1, 1454, 1455, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, 69, -1, 71, -1, 73, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, 120, 121, 122, 123, 124, 125, 126, 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, 39, 40, 41, 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, 68, 69, -1, 71, -1, 73, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 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, 39, 40, 41, 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, 68, 69, -1, 71, -1, 73, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 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, 39, 40, 41, 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, 68, 69, -1, 71, -1, 73, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 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, 38, -1, -1, 41, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, 69, -1, 71, -1, 73, 74, -1, 76, 77, 78, -1, -1, -1, -1, -1, -1, -1, -1, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 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, 41, -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, 69, -1, 71, -1, 73, 74, 41, 76, 77, 78, -1, -1, -1, -1, -1, -1, -1, -1, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, -1, -1, -1, -1, -1, 76, 77, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 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, 38, -1, -1, 41, -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, 69, -1, 71, -1, 73, -1, -1, 76, 77, -1, -1, 80, 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, 115, 38, -1, -1, 41, -1, 121, 122, -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, -1, 71, -1, 73, -1, -1, 76, 77, 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, 115, 41, -1, -1, -1, -1, 121, 122, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, 71, -1, 73, -1, -1, 76, 77, -1, -1, -1, 39, 40, 41, 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, 68, 69, -1, -1, -1, 115, 74, -1, -1, -1, 78, 121, 122, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 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, 41, -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, 69, -1, 71, -1, 73, 74, 41, 76, 77, 78, -1, -1, -1, -1, -1, -1, -1, -1, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, -1, -1, -1, -1, -1, 76, 77, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 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, 115, -1, 32, 33, 34, -1, 121, 122, -1, -1, -1, 41, -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, 69, -1, 71, -1, 73, -1, -1, 76, 77, -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, -1, -1, 32, 33, 34, -1, -1, -1, -1, 114, 115, 41, -1, -1, -1, -1, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, 71, -1, 73, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 100, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, 121, 122, 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, 41, -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, 69, -1, 71, -1, 73, -1, 41, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 100, -1, -1, 69, -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, 115, -1, -1, -1, -1, -1, 121, 122, 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, 115, -1, 32, 33, 34, -1, 121, 122, -1, -1, -1, 41, -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, 69, -1, 71, -1, 73, -1, -1, 76, 77, -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, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 115, 41, -1, -1, -1, -1, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, 71, -1, 73, -1, -1, 76, 77, -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, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 115, 41, -1, -1, -1, -1, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, 71, -1, 73, -1, -1, 76, 77, 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, 39, 40, 41, 42, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 68, 69, -1, -1, -1, -1, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, 118, -1, -1, 121, 122, 123, 124, 125, 126, 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, 39, 40, 41, 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, 68, 69, -1, -1, -1, -1, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, 114, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 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, 39, 40, 41, 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, 68, 69, -1, -1, -1, -1, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 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, 39, 40, 41, 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, 68, 69, -1, -1, -1, -1, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 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, 39, 40, 41, 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, 68, 69, -1, -1, -1, -1, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 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, 41, -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, 69, -1, 71, -1, 73, 41, -1, 76, 77, -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, -1, -1, -1, -1, 74, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, 118, -1, 87, 88, -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, 115, 32, 33, 34, -1, -1, 121, 122, -1, -1, 41, 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, 69, -1, -1, -1, -1, 41, 42, 76, 77, -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, -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, 115, -1, -1, -1, 119, -1, 121, 122, -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, 115, 32, 33, 34, 119, -1, 121, 122, -1, -1, 41, 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, 69, -1, -1, -1, -1, 41, -1, 76, 77, -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, -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, 115, -1, -1, -1, 119, -1, 121, 122, -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, 115, 32, 33, 34, -1, -1, 121, 122, -1, -1, 41, 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, 69, -1, -1, -1, 41, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, -1, 115, -1, -1, -1, -1, -1, 121, 122, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, -1, 115, 32, 33, 34, -1, -1, 121, 122, -1, -1, 41, -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, 69, -1, -1, -1, -1, -1, -1, 76, 77, -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, -1, -1, 32, 33, 34, -1, -1, -1, -1, -1, 115, 41, -1, -1, -1, -1, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, 71, -1, 73, -1, -1, 76, 77, 39, 40, -1, 42, 43, -1, 45, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, -1, -1, 58, 59, -1, -1, -1, 63, 64, -1, 66, -1, 68, -1, -1, -1, -1, -1, 74, 114, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, 118, -1, -1, 121, 122, 123, 124, 125, 126, -1, -1, 39, 40, 131, 42, 43, -1, 45, 136, -1, 48, 49, 50, 51, 52, 53, 54, 55, -1, -1, -1, 59, -1, -1, -1, 63, 64, -1, 66, -1, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, 118, -1, -1, 121, 122, 123, 124, 125, 126, -1, -1, -1, -1, 131, -1, -1, -1, -1, 136, 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, 41, -1, 39, 40, -1, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, -1, -1, 58, 59, -1, -1, -1, 63, 64, 69, 66, 71, 68, 73, -1, -1, 76, 77, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, 100, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, 118, -1, -1, 121, 122, 123, 124, 125, 126, -1, -1, 39, 40, 131, 42, 43, -1, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, -1, -1, -1, 59, -1, -1, -1, 63, 64, -1, 66, -1, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, 118, -1, -1, 121, 122, 123, 124, 125, 126, -1, -1, 39, 40, 131, 42, 43, -1, 45, -1, -1, 48, 49, 50, 51, 52, 53, 54, 55, -1, -1, -1, 59, -1, -1, -1, 63, 64, -1, 66, -1, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, 118, -1, -1, 121, 122, 123, 124, 125, 126, 68, -1, -1, -1, 131, -1, 74, -1, 76, 77, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, 117, 118, -1, -1, 121, 122, 123, 124, 125, 126, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, 118, -1, -1, 121, 122, 123, 124, 125, 126, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, 120, 121, 122, 123, 124, 125, 126, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, 118, -1, -1, 121, 122, 123, 124, 125, 126, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, 39, 40, -1, 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 68, -1, -1, -1, -1, -1, 74, -1, -1, -1, 78, -1, -1, 81, 82, 83, 84, 85, 86, 87, 88, -1, 90, 91, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, 115, -1, -1, -1, -1, -1, 121, 122, 123, 124, 125, 126, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, 41, -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, 69, -1, 71, -1, 73, 74, 41, 76, 77, 78, -1, -1, -1, -1, -1, -1, -1, -1, 87, 88, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, -1, -1, -1, 74, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, 87, 88, 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, 41, -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, 69, -1, 71, -1, 73, -1, -1, 76, 77, 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, 41, -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, 69, -1, 71, -1, 73, -1, -1, 76, 77, 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, 41, -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, 69, -1, 71, -1, 73, -1, -1, 76, 77, 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, -1, -1, -1, 41, 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, 69, -1, -1, -1, 41, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, -1, -1, -1, -1, -1, -1, 76, 77 }; /* 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, 38, 41, 42, 66, 69, 71, 73, 74, 76, 77, 78, 87, 88, 113, 115, 121, 122, 141, 144, 156, 205, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 241, 242, 243, 244, 246, 247, 248, 249, 250, 251, 253, 261, 262, 289, 290, 291, 299, 302, 308, 309, 311, 313, 314, 320, 325, 329, 330, 331, 332, 333, 334, 335, 336, 356, 373, 374, 375, 376, 74, 143, 144, 156, 222, 224, 232, 234, 243, 247, 249, 290, 83, 113, 318, 319, 320, 318, 318, 74, 76, 77, 78, 142, 143, 279, 280, 300, 301, 76, 77, 280, 113, 311, 11, 206, 113, 156, 325, 330, 331, 332, 334, 335, 336, 116, 138, 225, 232, 234, 329, 333, 372, 373, 376, 377, 139, 111, 135, 283, 118, 139, 180, 76, 77, 141, 278, 139, 139, 139, 120, 139, 76, 77, 113, 156, 315, 324, 325, 326, 327, 328, 329, 333, 337, 338, 339, 340, 341, 347, 3, 30, 80, 245, 3, 5, 76, 115, 156, 224, 235, 239, 241, 250, 291, 329, 333, 376, 222, 224, 234, 243, 247, 249, 290, 329, 333, 35, 240, 240, 235, 241, 139, 240, 235, 240, 235, 77, 113, 118, 280, 291, 118, 280, 240, 235, 120, 139, 139, 0, 138, 113, 180, 318, 318, 138, 115, 232, 234, 374, 278, 278, 135, 234, 113, 156, 315, 325, 329, 115, 156, 376, 312, 237, 320, 113, 296, 113, 113, 53, 113, 39, 40, 42, 68, 74, 78, 81, 82, 83, 84, 85, 86, 90, 91, 113, 115, 123, 124, 125, 126, 140, 144, 145, 146, 147, 148, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 171, 174, 232, 282, 298, 372, 377, 234, 114, 114, 114, 114, 114, 114, 114, 115, 232, 356, 374, 115, 121, 156, 171, 224, 225, 231, 234, 238, 239, 243, 246, 247, 249, 268, 269, 273, 274, 275, 276, 290, 356, 368, 369, 370, 371, 376, 377, 113, 329, 333, 376, 113, 120, 136, 115, 118, 156, 171, 284, 284, 119, 138, 120, 136, 113, 120, 136, 120, 136, 120, 136, 318, 136, 325, 326, 327, 328, 338, 339, 340, 341, 234, 324, 337, 66, 317, 115, 318, 355, 356, 318, 318, 180, 138, 113, 318, 355, 318, 318, 234, 315, 113, 113, 233, 234, 232, 234, 138, 232, 372, 377, 180, 138, 278, 283, 224, 239, 329, 333, 180, 138, 300, 234, 243, 136, 234, 234, 298, 254, 252, 264, 280, 263, 234, 300, 136, 136, 311, 138, 143, 277, 3, 139, 214, 215, 229, 231, 234, 138, 317, 113, 317, 171, 325, 234, 113, 138, 278, 118, 35, 36, 37, 232, 292, 293, 295, 138, 132, 135, 297, 138, 235, 240, 241, 278, 321, 322, 323, 113, 145, 113, 155, 113, 155, 158, 113, 155, 113, 113, 155, 155, 115, 171, 176, 180, 232, 281, 372, 376, 138, 83, 85, 89, 90, 91, 113, 115, 117, 118, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 135, 173, 158, 158, 121, 127, 128, 123, 124, 92, 93, 94, 95, 129, 130, 96, 97, 122, 131, 132, 98, 99, 133, 113, 156, 351, 352, 353, 354, 355, 114, 120, 113, 355, 356, 113, 355, 356, 138, 232, 374, 116, 138, 139, 232, 234, 367, 368, 376, 377, 139, 113, 115, 156, 325, 342, 343, 344, 345, 346, 347, 348, 349, 350, 356, 357, 358, 359, 360, 361, 362, 156, 376, 234, 139, 139, 156, 232, 234, 369, 278, 232, 356, 369, 278, 138, 138, 138, 138, 74, 115, 117, 144, 280, 284, 285, 286, 287, 288, 138, 138, 138, 138, 138, 138, 315, 114, 114, 114, 114, 114, 114, 114, 324, 337, 113, 283, 116, 214, 138, 315, 176, 282, 176, 282, 315, 115, 214, 317, 180, 138, 214, 114, 42, 115, 119, 232, 255, 256, 257, 372, 118, 120, 378, 135, 265, 118, 234, 270, 271, 272, 275, 276, 114, 120, 180, 138, 121, 171, 138, 231, 234, 269, 368, 376, 309, 310, 113, 156, 342, 114, 120, 135, 379, 280, 292, 113, 118, 280, 282, 292, 114, 120, 113, 145, 114, 134, 281, 281, 281, 150, 171, 282, 281, 138, 114, 120, 114, 113, 156, 355, 363, 364, 365, 366, 114, 120, 171, 115, 143, 149, 150, 138, 115, 143, 149, 171, 158, 158, 158, 159, 159, 160, 160, 161, 161, 161, 161, 162, 162, 163, 164, 165, 166, 167, 134, 176, 138, 352, 353, 354, 234, 351, 318, 318, 171, 282, 138, 277, 232, 356, 369, 234, 238, 116, 376, 116, 113, 138, 325, 343, 344, 345, 348, 358, 359, 360, 116, 138, 234, 342, 346, 357, 113, 318, 361, 379, 318, 318, 379, 113, 318, 361, 318, 318, 318, 318, 356, 232, 367, 377, 278, 116, 120, 116, 120, 379, 232, 369, 379, 266, 267, 268, 269, 266, 278, 171, 138, 115, 280, 134, 120, 378, 284, 115, 134, 288, 31, 216, 217, 278, 266, 143, 315, 143, 317, 113, 355, 356, 113, 355, 356, 145, 356, 180, 270, 114, 114, 114, 114, 138, 180, 214, 180, 118, 256, 257, 138, 113, 134, 156, 258, 260, 324, 325, 337, 363, 120, 136, 120, 136, 280, 254, 280, 119, 169, 170, 264, 139, 139, 143, 229, 139, 139, 266, 113, 156, 376, 139, 119, 234, 293, 171, 294, 139, 138, 138, 113, 139, 114, 322, 176, 177, 134, 136, 115, 145, 207, 208, 209, 114, 120, 114, 114, 114, 114, 171, 364, 365, 366, 234, 363, 318, 318, 118, 158, 171, 172, 175, 120, 138, 114, 120, 171, 138, 119, 169, 134, 270, 114, 114, 114, 351, 270, 114, 232, 369, 115, 121, 156, 171, 171, 234, 348, 270, 114, 114, 114, 114, 114, 114, 114, 7, 234, 342, 346, 357, 138, 138, 379, 138, 138, 139, 139, 139, 139, 283, 169, 170, 171, 316, 138, 284, 286, 119, 138, 218, 280, 42, 43, 45, 48, 49, 50, 51, 52, 53, 54, 55, 59, 63, 64, 74, 131, 177, 178, 179, 180, 181, 182, 184, 185, 197, 199, 200, 205, 219, 314, 31, 139, 135, 283, 138, 138, 114, 139, 180, 254, 136, 136, 325, 170, 234, 259, 260, 259, 280, 318, 119, 265, 378, 114, 120, 116, 116, 139, 234, 120, 379, 296, 114, 292, 222, 224, 232, 304, 305, 306, 307, 298, 114, 114, 134, 170, 113, 114, 134, 120, 143, 114, 114, 114, 363, 285, 120, 139, 175, 81, 84, 86, 143, 151, 152, 153, 150, 139, 151, 169, 139, 113, 355, 356, 139, 138, 139, 139, 139, 171, 114, 139, 113, 355, 356, 113, 361, 113, 361, 356, 233, 7, 121, 139, 171, 270, 270, 269, 273, 273, 274, 114, 120, 120, 114, 100, 126, 139, 139, 151, 284, 171, 120, 136, 219, 223, 234, 238, 113, 113, 178, 113, 113, 74, 136, 74, 136, 74, 121, 177, 113, 180, 172, 172, 134, 148, 136, 139, 138, 139, 218, 114, 171, 270, 270, 318, 114, 119, 258, 119, 138, 114, 138, 139, 315, 119, 138, 139, 139, 114, 118, 207, 116, 170, 136, 207, 209, 114, 113, 355, 356, 378, 172, 116, 139, 154, 115, 152, 154, 154, 120, 139, 89, 117, 116, 139, 114, 138, 114, 116, 116, 116, 139, 114, 138, 138, 138, 171, 171, 139, 116, 139, 139, 139, 139, 138, 138, 170, 170, 116, 116, 139, 280, 234, 176, 176, 49, 176, 138, 136, 136, 136, 176, 136, 176, 60, 61, 62, 201, 202, 203, 136, 65, 136, 318, 118, 182, 119, 136, 139, 139, 100, 275, 276, 114, 305, 120, 136, 120, 136, 119, 303, 134, 145, 114, 114, 134, 138, 119, 116, 85, 138, 152, 116, 115, 152, 115, 152, 116, 270, 116, 270, 270, 270, 139, 139, 116, 116, 114, 114, 116, 120, 100, 269, 100, 139, 116, 114, 114, 113, 114, 177, 198, 219, 136, 114, 113, 113, 180, 203, 60, 61, 171, 178, 149, 114, 114, 118, 138, 138, 304, 145, 210, 113, 136, 210, 270, 151, 138, 138, 139, 139, 139, 139, 116, 116, 138, 139, 116, 178, 46, 47, 118, 188, 189, 190, 176, 178, 139, 114, 177, 118, 190, 100, 138, 100, 138, 113, 113, 136, 119, 138, 278, 315, 119, 120, 134, 170, 114, 139, 139, 151, 151, 114, 114, 114, 114, 273, 44, 170, 186, 187, 316, 134, 138, 178, 188, 114, 136, 178, 136, 138, 114, 138, 114, 138, 100, 138, 100, 138, 136, 304, 145, 143, 211, 114, 136, 114, 116, 139, 139, 178, 100, 120, 134, 139, 212, 213, 219, 136, 177, 177, 212, 180, 204, 232, 372, 180, 204, 114, 138, 114, 138, 119, 114, 120, 116, 116, 170, 186, 189, 191, 192, 138, 136, 189, 193, 194, 139, 113, 156, 315, 363, 143, 139, 180, 204, 180, 204, 113, 136, 143, 178, 183, 119, 189, 219, 177, 58, 183, 196, 119, 189, 114, 234, 114, 139, 139, 298, 178, 183, 136, 195, 196, 183, 196, 180, 180, 114, 114, 114, 195, 139, 139, 180, 180, 139, 139 }; #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 306 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 310 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 317 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantInteger( *(yyvsp[(1) - (1)].tok) ) ); } break; case 5: /* Line 1806 of yacc.c */ #line 318 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 6: /* Line 1806 of yacc.c */ #line 319 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 7: /* Line 1806 of yacc.c */ #line 320 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 8: /* Line 1806 of yacc.c */ #line 321 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantChar( *(yyvsp[(1) - (1)].tok) ) ); } break; case 18: /* Line 1806 of yacc.c */ #line 346 "parser.yy" { (yyval.constant) = build_constantStr( *(yyvsp[(1) - (1)].str) ); } break; case 19: /* Line 1806 of yacc.c */ #line 350 "parser.yy" { (yyval.str) = (yyvsp[(1) - (1)].tok); } break; case 20: /* Line 1806 of yacc.c */ #line 352 "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 363 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 22: /* Line 1806 of yacc.c */ #line 365 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantZeroOne( *(yyvsp[(1) - (1)].tok) ) ); } break; case 24: /* Line 1806 of yacc.c */ #line 368 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 25: /* Line 1806 of yacc.c */ #line 370 "parser.yy" { (yyval.en) = new ExpressionNode( build_valexpr( (yyvsp[(2) - (3)].sn) ) ); } break; case 27: /* Line 1806 of yacc.c */ #line 380 "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 382 "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 384 "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 386 "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 388 "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 390 "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 392 "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 394 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::IncrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 35: /* Line 1806 of yacc.c */ #line 396 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::DecrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 36: /* Line 1806 of yacc.c */ #line 398 "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 400 "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 410 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 40: /* Line 1806 of yacc.c */ #line 415 "parser.yy" { (yyval.en) = nullptr; } break; case 43: /* Line 1806 of yacc.c */ #line 421 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 45: /* Line 1806 of yacc.c */ #line 427 "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 429 "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 431 "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 433 "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 435 "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 437 "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 442 "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 444 "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 446 "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 457 "parser.yy" { (yyval.en) = nullptr; } break; case 55: /* Line 1806 of yacc.c */ #line 459 "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 470 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 58: /* Line 1806 of yacc.c */ #line 472 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 59: /* Line 1806 of yacc.c */ #line 474 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 60: /* Line 1806 of yacc.c */ #line 479 "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 492 "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 494 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Incr, (yyvsp[(2) - (2)].en) ) ); } break; case 63: /* Line 1806 of yacc.c */ #line 496 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Decr, (yyvsp[(2) - (2)].en) ) ); } break; case 64: /* Line 1806 of yacc.c */ #line 498 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 65: /* Line 1806 of yacc.c */ #line 500 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 66: /* Line 1806 of yacc.c */ #line 502 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 67: /* Line 1806 of yacc.c */ #line 504 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 68: /* Line 1806 of yacc.c */ #line 506 "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 508 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (1)].tok) ), nullptr ) ); } break; case 70: /* Line 1806 of yacc.c */ #line 510 "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 512 "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 518 "parser.yy" { (yyval.op) = OperKinds::PointTo; } break; case 73: /* Line 1806 of yacc.c */ #line 519 "parser.yy" { (yyval.op) = OperKinds::AddressOf; } break; case 74: /* Line 1806 of yacc.c */ #line 525 "parser.yy" { (yyval.op) = OperKinds::UnPlus; } break; case 75: /* Line 1806 of yacc.c */ #line 526 "parser.yy" { (yyval.op) = OperKinds::UnMinus; } break; case 76: /* Line 1806 of yacc.c */ #line 527 "parser.yy" { (yyval.op) = OperKinds::Neg; } break; case 77: /* Line 1806 of yacc.c */ #line 528 "parser.yy" { (yyval.op) = OperKinds::BitNeg; } break; case 79: /* Line 1806 of yacc.c */ #line 534 "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 542 "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 544 "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 546 "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 552 "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 554 "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 560 "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 562 "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 568 "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 570 "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 572 "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 574 "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 580 "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 582 "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 588 "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 594 "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 600 "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 606 "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 612 "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 618 "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 621 "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 634 "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 641 "parser.yy" { (yyval.en) = nullptr; } break; case 116: /* Line 1806 of yacc.c */ #line 646 "parser.yy" { (yyval.op) = OperKinds::Assign; } break; case 117: /* Line 1806 of yacc.c */ #line 647 "parser.yy" { (yyval.op) = OperKinds::AtAssn; } break; case 118: /* Line 1806 of yacc.c */ #line 648 "parser.yy" { (yyval.op) = OperKinds::MulAssn; } break; case 119: /* Line 1806 of yacc.c */ #line 649 "parser.yy" { (yyval.op) = OperKinds::DivAssn; } break; case 120: /* Line 1806 of yacc.c */ #line 650 "parser.yy" { (yyval.op) = OperKinds::ModAssn; } break; case 121: /* Line 1806 of yacc.c */ #line 651 "parser.yy" { (yyval.op) = OperKinds::PlusAssn; } break; case 122: /* Line 1806 of yacc.c */ #line 652 "parser.yy" { (yyval.op) = OperKinds::MinusAssn; } break; case 123: /* Line 1806 of yacc.c */ #line 653 "parser.yy" { (yyval.op) = OperKinds::LSAssn; } break; case 124: /* Line 1806 of yacc.c */ #line 654 "parser.yy" { (yyval.op) = OperKinds::RSAssn; } break; case 125: /* Line 1806 of yacc.c */ #line 655 "parser.yy" { (yyval.op) = OperKinds::AndAssn; } break; case 126: /* Line 1806 of yacc.c */ #line 656 "parser.yy" { (yyval.op) = OperKinds::ERAssn; } break; case 127: /* Line 1806 of yacc.c */ #line 657 "parser.yy" { (yyval.op) = OperKinds::OrAssn; } break; case 128: /* Line 1806 of yacc.c */ #line 668 "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 670 "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 676 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 133: /* Line 1806 of yacc.c */ #line 682 "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 687 "parser.yy" { (yyval.en) = nullptr; } break; case 138: /* Line 1806 of yacc.c */ #line 696 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 144: /* Line 1806 of yacc.c */ #line 703 "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 713 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 146: /* Line 1806 of yacc.c */ #line 720 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (StatementNode *)0 ) ); } break; case 147: /* Line 1806 of yacc.c */ #line 727 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (yyvsp[(5) - (7)].sn) ) ); } break; case 149: /* Line 1806 of yacc.c */ #line 733 "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 738 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 151: /* Line 1806 of yacc.c */ #line 740 "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 746 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 155: /* Line 1806 of yacc.c */ #line 753 "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 758 "parser.yy" { (yyval.sn) = new StatementNode( build_expr( (yyvsp[(1) - (2)].en) ) ); } break; case 157: /* Line 1806 of yacc.c */ #line 764 "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 766 "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 768 "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 770 "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 780 "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 782 "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 792 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 164: /* Line 1806 of yacc.c */ #line 794 "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 799 "parser.yy" { (yyval.sn) = new StatementNode( build_case( (yyvsp[(1) - (1)].en) ) ); } break; case 167: /* Line 1806 of yacc.c */ #line 801 "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 805 "parser.yy" { (yyval.sn) = (yyvsp[(2) - (3)].sn); } break; case 169: /* Line 1806 of yacc.c */ #line 806 "parser.yy" { (yyval.sn) = new StatementNode( build_default() ); } break; case 171: /* Line 1806 of yacc.c */ #line 812 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) )); } break; case 172: /* Line 1806 of yacc.c */ #line 816 "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 821 "parser.yy" { (yyval.sn) = nullptr; } break; case 175: /* Line 1806 of yacc.c */ #line 827 "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 829 "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 834 "parser.yy" { (yyval.sn) = nullptr; } break; case 179: /* Line 1806 of yacc.c */ #line 840 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 180: /* Line 1806 of yacc.c */ #line 842 "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 844 "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 846 "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 851 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 185: /* Line 1806 of yacc.c */ #line 857 "parser.yy" { (yyval.sn) = nullptr; } break; case 186: /* Line 1806 of yacc.c */ #line 859 "parser.yy" { (yyval.sn) = nullptr; } break; case 187: /* Line 1806 of yacc.c */ #line 864 "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 866 "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 868 "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 873 "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 875 "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 880 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Goto ) ); } break; case 193: /* Line 1806 of yacc.c */ #line 884 "parser.yy" { (yyval.sn) = new StatementNode( build_computedgoto( (yyvsp[(3) - (4)].en) ) ); } break; case 194: /* Line 1806 of yacc.c */ #line 887 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Continue ) ); } break; case 195: /* Line 1806 of yacc.c */ #line 891 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Continue ) ); } break; case 196: /* Line 1806 of yacc.c */ #line 894 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 197: /* Line 1806 of yacc.c */ #line 898 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Break ) ); } break; case 198: /* Line 1806 of yacc.c */ #line 900 "parser.yy" { (yyval.sn) = new StatementNode( build_return( (yyvsp[(2) - (3)].en) ) ); } break; case 199: /* Line 1806 of yacc.c */ #line 902 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 200: /* Line 1806 of yacc.c */ #line 904 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 201: /* Line 1806 of yacc.c */ #line 906 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (5)].en) ) ); } break; case 202: /* Line 1806 of yacc.c */ #line 911 "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 913 "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 915 "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 922 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 924 "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 926 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 209: /* Line 1806 of yacc.c */ #line 928 "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 933 "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 935 "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 937 "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 939 "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 944 "parser.yy" { (yyval.sn) = new StatementNode( build_finally( (yyvsp[(2) - (2)].sn) ) ); } break; case 216: /* Line 1806 of yacc.c */ #line 957 "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 962 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 218: /* Line 1806 of yacc.c */ #line 964 "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 973 "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 975 "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 977 "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 979 "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 981 "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 986 "parser.yy" { (yyval.flag) = false; } break; case 226: /* Line 1806 of yacc.c */ #line 988 "parser.yy" { (yyval.flag) = true; } break; case 227: /* Line 1806 of yacc.c */ #line 993 "parser.yy" { (yyval.en) = nullptr; } break; case 230: /* Line 1806 of yacc.c */ #line 1000 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 231: /* Line 1806 of yacc.c */ #line 1005 "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 1007 "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 1012 "parser.yy" { (yyval.en) = nullptr; } break; case 234: /* Line 1806 of yacc.c */ #line 1014 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 235: /* Line 1806 of yacc.c */ #line 1017 "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 1022 "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 1027 "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 1037 "parser.yy" { (yyval.decl) = nullptr; } break; case 241: /* Line 1806 of yacc.c */ #line 1044 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 242: /* Line 1806 of yacc.c */ #line 1049 "parser.yy" { (yyval.decl) = nullptr; } break; case 245: /* Line 1806 of yacc.c */ #line 1056 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 250: /* Line 1806 of yacc.c */ #line 1070 "parser.yy" {} break; case 251: /* Line 1806 of yacc.c */ #line 1071 "parser.yy" {} break; case 259: /* Line 1806 of yacc.c */ #line 1100 "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 1107 "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 1112 "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 1122 "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 1127 "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 1132 "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 1140 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 266: /* Line 1806 of yacc.c */ #line 1145 "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 1150 "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 1155 "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 1160 "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 1191 "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 1195 "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 1202 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 273: /* Line 1806 of yacc.c */ #line 1206 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 274: /* Line 1806 of yacc.c */ #line 1211 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 275: /* Line 1806 of yacc.c */ #line 1216 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 276: /* Line 1806 of yacc.c */ #line 1221 "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 1232 "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 1237 "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 1242 "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 1247 "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 1252 "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 1261 "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 1266 "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 1283 "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 1288 "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 1310 "parser.yy" { (yyval.decl) = nullptr; } break; case 301: /* Line 1806 of yacc.c */ #line 1322 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 304: /* Line 1806 of yacc.c */ #line 1333 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 305: /* Line 1806 of yacc.c */ #line 1335 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 306: /* Line 1806 of yacc.c */ #line 1337 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 307: /* Line 1806 of yacc.c */ #line 1339 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 308: /* Line 1806 of yacc.c */ #line 1341 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 309: /* Line 1806 of yacc.c */ #line 1343 "parser.yy" { typedefTable.enterScope(); } break; case 310: /* Line 1806 of yacc.c */ #line 1347 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 312: /* Line 1806 of yacc.c */ #line 1356 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 313: /* Line 1806 of yacc.c */ #line 1358 "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 1369 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 316: /* Line 1806 of yacc.c */ #line 1374 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 317: /* Line 1806 of yacc.c */ #line 1376 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 318: /* Line 1806 of yacc.c */ #line 1378 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 319: /* Line 1806 of yacc.c */ #line 1380 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 320: /* Line 1806 of yacc.c */ #line 1383 "parser.yy" { (yyval.decl) = new DeclarationNode; (yyval.decl)->isInline = true; } break; case 321: /* Line 1806 of yacc.c */ #line 1385 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 322: /* Line 1806 of yacc.c */ #line 1388 "parser.yy" { (yyval.decl) = new DeclarationNode; (yyval.decl)->isNoreturn = true; } break; case 323: /* Line 1806 of yacc.c */ #line 1390 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 324: /* Line 1806 of yacc.c */ #line 1395 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 325: /* Line 1806 of yacc.c */ #line 1397 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 326: /* Line 1806 of yacc.c */ #line 1399 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 327: /* Line 1806 of yacc.c */ #line 1401 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 328: /* Line 1806 of yacc.c */ #line 1403 "parser.yy" { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Long ); } break; case 329: /* Line 1806 of yacc.c */ #line 1405 "parser.yy" { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Short ); } break; case 330: /* Line 1806 of yacc.c */ #line 1407 "parser.yy" { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Signed ); } break; case 331: /* Line 1806 of yacc.c */ #line 1409 "parser.yy" { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Unsigned ); } break; case 332: /* Line 1806 of yacc.c */ #line 1411 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 333: /* Line 1806 of yacc.c */ #line 1413 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 334: /* Line 1806 of yacc.c */ #line 1415 "parser.yy" { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Complex ); } break; case 335: /* Line 1806 of yacc.c */ #line 1417 "parser.yy" { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Imaginary ); } break; case 336: /* Line 1806 of yacc.c */ #line 1419 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 337: /* Line 1806 of yacc.c */ #line 1421 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Zero ); } break; case 338: /* Line 1806 of yacc.c */ #line 1423 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::One ); } break; case 340: /* Line 1806 of yacc.c */ #line 1430 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1432 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1434 "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 1436 "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 1442 "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 1449 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1451 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1453 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1458 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 351: /* Line 1806 of yacc.c */ #line 1460 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1462 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1464 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1470 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1472 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1474 "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 1480 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1482 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1488 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1490 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 364: /* Line 1806 of yacc.c */ #line 1492 "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 1497 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 366: /* Line 1806 of yacc.c */ #line 1499 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 367: /* Line 1806 of yacc.c */ #line 1501 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 370: /* Line 1806 of yacc.c */ #line 1511 "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 1513 "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 1518 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 373: /* Line 1806 of yacc.c */ #line 1520 "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 1522 "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 1524 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 376: /* Line 1806 of yacc.c */ #line 1529 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 377: /* Line 1806 of yacc.c */ #line 1531 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 378: /* Line 1806 of yacc.c */ #line 1536 "parser.yy" { (yyval.decl) = nullptr; } break; case 379: /* Line 1806 of yacc.c */ #line 1538 "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 1544 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->set_extension( true ); } break; case 383: /* Line 1806 of yacc.c */ #line 1547 "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 1557 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 386: /* Line 1806 of yacc.c */ #line 1559 "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 1561 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 388: /* Line 1806 of yacc.c */ #line 1566 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 389: /* Line 1806 of yacc.c */ #line 1568 "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 1573 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 391: /* Line 1806 of yacc.c */ #line 1575 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 392: /* Line 1806 of yacc.c */ #line 1578 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 393: /* Line 1806 of yacc.c */ #line 1581 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1587 "parser.yy" { (yyval.en) = nullptr; } break; case 396: /* Line 1806 of yacc.c */ #line 1589 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 397: /* Line 1806 of yacc.c */ #line 1594 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 399: /* Line 1806 of yacc.c */ #line 1603 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( nullptr, (yyvsp[(3) - (5)].decl) ); } break; case 400: /* Line 1806 of yacc.c */ #line 1605 "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 1610 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 402: /* Line 1806 of yacc.c */ #line 1612 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 403: /* Line 1806 of yacc.c */ #line 1617 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 404: /* Line 1806 of yacc.c */ #line 1619 "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 1624 "parser.yy" { (yyval.en) = nullptr; } break; case 406: /* Line 1806 of yacc.c */ #line 1626 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 407: /* Line 1806 of yacc.c */ #line 1633 "parser.yy" { (yyval.decl) = nullptr; } break; case 411: /* Line 1806 of yacc.c */ #line 1641 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1643 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 413: /* Line 1806 of yacc.c */ #line 1645 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 415: /* Line 1806 of yacc.c */ #line 1653 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 416: /* Line 1806 of yacc.c */ #line 1655 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 417: /* Line 1806 of yacc.c */ #line 1657 "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 1663 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 420: /* Line 1806 of yacc.c */ #line 1668 "parser.yy" { (yyval.decl) = nullptr; } break; case 423: /* Line 1806 of yacc.c */ #line 1675 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 426: /* Line 1806 of yacc.c */ #line 1682 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 427: /* Line 1806 of yacc.c */ #line 1684 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 429: /* Line 1806 of yacc.c */ #line 1693 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 430: /* Line 1806 of yacc.c */ #line 1696 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 431: /* Line 1806 of yacc.c */ #line 1698 "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 1708 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 438: /* Line 1806 of yacc.c */ #line 1714 "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 1719 "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 1728 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 442: /* Line 1806 of yacc.c */ #line 1737 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 443: /* Line 1806 of yacc.c */ #line 1739 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 455: /* Line 1806 of yacc.c */ #line 1764 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 459: /* Line 1806 of yacc.c */ #line 1772 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1777 "parser.yy" { (yyval.in) = nullptr; } break; case 461: /* Line 1806 of yacc.c */ #line 1779 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 462: /* Line 1806 of yacc.c */ #line 1781 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 463: /* Line 1806 of yacc.c */ #line 1785 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 464: /* Line 1806 of yacc.c */ #line 1786 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 465: /* Line 1806 of yacc.c */ #line 1791 "parser.yy" { (yyval.in) = nullptr; } break; case 467: /* Line 1806 of yacc.c */ #line 1793 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 468: /* Line 1806 of yacc.c */ #line 1794 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_last( (yyvsp[(3) - (3)].in) ) ); } break; case 469: /* Line 1806 of yacc.c */ #line 1796 "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 1812 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (2)].tok) ) ); } break; case 473: /* Line 1806 of yacc.c */ #line 1818 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_last( (yyvsp[(2) - (2)].en) ) ); } break; case 474: /* Line 1806 of yacc.c */ #line 1824 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(2) - (2)].tok) ) ); } break; case 475: /* Line 1806 of yacc.c */ #line 1827 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 476: /* Line 1806 of yacc.c */ #line 1829 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 477: /* Line 1806 of yacc.c */ #line 1831 "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 1833 "parser.yy" { (yyval.en) = (yyvsp[(4) - (6)].en); } break; case 480: /* Line 1806 of yacc.c */ #line 1857 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1859 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1861 "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 1867 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 485: /* Line 1806 of yacc.c */ #line 1869 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 486: /* Line 1806 of yacc.c */ #line 1874 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 488: /* Line 1806 of yacc.c */ #line 1880 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 489: /* Line 1806 of yacc.c */ #line 1885 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 490: /* Line 1806 of yacc.c */ #line 1887 "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 1893 "parser.yy" { (yyval.tclass) = DeclarationNode::Otype; } break; case 493: /* Line 1806 of yacc.c */ #line 1895 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 494: /* Line 1806 of yacc.c */ #line 1897 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 495: /* Line 1806 of yacc.c */ #line 1902 "parser.yy" { (yyval.decl) = nullptr; } break; case 496: /* 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 497: /* 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 498: /* Line 1806 of yacc.c */ #line 1914 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 499: /* Line 1806 of yacc.c */ #line 1916 "parser.yy" { (yyval.decl) = nullptr; } break; case 500: /* Line 1806 of yacc.c */ #line 1921 "parser.yy" { (yyval.en) = new ExpressionNode( build_typevalue( (yyvsp[(1) - (1)].decl) ) ); } break; case 502: /* 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 503: /* Line 1806 of yacc.c */ #line 1926 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 504: /* Line 1806 of yacc.c */ #line 1931 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 505: /* Line 1806 of yacc.c */ #line 1933 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 506: /* 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 507: /* Line 1806 of yacc.c */ #line 1940 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 508: /* 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 509: /* 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 510: /* 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 511: /* 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 512: /* Line 1806 of yacc.c */ #line 1965 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 513: /* 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 515: /* Line 1806 of yacc.c */ #line 1980 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 518: /* Line 1806 of yacc.c */ #line 1990 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 519: /* Line 1806 of yacc.c */ #line 1995 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 520: /* 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 521: /* 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 522: /* 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 523: /* Line 1806 of yacc.c */ #line 2023 "parser.yy" {} break; case 524: /* Line 1806 of yacc.c */ #line 2025 "parser.yy" { parseTree = parseTree ? parseTree->appendList( (yyvsp[(1) - (1)].decl) ) : (yyvsp[(1) - (1)].decl); } break; case 526: /* 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 527: /* Line 1806 of yacc.c */ #line 2036 "parser.yy" { (yyval.decl) = nullptr; } break; case 531: /* Line 1806 of yacc.c */ #line 2044 "parser.yy" {} break; case 532: /* 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 533: /* Line 1806 of yacc.c */ #line 2051 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 534: /* 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 536: /* 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 537: /* 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 538: /* 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 539: /* 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 540: /* 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 541: /* 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 542: /* 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 543: /* 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 544: /* 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 545: /* 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 546: /* 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 550: /* 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 551: /* Line 1806 of yacc.c */ #line 2159 "parser.yy" { (yyval.constant) = nullptr; } break; case 552: /* Line 1806 of yacc.c */ #line 2161 "parser.yy" { (yyval.constant) = (yyvsp[(3) - (5)].constant); } break; case 553: /* Line 1806 of yacc.c */ #line 2166 "parser.yy" { (yyval.decl) = nullptr; } break; case 556: /* Line 1806 of yacc.c */ #line 2173 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 557: /* Line 1806 of yacc.c */ #line 2179 "parser.yy" { (yyval.decl) = nullptr; } break; case 562: /* Line 1806 of yacc.c */ #line 2190 "parser.yy" { delete (yyvsp[(3) - (4)].en); } break; case 563: /* Line 1806 of yacc.c */ #line 2194 "parser.yy" { delete (yyvsp[(1) - (1)].tok); } break; case 564: /* Line 1806 of yacc.c */ #line 2195 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 565: /* Line 1806 of yacc.c */ #line 2196 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 566: /* Line 1806 of yacc.c */ #line 2197 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 567: /* Line 1806 of yacc.c */ #line 2232 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 569: /* Line 1806 of yacc.c */ #line 2235 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2237 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2242 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2247 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 573: /* Line 1806 of yacc.c */ #line 2252 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 574: /* Line 1806 of yacc.c */ #line 2254 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2256 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 576: /* Line 1806 of yacc.c */ #line 2261 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2263 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 578: /* Line 1806 of yacc.c */ #line 2265 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2267 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 580: /* Line 1806 of yacc.c */ #line 2272 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2274 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 582: /* Line 1806 of yacc.c */ #line 2283 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 584: /* Line 1806 of yacc.c */ #line 2286 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2291 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 586: /* Line 1806 of yacc.c */ #line 2293 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 587: /* Line 1806 of yacc.c */ #line 2295 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 588: /* Line 1806 of yacc.c */ #line 2300 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 589: /* Line 1806 of yacc.c */ #line 2302 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2304 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 591: /* Line 1806 of yacc.c */ #line 2309 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 592: /* Line 1806 of yacc.c */ #line 2311 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 593: /* Line 1806 of yacc.c */ #line 2313 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 597: /* Line 1806 of yacc.c */ #line 2328 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 598: /* Line 1806 of yacc.c */ #line 2330 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 599: /* Line 1806 of yacc.c */ #line 2332 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 600: /* Line 1806 of yacc.c */ #line 2337 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 601: /* Line 1806 of yacc.c */ #line 2339 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 602: /* Line 1806 of yacc.c */ #line 2341 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 603: /* Line 1806 of yacc.c */ #line 2346 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 604: /* Line 1806 of yacc.c */ #line 2348 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2350 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 606: /* Line 1806 of yacc.c */ #line 2365 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2368 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2370 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 611: /* Line 1806 of yacc.c */ #line 2376 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 612: /* Line 1806 of yacc.c */ #line 2381 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 613: /* Line 1806 of yacc.c */ #line 2383 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 614: /* Line 1806 of yacc.c */ #line 2385 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 615: /* Line 1806 of yacc.c */ #line 2390 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2392 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2394 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2396 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 619: /* Line 1806 of yacc.c */ #line 2401 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2403 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2405 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 622: /* Line 1806 of yacc.c */ #line 2415 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2418 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 625: /* Line 1806 of yacc.c */ #line 2420 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2425 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2427 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2429 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 629: /* Line 1806 of yacc.c */ #line 2434 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2436 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2438 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2440 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 633: /* Line 1806 of yacc.c */ #line 2445 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2447 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2449 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 636: /* Line 1806 of yacc.c */ #line 2480 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2483 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2485 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2490 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 641: /* Line 1806 of yacc.c */ #line 2495 "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 2503 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2505 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2507 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 645: /* Line 1806 of yacc.c */ #line 2512 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2514 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2519 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2521 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2536 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2538 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2543 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 653: /* Line 1806 of yacc.c */ #line 2545 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 654: /* Line 1806 of yacc.c */ #line 2547 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 655: /* Line 1806 of yacc.c */ #line 2549 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 656: /* Line 1806 of yacc.c */ #line 2551 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 658: /* Line 1806 of yacc.c */ #line 2557 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 659: /* Line 1806 of yacc.c */ #line 2559 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 660: /* Line 1806 of yacc.c */ #line 2561 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 661: /* Line 1806 of yacc.c */ #line 2566 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); } break; case 662: /* Line 1806 of yacc.c */ #line 2568 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 663: /* Line 1806 of yacc.c */ #line 2570 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 664: /* Line 1806 of yacc.c */ #line 2576 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 665: /* Line 1806 of yacc.c */ #line 2578 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 667: /* Line 1806 of yacc.c */ #line 2584 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 668: /* Line 1806 of yacc.c */ #line 2586 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 669: /* Line 1806 of yacc.c */ #line 2588 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2590 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 672: /* Line 1806 of yacc.c */ #line 2605 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2607 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2612 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 675: /* Line 1806 of yacc.c */ #line 2614 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 676: /* Line 1806 of yacc.c */ #line 2616 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 677: /* Line 1806 of yacc.c */ #line 2618 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 678: /* Line 1806 of yacc.c */ #line 2620 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 680: /* Line 1806 of yacc.c */ #line 2626 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 681: /* Line 1806 of yacc.c */ #line 2628 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 682: /* Line 1806 of yacc.c */ #line 2630 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 683: /* Line 1806 of yacc.c */ #line 2635 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); } break; case 684: /* Line 1806 of yacc.c */ #line 2637 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 685: /* Line 1806 of yacc.c */ #line 2639 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 687: /* Line 1806 of yacc.c */ #line 2646 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 689: /* Line 1806 of yacc.c */ #line 2657 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 690: /* Line 1806 of yacc.c */ #line 2660 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 691: /* Line 1806 of yacc.c */ #line 2662 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 692: /* Line 1806 of yacc.c */ #line 2665 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 693: /* Line 1806 of yacc.c */ #line 2667 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 694: /* Line 1806 of yacc.c */ #line 2669 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 696: /* Line 1806 of yacc.c */ #line 2683 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2685 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2690 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 699: /* Line 1806 of yacc.c */ #line 2692 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 700: /* Line 1806 of yacc.c */ #line 2694 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 701: /* Line 1806 of yacc.c */ #line 2696 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 702: /* Line 1806 of yacc.c */ #line 2698 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 704: /* Line 1806 of yacc.c */ #line 2704 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 705: /* Line 1806 of yacc.c */ #line 2706 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 706: /* Line 1806 of yacc.c */ #line 2708 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 707: /* Line 1806 of yacc.c */ #line 2713 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 708: /* Line 1806 of yacc.c */ #line 2715 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 711: /* Line 1806 of yacc.c */ #line 2725 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2735 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2737 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2739 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2741 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2743 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2745 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2752 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2754 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2756 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2758 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2760 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2763 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 726: /* Line 1806 of yacc.c */ #line 2765 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 727: /* Line 1806 of yacc.c */ #line 2767 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 728: /* Line 1806 of yacc.c */ #line 2769 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 729: /* Line 1806 of yacc.c */ #line 2771 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 730: /* Line 1806 of yacc.c */ #line 2776 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 731: /* Line 1806 of yacc.c */ #line 2778 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 732: /* Line 1806 of yacc.c */ #line 2783 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 733: /* Line 1806 of yacc.c */ #line 2785 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 735: /* Line 1806 of yacc.c */ #line 2812 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2823 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2825 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2827 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2829 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2831 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2833 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2840 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 746: /* Line 1806 of yacc.c */ #line 2842 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 747: /* Line 1806 of yacc.c */ #line 2844 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 748: /* Line 1806 of yacc.c */ #line 2846 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 749: /* Line 1806 of yacc.c */ #line 2848 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 750: /* Line 1806 of yacc.c */ #line 2850 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 751: /* Line 1806 of yacc.c */ #line 2855 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 752: /* Line 1806 of yacc.c */ #line 2862 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); } break; case 753: /* Line 1806 of yacc.c */ #line 2864 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); } break; case 756: /* Line 1806 of yacc.c */ #line 2888 "parser.yy" { (yyval.en) = nullptr; } break; case 757: /* Line 1806 of yacc.c */ #line 2890 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9197 "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 2893 "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: //