/* 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 "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.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 94 "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, VALIST = 279, BOOL = 280, COMPLEX = 281, IMAGINARY = 282, TYPEOF = 283, LABEL = 284, ENUM = 285, STRUCT = 286, UNION = 287, OTYPE = 288, FTYPE = 289, DTYPE = 290, TRAIT = 291, SIZEOF = 292, OFFSETOF = 293, ATTRIBUTE = 294, EXTENSION = 295, IF = 296, ELSE = 297, SWITCH = 298, CASE = 299, DEFAULT = 300, DO = 301, WHILE = 302, FOR = 303, BREAK = 304, CONTINUE = 305, GOTO = 306, RETURN = 307, CHOOSE = 308, DISABLE = 309, ENABLE = 310, FALLTHRU = 311, TRY = 312, CATCH = 313, CATCHRESUME = 314, FINALLY = 315, THROW = 316, THROWRESUME = 317, AT = 318, ASM = 319, ALIGNAS = 320, ALIGNOF = 321, ATOMIC = 322, GENERIC = 323, NORETURN = 324, STATICASSERT = 325, THREADLOCAL = 326, IDENTIFIER = 327, QUOTED_IDENTIFIER = 328, TYPEDEFname = 329, TYPEGENname = 330, ATTR_IDENTIFIER = 331, ATTR_TYPEDEFname = 332, ATTR_TYPEGENname = 333, INTEGERconstant = 334, FLOATINGconstant = 335, CHARACTERconstant = 336, STRINGliteral = 337, ZERO = 338, ONE = 339, ARROW = 340, ICR = 341, DECR = 342, LS = 343, RS = 344, LE = 345, GE = 346, EQ = 347, NE = 348, ANDAND = 349, OROR = 350, ELLIPSIS = 351, MULTassign = 352, DIVassign = 353, MODassign = 354, PLUSassign = 355, MINUSassign = 356, LSassign = 357, RSassign = 358, ANDassign = 359, ERassign = 360, ORassign = 361, ATassign = 362, REFassign = 363, THEN = 364 }; #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 VALIST 279 #define BOOL 280 #define COMPLEX 281 #define IMAGINARY 282 #define TYPEOF 283 #define LABEL 284 #define ENUM 285 #define STRUCT 286 #define UNION 287 #define OTYPE 288 #define FTYPE 289 #define DTYPE 290 #define TRAIT 291 #define SIZEOF 292 #define OFFSETOF 293 #define ATTRIBUTE 294 #define EXTENSION 295 #define IF 296 #define ELSE 297 #define SWITCH 298 #define CASE 299 #define DEFAULT 300 #define DO 301 #define WHILE 302 #define FOR 303 #define BREAK 304 #define CONTINUE 305 #define GOTO 306 #define RETURN 307 #define CHOOSE 308 #define DISABLE 309 #define ENABLE 310 #define FALLTHRU 311 #define TRY 312 #define CATCH 313 #define CATCHRESUME 314 #define FINALLY 315 #define THROW 316 #define THROWRESUME 317 #define AT 318 #define ASM 319 #define ALIGNAS 320 #define ALIGNOF 321 #define ATOMIC 322 #define GENERIC 323 #define NORETURN 324 #define STATICASSERT 325 #define THREADLOCAL 326 #define IDENTIFIER 327 #define QUOTED_IDENTIFIER 328 #define TYPEDEFname 329 #define TYPEGENname 330 #define ATTR_IDENTIFIER 331 #define ATTR_TYPEDEFname 332 #define ATTR_TYPEGENname 333 #define INTEGERconstant 334 #define FLOATINGconstant 335 #define CHARACTERconstant 336 #define STRINGliteral 337 #define ZERO 338 #define ONE 339 #define ARROW 340 #define ICR 341 #define DECR 342 #define LS 343 #define RS 344 #define LE 345 #define GE 346 #define EQ 347 #define NE 348 #define ANDAND 349 #define OROR 350 #define ELLIPSIS 351 #define MULTassign 352 #define DIVassign 353 #define MODassign 354 #define PLUSassign 355 #define MINUSassign 356 #define LSassign 357 #define RSassign 358 #define ANDassign 359 #define ERassign 360 #define ORassign 361 #define ATassign 362 #define REFassign 363 #define THEN 364 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 112 "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 364 "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 376 "Parser/parser.cc" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 251 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 11311 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 134 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 241 /* YYNRULES -- Number of rules. */ #define YYNRULES 756 /* YYNRULES -- Number of states. */ #define YYNSTATES 1583 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 364 #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, 123, 2, 2, 2, 126, 120, 2, 110, 111, 119, 121, 117, 122, 114, 125, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 118, 133, 127, 132, 128, 131, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 112, 2, 113, 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, 2, 115, 130, 116, 124, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 34, 36, 38, 42, 46, 48, 55, 60, 64, 72, 76, 84, 87, 90, 98, 103, 105, 109, 110, 112, 116, 124, 134, 136, 140, 142, 146, 154, 158, 166, 168, 170, 172, 175, 178, 181, 184, 187, 190, 195, 202, 204, 209, 214, 217, 222, 225, 227, 229, 231, 233, 235, 237, 239, 244, 249, 251, 255, 259, 263, 265, 269, 273, 275, 279, 283, 285, 289, 293, 297, 301, 303, 307, 311, 313, 317, 319, 323, 325, 329, 331, 335, 337, 341, 343, 349, 354, 360, 362, 364, 368, 372, 376, 379, 380, 382, 385, 391, 398, 406, 408, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 438, 439, 441, 443, 445, 447, 449, 451, 453, 455, 457, 464, 469, 472, 480, 482, 486, 488, 491, 493, 496, 498, 501, 504, 510, 518, 524, 534, 540, 550, 552, 556, 558, 560, 564, 568, 571, 573, 576, 579, 580, 582, 585, 589, 590, 592, 595, 599, 603, 608, 609, 611, 613, 616, 622, 630, 637, 644, 649, 653, 658, 661, 665, 668, 672, 676, 680, 684, 690, 694, 698, 703, 705, 711, 718, 724, 731, 741, 752, 762, 773, 776, 778, 781, 784, 787, 789, 796, 805, 816, 829, 844, 845, 847, 848, 850, 852, 856, 861, 869, 870, 872, 876, 878, 882, 884, 886, 888, 892, 894, 896, 898, 902, 903, 905, 909, 914, 916, 920, 922, 924, 928, 932, 936, 940, 944, 947, 951, 958, 962, 966, 971, 973, 976, 979, 983, 989, 998, 1006, 1014, 1020, 1030, 1033, 1036, 1042, 1046, 1052, 1057, 1061, 1066, 1071, 1079, 1083, 1087, 1091, 1095, 1100, 1107, 1109, 1111, 1113, 1115, 1117, 1119, 1121, 1123, 1124, 1126, 1128, 1131, 1133, 1135, 1137, 1139, 1141, 1143, 1145, 1146, 1152, 1154, 1157, 1161, 1163, 1166, 1168, 1170, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, 1204, 1206, 1208, 1210, 1212, 1215, 1218, 1222, 1226, 1228, 1232, 1234, 1237, 1240, 1243, 1248, 1253, 1258, 1263, 1265, 1268, 1271, 1275, 1277, 1280, 1283, 1285, 1288, 1291, 1295, 1297, 1300, 1303, 1305, 1307, 1312, 1315, 1316, 1323, 1331, 1334, 1337, 1340, 1342, 1345, 1348, 1352, 1355, 1359, 1361, 1364, 1368, 1371, 1374, 1379, 1380, 1382, 1385, 1388, 1390, 1391, 1393, 1396, 1399, 1405, 1408, 1409, 1417, 1420, 1425, 1426, 1429, 1430, 1432, 1434, 1436, 1442, 1448, 1454, 1456, 1462, 1468, 1478, 1480, 1486, 1487, 1489, 1491, 1497, 1499, 1501, 1507, 1513, 1515, 1519, 1523, 1528, 1530, 1532, 1534, 1536, 1539, 1541, 1545, 1549, 1551, 1554, 1556, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1585, 1587, 1589, 1591, 1594, 1595, 1598, 1601, 1603, 1608, 1609, 1611, 1614, 1618, 1623, 1626, 1629, 1631, 1634, 1636, 1639, 1645, 1651, 1659, 1666, 1668, 1671, 1674, 1678, 1680, 1683, 1686, 1691, 1694, 1699, 1700, 1705, 1708, 1710, 1712, 1714, 1715, 1718, 1724, 1730, 1744, 1746, 1748, 1752, 1756, 1759, 1763, 1767, 1770, 1775, 1777, 1784, 1794, 1795, 1807, 1809, 1813, 1817, 1821, 1823, 1825, 1831, 1834, 1840, 1841, 1843, 1845, 1849, 1850, 1852, 1854, 1856, 1858, 1859, 1866, 1869, 1871, 1874, 1879, 1882, 1886, 1890, 1894, 1899, 1905, 1911, 1917, 1924, 1926, 1928, 1930, 1934, 1935, 1941, 1942, 1944, 1946, 1949, 1956, 1958, 1962, 1963, 1965, 1970, 1972, 1974, 1976, 1978, 1981, 1983, 1986, 1989, 1991, 1995, 1998, 2002, 2006, 2009, 2014, 2019, 2023, 2032, 2036, 2039, 2041, 2044, 2051, 2060, 2064, 2067, 2071, 2075, 2080, 2085, 2089, 2091, 2093, 2095, 2100, 2107, 2111, 2114, 2118, 2122, 2127, 2132, 2136, 2139, 2141, 2144, 2147, 2149, 2153, 2156, 2160, 2164, 2167, 2172, 2177, 2181, 2188, 2197, 2201, 2204, 2206, 2209, 2212, 2215, 2219, 2223, 2226, 2231, 2236, 2240, 2247, 2256, 2260, 2263, 2265, 2268, 2271, 2273, 2275, 2278, 2282, 2286, 2289, 2294, 2301, 2310, 2312, 2315, 2318, 2320, 2323, 2326, 2330, 2334, 2336, 2341, 2346, 2350, 2356, 2365, 2369, 2372, 2376, 2378, 2384, 2390, 2397, 2404, 2406, 2409, 2412, 2414, 2417, 2420, 2424, 2428, 2430, 2435, 2440, 2444, 2450, 2459, 2463, 2465, 2468, 2470, 2473, 2480, 2486, 2493, 2501, 2509, 2511, 2514, 2517, 2519, 2522, 2525, 2529, 2533, 2535, 2540, 2545, 2549, 2558, 2562, 2564, 2566, 2569, 2571, 2573, 2576, 2580, 2583, 2587, 2590, 2594, 2598, 2601, 2606, 2610, 2613, 2617, 2620, 2625, 2629, 2632, 2639, 2646, 2653, 2661, 2663, 2666, 2668, 2670, 2672, 2675, 2679, 2682, 2686, 2689, 2693, 2697, 2702, 2705, 2709, 2714, 2717, 2723, 2729, 2736, 2743, 2744, 2746, 2747 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 303, 0, -1, -1, -1, 79, -1, 80, -1, 81, -1, 72, -1, 76, -1, 141, -1, 72, -1, 76, -1, 72, -1, 141, -1, 83, -1, 84, -1, 82, -1, 142, 82, -1, 72, -1, 141, -1, 110, 170, 111, -1, 110, 174, 111, -1, 143, -1, 144, 112, 135, 165, 136, 113, -1, 144, 110, 145, 111, -1, 144, 114, 140, -1, 144, 114, 112, 135, 147, 136, 113, -1, 144, 85, 140, -1, 144, 85, 112, 135, 147, 136, 113, -1, 144, 86, -1, 144, 87, -1, 110, 276, 111, 115, 280, 373, 116, -1, 144, 115, 145, 116, -1, 146, -1, 145, 117, 146, -1, -1, 165, -1, 140, 118, 165, -1, 112, 135, 165, 136, 113, 118, 165, -1, 112, 135, 165, 117, 168, 136, 113, 118, 165, -1, 148, -1, 147, 117, 148, -1, 140, -1, 140, 114, 148, -1, 140, 114, 112, 135, 147, 136, 113, -1, 140, 85, 148, -1, 140, 85, 112, 135, 147, 136, 113, -1, 144, -1, 137, -1, 142, -1, 40, 152, -1, 150, 152, -1, 151, 152, -1, 86, 149, -1, 87, 149, -1, 37, 149, -1, 37, 110, 276, 111, -1, 38, 110, 276, 117, 140, 111, -1, 76, -1, 76, 110, 277, 111, -1, 76, 110, 146, 111, -1, 66, 149, -1, 66, 110, 276, 111, -1, 94, 140, -1, 119, -1, 120, -1, 121, -1, 122, -1, 123, -1, 124, -1, 149, -1, 110, 276, 111, 152, -1, 110, 276, 111, 167, -1, 152, -1, 153, 119, 152, -1, 153, 125, 152, -1, 153, 126, 152, -1, 153, -1, 154, 121, 153, -1, 154, 122, 153, -1, 154, -1, 155, 88, 154, -1, 155, 89, 154, -1, 155, -1, 156, 127, 155, -1, 156, 128, 155, -1, 156, 90, 155, -1, 156, 91, 155, -1, 156, -1, 157, 92, 156, -1, 157, 93, 156, -1, 157, -1, 158, 120, 157, -1, 158, -1, 159, 129, 158, -1, 159, -1, 160, 130, 159, -1, 160, -1, 161, 94, 160, -1, 161, -1, 162, 95, 161, -1, 162, -1, 162, 131, 170, 118, 163, -1, 162, 131, 118, 163, -1, 162, 131, 170, 118, 167, -1, 163, -1, 163, -1, 149, 132, 165, -1, 149, 108, 165, -1, 149, 169, 165, -1, 167, 374, -1, -1, 165, -1, 112, 113, -1, 112, 135, 165, 136, 113, -1, 112, 135, 117, 168, 136, 113, -1, 112, 135, 165, 117, 168, 136, 113, -1, 166, -1, 168, 117, 166, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 165, -1, 170, 117, 165, -1, -1, 170, -1, 173, -1, 174, -1, 178, -1, 179, -1, 191, -1, 193, -1, 194, -1, 199, -1, 129, 144, 115, 145, 116, 133, -1, 140, 118, 313, 172, -1, 115, 116, -1, 115, 135, 135, 210, 175, 136, 116, -1, 176, -1, 175, 135, 176, -1, 213, -1, 40, 213, -1, 309, -1, 172, 136, -1, 172, -1, 177, 172, -1, 171, 133, -1, 41, 110, 170, 111, 172, -1, 41, 110, 170, 111, 172, 42, 172, -1, 43, 110, 170, 111, 184, -1, 43, 110, 170, 111, 115, 135, 206, 185, 116, -1, 53, 110, 170, 111, 184, -1, 53, 110, 170, 111, 115, 135, 206, 187, 116, -1, 164, -1, 164, 96, 164, -1, 311, -1, 180, -1, 181, 117, 180, -1, 44, 181, 118, -1, 45, 118, -1, 182, -1, 183, 182, -1, 183, 172, -1, -1, 186, -1, 183, 177, -1, 186, 183, 177, -1, -1, 188, -1, 183, 190, -1, 183, 177, 189, -1, 188, 183, 190, -1, 188, 183, 177, 189, -1, -1, 190, -1, 56, -1, 56, 133, -1, 47, 110, 170, 111, 172, -1, 46, 172, 47, 110, 170, 111, 133, -1, 48, 110, 135, 192, 111, 172, -1, 171, 136, 133, 171, 133, 171, -1, 213, 171, 133, 171, -1, 51, 140, 133, -1, 51, 119, 170, 133, -1, 50, 133, -1, 50, 140, 133, -1, 49, 133, -1, 49, 140, 133, -1, 52, 171, 133, -1, 61, 166, 133, -1, 62, 166, 133, -1, 62, 166, 63, 165, 133, -1, 57, 174, 195, -1, 57, 174, 197, -1, 57, 174, 195, 197, -1, 196, -1, 58, 110, 96, 111, 174, -1, 196, 58, 110, 96, 111, 174, -1, 59, 110, 96, 111, 174, -1, 196, 59, 110, 96, 111, 174, -1, 58, 110, 135, 135, 198, 136, 111, 174, 136, -1, 196, 58, 110, 135, 135, 198, 136, 111, 174, 136, -1, 59, 110, 135, 135, 198, 136, 111, 174, 136, -1, 196, 59, 110, 135, 135, 198, 136, 111, 174, 136, -1, 60, 174, -1, 226, -1, 226, 310, -1, 226, 358, -1, 367, 140, -1, 367, -1, 64, 200, 110, 142, 111, 133, -1, 64, 200, 110, 142, 118, 201, 111, 133, -1, 64, 200, 110, 142, 118, 201, 118, 201, 111, 133, -1, 64, 200, 110, 142, 118, 201, 118, 201, 118, 204, 111, 133, -1, 64, 200, 51, 110, 142, 118, 118, 201, 118, 204, 118, 205, 111, 133, -1, -1, 11, -1, -1, 202, -1, 203, -1, 202, 117, 203, -1, 142, 110, 164, 111, -1, 112, 164, 113, 142, 110, 164, 111, -1, -1, 142, -1, 204, 117, 142, -1, 140, -1, 205, 117, 140, -1, 136, -1, 207, -1, 213, -1, 207, 135, 213, -1, 136, -1, 209, -1, 223, -1, 209, 135, 223, -1, -1, 211, -1, 29, 212, 133, -1, 211, 29, 212, 133, -1, 275, -1, 212, 117, 275, -1, 214, -1, 223, -1, 215, 136, 133, -1, 220, 136, 133, -1, 217, 136, 133, -1, 294, 136, 133, -1, 297, 136, 133, -1, 216, 278, -1, 232, 216, 278, -1, 215, 136, 117, 135, 273, 278, -1, 368, 273, 312, -1, 371, 273, 312, -1, 228, 371, 273, 312, -1, 218, -1, 228, 218, -1, 232, 218, -1, 232, 228, 218, -1, 217, 136, 117, 135, 273, -1, 112, 113, 273, 110, 135, 261, 136, 111, -1, 371, 273, 110, 135, 261, 136, 111, -1, 219, 273, 110, 135, 261, 136, 111, -1, 112, 135, 263, 136, 113, -1, 112, 135, 263, 136, 117, 135, 264, 136, 113, -1, 3, 216, -1, 3, 218, -1, 220, 136, 117, 135, 140, -1, 3, 226, 310, -1, 221, 136, 117, 135, 310, -1, 228, 3, 226, 310, -1, 226, 3, 310, -1, 226, 3, 228, 310, -1, 3, 140, 132, 165, -1, 222, 136, 117, 135, 140, 132, 165, -1, 224, 136, 133, -1, 221, 136, 133, -1, 222, 136, 133, -1, 241, 136, 133, -1, 225, 310, 312, 278, -1, 224, 117, 313, 310, 312, 278, -1, 237, -1, 241, -1, 243, -1, 284, -1, 238, -1, 242, -1, 244, -1, 285, -1, -1, 228, -1, 229, -1, 228, 229, -1, 230, -1, 315, -1, 10, -1, 12, -1, 11, -1, 14, -1, 67, -1, -1, 13, 110, 231, 287, 111, -1, 233, -1, 228, 233, -1, 232, 228, 233, -1, 234, -1, 233, 234, -1, 235, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 69, -1, 71, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 25, -1, 26, -1, 27, -1, 24, -1, 238, -1, 232, 238, -1, 237, 234, -1, 237, 234, 228, -1, 237, 234, 238, -1, 239, -1, 227, 240, 227, -1, 236, -1, 228, 236, -1, 239, 229, -1, 239, 236, -1, 28, 110, 277, 111, -1, 28, 110, 170, 111, -1, 78, 110, 277, 111, -1, 78, 110, 170, 111, -1, 242, -1, 232, 242, -1, 241, 234, -1, 241, 234, 228, -1, 245, -1, 228, 245, -1, 242, 229, -1, 244, -1, 232, 244, -1, 243, 234, -1, 243, 234, 228, -1, 74, -1, 228, 74, -1, 244, 229, -1, 246, -1, 257, -1, 248, 115, 249, 116, -1, 248, 275, -1, -1, 248, 275, 247, 115, 249, 116, -1, 248, 110, 293, 111, 115, 249, 116, -1, 248, 286, -1, 31, 313, -1, 32, 313, -1, 250, -1, 249, 250, -1, 251, 133, -1, 40, 251, 133, -1, 252, 133, -1, 40, 252, 133, -1, 367, -1, 367, 275, -1, 251, 117, 275, -1, 251, 117, -1, 226, 253, -1, 252, 117, 313, 253, -1, -1, 255, -1, 319, 254, -1, 332, 254, -1, 358, -1, -1, 255, -1, 118, 164, -1, 30, 313, -1, 256, 115, 259, 373, 116, -1, 256, 275, -1, -1, 256, 275, 258, 115, 259, 373, 116, -1, 275, 260, -1, 259, 117, 275, 260, -1, -1, 132, 164, -1, -1, 262, -1, 264, -1, 263, -1, 263, 136, 117, 135, 264, -1, 264, 136, 117, 135, 96, -1, 263, 136, 117, 135, 96, -1, 268, -1, 264, 136, 117, 135, 268, -1, 263, 136, 117, 135, 268, -1, 263, 136, 117, 135, 264, 136, 117, 135, 268, -1, 269, -1, 264, 136, 117, 135, 269, -1, -1, 266, -1, 267, -1, 267, 136, 117, 135, 96, -1, 271, -1, 270, -1, 267, 136, 117, 135, 271, -1, 267, 136, 117, 135, 270, -1, 270, -1, 363, 273, 374, -1, 371, 273, 374, -1, 228, 371, 273, 374, -1, 218, -1, 271, -1, 363, -1, 371, -1, 228, 371, -1, 372, -1, 225, 337, 374, -1, 225, 341, 374, -1, 225, -1, 225, 352, -1, 140, -1, 272, 117, 140, -1, 138, -1, 74, -1, 75, -1, 139, -1, 74, -1, 75, -1, 140, -1, 74, -1, 75, -1, 367, -1, 226, -1, 226, 358, -1, 367, -1, 372, -1, 226, -1, 226, 346, -1, -1, 132, 279, -1, 107, 279, -1, 165, -1, 115, 280, 373, 116, -1, -1, 279, -1, 281, 279, -1, 280, 117, 279, -1, 280, 117, 281, 279, -1, 282, 118, -1, 275, 118, -1, 283, -1, 282, 283, -1, 80, -1, 114, 275, -1, 112, 135, 165, 136, 113, -1, 112, 135, 311, 136, 113, -1, 112, 135, 164, 96, 164, 136, 113, -1, 114, 112, 135, 147, 136, 113, -1, 285, -1, 232, 285, -1, 284, 234, -1, 284, 234, 228, -1, 286, -1, 228, 286, -1, 285, 229, -1, 75, 110, 293, 111, -1, 288, 374, -1, 287, 117, 288, 374, -1, -1, 290, 275, 289, 291, -1, 226, 337, -1, 33, -1, 35, -1, 34, -1, -1, 291, 292, -1, 130, 275, 110, 293, 111, -1, 130, 115, 135, 299, 116, -1, 130, 110, 135, 287, 136, 111, 115, 135, 299, 116, 110, 293, 111, -1, 277, -1, 165, -1, 293, 117, 277, -1, 293, 117, 165, -1, 33, 295, -1, 233, 33, 295, -1, 294, 117, 295, -1, 296, 291, -1, 296, 291, 132, 277, -1, 275, -1, 274, 110, 135, 287, 136, 111, -1, 36, 275, 110, 135, 287, 136, 111, 115, 116, -1, -1, 36, 275, 110, 135, 287, 136, 111, 115, 298, 299, 116, -1, 300, -1, 299, 135, 300, -1, 301, 136, 133, -1, 302, 136, 133, -1, 216, -1, 218, -1, 301, 136, 117, 135, 273, -1, 226, 310, -1, 302, 136, 117, 135, 310, -1, -1, 304, -1, 306, -1, 304, 135, 306, -1, -1, 304, -1, 213, -1, 308, -1, 199, -1, -1, 5, 82, 307, 115, 305, 116, -1, 40, 306, -1, 309, -1, 324, 174, -1, 328, 135, 208, 174, -1, 217, 174, -1, 225, 324, 174, -1, 228, 324, 174, -1, 232, 324, 174, -1, 232, 228, 324, 174, -1, 225, 328, 135, 208, 174, -1, 228, 328, 135, 208, 174, -1, 232, 328, 135, 208, 174, -1, 232, 228, 328, 135, 208, 174, -1, 319, -1, 324, -1, 332, -1, 164, 124, 164, -1, -1, 64, 110, 142, 111, 313, -1, -1, 314, -1, 315, -1, 314, 315, -1, 39, 110, 110, 316, 111, 111, -1, 317, -1, 316, 117, 317, -1, -1, 318, -1, 318, 110, 171, 111, -1, 273, -1, 235, -1, 236, -1, 229, -1, 320, 313, -1, 321, -1, 322, 313, -1, 323, 313, -1, 138, -1, 110, 320, 111, -1, 150, 319, -1, 150, 228, 319, -1, 110, 321, 111, -1, 320, 350, -1, 110, 321, 111, 350, -1, 110, 322, 111, 351, -1, 110, 322, 111, -1, 110, 321, 111, 110, 135, 265, 136, 111, -1, 110, 323, 111, -1, 325, 313, -1, 326, -1, 327, 313, -1, 320, 110, 135, 265, 136, 111, -1, 110, 326, 111, 110, 135, 265, 136, 111, -1, 110, 325, 111, -1, 150, 324, -1, 150, 228, 324, -1, 110, 326, 111, -1, 110, 326, 111, 350, -1, 110, 327, 111, 351, -1, 110, 327, 111, -1, 329, -1, 330, -1, 331, -1, 320, 110, 272, 111, -1, 110, 330, 111, 110, 272, 111, -1, 110, 329, 111, -1, 150, 328, -1, 150, 228, 328, -1, 110, 330, 111, -1, 110, 330, 111, 350, -1, 110, 331, 111, 351, -1, 110, 331, 111, -1, 333, 313, -1, 334, -1, 335, 313, -1, 336, 313, -1, 342, -1, 110, 333, 111, -1, 150, 332, -1, 150, 228, 332, -1, 110, 334, 111, -1, 333, 350, -1, 110, 334, 111, 350, -1, 110, 335, 111, 351, -1, 110, 335, 111, -1, 333, 110, 135, 265, 136, 111, -1, 110, 334, 111, 110, 135, 265, 136, 111, -1, 110, 336, 111, -1, 320, 313, -1, 338, -1, 339, 313, -1, 340, 313, -1, 150, 337, -1, 150, 228, 337, -1, 110, 338, 111, -1, 320, 356, -1, 110, 338, 111, 350, -1, 110, 339, 111, 351, -1, 110, 339, 111, -1, 320, 110, 135, 265, 136, 111, -1, 110, 338, 111, 110, 135, 265, 136, 111, -1, 110, 340, 111, -1, 342, 313, -1, 343, -1, 344, 313, -1, 345, 313, -1, 74, -1, 75, -1, 150, 341, -1, 150, 228, 341, -1, 110, 343, 111, -1, 342, 356, -1, 110, 343, 111, 356, -1, 342, 110, 135, 265, 136, 111, -1, 110, 343, 111, 110, 135, 265, 136, 111, -1, 347, -1, 348, 313, -1, 349, 313, -1, 150, -1, 150, 228, -1, 150, 346, -1, 150, 228, 346, -1, 110, 347, 111, -1, 350, -1, 110, 347, 111, 350, -1, 110, 348, 111, 351, -1, 110, 348, 111, -1, 110, 135, 265, 136, 111, -1, 110, 347, 111, 110, 135, 265, 136, 111, -1, 110, 349, 111, -1, 112, 113, -1, 112, 113, 351, -1, 351, -1, 112, 135, 165, 136, 113, -1, 112, 135, 119, 136, 113, -1, 351, 112, 135, 165, 136, 113, -1, 351, 112, 135, 119, 136, 113, -1, 353, -1, 354, 313, -1, 355, 313, -1, 150, -1, 150, 228, -1, 150, 352, -1, 150, 228, 352, -1, 110, 353, 111, -1, 356, -1, 110, 353, 111, 356, -1, 110, 354, 111, 351, -1, 110, 354, 111, -1, 110, 135, 265, 136, 111, -1, 110, 353, 111, 110, 135, 265, 136, 111, -1, 110, 355, 111, -1, 357, -1, 357, 351, -1, 351, -1, 112, 113, -1, 112, 135, 228, 119, 136, 113, -1, 112, 135, 228, 136, 113, -1, 112, 135, 228, 165, 136, 113, -1, 112, 135, 7, 227, 165, 136, 113, -1, 112, 135, 228, 7, 165, 136, 113, -1, 359, -1, 360, 313, -1, 361, 313, -1, 150, -1, 150, 228, -1, 150, 358, -1, 150, 228, 358, -1, 110, 359, 111, -1, 350, -1, 110, 359, 111, 350, -1, 110, 360, 111, 351, -1, 110, 360, 111, -1, 110, 359, 111, 110, 135, 265, 136, 111, -1, 110, 361, 111, -1, 363, -1, 371, -1, 228, 371, -1, 364, -1, 365, -1, 150, 226, -1, 228, 150, 226, -1, 150, 372, -1, 228, 150, 372, -1, 150, 362, -1, 228, 150, 362, -1, 112, 113, 226, -1, 366, 226, -1, 112, 113, 351, 226, -1, 366, 351, 226, -1, 351, 226, -1, 112, 113, 364, -1, 366, 364, -1, 112, 113, 351, 364, -1, 366, 351, 364, -1, 351, 364, -1, 112, 135, 228, 119, 136, 113, -1, 112, 135, 228, 165, 136, 113, -1, 112, 135, 232, 165, 136, 113, -1, 112, 135, 232, 228, 165, 136, 113, -1, 371, -1, 228, 371, -1, 368, -1, 369, -1, 370, -1, 150, 226, -1, 228, 150, 226, -1, 150, 372, -1, 228, 150, 372, -1, 150, 367, -1, 228, 150, 367, -1, 112, 113, 226, -1, 112, 113, 351, 226, -1, 351, 226, -1, 112, 113, 369, -1, 112, 113, 351, 369, -1, 351, 369, -1, 112, 135, 264, 136, 113, -1, 112, 113, 110, 261, 111, -1, 371, 110, 135, 261, 136, 111, -1, 219, 110, 135, 261, 136, 111, -1, -1, 117, -1, -1, 132, 165, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 292, 292, 298, 307, 308, 309, 313, 314, 315, 319, 320, 324, 325, 329, 330, 334, 335, 341, 343, 345, 347, 352, 353, 359, 363, 365, 366, 368, 369, 371, 373, 375, 383, 384, 390, 391, 392, 397, 399, 404, 405, 409, 413, 415, 417, 419, 424, 427, 429, 431, 433, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 465, 466, 470, 471, 472, 473, 477, 478, 480, 485, 486, 488, 490, 495, 496, 498, 503, 504, 506, 511, 512, 514, 516, 518, 523, 524, 526, 531, 532, 537, 538, 543, 544, 549, 550, 555, 556, 561, 562, 564, 566, 571, 576, 577, 579, 581, 583, 589, 590, 596, 598, 600, 602, 607, 608, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 626, 627, 633, 634, 640, 641, 642, 643, 644, 645, 646, 647, 648, 657, 664, 666, 676, 677, 682, 684, 686, 688, 692, 693, 698, 703, 706, 708, 710, 715, 717, 725, 726, 728, 732, 733, 738, 739, 744, 745, 749, 754, 755, 759, 761, 767, 768, 772, 774, 776, 778, 784, 785, 789, 790, 794, 796, 798, 803, 805, 810, 812, 816, 819, 823, 826, 830, 832, 836, 838, 845, 847, 849, 858, 860, 862, 864, 866, 871, 873, 875, 877, 882, 895, 896, 901, 903, 908, 912, 914, 916, 918, 920, 926, 927, 933, 934, 938, 939, 944, 946, 952, 953, 955, 960, 962, 969, 971, 975, 976, 981, 983, 987, 988, 992, 994, 998, 999, 1003, 1004, 1008, 1009, 1024, 1025, 1026, 1027, 1028, 1032, 1037, 1044, 1054, 1059, 1064, 1072, 1077, 1082, 1087, 1092, 1100, 1122, 1127, 1134, 1136, 1143, 1148, 1153, 1164, 1169, 1174, 1179, 1184, 1193, 1198, 1206, 1207, 1208, 1209, 1215, 1220, 1228, 1229, 1230, 1231, 1235, 1236, 1237, 1238, 1243, 1244, 1253, 1254, 1259, 1260, 1265, 1267, 1269, 1271, 1273, 1276, 1275, 1287, 1288, 1290, 1300, 1301, 1306, 1310, 1312, 1314, 1316, 1318, 1320, 1322, 1324, 1329, 1331, 1333, 1335, 1337, 1339, 1341, 1343, 1345, 1347, 1349, 1351, 1353, 1359, 1360, 1362, 1364, 1366, 1371, 1372, 1378, 1379, 1381, 1383, 1388, 1390, 1392, 1394, 1399, 1400, 1402, 1404, 1409, 1410, 1412, 1417, 1418, 1420, 1422, 1427, 1429, 1431, 1436, 1437, 1441, 1443, 1449, 1448, 1452, 1454, 1459, 1461, 1466, 1468, 1473, 1474, 1476, 1477, 1482, 1483, 1485, 1487, 1492, 1494, 1500, 1501, 1503, 1506, 1509, 1514, 1515, 1520, 1525, 1529, 1531, 1537, 1536, 1543, 1545, 1551, 1552, 1560, 1561, 1565, 1566, 1567, 1569, 1571, 1578, 1579, 1581, 1583, 1588, 1589, 1595, 1596, 1600, 1601, 1606, 1607, 1608, 1610, 1618, 1619, 1621, 1624, 1626, 1630, 1631, 1632, 1634, 1636, 1640, 1645, 1653, 1654, 1663, 1665, 1670, 1671, 1672, 1676, 1677, 1678, 1682, 1683, 1684, 1688, 1689, 1690, 1695, 1696, 1697, 1698, 1704, 1705, 1707, 1712, 1713, 1718, 1719, 1720, 1721, 1722, 1737, 1738, 1743, 1744, 1752, 1754, 1756, 1759, 1761, 1763, 1786, 1787, 1789, 1791, 1796, 1797, 1799, 1804, 1809, 1810, 1816, 1815, 1819, 1823, 1825, 1827, 1833, 1834, 1839, 1844, 1846, 1851, 1853, 1854, 1856, 1861, 1863, 1865, 1870, 1872, 1877, 1882, 1890, 1896, 1895, 1909, 1910, 1915, 1916, 1920, 1925, 1930, 1938, 1943, 1954, 1955, 1966, 1967, 1973, 1974, 1978, 1979, 1980, 1983, 1982, 1993, 1998, 2003, 2009, 2018, 2024, 2030, 2036, 2042, 2050, 2056, 2064, 2070, 2079, 2080, 2081, 2085, 2089, 2091, 2096, 2097, 2101, 2102, 2107, 2113, 2114, 2117, 2119, 2120, 2124, 2125, 2126, 2127, 2161, 2163, 2164, 2166, 2171, 2176, 2181, 2183, 2185, 2190, 2192, 2194, 2196, 2201, 2203, 2213, 2215, 2216, 2221, 2223, 2225, 2230, 2232, 2234, 2239, 2241, 2243, 2252, 2253, 2254, 2258, 2260, 2262, 2267, 2269, 2271, 2276, 2278, 2280, 2295, 2297, 2298, 2300, 2305, 2306, 2311, 2313, 2315, 2320, 2322, 2324, 2326, 2331, 2333, 2335, 2345, 2347, 2348, 2350, 2355, 2357, 2359, 2364, 2366, 2368, 2370, 2375, 2377, 2379, 2410, 2412, 2413, 2415, 2420, 2425, 2433, 2435, 2437, 2442, 2444, 2449, 2451, 2465, 2466, 2468, 2473, 2475, 2477, 2479, 2481, 2486, 2487, 2489, 2491, 2496, 2498, 2500, 2506, 2508, 2510, 2514, 2516, 2518, 2520, 2534, 2535, 2537, 2542, 2544, 2546, 2548, 2550, 2555, 2556, 2558, 2560, 2565, 2567, 2569, 2575, 2576, 2578, 2587, 2590, 2592, 2595, 2597, 2599, 2612, 2613, 2615, 2620, 2622, 2624, 2626, 2628, 2633, 2634, 2636, 2638, 2643, 2645, 2653, 2654, 2655, 2660, 2661, 2665, 2667, 2669, 2671, 2673, 2675, 2682, 2684, 2686, 2688, 2690, 2692, 2694, 2696, 2698, 2700, 2705, 2707, 2709, 2714, 2740, 2741, 2743, 2747, 2748, 2752, 2754, 2756, 2758, 2760, 2762, 2769, 2771, 2773, 2775, 2777, 2779, 2784, 2789, 2791, 2793, 2811, 2813, 2818, 2819 }; #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", "VALIST", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "OTYPE", "FTYPE", "DTYPE", "TRAIT", "SIZEOF", "OFFSETOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "DISABLE", "ENABLE", "FALLTHRU", "TRY", "CATCH", "CATCHRESUME", "FINALLY", "THROW", "THROWRESUME", "AT", "ASM", "ALIGNAS", "ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT", "THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "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", "REFassign", "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", "ptrref_operator", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "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", "$@2", "aggregate_key", "field_declaration_list", "field_declaration", "new_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name", "$@3", "enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt", "new_parameter_type_list", "new_parameter_list", "new_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "new_parameter_declaration", "new_abstract_parameter_declaration", "parameter_declaration", "abstract_parameter_declaration", "identifier_list", "identifier_or_type_name", "no_01_identifier_or_type_name", "no_attr_identifier_or_type_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "typegen_name", "type_parameter_list", "type_parameter", "$@4", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "trait_specifier", "$@5", "trait_declaration_list", "trait_declaration", "new_trait_declaring_list", "trait_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@6", "external_function_definition", "function_definition", "declarator", "subrange", "asm_name_opt", "attribute_list_opt", "attribute_list", "attribute", "attribute_parameter_list", "attrib", "any_word", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "old_function_declarator", "old_function_no_ptr", "old_function_ptr", "old_function_array", "type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 40, 41, 91, 93, 46, 123, 125, 44, 58, 42, 38, 43, 45, 33, 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, 134, 135, 136, 137, 137, 137, 138, 138, 138, 139, 139, 140, 140, 141, 141, 142, 142, 143, 143, 143, 143, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 145, 145, 146, 146, 146, 146, 146, 147, 147, 148, 148, 148, 148, 148, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 150, 150, 151, 151, 151, 151, 152, 152, 152, 153, 153, 153, 153, 154, 154, 154, 155, 155, 155, 156, 156, 156, 156, 156, 157, 157, 157, 158, 158, 159, 159, 160, 160, 161, 161, 162, 162, 163, 163, 163, 163, 164, 165, 165, 165, 165, 165, 166, 166, 167, 167, 167, 167, 168, 168, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 170, 170, 171, 171, 172, 172, 172, 172, 172, 172, 172, 172, 172, 173, 174, 174, 175, 175, 176, 176, 176, 176, 177, 177, 178, 179, 179, 179, 179, 179, 179, 180, 180, 180, 181, 181, 182, 182, 183, 183, 184, 185, 185, 186, 186, 187, 187, 188, 188, 188, 188, 189, 189, 190, 190, 191, 191, 191, 192, 192, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 194, 194, 194, 195, 195, 195, 195, 195, 196, 196, 196, 196, 197, 198, 198, 198, 198, 198, 199, 199, 199, 199, 199, 200, 200, 201, 201, 202, 202, 203, 203, 204, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 213, 213, 214, 214, 214, 214, 214, 215, 215, 215, 216, 216, 216, 217, 217, 217, 217, 217, 218, 218, 218, 219, 219, 220, 220, 220, 221, 221, 221, 221, 221, 222, 222, 223, 223, 223, 223, 224, 224, 225, 225, 225, 225, 226, 226, 226, 226, 227, 227, 228, 228, 229, 229, 230, 230, 230, 230, 230, 231, 230, 232, 232, 232, 233, 233, 234, 235, 235, 235, 235, 235, 235, 235, 235, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 236, 237, 237, 237, 237, 237, 238, 238, 239, 239, 239, 239, 240, 240, 240, 240, 241, 241, 241, 241, 242, 242, 242, 243, 243, 243, 243, 244, 244, 244, 245, 245, 246, 246, 247, 246, 246, 246, 248, 248, 249, 249, 250, 250, 250, 250, 251, 251, 251, 251, 252, 252, 253, 253, 253, 253, 253, 254, 254, 255, 256, 257, 257, 258, 257, 259, 259, 260, 260, 261, 261, 262, 262, 262, 262, 262, 263, 263, 263, 263, 264, 264, 265, 265, 266, 266, 267, 267, 267, 267, 268, 268, 268, 268, 268, 269, 269, 269, 269, 269, 270, 270, 271, 271, 272, 272, 273, 273, 273, 274, 274, 274, 275, 275, 275, 276, 276, 276, 277, 277, 277, 277, 278, 278, 278, 279, 279, 280, 280, 280, 280, 280, 281, 281, 282, 282, 283, 283, 283, 283, 283, 283, 284, 284, 284, 284, 285, 285, 285, 286, 287, 287, 289, 288, 288, 290, 290, 290, 291, 291, 292, 292, 292, 293, 293, 293, 293, 294, 294, 294, 295, 295, 296, 296, 297, 298, 297, 299, 299, 300, 300, 301, 301, 301, 302, 302, 303, 303, 304, 304, 305, 305, 306, 306, 306, 307, 306, 306, 308, 308, 308, 309, 309, 309, 309, 309, 309, 309, 309, 309, 310, 310, 310, 311, 312, 312, 313, 313, 314, 314, 315, 316, 316, 317, 317, 317, 318, 318, 318, 318, 319, 319, 319, 319, 320, 320, 321, 321, 321, 322, 322, 322, 322, 323, 323, 324, 324, 324, 325, 325, 325, 326, 326, 326, 327, 327, 327, 328, 328, 328, 329, 329, 329, 330, 330, 330, 331, 331, 331, 332, 332, 332, 332, 333, 333, 334, 334, 334, 335, 335, 335, 335, 336, 336, 336, 337, 337, 337, 337, 338, 338, 338, 339, 339, 339, 339, 340, 340, 340, 341, 341, 341, 341, 342, 342, 343, 343, 343, 344, 344, 345, 345, 346, 346, 346, 347, 347, 347, 347, 347, 348, 348, 348, 348, 349, 349, 349, 350, 350, 350, 351, 351, 351, 351, 352, 352, 352, 353, 353, 353, 353, 353, 354, 354, 354, 354, 355, 355, 355, 356, 356, 356, 357, 357, 357, 357, 357, 357, 358, 358, 358, 359, 359, 359, 359, 359, 360, 360, 360, 360, 361, 361, 362, 362, 362, 363, 363, 364, 364, 364, 364, 364, 364, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 366, 366, 366, 366, 367, 367, 367, 368, 368, 369, 369, 369, 369, 369, 369, 370, 370, 370, 370, 370, 370, 371, 372, 372, 372, 373, 373, 374, 374 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4, 6, 1, 4, 4, 2, 4, 2, 1, 1, 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, 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, 1, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 0, 6, 7, 2, 2, 2, 1, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 2, 0, 7, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 2, 1, 4, 0, 1, 2, 3, 4, 2, 2, 1, 2, 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[] = { 296, 296, 317, 315, 318, 316, 319, 320, 302, 304, 303, 0, 305, 331, 323, 328, 326, 327, 325, 324, 329, 330, 335, 332, 333, 334, 551, 551, 551, 0, 0, 0, 296, 222, 306, 321, 322, 7, 362, 0, 8, 14, 15, 0, 2, 64, 65, 569, 9, 296, 529, 527, 249, 3, 457, 3, 262, 0, 3, 3, 3, 250, 3, 0, 0, 0, 297, 298, 300, 296, 309, 312, 314, 343, 288, 336, 341, 289, 351, 290, 358, 355, 365, 0, 0, 366, 291, 477, 481, 3, 3, 0, 2, 523, 528, 533, 301, 0, 0, 551, 581, 551, 2, 592, 593, 594, 296, 0, 735, 736, 0, 12, 0, 13, 296, 272, 273, 0, 297, 292, 293, 294, 295, 530, 307, 395, 552, 553, 373, 374, 12, 448, 449, 11, 444, 447, 0, 507, 502, 493, 448, 449, 0, 0, 532, 223, 0, 296, 0, 0, 0, 0, 0, 0, 0, 0, 296, 296, 2, 0, 737, 297, 586, 598, 741, 734, 732, 739, 0, 0, 0, 256, 2, 0, 536, 442, 443, 441, 0, 0, 0, 0, 551, 0, 638, 639, 0, 0, 549, 545, 551, 566, 551, 551, 546, 2, 547, 551, 605, 551, 551, 608, 0, 0, 0, 296, 296, 315, 363, 2, 296, 263, 299, 310, 344, 356, 482, 0, 2, 0, 457, 264, 297, 337, 352, 359, 478, 0, 2, 0, 313, 338, 345, 346, 0, 353, 357, 360, 364, 449, 296, 296, 368, 372, 0, 397, 479, 483, 0, 0, 0, 1, 296, 2, 534, 580, 582, 296, 2, 745, 297, 748, 549, 549, 0, 297, 0, 0, 275, 551, 546, 2, 296, 0, 0, 296, 554, 2, 505, 2, 558, 0, 0, 0, 0, 0, 0, 18, 58, 4, 5, 6, 16, 0, 0, 0, 296, 2, 66, 67, 68, 69, 48, 19, 49, 22, 47, 70, 296, 0, 73, 77, 80, 83, 88, 91, 93, 95, 97, 99, 101, 106, 499, 755, 455, 498, 0, 453, 454, 0, 570, 585, 588, 591, 597, 600, 603, 362, 0, 2, 743, 0, 296, 746, 2, 64, 296, 3, 429, 0, 437, 297, 296, 309, 336, 289, 351, 358, 3, 3, 411, 415, 425, 430, 477, 296, 431, 710, 711, 296, 432, 434, 296, 2, 587, 599, 733, 2, 2, 251, 2, 462, 0, 460, 459, 458, 143, 2, 2, 253, 2, 2, 252, 2, 283, 2, 284, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 571, 610, 0, 457, 2, 565, 574, 664, 567, 568, 537, 296, 2, 604, 613, 606, 607, 0, 278, 296, 296, 342, 297, 0, 297, 0, 296, 738, 742, 740, 538, 296, 549, 257, 265, 311, 0, 2, 539, 296, 503, 339, 340, 285, 354, 361, 0, 296, 2, 387, 296, 375, 0, 0, 381, 732, 0, 753, 402, 0, 480, 504, 254, 255, 524, 296, 439, 0, 296, 239, 0, 2, 241, 0, 297, 0, 259, 2, 260, 280, 0, 0, 2, 296, 549, 296, 490, 492, 491, 0, 0, 755, 0, 296, 0, 296, 494, 296, 564, 562, 563, 561, 0, 556, 559, 0, 0, 296, 55, 296, 70, 50, 296, 61, 296, 296, 53, 54, 63, 2, 129, 0, 0, 451, 0, 450, 113, 296, 17, 0, 29, 30, 35, 2, 0, 35, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 0, 0, 0, 51, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 2, 650, 456, 647, 551, 551, 655, 484, 296, 2, 589, 590, 0, 601, 602, 0, 2, 744, 747, 113, 296, 0, 2, 712, 297, 716, 707, 708, 714, 0, 2, 2, 672, 551, 755, 621, 551, 551, 755, 551, 635, 551, 551, 686, 438, 669, 551, 551, 677, 684, 296, 433, 297, 0, 0, 296, 722, 297, 727, 755, 719, 296, 724, 755, 296, 296, 296, 0, 113, 0, 18, 5, 2, 0, 19, 0, 463, 753, 0, 0, 469, 243, 0, 296, 0, 0, 0, 549, 573, 577, 579, 609, 612, 616, 619, 572, 611, 0, 286, 662, 0, 296, 279, 0, 0, 0, 0, 277, 2, 0, 261, 540, 296, 0, 0, 0, 0, 296, 296, 0, 0, 696, 385, 388, 392, 551, 392, 701, 391, 693, 551, 551, 367, 376, 384, 377, 551, 379, 382, 296, 754, 0, 0, 400, 0, 297, 3, 418, 3, 422, 421, 595, 0, 535, 296, 64, 3, 296, 437, 297, 3, 431, 432, 2, 0, 0, 0, 489, 308, 296, 485, 487, 3, 2, 2, 0, 506, 3, 0, 558, 131, 0, 0, 224, 0, 0, 0, 2, 0, 0, 36, 0, 0, 113, 296, 20, 0, 21, 0, 696, 452, 0, 111, 3, 2, 27, 2, 0, 33, 0, 2, 25, 0, 108, 107, 109, 74, 75, 76, 78, 79, 81, 82, 86, 87, 84, 85, 89, 90, 92, 94, 96, 98, 100, 0, 0, 756, 296, 0, 0, 0, 651, 652, 648, 649, 501, 500, 296, 0, 296, 718, 296, 723, 297, 296, 666, 296, 296, 709, 665, 2, 296, 0, 0, 0, 0, 0, 0, 0, 0, 687, 0, 673, 624, 640, 674, 2, 620, 627, 435, 622, 623, 436, 2, 634, 643, 636, 637, 670, 671, 685, 713, 717, 715, 755, 270, 2, 749, 2, 426, 721, 726, 427, 0, 405, 3, 3, 3, 3, 457, 3, 0, 2, 472, 468, 754, 0, 464, 471, 2, 467, 470, 0, 296, 244, 266, 3, 274, 276, 0, 457, 2, 575, 576, 2, 614, 615, 0, 663, 541, 3, 348, 347, 350, 349, 296, 542, 0, 543, 296, 378, 380, 2, 0, 0, 0, 0, 105, 394, 697, 698, 389, 393, 390, 694, 695, 383, 387, 296, 402, 396, 403, 753, 0, 0, 440, 242, 0, 0, 3, 2, 672, 433, 0, 531, 0, 755, 493, 0, 296, 296, 296, 0, 555, 557, 132, 0, 0, 217, 0, 0, 0, 225, 226, 56, 0, 62, 296, 0, 60, 59, 0, 130, 697, 462, 71, 72, 112, 117, 3, 111, 0, 0, 0, 24, 35, 3, 0, 32, 103, 0, 3, 654, 658, 661, 653, 3, 596, 3, 720, 725, 2, 64, 296, 3, 3, 297, 0, 3, 626, 630, 633, 642, 676, 680, 683, 296, 3, 625, 641, 675, 296, 296, 428, 296, 296, 750, 0, 0, 0, 0, 258, 0, 105, 0, 3, 3, 0, 465, 0, 461, 0, 0, 247, 296, 0, 0, 131, 0, 0, 0, 0, 0, 131, 0, 0, 111, 111, 2, 0, 0, 0, 3, 133, 134, 2, 145, 135, 136, 137, 138, 139, 140, 147, 149, 0, 0, 0, 287, 296, 296, 551, 0, 544, 296, 113, 700, 704, 706, 699, 386, 370, 401, 0, 583, 2, 668, 667, 0, 673, 2, 486, 488, 508, 3, 516, 517, 0, 2, 512, 3, 3, 0, 0, 560, 224, 0, 0, 0, 224, 0, 0, 3, 37, 753, 111, 0, 3, 665, 42, 3, 40, 3, 34, 0, 3, 102, 104, 0, 2, 656, 657, 0, 0, 296, 0, 0, 0, 3, 642, 0, 2, 628, 629, 2, 644, 2, 678, 679, 0, 0, 64, 0, 3, 3, 3, 3, 413, 412, 416, 2, 2, 752, 751, 114, 0, 0, 0, 0, 3, 466, 3, 0, 245, 148, 3, 297, 296, 0, 0, 0, 0, 2, 193, 0, 191, 0, 0, 0, 0, 0, 0, 0, 0, 113, 0, 551, 153, 150, 296, 0, 0, 269, 281, 3, 3, 550, 617, 371, 2, 702, 703, 399, 296, 268, 296, 0, 519, 496, 296, 0, 0, 495, 510, 0, 0, 0, 218, 0, 227, 57, 111, 0, 0, 118, 115, 0, 0, 0, 0, 0, 0, 23, 0, 659, 296, 584, 267, 728, 729, 730, 0, 681, 296, 296, 296, 3, 3, 0, 689, 0, 0, 0, 0, 296, 296, 3, 548, 473, 474, 0, 0, 248, 297, 0, 0, 0, 0, 296, 194, 192, 0, 189, 195, 0, 0, 0, 0, 199, 202, 200, 196, 0, 197, 35, 131, 146, 144, 246, 0, 0, 296, 420, 424, 423, 0, 513, 2, 514, 2, 515, 509, 296, 230, 0, 228, 0, 230, 3, 665, 31, 116, 2, 45, 2, 43, 41, 28, 114, 26, 3, 731, 3, 3, 3, 0, 0, 688, 690, 631, 645, 271, 2, 410, 3, 409, 0, 476, 473, 131, 0, 0, 131, 3, 0, 131, 190, 0, 2, 2, 211, 201, 0, 0, 0, 0, 142, 578, 618, 3, 2, 0, 0, 2, 231, 0, 0, 219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 691, 692, 296, 0, 475, 154, 0, 0, 2, 167, 131, 156, 0, 184, 0, 131, 0, 2, 158, 0, 2, 0, 2, 2, 2, 198, 32, 0, 296, 518, 520, 511, 0, 0, 0, 0, 116, 38, 3, 3, 660, 632, 646, 682, 414, 131, 160, 163, 0, 162, 166, 3, 169, 168, 0, 131, 186, 131, 3, 0, 296, 0, 296, 0, 2, 0, 2, 141, 705, 2, 232, 233, 0, 229, 220, 0, 0, 0, 155, 0, 0, 165, 235, 170, 2, 237, 185, 0, 188, 174, 203, 3, 212, 216, 205, 3, 0, 296, 0, 296, 0, 0, 0, 39, 46, 44, 161, 164, 131, 0, 171, 296, 131, 131, 0, 175, 0, 0, 696, 213, 214, 215, 0, 204, 3, 206, 3, 296, 221, 234, 151, 172, 157, 131, 238, 187, 182, 180, 176, 159, 131, 0, 697, 0, 0, 0, 0, 152, 173, 183, 177, 181, 180, 178, 3, 3, 0, 0, 497, 179, 207, 209, 3, 3, 208, 210 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 841, 477, 302, 47, 134, 135, 303, 304, 305, 306, 787, 788, 1150, 1151, 307, 382, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 1054, 528, 998, 323, 999, 556, 975, 1081, 1547, 1083, 1084, 1085, 1086, 1548, 1087, 1088, 1464, 1465, 1426, 1427, 1428, 1526, 1527, 1531, 1532, 1567, 1568, 1089, 1384, 1090, 1091, 1318, 1319, 1320, 1508, 1092, 146, 981, 982, 983, 1405, 1489, 1500, 1501, 478, 479, 903, 904, 1062, 51, 52, 53, 54, 55, 348, 159, 58, 59, 60, 61, 62, 350, 64, 65, 265, 67, 68, 275, 352, 353, 71, 72, 73, 74, 119, 76, 205, 355, 120, 79, 121, 81, 82, 464, 83, 458, 459, 460, 461, 702, 941, 703, 84, 85, 467, 465, 723, 883, 884, 358, 359, 726, 727, 728, 360, 361, 362, 363, 475, 341, 136, 137, 532, 325, 171, 656, 657, 658, 659, 660, 86, 122, 88, 498, 499, 967, 500, 278, 504, 326, 89, 138, 139, 90, 1342, 1128, 1129, 1130, 1131, 91, 92, 744, 93, 274, 94, 95, 188, 1056, 690, 413, 126, 96, 510, 511, 512, 189, 269, 191, 192, 193, 270, 99, 100, 101, 102, 103, 104, 105, 196, 197, 198, 199, 200, 853, 615, 616, 617, 618, 201, 620, 621, 622, 582, 583, 584, 585, 707, 106, 624, 625, 626, 627, 628, 629, 940, 709, 710, 711, 605, 366, 367, 368, 369, 327, 165, 108, 109, 110, 371, 721, 579 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1415 static const yytype_int16 yypact[] = { 5982, 2486, -1415, 39, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 37, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 150, 150, 150, 883, 1004, 94, 7768, 226, -1415, -1415, -1415, -1415, -1415, 190, -1415, -1415, -1415, 566, 197, -1415, -1415, -1415, -1415, 4778, -1415, -1415, -1415, -1415, 71, 218, -1415, 1795, -1415, -1415, -1415, -1415, 159, 1502, 356, 95, 7886, -1415, -1415, 9651, 1452, -1415, -1415, -1415, 1148, 382, 7314, 127, 1277, 1148, 1282, -1415, -1415, 835, 743, -1415, 1148, 1425, -1415, 224, -1415, 372, 420, -1415, -1415, -1415, -1415, 355, 218, 150, -1415, 150, -1415, -1415, -1415, -1415, 9310, 1795, -1415, -1415, 1795, -1415, 381, -1415, 9425, -1415, -1415, 1673, 9936, -1415, 857, 857, 857, -1415, -1415, -1415, 150, -1415, -1415, -1415, 415, 434, 442, -1415, -1415, -1415, 445, -1415, -1415, -1415, -1415, -1415, 469, 472, -1415, -1415, 60, 9164, 1776, 548, 459, 483, 513, 516, 523, 558, 3516, 7283, 478, 562, -1415, 9681, -1415, -1415, -1415, -1415, 571, -1415, 166, 5118, 5118, -1415, 568, 235, -1415, -1415, -1415, -1415, 582, 294, 296, 337, 150, 593, -1415, -1415, 1502, 3173, 651, -1415, 85, -1415, 150, 150, 218, -1415, -1415, 129, -1415, 150, 150, -1415, 3441, 621, 639, 857, 7072, -1415, -1415, 658, 4778, -1415, -1415, 1148, -1415, -1415, -1415, 218, -1415, 1795, 71, -1415, 8227, -1415, 857, 857, 857, 218, -1415, 883, -1415, 6824, -1415, -1415, 643, 857, -1415, 857, -1415, 190, 9164, 9195, 664, -1415, 1004, 669, 857, -1415, 883, 656, 665, -1415, 7768, 626, -1415, -1415, -1415, 3929, -1415, -1415, 7677, -1415, 651, 75, 10735, 9936, 1673, 3441, -1415, 133, -1415, -1415, 9425, 1795, 704, 7917, -1415, -1415, 104, -1415, 6175, 719, 768, 3584, 749, 10891, 10910, -1415, 754, -1415, -1415, -1415, -1415, 10969, 10969, 626, 8934, 759, -1415, -1415, -1415, -1415, -1415, -1415, 804, -1415, 1188, 2145, 9279, 10891, -1415, 608, 362, 902, 264, 848, 769, 765, 771, 811, 86, -1415, -1415, 791, 655, -1415, 265, -1415, -1415, 1776, -1415, -1415, 646, 816, -1415, 733, 816, 827, 190, -1415, -1415, 843, 9310, -1415, 863, 867, 9394, -1415, -1415, 1543, 1631, 8652, 7072, 1148, -1415, 1148, 857, 857, -1415, -1415, -1415, -1415, -1415, -1415, 857, 9310, 1795, -1415, -1415, 9975, 1690, -1415, 5551, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 871, 4213, 10891, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 1673, -1415, 858, 876, 889, 910, 923, 913, 926, 930, 3173, -1415, -1415, 935, 71, 934, -1415, -1415, 943, -1415, -1415, -1415, 3929, -1415, -1415, -1415, -1415, -1415, 3441, -1415, 9164, 9164, -1415, 857, 1673, 7193, 1795, 8724, -1415, -1415, -1415, -1415, 3929, 75, -1415, -1415, 1148, 218, -1415, -1415, 3929, -1415, 6951, -1415, -1415, 857, 857, 307, 10047, 953, 1611, 5340, -1415, 373, 433, 1004, -1415, 969, 990, 978, 999, 857, -1415, -1415, -1415, -1415, 10233, -1415, 344, 3302, -1415, 218, 1003, -1415, 1673, 11091, 10754, -1415, -1415, -1415, -1415, 940, 3441, -1415, 8796, 651, 6477, -1415, -1415, -1415, 671, 369, 791, 1004, 7917, 1090, 9425, -1415, 7917, -1415, -1415, -1415, -1415, 371, -1415, 1010, 768, 164, 8934, -1415, 10047, -1415, -1415, 8934, -1415, 9049, 8934, -1415, -1415, -1415, 1015, -1415, 578, 1019, 823, 1029, -1415, 4588, 6920, -1415, 492, -1415, -1415, 10813, -1415, 517, 10813, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 10735, 10735, 10735, -1415, -1415, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 10891, 5748, 10735, -1415, 655, 1111, -1415, -1415, 150, 150, -1415, -1415, 9164, -1415, -1415, 943, 626, -1415, 943, 10832, -1415, -1415, -1415, 9540, 6920, 1035, 1047, -1415, 9936, -1415, -1415, 571, -1415, 1050, 1305, 1059, 1931, 251, 791, -1415, 150, 150, 791, 292, -1415, 150, 150, 943, -1415, -1415, 150, 150, -1415, 816, 10086, 1795, 11236, 599, 625, 10086, -1415, 7677, -1415, 791, -1415, 9310, -1415, 313, 8344, 8344, 8344, 1795, -1415, 6348, 1064, 505, 871, 956, 1071, 1072, -1415, 1076, 5118, 527, -1415, 1165, 1795, 8344, 626, 1673, 626, 651, 796, 816, -1415, -1415, 839, 816, -1415, -1415, -1415, 768, -1415, 816, 218, 10233, -1415, 600, 1092, 612, 1093, -1415, 1088, 218, -1415, -1415, 3929, 218, 1091, 460, 480, 9975, 7404, 1925, 10891, 2323, -1415, -1415, 1089, 48, 1089, -1415, -1415, -1415, 150, 150, -1415, -1415, 1004, -1415, 150, -1415, -1415, 9195, 1004, 1094, 10891, -1415, 1004, 11236, -1415, -1415, 1098, -1415, -1415, -1415, 626, -1415, 11164, 867, -1415, 8344, 869, 8652, -1415, -1415, 571, 1096, 1097, 671, 1911, -1415, -1415, 7917, -1415, -1415, 1099, -1415, -1415, 1105, -1415, 1099, 1107, 6175, 10735, 180, 1106, 43, 1115, 1110, 1127, 759, 1104, 1130, -1415, 1134, 1135, 9080, 7041, -1415, 10735, -1415, 823, 1132, -1415, 6491, 10735, 1131, -1415, -1415, 871, 652, -1415, 10735, -1415, -1415, 893, -1415, -1415, -1415, -1415, -1415, -1415, 608, 608, 362, 362, 902, 902, 902, 902, 264, 264, 848, 769, 765, 771, 811, 10891, 942, -1415, 10233, 1142, 1143, 1144, 1111, -1415, -1415, -1415, -1415, -1415, 10233, 677, 8344, -1415, 9310, -1415, 7525, 9509, -1415, 5551, 7283, -1415, -1415, 1305, 10233, 963, 1150, 1152, 1153, 1155, 1160, 1167, 1170, -1415, 2993, 1931, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 943, -1415, -1415, -1415, 791, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 1172, -1415, 1173, 1190, -1415, -1415, 71, 1131, 6348, -1415, -1415, -1415, 4213, 1183, -1415, -1415, -1415, -1415, -1415, 1004, 6659, 1230, -1415, -1415, -1415, -1415, 1174, 71, -1415, -1415, 943, -1415, -1415, 943, 58, 943, -1415, -1415, -1415, -1415, -1415, -1415, 9792, -1415, 218, -1415, 9195, -1415, -1415, 1163, 951, 1193, 1194, 1201, -1415, -1415, 2323, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 1611, 9822, 978, -1415, -1415, 990, 1204, 1200, -1415, -1415, 1205, 1209, -1415, 869, 2648, -1415, 707, -1415, 1911, 791, -1415, 1212, 7917, 10116, 9164, 1218, -1415, -1415, 1213, 1220, 1214, -1415, 10891, 237, 326, 1216, -1415, 1222, 626, 1222, 6920, 10735, -1415, -1415, 1222, -1415, 1132, 4213, -1415, -1415, -1415, -1415, 1221, 10735, 1226, 626, 6348, -1415, 10813, -1415, 626, -1415, -1415, 10735, -1415, 852, 816, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 871, 867, 9394, -1415, -1415, 7646, 1229, -1415, 894, 816, -1415, 903, 908, 816, -1415, 857, 5019, -1415, -1415, -1415, 10233, 10233, -1415, 8724, 8724, -1415, 1228, 1231, 1236, 1239, -1415, 1240, 725, 279, 1131, -1415, 626, -1415, 5118, -1415, 10735, 497, -1415, 6793, 1242, 1246, 10605, 1250, 1251, 375, 388, 366, 10735, 1262, 218, 10735, 10735, 1260, 395, 1266, 1245, -1415, -1415, -1415, 1271, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 1004, 1280, 10735, -1415, 10233, 10233, 150, 1281, -1415, 9905, 4588, 917, 816, -1415, -1415, -1415, -1415, -1415, 1279, -1415, -1415, -1415, -1415, 1286, 2648, -1415, -1415, 1269, -1415, 1099, -1415, -1415, 1673, 1284, -1415, -1415, -1415, 685, 1288, -1415, 43, 1292, 10891, 1276, 43, 43, 1299, 1297, -1415, 1076, 10735, 1306, 1221, 699, 135, 1301, -1415, 1297, -1415, 1316, 1301, -1415, -1415, 1320, -1415, -1415, 943, 1329, 1336, 7162, 1335, 1338, 1341, -1415, -1415, 1352, -1415, -1415, 943, -1415, -1415, -1415, -1415, 943, 10735, 10735, 867, 1354, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 10891, 10891, 1356, 1358, 1301, -1415, -1415, 1004, -1415, -1415, -1415, 8155, 10116, 10735, 10735, 1402, 10735, -1415, -1415, 1339, -1415, 1343, 10735, 1344, 1346, 10735, 1138, 1347, 66, 8568, 1818, 150, -1415, -1415, 6659, 1365, 503, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 943, -1415, 10731, -1415, 8796, 1371, -1415, -1415, 10116, 534, 544, -1415, 1374, 1378, 768, 1386, -1415, 485, -1415, -1415, 10735, 1387, 1388, -1415, -1415, 1392, 596, 610, 626, 1393, 1398, -1415, 1403, -1415, 10233, -1415, -1415, -1415, -1415, -1415, 1404, -1415, 10233, 10233, 10233, -1415, -1415, 1405, -1415, 1407, 1413, 1415, 744, 8418, 8535, -1415, -1415, 267, -1415, 1414, 1418, -1415, 8868, 688, 717, 1422, 722, 6277, -1415, -1415, 570, -1415, -1415, 730, 1423, 1426, 218, 1455, 1034, -1415, -1415, 10735, -1415, 10813, 10605, -1415, -1415, -1415, 1417, 1427, 10233, -1415, -1415, -1415, 1428, -1415, -1415, -1415, -1415, -1415, -1415, 10116, 768, 278, -1415, 1409, 768, 1221, 436, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 1429, -1415, -1415, -1415, -1415, -1415, -1415, 1431, 1432, -1415, -1415, -1415, -1415, -1415, -1415, -1415, 1441, -1415, 1443, -1415, -1415, 10605, 146, 10735, 10605, -1415, 1459, 10735, -1415, 163, 1467, 1476, -1415, -1415, 1465, 1472, 1450, 984, -1415, -1415, -1415, -1415, -1415, 1795, 1673, 1468, 804, 1016, 10891, -1415, 770, 1483, 10735, 626, 626, 1489, 1491, 1496, 1497, -1415, -1415, 8724, 1492, -1415, 1574, 10891, 1506, -1415, -1415, 10515, -1415, 773, -1415, 1487, 10605, 1498, -1415, -1415, 1518, -1415, 1523, -1415, 1540, 1541, -1415, 1509, 1532, 10116, -1415, -1415, -1415, 768, 626, 1533, 1513, 1529, -1415, 1301, 1301, -1415, -1415, -1415, -1415, -1415, 10605, 282, -1415, 1020, -1415, -1415, 8004, -1415, -1415, 1515, 10735, -1415, 10735, 8004, 218, 10047, 218, 10047, 1538, -1415, 1546, -1415, -1415, -1415, 1536, 804, -1415, 780, -1415, -1415, 10735, 1545, 1547, -1415, 10891, 10891, -1415, -1415, 1123, 97, -1415, -1415, 1521, -1415, 1123, -1415, -1415, 2006, 626, -1415, -1415, 218, 10047, 218, 10047, 1549, 1528, 626, -1415, -1415, -1415, -1415, -1415, 10515, 1548, 1123, 8081, 10735, 10425, 1550, 1123, 1552, 2006, 2821, -1415, -1415, -1415, 1554, -1415, -1415, -1415, -1415, 9164, -1415, -1415, -1415, 10331, -1415, 10515, -1415, -1415, 1534, 10237, -1415, -1415, 10425, 218, 2821, 218, 1557, 1559, 837, -1415, 10331, -1415, -1415, -1415, 10237, -1415, -1415, -1415, 218, 218, -1415, -1415, -1415, -1415, -1415, -1415, -1415, -1415 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1415, 4737, 3351, -1415, 455, -1415, 41, 0, -262, -1415, 592, -524, -481, -976, -32, 3487, 1327, -1415, -108, 613, 615, 537, 614, 1100, 1103, 1108, 1109, 1112, -1415, 543, -570, 5379, -852, -699, -945, -1415, -234, -722, -516, -1415, 705, -1415, 452, -1136, -1415, -1415, 192, -1415, -1082, -770, 303, -1415, -1415, -1415, -1415, 128, -1414, -1415, -1415, -1415, -1415, -1415, -1415, 383, -1192, 80, -1415, -222, -1415, 551, 357, -1415, 227, -1415, -321, -1415, -1415, -1415, 617, -831, -1415, -1415, 1, -880, 113, 2816, -1415, -1415, -1415, -46, -1415, 27, 263, -201, 1947, 3745, -1415, -1415, 18, 105, 806, -244, 1537, -1415, 1920, -1415, -1415, 122, 2445, -1415, 2562, 1653, -1415, -1415, -1415, -611, -434, 1254, 1255, 775, 1011, 338, -1415, -1415, -1415, 992, 776, -483, -1415, -487, -342, 1046, -1415, -1415, -956, -989, 784, 1368, 1126, 161, -1415, 412, 137, -263, -206, -125, 726, 831, -1415, 1069, -1415, 2921, 140, -453, 983, -1415, -1415, 766, -1415, -231, -1415, -13, -1415, -1415, -1415, -1257, 486, -1415, -1415, -1415, 1243, -1415, 44, -1415, -1415, -843, -105, -1314, -135, 1612, -1415, 3802, -1415, 985, -1415, -152, 929, -180, -176, -171, 5, -40, -36, -35, 948, 35, 56, 77, -93, -170, -165, -163, -160, -322, -533, -531, -517, -561, -304, -510, -1415, -1415, -506, 1157, 1166, 1180, 1503, 5100, -539, -571, -552, -543, -475, -1415, -440, -686, -674, -659, -583, -282, -25, -1415, -1415, 541, 33, -95, -1415, 4237, 118, -635, 57 }; /* 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 -527 static const yytype_int16 yytable[] = { 48, 113, 115, 150, 429, 98, 400, 151, 152, 454, 401, 261, 268, 934, 441, 402, 403, 708, 69, 792, 514, 404, 896, 405, 713, 935, 406, 63, 614, 113, 113, 1155, 48, 107, 107, 408, 507, 98, 976, 847, 936, 769, 112, 48, 384, 385, 619, 872, 752, 48, 69, 854, 757, 411, 162, 1147, 1189, 48, 848, 63, 1094, 343, 529, 48, 606, 107, 48, 849, 194, 48, 220, 217, 1093, 855, 227, 822, 144, 843, 153, 844, 50, 1199, 996, 113, 113, 1403, 400, 31, 1187, 1188, 401, 780, 934, 845, 409, 402, 403, 426, 680, 154, 846, 404, 107, 405, 935, 70, 406, 48, 948, 1466, 48, 281, 50, 56, 116, 408, 1555, 48, 689, 936, 155, 123, 77, 203, 31, 292, 693, 484, 486, 1322, 938, 2, 207, 4, 5, 6, 7, 70, 858, 410, 536, -236, -236, 1570, 865, 56, 150, 124, 48, 740, 151, 152, 951, 162, 77, 979, 48, 885, 885, 885, 412, 48, 887, 888, 684, 686, 374, 167, 31, 1101, 282, 213, 31, 204, 409, 747, 885, 519, 169, 211, 906, 576, 221, 1466, 1205, 485, 48, 48, 1486, 31, 1423, 1424, 162, 683, 685, 253, 35, 412, 36, 1323, 557, 558, 48, 170, 143, 678, 216, 1423, 1424, 741, 48, 480, 843, -236, 844, 162, 448, 577, 178, 48, 1267, 153, 48, 243, 1222, 1223, 150, 444, 845, 113, 151, 152, 167, 1204, 502, 469, 503, 145, 557, 420, 756, 412, 154, 490, 113, 412, 536, 598, 113, 1268, 885, 761, 48, 113, 959, 675, 1189, 98, 216, 771, -3, 1425, 536, 155, 117, 328, 48, 48, 262, 847, 69, 263, 162, 48, 557, 762, 182, 343, 1434, 63, 48, 529, 763, 378, 481, 107, 529, 1512, 848, 529, 31, 1039, 667, 1264, 474, 113, 472, 849, 977, 379, 147, 216, 886, 886, 886, 704, 1189, 843, 619, 844, 156, 1157, 160, 1040, 676, 1015, 1348, 1113, 1104, 536, 682, 886, 1541, 845, 1543, 826, 687, 443, 437, 48, 1027, 31, 50, 172, 374, 442, 526, 675, 1187, 1188, 638, 248, 885, 815, 642, 1470, 1018, 1137, 606, 48, 48, 1219, 388, 606, 566, 567, 740, 70, 328, 202, 536, 856, 216, 611, 706, 56, 48, 858, 389, 259, 48, 927, 251, 480, 77, 1195, 587, 160, 1496, 77, 440, 654, 588, -114, -114, -292, 1094, 1082, 1406, 847, 437, 568, 569, 480, 1554, 886, 676, 48, 1093, -114, 216, 480, 863, 1196, 611, 216, 1196, 48, 848, 1136, 324, 391, 374, 393, 1565, 917, 741, 849, 694, 340, -522, 1569, 855, 485, 588, 48, 167, 392, 1205, 394, 1189, 48, 740, 48, 492, 1455, 1456, 1138, 111, 343, 872, 509, 142, 1470, 1139, 578, 481, 111, 1470, 41, 42, 796, 797, 798, 395, 731, 213, 48, 41, 42, 111, 732, 113, 1461, 608, 253, 481, 287, 1470, 431, 396, 41, 42, 435, 481, 1470, 113, 1385, 41, 42, 748, 48, 758, 562, 563, 1217, 749, 886, 759, 48, 714, 216, 741, 48, 374, 242, 245, 48, 98, 1109, 113, 980, 113, 324, 457, 523, 715, 708, 1213, 1263, 178, 69, 177, 264, 713, 507, 1124, 112, 738, 400, 63, 1215, 654, 401, 1153, -10, 107, 639, 402, 403, 1038, 643, 910, 897, 404, 435, 405, 113, 497, 406, 654, 77, 113, 654, -445, 328, 328, -114, 619, 408, 716, 1210, -446, 1109, 1410, 277, 750, 1175, 1177, 531, 908, 77, 177, 768, 111, 177, 717, 1256, -114, 77, 331, 160, 216, 50, 832, 41, 42, 714, 785, 279, 1040, 768, 280, 791, 768, -471, 1383, 213, 1205, 111, 164, 372, 113, 930, 332, 1205, 1346, 716, 70, 48, 41, 42, 343, 1347, 784, 597, 56, 898, 409, 603, 48, 177, 48, 931, 1202, 77, 881, -471, 834, -471, 1202, 328, 216, -471, 333, 1296, 1297, 334, 636, 790, 1203, 48, 640, 474, 335, 340, 1328, 1502, 37, 899, 328, 653, 40, 1038, 1502, 900, 480, 48, 1205, 41, 42, 1337, 764, 113, 765, 164, 466, 766, 253, 330, 772, 1339, 48, 1433, 113, 48, 113, 1338, 111, 336, 713, 859, 373, 995, 177, 862, 43, 1340, 343, 41, 42, 377, 111, 1051, 386, 45, 46, 776, 956, 775, 324, 324, 390, 41, 42, 776, 879, 1551, 111, 48, 882, 48, 1186, 1386, 1098, 907, 328, 909, 1352, 41, 42, 921, 875, 1082, 113, 410, 876, 776, 457, 481, 113, 457, 1354, 923, 113, 738, 398, 559, 177, 776, 1525, 427, 113, 560, 561, 177, 1530, 443, 877, 117, 1132, 606, 878, 37, 216, 48, 48, 40, 873, 428, 1504, 436, 1505, 608, 41, 42, 589, 1550, 412, 48, 174, 481, 1557, 1004, 497, 580, 324, 412, 497, 1005, 1058, 433, 216, 955, 45, 46, 451, 216, 531, -369, 531, 745, 462, 531, -398, 324, 531, 675, 1017, 470, 45, 46, 874, 655, 732, 704, 1252, 340, 471, 1379, 1395, 738, 588, 254, 177, 776, 1020, 1552, 889, 1396, -114, 832, -114, 436, 77, 111, -114, 140, 141, 493, 877, 177, 740, 905, 1120, 177, 41, 42, 1380, 513, 213, -114, -114, 1382, 776, 1179, 1451, 533, -106, 776, 48, 1387, -106, 592, 213, 412, 676, 776, 934, 164, 292, 324, 48, 1463, 706, 834, 77, 1371, 244, 517, 935, 1372, 830, 1422, 522, 216, 1430, 8, 9, 10, 11, 12, 534, 980, 718, 936, 230, 980, 980, 216, 231, 1452, 741, 235, 1471, 237, 536, 1449, 177, 572, 776, 1518, 246, 871, 573, 654, 31, 1519, 603, 418, 832, 574, 113, 654, 880, 575, 911, 111, 412, 140, 239, 1469, 751, 1254, 755, 557, 1473, 1258, 41, 42, 509, 69, 438, 578, 34, 48, 1523, 1463, 339, 97, 63, 1043, 446, 778, 1200, 412, 107, -442, 213, 48, 570, 571, 45, 46, 1080, 240, 1495, 48, 1575, 914, 241, 412, 1374, 596, 588, 130, 519, 131, 132, 133, 340, 97, 1159, 741, 412, 48, 41, 42, 253, 330, 412, 1125, 149, 216, 1304, 1305, 599, 1307, 97, 960, -3, 611, 457, 1311, 648, 113, 1314, 668, 45, 46, 564, 565, 190, 1344, 654, 97, 462, 163, 97, 462, 669, 530, 113, 107, 1171, 654, 412, 113, 70, 1008, 1005, 195, 497, 1174, 218, 611, 56, 228, 1176, 230, 611, 670, 1247, 1121, 672, 77, 1141, 1239, 111, 412, 140, 141, 1564, 420, 671, 412, 340, 673, 1564, 41, 42, 674, 942, 1149, 942, 677, 768, 679, 1149, 1564, 490, 330, 412, 1564, 177, 258, 533, 113, 533, 776, 1010, 533, 330, 412, 533, 893, 697, 654, 892, 1537, 113, 113, 113, 856, 330, 611, 111, 97, 140, 141, 832, 1404, 1207, 1126, 719, 1404, 177, 41, 42, 328, 97, 481, 1392, 1393, 1019, 113, 163, 107, 1149, 830, 1443, 1005, 177, 803, 804, 805, 806, 720, 1080, 375, 722, 1214, 1216, 1218, 724, 399, 190, 177, -240, 1109, 760, 8, 9, 10, 11, 12, 946, 48, 773, 343, 777, 443, 949, 1449, 1450, 163, 466, 1497, 1498, 97, 781, 873, 8, 9, 10, 11, 12, 1429, 835, 691, 31, 97, 2, 207, 4, 5, 6, 7, 163, 230, 836, 235, 111, 839, 140, 141, 216, 1423, 1424, 70, 445, 31, 850, 41, 42, 799, 800, 56, 34, 801, 802, 97, -12, 733, 807, 808, 77, 1487, 830, -13, 894, 738, 457, 895, 902, 488, 1315, 1316, 1317, 34, 753, 925, 113, 922, 924, 754, 929, 700, 220, -419, 950, 457, -526, 964, 177, 971, 749, 35, 973, 36, 530, 580, 988, 412, 48, 530, 984, 985, 530, 654, 45, 46, 497, 1127, 324, 1353, 1355, 1356, 986, 978, 107, 989, 778, 937, 412, 990, 991, 69, 1000, 230, 1125, 45, 46, 1012, 1013, 1014, 63, 729, 97, 1095, 462, 1029, 107, 1030, 1031, 937, 1032, 113, 113, 113, 1080, 1033, 738, 537, 538, 539, 1105, 375, 1034, 613, -293, 1035, 107, 1046, -407, -294, 871, 8, 9, 10, 11, 12, 8, 9, 10, 11, 12, 1447, 540, 1060, 541, -406, 542, 543, 1106, 1107, 1097, 655, 1149, 1149, 1149, 213, 1108, 1563, 1063, 1114, 31, 1115, 1116, 211, 221, 31, 1117, 1123, 654, 654, 1207, 49, 114, 1133, 776, 1134, 1135, 1140, 70, 481, 190, 994, 1145, 1148, 1169, 107, 56, 1125, 34, 1190, 216, 1192, 1191, 34, 1193, 77, 1208, 1194, 400, 375, 1209, 1009, 401, 49, 1211, 1212, 1126, 402, 403, 768, 1080, 457, 830, 404, 148, 405, 1220, 1224, 406, 107, 49, 37, 1227, 654, 177, 40, 654, 408, 1226, 919, 705, -3, 41, 42, 187, 1232, 1237, 210, 926, 1242, 49, 1244, 928, 502, 1248, 48, 48, 1253, 1536, 1255, 655, 675, 443, 1257, 1260, 113, 113, 70, 1261, 840, 442, 611, 1269, 1265, 1080, 56, 97, 1080, 45, 46, 613, 654, -295, 1272, 77, 1274, 654, 114, 1053, 8, 9, 10, 11, 12, 1276, 114, 409, 216, 267, 272, 1125, 1277, 1278, 1306, 113, 1279, 1149, 1149, 1280, 1126, 2, 207, 4, 5, 6, 7, 654, 1282, 31, 729, 676, 1289, 1080, 1298, 462, 1299, 1309, 1080, 308, 148, 1310, 1312, 107, 1313, 1321, 1327, 1335, 114, 346, 229, 1207, 340, 210, 462, 1341, 1488, 34, 1207, 150, 481, 1343, 1345, 151, 152, 1349, 107, 481, 1080, 1350, 1351, 1357, 1063, 107, 48, 113, 1358, 1127, 187, 187, 1317, 1359, 1361, 1367, 113, 1368, 35, 937, 36, 1369, 654, 1370, 1377, 1397, 267, 654, 1378, 1381, 1388, 48, 48, 1389, 49, 1398, 842, 162, 613, 1407, 1400, 1417, 1418, 1207, 1410, 654, 210, 654, 1538, -408, 1156, 654, 481, 1421, 654, 1126, 48, 1546, 107, 1446, 1436, 374, 654, 1080, 308, 114, 654, 1432, 1080, 1438, 70, 37, 1440, 184, 185, 40, 49, 70, 56, 1441, 1442, 1448, 41, 42, 272, 56, 1080, 77, 1080, 272, 267, 267, 1080, 1453, 77, 1080, 114, 1457, 729, 1458, 214, 1053, 1127, 1080, 1459, 1460, 1372, 1080, 729, 186, 233, 1302, 37, 1462, 175, 176, 40, 1472, 45, 46, 308, 1467, 729, 41, 42, 933, 1476, 705, 1474, 1103, 70, 1478, 308, 1480, 1482, 125, 128, 129, 56, 1484, 1485, 1490, 462, 1491, 1492, 1503, 1513, 77, 581, 1517, 373, 1529, 214, 148, 1515, 1521, 1544, 1522, 1545, 328, 1558, 1549, 1560, 1556, 1566, 1573, 114, 1574, 1225, 809, 346, 842, 613, 810, 612, 630, 177, 937, 1326, 811, 37, 812, 184, 185, 40, 813, 1524, 1435, 1259, 635, 414, 41, 42, 635, 1576, 214, 114, 422, 1391, 1506, 37, 1408, 184, 185, 40, 1127, 695, 696, 255, 1231, 256, 41, 42, 952, 943, 828, 215, 1144, 699, 1110, 412, 267, 1112, 1059, 920, 901, 700, 45, 46, 966, 1122, 187, 1336, 743, 818, 937, 937, 1509, 610, 1509, 611, 974, 37, 819, 184, 185, 40, 45, 46, 267, 0, 308, 308, 41, 42, 267, 214, 820, 635, 37, 0, 175, 176, 40, 0, 0, 842, 0, 215, 414, 41, 42, 0, 0, 1509, 0, 1509, 1221, 613, 114, 266, 701, 114, 8, 9, 10, 11, 12, 0, 45, 46, 397, 0, 0, 214, 0, 0, 377, 0, 214, 0, 416, 417, 0, 324, 267, 421, 0, 423, 424, 0, 215, 31, 267, 508, 635, 0, 49, 0, 0, 0, 746, 729, 729, 586, 0, 0, 114, 0, 0, 0, 0, 590, 0, 0, 593, 0, 0, 730, 308, 34, 114, 0, 0, 308, 37, 308, 308, 0, 40, 0, 0, 0, 177, 0, 779, 41, 42, 114, 346, 1011, 0, 0, 0, 37, 705, 175, 176, 40, 0, 1016, 0, 215, 705, 0, 41, 42, 0, 0, 0, 729, 729, 0, 43, 1028, 214, 0, 0, 0, 0, 0, 613, 45, 46, 0, 0, 0, 0, 0, 414, 537, 538, 539, 422, 581, 581, 0, 0, 0, 0, 215, 0, 308, 0, 0, 215, 0, 75, 8, 9, 10, 11, 12, 635, 346, 540, 0, 541, 630, 542, 1324, 0, 0, 0, 612, 0, 612, 0, 8, 9, 10, 11, 12, 0, 66, 118, 937, 31, 0, 75, 0, 0, 0, 0, 635, 0, 0, 0, 0, 635, 0, 630, 0, 937, 0, 635, 214, 31, 635, 635, 635, 0, 0, 0, 0, 34, 66, 0, 0, 0, 37, 0, 0, 214, 40, 0, 223, 635, 414, 267, 0, 41, 42, 161, 37, 34, 184, 185, 40, 0, 37, 215, 184, 185, 40, 41, 42, 0, 0, 0, 0, 41, 42, 222, 0, 1510, 214, 1510, 745, 1390, 0, 114, 346, 701, 1333, 701, 0, 45, 46, 0, 0, 0, 699, 0, 412, 0, 937, 937, 610, 0, 611, 45, 46, 114, 0, 0, 730, 45, 46, 0, 260, 0, 1510, 0, 1510, 0, 729, 0, 0, 0, 0, 635, 961, 630, 729, 729, 729, 0, 0, 746, 746, 0, 0, 0, 354, 37, 0, 184, 185, 40, 586, 586, 215, 0, 1184, 1185, 41, 42, 0, 0, 0, 0, 329, 0, 0, 0, 0, 114, 346, 0, 260, 351, 779, 779, 0, 0, 0, 0, 0, 0, 0, 0, 729, 1534, 0, 412, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 407, 215, 0, 0, 0, 0, 0, 214, 0, 0, 0, 1234, 1235, 0, 581, 425, 0, 450, 430, 432, 0, 0, 635, 161, 635, 0, 1023, 0, 0, 635, 346, 0, 0, 612, 0, 214, 0, 912, 75, 0, 214, 915, 0, 75, 449, 612, 0, 1507, 452, 1511, 453, 730, 0, 0, 0, 0, 0, 0, 0, 468, 0, 730, 823, 824, 0, 66, 0, 0, 0, 0, 482, 0, 0, 0, 414, 730, 0, 0, 0, 0, 489, 0, 0, 0, 1540, 0, 1542, 0, 432, 0, 0, 857, 0, 0, 860, 861, 308, 864, 0, 866, 867, 0, 0, 0, 868, 869, 0, 0, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 635, 554, 0, 0, 114, 215, 0, 0, 0, 0, 214, 1571, 0, 1572, 701, 0, 0, 0, 0, 0, 223, 0, 701, 114, 214, 555, 1579, 1580, 0, 0, 0, 0, 0, 215, 0, 961, 961, 260, 215, 0, 746, 604, 0, 0, 508, 114, 308, 632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 637, 0, 346, 0, 637, 0, 0, 260, 779, 1360, 944, 945, 586, 0, 0, 0, 947, 1362, 1363, 1364, 0, 8, 9, 10, 11, 12, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 0, 0, 0, 354, 0, 0, 0, 0, 75, 0, 0, 31, 0, 0, 0, 482, 75, 0, 0, 214, 635, 635, 0, 0, 0, 0, 1399, 215, 0, 0, 351, 0, 0, 0, 0, 482, 0, 0, 0, 34, 308, 215, 354, 482, 37, 0, 184, 185, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 730, 730, 354, 0, 75, 0, 0, 0, 0, 0, 0, 725, 0, 0, 432, 0, 0, 0, 0, 0, 0, 0, 114, 635, 699, 0, 412, 414, 0, 739, 0, 66, 0, 45, 46, 0, 78, 961, 0, 432, 0, 0, 0, 432, 0, 267, 354, 0, 0, 0, 0, 0, 0, 0, 488, 0, 0, 0, 730, 730, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 260, 351, 0, 0, 0, 215, 0, 0, 0, 0, 346, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 224, 1160, 26, 27, 28, 0, 354, 0, 0, 0, 0, 31, 0, 0, 821, 0, 0, 0, 1172, 272, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 637, 833, 0, 0, 0, 114, 0, 34, 0, 0, 308, 0, 111, 852, 38, 39, 80, 214, 354, 354, 354, 0, 0, 41, 42, 0, 635, 0, 0, 0, 114, 604, 0, 0, 0, 0, 604, 354, 0, 0, 0, 0, 637, 0, 0, 351, 351, 351, 80, 0, 0, 0, 44, 0, 0, 354, 356, 0, 0, 45, 46, 0, 0, 1240, 351, 1334, 75, 0, 0, 0, 0, 0, 354, 0, 0, 635, 635, 0, 0, 0, 0, 0, 725, 0, 272, 225, 0, 0, 0, 308, 0, 0, 0, 482, 0, 0, 0, 730, 260, 739, 0, 0, 939, 0, 0, 730, 730, 730, 75, 0, 0, 354, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215, 0, 482, 0, 0, 351, 0, 0, 31, 0, 0, 0, 0, 0, 965, 354, 0, 432, 78, 0, 730, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1236, 0, 34, 0, 0, 0, 357, 260, 739, 0, 0, 0, 0, 993, 0, 0, 267, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 214, 0, 0, 635, 354, 0, 354, 0, 0, 0, 0, 223, 0, 0, 354, 960, 0, 611, 354, 0, 0, 725, 0, 0, 45, 46, 0, 0, 0, 114, 0, 725, 0, 351, 0, 637, 0, 0, 1026, 0, 637, 833, 0, 0, 0, 725, 0, 0, 0, 0, 0, 0, 114, 0, 224, 1037, 0, 0, 0, 114, 0, 114, 0, 114, 0, 0, 0, 0, 0, 0, 0, 80, 0, 57, 57, 0, 80, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 1535, 0, 1325, 0, 214, 114, 0, 114, 0, 0, 0, 0, 57, 0, 66, 0, 0, 0, 0, 114, 0, 0, 0, 215, 31, 1535, 1535, 0, 78, 0, 0, 0, 0, 0, 0, 308, 637, 0, 0, 0, 0, 0, 0, 356, 0, 0, 57, 0, 78, 57, 1535, 0, 34, 0, 0, 0, 78, 37, 0, 184, 185, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 354, 1119, 0, 0, 0, 0, 0, 225, 0, 432, 118, 356, 0, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1534, 0, 412, 351, 0, 356, 0, 78, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 215, 0, 0, 0, 0, 354, 354, 0, 354, 354, 0, 0, 0, 0, 604, 0, 0, 349, 0, 0, 0, 0, 0, 0, 356, 80, 0, 430, 75, 0, 0, 0, 725, 725, 226, 351, 351, 0, 0, 0, 357, 0, 0, 0, 1036, 80, 0, 8, 9, 10, 11, 12, 0, 80, 0, 1206, 0, 0, 0, 0, 0, 0, 0, 354, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 284, 31, 285, 0, 357, 0, 0, 57, 0, 0, 0, 0, 0, 0, 356, 725, 725, 0, 0, 0, 0, 637, 357, 0, 80, 0, 0, 0, 286, 34, 0, 0, 0, 0, 287, 0, 0, 57, 288, 0, 0, 289, 290, 291, 292, 41, 42, 364, 293, 294, 0, 0, 0, 354, 0, 0, 295, 0, 356, 356, 356, 0, 0, 0, 0, 0, 357, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 356, 0, 0, 739, 345, 46, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 0, 356, 223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 356, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 1303, 0, 0, 0, 0, 0, 0, 0, 357, 354, 0, 354, 0, 0, 0, 0, 0, 260, 0, 87, 0, 0, 66, 0, 87, 78, 0, 0, 356, 8, 9, 10, 11, 12, 0, 0, 725, 0, 739, 0, 0, 354, 118, 0, 0, 0, 0, 0, 0, 354, 354, 354, 357, 357, 357, 0, 0, 0, 31, 0, 354, 354, 0, 0, 0, 356, 0, 0, 725, 0, 0, 357, 0, 0, 75, 0, 725, 725, 725, 0, 0, 0, 0, 0, 0, 0, 34, 351, 351, 357, 0, 37, 0, 184, 185, 40, 349, 354, 0, 0, 80, 1206, 41, 42, 0, 0, 357, 0, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 226, 356, 0, 0, 0, 725, 224, 0, 0, 356, 186, 0, 0, 356, 0, 0, 118, 0, 0, 45, 46, 0, 0, 80, 0, 0, 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 357, 0, 0, 354, 87, 31, 0, 0, 0, 0, 0, 0, 78, 0, 0, 349, 0, 0, 0, 364, 0, 0, 0, 0, 87, 0, 0, 0, 0, 0, 351, 0, 87, 34, 0, 0, 0, 0, 111, 0, 38, 39, 0, 357, 0, 0, 0, 0, 0, 41, 42, 0, 75, 357, 0, 357, 118, 0, 364, 75, 225, 0, 0, 357, 0, 0, 0, 357, 168, 0, 173, 0, 0, 179, 180, 181, 364, 183, 87, 1206, 349, 0, 0, 0, 0, 0, 1206, 0, 0, 0, 0, 0, 234, 0, 0, 0, 356, 0, 0, 0, 0, 0, 0, 0, 249, 250, 0, 0, 0, 0, 0, 0, 75, 0, 0, 8, 9, 10, 11, 12, 364, 0, 0, 0, 349, 349, 349, 0, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1206, 0, 0, 0, 349, 31, 0, 1559, 0, 0, 0, 356, 356, 0, 356, 356, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 78, 0, 0, 0, 37, 0, 184, 185, 40, 0, 0, 0, 364, 0, 0, 41, 42, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 356, 356, 26, 27, 28, 357, 0, 266, 0, 349, 0, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 364, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 364, 0, 0, 0, 37, 0, 337, 338, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 364, 357, 357, 0, 357, 357, 0, 356, 0, 0, 0, 87, 0, 0, 0, 0, 0, 364, 0, 283, 284, 0, 285, 0, 80, 0, 339, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 349, 0, 0, 0, 0, 286, 0, 224, 349, 0, 87, 287, 0, 364, 0, 288, 357, 357, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 78, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 356, 0, 0, 0, 515, 364, 601, 0, 609, 0, 0, 0, 0, 45, 46, 298, 299, 300, 301, 633, 634, 0, 0, 0, 0, 0, 0, 0, 0, 57, 356, 0, 0, 0, 0, 0, 357, 0, 356, 356, 356, 0, 0, 0, 0, 0, 0, 0, 364, 356, 356, 0, 0, 0, 0, 0, 0, 0, 364, 0, 364, 0, 0, 78, 0, 226, 0, 0, 364, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 225, 516, 0, 518, 521, 0, 0, 356, 0, 0, 0, 524, 525, 0, 0, 0, 0, 57, 0, 0, 0, 0, 80, 0, 0, 0, 518, 518, 0, 0, 0, 0, 0, 0, 349, 0, 357, 0, 357, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 0, 236, 87, 238, 0, 0, 127, 127, 127, 0, 247, 518, 0, 0, 0, 357, 0, 0, 0, 0, 0, 0, 0, 357, 357, 357, 0, 0, 0, 0, 0, 0, 0, 0, 357, 357, 0, 0, 349, 349, 0, 212, 356, 236, 238, 247, 0, 518, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 0, 0, 0, 0, 0, 0, 0, 127, 0, 127, 0, 0, 212, 0, 364, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 276, 0, 0, 0, 476, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 364, 364, 0, 364, 364, 212, 31, 236, 238, 247, 0, 78, 0, 0, 0, 0, 0, 0, 0, 357, 0, 0, 127, 87, 0, 0, 0, 0, 0, 0, 127, 0, 127, 127, 34, 0, 35, 127, 36, 127, 127, 38, 39, 212, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 364, 57, 57, 0, 506, 0, 0, 0, 0, 80, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 0, 0, 0, -3, 57, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 518, 0, 57, 0, 0, 0, 0, 0, 127, 0, 0, 212, 0, 0, 953, 0, 954, 0, 0, 0, 0, 0, 364, 957, 958, 0, 0, 80, 963, 0, 0, 0, 0, 212, 0, 0, 0, 0, 236, 238, 968, 0, 0, 0, 0, 972, 247, 349, 349, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 57, 0, 0, 0, 226, 0, 0, 0, 0, 0, 1001, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 0, 212, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 364, 0, 364, 0, 0, 0, 212, 0, 0, 0, 0, 212, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 518, 0, 0, 0, 0, 0, 0, 212, 0, 364, 212, 212, 0, 0, 0, 0, 0, 364, 364, 364, 0, 0, 518, 0, 0, 0, 212, 0, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 87, 0, 0, 0, 0, 212, 349, 1047, 1048, 1049, 1050, 0, 1052, 0, 0, 0, 0, 0, 0, 0, 0, 283, 284, 364, 285, 0, 0, 0, 1096, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 518, 0, 0, 1102, 0, 0, 0, 0, 0, 0, 0, 286, 0, 0, 0, 0, 57, 650, 166, 140, 141, 288, 0, 57, 289, 651, 291, 292, 41, 42, 0, 293, 294, 518, 0, 219, 0, 0, 0, 295, 0, 0, 1118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 652, 0, 653, 381, 0, 0, 0, 45, 46, 298, 299, 300, 301, 0, 0, 364, 0, 0, 0, 57, 0, 0, 0, 0, 212, 1146, 166, 0, 0, 0, 273, 0, 1154, 0, 0, 0, 0, 1158, 0, 0, 0, 0, 1162, 0, 1163, 0, 0, 0, 1165, 0, 1166, 1167, 212, 0, 1170, 0, 0, 212, 0, 166, 0, 127, 127, 1182, 87, 0, 0, 0, 0, 370, 0, 87, 0, 376, 0, 0, 0, 0, 0, 0, 0, 1197, 1198, 0, 0, 0, 0, 0, 0, 0, 127, 0, 0, 127, 127, 0, 127, 0, 127, 127, 0, 0, 0, 127, 127, 0, 0, 0, 1228, 0, 0, 1230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 0, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 0, 0, 0, 0, 0, 0, 518, 0, 0, 0, 212, 0, 0, 0, 0, 1246, 0, 166, 463, 0, 0, 1250, 1251, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 1262, 0, 0, 0, 518, 1266, 0, 0, 1270, 376, 1271, 506, 0, 1273, 127, 0, 166, 518, 0, 127, 127, 0, 0, 0, 0, 127, 1281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1288, 463, 1290, 1291, 1292, 1293, 0, 0, 0, 0, 0, 0, 0, 166, 0, 0, 0, 0, 1300, 518, 1301, 0, 0, 0, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 607, 0, 1329, 1330, 0, 631, 0, 0, 0, 0, 0, 0, 0, 0, 212, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 26, 27, 28, 0, 0, 0, 518, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1365, 1366, 0, 0, 0, 0, 0, 0, 0, 0, 1376, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 166, 166, -296, 0, 0, 0, 0, 370, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 518, 518, 212, 0, 0, 0, 0, 0, 0, 0, 463, 0, 0, 463, 0, 0, 644, 1409, 339, 0, 0, 0, 0, 0, 0, 45, 46, 0, 212, 1413, 0, 1414, 1415, 1416, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1420, 0, 0, 742, 0, 0, 0, 0, 0, 1431, 0, 0, 0, 212, 0, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1444, 0, 463, 0, 463, 0, 0, 463, 0, 166, 463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 370, 0, 0, 0, 0, 0, 0, 0, 0, 157, 212, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1493, 1494, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 1499, 0, 0, 0, 0, 0, 166, 1499, 0, 0, 252, 0, 0, 0, 0, 0, 0, 0, 370, 0, 257, 0, 838, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 38, 39, 40, 0, 0, 0, 0, 1533, 0, 41, 42, 1539, 212, 0, 0, 607, 0, 0, 0, 0, 607, 0, 0, 0, 0, 0, 0, 0, 0, 370, 370, 370, 0, 0, 0, 0, 43, 0, 158, 0, 1561, 518, 1562, 157, 0, 45, 46, 0, 370, 0, 0, 127, 0, 0, 0, 0, 0, 387, 518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1577, 1578, 0, 0, 0, 0, 0, 0, 1581, 1582, 419, 0, 0, 742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434, 0, 0, 0, 0, 212, 0, 0, 0, 439, 463, 0, 0, 0, 0, 0, 0, 0, 0, 447, 0, 0, 0, 0, 0, 0, 0, 0, 370, 0, 962, 0, 0, 0, 0, 0, 0, 518, 518, 0, 0, 0, 0, 0, 473, 0, 0, 0, 0, 483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491, 0, 0, 742, 0, 0, 501, 0, 505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1180, 0, 127, 8, 9, 10, 11, 12, 535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 370, 0, 0, 0, 631, 0, 0, 0, 370, 0, 595, 0, 0, 0, 0, 600, 0, 0, 0, 286, 34, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 645, 0, 0, 295, 646, 647, 0, 649, 0, 0, 0, 0, 0, 0, 661, 662, 0, 663, 664, 296, 665, 380, 666, 0, 0, 0, 0, 0, 1181, 46, 298, 299, 300, 301, 0, 0, 0, 0, 0, 595, 0, 0, 0, 0, 0, 283, 284, 681, 285, 0, 0, 0, 0, 0, 0, 0, 463, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 692, 0, 286, 463, 0, 0, 0, 0, 287, 0, 0, 698, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 166, 0, 0, 0, 295, 0, 0, 0, 734, 0, 0, 0, 0, 0, 737, 0, 370, 0, 0, 473, 296, 0, 380, 0, 0, 381, 0, 0, 0, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342, 365, 0, 0, 607, 0, 0, 0, 774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 789, 0, 0, 370, 370, 0, 0, 0, 0, 0, 0, 0, 415, 0, 0, 0, 0, 0, 0, 415, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 817, 0, 0, 0, 0, 0, 0, 0, 0, 827, 0, 0, 0, 0, 0, 0, 829, 0, 0, 0, 0, 0, 837, 0, 463, 0, 0, 0, 0, 0, 0, 851, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 415, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 455, 0, 0, 0, 0, 0, 0, 0, 0, 891, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 742, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 415, 837, 0, 0, 0, 0, 0, 0, 415, 591, 0, 415, 594, 0, 0, 0, 0, 0, 0, 219, 0, 0, 365, 0, 0, 0, 623, 0, 456, 0, 0, 0, 712, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 641, 0, 0, 342, 0, 0, 0, 0, 0, 0, 0, 252, 0, 742, 0, 0, 0, 0, 0, 0, 0, 969, 970, 0, 0, 0, 0, 0, 0, 0, 415, 0, 0, 0, 415, 987, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1002, 0, 1003, 0, 0, 322, 1007, 0, 0, 0, 370, 370, 0, 365, 0, 347, 0, 0, 0, 219, 0, 0, 0, 0, 0, 0, 0, 383, 383, 0, 0, 0, 0, 0, 0, 0, 415, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 415, 0, 31, 365, 0, 1041, 0, 0, 0, 0, 0, 0, 1042, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1044, 0, 1045, 0, 0, 34, 322, 0, 0, 0, 0, 0, 38, 39, 0, 0, 1057, 0, 415, 0, 0, 342, 365, 1061, 0, 0, 0, 0, 0, 0, 487, 0, 0, 0, 0, 1099, 0, 0, 1100, 0, 0, 0, 0, 370, 0, 0, 0, 0, 644, 0, 339, 0, 0, 0, 0, 0, 600, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 415, 415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 831, 365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 623, 0, 623, 623, 463, 0, 463, 0, 0, 623, 0, 0, 0, 0, 0, 0, 0, 0, 0, 870, 365, 0, 0, 0, 0, 365, 0, 0, 0, 0, 0, 0, 0, 0, 365, 365, 365, 0, 0, 0, 0, 463, 0, 463, 0, 0, 0, 0, 1164, 0, 383, 0, 0, 365, 0, 0, 0, 0, 415, 913, 0, 0, 415, 916, 0, 0, 0, 0, 0, 918, 0, 166, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 342, 365, 415, 0, 415, 0, 0, 0, 415, 0, 0, 0, 0, 0, 0, 0, 0, 286, 535, 0, 0, 0, 0, 287, 0, 1229, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 365, 623, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1243, 0, 0, 0, 0, 1245, 296, 0, 380, 0, 736, 0, 0, 1249, 814, 45, 46, 298, 299, 300, 301, 342, 365, 0, 0, 0, 415, 415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1275, 0, 0, 0, 0, 770, 0, 0, 0, 0, 0, 0, 1283, 0, 0, 1284, 0, 1285, 783, 0, 0, 0, 0, 770, 0, 415, 770, 0, 0, 0, 0, 1294, 1295, 365, 0, 0, 0, 793, 794, 795, 831, 365, 0, 0, 623, 0, 623, 0, 0, 0, 0, 0, 0, 1308, 0, 0, 623, 0, 0, 0, 0, 816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 825, 0, 0, 0, 0, 0, 0, 347, 0, 1331, 0, 0, 783, 0, 0, -521, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 831, 0, 0, 890, 0, 0, 0, 0, 415, 0, 0, 0, 383, 0, 415, 0, 0, 0, 0, 0, 0, 33, 415, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 623, 623, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 1401, 0, 1402, 347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365, 0, 1411, 0, 1412, 43, 415, 44, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 1419, 0, 0, 415, 1161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365, 0, 1437, 1439, 0, 0, 415, 1173, 0, 623, 623, 1178, 0, 0, 1445, 0, 0, 1249, 0, 0, 0, 365, 365, 0, 0, 0, 0, 0, 0, 0, 783, 0, 992, 0, 0, 0, 0, 0, 997, 1468, 0, 0, 0, 0, 0, 1006, 0, 0, 1475, 0, 0, 1477, 0, 1479, 1481, 1483, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 831, 415, 1241, 0, 0, 0, 0, 1024, 1025, 31, 0, 347, 0, 1514, 623, 1516, 0, 0, 1249, 0, 0, 0, 0, 0, 0, 347, 0, 0, 0, 0, 0, 0, 0, 1528, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 175, 176, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 365, 0, 0, 0, 0, 0, 1055, 0, 0, 0, 383, 0, 0, 0, 0, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 365, 35, 0, 36, 287, 322, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 1142, 1143, 0, 0, 0, 295, 0, 383, 0, 0, 0, 0, 0, 997, 0, 0, 1152, 0, 770, 283, 284, 296, 285, 1078, 0, 0, 0, 0, 365, 365, 45, 46, 298, 299, 300, 301, 0, 0, 0, 1168, 0, 0, 0, 0, -131, 0, 0, 0, 286, 0, 1183, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 383, 0, 1201, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 997, 997, 0, 296, 0, 380, 0, 0, 0, 0, 782, 0, 45, 46, 298, 299, 300, 301, 0, 0, 0, 1233, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 365, 0, 0, 0, 0, 997, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 890, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 286, 1286, 1287, 41, 42, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 43, 0, 44, 0, 0, 0, -525, 0, 0, 45, 46, 0, 0, 0, 296, 0, 380, 0, 0, 994, 0, 0, 415, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 415, 415, 0, 0, 0, 0, 997, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 415, 0, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 283, 284, 31, 1064, 1065, 1394, 1066, 770, 0, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 0, 0, 0, 1075, 0, 0, 0, 1076, 1077, 0, 33, 0, 286, 34, 0, 35, 0, 36, 650, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 1078, 0, 0, 172, 0, 0, 0, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 1079, 1454, 0, 0, -131, 0, 0, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 1520, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -296, 296, 0, 44, 0, 0, 0, 0, 0, 0, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 0, 322, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -297, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -297, 296, 0, 344, 0, 0, 0, 0, 782, 0, 345, 46, 298, 299, 300, 301, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 296, 0, 932, 0, 0, 0, 0, 782, 0, 345, 46, 298, 299, 300, 301, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 208, 39, 0, 0, 0, 296, 0, 932, 0, 0, 0, 0, 782, 0, 45, 46, 298, 299, 300, 301, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 344, 0, 0, 0, 0, 0, 0, 345, 46, 298, 299, 300, 301, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 0, 36, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 932, 0, 0, 0, 0, 0, 0, 345, 46, 298, 299, 300, 301, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 35, 0, 36, 287, 0, 208, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 1021, 0, 0, 0, 0, 0, 0, 1022, 46, 298, 299, 300, 301, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 35, 31, 36, 287, 0, 208, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 208, 39, 0, 0, 0, 296, 0, 380, 0, 0, 0, 0, 0, 0, 45, 46, 298, 299, 300, 301, 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, 45, 46, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 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, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 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, 43, 0, 44, 0, 0, 0, 0, 0, 0, 45, 46, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 494, 495, 496, 34, 0, 35, 31, 36, 37, 0, 208, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 43, 0, 209, 0, 0, 0, 0, 0, 0, 45, 46, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, -296, 0, 1, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 44, 30, 0, 0, 31, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 44, 31, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 208, 39, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 209, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 208, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 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, 43, 0, 209, 0, 0, 0, 0, 0, 0, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, -404, 688, 31, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 688, 0, 0, 0, 0, 0, 0, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1375, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 337, 338, 40, 0, -296, 688, 0, 0, 0, 41, 42, 0, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 339, 0, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 208, 39, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 271, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 688, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 602, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 208, 39, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 0, 0, 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 34, 0, 0, 0, 0, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 527, 0, 0, 172, 0, 0, 0, 45, 46, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 26, 27, 28, 0, 0, 286, 34, 0, 0, 31, 0, 650, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, -296, 296, -35, 767, 0, 0, 0, 0, 0, 0, 45, 46, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 339, 0, 26, 27, 28, 0, 0, 45, 46, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 0, 31, 455, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 296, 0, 297, 0, 0, 0, 0, 0, 0, 45, 46, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 456, 0, 26, 27, 28, 0, 0, 45, 46, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 0, 31, 0, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 296, 0, 158, 0, 0, 0, 0, 0, 0, 45, 46, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 258, 0, 26, 27, 28, 0, 0, 45, 46, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 286, 34, 0, 0, 31, 0, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 296, 0, 602, 0, 0, 0, 0, 0, 0, 45, 46, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 158, 0, 26, 27, 28, 0, 0, 45, 46, 283, 284, 31, 285, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -296, 0, 26, 27, 28, 0, 0, 286, 34, 0, 0, 31, 0, 287, 0, 38, 39, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 337, 338, 40, 0, -296, 296, 0, 380, 0, 41, 42, 0, 0, 0, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 644, 0, 339, 0, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 208, 39, 40, 0, 0, 0, 43, 0, 44, 41, 42, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 271, 0, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 455, 0, 37, 0, 337, 338, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 644, 0, 339, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 456, 26, 27, 28, 1111, 0, 0, 45, 46, 0, 31, 455, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 34, 0, 0, 31, 0, 0, 0, 38, 39, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 0, 0, 208, 39, 0, 0, 31, 0, 0, 456, 0, 0, 0, 1238, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 271, 38, 39, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 339, 0, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 0, 0, 38, 39, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 456, 38, 39, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 602, 0, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 45, 46, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 283, 284, 0, 285, 1065, 0, 1066, 0, 0, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 0, 0, 1553, 1075, 0, 0, 0, 1076, 1077, 34, 33, 35, 286, 36, 0, 0, 38, 39, 650, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -417, 0, 0, 296, 0, 380, 0, 0, 172, 0, 0, 0, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 1079, 0, 283, 284, -131, 285, 1065, 0, 1066, 0, 0, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 0, 0, 0, 1075, 0, 0, 0, 1076, 1077, 0, 33, 0, 286, 0, 0, 0, 0, 0, 650, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 172, 0, 0, 0, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 1079, 0, 283, 284, -131, 285, 1065, 0, 1066, 1423, 1424, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 0, 0, 1553, 1075, 0, 0, 0, 1076, 1077, 0, 33, 0, 286, 0, 0, 0, 0, 0, 650, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 172, 0, 0, 0, 45, 46, 298, 299, 300, 301, 0, 0, 283, 284, 1079, 285, 1065, 0, 1066, 1423, 1424, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 0, 0, 0, 1075, 0, 0, 0, 1076, 1077, 0, 33, 0, 286, 0, 0, 0, 0, 0, 650, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 172, 0, 0, 0, 45, 46, 298, 299, 300, 301, 0, 0, 283, 284, 1079, 285, 1065, 0, 1066, 0, 0, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 0, 0, 0, 1075, 0, 0, 0, 1076, 1077, 0, 33, 0, 286, 0, 0, 0, 0, 0, 650, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 0, 380, 0, 0, 172, 0, 0, 0, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 1079, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 283, 284, 0, 285, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 284, 0, 285, 0, 0, 0, 34, 0, 35, 286, 36, 0, 0, 38, 39, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 286, 293, 294, 0, 0, 0, 287, 1332, 0, 295, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 296, 0, 380, 295, 0, 283, 284, 0, 285, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 296, 0, 380, 0, 0, 283, 284, 0, 285, 735, 46, 298, 299, 300, 301, 286, 0, 0, 0, 0, 0, 650, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 286, 293, 294, 0, 0, 0, 287, 0, 0, 295, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 296, 0, 786, 295, 0, 283, 284, 0, 285, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 296, 0, 380, 0, 0, 283, 284, 0, 285, 345, 46, 298, 299, 300, 301, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 286, 293, 294, 0, 0, 0, 287, 0, 0, 295, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 296, 0, 0, 295, 0, 283, 284, 0, 285, 45, 46, 298, 299, 300, 301, 0, 0, 0, 0, 520, 0, 0, 0, 0, 0, 0, 0, 0, 45, 46, 298, 299, 300, 301, 286, 0, 0, 0, 0, 0, 287, 0, 0, 0, 288, 0, 0, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 523, 0, 0, 0, 0, 0, 0, 0, 0, 45, 46, 298, 299, 300, 301, 206, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 208, 39, 476, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 207, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 208, 39 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1415)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 1, 43, 205, 0, 186, 43, 43, 240, 186, 106, 117, 699, 220, 186, 186, 457, 0, 543, 282, 186, 657, 186, 458, 699, 186, 0, 350, 29, 30, 1007, 32, 0, 1, 187, 280, 32, 760, 610, 699, 522, 1, 43, 169, 170, 350, 630, 501, 49, 32, 612, 505, 188, 49, 1000, 1045, 57, 610, 32, 903, 156, 296, 63, 346, 32, 66, 610, 63, 69, 69, 66, 903, 612, 69, 581, 32, 610, 43, 610, 0, 1057, 781, 83, 84, 1342, 266, 39, 1044, 1045, 266, 531, 778, 610, 187, 266, 266, 202, 419, 43, 610, 266, 69, 266, 778, 0, 266, 107, 719, 1423, 110, 51, 32, 0, 1, 267, 1530, 117, 439, 778, 43, 82, 0, 28, 39, 82, 447, 262, 263, 63, 700, 4, 5, 6, 7, 8, 9, 32, 613, 64, 82, 44, 45, 1557, 619, 32, 186, 110, 148, 491, 186, 186, 722, 148, 32, 112, 156, 644, 645, 646, 112, 161, 645, 646, 427, 428, 161, 49, 39, 111, 110, 66, 39, 78, 267, 497, 663, 285, 107, 66, 663, 95, 69, 1497, 1064, 110, 186, 187, 1445, 39, 44, 45, 187, 427, 428, 110, 69, 112, 71, 133, 308, 309, 202, 132, 110, 411, 66, 44, 45, 491, 210, 257, 745, 116, 745, 210, 229, 131, 57, 219, 85, 186, 222, 83, 1076, 1077, 266, 222, 745, 229, 266, 266, 114, 1064, 130, 248, 132, 11, 346, 110, 503, 112, 186, 110, 244, 112, 82, 342, 248, 114, 737, 513, 252, 253, 737, 407, 1245, 252, 118, 522, 133, 115, 82, 186, 1, 147, 266, 267, 107, 840, 252, 110, 267, 273, 382, 111, 117, 372, 115, 252, 280, 515, 118, 117, 257, 252, 520, 1479, 840, 523, 39, 852, 397, 1145, 253, 295, 252, 840, 118, 133, 110, 161, 644, 645, 646, 457, 1295, 840, 612, 840, 113, 1010, 49, 852, 407, 821, 1261, 952, 929, 82, 425, 663, 1514, 840, 1516, 588, 431, 222, 210, 329, 840, 39, 252, 115, 329, 222, 295, 489, 1294, 1295, 365, 117, 829, 577, 369, 1427, 829, 110, 630, 349, 350, 1073, 117, 635, 90, 91, 698, 252, 240, 3, 82, 110, 222, 112, 457, 252, 366, 842, 133, 106, 370, 692, 0, 419, 252, 96, 111, 114, 96, 257, 219, 381, 117, 116, 117, 3, 1229, 903, 110, 960, 272, 127, 128, 439, 1530, 737, 489, 397, 1229, 132, 260, 447, 110, 124, 112, 265, 124, 407, 960, 979, 147, 117, 407, 117, 1550, 677, 698, 960, 111, 156, 0, 1557, 961, 110, 117, 425, 308, 133, 1308, 133, 1419, 431, 774, 433, 273, 1411, 1412, 111, 72, 534, 1023, 280, 30, 1525, 118, 132, 419, 72, 1530, 83, 84, 559, 560, 561, 117, 111, 351, 457, 83, 84, 72, 117, 462, 1419, 346, 110, 439, 72, 1550, 206, 133, 83, 84, 210, 447, 1557, 476, 1308, 83, 84, 111, 481, 111, 121, 122, 119, 117, 829, 117, 489, 117, 351, 774, 493, 489, 83, 84, 497, 493, 939, 500, 763, 502, 240, 241, 110, 133, 947, 133, 1144, 349, 493, 57, 132, 948, 759, 969, 476, 491, 699, 493, 133, 522, 699, 1005, 110, 493, 366, 699, 699, 852, 370, 667, 658, 699, 272, 699, 537, 275, 699, 540, 419, 542, 543, 110, 427, 428, 111, 852, 701, 117, 1067, 110, 993, 118, 110, 499, 1032, 1033, 296, 665, 439, 107, 522, 72, 110, 133, 1137, 132, 447, 111, 308, 432, 493, 599, 83, 84, 117, 537, 110, 1119, 540, 110, 542, 543, 80, 1308, 482, 1468, 72, 49, 113, 592, 133, 111, 1475, 111, 117, 493, 599, 83, 84, 697, 118, 112, 342, 493, 80, 701, 346, 610, 156, 612, 133, 117, 493, 641, 112, 600, 114, 117, 503, 482, 118, 111, 1195, 1196, 111, 365, 112, 133, 631, 369, 592, 111, 372, 133, 1468, 72, 112, 522, 114, 76, 965, 1475, 118, 692, 647, 1528, 83, 84, 117, 515, 653, 517, 114, 244, 520, 110, 111, 523, 117, 662, 1385, 664, 665, 666, 133, 72, 111, 1104, 614, 110, 781, 219, 618, 110, 133, 773, 83, 84, 110, 72, 889, 116, 119, 120, 117, 734, 111, 427, 428, 110, 83, 84, 117, 639, 1528, 72, 699, 643, 701, 1044, 133, 910, 664, 588, 666, 112, 83, 84, 111, 113, 1229, 714, 64, 117, 117, 455, 692, 720, 458, 112, 111, 724, 698, 133, 119, 273, 117, 1500, 110, 732, 125, 126, 280, 1506, 632, 113, 476, 971, 1023, 117, 72, 604, 745, 746, 76, 630, 110, 1472, 210, 1474, 635, 83, 84, 110, 1527, 112, 759, 55, 734, 1532, 111, 501, 110, 503, 112, 505, 117, 895, 113, 632, 732, 119, 120, 133, 637, 515, 115, 517, 110, 241, 520, 115, 522, 523, 939, 111, 133, 119, 120, 631, 381, 117, 947, 111, 534, 133, 111, 1324, 774, 117, 98, 349, 117, 831, 1529, 647, 1325, 111, 836, 113, 272, 692, 72, 117, 74, 75, 115, 113, 366, 1164, 662, 117, 370, 83, 84, 111, 110, 725, 132, 133, 111, 117, 1036, 1406, 296, 113, 117, 840, 111, 117, 110, 739, 112, 939, 117, 1534, 308, 82, 588, 852, 1423, 947, 837, 734, 113, 115, 110, 1534, 117, 599, 1379, 110, 725, 1382, 10, 11, 12, 13, 14, 113, 1135, 462, 1534, 70, 1139, 1140, 739, 74, 111, 1164, 77, 111, 79, 82, 117, 433, 120, 117, 111, 86, 630, 129, 895, 39, 117, 635, 194, 925, 130, 902, 903, 641, 94, 110, 72, 112, 74, 75, 1427, 500, 1135, 502, 1023, 1432, 1139, 83, 84, 759, 903, 217, 132, 67, 925, 1496, 1497, 112, 0, 903, 874, 227, 110, 1059, 112, 903, 110, 833, 939, 92, 93, 119, 120, 903, 110, 1462, 947, 111, 110, 115, 112, 1294, 110, 117, 72, 1064, 74, 75, 76, 697, 32, 110, 1245, 112, 965, 83, 84, 110, 111, 112, 970, 43, 833, 1208, 1209, 113, 1211, 49, 110, 113, 112, 719, 1217, 113, 985, 1220, 111, 119, 120, 88, 89, 63, 1255, 994, 66, 455, 49, 69, 458, 111, 296, 1002, 970, 110, 1005, 112, 1007, 903, 116, 117, 63, 749, 110, 66, 112, 903, 69, 110, 213, 112, 111, 1127, 966, 111, 903, 985, 110, 72, 112, 74, 75, 1548, 110, 111, 112, 773, 111, 1554, 83, 84, 111, 704, 1002, 706, 110, 1005, 113, 1007, 1565, 110, 111, 112, 1569, 599, 112, 515, 1057, 517, 117, 118, 520, 111, 112, 523, 653, 113, 1067, 112, 1509, 1070, 1071, 1072, 110, 111, 112, 72, 148, 74, 75, 1105, 1343, 1064, 970, 115, 1347, 631, 83, 84, 971, 161, 1064, 58, 59, 831, 1095, 148, 1064, 1057, 836, 116, 117, 647, 566, 567, 568, 569, 117, 1067, 161, 132, 1070, 1071, 1072, 115, 186, 187, 662, 115, 1559, 110, 10, 11, 12, 13, 14, 714, 1127, 113, 1224, 111, 1026, 720, 117, 118, 187, 724, 117, 118, 210, 111, 1023, 10, 11, 12, 13, 14, 1381, 113, 444, 39, 222, 4, 5, 6, 7, 8, 9, 210, 353, 113, 355, 72, 113, 74, 75, 1026, 44, 45, 1064, 222, 39, 113, 83, 84, 562, 563, 1064, 67, 564, 565, 252, 118, 478, 570, 571, 1064, 1449, 925, 118, 118, 1164, 929, 117, 29, 266, 58, 59, 60, 67, 110, 113, 1202, 111, 111, 115, 115, 118, 1207, 111, 116, 948, 116, 116, 759, 110, 117, 69, 111, 71, 515, 110, 118, 112, 1224, 520, 111, 117, 523, 1229, 119, 120, 969, 970, 971, 1267, 1268, 1269, 111, 133, 1207, 111, 110, 700, 112, 111, 111, 1229, 117, 443, 1249, 119, 120, 111, 111, 111, 1229, 473, 329, 29, 719, 111, 1229, 111, 111, 722, 111, 1267, 1268, 1269, 1229, 111, 1245, 85, 86, 87, 113, 329, 111, 350, 3, 111, 1249, 111, 111, 3, 1023, 10, 11, 12, 13, 14, 10, 11, 12, 13, 14, 1402, 110, 116, 112, 111, 114, 115, 111, 111, 132, 895, 1267, 1268, 1269, 1206, 111, 1544, 902, 111, 39, 117, 113, 1206, 1207, 39, 113, 111, 1324, 1325, 1308, 0, 1, 111, 117, 111, 118, 117, 1229, 1308, 407, 115, 117, 113, 111, 1308, 1229, 1342, 67, 117, 1206, 111, 117, 67, 111, 1229, 110, 113, 1534, 407, 110, 814, 1534, 32, 110, 110, 1249, 1534, 1534, 1324, 1325, 1104, 1105, 1534, 43, 1534, 110, 113, 1534, 1342, 49, 72, 133, 1379, 925, 76, 1382, 1535, 118, 680, 457, 116, 83, 84, 63, 111, 111, 66, 689, 116, 69, 111, 693, 130, 116, 1401, 1402, 115, 1509, 113, 994, 1559, 1303, 133, 111, 1411, 1412, 1308, 117, 110, 1303, 112, 117, 113, 1379, 1308, 493, 1382, 119, 120, 497, 1427, 3, 113, 1308, 111, 1432, 106, 891, 10, 11, 12, 13, 14, 111, 114, 1535, 1303, 117, 118, 1445, 111, 113, 47, 1450, 113, 1411, 1412, 113, 1342, 4, 5, 6, 7, 8, 9, 1462, 111, 39, 681, 1559, 113, 1427, 113, 929, 113, 133, 1432, 147, 148, 133, 133, 1445, 133, 133, 116, 111, 156, 157, 33, 1468, 1224, 161, 948, 116, 1450, 67, 1475, 1534, 1468, 118, 111, 1534, 1534, 113, 1468, 1475, 1462, 116, 113, 113, 1095, 1475, 1509, 1510, 113, 1249, 186, 187, 60, 113, 113, 113, 1519, 113, 69, 979, 71, 111, 1525, 111, 113, 111, 202, 1530, 113, 110, 110, 1534, 1535, 110, 210, 111, 610, 1535, 612, 133, 115, 113, 113, 1528, 118, 1548, 222, 1550, 1510, 111, 1010, 1554, 1528, 113, 1557, 1445, 1559, 1519, 1528, 1401, 96, 1559, 1565, 1525, 240, 241, 1569, 111, 1530, 96, 1468, 72, 110, 74, 75, 76, 252, 1475, 1468, 110, 133, 116, 83, 84, 260, 1475, 1548, 1468, 1550, 265, 266, 267, 1554, 113, 1475, 1557, 272, 111, 817, 111, 66, 1061, 1342, 1565, 111, 111, 117, 1569, 827, 110, 76, 1202, 72, 42, 74, 75, 76, 133, 119, 120, 296, 118, 841, 83, 84, 699, 111, 701, 133, 927, 1528, 111, 308, 96, 96, 26, 27, 28, 1528, 133, 111, 111, 1104, 133, 118, 133, 111, 1528, 324, 116, 110, 133, 118, 329, 111, 113, 110, 113, 133, 1544, 111, 116, 111, 116, 133, 111, 342, 111, 1079, 572, 346, 745, 746, 573, 350, 351, 1224, 1137, 1229, 574, 72, 575, 74, 75, 76, 576, 1497, 1387, 1140, 365, 190, 83, 84, 369, 1569, 161, 372, 197, 1318, 1475, 72, 1347, 74, 75, 76, 1445, 455, 455, 99, 1095, 101, 83, 84, 724, 706, 592, 66, 994, 110, 947, 112, 397, 949, 895, 681, 659, 118, 119, 120, 749, 967, 407, 1249, 493, 580, 1195, 1196, 1477, 110, 1479, 112, 759, 72, 580, 74, 75, 76, 119, 120, 425, -1, 427, 428, 83, 84, 431, 222, 580, 434, 72, -1, 74, 75, 76, -1, -1, 840, -1, 118, 269, 83, 84, -1, -1, 1514, -1, 1516, 1075, 852, 455, 110, 457, 458, 10, 11, 12, 13, 14, -1, 119, 120, 182, -1, -1, 260, -1, -1, 110, -1, 265, -1, 192, 193, -1, 1544, 481, 197, -1, 199, 200, -1, 161, 39, 489, 280, 491, -1, 493, -1, -1, -1, 497, 1041, 1042, 324, -1, -1, 503, -1, -1, -1, -1, 332, -1, -1, 335, -1, -1, 473, 515, 67, 517, -1, -1, 520, 72, 522, 523, -1, 76, -1, -1, -1, 1401, -1, 531, 83, 84, 534, 535, 817, -1, -1, -1, 72, 939, 74, 75, 76, -1, 827, -1, 222, 947, -1, 83, 84, -1, -1, -1, 1099, 1100, -1, 110, 841, 351, -1, -1, -1, -1, -1, 965, 119, 120, -1, -1, -1, -1, -1, 399, 85, 86, 87, 403, 580, 581, -1, -1, -1, -1, 260, -1, 588, -1, -1, 265, -1, 0, 10, 11, 12, 13, 14, 599, 600, 110, -1, 112, 604, 114, 115, -1, -1, -1, 610, -1, 612, -1, 10, 11, 12, 13, 14, -1, 0, 1, 1406, 39, -1, 32, -1, -1, -1, -1, 630, -1, -1, -1, -1, 635, -1, 637, -1, 1423, -1, 641, 432, 39, 644, 645, 646, -1, -1, -1, -1, 67, 32, -1, -1, -1, 72, -1, -1, 449, 76, -1, 69, 663, 488, 665, -1, 83, 84, 49, 72, 67, 74, 75, 76, -1, 72, 351, 74, 75, 76, 83, 84, -1, -1, -1, -1, 83, 84, 69, -1, 1477, 482, 1479, 110, 1317, -1, 697, 698, 699, 1243, 701, -1, 119, 120, -1, -1, -1, 110, -1, 112, -1, 1496, 1497, 110, -1, 112, 119, 120, 719, -1, -1, 681, 119, 120, -1, 106, -1, 1514, -1, 1516, -1, 1275, -1, -1, -1, -1, 737, 738, 739, 1283, 1284, 1285, -1, -1, 745, 746, -1, -1, -1, 157, 72, -1, 74, 75, 76, 580, 581, 432, -1, 1041, 1042, 83, 84, -1, -1, -1, -1, 148, -1, -1, -1, -1, 773, 774, -1, 156, 157, 778, 779, -1, -1, -1, -1, -1, -1, -1, -1, 1331, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, 187, 482, -1, -1, -1, -1, -1, 604, -1, -1, -1, 1099, 1100, -1, 821, 202, -1, 231, 205, 206, -1, -1, 829, 210, 831, -1, 833, -1, -1, 836, 837, -1, -1, 840, -1, 632, -1, 668, 252, -1, 637, 672, -1, 257, 231, 852, -1, 1476, 235, 1478, 237, 817, -1, -1, -1, -1, -1, -1, -1, 246, -1, 827, 584, 585, -1, 252, -1, -1, -1, -1, 257, -1, -1, -1, 705, 841, -1, -1, -1, -1, 267, -1, -1, -1, 1513, -1, 1515, -1, 275, -1, -1, 613, -1, -1, 616, 617, 903, 619, -1, 621, 622, -1, -1, -1, 626, 627, -1, -1, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 925, 108, -1, -1, 929, 604, -1, -1, -1, -1, 725, 1558, -1, 1560, 939, -1, -1, -1, -1, -1, 352, -1, 947, 948, 739, 132, 1573, 1574, -1, -1, -1, -1, -1, 632, -1, 960, 961, 342, 637, -1, 965, 346, -1, -1, 759, 970, 971, 352, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 365, -1, 987, -1, 369, -1, -1, 372, 993, 1275, 710, 711, 821, -1, -1, -1, 716, 1283, 1284, 1285, -1, 10, 11, 12, 13, 14, -1, 419, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1023, -1, -1, -1, 434, -1, -1, -1, -1, 439, -1, -1, 39, -1, -1, -1, 419, 447, -1, -1, 833, 1044, 1045, -1, -1, -1, -1, 1331, 725, -1, -1, 434, -1, -1, -1, -1, 439, -1, -1, -1, 67, 1064, 739, 473, 447, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, 1041, 1042, 491, -1, 493, -1, -1, -1, -1, -1, -1, 473, -1, -1, 476, -1, -1, -1, -1, -1, -1, -1, 1104, 1105, 110, -1, 112, 933, -1, 491, -1, 493, -1, 119, 120, -1, 0, 1119, -1, 501, -1, -1, -1, 505, -1, 1127, 535, -1, -1, -1, -1, -1, -1, -1, 1534, -1, -1, -1, 1099, 1100, -1, -1, -1, -1, -1, -1, -1, -1, 32, -1, -1, -1, 534, 535, -1, -1, -1, 833, -1, -1, -1, -1, 1164, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 69, 1012, 30, 31, 32, -1, 600, -1, -1, -1, -1, 39, -1, -1, 581, -1, -1, -1, 1029, 1206, 1207, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 599, 600, -1, -1, -1, 1224, -1, 67, -1, -1, 1229, -1, 72, 612, 74, 75, 0, 1026, 644, 645, 646, -1, -1, 83, 84, -1, 1245, -1, -1, -1, 1249, 630, -1, -1, -1, -1, 635, 663, -1, -1, -1, -1, 641, -1, -1, 644, 645, 646, 32, -1, -1, -1, 112, -1, -1, 681, 157, -1, -1, 119, 120, -1, -1, 1106, 663, 1243, 692, -1, -1, -1, -1, -1, 698, -1, -1, 1294, 1295, -1, -1, -1, -1, -1, 681, -1, 1303, 69, -1, -1, -1, 1308, -1, -1, -1, 692, -1, -1, -1, 1275, 697, 698, -1, -1, 701, -1, -1, 1283, 1284, 1285, 734, -1, -1, 737, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, 1342, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1026, -1, 734, -1, -1, 737, -1, -1, 39, -1, -1, -1, -1, -1, 746, 774, -1, 749, 252, -1, 1331, -1, -1, 257, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1101, -1, 67, -1, -1, -1, 157, 773, 774, -1, -1, -1, -1, 779, -1, -1, 1402, -1, -1, -1, -1, -1, -1, -1, 817, -1, -1, -1, -1, -1, 1206, -1, -1, 1419, 827, -1, 829, -1, -1, -1, -1, 834, -1, -1, 837, 110, -1, 112, 841, -1, -1, 817, -1, -1, 119, 120, -1, -1, -1, 1445, -1, 827, -1, 829, -1, 831, -1, -1, 834, -1, 836, 837, -1, -1, -1, 841, -1, -1, -1, -1, -1, -1, 1468, -1, 352, 851, -1, -1, -1, 1475, -1, 1477, -1, 1479, -1, -1, -1, -1, -1, -1, -1, 252, -1, 0, 1, -1, 257, -1, -1, -1, 903, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 1509, -1, 1226, -1, 1303, 1514, -1, 1516, -1, -1, -1, -1, 32, -1, 903, -1, -1, -1, -1, 1528, -1, -1, -1, 1206, 39, 1534, 1535, -1, 419, -1, -1, -1, -1, -1, -1, 1544, 925, -1, -1, -1, -1, -1, -1, 434, -1, -1, 66, -1, 439, 69, 1559, -1, 67, -1, -1, -1, 447, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, 987, 961, -1, -1, -1, -1, -1, 352, -1, 969, 970, 473, -1, -1, 0, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, 987, -1, 491, -1, 493, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 32, -1, -1, 1303, -1, -1, -1, -1, 1041, 1042, -1, 1044, 1045, -1, -1, -1, -1, 1023, -1, -1, 157, -1, -1, -1, -1, -1, -1, 535, 419, -1, 1036, 1064, -1, -1, -1, 1041, 1042, 69, 1044, 1045, -1, -1, -1, 434, -1, -1, -1, 7, 439, -1, 10, 11, 12, 13, 14, -1, 447, -1, 1064, -1, -1, -1, -1, -1, -1, -1, 1099, 1100, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, 39, 40, -1, 473, -1, -1, 222, -1, -1, -1, -1, -1, -1, 600, 1099, 1100, -1, -1, -1, -1, 1105, 491, -1, 493, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, -1, 252, 76, -1, -1, 79, 80, 81, 82, 83, 84, 157, 86, 87, -1, -1, -1, 1164, -1, -1, 94, -1, 644, 645, 646, -1, -1, -1, -1, -1, 535, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, 663, -1, -1, 1164, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, 681, 1207, -1, -1, -1, -1, -1, -1, -1, -1, -1, 692, -1, -1, -1, -1, -1, 698, -1, -1, -1, -1, -1, 1229, -1, -1, -1, -1, 1207, -1, -1, -1, -1, -1, -1, -1, 600, 1243, -1, 1245, -1, -1, -1, -1, -1, 1224, -1, 252, -1, -1, 1229, -1, 257, 734, -1, -1, 737, 10, 11, 12, 13, 14, -1, -1, 1243, -1, 1245, -1, -1, 1275, 1249, -1, -1, -1, -1, -1, -1, 1283, 1284, 1285, 644, 645, 646, -1, -1, -1, 39, -1, 1294, 1295, -1, -1, -1, 774, -1, -1, 1275, -1, -1, 663, -1, -1, 1308, -1, 1283, 1284, 1285, -1, -1, -1, -1, -1, -1, -1, 67, 1294, 1295, 681, -1, 72, -1, 74, 75, 76, 434, 1331, -1, -1, 692, 1308, 83, 84, -1, -1, 698, -1, 817, -1, -1, -1, -1, -1, -1, -1, -1, -1, 827, 352, 829, -1, -1, -1, 1331, 834, -1, -1, 837, 110, -1, -1, 841, -1, -1, 1342, -1, -1, 119, 120, -1, -1, 734, -1, -1, 737, -1, -1, -1, -1, -1, -1, -1, -1, -1, 493, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 774, -1, -1, 1419, 419, 39, -1, -1, -1, -1, -1, -1, 903, -1, -1, 535, -1, -1, -1, 434, -1, -1, -1, -1, 439, -1, -1, -1, -1, -1, 1419, -1, 447, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, 817, -1, -1, -1, -1, -1, 83, 84, -1, 1468, 827, -1, 829, 1445, -1, 473, 1475, 834, -1, -1, 837, -1, -1, -1, 841, 53, -1, 55, -1, -1, 58, 59, 60, 491, 62, 493, 1468, 600, -1, -1, -1, -1, -1, 1475, -1, -1, -1, -1, -1, 77, -1, -1, -1, 987, -1, -1, -1, -1, -1, -1, -1, 89, 90, -1, -1, -1, -1, -1, -1, 1528, -1, -1, 10, 11, 12, 13, 14, 535, -1, -1, -1, 644, 645, 646, -1, -1, 903, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1528, -1, -1, -1, 663, 39, -1, 1535, -1, -1, -1, 1041, 1042, -1, 1044, 1045, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, 1064, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, 600, -1, -1, 83, 84, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1099, 1100, 30, 31, 32, 987, -1, 110, -1, 737, -1, 39, -1, -1, -1, -1, 119, 120, -1, -1, -1, 644, 645, 646, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, 663, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, 681, 1041, 1042, -1, 1044, 1045, -1, 1164, -1, -1, -1, 692, -1, -1, -1, -1, -1, 698, -1, 37, 38, -1, 40, -1, 1064, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, 829, -1, -1, -1, -1, 66, -1, 1207, 837, -1, 734, 72, -1, 737, -1, 76, 1099, 1100, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 1229, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1243, -1, 1245, -1, -1, -1, 110, 774, 345, -1, 347, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 358, 359, -1, -1, -1, -1, -1, -1, -1, -1, 903, 1275, -1, -1, -1, -1, -1, 1164, -1, 1283, 1284, 1285, -1, -1, -1, -1, -1, -1, -1, 817, 1294, 1295, -1, -1, -1, -1, -1, -1, -1, 827, -1, 829, -1, -1, 1308, -1, 834, -1, -1, 837, -1, -1, -1, 841, -1, -1, -1, -1, -1, -1, 1207, 283, -1, 285, 286, -1, -1, 1331, -1, -1, -1, 293, 294, -1, -1, -1, -1, 970, -1, -1, -1, -1, 1229, -1, -1, -1, 308, 309, -1, -1, -1, -1, -1, -1, 987, -1, 1243, -1, 1245, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, -1, -1, -1, 76, -1, 78, 903, 80, -1, -1, 26, 27, 28, -1, 87, 346, -1, -1, -1, 1275, -1, -1, -1, -1, -1, -1, -1, 1283, 1284, 1285, -1, -1, -1, -1, -1, -1, -1, -1, 1294, 1295, -1, -1, 1044, 1045, -1, 118, 1419, 120, 121, 122, -1, 382, 1308, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1064, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1331, -1, -1, -1, -1, -1, -1, -1, 99, -1, 101, -1, -1, 161, -1, 987, -1, -1, -1, -1, 1468, -1, -1, -1, -1, -1, -1, 1475, -1, -1, -1, -1, -1, -1, -1, 126, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 1041, 1042, -1, 1044, 1045, 222, 39, 224, 225, 226, -1, 1528, -1, -1, -1, -1, -1, -1, -1, 1419, -1, -1, 182, 1064, -1, -1, -1, -1, -1, -1, 190, -1, 192, 193, 67, -1, 69, 197, 71, 199, 200, 74, 75, 260, -1, -1, -1, -1, 265, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1099, 1100, 1206, 1207, -1, 280, -1, -1, -1, -1, 1468, -1, -1, -1, -1, -1, -1, 1475, -1, -1, -1, -1, -1, -1, 115, 1229, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, -1, 1249, -1, -1, -1, -1, -1, 269, -1, -1, 329, -1, -1, 726, -1, 728, -1, -1, -1, -1, -1, 1164, 735, 736, -1, -1, 1528, 740, -1, -1, -1, -1, 351, -1, -1, -1, -1, 356, 357, 752, -1, -1, -1, -1, 757, 364, 1294, 1295, -1, -1, -1, -1, -1, -1, -1, 1303, -1, -1, -1, -1, 1308, -1, -1, -1, 1207, -1, -1, -1, -1, -1, 783, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1229, -1, 407, -1, -1, -1, -1, -1, 1342, -1, -1, -1, -1, -1, 1243, -1, 1245, -1, -1, -1, 425, -1, -1, -1, -1, 430, -1, 432, -1, -1, -1, -1, -1, -1, -1, -1, -1, 700, -1, -1, -1, -1, -1, -1, 449, -1, 1275, 452, 453, -1, -1, -1, -1, -1, 1283, 1284, 1285, -1, -1, 722, -1, -1, -1, 468, -1, 1294, 1295, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 482, -1, 1308, -1, -1, -1, -1, 489, 1419, 885, 886, 887, 888, -1, 890, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, 1331, 40, -1, -1, -1, 906, -1, -1, -1, 1445, -1, -1, -1, -1, -1, -1, 781, -1, -1, 920, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, 1468, 72, 49, 74, 75, 76, -1, 1475, 79, 80, 81, 82, 83, 84, -1, 86, 87, 814, -1, 66, -1, -1, -1, 94, -1, -1, 959, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, 114, 115, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, 1419, -1, -1, -1, 1528, -1, -1, -1, -1, 604, 999, 114, -1, -1, -1, 118, -1, 1006, -1, -1, -1, -1, 1011, -1, -1, -1, -1, 1016, -1, 1018, -1, -1, -1, 1022, -1, 1024, 1025, 632, -1, 1028, -1, -1, 637, -1, 147, -1, 584, 585, 1037, 1468, -1, -1, -1, -1, 157, -1, 1475, -1, 161, -1, -1, -1, -1, -1, -1, -1, 1055, 1056, -1, -1, -1, -1, -1, -1, -1, 613, -1, -1, 616, 617, -1, 619, -1, 621, 622, -1, -1, -1, 626, 627, -1, -1, -1, 1082, -1, -1, 1085, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 210, -1, 1528, -1, -1, -1, -1, -1, -1, -1, -1, -1, 222, -1, -1, -1, -1, -1, -1, 979, -1, -1, -1, 725, -1, -1, -1, -1, 1124, -1, 240, 241, -1, -1, 1130, 1131, -1, 739, -1, -1, -1, -1, -1, -1, -1, -1, 1142, -1, -1, -1, 1010, 1147, -1, -1, 1150, 265, 1152, 759, -1, 1155, 705, -1, 272, 1023, -1, 710, 711, -1, -1, -1, -1, 716, 1168, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1181, 296, 1183, 1184, 1185, 1186, -1, -1, -1, -1, -1, -1, -1, 308, -1, -1, -1, -1, 1199, 1064, 1201, -1, -1, -1, 1205, -1, -1, -1, -1, -1, -1, -1, -1, -1, 821, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 833, -1, -1, -1, -1, 346, -1, 1234, 1235, -1, 351, -1, -1, -1, -1, -1, -1, -1, -1, 852, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, 1137, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1286, 1287, -1, -1, -1, -1, -1, -1, -1, -1, 1296, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, 427, 428, 78, -1, -1, -1, -1, 434, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1195, 1196, 939, -1, -1, -1, -1, -1, -1, -1, 455, -1, -1, 458, -1, -1, 110, 1348, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, 965, 1360, -1, 1362, 1363, 1364, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1374, -1, -1, 491, -1, -1, -1, -1, -1, 1383, -1, -1, -1, 993, -1, 503, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1399, -1, 515, -1, 517, -1, -1, 520, -1, 522, 523, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1026, 535, -1, -1, -1, -1, -1, -1, -1, -1, 44, 1037, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1455, 1456, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 1468, -1, -1, -1, -1, -1, 588, 1475, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, 600, -1, 102, -1, 604, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, 1508, -1, 83, 84, 1512, 1119, -1, -1, 630, -1, -1, -1, -1, 635, -1, -1, -1, -1, -1, -1, -1, -1, 644, 645, 646, -1, -1, -1, -1, 110, -1, 112, -1, 1541, 1406, 1543, 158, -1, 119, 120, -1, 663, -1, -1, 1101, -1, -1, -1, -1, -1, 172, 1423, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1571, 1572, -1, -1, -1, -1, -1, -1, 1579, 1580, 195, -1, -1, 698, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 209, -1, -1, -1, -1, 1206, -1, -1, -1, 218, 719, -1, -1, -1, -1, -1, -1, -1, -1, 228, -1, -1, -1, -1, -1, -1, -1, -1, 737, -1, 739, -1, -1, -1, -1, -1, -1, 1496, 1497, -1, -1, -1, -1, -1, 253, -1, -1, -1, -1, 258, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 271, -1, -1, 774, -1, -1, 277, -1, 279, -1, -1, -1, -1, -1, -1, -1, -1, -1, 7, -1, 1226, 10, 11, 12, 13, 14, 297, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1303, -1, -1, -1, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, 829, -1, -1, -1, 833, -1, -1, -1, 837, -1, 339, -1, -1, -1, -1, 344, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 373, -1, -1, 94, 377, 378, -1, 380, -1, -1, -1, -1, -1, -1, 387, 388, -1, 390, 391, 110, 393, 112, 395, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, -1, 412, -1, -1, -1, -1, -1, 37, 38, 420, 40, -1, -1, -1, -1, -1, -1, -1, 929, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 445, -1, 66, 948, -1, -1, -1, -1, 72, -1, -1, 456, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 971, -1, -1, -1, 94, -1, -1, -1, 479, -1, -1, -1, -1, -1, 485, -1, 987, -1, -1, 490, 110, -1, 112, -1, -1, 115, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 156, 157, -1, -1, 1023, -1, -1, -1, 527, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 541, -1, -1, 1044, 1045, -1, -1, -1, -1, -1, -1, -1, 190, -1, -1, -1, -1, -1, -1, 197, -1, -1, -1, -1, -1, -1, 1559, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 580, -1, -1, -1, -1, -1, -1, -1, -1, 589, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, 602, -1, 1104, -1, -1, -1, -1, -1, -1, 611, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 269, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, 652, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1164, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, 324, 688, -1, -1, -1, -1, -1, -1, 332, 333, -1, 335, 336, -1, -1, -1, -1, -1, -1, 1206, -1, -1, 346, -1, -1, -1, 350, -1, 112, -1, -1, -1, 116, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, 369, -1, -1, 372, -1, -1, -1, -1, -1, -1, -1, 743, -1, 1245, -1, -1, -1, -1, -1, -1, -1, 753, 754, -1, -1, -1, -1, -1, -1, -1, 399, -1, -1, -1, 403, 767, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 784, -1, 786, -1, -1, 147, 790, -1, -1, -1, 1294, 1295, -1, 434, -1, 157, -1, -1, -1, 1303, -1, -1, -1, -1, -1, -1, -1, 169, 170, -1, -1, -1, -1, -1, -1, -1, 457, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 488, -1, 39, 491, -1, 856, -1, -1, -1, -1, -1, -1, 863, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 876, -1, 878, -1, -1, 67, 240, -1, -1, -1, -1, -1, 74, 75, -1, -1, 892, -1, 531, -1, -1, 534, 535, 899, -1, -1, -1, -1, -1, -1, 264, -1, -1, -1, -1, 911, -1, -1, 914, -1, -1, -1, -1, 1419, -1, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, 932, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, 580, 581, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 599, 600, -1, -1, -1, -1, -1, -1, -1, -1, -1, 610, -1, 612, 613, 1477, -1, 1479, -1, -1, 619, -1, -1, -1, -1, -1, -1, -1, -1, -1, 629, 630, -1, -1, -1, -1, 635, -1, -1, -1, -1, -1, -1, -1, -1, 644, 645, 646, -1, -1, -1, -1, 1514, -1, 1516, -1, -1, -1, -1, 1021, -1, 381, -1, -1, 663, -1, -1, -1, -1, 668, 669, -1, -1, 672, 673, -1, -1, -1, -1, -1, 679, -1, 1544, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, 697, 698, 699, -1, 701, -1, -1, -1, 705, -1, -1, -1, -1, -1, -1, -1, -1, 66, 1078, -1, -1, -1, -1, 72, -1, 1085, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, 737, 738, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1115, -1, -1, -1, -1, 1120, 110, -1, 112, -1, 483, -1, -1, 1128, 118, 119, 120, 121, 122, 123, 124, 773, 774, -1, -1, -1, 778, 779, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1159, -1, -1, -1, -1, 522, -1, -1, -1, -1, -1, -1, 1171, -1, -1, 1174, -1, 1176, 535, -1, -1, -1, -1, 540, -1, 821, 543, -1, -1, -1, -1, 1190, 1191, 829, -1, -1, -1, 554, 555, 556, 836, 837, -1, -1, 840, -1, 842, -1, -1, -1, -1, -1, -1, 1212, -1, -1, 852, -1, -1, -1, -1, 578, -1, -1, -1, -1, -1, -1, -1, -1, -1, 588, -1, -1, -1, -1, -1, -1, 595, -1, 1239, -1, -1, 600, -1, -1, 0, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, 925, -1, -1, 649, -1, -1, -1, -1, 933, -1, -1, -1, 658, -1, 939, -1, -1, -1, -1, -1, -1, 64, 947, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, 960, 961, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, 1337, -1, 1339, 698, -1, -1, -1, -1, -1, -1, -1, -1, -1, 987, -1, 1352, -1, 1354, 110, 993, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, 1372, -1, -1, 1012, 1013, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1023, -1, 1388, 1389, -1, -1, 1029, 1030, -1, 1032, 1033, 1034, -1, -1, 1400, -1, -1, 1403, -1, -1, -1, 1044, 1045, -1, -1, -1, -1, -1, -1, -1, 774, -1, 776, -1, -1, -1, -1, -1, 782, 1425, -1, -1, -1, -1, -1, 789, -1, -1, 1434, -1, -1, 1437, -1, 1439, 1440, 1441, 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, -1, 1105, 1106, 1107, -1, -1, -1, -1, 833, 834, 39, -1, 837, -1, 1481, 1119, 1483, -1, -1, 1486, -1, -1, -1, -1, -1, -1, 851, -1, -1, -1, -1, -1, -1, -1, 1501, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, 1164, -1, -1, -1, -1, -1, 891, -1, -1, -1, 895, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, 1224, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, 1245, 69, -1, 71, 72, 971, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, 987, 988, -1, -1, -1, 94, -1, 994, -1, -1, -1, -1, -1, 1000, -1, -1, 1003, -1, 1005, 37, 38, 110, 40, 112, -1, -1, -1, -1, 1294, 1295, 119, 120, 121, 122, 123, 124, -1, -1, -1, 1026, -1, -1, -1, -1, 133, -1, -1, -1, 66, -1, 1037, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 1059, -1, 1061, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1076, 1077, -1, 110, -1, 112, -1, -1, -1, -1, 117, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, 1097, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, 1419, -1, -1, -1, -1, 1145, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, 1164, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, 66, 1179, 1180, 83, 84, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, 110, -1, 112, -1, -1, -1, 116, -1, -1, 119, 120, -1, -1, -1, 110, -1, 112, -1, -1, 115, -1, -1, 1509, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1534, 1535, -1, -1, -1, -1, 1261, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1559, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 41, 1322, 43, 1324, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, 115, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, 1410, -1, -1, 133, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, 1492, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, -1, 1544, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 110, -1, 112, -1, -1, -1, -1, 117, -1, 119, 120, 121, 122, 123, 124, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, 117, -1, 119, 120, 121, 122, 123, 124, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, 117, -1, 119, 120, 121, 122, 123, 124, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -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, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -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, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 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, 119, 120, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -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, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, 34, 35, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 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, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 78, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, 112, 36, -1, -1, 39, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 112, 39, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -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, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 111, 112, 39, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 78, 112, -1, -1, -1, 83, 84, -1, 119, 120, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 112, -1, 30, 31, 32, -1, -1, 119, 120, -1, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, 115, -1, -1, -1, 119, 120, 121, 122, 123, 124, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 78, 110, 111, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 112, -1, 30, 31, 32, -1, -1, 119, 120, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, 40, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 112, -1, 30, 31, 32, -1, -1, 119, 120, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 112, -1, 30, 31, 32, -1, -1, 119, 120, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 112, -1, 30, 31, 32, -1, -1, 119, 120, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 78, 110, -1, 112, -1, 83, 84, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, 110, -1, 112, 83, 84, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, 40, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, 110, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 112, 30, 31, 32, 116, -1, -1, 119, 120, -1, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, 67, -1, -1, 39, -1, -1, -1, 74, 75, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 67, -1, 30, 31, 32, -1, -1, 74, 75, -1, -1, 39, -1, -1, 112, -1, -1, -1, 116, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, 112, 74, 75, -1, -1, -1, -1, 119, 120, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 112, -1, -1, -1, -1, -1, -1, 119, 120, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 67, -1, 30, 31, 32, -1, -1, 74, 75, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, 112, 74, 75, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 112, -1, -1, -1, -1, -1, -1, 119, 120, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, 110, -1, 112, -1, -1, 115, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, 37, 38, 133, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, 115, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, 37, 38, 133, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, 115, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, 37, 38, 129, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, 115, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, 37, 38, 129, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, 112, -1, -1, 115, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, 67, -1, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, 96, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 110, -1, 112, 94, -1, 37, 38, -1, 40, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, 110, -1, 112, -1, -1, 37, 38, -1, 40, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 110, -1, 112, 94, -1, 37, 38, -1, 40, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, 110, -1, 112, -1, -1, 37, 38, -1, 40, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 110, -1, -1, 94, -1, 37, 38, -1, 40, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 36, 39, 40, 64, 67, 69, 71, 72, 74, 75, 76, 83, 84, 110, 112, 119, 120, 138, 141, 150, 199, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 232, 233, 234, 235, 236, 237, 238, 239, 241, 242, 243, 244, 245, 246, 248, 256, 257, 284, 285, 286, 294, 297, 303, 304, 306, 308, 309, 315, 320, 324, 325, 326, 327, 328, 329, 330, 331, 351, 368, 369, 370, 371, 72, 140, 141, 150, 216, 218, 226, 228, 238, 242, 244, 285, 82, 110, 313, 314, 315, 313, 313, 72, 74, 75, 76, 139, 140, 274, 275, 295, 296, 74, 75, 275, 110, 306, 11, 200, 110, 150, 320, 325, 326, 327, 329, 330, 331, 113, 135, 112, 219, 226, 228, 324, 328, 367, 368, 371, 372, 136, 107, 132, 278, 115, 136, 174, 74, 75, 138, 273, 136, 136, 136, 117, 136, 74, 75, 110, 150, 310, 319, 320, 321, 322, 323, 324, 328, 332, 333, 334, 335, 336, 342, 3, 28, 78, 240, 3, 5, 74, 112, 150, 218, 229, 233, 236, 245, 286, 324, 328, 371, 216, 218, 228, 238, 242, 244, 285, 324, 328, 33, 234, 234, 229, 236, 136, 234, 229, 234, 229, 75, 110, 115, 275, 286, 115, 275, 234, 229, 117, 136, 136, 0, 135, 110, 174, 313, 313, 135, 112, 226, 228, 369, 273, 273, 132, 228, 110, 150, 310, 320, 324, 112, 150, 371, 307, 231, 315, 110, 291, 110, 110, 51, 110, 37, 38, 40, 66, 72, 76, 79, 80, 81, 82, 86, 87, 94, 110, 112, 121, 122, 123, 124, 137, 141, 142, 143, 144, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 165, 167, 226, 277, 293, 367, 372, 228, 111, 111, 111, 111, 111, 111, 111, 74, 75, 112, 226, 273, 351, 369, 112, 119, 150, 165, 218, 219, 225, 228, 232, 233, 238, 241, 242, 244, 263, 264, 268, 269, 270, 271, 285, 351, 363, 364, 365, 366, 371, 372, 113, 110, 324, 328, 371, 110, 117, 133, 112, 115, 150, 165, 279, 279, 116, 135, 117, 133, 110, 117, 133, 117, 133, 117, 133, 313, 133, 320, 321, 322, 323, 333, 334, 335, 336, 228, 319, 332, 64, 312, 112, 313, 350, 351, 313, 313, 174, 135, 110, 313, 350, 313, 313, 228, 310, 110, 110, 227, 228, 226, 228, 113, 135, 226, 367, 372, 174, 135, 273, 278, 218, 233, 324, 328, 174, 135, 295, 228, 238, 133, 228, 228, 293, 40, 112, 226, 249, 250, 251, 252, 367, 371, 247, 259, 275, 258, 228, 295, 133, 133, 306, 135, 140, 272, 3, 136, 208, 209, 223, 225, 228, 135, 312, 110, 312, 165, 320, 228, 110, 135, 273, 115, 33, 34, 35, 226, 287, 288, 290, 135, 130, 132, 292, 135, 229, 235, 236, 273, 316, 317, 318, 110, 142, 110, 149, 110, 149, 152, 110, 149, 110, 110, 149, 149, 140, 112, 165, 170, 174, 226, 276, 367, 113, 135, 82, 85, 86, 87, 110, 112, 114, 115, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 132, 169, 152, 152, 119, 125, 126, 121, 122, 88, 89, 90, 91, 127, 128, 92, 93, 120, 129, 130, 94, 95, 131, 132, 374, 110, 150, 346, 347, 348, 349, 350, 111, 117, 110, 350, 351, 110, 350, 351, 135, 110, 226, 369, 113, 135, 136, 112, 226, 228, 362, 363, 371, 372, 136, 110, 112, 150, 320, 337, 338, 339, 340, 341, 342, 343, 344, 345, 351, 352, 353, 354, 355, 356, 357, 150, 371, 228, 136, 136, 150, 226, 228, 364, 273, 226, 351, 364, 273, 110, 135, 135, 135, 113, 135, 72, 80, 112, 114, 141, 275, 279, 280, 281, 282, 283, 135, 135, 135, 135, 135, 135, 310, 111, 111, 111, 111, 111, 111, 111, 319, 332, 110, 278, 113, 208, 135, 310, 170, 277, 170, 277, 310, 112, 208, 312, 174, 135, 208, 111, 251, 252, 113, 135, 110, 118, 150, 253, 255, 319, 320, 332, 350, 358, 359, 360, 361, 116, 250, 117, 133, 117, 133, 275, 115, 117, 373, 132, 260, 115, 228, 265, 266, 267, 270, 271, 111, 117, 174, 135, 119, 165, 135, 225, 228, 264, 363, 371, 304, 305, 110, 150, 337, 111, 117, 374, 275, 287, 110, 115, 275, 277, 287, 111, 117, 110, 142, 111, 118, 276, 276, 276, 112, 140, 146, 165, 277, 276, 113, 135, 111, 117, 111, 110, 150, 358, 111, 117, 165, 112, 140, 112, 145, 146, 135, 112, 140, 145, 165, 165, 165, 152, 152, 152, 153, 153, 154, 154, 155, 155, 155, 155, 156, 156, 157, 158, 159, 160, 161, 118, 170, 165, 135, 347, 348, 349, 228, 346, 313, 313, 165, 277, 135, 272, 135, 226, 351, 364, 228, 232, 113, 113, 135, 371, 113, 110, 135, 320, 338, 339, 340, 343, 353, 354, 355, 113, 135, 228, 337, 341, 352, 110, 313, 356, 374, 313, 313, 374, 110, 313, 356, 313, 313, 313, 313, 351, 226, 362, 372, 273, 113, 117, 113, 117, 374, 226, 364, 374, 261, 262, 263, 264, 261, 261, 273, 165, 135, 112, 275, 118, 117, 373, 279, 80, 112, 118, 283, 29, 210, 211, 273, 261, 140, 310, 140, 312, 110, 350, 351, 110, 350, 351, 142, 351, 174, 265, 111, 111, 111, 111, 113, 174, 208, 174, 115, 133, 133, 112, 320, 359, 360, 361, 163, 164, 228, 358, 254, 255, 254, 313, 313, 275, 313, 249, 275, 116, 164, 259, 136, 136, 140, 223, 136, 136, 261, 110, 150, 371, 136, 116, 228, 288, 289, 136, 135, 135, 110, 136, 111, 317, 170, 171, 118, 133, 112, 142, 201, 202, 203, 111, 117, 111, 135, 118, 111, 111, 111, 165, 228, 115, 152, 167, 165, 166, 168, 117, 136, 135, 135, 111, 117, 165, 135, 116, 163, 118, 265, 111, 111, 111, 346, 265, 111, 261, 226, 364, 112, 119, 150, 165, 165, 228, 343, 265, 111, 111, 111, 111, 111, 111, 111, 7, 228, 337, 341, 352, 135, 135, 374, 135, 135, 111, 136, 136, 136, 136, 278, 136, 163, 164, 165, 311, 135, 279, 281, 116, 135, 212, 275, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 57, 61, 62, 112, 129, 140, 171, 172, 173, 174, 175, 176, 178, 179, 191, 193, 194, 199, 213, 309, 29, 136, 132, 278, 135, 135, 111, 136, 174, 249, 113, 111, 111, 111, 358, 253, 116, 260, 373, 111, 117, 113, 113, 136, 228, 117, 374, 291, 111, 287, 216, 218, 226, 299, 300, 301, 302, 293, 111, 111, 118, 164, 110, 111, 118, 117, 140, 165, 165, 280, 117, 136, 168, 113, 140, 147, 148, 165, 146, 136, 147, 163, 167, 136, 110, 350, 351, 136, 136, 135, 136, 136, 136, 165, 111, 136, 110, 350, 351, 110, 356, 110, 356, 351, 227, 7, 119, 136, 165, 265, 265, 264, 268, 268, 269, 117, 117, 111, 111, 113, 96, 124, 136, 136, 147, 279, 165, 117, 133, 213, 217, 228, 232, 110, 110, 172, 110, 110, 133, 140, 133, 140, 119, 140, 171, 110, 174, 166, 166, 113, 144, 118, 133, 136, 135, 136, 212, 111, 165, 265, 265, 313, 111, 116, 110, 350, 351, 116, 135, 111, 135, 136, 310, 116, 135, 136, 136, 111, 115, 201, 113, 164, 133, 201, 203, 111, 117, 136, 373, 166, 113, 136, 85, 114, 117, 136, 136, 113, 136, 111, 135, 111, 111, 113, 113, 113, 136, 111, 135, 135, 135, 165, 165, 136, 113, 136, 136, 136, 136, 135, 135, 164, 164, 113, 113, 136, 136, 275, 228, 170, 170, 47, 170, 135, 133, 133, 170, 133, 133, 170, 58, 59, 60, 195, 196, 197, 133, 63, 133, 115, 313, 176, 116, 133, 136, 136, 135, 96, 270, 271, 111, 300, 117, 133, 117, 133, 116, 298, 118, 142, 111, 111, 118, 168, 113, 116, 113, 112, 148, 112, 148, 148, 113, 113, 113, 265, 113, 265, 265, 265, 136, 136, 113, 113, 111, 111, 113, 117, 96, 264, 96, 136, 113, 113, 111, 111, 110, 111, 171, 192, 213, 133, 111, 110, 110, 174, 197, 58, 59, 165, 145, 172, 111, 111, 265, 115, 135, 135, 299, 142, 204, 110, 133, 204, 136, 118, 135, 135, 136, 136, 136, 136, 113, 113, 135, 136, 113, 172, 44, 45, 115, 182, 183, 184, 170, 172, 136, 111, 171, 115, 184, 96, 135, 96, 135, 110, 110, 133, 116, 136, 135, 273, 310, 116, 117, 118, 164, 111, 113, 165, 147, 147, 111, 111, 111, 111, 268, 42, 164, 180, 181, 311, 118, 135, 172, 182, 111, 133, 172, 133, 135, 111, 135, 111, 135, 96, 135, 96, 135, 133, 111, 299, 142, 140, 205, 111, 133, 118, 136, 136, 172, 96, 117, 118, 136, 206, 207, 213, 133, 171, 171, 206, 174, 198, 226, 367, 174, 198, 111, 135, 111, 135, 116, 111, 117, 165, 113, 113, 164, 180, 183, 185, 186, 135, 133, 183, 187, 188, 136, 110, 150, 310, 358, 140, 136, 174, 198, 174, 198, 110, 133, 140, 172, 177, 116, 183, 213, 171, 56, 177, 190, 116, 183, 111, 228, 111, 136, 136, 293, 172, 177, 133, 189, 190, 177, 190, 174, 174, 111, 111, 111, 189, 136, 136, 174, 174, 136, 136 }; #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 292 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 298 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 307 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Integer, (yyvsp[(1) - (1)].tok) ); } break; case 5: /* Line 1806 of yacc.c */ #line 308 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Float, (yyvsp[(1) - (1)].tok) ); } break; case 6: /* Line 1806 of yacc.c */ #line 309 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Character, (yyvsp[(1) - (1)].tok) ); } break; case 16: /* Line 1806 of yacc.c */ #line 334 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::String, (yyvsp[(1) - (1)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 335 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].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) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 20: /* Line 1806 of yacc.c */ #line 346 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 21: /* Line 1806 of yacc.c */ #line 348 "parser.yy" { (yyval.en) = new ValofExprNode( (yyvsp[(2) - (3)].sn) ); } break; case 23: /* Line 1806 of yacc.c */ #line 358 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Index ), (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ); } break; case 24: /* Line 1806 of yacc.c */ #line 360 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ); } break; case 25: /* Line 1806 of yacc.c */ #line 364 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 27: /* Line 1806 of yacc.c */ #line 367 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 29: /* Line 1806 of yacc.c */ #line 370 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::IncrPost ), (yyvsp[(1) - (2)].en) ); } break; case 30: /* Line 1806 of yacc.c */ #line 372 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::DecrPost ), (yyvsp[(1) - (2)].en) ); } break; case 31: /* Line 1806 of yacc.c */ #line 374 "parser.yy" { (yyval.en) = new CompoundLiteralNode( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 376 "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 34: /* Line 1806 of yacc.c */ #line 385 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 35: /* Line 1806 of yacc.c */ #line 390 "parser.yy" { (yyval.en) = 0; } break; case 37: /* Line 1806 of yacc.c */ #line 393 "parser.yy" { (yyval.en) = (yyvsp[(3) - (3)].en)->set_argName( (yyvsp[(1) - (3)].tok) ); } break; case 38: /* Line 1806 of yacc.c */ #line 398 "parser.yy" { (yyval.en) = (yyvsp[(7) - (7)].en)->set_argName( (yyvsp[(3) - (7)].en) ); } break; case 39: /* Line 1806 of yacc.c */ #line 400 "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 41: /* Line 1806 of yacc.c */ #line 405 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 42: /* Line 1806 of yacc.c */ #line 410 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 43: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); } break; case 44: /* Line 1806 of yacc.c */ #line 416 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); } break; case 45: /* Line 1806 of yacc.c */ #line 418 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); } break; case 46: /* Line 1806 of yacc.c */ #line 420 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); } break; case 48: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 49: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 50: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 51: /* Line 1806 of yacc.c */ #line 434 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 52: /* Line 1806 of yacc.c */ #line 439 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 53: /* Line 1806 of yacc.c */ #line 441 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Incr ), (yyvsp[(2) - (2)].en) ); } break; case 54: /* Line 1806 of yacc.c */ #line 443 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Decr ), (yyvsp[(2) - (2)].en) ); } break; case 55: /* Line 1806 of yacc.c */ #line 445 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), (yyvsp[(2) - (2)].en) ); } break; case 56: /* Line 1806 of yacc.c */ #line 447 "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 449 "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 451 "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 453 "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 455 "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 457 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), (yyvsp[(2) - (2)].en) ); } break; case 62: /* Line 1806 of yacc.c */ #line 459 "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 461 "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 465 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::PointTo ); } break; case 65: /* Line 1806 of yacc.c */ #line 466 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AddressOf ); } break; case 66: /* Line 1806 of yacc.c */ #line 470 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnPlus ); } break; case 67: /* Line 1806 of yacc.c */ #line 471 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnMinus ); } break; case 68: /* Line 1806 of yacc.c */ #line 472 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::Neg ); } break; case 69: /* Line 1806 of yacc.c */ #line 473 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::BitNeg ); } break; case 71: /* Line 1806 of yacc.c */ #line 479 "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 481 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 74: /* Line 1806 of yacc.c */ #line 487 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mul ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 75: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Div ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 76: /* Line 1806 of yacc.c */ #line 491 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mod ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 78: /* Line 1806 of yacc.c */ #line 497 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Plus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 79: /* Line 1806 of yacc.c */ #line 499 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Minus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 81: /* Line 1806 of yacc.c */ #line 505 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 82: /* Line 1806 of yacc.c */ #line 507 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::RShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 84: /* Line 1806 of yacc.c */ #line 513 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 85: /* Line 1806 of yacc.c */ #line 515 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 86: /* Line 1806 of yacc.c */ #line 517 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 87: /* Line 1806 of yacc.c */ #line 519 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 89: /* Line 1806 of yacc.c */ #line 525 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Eq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 90: /* Line 1806 of yacc.c */ #line 527 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 92: /* Line 1806 of yacc.c */ #line 533 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::BitAnd ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 94: /* Line 1806 of yacc.c */ #line 539 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Xor ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 96: /* Line 1806 of yacc.c */ #line 545 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::BitOr ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 98: /* Line 1806 of yacc.c */ #line 551 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::And ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 100: /* Line 1806 of yacc.c */ #line 557 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Or ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 102: /* Line 1806 of yacc.c */ #line 563 "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 103: /* Line 1806 of yacc.c */ #line 565 "parser.yy" { (yyval.en)=new CompositeExprNode( new OperatorNode( OperatorNode::NCond ), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 104: /* Line 1806 of yacc.c */ #line 567 "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 107: /* Line 1806 of yacc.c */ #line 578 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 108: /* Line 1806 of yacc.c */ #line 580 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 109: /* Line 1806 of yacc.c */ #line 582 "parser.yy" { (yyval.en) =new CompositeExprNode( (yyvsp[(2) - (3)].en), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 110: /* Line 1806 of yacc.c */ #line 584 "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 111: /* Line 1806 of yacc.c */ #line 589 "parser.yy" { (yyval.en) = new NullExprNode; } break; case 113: /* Line 1806 of yacc.c */ #line 597 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ) ); } break; case 114: /* Line 1806 of yacc.c */ #line 599 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (yyvsp[(3) - (5)].en) ); } break; case 115: /* Line 1806 of yacc.c */ #line 601 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(new NullExprNode)->set_link( (yyvsp[(4) - (6)].en) ) ); } break; case 116: /* Line 1806 of yacc.c */ #line 603 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( flattenCommas( (yyvsp[(5) - (7)].en) ) ) ); } break; case 118: /* Line 1806 of yacc.c */ #line 609 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 119: /* Line 1806 of yacc.c */ #line 613 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MulAssn ); } break; case 120: /* Line 1806 of yacc.c */ #line 614 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::DivAssn ); } break; case 121: /* Line 1806 of yacc.c */ #line 615 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ModAssn ); } break; case 122: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::PlusAssn ); } break; case 123: /* Line 1806 of yacc.c */ #line 617 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MinusAssn ); } break; case 124: /* Line 1806 of yacc.c */ #line 618 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::LSAssn ); } break; case 125: /* Line 1806 of yacc.c */ #line 619 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::RSAssn ); } break; case 126: /* Line 1806 of yacc.c */ #line 620 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AndAssn ); } break; case 127: /* Line 1806 of yacc.c */ #line 621 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ERAssn ); } break; case 128: /* Line 1806 of yacc.c */ #line 622 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::OrAssn ); } break; case 130: /* Line 1806 of yacc.c */ #line 628 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Comma ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 131: /* Line 1806 of yacc.c */ #line 633 "parser.yy" { (yyval.en) = 0; } break; case 135: /* Line 1806 of yacc.c */ #line 642 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 141: /* Line 1806 of yacc.c */ #line 649 "parser.yy" { Token fn; fn.str = new std::string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( StatementNode::Exp, new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)( (yyvsp[(2) - (6)].en) )->set_link( (yyvsp[(4) - (6)].en) ) ), 0 ); } break; case 142: /* Line 1806 of yacc.c */ #line 658 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 143: /* Line 1806 of yacc.c */ #line 665 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 144: /* Line 1806 of yacc.c */ #line 672 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 146: /* Line 1806 of yacc.c */ #line 678 "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 147: /* Line 1806 of yacc.c */ #line 683 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 148: /* Line 1806 of yacc.c */ #line 685 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) )/*->set_extension( true )*/; } break; case 149: /* Line 1806 of yacc.c */ #line 687 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 152: /* Line 1806 of yacc.c */ #line 694 "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 153: /* Line 1806 of yacc.c */ #line 699 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); } break; case 154: /* Line 1806 of yacc.c */ #line 705 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 155: /* Line 1806 of yacc.c */ #line 707 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (7)].en), (StatementNode *)mkList((*(yyvsp[(5) - (7)].sn), *(yyvsp[(7) - (7)].sn) )) ); } break; case 156: /* Line 1806 of yacc.c */ #line 709 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 157: /* Line 1806 of yacc.c */ #line 711 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); /* xxx */ } break; case 158: /* Line 1806 of yacc.c */ #line 716 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 159: /* Line 1806 of yacc.c */ #line 718 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); } break; case 160: /* Line 1806 of yacc.c */ #line 725 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 161: /* Line 1806 of yacc.c */ #line 727 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 164: /* Line 1806 of yacc.c */ #line 734 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(tupleContents( (yyvsp[(1) - (3)].en) ))->set_link( (yyvsp[(3) - (3)].en) ) ); } break; case 165: /* Line 1806 of yacc.c */ #line 738 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(2) - (3)].en), 0 ); } break; case 166: /* Line 1806 of yacc.c */ #line 739 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Default ); } break; case 168: /* Line 1806 of yacc.c */ #line 745 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); } break; case 169: /* Line 1806 of yacc.c */ #line 749 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 170: /* Line 1806 of yacc.c */ #line 754 "parser.yy" { (yyval.sn) = 0; } break; case 172: /* Line 1806 of yacc.c */ #line 760 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 173: /* Line 1806 of yacc.c */ #line 762 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 174: /* Line 1806 of yacc.c */ #line 767 "parser.yy" { (yyval.sn) = 0; } break; case 176: /* Line 1806 of yacc.c */ #line 773 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 177: /* Line 1806 of yacc.c */ #line 775 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].sn) ))); } break; case 178: /* Line 1806 of yacc.c */ #line 777 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 179: /* Line 1806 of yacc.c */ #line 779 "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 180: /* Line 1806 of yacc.c */ #line 784 "parser.yy" { (yyval.sn) = 0; } break; case 182: /* Line 1806 of yacc.c */ #line 789 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 183: /* Line 1806 of yacc.c */ #line 790 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 184: /* Line 1806 of yacc.c */ #line 795 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::While, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 185: /* Line 1806 of yacc.c */ #line 797 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Do, (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ); } break; case 186: /* Line 1806 of yacc.c */ #line 799 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::For, (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].sn) ); } break; case 187: /* Line 1806 of yacc.c */ #line 804 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 188: /* Line 1806 of yacc.c */ #line 806 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 189: /* Line 1806 of yacc.c */ #line 811 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); } break; case 190: /* Line 1806 of yacc.c */ #line 815 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); } break; case 191: /* Line 1806 of yacc.c */ #line 818 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue ); } break; case 192: /* Line 1806 of yacc.c */ #line 822 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); } break; case 193: /* Line 1806 of yacc.c */ #line 825 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 194: /* Line 1806 of yacc.c */ #line 829 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 195: /* Line 1806 of yacc.c */ #line 831 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); } break; case 196: /* Line 1806 of yacc.c */ #line 833 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 197: /* Line 1806 of yacc.c */ #line 837 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 198: /* Line 1806 of yacc.c */ #line 839 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (5)].en), 0 ); } break; case 199: /* Line 1806 of yacc.c */ #line 846 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 200: /* Line 1806 of yacc.c */ #line 848 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 201: /* Line 1806 of yacc.c */ #line 850 "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 203: /* Line 1806 of yacc.c */ #line 861 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 204: /* Line 1806 of yacc.c */ #line 863 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 205: /* Line 1806 of yacc.c */ #line 865 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 206: /* Line 1806 of yacc.c */ #line 867 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 872 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 208: /* Line 1806 of yacc.c */ #line 874 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 209: /* Line 1806 of yacc.c */ #line 876 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 210: /* Line 1806 of yacc.c */ #line 878 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 211: /* Line 1806 of yacc.c */ #line 883 "parser.yy" { (yyval.pn) = new StatementNode( StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn) ); std::cout << "Just created a finally node" << std::endl; } break; case 213: /* Line 1806 of yacc.c */ #line 897 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 214: /* Line 1806 of yacc.c */ #line 902 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 215: /* Line 1806 of yacc.c */ #line 904 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 217: /* Line 1806 of yacc.c */ #line 913 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ); } break; case 218: /* Line 1806 of yacc.c */ #line 915 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ); } break; case 219: /* Line 1806 of yacc.c */ #line 917 "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 220: /* Line 1806 of yacc.c */ #line 919 "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 221: /* Line 1806 of yacc.c */ #line 921 "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 222: /* Line 1806 of yacc.c */ #line 926 "parser.yy" { (yyval.flag) = false; } break; case 223: /* Line 1806 of yacc.c */ #line 928 "parser.yy" { (yyval.flag) = true; } break; case 224: /* Line 1806 of yacc.c */ #line 933 "parser.yy" { (yyval.en) = 0; } break; case 227: /* Line 1806 of yacc.c */ #line 940 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 228: /* Line 1806 of yacc.c */ #line 945 "parser.yy" { (yyval.en) = new AsmExprNode( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ); } break; case 229: /* Line 1806 of yacc.c */ #line 947 "parser.yy" { (yyval.en) = new AsmExprNode( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ); } break; case 230: /* Line 1806 of yacc.c */ #line 952 "parser.yy" { (yyval.constant) = 0; } break; case 231: /* Line 1806 of yacc.c */ #line 954 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (1)].constant); } break; case 232: /* Line 1806 of yacc.c */ #line 956 "parser.yy" { (yyval.constant) = (ConstantNode *)(yyvsp[(1) - (3)].constant)->set_link( (yyvsp[(3) - (3)].constant) ); } break; case 233: /* Line 1806 of yacc.c */ #line 961 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->append_label( (yyvsp[(1) - (1)].tok) ); } break; case 234: /* Line 1806 of yacc.c */ #line 963 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->append_label( (yyvsp[(3) - (3)].tok) ); } break; case 235: /* Line 1806 of yacc.c */ #line 970 "parser.yy" { (yyval.decl) = 0; } break; case 238: /* Line 1806 of yacc.c */ #line 977 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 239: /* Line 1806 of yacc.c */ #line 982 "parser.yy" { (yyval.decl) = 0; } break; case 242: /* Line 1806 of yacc.c */ #line 989 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 247: /* Line 1806 of yacc.c */ #line 1003 "parser.yy" {} break; case 248: /* Line 1806 of yacc.c */ #line 1004 "parser.yy" {} break; case 256: /* Line 1806 of yacc.c */ #line 1033 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 257: /* Line 1806 of yacc.c */ #line 1040 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 258: /* Line 1806 of yacc.c */ #line 1045 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (6)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneType( (yyvsp[(5) - (6)].tok) )->addInitializer( (yyvsp[(6) - (6)].in) ) ); } break; case 259: /* Line 1806 of yacc.c */ #line 1055 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1060 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 261: /* Line 1806 of yacc.c */ #line 1065 "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 262: /* Line 1806 of yacc.c */ #line 1073 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 263: /* Line 1806 of yacc.c */ #line 1078 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 264: /* Line 1806 of yacc.c */ #line 1083 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 265: /* Line 1806 of yacc.c */ #line 1088 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 266: /* Line 1806 of yacc.c */ #line 1093 "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 267: /* Line 1806 of yacc.c */ #line 1101 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 268: /* Line 1806 of yacc.c */ #line 1124 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 269: /* Line 1806 of yacc.c */ #line 1128 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 270: /* Line 1806 of yacc.c */ #line 1135 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 271: /* Line 1806 of yacc.c */ #line 1139 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 272: /* Line 1806 of yacc.c */ #line 1144 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 273: /* Line 1806 of yacc.c */ #line 1149 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 274: /* Line 1806 of yacc.c */ #line 1154 "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 275: /* Line 1806 of yacc.c */ #line 1165 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 276: /* Line 1806 of yacc.c */ #line 1170 "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 277: /* Line 1806 of yacc.c */ #line 1175 "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 278: /* Line 1806 of yacc.c */ #line 1180 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 279: /* Line 1806 of yacc.c */ #line 1185 "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 280: /* Line 1806 of yacc.c */ #line 1194 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 281: /* Line 1806 of yacc.c */ #line 1199 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 286: /* Line 1806 of yacc.c */ #line 1216 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 287: /* Line 1806 of yacc.c */ #line 1221 "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 296: /* Line 1806 of yacc.c */ #line 1243 "parser.yy" { (yyval.decl) = 0; } break; case 299: /* Line 1806 of yacc.c */ #line 1255 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 302: /* Line 1806 of yacc.c */ #line 1266 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 303: /* Line 1806 of yacc.c */ #line 1268 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 304: /* Line 1806 of yacc.c */ #line 1270 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 305: /* Line 1806 of yacc.c */ #line 1272 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 306: /* Line 1806 of yacc.c */ #line 1274 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 307: /* Line 1806 of yacc.c */ #line 1276 "parser.yy" { typedefTable.enterScope(); } break; case 308: /* Line 1806 of yacc.c */ #line 1280 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 310: /* Line 1806 of yacc.c */ #line 1289 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 311: /* Line 1806 of yacc.c */ #line 1291 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 313: /* Line 1806 of yacc.c */ #line 1302 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 315: /* Line 1806 of yacc.c */ #line 1311 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 316: /* Line 1806 of yacc.c */ #line 1313 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 317: /* Line 1806 of yacc.c */ #line 1315 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 318: /* Line 1806 of yacc.c */ #line 1317 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 319: /* Line 1806 of yacc.c */ #line 1319 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 320: /* Line 1806 of yacc.c */ #line 1321 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 321: /* Line 1806 of yacc.c */ #line 1323 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 322: /* Line 1806 of yacc.c */ #line 1325 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 323: /* Line 1806 of yacc.c */ #line 1330 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 324: /* Line 1806 of yacc.c */ #line 1332 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 325: /* Line 1806 of yacc.c */ #line 1334 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 326: /* Line 1806 of yacc.c */ #line 1336 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 327: /* Line 1806 of yacc.c */ #line 1338 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 328: /* Line 1806 of yacc.c */ #line 1340 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 329: /* Line 1806 of yacc.c */ #line 1342 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 330: /* Line 1806 of yacc.c */ #line 1344 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 331: /* Line 1806 of yacc.c */ #line 1346 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 332: /* Line 1806 of yacc.c */ #line 1348 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 333: /* Line 1806 of yacc.c */ #line 1350 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 334: /* Line 1806 of yacc.c */ #line 1352 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 335: /* Line 1806 of yacc.c */ #line 1354 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 337: /* Line 1806 of yacc.c */ #line 1361 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 338: /* Line 1806 of yacc.c */ #line 1363 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 339: /* Line 1806 of yacc.c */ #line 1365 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1367 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1373 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1380 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1382 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 346: /* Line 1806 of yacc.c */ #line 1384 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1389 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 348: /* Line 1806 of yacc.c */ #line 1391 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1393 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1395 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1401 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1403 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 354: /* Line 1806 of yacc.c */ #line 1405 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1411 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1413 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1419 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1421 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 361: /* Line 1806 of yacc.c */ #line 1423 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1428 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1430 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 364: /* Line 1806 of yacc.c */ #line 1432 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 367: /* Line 1806 of yacc.c */ #line 1442 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl) ); } break; case 368: /* Line 1806 of yacc.c */ #line 1444 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0 ); } break; case 369: /* Line 1806 of yacc.c */ #line 1449 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 370: /* Line 1806 of yacc.c */ #line 1451 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), 0, (yyvsp[(5) - (6)].decl)); } break; case 371: /* Line 1806 of yacc.c */ #line 1453 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl) ); } break; case 372: /* Line 1806 of yacc.c */ #line 1455 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 373: /* Line 1806 of yacc.c */ #line 1460 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 374: /* Line 1806 of yacc.c */ #line 1462 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 375: /* Line 1806 of yacc.c */ #line 1467 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 376: /* Line 1806 of yacc.c */ #line 1469 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 378: /* Line 1806 of yacc.c */ #line 1475 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)/*->set_extension( true )*/; } break; case 380: /* Line 1806 of yacc.c */ #line 1478 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)/*->set_extension( true )*/; } break; case 382: /* Line 1806 of yacc.c */ #line 1484 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1486 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1488 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1493 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 386: /* Line 1806 of yacc.c */ #line 1495 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 387: /* Line 1806 of yacc.c */ #line 1500 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 388: /* Line 1806 of yacc.c */ #line 1502 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 389: /* Line 1806 of yacc.c */ #line 1505 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 390: /* Line 1806 of yacc.c */ #line 1508 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 392: /* Line 1806 of yacc.c */ #line 1514 "parser.yy" { (yyval.en) = 0; } break; case 393: /* Line 1806 of yacc.c */ #line 1516 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 394: /* Line 1806 of yacc.c */ #line 1521 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 396: /* Line 1806 of yacc.c */ #line 1530 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 397: /* Line 1806 of yacc.c */ #line 1532 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 398: /* Line 1806 of yacc.c */ #line 1537 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 399: /* Line 1806 of yacc.c */ #line 1539 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 400: /* Line 1806 of yacc.c */ #line 1544 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 401: /* Line 1806 of yacc.c */ #line 1546 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 402: /* Line 1806 of yacc.c */ #line 1551 "parser.yy" { (yyval.en) = 0; } break; case 403: /* Line 1806 of yacc.c */ #line 1553 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 404: /* Line 1806 of yacc.c */ #line 1560 "parser.yy" { (yyval.decl) = 0; } break; case 408: /* Line 1806 of yacc.c */ #line 1568 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 409: /* Line 1806 of yacc.c */ #line 1570 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 410: /* Line 1806 of yacc.c */ #line 1572 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 412: /* Line 1806 of yacc.c */ #line 1580 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 413: /* Line 1806 of yacc.c */ #line 1582 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 414: /* Line 1806 of yacc.c */ #line 1584 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 416: /* Line 1806 of yacc.c */ #line 1590 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 417: /* Line 1806 of yacc.c */ #line 1595 "parser.yy" { (yyval.decl) = 0; } break; case 420: /* Line 1806 of yacc.c */ #line 1602 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 423: /* Line 1806 of yacc.c */ #line 1609 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 424: /* Line 1806 of yacc.c */ #line 1611 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 426: /* Line 1806 of yacc.c */ #line 1620 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 427: /* Line 1806 of yacc.c */ #line 1623 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 428: /* Line 1806 of yacc.c */ #line 1625 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 433: /* Line 1806 of yacc.c */ #line 1635 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 435: /* Line 1806 of yacc.c */ #line 1641 "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 436: /* Line 1806 of yacc.c */ #line 1646 "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 438: /* Line 1806 of yacc.c */ #line 1655 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 439: /* Line 1806 of yacc.c */ #line 1664 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 440: /* Line 1806 of yacc.c */ #line 1666 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 452: /* Line 1806 of yacc.c */ #line 1691 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 456: /* Line 1806 of yacc.c */ #line 1699 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 457: /* Line 1806 of yacc.c */ #line 1704 "parser.yy" { (yyval.in) = 0; } break; case 458: /* Line 1806 of yacc.c */ #line 1706 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 459: /* Line 1806 of yacc.c */ #line 1708 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 460: /* Line 1806 of yacc.c */ #line 1712 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 461: /* Line 1806 of yacc.c */ #line 1713 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 462: /* Line 1806 of yacc.c */ #line 1718 "parser.yy" { (yyval.in) = 0; } break; case 464: /* Line 1806 of yacc.c */ #line 1720 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 465: /* Line 1806 of yacc.c */ #line 1721 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1723 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 468: /* Line 1806 of yacc.c */ #line 1739 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); } break; case 470: /* Line 1806 of yacc.c */ #line 1745 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); } break; case 471: /* Line 1806 of yacc.c */ #line 1753 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(1) - (1)].tok) ) ); } break; case 472: /* Line 1806 of yacc.c */ #line 1755 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(2) - (2)].tok) ) ); } break; case 473: /* Line 1806 of yacc.c */ #line 1758 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 474: /* Line 1806 of yacc.c */ #line 1760 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 475: /* Line 1806 of yacc.c */ #line 1762 "parser.yy" { (yyval.en) = new DesignatorNode( new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ), true ); } break; case 476: /* Line 1806 of yacc.c */ #line 1764 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(4) - (6)].en) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1788 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 479: /* Line 1806 of yacc.c */ #line 1790 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1792 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1798 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 483: /* Line 1806 of yacc.c */ #line 1800 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 484: /* Line 1806 of yacc.c */ #line 1805 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 486: /* Line 1806 of yacc.c */ #line 1811 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 487: /* Line 1806 of yacc.c */ #line 1816 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 488: /* Line 1806 of yacc.c */ #line 1818 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 490: /* Line 1806 of yacc.c */ #line 1824 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 491: /* Line 1806 of yacc.c */ #line 1826 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 492: /* Line 1806 of yacc.c */ #line 1828 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 493: /* Line 1806 of yacc.c */ #line 1833 "parser.yy" { (yyval.decl) = 0; } break; case 494: /* Line 1806 of yacc.c */ #line 1835 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) == 0 ? (yyvsp[(2) - (2)].decl) : (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 495: /* Line 1806 of yacc.c */ #line 1840 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 496: /* Line 1806 of yacc.c */ #line 1845 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 497: /* Line 1806 of yacc.c */ #line 1847 "parser.yy" { (yyval.decl) = 0; } break; case 498: /* Line 1806 of yacc.c */ #line 1852 "parser.yy" { (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1855 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); } break; case 501: /* Line 1806 of yacc.c */ #line 1857 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 502: /* Line 1806 of yacc.c */ #line 1862 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 503: /* Line 1806 of yacc.c */ #line 1864 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 504: /* Line 1806 of yacc.c */ #line 1866 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 505: /* Line 1806 of yacc.c */ #line 1871 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 506: /* Line 1806 of yacc.c */ #line 1873 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 507: /* Line 1806 of yacc.c */ #line 1878 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 508: /* Line 1806 of yacc.c */ #line 1883 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 509: /* Line 1806 of yacc.c */ #line 1891 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 510: /* Line 1806 of yacc.c */ #line 1896 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 511: /* Line 1806 of yacc.c */ #line 1901 "parser.yy" { typedefTable.leaveTrait(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 513: /* Line 1806 of yacc.c */ #line 1911 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 516: /* Line 1806 of yacc.c */ #line 1921 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 517: /* Line 1806 of yacc.c */ #line 1926 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 518: /* Line 1806 of yacc.c */ #line 1931 "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 519: /* Line 1806 of yacc.c */ #line 1939 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 520: /* Line 1806 of yacc.c */ #line 1944 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 521: /* Line 1806 of yacc.c */ #line 1954 "parser.yy" {} break; case 522: /* Line 1806 of yacc.c */ #line 1956 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 524: /* Line 1806 of yacc.c */ #line 1968 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 525: /* Line 1806 of yacc.c */ #line 1973 "parser.yy" { (yyval.decl) = 0; } break; case 529: /* Line 1806 of yacc.c */ #line 1981 "parser.yy" {} break; case 530: /* Line 1806 of yacc.c */ #line 1983 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 531: /* Line 1806 of yacc.c */ #line 1988 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 532: /* Line 1806 of yacc.c */ #line 1994 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)/*->set_extension( true )*/; } break; case 534: /* Line 1806 of yacc.c */ #line 2004 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 535: /* Line 1806 of yacc.c */ #line 2010 "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 536: /* Line 1806 of yacc.c */ #line 2019 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 537: /* Line 1806 of yacc.c */ #line 2025 "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 538: /* Line 1806 of yacc.c */ #line 2031 "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 539: /* Line 1806 of yacc.c */ #line 2037 "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 540: /* Line 1806 of yacc.c */ #line 2043 "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 541: /* Line 1806 of yacc.c */ #line 2051 "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 542: /* Line 1806 of yacc.c */ #line 2057 "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 543: /* Line 1806 of yacc.c */ #line 2065 "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 544: /* Line 1806 of yacc.c */ #line 2071 "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 548: /* Line 1806 of yacc.c */ #line 2086 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 551: /* Line 1806 of yacc.c */ #line 2096 "parser.yy" { (yyval.decl) = 0; } break; case 554: /* Line 1806 of yacc.c */ #line 2103 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 555: /* Line 1806 of yacc.c */ #line 2109 "parser.yy" { (yyval.decl) = 0; } break; case 561: /* Line 1806 of yacc.c */ #line 2124 "parser.yy" {} break; case 562: /* Line 1806 of yacc.c */ #line 2125 "parser.yy" {} break; case 563: /* Line 1806 of yacc.c */ #line 2126 "parser.yy" {} break; case 564: /* Line 1806 of yacc.c */ #line 2127 "parser.yy" {} break; case 565: /* Line 1806 of yacc.c */ #line 2162 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2165 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2167 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 569: /* Line 1806 of yacc.c */ #line 2172 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2177 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 571: /* Line 1806 of yacc.c */ #line 2182 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2184 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2186 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 574: /* Line 1806 of yacc.c */ #line 2191 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2193 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2195 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2197 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].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 2214 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2217 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2222 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 584: /* Line 1806 of yacc.c */ #line 2224 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2226 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 586: /* Line 1806 of yacc.c */ #line 2231 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 587: /* Line 1806 of yacc.c */ #line 2233 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 588: /* Line 1806 of yacc.c */ #line 2235 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 589: /* Line 1806 of yacc.c */ #line 2240 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2242 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 591: /* Line 1806 of yacc.c */ #line 2244 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 595: /* Line 1806 of yacc.c */ #line 2259 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2261 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 597: /* Line 1806 of yacc.c */ #line 2263 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 598: /* Line 1806 of yacc.c */ #line 2268 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 599: /* Line 1806 of yacc.c */ #line 2270 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2272 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 601: /* Line 1806 of yacc.c */ #line 2277 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 602: /* Line 1806 of yacc.c */ #line 2279 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 603: /* Line 1806 of yacc.c */ #line 2281 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 604: /* Line 1806 of yacc.c */ #line 2296 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2299 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 607: /* Line 1806 of yacc.c */ #line 2301 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2307 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 610: /* Line 1806 of yacc.c */ #line 2312 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 611: /* Line 1806 of yacc.c */ #line 2314 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2316 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 613: /* Line 1806 of yacc.c */ #line 2321 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 614: /* Line 1806 of yacc.c */ #line 2323 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 615: /* Line 1806 of yacc.c */ #line 2325 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2327 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 617: /* Line 1806 of yacc.c */ #line 2332 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2334 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 619: /* Line 1806 of yacc.c */ #line 2336 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 620: /* Line 1806 of yacc.c */ #line 2346 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2349 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2351 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2356 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 625: /* Line 1806 of yacc.c */ #line 2358 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2360 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 627: /* Line 1806 of yacc.c */ #line 2365 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2367 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 629: /* Line 1806 of yacc.c */ #line 2369 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2371 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 631: /* Line 1806 of yacc.c */ #line 2376 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2378 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2380 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 634: /* Line 1806 of yacc.c */ #line 2411 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2414 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2416 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2421 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2426 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2434 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 641: /* Line 1806 of yacc.c */ #line 2436 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2438 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 643: /* Line 1806 of yacc.c */ #line 2443 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2445 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 645: /* Line 1806 of yacc.c */ #line 2450 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2452 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2467 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 649: /* Line 1806 of yacc.c */ #line 2469 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2474 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 651: /* Line 1806 of yacc.c */ #line 2476 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2478 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 653: /* Line 1806 of yacc.c */ #line 2480 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 654: /* Line 1806 of yacc.c */ #line 2482 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 656: /* Line 1806 of yacc.c */ #line 2488 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 657: /* Line 1806 of yacc.c */ #line 2490 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 658: /* Line 1806 of yacc.c */ #line 2492 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 659: /* Line 1806 of yacc.c */ #line 2497 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 660: /* Line 1806 of yacc.c */ #line 2499 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 661: /* Line 1806 of yacc.c */ #line 2501 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 662: /* Line 1806 of yacc.c */ #line 2507 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 663: /* Line 1806 of yacc.c */ #line 2509 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 665: /* Line 1806 of yacc.c */ #line 2515 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 666: /* Line 1806 of yacc.c */ #line 2517 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 667: /* Line 1806 of yacc.c */ #line 2519 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2521 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2536 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 671: /* Line 1806 of yacc.c */ #line 2538 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 672: /* Line 1806 of yacc.c */ #line 2543 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 673: /* Line 1806 of yacc.c */ #line 2545 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2547 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 675: /* Line 1806 of yacc.c */ #line 2549 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 676: /* Line 1806 of yacc.c */ #line 2551 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 678: /* Line 1806 of yacc.c */ #line 2557 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 679: /* Line 1806 of yacc.c */ #line 2559 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 680: /* Line 1806 of yacc.c */ #line 2561 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 681: /* Line 1806 of yacc.c */ #line 2566 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 682: /* Line 1806 of yacc.c */ #line 2568 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 683: /* Line 1806 of yacc.c */ #line 2570 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 685: /* Line 1806 of yacc.c */ #line 2577 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 687: /* Line 1806 of yacc.c */ #line 2588 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 688: /* Line 1806 of yacc.c */ #line 2591 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 689: /* Line 1806 of yacc.c */ #line 2593 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 690: /* Line 1806 of yacc.c */ #line 2596 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 691: /* Line 1806 of yacc.c */ #line 2598 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 692: /* Line 1806 of yacc.c */ #line 2600 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 694: /* Line 1806 of yacc.c */ #line 2614 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 695: /* Line 1806 of yacc.c */ #line 2616 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2621 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 697: /* Line 1806 of yacc.c */ #line 2623 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2625 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2627 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 700: /* Line 1806 of yacc.c */ #line 2629 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 702: /* Line 1806 of yacc.c */ #line 2635 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 703: /* Line 1806 of yacc.c */ #line 2637 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 704: /* Line 1806 of yacc.c */ #line 2639 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 705: /* Line 1806 of yacc.c */ #line 2644 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 706: /* Line 1806 of yacc.c */ #line 2646 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 709: /* Line 1806 of yacc.c */ #line 2656 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2666 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2668 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2670 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2672 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2674 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2676 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2683 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2685 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2687 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2689 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2691 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2693 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2695 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2697 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 726: /* Line 1806 of yacc.c */ #line 2699 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 727: /* Line 1806 of yacc.c */ #line 2701 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 728: /* Line 1806 of yacc.c */ #line 2706 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 729: /* Line 1806 of yacc.c */ #line 2708 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 730: /* Line 1806 of yacc.c */ #line 2713 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 731: /* Line 1806 of yacc.c */ #line 2715 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 733: /* Line 1806 of yacc.c */ #line 2742 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2753 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2755 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2757 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2759 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2761 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2763 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2770 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2772 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2774 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 746: /* Line 1806 of yacc.c */ #line 2776 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 747: /* Line 1806 of yacc.c */ #line 2778 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 748: /* Line 1806 of yacc.c */ #line 2780 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 749: /* Line 1806 of yacc.c */ #line 2785 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 750: /* Line 1806 of yacc.c */ #line 2790 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 751: /* Line 1806 of yacc.c */ #line 2792 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 752: /* Line 1806 of yacc.c */ #line 2794 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 755: /* Line 1806 of yacc.c */ #line 2818 "parser.yy" { (yyval.en) = 0; } break; case 756: /* Line 1806 of yacc.c */ #line 2820 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9256 "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 2823 "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: //