/* 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 44 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile extern char *yytext; #undef __GNUC_MINOR__ #include #include #include "TypedefTable.h" #include "lex.h" #include "ParseNode.h" #include "TypeData.h" #include "LinkageSpec.h" DeclarationNode *theTree = 0; // the resulting parse tree LinkageSpec::Type linkage = LinkageSpec::Cforall; std::stack< LinkageSpec::Type > linkageStack; TypedefTable typedefTable; /* Line 268 of yacc.c */ #line 93 "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, BOOL = 279, COMPLEX = 280, IMAGINARY = 281, TYPEOF = 282, LABEL = 283, ENUM = 284, STRUCT = 285, UNION = 286, TYPE = 287, FTYPE = 288, DTYPE = 289, CONTEXT = 290, SIZEOF = 291, OFFSETOF = 292, ATTRIBUTE = 293, EXTENSION = 294, IF = 295, ELSE = 296, SWITCH = 297, CASE = 298, DEFAULT = 299, DO = 300, WHILE = 301, FOR = 302, BREAK = 303, CONTINUE = 304, GOTO = 305, RETURN = 306, CHOOSE = 307, DISABLE = 308, ENABLE = 309, FALLTHRU = 310, TRY = 311, CATCH = 312, CATCHRESUME = 313, FINALLY = 314, THROW = 315, THROWRESUME = 316, AT = 317, ASM = 318, ALIGNAS = 319, ALIGNOF = 320, ATOMIC = 321, GENERIC = 322, NORETURN = 323, STATICASSERT = 324, THREADLOCAL = 325, IDENTIFIER = 326, QUOTED_IDENTIFIER = 327, TYPEDEFname = 328, TYPEGENname = 329, ATTR_IDENTIFIER = 330, ATTR_TYPEDEFname = 331, ATTR_TYPEGENname = 332, INTEGERconstant = 333, FLOATINGconstant = 334, CHARACTERconstant = 335, STRINGliteral = 336, ZERO = 337, ONE = 338, ARROW = 339, ICR = 340, DECR = 341, LS = 342, RS = 343, LE = 344, GE = 345, EQ = 346, NE = 347, ANDAND = 348, OROR = 349, ELLIPSIS = 350, MULTassign = 351, DIVassign = 352, MODassign = 353, PLUSassign = 354, MINUSassign = 355, LSassign = 356, RSassign = 357, ANDassign = 358, ERassign = 359, ORassign = 360, ATassign = 361, THEN = 362 }; #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 BOOL 279 #define COMPLEX 280 #define IMAGINARY 281 #define TYPEOF 282 #define LABEL 283 #define ENUM 284 #define STRUCT 285 #define UNION 286 #define TYPE 287 #define FTYPE 288 #define DTYPE 289 #define CONTEXT 290 #define SIZEOF 291 #define OFFSETOF 292 #define ATTRIBUTE 293 #define EXTENSION 294 #define IF 295 #define ELSE 296 #define SWITCH 297 #define CASE 298 #define DEFAULT 299 #define DO 300 #define WHILE 301 #define FOR 302 #define BREAK 303 #define CONTINUE 304 #define GOTO 305 #define RETURN 306 #define CHOOSE 307 #define DISABLE 308 #define ENABLE 309 #define FALLTHRU 310 #define TRY 311 #define CATCH 312 #define CATCHRESUME 313 #define FINALLY 314 #define THROW 315 #define THROWRESUME 316 #define AT 317 #define ASM 318 #define ALIGNAS 319 #define ALIGNOF 320 #define ATOMIC 321 #define GENERIC 322 #define NORETURN 323 #define STATICASSERT 324 #define THREADLOCAL 325 #define IDENTIFIER 326 #define QUOTED_IDENTIFIER 327 #define TYPEDEFname 328 #define TYPEGENname 329 #define ATTR_IDENTIFIER 330 #define ATTR_TYPEDEFname 331 #define ATTR_TYPEGENname 332 #define INTEGERconstant 333 #define FLOATINGconstant 334 #define CHARACTERconstant 335 #define STRINGliteral 336 #define ZERO 337 #define ONE 338 #define ARROW 339 #define ICR 340 #define DECR 341 #define LS 342 #define RS 343 #define LE 344 #define GE 345 #define EQ 346 #define NE 347 #define ANDAND 348 #define OROR 349 #define ELLIPSIS 350 #define MULTassign 351 #define DIVassign 352 #define MODassign 353 #define PLUSassign 354 #define MINUSassign 355 #define LSassign 356 #define RSassign 357 #define ANDassign 358 #define ERassign 359 #define ORassign 360 #define ATassign 361 #define THEN 362 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 110 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantNode *constant; LabelNode *label; InitializerNode *in; bool flag; /* Line 293 of yacc.c */ #line 359 "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 371 "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 247 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 10929 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 132 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 238 /* YYNRULES -- Number of rules. */ #define YYNRULES 750 /* YYNRULES -- Number of states. */ #define YYNSTATES 1576 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 362 #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, 117, 2, 2, 2, 124, 119, 2, 108, 109, 118, 120, 115, 121, 112, 123, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 116, 131, 125, 130, 126, 129, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 110, 2, 111, 127, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 113, 128, 114, 122, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 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 }; #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, 32, 34, 36, 40, 44, 46, 53, 58, 62, 70, 74, 82, 85, 88, 96, 101, 103, 107, 108, 110, 114, 122, 132, 134, 138, 140, 144, 152, 156, 164, 166, 168, 170, 173, 176, 179, 182, 185, 188, 191, 196, 203, 205, 210, 215, 218, 223, 226, 228, 230, 232, 234, 236, 241, 246, 248, 252, 256, 260, 262, 266, 270, 272, 276, 280, 282, 286, 290, 294, 298, 300, 304, 308, 310, 314, 316, 320, 322, 326, 328, 332, 334, 338, 340, 346, 351, 357, 359, 361, 365, 369, 372, 373, 375, 378, 384, 391, 399, 401, 405, 407, 409, 411, 413, 415, 417, 419, 421, 423, 425, 427, 431, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 457, 462, 465, 473, 475, 479, 481, 484, 486, 489, 491, 494, 497, 503, 511, 517, 527, 533, 543, 545, 549, 551, 553, 557, 561, 564, 566, 569, 572, 573, 575, 578, 582, 583, 585, 588, 592, 596, 601, 602, 604, 606, 609, 615, 623, 630, 637, 642, 646, 651, 654, 658, 661, 665, 669, 673, 677, 683, 687, 691, 696, 698, 704, 711, 717, 724, 734, 745, 755, 766, 769, 771, 774, 777, 780, 782, 789, 798, 809, 822, 837, 838, 840, 841, 843, 845, 849, 854, 862, 863, 865, 869, 871, 875, 877, 879, 881, 885, 887, 889, 891, 895, 896, 898, 902, 907, 909, 913, 915, 917, 921, 925, 929, 933, 937, 940, 944, 951, 955, 959, 964, 966, 969, 972, 976, 982, 991, 999, 1007, 1013, 1023, 1026, 1029, 1035, 1039, 1045, 1050, 1054, 1059, 1064, 1072, 1076, 1080, 1084, 1088, 1093, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1117, 1119, 1121, 1124, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1139, 1145, 1147, 1150, 1154, 1156, 1159, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1183, 1185, 1187, 1189, 1191, 1193, 1195, 1197, 1199, 1201, 1203, 1206, 1209, 1213, 1217, 1219, 1223, 1225, 1228, 1231, 1234, 1239, 1244, 1249, 1254, 1256, 1259, 1262, 1266, 1268, 1271, 1274, 1276, 1279, 1282, 1286, 1288, 1291, 1294, 1296, 1298, 1303, 1306, 1312, 1320, 1323, 1326, 1329, 1331, 1334, 1337, 1341, 1344, 1348, 1350, 1353, 1357, 1360, 1363, 1368, 1369, 1371, 1374, 1377, 1379, 1380, 1382, 1385, 1388, 1394, 1401, 1404, 1407, 1412, 1413, 1416, 1417, 1419, 1421, 1423, 1429, 1435, 1441, 1443, 1449, 1455, 1465, 1467, 1473, 1474, 1476, 1478, 1484, 1486, 1488, 1494, 1500, 1502, 1506, 1510, 1515, 1517, 1519, 1521, 1523, 1526, 1528, 1532, 1536, 1538, 1541, 1543, 1547, 1549, 1551, 1553, 1555, 1557, 1559, 1561, 1563, 1565, 1567, 1569, 1572, 1574, 1576, 1578, 1581, 1582, 1585, 1588, 1590, 1595, 1596, 1598, 1601, 1605, 1610, 1613, 1616, 1618, 1621, 1623, 1626, 1632, 1638, 1646, 1653, 1655, 1658, 1661, 1665, 1667, 1670, 1673, 1678, 1681, 1686, 1687, 1692, 1695, 1697, 1699, 1701, 1702, 1705, 1711, 1717, 1731, 1733, 1735, 1739, 1743, 1746, 1750, 1754, 1757, 1762, 1764, 1771, 1781, 1782, 1794, 1796, 1800, 1804, 1808, 1810, 1812, 1818, 1821, 1827, 1828, 1830, 1832, 1836, 1837, 1839, 1841, 1843, 1845, 1846, 1853, 1856, 1858, 1861, 1866, 1869, 1873, 1877, 1881, 1886, 1892, 1898, 1904, 1911, 1913, 1915, 1917, 1921, 1922, 1928, 1929, 1931, 1933, 1936, 1943, 1945, 1949, 1950, 1952, 1957, 1959, 1961, 1963, 1965, 1968, 1970, 1973, 1976, 1978, 1982, 1985, 1989, 1993, 1996, 2001, 2006, 2010, 2019, 2023, 2026, 2028, 2031, 2038, 2047, 2051, 2054, 2058, 2062, 2067, 2072, 2076, 2078, 2080, 2082, 2087, 2094, 2098, 2101, 2105, 2109, 2114, 2119, 2123, 2126, 2128, 2131, 2134, 2136, 2140, 2143, 2147, 2151, 2154, 2159, 2164, 2168, 2175, 2184, 2188, 2191, 2193, 2196, 2199, 2202, 2206, 2210, 2213, 2218, 2223, 2227, 2234, 2243, 2247, 2250, 2252, 2255, 2258, 2260, 2262, 2265, 2269, 2273, 2276, 2281, 2288, 2297, 2299, 2302, 2305, 2307, 2310, 2313, 2317, 2321, 2323, 2328, 2333, 2337, 2343, 2352, 2356, 2359, 2363, 2365, 2371, 2377, 2384, 2391, 2393, 2396, 2399, 2401, 2404, 2407, 2411, 2415, 2417, 2422, 2427, 2431, 2437, 2446, 2450, 2452, 2455, 2457, 2460, 2467, 2473, 2480, 2488, 2496, 2498, 2501, 2504, 2506, 2509, 2512, 2516, 2520, 2522, 2527, 2532, 2536, 2545, 2549, 2551, 2553, 2556, 2558, 2560, 2563, 2567, 2570, 2574, 2577, 2581, 2585, 2588, 2593, 2597, 2600, 2604, 2607, 2612, 2616, 2619, 2626, 2633, 2640, 2648, 2650, 2653, 2655, 2657, 2659, 2662, 2666, 2669, 2673, 2676, 2680, 2684, 2689, 2692, 2696, 2701, 2704, 2710, 2716, 2723, 2730, 2731, 2733, 2734 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 298, 0, -1, -1, -1, 78, -1, 79, -1, 80, -1, 71, -1, 75, -1, 139, -1, 71, -1, 75, -1, 71, -1, 82, -1, 83, -1, 81, -1, 140, 81, -1, 71, -1, 139, -1, 108, 167, 109, -1, 108, 171, 109, -1, 141, -1, 142, 110, 133, 162, 134, 111, -1, 142, 108, 143, 109, -1, 142, 112, 138, -1, 142, 112, 110, 133, 145, 134, 111, -1, 142, 84, 138, -1, 142, 84, 110, 133, 145, 134, 111, -1, 142, 85, -1, 142, 86, -1, 108, 271, 109, 113, 275, 368, 114, -1, 142, 113, 143, 114, -1, 144, -1, 143, 115, 144, -1, -1, 162, -1, 138, 116, 162, -1, 110, 133, 162, 134, 111, 116, 162, -1, 110, 133, 162, 115, 165, 134, 111, 116, 162, -1, 146, -1, 145, 115, 146, -1, 138, -1, 138, 112, 146, -1, 138, 112, 110, 133, 145, 134, 111, -1, 138, 84, 146, -1, 138, 84, 110, 133, 145, 134, 111, -1, 142, -1, 135, -1, 140, -1, 85, 147, -1, 86, 147, -1, 39, 149, -1, 148, 149, -1, 117, 149, -1, 118, 149, -1, 36, 147, -1, 36, 108, 271, 109, -1, 37, 108, 271, 115, 138, 109, -1, 75, -1, 75, 108, 272, 109, -1, 75, 108, 144, 109, -1, 65, 147, -1, 65, 108, 271, 109, -1, 93, 138, -1, 119, -1, 120, -1, 121, -1, 122, -1, 147, -1, 108, 271, 109, 149, -1, 108, 271, 109, 164, -1, 149, -1, 150, 118, 149, -1, 150, 123, 149, -1, 150, 124, 149, -1, 150, -1, 151, 120, 150, -1, 151, 121, 150, -1, 151, -1, 152, 87, 151, -1, 152, 88, 151, -1, 152, -1, 153, 125, 152, -1, 153, 126, 152, -1, 153, 89, 152, -1, 153, 90, 152, -1, 153, -1, 154, 91, 153, -1, 154, 92, 153, -1, 154, -1, 155, 119, 154, -1, 155, -1, 156, 127, 155, -1, 156, -1, 157, 128, 156, -1, 157, -1, 158, 93, 157, -1, 158, -1, 159, 94, 158, -1, 159, -1, 159, 129, 167, 116, 160, -1, 159, 129, 116, 160, -1, 159, 129, 167, 116, 164, -1, 160, -1, 160, -1, 147, 130, 162, -1, 147, 166, 162, -1, 164, 369, -1, -1, 162, -1, 110, 111, -1, 110, 133, 162, 134, 111, -1, 110, 133, 115, 165, 134, 111, -1, 110, 133, 162, 115, 165, 134, 111, -1, 163, -1, 165, 115, 163, -1, 96, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 162, -1, 167, 115, 162, -1, -1, 167, -1, 170, -1, 171, -1, 175, -1, 176, -1, 188, -1, 190, -1, 191, -1, 196, -1, 127, 142, 113, 143, 114, 131, -1, 138, 116, 308, 169, -1, 113, 114, -1, 113, 133, 133, 207, 172, 134, 114, -1, 173, -1, 172, 133, 173, -1, 210, -1, 39, 210, -1, 304, -1, 169, 134, -1, 169, -1, 174, 169, -1, 168, 131, -1, 40, 108, 167, 109, 169, -1, 40, 108, 167, 109, 169, 41, 169, -1, 42, 108, 167, 109, 181, -1, 42, 108, 167, 109, 113, 133, 203, 182, 114, -1, 52, 108, 167, 109, 181, -1, 52, 108, 167, 109, 113, 133, 203, 184, 114, -1, 161, -1, 161, 95, 161, -1, 306, -1, 177, -1, 178, 115, 177, -1, 43, 178, 116, -1, 44, 116, -1, 179, -1, 180, 179, -1, 180, 169, -1, -1, 183, -1, 180, 174, -1, 183, 180, 174, -1, -1, 185, -1, 180, 187, -1, 180, 174, 186, -1, 185, 180, 187, -1, 185, 180, 174, 186, -1, -1, 187, -1, 55, -1, 55, 131, -1, 46, 108, 167, 109, 169, -1, 45, 169, 46, 108, 167, 109, 131, -1, 47, 108, 133, 189, 109, 169, -1, 168, 134, 131, 168, 131, 168, -1, 210, 168, 131, 168, -1, 50, 138, 131, -1, 50, 118, 167, 131, -1, 49, 131, -1, 49, 138, 131, -1, 48, 131, -1, 48, 138, 131, -1, 51, 168, 131, -1, 60, 163, 131, -1, 61, 163, 131, -1, 61, 163, 62, 162, 131, -1, 56, 171, 192, -1, 56, 171, 194, -1, 56, 171, 192, 194, -1, 193, -1, 57, 108, 95, 109, 171, -1, 193, 57, 108, 95, 109, 171, -1, 58, 108, 95, 109, 171, -1, 193, 58, 108, 95, 109, 171, -1, 57, 108, 133, 133, 195, 134, 109, 171, 134, -1, 193, 57, 108, 133, 133, 195, 134, 109, 171, 134, -1, 58, 108, 133, 133, 195, 134, 109, 171, 134, -1, 193, 58, 108, 133, 133, 195, 134, 109, 171, 134, -1, 59, 171, -1, 223, -1, 223, 305, -1, 223, 353, -1, 362, 138, -1, 362, -1, 63, 197, 108, 140, 109, 131, -1, 63, 197, 108, 140, 116, 198, 109, 131, -1, 63, 197, 108, 140, 116, 198, 116, 198, 109, 131, -1, 63, 197, 108, 140, 116, 198, 116, 198, 116, 201, 109, 131, -1, 63, 197, 50, 108, 140, 116, 116, 198, 116, 201, 116, 202, 109, 131, -1, -1, 11, -1, -1, 199, -1, 200, -1, 199, 115, 200, -1, 140, 108, 161, 109, -1, 110, 161, 111, 140, 108, 161, 109, -1, -1, 140, -1, 201, 115, 140, -1, 138, -1, 202, 115, 138, -1, 134, -1, 204, -1, 210, -1, 204, 133, 210, -1, 134, -1, 206, -1, 220, -1, 206, 133, 220, -1, -1, 208, -1, 28, 209, 131, -1, 208, 28, 209, 131, -1, 270, -1, 209, 115, 270, -1, 211, -1, 220, -1, 212, 134, 131, -1, 217, 134, 131, -1, 214, 134, 131, -1, 289, 134, 131, -1, 292, 134, 131, -1, 213, 273, -1, 229, 213, 273, -1, 212, 134, 115, 133, 268, 273, -1, 363, 268, 307, -1, 366, 268, 307, -1, 225, 366, 268, 307, -1, 215, -1, 225, 215, -1, 229, 215, -1, 229, 225, 215, -1, 214, 134, 115, 133, 268, -1, 110, 111, 268, 108, 133, 256, 134, 109, -1, 366, 268, 108, 133, 256, 134, 109, -1, 216, 268, 108, 133, 256, 134, 109, -1, 110, 133, 258, 134, 111, -1, 110, 133, 258, 134, 115, 133, 259, 134, 111, -1, 3, 213, -1, 3, 215, -1, 217, 134, 115, 133, 138, -1, 3, 223, 305, -1, 218, 134, 115, 133, 305, -1, 225, 3, 223, 305, -1, 223, 3, 305, -1, 223, 3, 225, 305, -1, 3, 138, 130, 162, -1, 219, 134, 115, 133, 138, 130, 162, -1, 221, 134, 131, -1, 218, 134, 131, -1, 219, 134, 131, -1, 238, 134, 131, -1, 222, 305, 307, 273, -1, 221, 115, 308, 305, 307, 273, -1, 234, -1, 238, -1, 240, -1, 279, -1, 235, -1, 239, -1, 241, -1, 280, -1, -1, 225, -1, 226, -1, 225, 226, -1, 227, -1, 310, -1, 10, -1, 12, -1, 11, -1, 14, -1, 66, -1, -1, 13, 108, 228, 282, 109, -1, 230, -1, 225, 230, -1, 229, 225, 230, -1, 231, -1, 230, 231, -1, 232, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 68, -1, 70, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 24, -1, 25, -1, 26, -1, 235, -1, 229, 235, -1, 234, 231, -1, 234, 231, 225, -1, 234, 231, 235, -1, 236, -1, 224, 237, 224, -1, 233, -1, 225, 233, -1, 236, 226, -1, 236, 233, -1, 27, 108, 272, 109, -1, 27, 108, 167, 109, -1, 77, 108, 272, 109, -1, 77, 108, 167, 109, -1, 239, -1, 229, 239, -1, 238, 231, -1, 238, 231, 225, -1, 242, -1, 225, 242, -1, 239, 226, -1, 241, -1, 229, 241, -1, 240, 231, -1, 240, 231, 225, -1, 73, -1, 225, 73, -1, 241, 226, -1, 243, -1, 253, -1, 244, 113, 245, 114, -1, 244, 270, -1, 244, 270, 113, 245, 114, -1, 244, 108, 288, 109, 113, 245, 114, -1, 244, 281, -1, 30, 308, -1, 31, 308, -1, 246, -1, 245, 246, -1, 247, 131, -1, 39, 247, 131, -1, 248, 131, -1, 39, 248, 131, -1, 362, -1, 362, 270, -1, 247, 115, 270, -1, 247, 115, -1, 223, 249, -1, 248, 115, 308, 249, -1, -1, 251, -1, 314, 250, -1, 327, 250, -1, 353, -1, -1, 251, -1, 116, 161, -1, 29, 308, -1, 252, 113, 254, 368, 114, -1, 252, 270, 113, 254, 368, 114, -1, 252, 270, -1, 270, 255, -1, 254, 115, 270, 255, -1, -1, 130, 161, -1, -1, 257, -1, 259, -1, 258, -1, 258, 134, 115, 133, 259, -1, 259, 134, 115, 133, 95, -1, 258, 134, 115, 133, 95, -1, 263, -1, 259, 134, 115, 133, 263, -1, 258, 134, 115, 133, 263, -1, 258, 134, 115, 133, 259, 134, 115, 133, 263, -1, 264, -1, 259, 134, 115, 133, 264, -1, -1, 261, -1, 262, -1, 262, 134, 115, 133, 95, -1, 266, -1, 265, -1, 262, 134, 115, 133, 266, -1, 262, 134, 115, 133, 265, -1, 265, -1, 358, 268, 369, -1, 366, 268, 369, -1, 225, 366, 268, 369, -1, 215, -1, 266, -1, 358, -1, 366, -1, 225, 366, -1, 367, -1, 222, 332, 369, -1, 222, 336, 369, -1, 222, -1, 222, 347, -1, 138, -1, 267, 115, 138, -1, 136, -1, 73, -1, 74, -1, 137, -1, 73, -1, 74, -1, 138, -1, 73, -1, 74, -1, 362, -1, 223, -1, 223, 353, -1, 362, -1, 367, -1, 223, -1, 223, 341, -1, -1, 130, 274, -1, 106, 274, -1, 162, -1, 113, 275, 368, 114, -1, -1, 274, -1, 276, 274, -1, 275, 115, 274, -1, 275, 115, 276, 274, -1, 277, 116, -1, 270, 116, -1, 278, -1, 277, 278, -1, 79, -1, 112, 270, -1, 110, 133, 162, 134, 111, -1, 110, 133, 306, 134, 111, -1, 110, 133, 161, 95, 161, 134, 111, -1, 112, 110, 133, 145, 134, 111, -1, 280, -1, 229, 280, -1, 279, 231, -1, 279, 231, 225, -1, 281, -1, 225, 281, -1, 280, 226, -1, 74, 108, 288, 109, -1, 283, 369, -1, 282, 115, 283, 369, -1, -1, 285, 270, 284, 286, -1, 223, 332, -1, 32, -1, 34, -1, 33, -1, -1, 286, 287, -1, 128, 270, 108, 288, 109, -1, 128, 113, 133, 294, 114, -1, 128, 108, 133, 282, 134, 109, 113, 133, 294, 114, 108, 288, 109, -1, 272, -1, 162, -1, 288, 115, 272, -1, 288, 115, 162, -1, 32, 290, -1, 230, 32, 290, -1, 289, 115, 290, -1, 291, 286, -1, 291, 286, 130, 272, -1, 270, -1, 269, 108, 133, 282, 134, 109, -1, 35, 270, 108, 133, 282, 134, 109, 113, 114, -1, -1, 35, 270, 108, 133, 282, 134, 109, 113, 293, 294, 114, -1, 295, -1, 294, 133, 295, -1, 296, 134, 131, -1, 297, 134, 131, -1, 213, -1, 215, -1, 296, 134, 115, 133, 268, -1, 223, 305, -1, 297, 134, 115, 133, 305, -1, -1, 299, -1, 301, -1, 299, 133, 301, -1, -1, 299, -1, 210, -1, 303, -1, 196, -1, -1, 5, 81, 302, 113, 300, 114, -1, 39, 301, -1, 304, -1, 319, 171, -1, 323, 133, 205, 171, -1, 214, 171, -1, 222, 319, 171, -1, 225, 319, 171, -1, 229, 319, 171, -1, 229, 225, 319, 171, -1, 222, 323, 133, 205, 171, -1, 225, 323, 133, 205, 171, -1, 229, 323, 133, 205, 171, -1, 229, 225, 323, 133, 205, 171, -1, 314, -1, 319, -1, 327, -1, 161, 122, 161, -1, -1, 63, 108, 140, 109, 308, -1, -1, 309, -1, 310, -1, 309, 310, -1, 38, 108, 108, 311, 109, 109, -1, 312, -1, 311, 115, 312, -1, -1, 313, -1, 313, 108, 168, 109, -1, 268, -1, 232, -1, 233, -1, 226, -1, 315, 308, -1, 316, -1, 317, 308, -1, 318, 308, -1, 136, -1, 108, 315, 109, -1, 118, 314, -1, 118, 225, 314, -1, 108, 316, 109, -1, 315, 345, -1, 108, 316, 109, 345, -1, 108, 317, 109, 346, -1, 108, 317, 109, -1, 108, 316, 109, 108, 133, 260, 134, 109, -1, 108, 318, 109, -1, 320, 308, -1, 321, -1, 322, 308, -1, 315, 108, 133, 260, 134, 109, -1, 108, 321, 109, 108, 133, 260, 134, 109, -1, 108, 320, 109, -1, 118, 319, -1, 118, 225, 319, -1, 108, 321, 109, -1, 108, 321, 109, 345, -1, 108, 322, 109, 346, -1, 108, 322, 109, -1, 324, -1, 325, -1, 326, -1, 315, 108, 267, 109, -1, 108, 325, 109, 108, 267, 109, -1, 108, 324, 109, -1, 118, 323, -1, 118, 225, 323, -1, 108, 325, 109, -1, 108, 325, 109, 345, -1, 108, 326, 109, 346, -1, 108, 326, 109, -1, 328, 308, -1, 329, -1, 330, 308, -1, 331, 308, -1, 337, -1, 108, 328, 109, -1, 118, 327, -1, 118, 225, 327, -1, 108, 329, 109, -1, 328, 345, -1, 108, 329, 109, 345, -1, 108, 330, 109, 346, -1, 108, 330, 109, -1, 328, 108, 133, 260, 134, 109, -1, 108, 329, 109, 108, 133, 260, 134, 109, -1, 108, 331, 109, -1, 315, 308, -1, 333, -1, 334, 308, -1, 335, 308, -1, 118, 332, -1, 118, 225, 332, -1, 108, 333, 109, -1, 315, 351, -1, 108, 333, 109, 345, -1, 108, 334, 109, 346, -1, 108, 334, 109, -1, 315, 108, 133, 260, 134, 109, -1, 108, 333, 109, 108, 133, 260, 134, 109, -1, 108, 335, 109, -1, 337, 308, -1, 338, -1, 339, 308, -1, 340, 308, -1, 73, -1, 74, -1, 118, 336, -1, 118, 225, 336, -1, 108, 338, 109, -1, 337, 351, -1, 108, 338, 109, 351, -1, 337, 108, 133, 260, 134, 109, -1, 108, 338, 109, 108, 133, 260, 134, 109, -1, 342, -1, 343, 308, -1, 344, 308, -1, 118, -1, 118, 225, -1, 118, 341, -1, 118, 225, 341, -1, 108, 342, 109, -1, 345, -1, 108, 342, 109, 345, -1, 108, 343, 109, 346, -1, 108, 343, 109, -1, 108, 133, 260, 134, 109, -1, 108, 342, 109, 108, 133, 260, 134, 109, -1, 108, 344, 109, -1, 110, 111, -1, 110, 111, 346, -1, 346, -1, 110, 133, 162, 134, 111, -1, 110, 133, 118, 134, 111, -1, 346, 110, 133, 162, 134, 111, -1, 346, 110, 133, 118, 134, 111, -1, 348, -1, 349, 308, -1, 350, 308, -1, 118, -1, 118, 225, -1, 118, 347, -1, 118, 225, 347, -1, 108, 348, 109, -1, 351, -1, 108, 348, 109, 351, -1, 108, 349, 109, 346, -1, 108, 349, 109, -1, 108, 133, 260, 134, 109, -1, 108, 348, 109, 108, 133, 260, 134, 109, -1, 108, 350, 109, -1, 352, -1, 352, 346, -1, 346, -1, 110, 111, -1, 110, 133, 225, 118, 134, 111, -1, 110, 133, 225, 134, 111, -1, 110, 133, 225, 162, 134, 111, -1, 110, 133, 7, 224, 162, 134, 111, -1, 110, 133, 225, 7, 162, 134, 111, -1, 354, -1, 355, 308, -1, 356, 308, -1, 118, -1, 118, 225, -1, 118, 353, -1, 118, 225, 353, -1, 108, 354, 109, -1, 345, -1, 108, 354, 109, 345, -1, 108, 355, 109, 346, -1, 108, 355, 109, -1, 108, 354, 109, 108, 133, 260, 134, 109, -1, 108, 356, 109, -1, 358, -1, 366, -1, 225, 366, -1, 359, -1, 360, -1, 118, 223, -1, 225, 118, 223, -1, 118, 367, -1, 225, 118, 367, -1, 118, 357, -1, 225, 118, 357, -1, 110, 111, 223, -1, 361, 223, -1, 110, 111, 346, 223, -1, 361, 346, 223, -1, 346, 223, -1, 110, 111, 359, -1, 361, 359, -1, 110, 111, 346, 359, -1, 361, 346, 359, -1, 346, 359, -1, 110, 133, 225, 118, 134, 111, -1, 110, 133, 225, 162, 134, 111, -1, 110, 133, 229, 162, 134, 111, -1, 110, 133, 229, 225, 162, 134, 111, -1, 366, -1, 225, 366, -1, 363, -1, 364, -1, 365, -1, 118, 223, -1, 225, 118, 223, -1, 118, 367, -1, 225, 118, 367, -1, 118, 362, -1, 225, 118, 362, -1, 110, 111, 223, -1, 110, 111, 346, 223, -1, 346, 223, -1, 110, 111, 364, -1, 110, 111, 346, 364, -1, 346, 364, -1, 110, 133, 259, 134, 111, -1, 110, 111, 108, 256, 109, -1, 366, 108, 133, 256, 134, 109, -1, 216, 108, 133, 256, 134, 109, -1, -1, 115, -1, -1, 130, 162, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 290, 290, 296, 305, 306, 307, 311, 312, 313, 317, 318, 323, 327, 328, 332, 333, 339, 341, 343, 345, 350, 351, 357, 359, 361, 362, 364, 365, 367, 369, 371, 379, 380, 386, 387, 388, 393, 395, 400, 401, 405, 407, 409, 411, 413, 418, 421, 423, 425, 427, 429, 431, 433, 435, 441, 443, 445, 447, 449, 451, 453, 455, 457, 462, 463, 464, 465, 469, 470, 472, 477, 478, 480, 482, 487, 488, 490, 495, 496, 498, 503, 504, 506, 508, 510, 515, 516, 518, 523, 524, 529, 530, 535, 536, 541, 542, 547, 548, 553, 554, 556, 558, 563, 568, 569, 571, 573, 579, 580, 586, 588, 590, 592, 597, 598, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 616, 617, 623, 624, 630, 631, 632, 633, 634, 635, 636, 637, 638, 647, 654, 656, 666, 667, 672, 674, 676, 678, 682, 683, 688, 693, 696, 698, 700, 705, 707, 715, 716, 718, 722, 723, 728, 729, 734, 735, 739, 744, 745, 749, 751, 757, 758, 762, 764, 766, 768, 774, 775, 779, 780, 784, 786, 788, 793, 795, 800, 802, 806, 809, 813, 816, 820, 822, 826, 828, 835, 837, 839, 848, 850, 852, 854, 856, 861, 863, 865, 867, 872, 885, 886, 891, 893, 898, 902, 904, 906, 908, 910, 916, 917, 923, 924, 928, 929, 934, 936, 942, 943, 945, 950, 952, 959, 961, 965, 966, 971, 973, 977, 978, 982, 984, 988, 989, 993, 994, 998, 999, 1014, 1015, 1016, 1017, 1018, 1022, 1027, 1034, 1044, 1049, 1054, 1062, 1067, 1072, 1077, 1082, 1090, 1112, 1117, 1124, 1126, 1133, 1138, 1143, 1154, 1159, 1164, 1169, 1174, 1183, 1188, 1196, 1197, 1198, 1199, 1205, 1210, 1218, 1219, 1220, 1221, 1225, 1226, 1227, 1228, 1233, 1234, 1243, 1244, 1249, 1250, 1255, 1257, 1259, 1261, 1263, 1266, 1265, 1277, 1278, 1280, 1290, 1291, 1296, 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1319, 1321, 1323, 1325, 1327, 1329, 1331, 1333, 1335, 1337, 1339, 1341, 1347, 1348, 1350, 1352, 1354, 1359, 1360, 1366, 1367, 1369, 1371, 1376, 1378, 1380, 1382, 1387, 1388, 1390, 1392, 1397, 1398, 1400, 1405, 1406, 1408, 1410, 1415, 1417, 1419, 1424, 1425, 1429, 1431, 1433, 1435, 1437, 1442, 1444, 1449, 1451, 1456, 1457, 1459, 1460, 1465, 1466, 1468, 1470, 1475, 1477, 1483, 1484, 1486, 1489, 1492, 1497, 1498, 1503, 1508, 1512, 1514, 1516, 1521, 1523, 1529, 1530, 1538, 1539, 1543, 1544, 1545, 1547, 1549, 1556, 1557, 1559, 1561, 1566, 1567, 1573, 1574, 1578, 1579, 1584, 1585, 1586, 1588, 1596, 1597, 1599, 1602, 1604, 1608, 1609, 1610, 1612, 1614, 1618, 1623, 1631, 1632, 1641, 1643, 1648, 1649, 1650, 1654, 1655, 1656, 1660, 1661, 1662, 1666, 1667, 1668, 1673, 1674, 1675, 1676, 1682, 1683, 1685, 1690, 1691, 1696, 1697, 1698, 1699, 1700, 1715, 1716, 1721, 1722, 1730, 1732, 1734, 1737, 1739, 1741, 1764, 1765, 1767, 1769, 1774, 1775, 1777, 1782, 1787, 1788, 1794, 1793, 1797, 1801, 1803, 1805, 1811, 1812, 1817, 1822, 1824, 1829, 1831, 1832, 1834, 1839, 1841, 1843, 1848, 1850, 1855, 1860, 1868, 1874, 1873, 1887, 1888, 1893, 1894, 1898, 1903, 1908, 1916, 1921, 1932, 1933, 1944, 1945, 1951, 1952, 1956, 1957, 1958, 1961, 1960, 1971, 1976, 1981, 1987, 1996, 2002, 2008, 2014, 2020, 2028, 2034, 2042, 2048, 2057, 2058, 2059, 2063, 2067, 2069, 2074, 2075, 2079, 2080, 2085, 2091, 2092, 2095, 2097, 2098, 2102, 2103, 2104, 2105, 2139, 2141, 2142, 2144, 2149, 2154, 2159, 2161, 2163, 2168, 2170, 2172, 2174, 2179, 2181, 2191, 2193, 2194, 2199, 2201, 2203, 2208, 2210, 2212, 2217, 2219, 2221, 2230, 2231, 2232, 2236, 2238, 2240, 2245, 2247, 2249, 2254, 2256, 2258, 2273, 2275, 2276, 2278, 2283, 2284, 2289, 2291, 2293, 2298, 2300, 2302, 2304, 2309, 2311, 2313, 2323, 2325, 2326, 2328, 2333, 2335, 2337, 2342, 2344, 2346, 2348, 2353, 2355, 2357, 2388, 2390, 2391, 2393, 2398, 2403, 2411, 2413, 2415, 2420, 2422, 2427, 2429, 2443, 2444, 2446, 2451, 2453, 2455, 2457, 2459, 2464, 2465, 2467, 2469, 2474, 2476, 2478, 2484, 2486, 2488, 2492, 2494, 2496, 2498, 2512, 2513, 2515, 2520, 2522, 2524, 2526, 2528, 2533, 2534, 2536, 2538, 2543, 2545, 2547, 2553, 2554, 2556, 2565, 2568, 2570, 2573, 2575, 2577, 2590, 2591, 2593, 2598, 2600, 2602, 2604, 2606, 2611, 2612, 2614, 2616, 2621, 2623, 2631, 2632, 2633, 2638, 2639, 2643, 2645, 2647, 2649, 2651, 2653, 2660, 2662, 2664, 2666, 2668, 2670, 2672, 2674, 2676, 2678, 2683, 2685, 2687, 2692, 2718, 2719, 2721, 2725, 2726, 2730, 2732, 2734, 2736, 2738, 2740, 2747, 2749, 2751, 2753, 2755, 2757, 2762, 2767, 2769, 2771, 2789, 2791, 2796, 2797 }; #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", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "TYPE", "FTYPE", "DTYPE", "CONTEXT", "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", "FLOATINGconstant", "CHARACTERconstant", "STRINGliteral", "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_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "unary_expression", "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", "tuple", "tuple_expression_list", "assignment_operator", "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", "storage_class_name", "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", "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", "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", "$@2", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "context_specifier", "$@3", "context_declaration_list", "context_declaration", "new_context_declaring_list", "context_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@4", "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", "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, 40, 41, 91, 93, 46, 123, 125, 44, 58, 33, 42, 38, 43, 45, 126, 47, 37, 60, 62, 94, 124, 63, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 132, 133, 134, 135, 135, 135, 136, 136, 136, 137, 137, 138, 139, 139, 140, 140, 141, 141, 141, 141, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 143, 143, 144, 144, 144, 144, 144, 145, 145, 146, 146, 146, 146, 146, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 148, 148, 148, 148, 149, 149, 149, 150, 150, 150, 150, 151, 151, 151, 152, 152, 152, 153, 153, 153, 153, 153, 154, 154, 154, 155, 155, 156, 156, 157, 157, 158, 158, 159, 159, 160, 160, 160, 160, 161, 162, 162, 162, 162, 163, 163, 164, 164, 164, 164, 165, 165, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 167, 167, 168, 168, 169, 169, 169, 169, 169, 169, 169, 169, 169, 170, 171, 171, 172, 172, 173, 173, 173, 173, 174, 174, 175, 176, 176, 176, 176, 176, 176, 177, 177, 177, 178, 178, 179, 179, 180, 180, 181, 182, 182, 183, 183, 184, 184, 185, 185, 185, 185, 186, 186, 187, 187, 188, 188, 188, 189, 189, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 191, 191, 191, 192, 192, 192, 192, 192, 193, 193, 193, 193, 194, 195, 195, 195, 195, 195, 196, 196, 196, 196, 196, 197, 197, 198, 198, 199, 199, 200, 200, 201, 201, 201, 202, 202, 203, 203, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 211, 211, 211, 212, 212, 212, 213, 213, 213, 214, 214, 214, 214, 214, 215, 215, 215, 216, 216, 217, 217, 217, 218, 218, 218, 218, 218, 219, 219, 220, 220, 220, 220, 221, 221, 222, 222, 222, 222, 223, 223, 223, 223, 224, 224, 225, 225, 226, 226, 227, 227, 227, 227, 227, 228, 227, 229, 229, 229, 230, 230, 231, 232, 232, 232, 232, 232, 232, 232, 232, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 234, 234, 234, 234, 234, 235, 235, 236, 236, 236, 236, 237, 237, 237, 237, 238, 238, 238, 238, 239, 239, 239, 240, 240, 240, 240, 241, 241, 241, 242, 242, 243, 243, 243, 243, 243, 244, 244, 245, 245, 246, 246, 246, 246, 247, 247, 247, 247, 248, 248, 249, 249, 249, 249, 249, 250, 250, 251, 252, 253, 253, 253, 254, 254, 255, 255, 256, 256, 257, 257, 257, 257, 257, 258, 258, 258, 258, 259, 259, 260, 260, 261, 261, 262, 262, 262, 262, 263, 263, 263, 263, 263, 264, 264, 264, 264, 264, 265, 265, 266, 266, 267, 267, 268, 268, 268, 269, 269, 269, 270, 270, 270, 271, 271, 271, 272, 272, 272, 272, 273, 273, 273, 274, 274, 275, 275, 275, 275, 275, 276, 276, 277, 277, 278, 278, 278, 278, 278, 278, 279, 279, 279, 279, 280, 280, 280, 281, 282, 282, 284, 283, 283, 285, 285, 285, 286, 286, 287, 287, 287, 288, 288, 288, 288, 289, 289, 289, 290, 290, 291, 291, 292, 293, 292, 294, 294, 295, 295, 296, 296, 296, 297, 297, 298, 298, 299, 299, 300, 300, 301, 301, 301, 302, 301, 301, 303, 303, 303, 304, 304, 304, 304, 304, 304, 304, 304, 304, 305, 305, 305, 306, 307, 307, 308, 308, 309, 309, 310, 311, 311, 312, 312, 312, 313, 313, 313, 313, 314, 314, 314, 314, 315, 315, 316, 316, 316, 317, 317, 317, 317, 318, 318, 319, 319, 319, 320, 320, 320, 321, 321, 321, 322, 322, 322, 323, 323, 323, 324, 324, 324, 325, 325, 325, 326, 326, 326, 327, 327, 327, 327, 328, 328, 329, 329, 329, 330, 330, 330, 330, 331, 331, 331, 332, 332, 332, 332, 333, 333, 333, 334, 334, 334, 334, 335, 335, 335, 336, 336, 336, 336, 337, 337, 338, 338, 338, 339, 339, 340, 340, 341, 341, 341, 342, 342, 342, 342, 342, 343, 343, 343, 343, 344, 344, 344, 345, 345, 345, 346, 346, 346, 346, 347, 347, 347, 348, 348, 348, 348, 348, 349, 349, 349, 349, 350, 350, 350, 351, 351, 351, 352, 352, 352, 352, 352, 352, 353, 353, 353, 354, 354, 354, 354, 354, 355, 355, 355, 355, 356, 356, 357, 357, 357, 358, 358, 359, 359, 359, 359, 359, 359, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 361, 361, 361, 361, 362, 362, 362, 363, 363, 364, 364, 364, 364, 364, 364, 365, 365, 365, 365, 365, 365, 366, 367, 367, 367, 368, 368, 369, 369 }; /* 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, 2, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 3, 7, 9, 1, 3, 1, 3, 7, 3, 7, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 4, 6, 1, 4, 4, 2, 4, 2, 1, 1, 1, 1, 1, 4, 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, 5, 1, 1, 3, 3, 2, 0, 1, 2, 5, 6, 7, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 8, 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, 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, 5, 7, 2, 2, 2, 1, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 6, 2, 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, 1, 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, 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[] = { 293, 293, 314, 312, 315, 313, 316, 317, 299, 301, 300, 0, 302, 328, 320, 325, 323, 324, 322, 321, 326, 327, 329, 330, 331, 545, 545, 545, 0, 0, 0, 293, 219, 303, 318, 319, 7, 358, 0, 8, 13, 14, 0, 2, 293, 563, 9, 523, 521, 246, 3, 451, 3, 259, 0, 3, 3, 3, 247, 3, 0, 0, 0, 294, 295, 297, 293, 306, 309, 311, 339, 285, 332, 337, 286, 347, 287, 354, 351, 361, 0, 0, 362, 288, 471, 475, 3, 3, 0, 2, 517, 522, 527, 298, 0, 0, 545, 575, 545, 2, 586, 587, 588, 293, 0, 729, 730, 0, 12, 293, 0, 269, 270, 0, 294, 289, 290, 291, 292, 524, 304, 390, 546, 547, 368, 369, 12, 442, 443, 11, 438, 441, 0, 501, 496, 487, 442, 443, 0, 0, 526, 220, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 293, 293, 2, 0, 731, 294, 580, 592, 735, 728, 726, 733, 0, 0, 0, 253, 2, 0, 530, 436, 437, 435, 0, 0, 0, 0, 545, 0, 632, 633, 0, 0, 543, 539, 545, 560, 545, 545, 540, 2, 541, 545, 599, 545, 545, 602, 0, 0, 0, 293, 293, 312, 359, 2, 293, 260, 296, 307, 340, 352, 476, 0, 2, 0, 451, 261, 294, 333, 348, 355, 472, 0, 2, 0, 310, 334, 341, 342, 0, 349, 353, 356, 360, 443, 293, 293, 364, 367, 0, 393, 473, 477, 0, 0, 0, 1, 293, 2, 528, 574, 576, 293, 2, 739, 294, 742, 543, 543, 294, 0, 0, 0, 272, 545, 540, 2, 293, 0, 0, 293, 548, 2, 499, 2, 552, 0, 0, 0, 0, 0, 0, 17, 58, 4, 5, 6, 15, 0, 0, 0, 293, 2, 0, 293, 64, 65, 66, 67, 47, 18, 48, 21, 46, 68, 0, 71, 75, 78, 81, 86, 89, 91, 93, 95, 97, 99, 104, 493, 749, 449, 492, 0, 447, 448, 0, 564, 579, 582, 585, 591, 594, 597, 358, 0, 2, 737, 0, 293, 740, 2, 293, 3, 423, 0, 431, 294, 293, 306, 332, 286, 347, 354, 3, 3, 405, 409, 419, 424, 471, 293, 425, 704, 705, 293, 426, 428, 293, 2, 581, 593, 727, 2, 2, 248, 2, 456, 0, 454, 453, 452, 140, 2, 2, 250, 2, 2, 249, 2, 280, 2, 281, 0, 279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 565, 604, 0, 451, 2, 559, 568, 658, 561, 562, 531, 293, 2, 598, 607, 600, 601, 0, 275, 293, 293, 338, 294, 0, 294, 0, 293, 732, 736, 734, 532, 293, 543, 254, 262, 308, 0, 2, 533, 293, 497, 335, 336, 282, 350, 357, 0, 293, 2, 382, 293, 370, 0, 0, 376, 726, 293, 747, 396, 0, 474, 498, 251, 252, 518, 293, 433, 0, 293, 236, 0, 2, 238, 0, 294, 0, 256, 2, 257, 277, 0, 0, 2, 293, 543, 293, 484, 486, 485, 0, 0, 749, 0, 293, 0, 293, 488, 293, 558, 556, 557, 555, 0, 550, 553, 0, 0, 293, 55, 293, 68, 51, 293, 61, 293, 293, 49, 50, 63, 2, 126, 0, 0, 445, 0, 444, 110, 293, 53, 54, 16, 0, 28, 29, 34, 2, 0, 34, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 0, 0, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 2, 644, 450, 641, 545, 545, 649, 478, 293, 2, 583, 584, 0, 595, 596, 0, 2, 738, 741, 110, 293, 2, 293, 0, 706, 294, 710, 701, 702, 708, 0, 2, 2, 666, 545, 749, 615, 545, 545, 749, 545, 629, 545, 545, 680, 432, 663, 545, 545, 671, 678, 293, 427, 294, 0, 0, 293, 716, 294, 721, 749, 713, 293, 718, 749, 293, 293, 293, 0, 110, 0, 17, 5, 2, 0, 0, 457, 747, 0, 0, 463, 240, 0, 293, 0, 0, 0, 543, 567, 571, 573, 603, 606, 610, 613, 566, 605, 0, 283, 656, 0, 293, 276, 0, 0, 0, 0, 274, 2, 0, 258, 534, 293, 0, 0, 0, 0, 293, 293, 0, 0, 690, 380, 383, 387, 545, 387, 695, 386, 687, 545, 545, 363, 371, 379, 372, 545, 374, 377, 293, 748, 0, 0, 394, 747, 294, 3, 412, 3, 416, 415, 589, 0, 529, 293, 3, 3, 293, 431, 294, 3, 425, 426, 2, 0, 0, 0, 483, 305, 293, 479, 481, 3, 2, 2, 0, 500, 3, 0, 552, 128, 0, 0, 221, 0, 0, 0, 2, 0, 0, 35, 0, 0, 110, 293, 19, 0, 20, 0, 690, 446, 0, 108, 3, 2, 26, 2, 0, 32, 0, 2, 24, 0, 105, 106, 72, 73, 74, 76, 77, 79, 80, 84, 85, 82, 83, 87, 88, 90, 92, 94, 96, 98, 0, 0, 750, 293, 0, 0, 0, 645, 646, 642, 643, 495, 494, 293, 0, 3, 293, 712, 293, 717, 294, 293, 293, 293, 660, 703, 659, 2, 293, 0, 0, 0, 0, 0, 0, 0, 0, 681, 0, 667, 618, 634, 668, 2, 614, 621, 429, 616, 617, 430, 2, 628, 637, 630, 631, 664, 665, 679, 707, 711, 709, 749, 267, 2, 743, 2, 420, 715, 720, 421, 0, 399, 3, 3, 3, 3, 451, 3, 0, 2, 466, 462, 748, 0, 458, 465, 2, 461, 464, 0, 293, 241, 263, 3, 271, 273, 0, 451, 2, 569, 570, 2, 608, 609, 0, 657, 535, 3, 344, 343, 346, 345, 293, 536, 0, 537, 293, 373, 375, 2, 0, 0, 0, 0, 103, 389, 691, 692, 384, 388, 385, 688, 689, 378, 382, 365, 396, 391, 397, 0, 0, 0, 434, 239, 0, 0, 3, 2, 666, 427, 0, 525, 0, 749, 487, 0, 293, 293, 293, 0, 549, 551, 129, 0, 0, 214, 0, 0, 0, 222, 223, 56, 0, 62, 293, 0, 60, 59, 0, 127, 691, 456, 69, 70, 109, 114, 3, 108, 0, 0, 0, 23, 34, 3, 0, 31, 101, 0, 3, 648, 652, 655, 647, 3, 590, 3, 714, 719, 2, 293, 3, 3, 294, 0, 3, 620, 624, 627, 636, 670, 674, 677, 293, 3, 619, 635, 669, 293, 293, 422, 293, 293, 744, 0, 0, 0, 0, 255, 0, 103, 0, 3, 3, 0, 459, 0, 455, 0, 0, 244, 293, 0, 0, 128, 0, 0, 0, 0, 0, 128, 0, 0, 108, 108, 2, 0, 0, 0, 3, 130, 131, 2, 142, 132, 133, 134, 135, 136, 137, 144, 146, 0, 0, 0, 284, 293, 293, 545, 0, 538, 293, 110, 694, 698, 700, 693, 381, 395, 392, 577, 2, 662, 661, 0, 667, 2, 480, 482, 502, 3, 510, 511, 0, 2, 506, 3, 3, 0, 0, 554, 221, 0, 0, 0, 221, 0, 0, 3, 36, 747, 108, 0, 3, 659, 41, 3, 39, 3, 33, 0, 3, 100, 102, 0, 2, 650, 651, 0, 0, 293, 0, 0, 0, 3, 636, 0, 2, 622, 623, 2, 638, 2, 672, 673, 0, 0, 3, 0, 3, 3, 3, 3, 407, 406, 410, 2, 2, 746, 745, 111, 0, 0, 0, 0, 3, 460, 3, 0, 242, 145, 3, 294, 293, 0, 0, 0, 0, 2, 190, 0, 188, 0, 0, 0, 0, 0, 0, 0, 0, 110, 0, 545, 150, 147, 293, 0, 0, 266, 278, 3, 3, 544, 611, 366, 2, 696, 697, 293, 265, 293, 0, 513, 490, 293, 0, 0, 489, 504, 0, 0, 0, 215, 0, 224, 57, 108, 0, 0, 115, 112, 0, 0, 0, 0, 0, 0, 22, 0, 653, 293, 578, 264, 722, 723, 724, 0, 675, 293, 293, 293, 3, 3, 0, 683, 0, 0, 0, 0, 293, 293, 3, 542, 467, 468, 0, 0, 245, 294, 0, 0, 0, 0, 293, 191, 189, 0, 186, 192, 0, 0, 0, 0, 196, 199, 197, 193, 0, 194, 34, 128, 143, 141, 243, 0, 0, 293, 414, 418, 417, 0, 507, 2, 508, 2, 509, 503, 293, 227, 0, 225, 0, 227, 3, 659, 30, 113, 2, 44, 2, 42, 40, 27, 111, 25, 3, 725, 3, 3, 3, 0, 0, 682, 684, 625, 639, 268, 2, 404, 3, 403, 0, 470, 467, 128, 0, 0, 128, 3, 0, 128, 187, 0, 2, 2, 208, 198, 0, 0, 0, 0, 139, 572, 612, 3, 2, 0, 0, 2, 228, 0, 0, 216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 685, 686, 293, 0, 469, 151, 0, 0, 2, 164, 128, 153, 0, 181, 0, 128, 0, 2, 155, 0, 2, 0, 2, 2, 2, 195, 31, 0, 293, 512, 514, 505, 0, 0, 0, 0, 113, 37, 3, 3, 654, 626, 640, 676, 408, 128, 157, 160, 0, 159, 163, 3, 166, 165, 0, 128, 183, 128, 3, 0, 293, 0, 293, 0, 2, 0, 2, 138, 699, 2, 229, 230, 0, 226, 217, 0, 0, 0, 152, 0, 0, 162, 232, 167, 2, 234, 182, 0, 185, 171, 200, 3, 209, 213, 202, 3, 0, 293, 0, 293, 0, 0, 0, 38, 45, 43, 158, 161, 128, 0, 168, 293, 128, 128, 0, 172, 0, 0, 690, 210, 211, 212, 0, 201, 3, 203, 3, 293, 218, 231, 148, 169, 154, 128, 235, 184, 179, 177, 173, 156, 128, 0, 691, 0, 0, 0, 0, 149, 170, 180, 174, 178, 177, 175, 3, 3, 0, 0, 491, 176, 204, 206, 3, 3, 205, 207 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 837, 473, 300, 45, 130, 131, 301, 302, 303, 304, 783, 784, 1144, 1145, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 1049, 524, 994, 320, 995, 553, 971, 1076, 1540, 1078, 1079, 1080, 1081, 1541, 1082, 1083, 1457, 1458, 1419, 1420, 1421, 1519, 1520, 1524, 1525, 1560, 1561, 1084, 1377, 1085, 1086, 1311, 1312, 1313, 1501, 1087, 142, 977, 978, 979, 1398, 1482, 1493, 1494, 474, 475, 899, 900, 1057, 48, 49, 50, 51, 52, 344, 155, 55, 56, 57, 58, 59, 346, 61, 62, 260, 64, 65, 271, 348, 349, 68, 69, 70, 71, 115, 73, 201, 351, 116, 76, 117, 78, 79, 80, 454, 455, 456, 457, 698, 937, 699, 81, 82, 461, 719, 879, 880, 354, 355, 722, 723, 724, 356, 357, 358, 359, 471, 338, 132, 133, 528, 322, 167, 652, 653, 654, 655, 656, 83, 118, 85, 494, 495, 963, 496, 274, 500, 323, 86, 134, 135, 87, 1335, 1122, 1123, 1124, 1125, 88, 89, 740, 90, 270, 91, 92, 184, 1051, 686, 409, 122, 93, 506, 507, 508, 185, 265, 187, 188, 189, 266, 96, 97, 98, 99, 100, 101, 102, 192, 193, 194, 195, 196, 849, 612, 613, 614, 615, 197, 617, 618, 619, 578, 579, 580, 581, 703, 103, 621, 622, 623, 624, 625, 626, 936, 705, 706, 707, 602, 362, 363, 364, 365, 324, 161, 105, 106, 107, 367, 717, 575 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1361 static const yytype_int16 yypact[] = { 5174, 7512, -1361, 10, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 37, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 161, 161, 161, 843, 859, 111, 6821, 221, -1361, -1361, -1361, -1361, -1361, 155, -1361, -1361, -1361, 987, 163, 5874, -1361, -1361, -1361, -1361, -1361, -1361, 81, 209, -1361, 1199, -1361, -1361, -1361, -1361, 238, 1088, 380, 99, 6937, -1361, -1361, 8924, 1148, -1361, -1361, -1361, 839, 388, 3333, 858, 581, 839, 1265, -1361, -1361, 94, 172, -1361, 839, 1598, -1361, 279, -1361, 402, 444, -1361, -1361, -1361, -1361, 325, 209, 161, -1361, 161, -1361, -1361, -1361, -1361, 9179, 1199, -1361, -1361, 1199, -1361, 9261, 326, -1361, -1361, 1806, 9290, -1361, 1135, 1135, 1135, -1361, -1361, -1361, 161, -1361, -1361, -1361, 435, 468, 557, -1361, -1361, -1361, 560, -1361, -1361, -1361, -1361, -1361, 574, 602, -1361, -1361, 89, 8398, 1214, 400, 470, 528, 617, 620, 687, 694, 7699, 6228, 708, 720, -1361, 8962, -1361, -1361, -1361, -1361, 741, -1361, 358, 3979, 3979, -1361, 755, 371, -1361, -1361, -1361, -1361, 777, 379, 382, 389, 161, 751, -1361, -1361, 1088, 2653, 834, -1361, 15, -1361, 161, 161, 209, -1361, -1361, 199, -1361, 161, 161, -1361, 3078, 802, 811, 1135, 6378, -1361, -1361, 832, 5874, -1361, -1361, 839, -1361, -1361, -1361, 209, -1361, 1199, 81, -1361, 7363, -1361, 1135, 1135, 1135, 209, -1361, 843, -1361, 6024, -1361, -1361, 816, 1135, -1361, 1135, -1361, 155, 8398, 8428, 851, -1361, 859, 880, 1135, -1361, 843, 884, 897, -1361, 6821, 961, -1361, -1361, -1361, 8857, -1361, -1361, 5093, -1361, 834, 72, 9290, 10300, 1806, 3078, -1361, 253, -1361, -1361, 9261, 1199, 922, 6966, -1361, -1361, 355, -1361, 10631, 941, 965, 4235, 955, 4451, 10454, -1361, 973, -1361, -1361, -1361, -1361, 10512, 10512, 961, 8059, 962, 4451, 8511, -1361, -1361, -1361, -1361, -1361, -1361, 1002, -1361, 567, 2174, 4451, -1361, 357, 484, 568, 283, 719, 968, 967, 964, 996, 246, -1361, -1361, 966, 472, -1361, 270, -1361, -1361, 1214, -1361, -1361, 446, 989, -1361, 504, 989, 995, 155, -1361, -1361, 1003, 9179, -1361, 1004, 8172, -1361, -1361, 747, 1701, 7781, 6378, 839, -1361, 839, 1135, 1135, -1361, -1361, -1361, -1361, -1361, -1361, 1135, 9328, 1199, -1361, -1361, 9399, 1399, -1361, 8549, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 1015, 5239, 4451, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 1806, -1361, 793, 1019, 1025, 1026, 863, 1028, 1031, 1032, 2653, -1361, -1361, 1005, 81, 1039, -1361, -1361, 1033, -1361, -1361, -1361, 8857, -1361, -1361, -1361, -1361, -1361, 3078, -1361, 8398, 8398, -1361, 1135, 1806, 6497, 1199, 7852, -1361, -1361, -1361, -1361, 8857, 72, -1361, -1361, 839, 209, -1361, -1361, 8857, -1361, 6143, -1361, -1361, 1135, 1135, 375, 9437, 1053, 1568, 8775, -1361, 433, 442, 859, -1361, 8428, 1050, 1037, 859, 1135, -1361, -1361, -1361, -1361, 9692, -1361, 526, 6259, -1361, 209, 1055, -1361, 1806, 10712, 10358, -1361, -1361, -1361, -1361, 867, 3078, -1361, 7923, 834, 6705, -1361, -1361, -1361, 1562, 529, 966, 859, 6966, 285, 9261, -1361, 6966, -1361, -1361, -1361, -1361, 613, -1361, 1067, 965, 260, 8059, -1361, 9437, -1361, -1361, 8059, -1361, 8285, 8059, -1361, -1361, -1361, 1065, -1361, 616, 1068, 590, 1070, -1361, 4969, 5843, -1361, -1361, -1361, 79, -1361, -1361, 10377, -1361, 173, 10377, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 10300, 10300, -1361, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4451, 4825, 10300, -1361, 472, 707, -1361, -1361, 161, 161, -1361, -1361, 8398, -1361, -1361, 1033, 961, -1361, 1033, 10435, -1361, -1361, -1361, 8886, 5843, 1071, 8624, 1073, -1361, 9466, -1361, -1361, 741, -1361, 1074, 817, 1080, 2410, 289, 966, -1361, 161, 161, 966, 329, -1361, 161, 161, 1033, -1361, -1361, 161, 161, -1361, 989, 9548, 1199, 10855, 627, 641, 9548, -1361, 6736, -1361, 966, -1361, 9328, -1361, 212, 7478, 7478, 7478, 1199, -1361, 10223, 1076, 366, 1015, 264, 1077, -1361, 1066, 3979, 524, -1361, 1167, 1199, 7478, 961, 1806, 961, 834, 732, 989, -1361, -1361, 762, 989, -1361, -1361, -1361, 965, -1361, 989, 209, 9692, -1361, 625, 1090, 646, 1095, -1361, 1086, 209, -1361, -1361, 8857, 209, 1092, 471, 485, 9577, 6347, 1714, 4451, 2851, -1361, -1361, 1091, 93, 1091, -1361, -1361, -1361, 161, 161, -1361, -1361, 859, -1361, 161, -1361, -1361, 9111, 859, 1096, 4451, -1361, 1050, 10855, -1361, -1361, 1103, -1361, -1361, -1361, 961, -1361, 10784, 4451, -1361, 7478, 606, 7781, -1361, -1361, 741, 1105, 1107, 1562, 3179, -1361, -1361, 6966, -1361, -1361, 1102, -1361, -1361, 1121, -1361, 1102, 1114, 10631, 10300, 273, 1099, 56, 1122, 1118, 1125, 962, 1119, 1127, -1361, 1130, 1134, 8315, 5990, -1361, 10300, -1361, 590, 1176, -1361, 10242, 10300, 1129, -1361, -1361, 1015, 670, -1361, 10300, -1361, -1361, 824, -1361, -1361, -1361, -1361, -1361, 357, 357, 484, 484, 568, 568, 568, 568, 283, 283, 719, 968, 967, 964, 996, 4451, 852, -1361, 9692, 1136, 1139, 1141, 707, -1361, -1361, -1361, -1361, -1361, 9692, 675, 4451, 7478, -1361, 9328, -1361, 6466, 8737, 8662, 6228, -1361, -1361, -1361, 817, 9692, 882, 1147, 1149, 1154, 1158, 1162, 1178, 1181, -1361, 7167, 2410, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 1033, -1361, -1361, -1361, 966, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 1182, -1361, 1183, 1184, -1361, -1361, 81, 1129, 10223, -1361, -1361, -1361, 5239, 1186, -1361, -1361, -1361, -1361, -1361, 859, 5411, 1267, -1361, -1361, -1361, -1361, 1171, 81, -1361, -1361, 1033, -1361, -1361, 1033, 53, 1033, -1361, -1361, -1361, -1361, -1361, -1361, 9000, -1361, 209, -1361, 8428, -1361, -1361, 1193, 894, 1196, 1200, 1201, -1361, -1361, 2851, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 1568, -1361, 1037, -1361, -1361, 1194, 1202, 1203, -1361, -1361, 1204, 1208, -1361, 606, 1611, -1361, 648, -1361, 3179, 966, -1361, 1205, 6966, 9615, 8398, 1211, -1361, -1361, 1213, 1220, 1207, -1361, 4451, 125, 216, 1218, -1361, 1222, 961, 1222, 5843, 10300, -1361, -1361, 1222, -1361, 1176, 5239, -1361, -1361, -1361, -1361, 1221, 10300, 1226, 961, 10223, -1361, 10377, -1361, 961, -1361, -1361, 10300, -1361, 803, 989, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 1015, 8172, -1361, -1361, 6585, 1229, -1361, 836, 989, -1361, 928, 932, 989, -1361, 1135, 7244, -1361, -1361, -1361, 9692, 9692, -1361, 7852, 7852, -1361, 1224, 1225, 1233, 1234, -1361, 1238, 649, 147, 1129, -1361, 961, -1361, 3979, -1361, 10300, 492, -1361, 5724, 1236, 1242, 10095, 1246, 1248, 1, 51, 18, 10300, 1250, 209, 10300, 10300, 1249, 145, 1253, 1231, -1361, -1361, -1361, 1259, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 859, 1266, 10300, -1361, 9692, 9692, 161, 1269, -1361, 9149, 9038, 935, 989, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 1271, 1611, -1361, -1361, 1254, -1361, 1102, -1361, -1361, 1806, 1272, -1361, -1361, -1361, 677, 1268, -1361, 56, 1277, 4451, 1258, 56, 56, 1281, 1276, -1361, 1066, 10300, 1287, 1221, 764, 58, 1284, -1361, 1276, -1361, 1290, 1284, -1361, -1361, 1293, -1361, -1361, 1033, 1296, 1298, 6109, 1301, 1302, 1305, -1361, -1361, 1309, -1361, -1361, 1033, -1361, -1361, -1361, -1361, 1033, 10300, 10300, 4451, 1311, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 4451, 4451, 1312, 1315, 1284, -1361, -1361, 859, -1361, -1361, -1361, 7126, 9615, 10300, 10300, 1384, 10300, -1361, -1361, 1300, -1361, 1306, 10300, 1310, 1316, 10300, 954, 1318, 50, 8202, 875, 161, -1361, -1361, 5411, 1319, 498, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 1033, 10219, -1361, 7923, 1323, -1361, -1361, 9615, 502, 527, -1361, 1322, 1327, 965, 1337, -1361, 287, -1361, -1361, 10300, 1340, 1338, -1361, -1361, 1342, 178, 188, 961, 1344, 1347, -1361, 1349, -1361, 9692, -1361, -1361, -1361, -1361, -1361, 1352, -1361, 9692, 9692, 9692, -1361, -1361, 1356, -1361, 1357, 1360, 1362, 661, 7551, 7666, -1361, -1361, 437, -1361, 1364, 1365, -1361, 7994, 679, 699, 1369, 717, 5593, -1361, -1361, 559, -1361, -1361, 718, 1370, 1371, 209, 1425, 951, -1361, -1361, 10300, -1361, 10377, 10095, -1361, -1361, -1361, 1376, 1382, 9692, -1361, -1361, -1361, 1379, -1361, -1361, -1361, -1361, -1361, -1361, 9615, 965, 262, -1361, 1368, 965, 1221, 334, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 1381, -1361, -1361, -1361, -1361, -1361, -1361, 1389, 1392, -1361, -1361, -1361, -1361, -1361, -1361, -1361, 1396, -1361, 1397, -1361, -1361, 10095, 75, 10300, 10095, -1361, 1400, 10300, -1361, 97, 1419, 1424, -1361, -1361, 1407, 1412, 1390, 938, -1361, -1361, -1361, -1361, -1361, 1199, 1806, 1409, 1002, 952, 4451, -1361, 759, 1414, 10300, 961, 961, 1417, 1423, 1426, 1427, -1361, -1361, 7852, 1413, -1361, 1492, 4451, 1429, -1361, -1361, 10006, -1361, 771, -1361, 1408, 10095, 1410, -1361, -1361, 1439, -1361, 1447, -1361, 1463, 1465, -1361, 1431, 1454, 9615, -1361, -1361, -1361, 965, 961, 1456, 1435, 1451, -1361, 1284, 1284, -1361, -1361, -1361, -1361, -1361, 10095, 316, -1361, 956, -1361, -1361, 4664, -1361, -1361, 1438, 10300, -1361, 10300, 4664, 209, 9437, 209, 9437, 1461, -1361, 1462, -1361, -1361, -1361, 1458, 1002, -1361, 774, -1361, -1361, 10300, 1467, 1471, -1361, 4451, 4451, -1361, -1361, 1042, 57, -1361, -1361, 1442, -1361, 1042, -1361, -1361, 1766, 961, -1361, -1361, 209, 9437, 209, 9437, 1466, 1445, 961, -1361, -1361, -1361, -1361, -1361, 10006, 1469, 1042, 7053, 10300, 9917, 1473, 1042, 1479, 1766, 2991, -1361, -1361, -1361, 1480, -1361, -1361, -1361, -1361, 8398, -1361, -1361, -1361, 9824, -1361, 10006, -1361, -1361, 1475, 9731, -1361, -1361, 9917, 209, 2991, 209, 1482, 1485, 778, -1361, 9824, -1361, -1361, -1361, 9731, -1361, -1361, -1361, 209, 209, -1361, -1361, -1361, -1361, -1361, -1361, -1361, -1361 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1361, 3544, 970, -1361, 20, -1361, -1, 2, -74, -1361, 522, -526, -500, -936, -243, 4577, -1361, 1460, 543, 548, 295, 553, 1034, 1038, 1043, 1048, 1057, -1361, -51, -392, 4234, -943, -738, -935, -1361, -249, -735, -441, -1361, 365, -1361, 391, -1096, -1361, -1361, 130, -1361, -1360, -1063, 247, -1361, -1361, -1361, -1361, 70, -1089, -1361, -1361, -1361, -1361, -1361, -1361, 323, -1158, 73, -1361, -340, -1361, 501, 308, -1361, 184, -1361, -322, -1361, -1361, -1361, 564, -756, -1361, -1361, 12, -1009, 192, 2073, -1361, -1361, -1361, -15, -1361, 83, 109, -196, 768, 3404, -1361, -1361, 205, 194, 733, -239, 1824, -1361, 1487, -1361, -1361, 107, 1870, -1361, 2141, 1985, -1361, -1361, -425, -428, 1206, 1210, 713, 957, 377, -1361, -1361, 1195, 723, -403, -1361, -227, 263, 1518, -1361, -1361, -988, -991, -146, 1115, 1075, 26, -1361, 1505, 190, -245, -193, -158, 681, 781, -1361, 1010, -1361, 2162, 1169, -442, 924, -1361, -1361, 711, -1361, -230, -1361, 137, -1361, -1361, -1361, -1237, 439, -1361, -1361, -1361, 1190, -1361, 86, -1361, -1361, -871, -43, -1329, -102, 3071, -1361, 3370, -1361, 927, -1361, -173, 505, -181, -170, -166, 3, -38, -33, -31, 1420, 16, 33, 44, -169, -160, -157, -151, -142, -329, -550, -528, -519, -571, -327, -523, -1361, -1361, -506, 1109, 1117, 1120, 1366, 3814, -567, -543, -531, -530, -562, -1361, -358, -675, -671, -666, -600, 354, -320, -1361, -1361, 235, 558, -67, -1361, 3073, 151, -623, -463 }; /* 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 -521 static const yytype_int16 yytable[] = { 110, 396, 46, 95, 146, 425, 450, 380, 381, 147, 404, 148, 397, 111, 405, 788, 398, 611, 765, 616, 930, 972, 399, 437, 931, 400, 709, 868, 1089, 932, 892, 401, 746, 46, 95, 715, 257, 503, 850, 992, 402, 635, 851, 525, 46, 639, 46, 158, 854, 1183, 1199, 1181, 1182, 30, 861, 748, 46, 839, 149, 753, 1463, 1141, 46, 190, 843, 46, 213, 1149, 46, 223, 264, 817, 108, 47, 173, 150, 844, 845, 216, 840, 174, 396, 407, 60, 842, 340, 151, 1459, 841, 108, 404, 119, 397, 676, 405, 704, 398, 948, 1396, 930, -233, -233, 399, 931, 47, 400, 46, 74, 932, 46, 113, 401, 1315, 685, 60, 46, 1193, 140, 1416, 1417, 402, 689, 108, 249, 173, 408, 199, 173, 1216, 1217, 258, 30, 1207, 259, 534, 406, 1211, 288, 74, 277, 1416, 1417, 1260, 1088, 146, 120, 46, 158, 855, 147, 108, 148, 858, 156, 46, 422, 480, 482, 1463, 46, 370, 1459, 1096, 1463, 743, 108, 975, 136, 235, 776, 1261, -233, 173, 875, 679, 681, 200, 878, 680, 682, 481, 1316, 1209, 1463, 46, 46, 158, 165, 1418, 780, 1463, 839, 53, 112, 67, 163, 1257, 278, 149, 30, 46, 1479, 236, 408, 510, 66, 534, 237, 46, 158, 1427, 166, 255, 840, 674, 150, 283, 46, 156, 139, 46, 440, 841, 53, 146, 67, 151, 40, 41, 147, 671, 148, 141, 1131, 672, 173, 66, 30, 476, 883, 884, 436, 1189, 108, 108, 136, 137, 1183, 470, 108, 46, 95, 321, 519, 752, 207, 902, 209, 217, 108, 163, 337, 525, 143, 46, 46, 158, 525, 1151, 1190, 525, 46, 594, 767, 152, 828, 854, 1034, 46, 160, 700, 1035, 616, 786, 702, 240, 839, 709, 1345, 173, 522, 30, 1199, 843, 325, 488, 173, 1183, 1347, 1181, 1182, 340, 505, 1198, 934, 844, 845, 416, 840, 408, 1011, 427, 671, 1022, 1505, 431, 672, 841, 877, 1341, 481, 47, 168, 725, 810, 1132, 947, 30, 46, 370, 955, 60, 1133, 1213, 468, 108, 477, 136, 137, 821, 572, 534, 574, 534, 160, 321, 453, 46, 46, 1534, 663, 1536, 1089, 178, 534, 74, 108, 433, 136, 137, 74, 486, 444, 408, 46, 173, 923, 30, 46, 758, 1399, 174, 562, 563, 888, 573, 759, 431, 678, 583, 493, 465, 173, 198, 683, 584, 173, 325, 636, 973, 851, -289, 640, 749, 244, 46, 1339, 852, 750, 608, 476, 527, 247, 1340, 156, 46, 370, 1038, 564, 565, 438, 1489, 439, 843, 881, 881, 881, 170, 868, 433, 476, 1183, 1014, 46, 1454, 844, 845, 1547, 476, 46, 1518, 46, 881, 249, 1548, 757, 1523, 859, 1190, 608, 53, 432, 67, -111, -516, -465, 163, 1558, 593, 173, 1403, 600, 1199, 66, 1562, 46, 261, 1543, 1077, 1199, 250, 1563, 1550, 340, -111, 1169, 1171, 1088, 1448, 1449, 633, 110, 458, 374, 637, 555, -465, 337, -465, 46, 556, 557, -465, 498, 690, 499, 384, 46, 370, 375, 584, 46, 95, 605, 387, 46, 893, 389, 477, 1115, 1099, 1147, 385, 432, 391, 94, 881, 1016, 249, 327, 388, 828, 1199, 390, 396, 1256, 503, 764, 477, 1033, 392, 616, 74, 1118, 404, 397, 477, 529, 405, 398, 160, 725, 321, 321, 781, 399, 94, 764, 400, 787, 764, 209, 74, -10, 401, 1378, 1035, 145, 710, 94, 74, -111, -111, 402, 585, 414, 408, 712, 104, 104, 453, 906, 47, 453, 711, 186, 1376, -111, 94, 453, 734, 94, 60, 713, 325, 325, -439, 1104, 434, 328, 576, 113, 408, 1130, -290, 704, 710, 470, 442, 104, 577, 8, 9, 10, 11, 12, 74, 46, 881, 913, 712, 828, 926, 894, 558, 559, 493, 1196, 321, 46, 493, 46, 588, 1196, 408, 173, 927, 1330, 904, 30, 527, 1204, 527, 1197, 104, 527, 340, 321, 527, 1321, 46, 1104, 1033, 1331, 895, 727, 650, 329, 744, 337, 896, 728, 1332, 1426, 745, 933, 46, 33, 173, 94, 325, 535, 536, 537, 870, 560, 561, 526, 1333, 903, 46, 905, 94, 46, 173, -440, 725, 933, 273, 325, 885, 709, 209, 476, 772, 538, 725, 539, 173, 540, 541, 53, 275, 67, 901, 976, 458, 395, 186, 458, 1379, 725, 1046, 321, 66, 458, 603, 46, 774, 46, 408, 760, 340, 761, 826, 1495, 762, 600, 775, 768, 276, 94, 1495, 1093, 956, 952, 608, 8, 9, 10, 11, 12, 754, 94, 957, 771, 330, 951, 755, 331, 1497, 772, 1498, 1053, 917, 325, 867, 1126, 871, 1249, 772, 600, 872, 46, 46, 30, 529, 876, 529, 605, 736, 529, 873, 94, 529, 919, 874, 46, 1005, 873, -104, 772, 671, 1114, -104, 1544, 672, 484, 63, 114, 700, 477, 1364, 33, 702, 173, 1365, 734, 869, 1000, 828, 505, 1077, 605, 1013, 1001, 1245, 1545, 1372, 1247, 728, 1388, 584, 1251, 772, 74, 332, 1289, 1290, 63, 226, 830, 337, 333, 227, 687, 104, 231, 1373, 233, 566, 567, 157, 477, 772, 576, 242, 408, 36, 368, 171, 172, 39, 439, 453, 577, 1375, 1380, 369, 40, 41, 94, 772, 772, 218, 1173, 1048, 74, 46, 729, 907, 737, 408, 2, 203, 4, 5, 6, 7, 373, 46, 610, 930, 734, 493, 369, 931, 798, 799, 800, 801, 932, 2, 203, 4, 5, 6, 7, 1445, 382, 910, 256, 408, -111, 1442, -111, 526, 1389, 337, -111, 1464, 526, 394, 1511, 526, 386, 772, 1568, 36, 1512, 725, 725, 39, 584, -111, -111, 1194, 406, 1075, 40, 41, 249, 327, 408, 882, 882, 882, 34, 186, 35, 423, 1153, 326, 408, 126, 209, 127, 128, 129, 424, 256, 347, 882, 46, 933, 836, 34, 608, 35, 209, 108, 1415, 136, 137, 1423, 609, 1015, 46, 1004, 1001, 826, 173, 226, 429, 1165, 46, 408, 447, 725, 725, 458, 403, 603, 1297, 1298, 1150, 1300, 736, 701, 535, 536, 537, 1304, 46, 460, 1307, 421, 772, 1006, 426, 428, 416, 667, 408, 157, 486, 327, 408, 1119, 1462, 1135, 603, 60, 538, 1466, 539, 603, 540, 1317, -3, 852, 327, 608, 463, 94, 445, 882, 1143, 610, 448, 764, 449, 1143, 327, 408, 1048, 74, 1444, 1385, 1386, 464, 1308, 1309, 1310, 1488, 466, 63, 1346, 1348, 1349, 164, 478, 169, 209, 1456, 175, 176, 177, 467, 179, 826, 485, 108, 736, 453, 489, 1168, 830, 608, 428, 1170, 915, 608, 1233, 230, 408, 288, 104, 737, 509, 922, 1143, 1436, 1001, 924, 976, 245, 246, 36, 976, 976, 1075, 39, 513, 1208, 1210, 1212, 1442, 1443, 40, 41, 1490, 1491, 530, 493, 1121, 321, 938, 1240, 938, 933, 518, 226, 534, 231, 1416, 1417, 568, 882, 571, 1326, 53, 570, 67, 569, 42, 574, 1516, 1456, 336, 1557, 794, 795, -436, 66, 144, 1557, 256, 796, 797, 601, 592, 838, 673, 610, 595, 629, 1557, 325, 802, 803, 1557, 725, 46, 737, 1422, 645, 867, 664, 634, 725, 725, 725, 634, 665, 666, 256, 668, 933, 933, 669, 670, 477, 254, 1530, 8, 9, 10, 11, 12, 675, 340, 2, 203, 4, 5, 6, 7, 1120, 36, 458, 180, 181, 39, 693, 716, 74, 718, -237, 869, 40, 41, 226, 30, 1337, 756, 769, 773, 725, 777, 225, 891, 831, 478, 833, 835, 8, 9, 10, 11, 12, 846, -12, 890, 1104, 898, 182, 921, 347, 918, 929, 33, 701, 478, 920, 925, 183, 696, 453, 826, 946, 478, -413, 216, 30, 439, 34, 745, 35, -520, 46, 960, 1075, 969, 8, 9, 10, 11, 12, 967, 974, 980, 212, 981, 982, 984, 985, 721, 173, 986, 428, 734, 33, 987, 996, 1008, 838, 610, 1009, 239, 1010, 53, 30, 67, 1119, 735, 1024, 63, 1025, 1143, 1143, 1143, 1397, 1026, 1201, 428, 1397, 1027, -291, 428, 36, 1028, 171, 172, 39, 8, 9, 10, 11, 12, 33, 40, 41, 212, 774, 36, 408, 1029, 1098, 39, 1030, 1041, -401, -400, 775, 1090, 40, 41, 256, 347, 1055, 1092, 1180, 30, 1100, 1101, 60, 1556, 1107, 1102, 1103, 1108, 599, 606, 1117, 1110, 764, 1075, 1109, 1111, 1127, 734, 42, 1129, 630, 631, 212, 337, 772, 1128, 74, 33, 144, 1134, 458, 990, 1139, 1142, 1163, 1184, 1185, 838, 1186, 1187, 1202, 816, 396, 1119, 933, 1188, 1203, 1121, 1440, 610, 1205, 404, 1206, 397, 1214, 405, 1218, 398, 1221, 634, 829, 933, 601, 399, 1480, 1220, 400, 1075, 603, -3, 1075, 1226, 401, 848, 1231, 671, 1237, 1246, 498, 672, 477, 402, 1241, 212, 1248, 1250, 1253, 1254, 207, 217, 209, 601, 46, 46, 1258, 1262, 601, 1265, 1267, 1143, 1143, 1269, 634, 1270, 74, 347, 347, 347, 1271, 1272, 173, 53, 1273, 67, 1275, 1075, 1439, 736, 1282, 1291, 1075, 212, 1292, 347, 66, 212, 1299, 1302, 1328, 1320, 1120, 1215, 1334, 1303, 933, 933, 701, 1305, 1481, 1336, 1121, 721, 1338, 1306, 701, 1314, 1119, 1342, 1343, 1344, 1075, 1350, 478, 104, 1351, 1529, 1352, 256, 735, 1354, 159, 935, 610, 1360, 1361, 1362, 36, 1363, 171, 172, 39, 1370, 1371, 1374, 1381, 1382, 191, 40, 41, 214, 1310, 1390, 224, 72, 438, 146, 439, 1391, 1393, 53, 147, 67, 148, 1403, 478, 1400, 1410, 347, 1531, 1411, 46, -402, 1201, 373, 1414, 1425, 961, 1539, 737, 428, 1429, 1433, 212, 1075, 72, 1431, 1434, 1435, 1075, 1441, 104, 1446, 1450, 1120, 1365, 46, 46, 158, 1451, 1455, 138, 1452, 1453, 256, 735, 1465, 1075, 1467, 1075, 989, 477, 1460, 1075, 1121, 1469, 1075, 1367, 477, 410, 219, 46, 370, 1471, 1075, 1473, 418, 1475, 1075, 1477, 1478, 159, 1483, 1484, 1485, 74, 1496, 1506, 1508, 1510, 1522, 1537, 74, 1538, 371, 1514, 1502, 721, 1502, 1515, 1542, 726, 238, 241, 1549, 1551, 1553, 721, 1566, 737, 347, 1567, 634, 1219, 212, 1021, 634, 829, -292, 804, 159, 477, 721, 1559, 805, 8, 9, 10, 11, 12, 806, 1319, 1032, 1502, 104, 1502, 807, 1517, 8, 9, 10, 11, 12, 159, 1428, 74, 808, 1120, 410, 1569, 36, 1384, 1252, 30, 39, 441, 36, 350, 180, 181, 39, 40, 41, 321, 212, 1401, 30, 40, 41, 1499, 53, 1225, 67, 1105, 691, 720, 939, 53, 692, 67, 823, 33, 897, 1201, 63, 1106, 962, 741, 1138, 1054, 1201, 1116, 1383, 695, 33, 408, 739, 742, 1329, 970, 0, 696, 813, 697, 582, 325, 634, 0, 0, 949, 814, 950, 586, 815, 0, 589, 0, 0, 953, 954, 0, 0, 1503, 959, 1503, 0, 0, 0, 0, 0, 53, 446, 67, 0, 0, 964, 956, 0, 608, 0, 968, 0, 1113, 1201, 0, 0, 957, 0, 0, 0, 428, 114, 72, 0, 0, 0, 0, 72, 515, 1503, 0, 1503, 462, 371, 0, 0, 997, 0, 347, 0, 0, 532, 533, 0, 0, 0, 104, 0, 410, 0, 0, 0, 418, 554, 0, 0, 0, 212, 0, 36, 0, 180, 181, 39, 0, 0, 0, 0, 104, 0, 40, 41, 36, 601, 180, 181, 39, 0, 0, 726, 0, 599, 0, 40, 41, 212, 426, 104, 0, 533, 212, 721, 721, 0, 347, 347, 607, 0, 608, 0, 0, 0, 0, 0, 0, 0, 609, 0, 0, 695, 371, 408, 0, 0, 1200, 0, 0, 0, 0, 697, 0, 1500, 219, 1504, 36, 533, 180, 181, 39, 0, 0, 0, 0, 0, 0, 40, 41, 410, 1042, 1043, 1044, 1045, 0, 1047, 0, 0, 104, 0, 0, 721, 721, 0, 0, 0, 0, 634, 0, 75, 1533, 1091, 1535, 1527, 0, 408, 36, 0, 180, 181, 39, 651, 0, 1528, 0, 1097, 210, 40, 41, 212, 0, 0, 104, 0, 0, 0, 229, 0, 0, 0, 75, 72, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 0, 1564, 350, 1565, 0, 0, 0, 72, 0, 263, 1112, 735, 726, 0, 0, 72, 1572, 1573, 0, 0, 0, 220, 726, 210, 0, 0, 0, 582, 582, 0, 0, 0, 0, 0, 0, 0, 0, 726, 0, 0, 0, 350, 0, 0, 0, 0, 0, 0, 714, 0, 1140, 0, 0, 462, 1296, 0, 0, 1148, 0, 350, 0, 72, 1152, 0, 0, 0, 210, 1156, 0, 1157, 0, 256, 0, 1159, 1160, 1161, 63, 0, 1164, 0, 0, 104, 0, 212, 0, 0, 747, 1176, 751, 721, 0, 735, 0, 0, 0, 114, 0, 0, 0, 0, 791, 792, 793, 350, 104, 1191, 1192, 0, 352, 0, 0, 104, 0, 0, 0, 908, 0, 484, 0, 911, 0, 721, 0, 0, 0, 0, 0, 210, 0, 721, 721, 721, 1222, 211, 0, 1224, 0, 0, 0, 0, 347, 347, 0, 533, 0, 0, 0, 0, 0, 0, 0, 0, 410, 0, 1200, 0, 0, 0, 54, 54, 0, 0, 0, 0, 104, 210, 0, 0, 350, 210, 0, 0, 0, 1239, 0, 0, 0, 721, 0, 1243, 1244, 0, 0, 0, 211, 504, 0, 0, 114, 54, 0, 1255, 0, 0, 0, 0, 1259, 0, 0, 1263, 0, 1264, 0, 75, 1266, 0, 0, 0, 75, 0, 0, 0, 0, 350, 350, 350, 0, 1274, 0, 0, 0, 54, 0, 0, 54, 0, 77, 211, 0, 0, 1281, 350, 1283, 1284, 1285, 1286, 726, 726, 0, 0, 889, 0, 0, 0, 0, 0, 0, 84, 1293, 350, 1294, 0, 0, 0, 169, 0, 210, 77, 0, 0, 72, 0, 0, 0, 0, 347, 350, 582, 0, 0, 0, 0, 0, 0, 0, 212, 533, 0, 84, 0, 916, 0, 0, 1322, 1323, 0, 0, 0, 211, 0, 0, 114, 221, 0, 726, 726, 0, 0, 0, 0, 942, 0, 72, 220, 0, 350, 945, 0, 0, 0, 0, 345, 0, 222, 1200, 0, 0, 0, 0, 0, 0, 1200, 991, 0, 0, 0, 211, 0, 0, 0, 211, 0, 0, 0, 1358, 1359, 0, 210, 0, 0, 0, 0, 350, 0, 1369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 0, 0, 0, 0, 533, 75, 0, 0, 0, 1200, 0, 54, 0, 0, 353, 410, 1552, 0, 0, 350, 352, 0, 210, 0, 552, 75, 0, 0, 0, 350, 0, 1402, 350, 75, 0, 360, 0, 219, 0, 350, 0, 54, 0, 1406, 350, 1407, 1408, 1409, 0, 0, 1007, 0, 211, 0, 0, 0, 0, 1413, 0, 352, 1012, 0, 0, 0, 0, 0, 1424, 0, 0, 0, 0, 1327, 0, 0, 0, 1023, 0, 352, 0, 75, 0, 0, 1437, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 1154, 0, 0, 0, 0, 0, 0, 0, 0, 726, 0, 0, 72, 0, 0, 77, 1166, 726, 726, 726, 77, 0, 651, 0, 0, 0, 0, 352, 0, 1058, 0, 0, 0, 0, 0, 0, 84, 0, 0, 211, 0, 84, 0, 0, 1486, 1487, 8, 9, 10, 11, 12, 210, 0, 0, 0, 0, 0, 1492, 0, 0, 0, 0, 0, 0, 1492, 726, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 210, 0, 0, 0, 0, 210, 0, 0, 0, 0, 211, 0, 212, 352, 1234, 0, 0, 350, 1526, 0, 0, 0, 1532, 33, 0, 533, 0, 0, 36, 0, 180, 181, 39, 0, 0, 0, 221, 0, 0, 40, 41, 0, 651, 0, 0, 0, 0, 0, 0, 0, 345, 1554, 0, 1555, 0, 0, 0, 222, 352, 352, 352, 0, 0, 0, 0, 607, 515, 608, 0, 0, 350, 350, 0, 350, 350, 609, 352, 0, 0, 0, 0, 1570, 1571, 0, 0, 0, 0, 0, 0, 1574, 1575, 0, 210, 72, 352, 0, 0, 0, 0, 0, 0, 1178, 1179, 77, 0, 75, 210, 0, 0, 54, 0, 352, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 77, 84, 0, 504, 0, 350, 350, 0, 77, 0, 211, 0, 0, 0, 0, 0, 360, 0, 0, 1058, 0, 84, 0, 0, 75, 0, 0, 352, 345, 84, 0, 0, 0, 0, 353, 0, 1228, 1229, 211, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 77, 360, 0, 0, 0, 533, 0, 0, 0, 0, 352, 0, 0, 0, 0, 350, 0, 0, 0, 360, 0, 84, 0, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 345, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 0, 0, 0, 0, 0, 219, 0, 0, 30, 352, 360, 0, 352, 0, 0, 0, 0, 220, 1295, 352, 0, 0, 0, 211, 352, 0, 0, 72, 0, 0, 0, 345, 345, 345, 0, 0, 33, 211, 0, 0, 350, 36, 350, 180, 181, 39, 0, 0, 0, 345, 0, 0, 40, 41, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350, 0, 0, 360, 0, 0, 182, 0, 350, 350, 350, 0, 0, 0, 75, 0, 183, 0, 0, 350, 350, 0, 0, 0, 0, 0, 0, 353, 353, 353, 0, 1353, 0, 72, 0, 0, 0, 0, 0, 1355, 1356, 1357, 0, 0, 0, 353, 0, 0, 360, 360, 360, 345, 0, 0, 0, 0, 350, 0, 0, 211, 0, 0, 0, 353, 0, 0, 360, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 353, 0, 0, 0, 360, 0, 0, 1392, 0, 0, 210, 0, 0, 0, 0, 84, 0, 0, 352, 0, 0, 360, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 77, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 84, 0, 0, 360, 0, 0, 345, 350, 0, 0, 0, 0, 0, 345, 352, 352, 0, 352, 352, 353, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 180, 181, 39, 0, 0, 75, 0, 0, 360, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 353, 0, 72, 0, 0, 0, 695, 0, 408, 0, 353, 352, 352, 353, 0, 0, 697, 0, 221, 54, 353, 360, 0, 0, 0, 353, 0, 0, 0, 0, 0, 360, 0, 0, 360, 0, 0, 0, 0, 222, 0, 360, 0, 0, 0, 0, 360, 0, 8, 9, 10, 11, 12, 211, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 352, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345, 33, 0, 0, 0, 84, 36, 0, 180, 181, 39, 0, 0, 0, 0, 220, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 75, 0, 0, 121, 124, 125, 1527, 0, 408, 0, 0, 0, 0, 352, 0, 352, 1528, 0, 0, 345, 345, 0, 0, 30, 162, 0, 0, 210, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 215, 0, 352, 0, 0, 0, 0, 0, 33, 360, 352, 352, 352, 36, 0, 180, 181, 39, 0, 0, 0, 352, 352, 0, 40, 41, 0, 0, 0, 0, 0, 251, 0, 252, 0, 75, 0, 0, 0, 0, 0, 353, 353, 0, 353, 353, 162, 0, 0, 211, 262, 269, 0, 8, 9, 10, 11, 12, 352, 0, 263, 0, 360, 360, 77, 360, 360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 30, 0, 0, 0, 84, 0, 0, 0, 0, 366, 0, 0, 0, 372, 0, 0, 0, 0, 353, 353, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 393, 36, 0, 0, 0, 39, 0, 360, 360, 0, 412, 413, 40, 41, 0, 417, 0, 419, 420, 0, 0, 0, 0, 0, 54, 54, 0, 0, 0, 0, 162, 0, 211, 352, 0, 0, 0, 0, 741, 0, 0, 0, 215, 0, 0, 0, 0, 54, 742, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 459, 0, 0, 0, 0, 54, 0, 0, 0, 0, 360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 372, 0, 0, 0, 0, 75, 0, 0, 162, 221, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 345, 345, 0, 222, 77, 459, 0, 0, 162, 54, 0, 30, 0, 0, 54, 0, 0, 353, 0, 353, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 75, 0, 0, 0, 123, 123, 123, 360, 33, 360, 0, 0, 0, 0, 0, 0, 0, 54, 353, 0, 0, 0, 0, 0, 604, 0, 353, 353, 353, 628, 0, 0, 0, 0, 0, 0, 0, 353, 353, 360, 0, 0, 0, 0, 0, 0, 0, 360, 360, 360, 0, 77, 0, 0, 0, 0, 0, 0, 360, 360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 353, 123, 208, 123, 0, 0, 0, 0, 0, 0, 0, 0, 228, 0, 232, 0, 234, 0, 0, 0, 345, 360, 0, 243, 0, 0, 0, 272, 0, 0, 0, 162, 162, 0, 0, 0, 0, 0, 366, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 208, 0, 232, 234, 243, 0, 459, 0, 0, 459, 0, 0, 0, 0, 0, 459, 54, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 353, 0, 0, 123, 0, 123, 123, 738, 208, 0, 123, 0, 123, 123, 0, 0, 0, 0, 0, 162, 0, 360, 0, 0, 0, 0, 0, 0, 0, 0, 0, 459, 0, 459, 153, 0, 459, 0, 162, 459, 0, 54, 0, 0, 0, 0, 0, 0, 0, 77, 0, 366, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 84, 232, 234, 243, 0, 0, 0, 84, 0, 0, 248, 0, 123, 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 818, 819, 0, 0, 0, 0, 162, 0, 0, 208, 0, 77, 0, 208, 0, 0, 0, 0, 366, 0, 604, 0, 0, 834, 0, 0, 0, 0, 0, 502, 853, 0, 84, 856, 857, 0, 860, 0, 862, 863, 0, 0, 0, 864, 865, 0, 0, 153, 0, 604, 0, 0, 0, 0, 604, 0, 0, 0, 0, 0, 0, 383, 0, 366, 366, 366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 0, 366, 0, 0, 415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430, 0, 208, 0, 0, 0, 0, 232, 234, 435, 0, 0, 0, 0, 0, 243, 0, 0, 738, 443, 0, 0, 0, 0, 0, 0, 0, 0, 940, 941, 0, 0, 0, 0, 943, 0, 0, 0, 0, 459, 0, 0, 0, 0, 469, 0, 0, 0, 0, 479, 0, 0, 0, 0, 0, 0, 0, 366, 208, 958, 0, 0, 487, 0, 0, 0, 0, 0, 497, 0, 501, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 208, 0, 208, 0, 0, 0, 0, 531, 0, 0, 0, 0, 0, 738, 0, 0, 0, 0, 0, 208, 0, 0, 208, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 591, 0, 208, 0, 0, 596, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 366, 0, 0, 0, 628, 0, 0, 366, 0, 0, 0, 0, 0, 0, 0, 642, 0, 0, 0, 643, 644, 0, 646, 0, 0, 0, 0, 0, 0, 657, 658, 0, 659, 660, 0, 661, 0, 662, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 123, 591, 0, 0, 0, 0, 0, 0, 0, 677, 0, 0, 0, 0, 0, 339, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 123, 123, 688, 123, 0, 123, 123, 0, 0, 0, 123, 123, 0, 694, 0, 459, 0, 411, 0, 0, 0, 0, 208, 0, 411, 0, 0, 0, 0, 0, 0, 0, 279, 280, 0, 281, 730, 0, 0, 0, 0, 0, 733, 0, 0, 0, 0, 469, 0, 0, 208, 0, 0, 0, 0, 208, 0, 162, 0, 0, 0, 282, 0, 0, 0, 0, 0, 283, 0, 0, 0, 284, 0, 366, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 770, 0, 0, 0, 123, 291, 0, 0, 0, 123, 123, 0, 411, 0, 0, 123, 785, 0, 0, 0, 292, 0, 376, 0, 604, 377, 0, 0, 0, 294, 378, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 366, 0, 0, 0, 0, 0, 0, 812, 0, 0, 0, 0, 208, 0, 0, 0, 822, 0, 0, 0, 0, 0, 411, 825, 0, 0, 208, 0, 832, 0, 411, 587, 0, 411, 590, 0, 0, 0, 0, 847, 0, 0, 0, 361, 0, 0, 502, 620, 0, 0, 0, 0, 0, 0, 1230, 0, 0, 0, 0, 459, 0, 0, 0, 0, 0, 0, 638, 0, 0, 339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 887, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411, 0, 0, 0, 411, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 832, 0, 0, 738, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411, 0, 0, 0, 279, 280, 215, 281, 0, 0, 0, 0, 0, 0, 0, 0, 248, 0, 0, 0, 0, 0, 0, 0, 1318, 0, 965, 966, 0, 0, 0, 411, 0, 282, 361, 0, 0, 0, 0, 283, 983, 0, 0, 284, 738, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 998, 0, 999, 0, 291, 0, 1003, 0, 0, 0, 0, 0, 0, 0, 0, 208, 0, 411, 0, 511, 339, 361, 0, 0, 0, 0, 0, 0, 294, 378, 296, 297, 298, 299, 0, 0, 366, 366, 0, 0, 0, 208, 0, 0, 0, 215, 0, 0, 0, 0, 0, 0, 0, 319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343, 0, 0, 411, 411, 0, 208, 0, 0, 1036, 0, 0, 379, 379, 0, 0, 1037, 0, 0, 0, 0, 0, 827, 361, 0, 361, 0, 0, 0, 1039, 0, 1040, 0, 0, 620, 0, 620, 620, 208, 0, 0, 0, 0, 620, 0, 1052, 0, 0, 0, 208, 0, 0, 1056, 866, 361, 0, 0, 0, 0, 361, 0, 0, 0, 0, 1094, 0, 0, 1095, 361, 361, 361, 0, 0, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 319, 0, 596, 361, 0, 0, 0, 0, 411, 909, 0, 0, 411, 912, 0, 366, 0, 279, 280, 914, 281, 0, 0, 0, 0, 483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 361, 411, 0, 411, 0, 0, 0, 411, 282, 208, 0, 0, 0, 0, 283, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 459, 291, 459, 0, 361, 620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 1158, 0, 0, 0, 0, 0, 0, 294, 378, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 459, 0, 459, 339, 361, 0, 0, 0, 411, 411, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 162, 379, 0, 0, 0, 0, 0, 531, 0, 0, 0, 0, 0, 0, 1223, 0, 0, 0, 0, 0, 411, 0, 0, 0, 0, 0, 0, 0, 0, 361, 0, 0, 0, 0, 0, 827, 361, 0, 0, 0, 620, 0, 620, 1236, 0, 0, 0, 0, 1238, 0, 0, 0, 620, 0, 0, 0, 1242, 1, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -293, 0, 25, 26, 27, 28, 1268, 0, 29, 208, 0, 30, 0, 0, 0, 0, 0, 0, 1276, 0, 0, 1277, 732, 1278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1287, 1288, 33, 0, 34, 0, 35, 827, 0, 37, 38, 0, 0, -293, 0, 411, 0, 0, 0, 0, 0, 411, 1301, 0, 766, 0, 0, 0, 0, 411, 0, 0, 0, 0, 0, 0, 0, 779, 0, 0, 0, 0, 620, 620, 766, 0, 43, 766, 0, 1324, 0, 0, 0, 0, 109, 0, 0, 0, 789, 790, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 0, 0, 0, 0, 0, 411, 0, 0, 0, 0, 811, 0, 0, 0, 0, 0, 0, 0, 0, 0, 820, 0, 0, 0, 411, 1155, 0, 343, 0, 0, 0, 0, 779, 0, 361, 0, 0, 0, 0, 0, 411, 1167, 0, 620, 620, 1172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 361, 0, 512, 0, 514, 517, 0, 279, 280, 0, 281, 0, 520, 521, 0, 0, 0, 514, 514, 0, 1394, 0, 1395, 0, 0, 0, 886, 0, 0, 514, 0, 0, 0, 0, 379, 1404, 282, 1405, 0, 0, 0, 0, 283, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 1412, 289, 290, 0, 0, 827, 411, 1235, 0, 291, 514, 0, 0, 0, 0, 0, 1430, 1432, 620, 343, 0, 0, 0, 0, 292, 0, 376, 0, 1438, 0, 0, 1242, 809, 294, 378, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 514, 208, 0, 0, 0, 0, 0, 1461, 0, 0, 0, 0, 0, 0, 0, 0, 1468, 361, 0, 1470, 0, 1472, 1474, 1476, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -293, 0, 25, 26, 27, 0, 0, 0, 779, 0, 988, 30, 0, 0, 0, 0, 993, 0, 0, 0, 0, 0, 1507, 1002, 1509, 0, 0, 1242, 0, 0, 0, 0, 0, 0, 0, 0, 339, 0, 0, 33, 0, 0, 1521, 0, 0, 0, 37, 38, 0, 0, -293, 0, 0, 0, 0, 0, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1019, 1020, 0, 343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 641, 0, 336, 0, 343, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 361, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 1050, 25, 26, 27, 379, 0, 0, 0, 0, 0, 30, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 204, 38, 0, 0, 0, 0, 0, 0, -515, 514, 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, 319, 0, 25, 26, 27, 28, 0, 0, 29, 0, 268, 30, 31, 0, 0, 0, 1136, 1137, 0, 0, 0, 0, 0, 379, 0, 361, 0, 0, 0, 993, 0, 0, 1146, 0, 766, 0, 32, 0, 0, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 0, 0, 0, 1162, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 1177, 0, 0, 0, 0, 0, 0, 514, 0, 279, 280, 0, 281, 0, 0, 0, 42, 0, 43, 0, 0, 0, 379, 0, 1195, 0, 44, 0, 0, 514, 0, 0, 0, 0, 0, 0, 0, 0, 282, 993, 993, 0, 514, 0, 647, 0, 136, 137, 284, 0, 411, 285, 648, 287, 288, 40, 41, 0, 289, 290, 1227, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 411, 411, 0, 0, 0, 0, 292, 0, 649, 0, 650, 377, 0, 514, 0, 294, 378, 296, 297, 298, 299, 0, 0, 0, 0, 411, 0, 0, 0, 0, 0, 0, 993, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514, 0, 0, 0, 0, 0, 886, 0, 0, 0, 0, 0, 0, 0, 0, 514, 0, 0, 0, 0, 0, 1279, 1280, 0, 0, 0, 0, 0, 1, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 279, 280, 30, 1059, 1060, 0, 1061, 0, 0, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 0, 0, 0, 1070, 0, 0, 0, 1071, 1072, 0, 32, 0, 282, 33, 0, 34, 0, 35, 647, 0, 37, 38, 284, 0, 993, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 1073, 0, 0, 168, 0, 0, 0, 294, 295, 296, 297, 298, 299, 0, 0, 0, 0, 1074, 0, 0, 0, -128, 0, 0, 0, 0, 0, 0, 1387, 0, 766, 514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514, 1, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 279, 280, 30, 281, 0, 0, 0, 514, 1447, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, 33, 0, 34, 0, 35, 283, 0, 37, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 1073, 0, 0, 0, 0, 514, 0, 294, 295, 296, 297, 298, 299, 0, 0, 0, 1513, 0, 0, 0, 0, -128, 0, 0, 1, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 514, 25, 26, 27, 28, 0, 0, 29, 279, 280, 30, 281, 0, 0, 514, 514, 0, 0, 0, 319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, 33, 0, 34, 0, 35, 283, 0, 37, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 43, 0, 0, 0, 0, 0, 0, 294, 295, 296, 297, 298, 299, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 280, 30, 281, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 282, 33, 0, 34, 30, 35, 283, 0, 37, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 37, 38, 39, 0, 292, 0, 341, 0, 0, 40, 41, 778, 0, 294, 342, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514, 0, 0, 0, 0, 0, 42, 0, 154, 0, 0, 0, 0, 0, 0, 0, 44, 514, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 280, 30, 281, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -293, 0, 0, 0, 282, 33, 0, 34, 0, 35, 283, 30, 37, 38, 284, 514, 514, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 292, 0, 928, -293, 0, 0, 0, 778, 0, 294, 342, 296, 297, 298, 299, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 280, 30, 281, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -294, 0, 0, 0, 282, 33, 0, 34, 0, 35, 283, 30, 37, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 292, 0, 928, -294, 0, 0, 0, 778, 0, 294, 598, 296, 297, 298, 299, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 280, 30, 281, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 282, 33, 0, 34, 30, 35, 283, 0, 37, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 33, 0, 0, 0, 0, 108, 0, 37, 38, 0, 0, 292, 0, 341, 0, 0, 0, 0, 0, 0, 294, 342, 296, 297, 298, 299, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 280, 30, 281, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 282, 33, 0, 34, 30, 35, 283, 0, 37, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 292, 0, 928, 0, 0, 0, 0, 0, 0, 294, 342, 296, 297, 298, 299, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 280, 30, 281, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 282, 33, 0, 34, 30, 35, 283, 0, 204, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 204, 38, 0, 0, 292, 0, 1017, 0, 0, 0, 0, 0, 0, 294, 1018, 296, 297, 298, 299, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 280, 30, 281, 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, 282, 33, 0, 34, 0, 35, 283, 0, 204, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 376, 0, 0, 0, 0, 0, 0, 294, 378, 296, 297, 298, 299, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 0, 30, 31, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 32, 0, 0, 33, 0, 34, 30, 35, 36, 0, 37, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 204, 38, 0, 0, 42, 0, 43, 0, 0, 0, -519, 0, 0, 0, 44, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 627, 0, 29, 0, 0, 30, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 0, 0, 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, 0, 42, 0, 43, 0, 0, 0, 0, 0, 0, 0, 44, 202, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 490, 491, 492, 0, 0, 33, 30, 34, 0, 35, 36, 0, 204, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 0, 42, 0, 205, 0, 0, 0, 0, 0, 0, 0, 206, 1, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 0, 30, 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, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 202, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 43, 30, 0, 0, 0, 0, 0, 0, 109, 0, 0, 1031, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 204, 38, 0, 0, 279, 280, 30, 281, 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, 282, 33, 0, 0, 205, 0, 283, 0, 0, 0, 284, 0, 268, 285, 286, 287, 288, 40, 41, 1174, 289, 290, 8, 9, 10, 11, 12, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 376, 0, 0, 279, 280, 30, 281, 294, 824, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, 33, 0, 0, 0, 0, 283, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 376, 0, 0, 0, 0, 0, 0, 294, 1175, 296, 297, 298, 299, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 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, 33, 0, 34, 0, 35, 36, 0, 204, 38, 39, 0, 0, 0, 0, 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, 0, 42, 0, 205, 0, 0, 0, 0, 0, 0, 0, 206, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 33, 0, 34, 0, 35, 0, 30, 37, 38, 0, 0, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 33, 0, 25, 26, 27, 108, 0, 37, 38, -398, 684, 30, 0, 0, 0, 0, 0, 0, 632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 43, 0, 37, 38, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 684, 0, 0, 0, 0, 0, 0, 0, 632, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 33, 0, 34, 0, 35, 30, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1368, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 334, 335, 39, 0, 684, 0, 0, 0, 0, 40, 41, 0, 632, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 336, 25, 26, 27, 0, 0, 0, 0, 109, 0, 30, 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, 33, 0, 34, 0, 35, 0, 0, 204, 38, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 267, 0, 0, 0, 0, 0, 0, 0, 627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 684, 0, 0, 0, 0, 0, 0, 0, 632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 597, 0, 0, 0, 0, 0, 0, 0, 632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 204, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 280, 30, 281, 0, 0, 0, 0, 0, 205, 0, 0, 0, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, 33, 0, 0, 0, 0, 283, 0, 37, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 523, 0, 0, 168, 0, 0, 0, 294, 295, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 279, 280, 30, 281, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -293, 0, 25, 26, 27, 0, 0, 0, 282, 33, 0, 30, 0, 0, 283, 0, 37, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 33, 0, 0, 0, 0, 36, 0, 334, 335, 39, 0, -293, 292, 0, 597, -3, 40, 41, 0, 0, 0, 294, 598, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 336, 0, 25, 26, 27, 0, 0, 0, 109, 279, 280, 30, 281, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -293, 0, 25, 26, 27, 0, 0, 0, 282, 33, 0, 30, 0, 0, 647, 0, 37, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, -293, 292, -34, 763, 0, 0, 0, 0, 0, 0, 294, 295, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 336, 0, 25, 26, 27, 0, 0, 0, 109, 279, 280, 30, 281, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 282, 33, 0, 30, 451, 0, 283, 0, 37, 38, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 292, 0, 293, 0, 0, 0, 0, 0, 0, 294, 295, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 452, 0, 25, 26, 27, 0, 0, 0, 109, 279, 280, 30, 281, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 282, 33, 25, 26, 27, 0, 283, 0, 37, 38, 284, 30, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 292, 0, 154, 37, 38, 0, 0, 0, 0, 294, 295, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 641, 0, 336, 279, 280, 30, 281, 0, 0, 0, 109, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 282, 33, 25, 26, 27, 0, 283, 0, 37, 38, 284, 30, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 292, 0, 597, 37, 38, 0, 0, 0, 0, 294, 598, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 641, 0, 336, 279, 280, 30, 281, 0, 0, 0, 632, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 282, 33, 25, 26, 27, 0, 283, 0, 37, 38, 284, 30, 451, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 292, 0, 376, 37, 38, 0, 0, 0, 0, 294, 378, 296, 297, 298, 299, 472, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 452, 25, 26, 27, 708, 0, 0, 0, 109, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -293, 0, 25, 26, 27, 0, 0, 0, 0, 0, 33, 30, 34, 0, 35, 0, 0, 37, 38, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 36, 0, 334, 335, 39, 30, -293, 0, 0, 0, 0, 40, 41, -3, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 641, 36, 336, 37, 38, 39, 30, 0, 0, 0, 632, 0, 40, 41, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 42, 36, 43, 204, 38, 39, 30, 0, 0, 0, 44, 0, 40, 41, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -293, 33, 25, 26, 27, 42, 36, 267, 334, 335, 39, 30, 0, 0, 0, 206, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 641, 0, 336, 37, 38, 0, 0, -293, 0, 0, 632, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 641, 0, 336, 30, 451, 0, 0, 0, 0, 0, 632, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 0, 0, 37, 38, 0, 30, 451, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 33, 0, 30, 0, 0, 0, 452, 37, 38, 0, 944, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 0, 0, 452, 0, 0, 0, 1232, 0, 0, 0, 109, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 254, 25, 26, 27, 0, 0, 0, 0, 109, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 33, 30, 0, 0, 0, 0, 0, 37, 38, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 0, 0, 204, 38, 0, 30, 0, 0, 0, 0, 154, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 267, 37, 38, 0, 0, 0, 0, 0, 268, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 254, 0, 0, 0, 0, 0, 0, 0, 632, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 0, 0, 37, 38, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 33, 30, 0, 0, 0, 0, 336, 37, 38, 0, 0, 0, 0, 0, 632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 204, 38, 0, 0, 0, 0, 0, 0, 452, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 267, 25, 26, 27, 0, 0, 0, 0, 627, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 33, 30, 0, 0, 0, 0, 0, 37, 38, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 0, 0, 37, 38, 0, 30, 0, 0, 0, 0, 597, 0, 0, 0, 0, 0, 0, 0, 632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 336, 37, 38, 0, 0, 0, 0, 0, 109, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 43, 0, 0, 0, 0, 30, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 279, 280, 0, 281, 1060, 0, 1061, 0, 0, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 0, 0, 1546, 1070, 0, 0, 0, 1071, 1072, 0, 32, 0, 282, 0, 0, 0, 0, -411, 647, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 376, 0, 0, 168, 0, 0, 0, 294, 378, 296, 297, 298, 299, 0, 0, 0, 0, 1074, 0, 279, 280, -128, 281, 1060, 0, 1061, 0, 0, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 0, 0, 0, 1070, 0, 0, 0, 1071, 1072, 0, 32, 0, 282, 0, 0, 0, 0, 0, 647, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 376, 0, 0, 168, 0, 0, 0, 294, 378, 296, 297, 298, 299, 0, 0, 0, 0, 1074, 0, 279, 280, -128, 281, 1060, 0, 1061, 1416, 1417, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 0, 0, 1546, 1070, 0, 0, 0, 1071, 1072, 0, 32, 0, 282, 0, 0, 0, 0, 0, 647, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 376, 0, 0, 168, 0, 0, 0, 294, 378, 296, 297, 298, 299, 0, 0, 279, 280, 1074, 281, 1060, 0, 1061, 1416, 1417, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 0, 0, 0, 1070, 0, 0, 0, 1071, 1072, 0, 32, 0, 282, 0, 0, 0, 0, 0, 647, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 376, 0, 0, 168, 0, 0, 0, 294, 378, 296, 297, 298, 299, 0, 0, 279, 280, 1074, 281, 1060, 0, 1061, 0, 0, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 0, 0, 0, 1070, 0, 0, 0, 1071, 1072, 0, 32, 0, 282, 0, 0, 0, 0, 0, 647, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 376, 0, 0, 168, 0, 0, 0, 294, 378, 296, 297, 298, 299, 0, 0, 0, 0, 1074, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 0, 279, 280, 0, 281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 280, 0, 281, 0, 0, 0, 33, 0, 34, 282, 35, 0, 0, 37, 38, 283, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 282, 289, 290, 0, 0, 0, 283, 1325, 0, 291, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 292, 0, 376, 0, 291, 279, 280, 778, 281, 294, 378, 296, 297, 298, 299, 0, 0, 0, 0, 292, 0, 376, 0, 0, 990, 0, 0, 0, 294, 378, 296, 297, 298, 299, 282, 0, 0, 0, 0, 0, 283, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 279, 280, 0, 281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 0, 376, 0, 0, 279, 280, 0, 281, 294, 378, 296, 297, 298, 299, 282, 0, 0, 0, 0, 0, 283, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 282, 289, 290, 0, 0, 0, 647, 0, 0, 291, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 292, 0, 376, 0, 291, 279, 280, 0, 281, 294, 731, 296, 297, 298, 299, 0, 0, 0, 0, 292, 0, 782, 0, 0, 279, 280, 0, 281, 294, 378, 296, 297, 298, 299, 282, 0, 0, 0, 0, 0, 283, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 282, 289, 290, 0, 0, 0, 283, 0, 0, 291, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 292, 0, 376, 0, 291, 279, 280, 0, 281, 294, 824, 296, 297, 298, 299, 0, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 0, 294, 378, 296, 297, 298, 299, 282, 0, 0, 0, 0, 0, 283, 0, 0, 0, 284, 0, 0, 285, 286, 287, 288, 40, 41, 0, 289, 290, 0, 0, 0, 0, 0, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 519, 0, 0, 0, 0, 0, 0, 0, 0, 294, 378, 296, 297, 298, 299, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 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, 33, 0, 34, 0, 35, 36, 0, 171, 172, 39, 0, 0, 0, 0, 0, 0, 40, 41, 202, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 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, 33, 0, 34, 0, 35, 0, 0, 204, 38, 472, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 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, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 203, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 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, 33, 0, 34, 0, 35, 0, 0, 204, 38 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1361)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 1, 182, 0, 0, 42, 201, 236, 165, 166, 42, 183, 42, 182, 1, 183, 541, 182, 346, 518, 346, 695, 756, 182, 216, 695, 182, 454, 627, 899, 695, 653, 182, 495, 31, 31, 460, 103, 276, 609, 777, 182, 361, 609, 292, 42, 365, 44, 44, 610, 1040, 1059, 1039, 1040, 38, 616, 497, 54, 607, 42, 501, 1420, 996, 60, 60, 607, 63, 63, 1003, 66, 66, 113, 577, 71, 0, 54, 42, 607, 607, 66, 607, 54, 262, 184, 0, 607, 152, 42, 1416, 607, 71, 263, 81, 262, 415, 263, 453, 262, 720, 1335, 774, 43, 44, 262, 774, 31, 262, 104, 0, 774, 107, 1, 262, 62, 435, 31, 113, 1052, 31, 43, 44, 262, 443, 71, 108, 104, 110, 27, 107, 1071, 1072, 104, 38, 131, 107, 81, 63, 118, 81, 31, 50, 43, 44, 84, 899, 182, 108, 144, 144, 611, 182, 71, 182, 615, 44, 152, 198, 258, 259, 1518, 157, 157, 1490, 109, 1523, 493, 71, 110, 73, 74, 527, 112, 114, 152, 636, 423, 424, 77, 640, 423, 424, 108, 131, 131, 1543, 182, 183, 183, 106, 113, 110, 1550, 741, 0, 1, 0, 44, 1139, 108, 182, 38, 198, 1438, 108, 110, 278, 0, 81, 113, 206, 206, 113, 130, 103, 741, 407, 182, 71, 215, 109, 108, 218, 218, 741, 31, 262, 31, 182, 82, 83, 262, 403, 262, 11, 108, 403, 215, 31, 38, 253, 642, 643, 215, 95, 71, 71, 73, 74, 1238, 249, 71, 248, 248, 143, 108, 499, 63, 659, 63, 66, 71, 109, 152, 511, 108, 262, 263, 263, 516, 1006, 122, 519, 269, 339, 518, 111, 595, 838, 848, 276, 44, 453, 848, 609, 110, 453, 113, 836, 715, 110, 269, 291, 38, 1301, 836, 143, 269, 276, 1288, 110, 1287, 1288, 368, 276, 1059, 696, 836, 836, 108, 836, 110, 816, 202, 485, 836, 1472, 206, 485, 836, 638, 1254, 108, 248, 113, 469, 573, 109, 718, 38, 326, 326, 733, 248, 116, 1068, 248, 71, 253, 73, 74, 584, 94, 81, 130, 81, 109, 236, 237, 345, 346, 1507, 393, 1509, 1223, 115, 81, 248, 71, 206, 73, 74, 253, 108, 225, 110, 362, 345, 688, 38, 366, 109, 108, 345, 89, 90, 110, 129, 116, 268, 421, 109, 271, 244, 362, 3, 427, 115, 366, 236, 362, 116, 957, 3, 366, 108, 115, 393, 109, 108, 113, 110, 415, 292, 0, 116, 295, 403, 403, 870, 125, 126, 218, 95, 218, 956, 641, 642, 643, 52, 1018, 268, 435, 1412, 825, 421, 1412, 956, 956, 1523, 443, 427, 1493, 429, 659, 108, 1523, 509, 1499, 108, 122, 110, 248, 206, 248, 109, 0, 79, 295, 1543, 339, 429, 116, 342, 1461, 248, 1550, 453, 130, 1520, 899, 1468, 95, 1550, 1525, 530, 130, 1027, 1028, 1223, 1404, 1405, 361, 472, 237, 115, 365, 118, 110, 368, 112, 477, 123, 124, 116, 128, 109, 130, 115, 485, 485, 131, 115, 489, 489, 342, 115, 493, 654, 115, 415, 962, 925, 1001, 131, 268, 115, 0, 733, 827, 108, 109, 131, 831, 1521, 131, 695, 1138, 755, 518, 435, 848, 131, 848, 415, 965, 697, 695, 443, 292, 697, 695, 295, 677, 423, 424, 535, 695, 31, 538, 695, 540, 541, 347, 435, 108, 695, 1301, 1113, 42, 115, 44, 443, 114, 115, 695, 108, 190, 110, 115, 0, 1, 451, 663, 489, 454, 131, 60, 1301, 130, 63, 460, 487, 66, 489, 131, 423, 424, 108, 935, 213, 109, 108, 472, 110, 975, 3, 943, 115, 588, 223, 31, 118, 10, 11, 12, 13, 14, 489, 595, 825, 673, 115, 921, 131, 79, 120, 121, 497, 115, 499, 607, 501, 609, 108, 115, 110, 595, 131, 115, 661, 38, 511, 1062, 513, 131, 66, 516, 693, 518, 519, 131, 628, 989, 961, 131, 110, 109, 112, 109, 109, 530, 116, 115, 115, 1378, 115, 696, 644, 66, 628, 144, 499, 84, 85, 86, 628, 87, 88, 292, 131, 660, 658, 662, 157, 661, 644, 108, 812, 718, 108, 518, 644, 1099, 478, 688, 115, 108, 822, 110, 658, 112, 113, 489, 108, 489, 658, 759, 451, 182, 183, 454, 131, 837, 885, 584, 489, 460, 342, 695, 108, 697, 110, 511, 769, 513, 595, 1461, 516, 598, 118, 519, 108, 206, 1468, 906, 108, 730, 110, 10, 11, 12, 13, 14, 109, 218, 118, 109, 109, 728, 115, 109, 1465, 115, 1467, 891, 109, 584, 627, 967, 111, 1131, 115, 632, 115, 741, 742, 38, 511, 638, 513, 598, 487, 516, 111, 248, 519, 109, 115, 755, 809, 111, 111, 115, 935, 115, 115, 1521, 935, 262, 0, 1, 943, 688, 111, 66, 943, 755, 115, 694, 627, 109, 1100, 755, 1223, 632, 109, 115, 109, 1522, 109, 1129, 115, 1317, 115, 1133, 115, 688, 109, 1189, 1190, 31, 67, 596, 693, 109, 71, 440, 248, 74, 109, 76, 91, 92, 44, 730, 115, 108, 83, 110, 71, 111, 73, 74, 75, 629, 715, 118, 109, 109, 108, 82, 83, 326, 115, 115, 66, 1031, 887, 730, 836, 474, 108, 487, 110, 4, 5, 6, 7, 8, 9, 108, 848, 346, 1527, 770, 745, 108, 1527, 562, 563, 564, 565, 1527, 4, 5, 6, 7, 8, 9, 109, 114, 108, 103, 110, 109, 115, 111, 511, 1318, 769, 115, 109, 516, 131, 109, 519, 108, 115, 109, 71, 115, 1036, 1037, 75, 115, 130, 131, 1054, 63, 899, 82, 83, 108, 109, 110, 641, 642, 643, 68, 403, 70, 108, 108, 144, 110, 71, 721, 73, 74, 75, 108, 152, 153, 659, 921, 975, 108, 68, 110, 70, 735, 71, 1372, 73, 74, 1375, 118, 827, 935, 114, 115, 831, 921, 209, 111, 108, 943, 110, 131, 1094, 1095, 715, 183, 598, 1202, 1203, 1006, 1205, 694, 453, 84, 85, 86, 1211, 961, 113, 1214, 198, 115, 116, 201, 202, 108, 109, 110, 206, 108, 109, 110, 966, 1420, 981, 627, 899, 108, 1425, 110, 632, 112, 113, 131, 108, 109, 110, 113, 489, 227, 733, 998, 493, 231, 1001, 233, 1003, 109, 110, 1056, 899, 1399, 57, 58, 242, 57, 58, 59, 1455, 131, 248, 1260, 1261, 1262, 50, 253, 52, 829, 1416, 55, 56, 57, 131, 59, 921, 263, 71, 770, 925, 113, 108, 832, 110, 271, 108, 676, 110, 108, 74, 110, 81, 489, 694, 108, 685, 1052, 114, 115, 689, 1129, 86, 87, 71, 1133, 1134, 1062, 75, 108, 1065, 1066, 1067, 115, 116, 82, 83, 115, 116, 111, 965, 966, 967, 700, 1121, 702, 1131, 108, 349, 81, 351, 43, 44, 119, 825, 93, 1236, 899, 128, 899, 127, 108, 130, 1489, 1490, 110, 1541, 558, 559, 108, 899, 118, 1547, 339, 560, 561, 342, 108, 607, 108, 609, 111, 348, 1558, 967, 566, 567, 1562, 1268, 1121, 770, 1374, 111, 1018, 109, 361, 1276, 1277, 1278, 365, 109, 109, 368, 109, 1189, 1190, 109, 109, 1059, 110, 1502, 10, 11, 12, 13, 14, 111, 1218, 4, 5, 6, 7, 8, 9, 966, 71, 925, 73, 74, 75, 111, 115, 1059, 130, 113, 1018, 82, 83, 439, 38, 1248, 108, 111, 109, 1324, 109, 32, 115, 111, 415, 111, 111, 10, 11, 12, 13, 14, 111, 116, 116, 1552, 28, 108, 111, 430, 109, 695, 66, 697, 435, 109, 113, 118, 116, 1099, 1100, 114, 443, 109, 1201, 38, 1021, 68, 115, 70, 114, 1218, 114, 1223, 109, 10, 11, 12, 13, 14, 108, 131, 109, 63, 115, 109, 116, 109, 469, 1218, 109, 472, 1158, 66, 109, 115, 109, 741, 742, 109, 80, 109, 1059, 38, 1059, 1242, 487, 109, 489, 109, 1260, 1261, 1262, 1336, 109, 1059, 497, 1340, 109, 3, 501, 71, 109, 73, 74, 75, 10, 11, 12, 13, 14, 66, 82, 83, 114, 108, 71, 110, 109, 923, 75, 109, 109, 109, 109, 118, 28, 82, 83, 530, 531, 114, 130, 1039, 38, 111, 109, 1223, 1537, 114, 109, 109, 109, 342, 343, 109, 111, 1317, 1318, 115, 111, 109, 1238, 108, 116, 354, 355, 157, 1218, 115, 109, 1223, 66, 118, 115, 1099, 113, 115, 111, 109, 115, 115, 836, 109, 109, 108, 577, 1527, 1335, 1399, 111, 108, 1242, 1395, 848, 108, 1528, 108, 1527, 108, 1528, 111, 1527, 131, 595, 596, 1416, 598, 1527, 1442, 116, 1527, 1372, 1018, 114, 1375, 109, 1527, 609, 109, 1552, 109, 113, 128, 1552, 1301, 1527, 114, 218, 111, 131, 109, 115, 1200, 1201, 1200, 627, 1394, 1395, 111, 115, 632, 111, 109, 1404, 1405, 109, 638, 109, 1301, 641, 642, 643, 111, 111, 1394, 1223, 111, 1223, 109, 1420, 1394, 1158, 111, 111, 1425, 256, 111, 659, 1223, 260, 46, 131, 109, 114, 1242, 1070, 114, 131, 1489, 1490, 935, 131, 1443, 116, 1335, 677, 109, 131, 943, 131, 1438, 111, 114, 111, 1455, 111, 688, 899, 111, 1502, 111, 693, 694, 111, 44, 697, 961, 111, 111, 109, 71, 109, 73, 74, 75, 111, 111, 108, 108, 108, 60, 82, 83, 63, 59, 109, 66, 0, 1296, 1527, 1296, 109, 113, 1301, 1527, 1301, 1527, 116, 730, 131, 111, 733, 1503, 111, 1502, 109, 1301, 108, 111, 109, 742, 1512, 1158, 745, 95, 108, 347, 1518, 31, 95, 108, 131, 1523, 114, 966, 111, 109, 1335, 115, 1527, 1528, 1528, 109, 41, 29, 109, 109, 769, 770, 131, 1541, 131, 1543, 775, 1461, 116, 1547, 1438, 109, 1550, 1287, 1468, 186, 66, 1552, 1552, 109, 1558, 95, 193, 95, 1562, 131, 109, 144, 109, 131, 116, 1461, 131, 109, 109, 114, 131, 108, 1468, 131, 157, 111, 1470, 812, 1472, 111, 114, 469, 80, 81, 114, 109, 109, 822, 109, 1238, 825, 109, 827, 1074, 428, 830, 831, 832, 3, 568, 183, 1521, 837, 131, 569, 10, 11, 12, 13, 14, 570, 1223, 847, 1507, 1059, 1509, 571, 1490, 10, 11, 12, 13, 14, 206, 1380, 1521, 572, 1438, 265, 1562, 71, 1311, 1134, 38, 75, 218, 71, 153, 73, 74, 75, 82, 83, 1537, 478, 1340, 38, 82, 83, 1468, 1461, 1090, 1461, 943, 451, 463, 702, 1468, 451, 1468, 588, 66, 655, 1461, 899, 945, 745, 108, 990, 891, 1468, 963, 1310, 108, 66, 110, 489, 118, 1242, 755, -1, 116, 576, 118, 321, 1537, 921, -1, -1, 722, 576, 724, 329, 576, -1, 332, -1, -1, 731, 732, -1, -1, 1470, 736, 1472, -1, -1, -1, -1, -1, 1521, 227, 1521, -1, -1, 748, 108, -1, 110, -1, 753, -1, 957, 1521, -1, -1, 118, -1, -1, -1, 965, 966, 248, -1, -1, -1, -1, 253, 281, 1507, -1, 1509, 240, 326, -1, -1, 779, -1, 983, -1, -1, 294, 295, -1, -1, -1, 1201, -1, 395, -1, -1, -1, 399, 306, -1, -1, -1, 601, -1, 71, -1, 73, 74, 75, -1, -1, -1, -1, 1223, -1, 82, 83, 71, 1018, 73, 74, 75, -1, -1, 677, -1, 824, -1, 82, 83, 629, 1031, 1242, -1, 342, 634, 1036, 1037, -1, 1039, 1040, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, 108, 403, 110, -1, -1, 1059, -1, -1, -1, -1, 118, -1, 1469, 348, 1471, 71, 378, 73, 74, 75, -1, -1, -1, -1, -1, -1, 82, 83, 484, 881, 882, 883, 884, -1, 886, -1, -1, 1301, -1, -1, 1094, 1095, -1, -1, -1, -1, 1100, -1, 0, 1506, 902, 1508, 108, -1, 110, 71, -1, 73, 74, 75, 377, -1, 118, -1, 916, 63, 82, 83, 721, -1, -1, 1335, -1, -1, -1, 73, -1, -1, -1, 31, 415, -1, 735, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 1551, 430, 1553, -1, -1, -1, 435, -1, 118, 955, 1158, 812, -1, -1, 443, 1566, 1567, -1, -1, -1, 66, 822, 114, -1, -1, -1, 576, 577, -1, -1, -1, -1, -1, -1, -1, -1, 837, -1, -1, -1, 469, -1, -1, -1, -1, -1, -1, 458, -1, 995, -1, -1, 463, 1201, -1, -1, 1002, -1, 487, -1, 489, 1007, -1, -1, -1, 157, 1012, -1, 1014, -1, 1218, -1, 1018, 1019, 1020, 1223, -1, 1023, -1, -1, 1438, -1, 829, -1, -1, 496, 1032, 498, 1236, -1, 1238, -1, -1, -1, 1242, -1, -1, -1, -1, 555, 556, 557, 531, 1461, 1050, 1051, -1, 153, -1, -1, 1468, -1, -1, -1, 664, -1, 1527, -1, 668, -1, 1268, -1, -1, -1, -1, -1, 218, -1, 1276, 1277, 1278, 1077, 63, -1, 1080, -1, -1, -1, -1, 1287, 1288, -1, 598, -1, -1, -1, -1, -1, -1, -1, -1, 701, -1, 1301, -1, -1, -1, 0, 1, -1, -1, -1, -1, 1521, 256, -1, -1, 596, 260, -1, -1, -1, 1118, -1, -1, -1, 1324, -1, 1124, 1125, -1, -1, -1, 114, 276, -1, -1, 1335, 31, -1, 1136, -1, -1, -1, -1, 1141, -1, -1, 1144, -1, 1146, -1, 248, 1149, -1, -1, -1, 253, -1, -1, -1, -1, 641, 642, 643, -1, 1162, -1, -1, -1, 63, -1, -1, 66, -1, 0, 157, -1, -1, 1175, 659, 1177, 1178, 1179, 1180, 1036, 1037, -1, -1, 650, -1, -1, -1, -1, -1, -1, 0, 1193, 677, 1195, -1, -1, -1, 1199, -1, 347, 31, -1, -1, 688, -1, -1, -1, -1, 1412, 694, 816, -1, -1, -1, -1, -1, -1, -1, 1021, 731, -1, 31, -1, 677, -1, -1, 1228, 1229, -1, -1, -1, 218, -1, -1, 1438, 66, -1, 1094, 1095, -1, -1, -1, -1, 710, -1, 730, 348, -1, 733, 716, -1, -1, -1, -1, 153, -1, 66, 1461, -1, -1, -1, -1, -1, -1, 1468, 777, -1, -1, -1, 256, -1, -1, -1, 260, -1, -1, -1, 1279, 1280, -1, 428, -1, -1, -1, -1, 770, -1, 1289, -1, -1, -1, -1, -1, -1, -1, -1, -1, 445, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, -1, -1, -1, -1, 824, 415, -1, -1, -1, 1521, -1, 218, -1, -1, 153, 929, 1528, -1, -1, 812, 430, -1, 478, -1, 130, 435, -1, -1, -1, 822, -1, 1341, 825, 443, -1, 153, -1, 830, -1, 832, -1, 248, -1, 1353, 837, 1355, 1356, 1357, -1, -1, 812, -1, 347, -1, -1, -1, -1, 1367, -1, 469, 822, -1, -1, -1, -1, -1, 1376, -1, -1, -1, -1, 1236, -1, -1, -1, 837, -1, 487, -1, 489, -1, -1, 1392, -1, -1, -1, -1, -1, -1, 1200, -1, -1, -1, -1, 1008, -1, -1, -1, -1, -1, -1, -1, -1, 1268, -1, -1, 899, -1, -1, 248, 1024, 1276, 1277, 1278, 253, -1, 891, -1, -1, -1, -1, 531, -1, 898, -1, -1, -1, -1, -1, -1, 248, -1, -1, 428, -1, 253, -1, -1, 1448, 1449, 10, 11, 12, 13, 14, 601, -1, -1, -1, -1, -1, 1461, -1, -1, -1, -1, -1, -1, 1468, 1324, -1, -1, -1, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, 629, -1, -1, -1, -1, 634, -1, -1, -1, -1, 478, -1, 1296, 596, 1101, -1, -1, 983, 1501, -1, -1, -1, 1505, 66, -1, 1018, -1, -1, 71, -1, 73, 74, 75, -1, -1, -1, 348, -1, -1, 82, 83, -1, 990, -1, -1, -1, -1, -1, -1, -1, 430, 1534, -1, 1536, -1, -1, -1, 348, 641, 642, 643, -1, -1, -1, -1, 108, 1059, 110, -1, -1, 1036, 1037, -1, 1039, 1040, 118, 659, -1, -1, -1, -1, 1564, 1565, -1, -1, -1, -1, -1, -1, 1572, 1573, -1, 721, 1059, 677, -1, -1, -1, -1, -1, -1, 1036, 1037, 415, -1, 688, 735, -1, -1, 489, -1, 694, -1, -1, -1, -1, -1, -1, 430, -1, -1, -1, -1, 435, 415, -1, 755, -1, 1094, 1095, -1, 443, -1, 601, -1, -1, -1, -1, -1, 430, -1, -1, 1090, -1, 435, -1, -1, 730, -1, -1, 733, 531, 443, -1, -1, -1, -1, 469, -1, 1094, 1095, 629, -1, -1, -1, -1, 634, -1, -1, -1, -1, -1, -1, -1, -1, 487, -1, 489, 469, -1, -1, -1, 1175, -1, -1, -1, -1, 770, -1, -1, -1, -1, 1158, -1, -1, -1, 487, -1, 489, -1, 829, -1, -1, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, 596, -1, -1, 531, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, 1201, -1, -1, 38, 822, 531, -1, 825, -1, -1, -1, -1, 830, 1196, 832, -1, -1, -1, 721, 837, -1, -1, 1223, -1, -1, -1, 641, 642, 643, -1, -1, 66, 735, -1, -1, 1236, 71, 1238, 73, 74, 75, -1, -1, -1, 659, -1, -1, 82, 83, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1268, -1, -1, 596, -1, -1, 108, -1, 1276, 1277, 1278, -1, -1, -1, 899, -1, 118, -1, -1, 1287, 1288, -1, -1, -1, -1, -1, -1, 641, 642, 643, -1, 1268, -1, 1301, -1, -1, -1, -1, -1, 1276, 1277, 1278, -1, -1, -1, 659, -1, -1, 641, 642, 643, 733, -1, -1, -1, -1, 1324, -1, -1, 829, -1, -1, -1, 677, -1, -1, 659, -1, -1, -1, -1, -1, -1, -1, 688, -1, -1, -1, -1, -1, 694, -1, -1, -1, 677, -1, -1, 1324, -1, -1, 1021, -1, -1, -1, -1, 688, -1, -1, 983, -1, -1, 694, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 730, -1, -1, 733, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 38, -1, -1, 730, -1, -1, 733, -1, -1, 825, 1412, -1, -1, -1, -1, -1, 832, 1036, 1037, -1, 1039, 1040, 770, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, 75, -1, -1, 1059, -1, -1, 770, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1461, -1, -1, -1, -1, 812, -1, 1468, -1, -1, -1, 108, -1, 110, -1, 822, 1094, 1095, 825, -1, -1, 118, -1, 830, 899, 832, 812, -1, -1, -1, 837, -1, -1, -1, -1, -1, 822, -1, -1, 825, -1, -1, -1, -1, 830, -1, 832, -1, -1, -1, -1, 837, -1, 10, 11, 12, 13, 14, 1021, -1, 1521, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1200, -1, -1, -1, 1158, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, 966, 899, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 983, 66, -1, -1, -1, 899, 71, -1, 73, 74, 75, -1, -1, -1, -1, 1201, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 1223, -1, -1, 25, 26, 27, 108, -1, 110, -1, -1, -1, -1, 1236, -1, 1238, 118, -1, -1, 1039, 1040, -1, -1, 38, 44, -1, -1, 1296, -1, -1, -1, 983, -1, -1, -1, -1, -1, -1, -1, 1059, -1, -1, -1, 63, -1, 1268, -1, -1, -1, -1, -1, 66, 983, 1276, 1277, 1278, 71, -1, 73, 74, 75, -1, -1, -1, 1287, 1288, -1, 82, 83, -1, -1, -1, -1, -1, 96, -1, 98, -1, 1301, -1, -1, -1, -1, -1, 1036, 1037, -1, 1039, 1040, 109, -1, -1, 1200, 108, 114, -1, 10, 11, 12, 13, 14, 1324, -1, 118, -1, 1036, 1037, 1059, 1039, 1040, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 143, 38, -1, -1, -1, 1059, -1, -1, -1, -1, 153, -1, -1, -1, 157, -1, -1, -1, -1, 1094, 1095, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, 178, 71, -1, -1, -1, 75, -1, 1094, 1095, -1, 188, 189, 82, 83, -1, 193, -1, 195, 196, -1, -1, -1, -1, -1, 1200, 1201, -1, -1, -1, -1, 206, -1, 1296, 1412, -1, -1, -1, -1, 108, -1, -1, -1, 218, -1, -1, -1, -1, 1223, 118, -1, 1158, -1, -1, -1, -1, -1, -1, -1, -1, -1, 236, 237, -1, -1, -1, -1, 1242, -1, -1, -1, -1, 1158, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1461, -1, 260, -1, -1, -1, -1, 1468, -1, -1, 268, 1201, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 1287, 1288, -1, 1201, 1223, 292, -1, -1, 295, 1296, -1, 38, -1, -1, 1301, -1, -1, 1236, -1, 1238, -1, -1, -1, -1, -1, 1223, -1, -1, -1, -1, -1, 1521, -1, -1, -1, 25, 26, 27, 1236, 66, 1238, -1, -1, -1, -1, -1, -1, -1, 1335, 1268, -1, -1, -1, -1, -1, 342, -1, 1276, 1277, 1278, 347, -1, -1, -1, -1, -1, -1, -1, 1287, 1288, 1268, -1, -1, -1, -1, -1, -1, -1, 1276, 1277, 1278, -1, 1301, -1, -1, -1, -1, -1, -1, 1287, 1288, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1301, -1, 1324, 96, 63, 98, -1, -1, -1, -1, -1, -1, -1, -1, 73, -1, 75, -1, 77, -1, -1, -1, 1412, 1324, -1, 84, -1, -1, -1, 122, -1, -1, -1, 423, 424, -1, -1, -1, -1, -1, 430, -1, -1, -1, -1, -1, -1, -1, 1438, -1, -1, -1, -1, -1, -1, 114, -1, 116, 117, 118, -1, 451, -1, -1, 454, -1, -1, -1, -1, -1, 460, 1461, -1, -1, -1, -1, -1, -1, 1468, -1, -1, -1, -1, -1, -1, 178, -1, -1, -1, -1, 1412, -1, -1, 186, -1, 188, 189, 487, 157, -1, 193, -1, 195, 196, -1, -1, -1, -1, -1, 499, -1, 1412, -1, -1, -1, -1, -1, -1, -1, -1, -1, 511, -1, 513, 43, -1, 516, -1, 518, 519, -1, 1521, -1, -1, -1, -1, -1, -1, -1, 1461, -1, 531, -1, -1, -1, -1, 1468, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 218, 1461, 220, 221, 222, -1, -1, -1, 1468, -1, -1, 89, -1, 265, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, -1, -1, -1, -1, 580, 581, -1, -1, -1, -1, 584, -1, -1, 256, -1, 1521, -1, 260, -1, -1, -1, -1, 596, -1, 598, -1, -1, 601, -1, -1, -1, -1, -1, 276, 610, -1, 1521, 613, 614, -1, 616, -1, 618, 619, -1, -1, -1, 623, 624, -1, -1, 154, -1, 627, -1, -1, -1, -1, 632, -1, -1, -1, -1, -1, -1, 168, -1, 641, 642, 643, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 326, -1, 659, -1, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 205, -1, 347, -1, -1, -1, -1, 352, 353, 214, -1, -1, -1, -1, -1, 360, -1, -1, 694, 224, -1, -1, -1, -1, -1, -1, -1, -1, 706, 707, -1, -1, -1, -1, 712, -1, -1, -1, -1, 715, -1, -1, -1, -1, 249, -1, -1, -1, -1, 254, -1, -1, -1, -1, -1, -1, -1, 733, 403, 735, -1, -1, 267, -1, -1, -1, -1, -1, 273, -1, 275, -1, -1, -1, -1, -1, 421, -1, -1, -1, -1, 426, -1, 428, -1, -1, -1, -1, 293, -1, -1, -1, -1, -1, 770, -1, -1, -1, -1, -1, 445, -1, -1, 448, 449, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 464, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 336, -1, 478, -1, -1, 341, -1, -1, -1, 485, -1, -1, -1, -1, -1, -1, -1, -1, 825, -1, -1, -1, 829, -1, -1, 832, -1, -1, -1, -1, -1, -1, -1, 369, -1, -1, -1, 373, 374, -1, 376, -1, -1, -1, -1, -1, -1, 383, 384, -1, 386, 387, -1, 389, -1, 391, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 580, 581, 408, -1, -1, -1, -1, -1, -1, -1, 416, -1, -1, -1, -1, -1, 152, 153, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 610, -1, -1, 613, 614, 441, 616, -1, 618, 619, -1, -1, -1, 623, 624, -1, 452, -1, 925, -1, 186, -1, -1, -1, -1, 601, -1, 193, -1, -1, -1, -1, -1, -1, -1, 36, 37, -1, 39, 475, -1, -1, -1, -1, -1, 481, -1, -1, -1, -1, 486, -1, -1, 629, -1, -1, -1, -1, 634, -1, 967, -1, -1, -1, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, 983, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, 523, -1, -1, -1, 701, 93, -1, -1, -1, 706, 707, -1, 265, -1, -1, 712, 539, -1, -1, -1, 108, -1, 110, -1, 1018, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1039, 1040, -1, -1, -1, -1, -1, -1, 576, -1, -1, -1, -1, 721, -1, -1, -1, 585, -1, -1, -1, -1, -1, 321, 592, -1, -1, 735, -1, 597, -1, 329, 330, -1, 332, 333, -1, -1, -1, -1, 608, -1, -1, -1, 342, -1, -1, 755, 346, -1, -1, -1, -1, -1, -1, 1096, -1, -1, -1, -1, 1099, -1, -1, -1, -1, -1, -1, 365, -1, -1, 368, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 649, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 395, -1, -1, -1, 399, -1, -1, -1, -1, -1, -1, 816, -1, -1, -1, -1, -1, -1, -1, 684, -1, -1, 1158, -1, 829, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 430, -1, -1, -1, -1, -1, -1, -1, 848, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 453, -1, -1, -1, 36, 37, 1200, 39, -1, -1, -1, -1, -1, -1, -1, -1, 739, -1, -1, -1, -1, -1, -1, -1, 1220, -1, 749, 750, -1, -1, -1, 484, -1, 65, 487, -1, -1, -1, -1, 71, 763, -1, -1, 75, 1238, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, 780, -1, 782, -1, 93, -1, 786, -1, -1, -1, -1, -1, -1, -1, -1, 935, -1, 527, -1, 108, 530, 531, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 1287, 1288, -1, -1, -1, 961, -1, -1, -1, 1296, -1, -1, -1, -1, -1, -1, -1, 143, -1, -1, -1, -1, -1, -1, -1, -1, -1, 153, -1, -1, 576, 577, -1, 989, -1, -1, 852, -1, -1, 165, 166, -1, -1, 859, -1, -1, -1, -1, -1, 595, 596, -1, 598, -1, -1, -1, 872, -1, 874, -1, -1, 607, -1, 609, 610, 1021, -1, -1, -1, -1, 616, -1, 888, -1, -1, -1, 1032, -1, -1, 895, 626, 627, -1, -1, -1, -1, 632, -1, -1, -1, -1, 907, -1, -1, 910, 641, 642, 643, -1, -1, -1, -1, -1, -1, -1, -1, 1096, -1, -1, -1, 236, -1, 928, 659, -1, -1, -1, -1, 664, 665, -1, -1, 668, 669, -1, 1412, -1, 36, 37, 675, 39, -1, -1, -1, -1, 261, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 693, 694, 695, -1, 697, -1, -1, -1, 701, 65, 1113, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, 1470, 93, 1472, -1, 733, 734, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 1017, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, 1507, -1, 1509, 769, 770, -1, -1, -1, 774, 775, 1220, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1200, -1, -1, -1, -1, -1, 1537, 377, -1, -1, -1, -1, -1, 1073, -1, -1, -1, -1, -1, -1, 1080, -1, -1, -1, -1, -1, 816, -1, -1, -1, -1, -1, -1, -1, -1, 825, -1, -1, -1, -1, -1, 831, 832, -1, -1, -1, 836, -1, 838, 1109, -1, -1, -1, -1, 1114, -1, -1, -1, 848, -1, -1, -1, 1122, 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, -1, 29, 30, 31, 32, 1153, -1, 35, 1296, -1, 38, -1, -1, -1, -1, -1, -1, 1165, -1, -1, 1168, 479, 1170, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1184, 1185, 66, -1, 68, -1, 70, 921, -1, 73, 74, -1, -1, 77, -1, 929, -1, -1, -1, -1, -1, 935, 1206, -1, 518, -1, -1, -1, -1, 943, -1, -1, -1, -1, -1, -1, -1, 531, -1, -1, -1, -1, 956, 957, 538, -1, 110, 541, -1, 1233, -1, -1, -1, -1, 118, -1, -1, -1, 552, 553, -1, -1, -1, -1, -1, -1, -1, -1, -1, 983, -1, -1, -1, -1, -1, 989, -1, -1, -1, -1, 574, -1, -1, -1, -1, -1, -1, -1, -1, -1, 584, -1, -1, -1, 1008, 1009, -1, 591, -1, -1, -1, -1, 596, -1, 1018, -1, -1, -1, -1, -1, 1024, 1025, -1, 1027, 1028, 1029, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1039, 1040, -1, 279, -1, 281, 282, -1, 36, 37, -1, 39, -1, 289, 290, -1, -1, -1, 294, 295, -1, 1330, -1, 1332, -1, -1, -1, 646, -1, -1, 306, -1, -1, -1, -1, 654, 1345, 65, 1347, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, 1365, 85, 86, -1, -1, 1100, 1101, 1102, -1, 93, 342, -1, -1, -1, -1, -1, 1381, 1382, 1113, 694, -1, -1, -1, -1, 108, -1, 110, -1, 1393, -1, -1, 1396, 116, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, 378, 1552, -1, -1, -1, -1, -1, 1418, -1, -1, -1, -1, -1, -1, -1, -1, 1427, 1158, -1, 1430, -1, 1432, 1433, 1434, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, 770, -1, 772, 38, -1, -1, -1, -1, 778, -1, -1, -1, -1, -1, 1474, 785, 1476, -1, -1, 1479, -1, -1, -1, -1, -1, -1, -1, -1, 1218, -1, -1, 66, -1, -1, 1494, -1, -1, -1, 73, 74, -1, -1, 77, -1, -1, -1, -1, -1, 1238, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 829, 830, -1, 832, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, 847, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1287, 1288, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 887, 29, 30, 31, 891, -1, -1, -1, -1, -1, 38, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, -1, -1, -1, -1, 0, 598, -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, 967, -1, 29, 30, 31, 32, -1, -1, 35, -1, 118, 38, 39, -1, -1, -1, 983, 984, -1, -1, -1, -1, -1, 990, -1, 1412, -1, -1, -1, 996, -1, -1, 999, -1, 1001, -1, 63, -1, -1, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, 1021, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, 1032, -1, -1, -1, -1, -1, -1, 696, -1, 36, 37, -1, 39, -1, -1, -1, 108, -1, 110, -1, -1, -1, 1054, -1, 1056, -1, 118, -1, -1, 718, -1, -1, -1, -1, -1, -1, -1, -1, 65, 1071, 1072, -1, 731, -1, 71, -1, 73, 74, 75, -1, 1502, 78, 79, 80, 81, 82, 83, -1, 85, 86, 1092, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, 1527, 1528, -1, -1, -1, -1, 108, -1, 110, -1, 112, 113, -1, 777, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 1552, -1, -1, -1, -1, -1, -1, 1139, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 809, -1, -1, -1, -1, -1, 1158, -1, -1, -1, -1, -1, -1, -1, -1, 824, -1, -1, -1, -1, -1, 1173, 1174, -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, -1, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 39, 40, -1, 42, -1, -1, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, 1254, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, -1, -1, 131, -1, -1, -1, -1, -1, -1, 1315, -1, 1317, 975, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1006, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1018, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 39, -1, -1, -1, 1059, 1403, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, 1131, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, 1485, -1, -1, -1, -1, 131, -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, -1, 1175, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 39, -1, -1, 1189, 1190, -1, -1, -1, 1537, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 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, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 65, 66, -1, 68, 38, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, 75, -1, 108, -1, 110, -1, -1, 82, 83, 115, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1399, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, 1416, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, 65, 66, -1, 68, -1, 70, 71, 38, 73, 74, 75, 1489, 1490, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, 77, -1, -1, -1, 115, -1, 117, 118, 119, 120, 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, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, 65, 66, -1, 68, -1, 70, 71, 38, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, 77, -1, -1, -1, 115, -1, 117, 118, 119, 120, 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, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 65, 66, -1, 68, 38, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 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, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 65, 66, -1, 68, 38, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 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, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 65, 66, -1, 68, 38, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 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, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -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, 65, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 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, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, -1, 38, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 63, -1, -1, 66, -1, 68, 38, 70, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, 108, -1, 110, -1, -1, -1, 114, -1, -1, -1, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, 118, -1, 35, -1, -1, 38, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 63, -1, -1, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, 33, 34, -1, -1, 66, 38, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, -1, 38, -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, 66, -1, 68, -1, 70, -1, -1, 73, 74, -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, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 110, 38, -1, -1, -1, -1, -1, -1, 118, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, -1, -1, 36, 37, 38, 39, -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, 65, 66, -1, -1, 110, -1, 71, -1, -1, -1, 75, -1, 118, 78, 79, 80, 81, 82, 83, 7, 85, 86, 10, 11, 12, 13, 14, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 36, 37, 38, 39, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, 66, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 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, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -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, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 66, -1, 68, -1, 70, -1, 38, 73, 74, -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, 66, -1, 29, 30, 31, 71, -1, 73, 74, 109, 110, 38, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, 110, -1, 73, 74, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 66, -1, 68, -1, 70, 38, -1, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, -1, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, 75, -1, 110, -1, -1, -1, -1, 82, 83, -1, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 110, 29, 30, 31, -1, -1, -1, -1, 118, -1, 38, -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, 66, -1, 68, -1, 70, -1, -1, 73, 74, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, 66, -1, -1, -1, -1, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, 65, 66, -1, 38, -1, -1, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, 75, -1, 77, 108, -1, 110, 111, 82, 83, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 110, -1, 29, 30, 31, -1, -1, -1, 118, 36, 37, 38, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, 65, 66, -1, 38, -1, -1, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, 77, 108, 109, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 110, -1, 29, 30, 31, -1, -1, -1, 118, 36, 37, 38, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 65, 66, -1, 38, 39, -1, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 110, -1, 29, 30, 31, -1, -1, -1, 118, 36, 37, 38, 39, -1, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 65, 66, 29, 30, 31, -1, 71, -1, 73, 74, 75, 38, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, 108, -1, 110, 73, 74, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 108, -1, 110, 36, 37, 38, 39, -1, -1, -1, 118, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 65, 66, 29, 30, 31, -1, 71, -1, 73, 74, 75, 38, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, 108, -1, 110, 73, 74, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 108, -1, 110, 36, 37, 38, 39, -1, -1, -1, 118, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 65, 66, 29, 30, 31, -1, 71, -1, 73, 74, 75, 38, 39, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, 108, -1, 110, 73, 74, -1, -1, -1, -1, 117, 118, 119, 120, 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, -1, 110, 29, 30, 31, 114, -1, -1, -1, 118, -1, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, -1, -1, 66, 38, 68, -1, 70, -1, -1, 73, 74, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, 71, -1, 73, 74, 75, 38, 77, -1, -1, -1, -1, 82, 83, 113, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, 108, 71, 110, 73, 74, 75, 38, -1, -1, -1, 118, -1, 82, 83, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, 108, 71, 110, 73, 74, 75, 38, -1, -1, -1, 118, -1, 82, 83, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 29, 30, 31, 108, 71, 110, 73, 74, 75, 38, -1, -1, -1, 118, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, 108, -1, 110, 73, 74, -1, -1, 77, -1, -1, 118, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 108, -1, 110, 38, 39, -1, -1, -1, -1, -1, 118, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, -1, -1, 73, 74, -1, 38, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 66, -1, 38, -1, -1, -1, 110, 73, 74, -1, 114, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, -1, -1, -1, 110, -1, -1, -1, 114, -1, -1, -1, 118, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 110, 29, 30, 31, -1, -1, -1, -1, 118, -1, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 66, 38, -1, -1, -1, -1, -1, 73, 74, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, -1, -1, 73, 74, -1, 38, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 110, 73, 74, -1, -1, -1, -1, -1, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, -1, -1, 73, 74, -1, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 66, 38, -1, -1, -1, -1, 110, 73, 74, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 110, 29, 30, 31, -1, -1, -1, -1, 118, -1, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 66, 38, -1, -1, -1, -1, -1, 73, 74, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, -1, -1, 73, 74, -1, 38, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 110, 73, 74, -1, -1, -1, -1, -1, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 110, -1, -1, -1, -1, 38, -1, -1, 118, -1, -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, 68, -1, 70, -1, -1, 73, 74, 36, 37, -1, 39, 40, -1, 42, -1, -1, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, 55, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, -1, -1, -1, -1, 109, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, 36, 37, 131, 39, 40, -1, 42, -1, -1, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, 36, 37, 131, 39, 40, -1, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, 55, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 36, 37, 127, 39, 40, -1, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 36, 37, 127, 39, 40, -1, 42, -1, -1, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -1, 36, 37, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, 37, -1, 39, -1, -1, -1, 66, -1, 68, 65, 70, -1, -1, 73, 74, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, 65, 85, 86, -1, -1, -1, 71, 95, -1, 93, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, 108, -1, 110, -1, 93, 36, 37, 115, 39, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, 36, 37, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 36, 37, -1, 39, 117, 118, 119, 120, 121, 122, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, 65, 85, 86, -1, -1, -1, 71, -1, -1, 93, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, 108, -1, 110, -1, 93, 36, 37, -1, 39, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 108, -1, 110, -1, -1, 36, 37, -1, 39, 117, 118, 119, 120, 121, 122, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, 65, 85, 86, -1, -1, -1, 71, -1, -1, 93, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, 108, -1, 110, -1, 93, 36, 37, -1, 39, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 38, -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, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, -1, 82, 83, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -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, 66, -1, 68, -1, 70, -1, -1, 73, 74, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -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, 66, -1, 68, -1, 70, -1, -1, 73, 74, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -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, 66, -1, 68, -1, 70, -1, -1, 73, 74 }; /* 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, 29, 30, 31, 32, 35, 38, 39, 63, 66, 68, 70, 71, 73, 74, 75, 82, 83, 108, 110, 118, 136, 139, 196, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 241, 242, 243, 244, 252, 253, 279, 280, 281, 289, 292, 298, 299, 301, 303, 304, 310, 315, 319, 320, 321, 322, 323, 324, 325, 326, 346, 363, 364, 365, 366, 71, 118, 138, 213, 215, 223, 225, 235, 239, 241, 280, 81, 108, 308, 309, 310, 308, 308, 71, 73, 74, 75, 137, 138, 269, 270, 290, 291, 73, 74, 270, 108, 301, 11, 197, 108, 118, 315, 320, 321, 322, 324, 325, 326, 111, 133, 110, 216, 223, 225, 319, 323, 362, 363, 366, 367, 134, 106, 130, 273, 113, 134, 171, 73, 74, 136, 268, 134, 134, 134, 115, 134, 73, 74, 108, 118, 305, 314, 315, 316, 317, 318, 319, 323, 327, 328, 329, 330, 331, 337, 3, 27, 77, 237, 3, 5, 73, 110, 118, 215, 226, 230, 233, 242, 281, 319, 323, 366, 213, 215, 225, 235, 239, 241, 280, 319, 323, 32, 231, 231, 226, 233, 134, 231, 226, 231, 226, 74, 108, 113, 270, 281, 113, 270, 231, 226, 115, 134, 134, 0, 133, 108, 171, 308, 308, 133, 110, 223, 225, 364, 268, 268, 225, 130, 108, 118, 305, 315, 319, 110, 118, 366, 302, 228, 310, 108, 286, 108, 108, 50, 108, 36, 37, 39, 65, 71, 75, 78, 79, 80, 81, 85, 86, 93, 108, 110, 117, 118, 119, 120, 121, 122, 135, 139, 140, 141, 142, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 162, 164, 223, 272, 288, 362, 367, 225, 109, 109, 109, 109, 109, 109, 109, 73, 74, 110, 223, 268, 346, 364, 110, 118, 162, 215, 216, 222, 225, 229, 230, 235, 238, 239, 241, 258, 259, 263, 264, 265, 266, 280, 346, 358, 359, 360, 361, 366, 367, 111, 108, 319, 323, 366, 108, 115, 131, 110, 113, 118, 162, 274, 274, 114, 133, 115, 131, 108, 115, 131, 115, 131, 115, 131, 308, 131, 315, 316, 317, 318, 328, 329, 330, 331, 225, 314, 327, 63, 307, 110, 308, 345, 346, 308, 308, 171, 133, 108, 308, 345, 308, 308, 225, 305, 108, 108, 224, 225, 223, 225, 111, 133, 223, 362, 367, 171, 133, 268, 273, 215, 230, 319, 323, 171, 133, 290, 225, 235, 131, 225, 225, 288, 39, 110, 223, 245, 246, 247, 248, 362, 366, 113, 254, 270, 113, 225, 290, 131, 131, 301, 133, 138, 267, 3, 134, 205, 206, 220, 222, 225, 133, 307, 108, 307, 162, 315, 225, 108, 133, 268, 113, 32, 33, 34, 223, 282, 283, 285, 133, 128, 130, 287, 133, 226, 232, 233, 268, 311, 312, 313, 108, 140, 108, 147, 108, 147, 149, 108, 147, 108, 108, 147, 147, 138, 110, 162, 167, 171, 223, 271, 362, 111, 133, 149, 149, 81, 84, 85, 86, 108, 110, 112, 113, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 130, 166, 149, 118, 123, 124, 120, 121, 87, 88, 89, 90, 125, 126, 91, 92, 119, 127, 128, 93, 94, 129, 130, 369, 108, 118, 341, 342, 343, 344, 345, 109, 115, 108, 345, 346, 108, 345, 346, 133, 108, 223, 364, 111, 133, 110, 118, 134, 223, 225, 357, 358, 366, 367, 134, 108, 110, 118, 315, 332, 333, 334, 335, 336, 337, 338, 339, 340, 346, 347, 348, 349, 350, 351, 352, 118, 366, 225, 134, 134, 118, 223, 225, 359, 268, 223, 346, 359, 268, 108, 133, 133, 133, 111, 133, 71, 79, 110, 112, 270, 274, 275, 276, 277, 278, 133, 133, 133, 133, 133, 133, 305, 109, 109, 109, 109, 109, 109, 109, 314, 327, 108, 273, 111, 205, 133, 305, 167, 272, 167, 272, 305, 110, 205, 307, 171, 133, 205, 109, 247, 248, 111, 133, 108, 116, 118, 249, 251, 314, 315, 327, 345, 353, 354, 355, 356, 114, 246, 115, 131, 115, 131, 270, 245, 115, 368, 130, 255, 254, 225, 260, 261, 262, 265, 266, 109, 115, 171, 133, 118, 162, 133, 222, 225, 259, 358, 366, 299, 300, 108, 118, 332, 109, 115, 369, 270, 282, 108, 113, 270, 272, 282, 109, 115, 108, 140, 109, 116, 271, 271, 271, 110, 138, 144, 162, 272, 271, 111, 133, 109, 115, 109, 108, 118, 353, 109, 115, 162, 110, 138, 110, 143, 144, 133, 110, 138, 143, 162, 162, 149, 149, 149, 150, 150, 151, 151, 152, 152, 152, 152, 153, 153, 154, 155, 156, 157, 158, 116, 167, 162, 133, 342, 343, 344, 225, 341, 308, 308, 162, 272, 133, 267, 118, 133, 223, 346, 359, 225, 229, 111, 133, 111, 366, 111, 108, 133, 315, 333, 334, 335, 338, 348, 349, 350, 111, 133, 225, 332, 336, 347, 108, 308, 351, 369, 308, 308, 369, 108, 308, 351, 308, 308, 308, 308, 346, 223, 357, 367, 268, 111, 115, 111, 115, 369, 223, 359, 369, 256, 257, 258, 259, 256, 256, 268, 162, 133, 110, 270, 116, 115, 368, 274, 79, 110, 116, 278, 28, 207, 208, 268, 256, 138, 305, 138, 307, 108, 345, 346, 108, 345, 346, 140, 346, 171, 260, 109, 109, 109, 109, 111, 171, 205, 171, 113, 131, 131, 110, 315, 354, 355, 356, 160, 161, 225, 353, 250, 251, 250, 308, 308, 270, 308, 114, 270, 114, 161, 368, 134, 134, 138, 220, 134, 134, 256, 108, 118, 366, 134, 114, 225, 283, 284, 134, 133, 133, 108, 134, 109, 312, 167, 168, 116, 131, 110, 140, 198, 199, 200, 109, 115, 109, 133, 116, 109, 109, 109, 162, 225, 113, 149, 164, 162, 163, 165, 115, 134, 133, 133, 109, 115, 162, 133, 114, 160, 116, 260, 109, 109, 109, 341, 260, 109, 256, 223, 359, 110, 118, 162, 162, 225, 338, 260, 109, 109, 109, 109, 109, 109, 109, 7, 225, 332, 336, 347, 133, 133, 369, 133, 133, 109, 134, 134, 134, 134, 273, 134, 160, 161, 162, 306, 133, 274, 276, 114, 133, 209, 270, 39, 40, 42, 45, 46, 47, 48, 49, 50, 51, 52, 56, 60, 61, 110, 127, 138, 168, 169, 170, 171, 172, 173, 175, 176, 188, 190, 191, 196, 210, 304, 28, 134, 130, 273, 133, 133, 109, 134, 171, 245, 111, 109, 109, 109, 353, 249, 255, 114, 109, 115, 111, 111, 134, 225, 115, 369, 286, 109, 282, 213, 215, 223, 294, 295, 296, 297, 288, 109, 109, 116, 161, 108, 109, 116, 115, 138, 162, 162, 275, 115, 134, 165, 111, 138, 145, 146, 162, 144, 134, 145, 160, 164, 134, 108, 345, 346, 134, 134, 133, 134, 134, 134, 162, 109, 134, 108, 345, 346, 108, 351, 108, 351, 346, 224, 7, 118, 134, 162, 260, 260, 259, 263, 263, 264, 115, 115, 109, 109, 111, 95, 122, 134, 134, 145, 274, 162, 115, 131, 210, 214, 225, 229, 108, 108, 169, 108, 108, 131, 138, 131, 138, 118, 138, 168, 108, 171, 163, 163, 111, 142, 116, 131, 134, 133, 134, 209, 109, 162, 260, 260, 308, 109, 114, 108, 345, 346, 133, 109, 133, 134, 305, 114, 133, 134, 134, 109, 113, 198, 111, 161, 131, 198, 200, 109, 115, 134, 368, 163, 111, 134, 84, 112, 115, 134, 134, 111, 134, 109, 133, 109, 109, 111, 111, 111, 134, 109, 133, 133, 133, 162, 162, 134, 111, 134, 134, 134, 134, 133, 133, 161, 161, 111, 111, 134, 134, 270, 225, 167, 167, 46, 167, 133, 131, 131, 167, 131, 131, 167, 57, 58, 59, 192, 193, 194, 131, 62, 131, 113, 308, 173, 114, 131, 134, 134, 133, 95, 265, 266, 109, 295, 115, 131, 115, 131, 114, 293, 116, 140, 109, 109, 116, 165, 111, 114, 111, 110, 146, 110, 146, 146, 111, 111, 111, 260, 111, 260, 260, 260, 134, 134, 111, 111, 109, 109, 111, 115, 95, 259, 95, 134, 111, 111, 109, 109, 108, 109, 168, 189, 210, 131, 109, 108, 108, 171, 194, 57, 58, 162, 143, 169, 109, 109, 260, 113, 133, 133, 294, 140, 201, 108, 131, 201, 134, 116, 133, 133, 134, 134, 134, 134, 111, 111, 133, 134, 111, 169, 43, 44, 113, 179, 180, 181, 167, 169, 134, 109, 168, 113, 181, 95, 133, 95, 133, 108, 108, 131, 114, 134, 133, 268, 305, 114, 115, 116, 161, 109, 111, 162, 145, 145, 109, 109, 109, 109, 263, 41, 161, 177, 178, 306, 116, 133, 169, 179, 109, 131, 169, 131, 133, 109, 133, 109, 133, 95, 133, 95, 133, 131, 109, 294, 140, 138, 202, 109, 131, 116, 134, 134, 169, 95, 115, 116, 134, 203, 204, 210, 131, 168, 168, 203, 171, 195, 223, 362, 171, 195, 109, 133, 109, 133, 114, 109, 115, 162, 111, 111, 161, 177, 180, 182, 183, 133, 131, 180, 184, 185, 134, 108, 118, 305, 353, 138, 134, 171, 195, 171, 195, 108, 131, 138, 169, 174, 114, 180, 210, 168, 55, 174, 187, 114, 180, 109, 225, 109, 134, 134, 288, 169, 174, 131, 186, 187, 174, 187, 171, 171, 109, 109, 109, 186, 134, 134, 171, 171, 134, 134 }; #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 290 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 296 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 305 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Integer, (yyvsp[(1) - (1)].tok) ); } break; case 5: /* Line 1806 of yacc.c */ #line 306 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Float, (yyvsp[(1) - (1)].tok) ); } break; case 6: /* Line 1806 of yacc.c */ #line 307 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Character, (yyvsp[(1) - (1)].tok) ); } break; case 15: /* Line 1806 of yacc.c */ #line 332 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::String, (yyvsp[(1) - (1)].tok) ); } break; case 16: /* Line 1806 of yacc.c */ #line 333 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 340 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 18: /* Line 1806 of yacc.c */ #line 342 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 19: /* Line 1806 of yacc.c */ #line 344 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 20: /* Line 1806 of yacc.c */ #line 346 "parser.yy" { (yyval.en) = new ValofExprNode( (yyvsp[(2) - (3)].sn) ); } break; case 22: /* Line 1806 of yacc.c */ #line 356 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Index ), (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ); } break; case 23: /* Line 1806 of yacc.c */ #line 358 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ); } break; case 24: /* Line 1806 of yacc.c */ #line 360 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 26: /* Line 1806 of yacc.c */ #line 363 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 28: /* Line 1806 of yacc.c */ #line 366 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::IncrPost ), (yyvsp[(1) - (2)].en) ); } break; case 29: /* Line 1806 of yacc.c */ #line 368 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::DecrPost ), (yyvsp[(1) - (2)].en) ); } break; case 30: /* Line 1806 of yacc.c */ #line 370 "parser.yy" { (yyval.en) = 0; } break; case 31: /* Line 1806 of yacc.c */ #line 372 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined (yyval.en) = new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_link( (yyvsp[(3) - (4)].en) ) ); } break; case 33: /* Line 1806 of yacc.c */ #line 381 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 34: /* Line 1806 of yacc.c */ #line 386 "parser.yy" { (yyval.en) = 0; } break; case 36: /* Line 1806 of yacc.c */ #line 389 "parser.yy" { (yyval.en) = (yyvsp[(3) - (3)].en)->set_argName( (yyvsp[(1) - (3)].tok) ); } break; case 37: /* Line 1806 of yacc.c */ #line 394 "parser.yy" { (yyval.en) = (yyvsp[(7) - (7)].en)->set_argName( (yyvsp[(3) - (7)].en) ); } break; case 38: /* Line 1806 of yacc.c */ #line 396 "parser.yy" { (yyval.en) = (yyvsp[(9) - (9)].en)->set_argName( new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (9)].en)->set_link( flattenCommas( (yyvsp[(5) - (9)].en) )))); } break; case 40: /* Line 1806 of yacc.c */ #line 401 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 41: /* Line 1806 of yacc.c */ #line 406 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 42: /* Line 1806 of yacc.c */ #line 408 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); } break; case 43: /* Line 1806 of yacc.c */ #line 410 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); } break; case 44: /* Line 1806 of yacc.c */ #line 412 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); } break; case 45: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); } break; case 47: /* Line 1806 of yacc.c */ #line 422 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 48: /* Line 1806 of yacc.c */ #line 424 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 49: /* Line 1806 of yacc.c */ #line 426 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Incr ), (yyvsp[(2) - (2)].en) ); } break; case 50: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Decr ), (yyvsp[(2) - (2)].en) ); } break; case 51: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 52: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 53: /* Line 1806 of yacc.c */ #line 434 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neg ), (yyvsp[(2) - (2)].en) ); } break; case 54: /* Line 1806 of yacc.c */ #line 436 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PointTo ), (yyvsp[(2) - (2)].en) ); } break; case 55: /* Line 1806 of yacc.c */ #line 442 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), (yyvsp[(2) - (2)].en) ); } break; case 56: /* Line 1806 of yacc.c */ #line 444 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 57: /* Line 1806 of yacc.c */ #line 446 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::OffsetOf ), new TypeValueNode( (yyvsp[(3) - (6)].decl) ), new VarRefNode( (yyvsp[(5) - (6)].tok) )); } break; case 58: /* Line 1806 of yacc.c */ #line 448 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (1)].tok) )); } break; case 59: /* Line 1806 of yacc.c */ #line 450 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 60: /* Line 1806 of yacc.c */ #line 452 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ); } break; case 61: /* Line 1806 of yacc.c */ #line 454 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), (yyvsp[(2) - (2)].en) ); } break; case 62: /* Line 1806 of yacc.c */ #line 456 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) ) ); } break; case 63: /* Line 1806 of yacc.c */ #line 458 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LabelAddress ), new VarRefNode( (yyvsp[(2) - (2)].tok), true ) ); } break; case 64: /* Line 1806 of yacc.c */ #line 462 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AddressOf ); } break; case 65: /* Line 1806 of yacc.c */ #line 463 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnPlus ); } break; case 66: /* Line 1806 of yacc.c */ #line 464 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnMinus ); } break; case 67: /* Line 1806 of yacc.c */ #line 465 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::BitNeg ); } break; case 69: /* Line 1806 of yacc.c */ #line 471 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 70: /* Line 1806 of yacc.c */ #line 473 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 72: /* Line 1806 of yacc.c */ #line 479 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mul ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 73: /* Line 1806 of yacc.c */ #line 481 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Div ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 74: /* Line 1806 of yacc.c */ #line 483 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mod ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 76: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Plus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 77: /* Line 1806 of yacc.c */ #line 491 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Minus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 79: /* Line 1806 of yacc.c */ #line 497 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 80: /* Line 1806 of yacc.c */ #line 499 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::RShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 82: /* Line 1806 of yacc.c */ #line 505 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 83: /* Line 1806 of yacc.c */ #line 507 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 84: /* Line 1806 of yacc.c */ #line 509 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 85: /* Line 1806 of yacc.c */ #line 511 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 87: /* Line 1806 of yacc.c */ #line 517 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Eq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 88: /* Line 1806 of yacc.c */ #line 519 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 90: /* Line 1806 of yacc.c */ #line 525 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::BitAnd ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 92: /* Line 1806 of yacc.c */ #line 531 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Xor ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 94: /* Line 1806 of yacc.c */ #line 537 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::BitOr ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 96: /* Line 1806 of yacc.c */ #line 543 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::And ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 98: /* Line 1806 of yacc.c */ #line 549 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Or ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 100: /* Line 1806 of yacc.c */ #line 555 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cond ), (ExpressionNode *)mkList( (*(yyvsp[(1) - (5)].en), *(yyvsp[(3) - (5)].en), *(yyvsp[(5) - (5)].en) ) ) ); } break; case 101: /* Line 1806 of yacc.c */ #line 557 "parser.yy" { (yyval.en)=new CompositeExprNode( new OperatorNode( OperatorNode::NCond ), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 102: /* Line 1806 of yacc.c */ #line 559 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cond ), (ExpressionNode *)mkList( (*(yyvsp[(1) - (5)].en), *(yyvsp[(3) - (5)].en), *(yyvsp[(5) - (5)].en) ) ) ); } break; case 105: /* Line 1806 of yacc.c */ #line 570 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 106: /* Line 1806 of yacc.c */ #line 572 "parser.yy" { (yyval.en) =new CompositeExprNode( (yyvsp[(2) - (3)].en), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 107: /* Line 1806 of yacc.c */ #line 574 "parser.yy" { (yyval.en) = ( (yyvsp[(2) - (2)].en) == 0 ) ? (yyvsp[(1) - (2)].en) : new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 108: /* Line 1806 of yacc.c */ #line 579 "parser.yy" { (yyval.en) = new NullExprNode; } break; case 110: /* Line 1806 of yacc.c */ #line 587 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ) ); } break; case 111: /* Line 1806 of yacc.c */ #line 589 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (yyvsp[(3) - (5)].en) ); } break; case 112: /* Line 1806 of yacc.c */ #line 591 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(new NullExprNode)->set_link( (yyvsp[(4) - (6)].en) ) ); } break; case 113: /* Line 1806 of yacc.c */ #line 593 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( flattenCommas( (yyvsp[(5) - (7)].en) ) ) ); } break; case 115: /* Line 1806 of yacc.c */ #line 599 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 116: /* Line 1806 of yacc.c */ #line 603 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MulAssn ); } break; case 117: /* Line 1806 of yacc.c */ #line 604 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::DivAssn ); } break; case 118: /* Line 1806 of yacc.c */ #line 605 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ModAssn ); } break; case 119: /* Line 1806 of yacc.c */ #line 606 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::PlusAssn ); } break; case 120: /* Line 1806 of yacc.c */ #line 607 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MinusAssn ); } break; case 121: /* Line 1806 of yacc.c */ #line 608 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::LSAssn ); } break; case 122: /* Line 1806 of yacc.c */ #line 609 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::RSAssn ); } break; case 123: /* Line 1806 of yacc.c */ #line 610 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AndAssn ); } break; case 124: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ERAssn ); } break; case 125: /* Line 1806 of yacc.c */ #line 612 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::OrAssn ); } break; case 127: /* Line 1806 of yacc.c */ #line 618 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Comma ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 128: /* Line 1806 of yacc.c */ #line 623 "parser.yy" { (yyval.en) = 0; } break; case 132: /* Line 1806 of yacc.c */ #line 632 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 138: /* Line 1806 of yacc.c */ #line 639 "parser.yy" { Token fn; fn.str = new std::string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( StatementNode::Exp, new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)(new CompositeExprNode( new OperatorNode( OperatorNode::AddressOf ), (yyvsp[(2) - (6)].en) ))->set_link( (yyvsp[(4) - (6)].en) ) ), 0 ); } break; case 139: /* Line 1806 of yacc.c */ #line 648 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 140: /* Line 1806 of yacc.c */ #line 655 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 141: /* Line 1806 of yacc.c */ #line 662 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 143: /* Line 1806 of yacc.c */ #line 668 "parser.yy" { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 144: /* Line 1806 of yacc.c */ #line 673 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 145: /* Line 1806 of yacc.c */ #line 675 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 146: /* Line 1806 of yacc.c */ #line 677 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 149: /* Line 1806 of yacc.c */ #line 684 "parser.yy" { if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } } break; case 150: /* Line 1806 of yacc.c */ #line 689 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); } break; case 151: /* Line 1806 of yacc.c */ #line 695 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 152: /* Line 1806 of yacc.c */ #line 697 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (7)].en), (StatementNode *)mkList((*(yyvsp[(5) - (7)].sn), *(yyvsp[(7) - (7)].sn) )) ); } break; case 153: /* Line 1806 of yacc.c */ #line 699 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 154: /* Line 1806 of yacc.c */ #line 701 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); /* xxx */ } break; case 155: /* Line 1806 of yacc.c */ #line 706 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 156: /* Line 1806 of yacc.c */ #line 708 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); } break; case 157: /* Line 1806 of yacc.c */ #line 715 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 158: /* Line 1806 of yacc.c */ #line 717 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 161: /* Line 1806 of yacc.c */ #line 724 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(tupleContents( (yyvsp[(1) - (3)].en) ))->set_link( (yyvsp[(3) - (3)].en) ) ); } break; case 162: /* Line 1806 of yacc.c */ #line 728 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(2) - (3)].en), 0 ); } break; case 163: /* Line 1806 of yacc.c */ #line 729 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Default ); } break; case 165: /* Line 1806 of yacc.c */ #line 735 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); } break; case 166: /* Line 1806 of yacc.c */ #line 739 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 167: /* Line 1806 of yacc.c */ #line 744 "parser.yy" { (yyval.sn) = 0; } break; case 169: /* Line 1806 of yacc.c */ #line 750 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 170: /* Line 1806 of yacc.c */ #line 752 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 171: /* Line 1806 of yacc.c */ #line 757 "parser.yy" { (yyval.sn) = 0; } break; case 173: /* Line 1806 of yacc.c */ #line 763 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 174: /* Line 1806 of yacc.c */ #line 765 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].sn) ))); } break; case 175: /* Line 1806 of yacc.c */ #line 767 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 176: /* Line 1806 of yacc.c */ #line 769 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_link( (yyvsp[(2) - (4)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(3) - (4)].sn),*(yyvsp[(4) - (4)].sn) ))))); } break; case 177: /* Line 1806 of yacc.c */ #line 774 "parser.yy" { (yyval.sn) = 0; } break; case 179: /* Line 1806 of yacc.c */ #line 779 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 180: /* Line 1806 of yacc.c */ #line 780 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 181: /* Line 1806 of yacc.c */ #line 785 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::While, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 182: /* Line 1806 of yacc.c */ #line 787 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Do, (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ); } break; case 183: /* Line 1806 of yacc.c */ #line 789 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::For, (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].sn) ); } break; case 184: /* Line 1806 of yacc.c */ #line 794 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 185: /* Line 1806 of yacc.c */ #line 796 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 186: /* Line 1806 of yacc.c */ #line 801 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); } break; case 187: /* Line 1806 of yacc.c */ #line 805 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); } break; case 188: /* Line 1806 of yacc.c */ #line 808 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue ); } break; case 189: /* Line 1806 of yacc.c */ #line 812 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); } break; case 190: /* Line 1806 of yacc.c */ #line 815 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 191: /* Line 1806 of yacc.c */ #line 819 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 192: /* Line 1806 of yacc.c */ #line 821 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); } break; case 193: /* Line 1806 of yacc.c */ #line 823 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 194: /* Line 1806 of yacc.c */ #line 827 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 195: /* Line 1806 of yacc.c */ #line 829 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (5)].en), 0 ); } break; case 196: /* Line 1806 of yacc.c */ #line 836 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 197: /* Line 1806 of yacc.c */ #line 838 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 198: /* Line 1806 of yacc.c */ #line 840 "parser.yy" { (yyvsp[(3) - (4)].pn)->set_link( (yyvsp[(4) - (4)].pn) ); (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (4)].sn),*(yyvsp[(3) - (4)].pn) )))); } break; case 200: /* Line 1806 of yacc.c */ #line 851 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 201: /* Line 1806 of yacc.c */ #line 853 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 202: /* Line 1806 of yacc.c */ #line 855 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 203: /* Line 1806 of yacc.c */ #line 857 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 204: /* Line 1806 of yacc.c */ #line 862 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 205: /* Line 1806 of yacc.c */ #line 864 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 206: /* Line 1806 of yacc.c */ #line 866 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 207: /* Line 1806 of yacc.c */ #line 868 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 208: /* Line 1806 of yacc.c */ #line 873 "parser.yy" { (yyval.pn) = new StatementNode( StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn) ); std::cout << "Just created a finally node" << std::endl; } break; case 210: /* Line 1806 of yacc.c */ #line 887 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 211: /* Line 1806 of yacc.c */ #line 892 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 212: /* Line 1806 of yacc.c */ #line 894 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 214: /* Line 1806 of yacc.c */ #line 903 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ); } break; case 215: /* Line 1806 of yacc.c */ #line 905 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ); } break; case 216: /* Line 1806 of yacc.c */ #line 907 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ); } break; case 217: /* Line 1806 of yacc.c */ #line 909 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].constant) ); } break; case 218: /* Line 1806 of yacc.c */ #line 911 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].constant), (yyvsp[(12) - (14)].label) ); } break; case 219: /* Line 1806 of yacc.c */ #line 916 "parser.yy" { (yyval.flag) = false; } break; case 220: /* Line 1806 of yacc.c */ #line 918 "parser.yy" { (yyval.flag) = true; } break; case 221: /* Line 1806 of yacc.c */ #line 923 "parser.yy" { (yyval.en) = 0; } break; case 224: /* Line 1806 of yacc.c */ #line 930 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 225: /* Line 1806 of yacc.c */ #line 935 "parser.yy" { (yyval.en) = new AsmExprNode( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ); } break; case 226: /* Line 1806 of yacc.c */ #line 937 "parser.yy" { (yyval.en) = new AsmExprNode( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ); } break; case 227: /* Line 1806 of yacc.c */ #line 942 "parser.yy" { (yyval.constant) = 0; } break; case 228: /* Line 1806 of yacc.c */ #line 944 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (1)].constant); } break; case 229: /* Line 1806 of yacc.c */ #line 946 "parser.yy" { (yyval.constant) = (ConstantNode *)(yyvsp[(1) - (3)].constant)->set_link( (yyvsp[(3) - (3)].constant) ); } break; case 230: /* Line 1806 of yacc.c */ #line 951 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->append_label( (yyvsp[(1) - (1)].tok) ); } break; case 231: /* Line 1806 of yacc.c */ #line 953 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->append_label( (yyvsp[(3) - (3)].tok) ); } break; case 232: /* Line 1806 of yacc.c */ #line 960 "parser.yy" { (yyval.decl) = 0; } break; case 235: /* Line 1806 of yacc.c */ #line 967 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 236: /* Line 1806 of yacc.c */ #line 972 "parser.yy" { (yyval.decl) = 0; } break; case 239: /* Line 1806 of yacc.c */ #line 979 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 244: /* Line 1806 of yacc.c */ #line 993 "parser.yy" {} break; case 245: /* Line 1806 of yacc.c */ #line 994 "parser.yy" {} break; case 253: /* Line 1806 of yacc.c */ #line 1023 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl); } break; case 254: /* Line 1806 of yacc.c */ #line 1030 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 255: /* Line 1806 of yacc.c */ #line 1035 "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) ) ); } break; case 256: /* Line 1806 of yacc.c */ #line 1045 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 257: /* Line 1806 of yacc.c */ #line 1050 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 258: /* Line 1806 of yacc.c */ #line 1055 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(3) - (4)].tok) ); (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addName( (yyvsp[(3) - (4)].tok) ); } break; case 259: /* Line 1806 of yacc.c */ #line 1063 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 260: /* Line 1806 of yacc.c */ #line 1068 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 261: /* Line 1806 of yacc.c */ #line 1073 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 262: /* Line 1806 of yacc.c */ #line 1078 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 263: /* Line 1806 of yacc.c */ #line 1083 "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 264: /* Line 1806 of yacc.c */ #line 1091 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 265: /* Line 1806 of yacc.c */ #line 1114 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 266: /* Line 1806 of yacc.c */ #line 1118 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 267: /* Line 1806 of yacc.c */ #line 1125 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 268: /* Line 1806 of yacc.c */ #line 1129 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 269: /* Line 1806 of yacc.c */ #line 1134 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 270: /* Line 1806 of yacc.c */ #line 1139 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 271: /* Line 1806 of yacc.c */ #line 1144 "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 272: /* Line 1806 of yacc.c */ #line 1155 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 273: /* Line 1806 of yacc.c */ #line 1160 "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 274: /* Line 1806 of yacc.c */ #line 1165 "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 275: /* Line 1806 of yacc.c */ #line 1170 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 276: /* Line 1806 of yacc.c */ #line 1175 "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 277: /* Line 1806 of yacc.c */ #line 1184 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 278: /* Line 1806 of yacc.c */ #line 1189 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 283: /* Line 1806 of yacc.c */ #line 1206 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 284: /* Line 1806 of yacc.c */ #line 1211 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneBaseType( (yyvsp[(4) - (6)].decl)->addInitializer( (yyvsp[(6) - (6)].in) ) ) ); } break; case 293: /* Line 1806 of yacc.c */ #line 1233 "parser.yy" { (yyval.decl) = 0; } break; case 296: /* Line 1806 of yacc.c */ #line 1245 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 299: /* Line 1806 of yacc.c */ #line 1256 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 300: /* Line 1806 of yacc.c */ #line 1258 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 301: /* Line 1806 of yacc.c */ #line 1260 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 302: /* Line 1806 of yacc.c */ #line 1262 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 303: /* Line 1806 of yacc.c */ #line 1264 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 304: /* Line 1806 of yacc.c */ #line 1266 "parser.yy" { typedefTable.enterScope(); } break; case 305: /* Line 1806 of yacc.c */ #line 1270 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 307: /* Line 1806 of yacc.c */ #line 1279 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 308: /* Line 1806 of yacc.c */ #line 1281 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 310: /* Line 1806 of yacc.c */ #line 1292 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 312: /* Line 1806 of yacc.c */ #line 1301 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 313: /* Line 1806 of yacc.c */ #line 1303 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 314: /* Line 1806 of yacc.c */ #line 1305 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 315: /* Line 1806 of yacc.c */ #line 1307 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 316: /* Line 1806 of yacc.c */ #line 1309 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 317: /* Line 1806 of yacc.c */ #line 1311 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 318: /* Line 1806 of yacc.c */ #line 1313 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 319: /* Line 1806 of yacc.c */ #line 1315 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 320: /* Line 1806 of yacc.c */ #line 1320 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 321: /* Line 1806 of yacc.c */ #line 1322 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 322: /* Line 1806 of yacc.c */ #line 1324 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 323: /* Line 1806 of yacc.c */ #line 1326 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 324: /* Line 1806 of yacc.c */ #line 1328 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 325: /* Line 1806 of yacc.c */ #line 1330 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 326: /* Line 1806 of yacc.c */ #line 1332 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 327: /* Line 1806 of yacc.c */ #line 1334 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 328: /* Line 1806 of yacc.c */ #line 1336 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 329: /* Line 1806 of yacc.c */ #line 1338 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 330: /* Line 1806 of yacc.c */ #line 1340 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 331: /* Line 1806 of yacc.c */ #line 1342 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 333: /* Line 1806 of yacc.c */ #line 1349 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 334: /* Line 1806 of yacc.c */ #line 1351 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 335: /* Line 1806 of yacc.c */ #line 1353 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 336: /* Line 1806 of yacc.c */ #line 1355 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 338: /* Line 1806 of yacc.c */ #line 1361 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1368 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1370 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1372 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1377 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 344: /* Line 1806 of yacc.c */ #line 1379 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1381 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 346: /* Line 1806 of yacc.c */ #line 1383 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1389 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1391 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1393 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1399 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1401 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1407 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1409 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1411 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1416 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1418 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1420 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1430 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl) ); } break; case 364: /* Line 1806 of yacc.c */ #line 1432 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0 ); } break; case 365: /* Line 1806 of yacc.c */ #line 1434 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (5)].aggKey), (yyvsp[(2) - (5)].tok), 0, (yyvsp[(4) - (5)].decl) ); } break; case 366: /* Line 1806 of yacc.c */ #line 1436 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl) ); } break; case 367: /* Line 1806 of yacc.c */ #line 1438 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 368: /* Line 1806 of yacc.c */ #line 1443 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 369: /* Line 1806 of yacc.c */ #line 1445 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 370: /* Line 1806 of yacc.c */ #line 1450 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 371: /* Line 1806 of yacc.c */ #line 1452 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 373: /* Line 1806 of yacc.c */ #line 1458 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 375: /* Line 1806 of yacc.c */ #line 1461 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 377: /* Line 1806 of yacc.c */ #line 1467 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 378: /* Line 1806 of yacc.c */ #line 1469 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 379: /* Line 1806 of yacc.c */ #line 1471 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 380: /* Line 1806 of yacc.c */ #line 1476 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 381: /* Line 1806 of yacc.c */ #line 1478 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 382: /* Line 1806 of yacc.c */ #line 1483 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 383: /* Line 1806 of yacc.c */ #line 1485 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1488 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1491 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 387: /* Line 1806 of yacc.c */ #line 1497 "parser.yy" { (yyval.en) = 0; } break; case 388: /* Line 1806 of yacc.c */ #line 1499 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 389: /* Line 1806 of yacc.c */ #line 1504 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 391: /* Line 1806 of yacc.c */ #line 1513 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 392: /* Line 1806 of yacc.c */ #line 1515 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 393: /* Line 1806 of yacc.c */ #line 1517 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 394: /* Line 1806 of yacc.c */ #line 1522 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1524 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 396: /* Line 1806 of yacc.c */ #line 1529 "parser.yy" { (yyval.en) = 0; } break; case 397: /* Line 1806 of yacc.c */ #line 1531 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 398: /* Line 1806 of yacc.c */ #line 1538 "parser.yy" { (yyval.decl) = 0; } break; case 402: /* Line 1806 of yacc.c */ #line 1546 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 403: /* Line 1806 of yacc.c */ #line 1548 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 404: /* Line 1806 of yacc.c */ #line 1550 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 406: /* Line 1806 of yacc.c */ #line 1558 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 407: /* Line 1806 of yacc.c */ #line 1560 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 408: /* Line 1806 of yacc.c */ #line 1562 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 410: /* Line 1806 of yacc.c */ #line 1568 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 411: /* Line 1806 of yacc.c */ #line 1573 "parser.yy" { (yyval.decl) = 0; } break; case 414: /* Line 1806 of yacc.c */ #line 1580 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 417: /* Line 1806 of yacc.c */ #line 1587 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 418: /* Line 1806 of yacc.c */ #line 1589 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 420: /* Line 1806 of yacc.c */ #line 1598 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 421: /* Line 1806 of yacc.c */ #line 1601 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 422: /* Line 1806 of yacc.c */ #line 1603 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 427: /* Line 1806 of yacc.c */ #line 1613 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 429: /* Line 1806 of yacc.c */ #line 1619 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) ); } break; case 430: /* Line 1806 of yacc.c */ #line 1624 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) ); } break; case 432: /* Line 1806 of yacc.c */ #line 1633 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 433: /* Line 1806 of yacc.c */ #line 1642 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 434: /* Line 1806 of yacc.c */ #line 1644 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 446: /* Line 1806 of yacc.c */ #line 1669 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 450: /* Line 1806 of yacc.c */ #line 1677 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 451: /* Line 1806 of yacc.c */ #line 1682 "parser.yy" { (yyval.in) = 0; } break; case 452: /* Line 1806 of yacc.c */ #line 1684 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 453: /* Line 1806 of yacc.c */ #line 1686 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 454: /* Line 1806 of yacc.c */ #line 1690 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 455: /* Line 1806 of yacc.c */ #line 1691 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 456: /* Line 1806 of yacc.c */ #line 1696 "parser.yy" { (yyval.in) = 0; } break; case 458: /* Line 1806 of yacc.c */ #line 1698 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 459: /* Line 1806 of yacc.c */ #line 1699 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1701 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 462: /* Line 1806 of yacc.c */ #line 1717 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); } break; case 464: /* Line 1806 of yacc.c */ #line 1723 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); } break; case 465: /* Line 1806 of yacc.c */ #line 1731 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(1) - (1)].tok) ) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1733 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(2) - (2)].tok) ) ); } break; case 467: /* Line 1806 of yacc.c */ #line 1736 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 468: /* Line 1806 of yacc.c */ #line 1738 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 469: /* Line 1806 of yacc.c */ #line 1740 "parser.yy" { (yyval.en) = new DesignatorNode( new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ), true ); } break; case 470: /* Line 1806 of yacc.c */ #line 1742 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(4) - (6)].en) ); } break; case 472: /* Line 1806 of yacc.c */ #line 1766 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 473: /* Line 1806 of yacc.c */ #line 1768 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 474: /* Line 1806 of yacc.c */ #line 1770 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1776 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 477: /* Line 1806 of yacc.c */ #line 1778 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1783 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1789 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1794 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 482: /* Line 1806 of yacc.c */ #line 1796 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 484: /* Line 1806 of yacc.c */ #line 1802 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 485: /* Line 1806 of yacc.c */ #line 1804 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 486: /* Line 1806 of yacc.c */ #line 1806 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 487: /* Line 1806 of yacc.c */ #line 1811 "parser.yy" { (yyval.decl) = 0; } break; case 488: /* Line 1806 of yacc.c */ #line 1813 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) == 0 ? (yyvsp[(2) - (2)].decl) : (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 489: /* Line 1806 of yacc.c */ #line 1818 "parser.yy" { typedefTable.openContext( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newContextUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 490: /* Line 1806 of yacc.c */ #line 1823 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 491: /* Line 1806 of yacc.c */ #line 1825 "parser.yy" { (yyval.decl) = 0; } break; case 492: /* Line 1806 of yacc.c */ #line 1830 "parser.yy" { (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); } break; case 494: /* Line 1806 of yacc.c */ #line 1833 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); } break; case 495: /* Line 1806 of yacc.c */ #line 1835 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 496: /* Line 1806 of yacc.c */ #line 1840 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 497: /* Line 1806 of yacc.c */ #line 1842 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 498: /* Line 1806 of yacc.c */ #line 1844 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 499: /* Line 1806 of yacc.c */ #line 1849 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1851 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 501: /* Line 1806 of yacc.c */ #line 1856 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 502: /* Line 1806 of yacc.c */ #line 1861 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 503: /* Line 1806 of yacc.c */ #line 1869 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 504: /* Line 1806 of yacc.c */ #line 1874 "parser.yy" { typedefTable.enterContext( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 505: /* Line 1806 of yacc.c */ #line 1879 "parser.yy" { typedefTable.leaveContext(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 507: /* Line 1806 of yacc.c */ #line 1889 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 510: /* Line 1806 of yacc.c */ #line 1899 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 511: /* Line 1806 of yacc.c */ #line 1904 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 512: /* Line 1806 of yacc.c */ #line 1909 "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 513: /* Line 1806 of yacc.c */ #line 1917 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 514: /* Line 1806 of yacc.c */ #line 1922 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 515: /* Line 1806 of yacc.c */ #line 1932 "parser.yy" {} break; case 516: /* Line 1806 of yacc.c */ #line 1934 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 518: /* Line 1806 of yacc.c */ #line 1946 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 519: /* Line 1806 of yacc.c */ #line 1951 "parser.yy" { (yyval.decl) = 0; } break; case 523: /* Line 1806 of yacc.c */ #line 1959 "parser.yy" {} break; case 524: /* Line 1806 of yacc.c */ #line 1961 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 525: /* Line 1806 of yacc.c */ #line 1966 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 526: /* Line 1806 of yacc.c */ #line 1972 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 528: /* Line 1806 of yacc.c */ #line 1982 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 529: /* Line 1806 of yacc.c */ #line 1988 "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 530: /* Line 1806 of yacc.c */ #line 1997 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 531: /* Line 1806 of yacc.c */ #line 2003 "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 532: /* Line 1806 of yacc.c */ #line 2009 "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 533: /* Line 1806 of yacc.c */ #line 2015 "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 534: /* Line 1806 of yacc.c */ #line 2021 "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 535: /* Line 1806 of yacc.c */ #line 2029 "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 536: /* Line 1806 of yacc.c */ #line 2035 "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 537: /* Line 1806 of yacc.c */ #line 2043 "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 538: /* Line 1806 of yacc.c */ #line 2049 "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 542: /* Line 1806 of yacc.c */ #line 2064 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 545: /* Line 1806 of yacc.c */ #line 2074 "parser.yy" { (yyval.decl) = 0; } break; case 548: /* Line 1806 of yacc.c */ #line 2081 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 549: /* Line 1806 of yacc.c */ #line 2087 "parser.yy" { (yyval.decl) = 0; } break; case 555: /* Line 1806 of yacc.c */ #line 2102 "parser.yy" {} break; case 556: /* Line 1806 of yacc.c */ #line 2103 "parser.yy" {} break; case 557: /* Line 1806 of yacc.c */ #line 2104 "parser.yy" {} break; case 558: /* Line 1806 of yacc.c */ #line 2105 "parser.yy" {} break; case 559: /* Line 1806 of yacc.c */ #line 2140 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 561: /* Line 1806 of yacc.c */ #line 2143 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 562: /* Line 1806 of yacc.c */ #line 2145 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 563: /* Line 1806 of yacc.c */ #line 2150 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 564: /* Line 1806 of yacc.c */ #line 2155 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 565: /* Line 1806 of yacc.c */ #line 2160 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2162 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2164 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 568: /* Line 1806 of yacc.c */ #line 2169 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 569: /* Line 1806 of yacc.c */ #line 2171 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2173 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2175 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 572: /* Line 1806 of yacc.c */ #line 2180 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2182 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 574: /* Line 1806 of yacc.c */ #line 2192 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2195 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2200 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 578: /* Line 1806 of yacc.c */ #line 2202 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2204 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 580: /* Line 1806 of yacc.c */ #line 2209 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2211 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2213 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 583: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 584: /* Line 1806 of yacc.c */ #line 2220 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2222 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 589: /* Line 1806 of yacc.c */ #line 2237 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2239 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 591: /* Line 1806 of yacc.c */ #line 2241 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 592: /* Line 1806 of yacc.c */ #line 2246 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 593: /* Line 1806 of yacc.c */ #line 2248 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2250 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 595: /* Line 1806 of yacc.c */ #line 2255 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2257 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 597: /* Line 1806 of yacc.c */ #line 2259 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 598: /* Line 1806 of yacc.c */ #line 2274 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2277 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 601: /* Line 1806 of yacc.c */ #line 2279 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 603: /* Line 1806 of yacc.c */ #line 2285 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 604: /* Line 1806 of yacc.c */ #line 2290 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2292 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2294 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 607: /* Line 1806 of yacc.c */ #line 2299 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2301 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2303 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2305 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 611: /* Line 1806 of yacc.c */ #line 2310 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2312 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 613: /* Line 1806 of yacc.c */ #line 2314 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 614: /* Line 1806 of yacc.c */ #line 2324 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2327 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2329 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2334 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 619: /* Line 1806 of yacc.c */ #line 2336 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2338 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 621: /* Line 1806 of yacc.c */ #line 2343 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2345 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2347 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2349 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 625: /* Line 1806 of yacc.c */ #line 2354 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2356 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2358 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 628: /* Line 1806 of yacc.c */ #line 2389 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2392 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2394 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2399 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2404 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2412 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2414 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2416 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 637: /* Line 1806 of yacc.c */ #line 2421 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2423 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2428 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2430 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2445 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2447 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2452 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 645: /* Line 1806 of yacc.c */ #line 2454 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2456 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2458 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2460 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 650: /* Line 1806 of yacc.c */ #line 2466 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2468 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2470 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 653: /* Line 1806 of yacc.c */ #line 2475 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 654: /* Line 1806 of yacc.c */ #line 2477 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 655: /* Line 1806 of yacc.c */ #line 2479 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 656: /* Line 1806 of yacc.c */ #line 2485 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 657: /* Line 1806 of yacc.c */ #line 2487 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 659: /* Line 1806 of yacc.c */ #line 2493 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 660: /* Line 1806 of yacc.c */ #line 2495 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 661: /* Line 1806 of yacc.c */ #line 2497 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 662: /* Line 1806 of yacc.c */ #line 2499 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 664: /* Line 1806 of yacc.c */ #line 2514 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 665: /* Line 1806 of yacc.c */ #line 2516 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 666: /* Line 1806 of yacc.c */ #line 2521 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 667: /* Line 1806 of yacc.c */ #line 2523 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2525 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2527 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2529 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 672: /* Line 1806 of yacc.c */ #line 2535 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2537 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2539 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 675: /* Line 1806 of yacc.c */ #line 2544 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 676: /* Line 1806 of yacc.c */ #line 2546 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 677: /* Line 1806 of yacc.c */ #line 2548 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 679: /* Line 1806 of yacc.c */ #line 2555 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 681: /* Line 1806 of yacc.c */ #line 2566 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 682: /* Line 1806 of yacc.c */ #line 2569 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 683: /* Line 1806 of yacc.c */ #line 2571 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 684: /* Line 1806 of yacc.c */ #line 2574 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 685: /* Line 1806 of yacc.c */ #line 2576 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 686: /* Line 1806 of yacc.c */ #line 2578 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 688: /* Line 1806 of yacc.c */ #line 2592 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 689: /* Line 1806 of yacc.c */ #line 2594 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 690: /* Line 1806 of yacc.c */ #line 2599 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 691: /* Line 1806 of yacc.c */ #line 2601 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 692: /* Line 1806 of yacc.c */ #line 2603 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2605 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2607 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 696: /* Line 1806 of yacc.c */ #line 2613 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2615 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2617 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 699: /* Line 1806 of yacc.c */ #line 2622 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 700: /* Line 1806 of yacc.c */ #line 2624 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 703: /* Line 1806 of yacc.c */ #line 2634 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 706: /* Line 1806 of yacc.c */ #line 2644 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 707: /* Line 1806 of yacc.c */ #line 2646 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 708: /* Line 1806 of yacc.c */ #line 2648 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 709: /* Line 1806 of yacc.c */ #line 2650 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2652 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2654 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2661 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2663 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2665 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2667 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2669 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2671 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2673 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2675 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2677 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2679 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2684 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2686 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 724: /* Line 1806 of yacc.c */ #line 2691 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 725: /* Line 1806 of yacc.c */ #line 2693 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 727: /* Line 1806 of yacc.c */ #line 2720 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 731: /* Line 1806 of yacc.c */ #line 2731 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 732: /* Line 1806 of yacc.c */ #line 2733 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 733: /* Line 1806 of yacc.c */ #line 2735 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 734: /* Line 1806 of yacc.c */ #line 2737 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2739 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2741 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2748 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2750 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2752 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2754 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 741: /* 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 742: /* Line 1806 of yacc.c */ #line 2758 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2763 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2768 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 745: /* Line 1806 of yacc.c */ #line 2770 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 746: /* Line 1806 of yacc.c */ #line 2772 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 749: /* Line 1806 of yacc.c */ #line 2796 "parser.yy" { (yyval.en) = 0; } break; case 750: /* Line 1806 of yacc.c */ #line 2798 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9126 "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 2801 "parser.yy" // ----end of grammar---- void yyerror( const char * ) { std::cout << "Error "; if ( yyfilename ) { std::cout << "in file " << yyfilename << " "; } // if std::cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << std::endl; } // Local Variables: // // mode: c++ // // tab-width: 4 // // compile-command: "make install" // // End: //